/* spinner */
.spinner {
    border: 2px solid #fff;
    border-top: 2px solid transparent;
    border-radius: 50%;
    width: 16px;
    height: 16px;
    animation: spin 1s linear infinite;
    display: inline-block;
    margin-left: 10px;
    vertical-align: middle;
    display: none;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.spinner.hidden {
    display: none;
}

/* color buttons */
.color_button {
    background: #5DAEDA;
    transition: all 0.3s ease 0s;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.color_button.disabled input {
    color: #7B7A80;
}

.color_button input {
    color: #fff;
}

.color_button:hover,
a.color_button:hover {
    background: #168ECF;
    text-decoration: none;
}

.color_button:active,
a.color_button:active {
    background: #333B7C;
}

.color_button:disabled,
.color_button.disabled,
a.color_button.disabled {
    background: #E1E2E3;
    color: #7B7A80;
}

.color_button.loading .spinner {
    display: inline-block;
}

.color_button.loading {
    background: #168ECF;
    color: transparent;
    position: relative;
    cursor: wait;
    pointer-events: none;
}

.color_button input {
    background: none;
    border: none;
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 20px;
    text-align: center;
    color: #fff;
}

/* outline buttons */
.outline_button {
    transition: all 0.3s ease 0s;
}

.outline_button:hover {
    box-shadow: 0 0 0 1px #333b7c;
}

.review-arrow-desktop.outline_button {
    border-radius: 50%;
}

.review-arrow-desktop.outline_button:active svg path {
    stroke: #fff;
}

.outline_button:active {
    background: #333B7C;
    border: 1px solid #333B7C;
    color: #fff !important;
}

.outline_button:disabled,
.outline_button.disabled {
    background: #E1E2E3;
    border: 1px solid #E1E2E3;
    color: #7B7A80 !important;
}

.outline_button.loading {
    box-shadow: 0 0 0 1px #333b7c;
}



.block9-right .color_button input,
.block11-right .color_button input {
    height: 40px;
    width: auto;
}