:root {
    --button-height: 287px;
    --button-width: 371px;
    --press-time: .4s;
}

body {
    background-color: #F7FFF7;
    background-size: cover;
    background-position: center;
    font-family: 'Rubik', sans-serif;
}

.information-body {
    background-color: #F7FFF7;
    background-image: url("../img/footer_bg.svg");
    font-family: 'Rubik', sans-serif;
    background-size: 100%;
    background-repeat: no-repeat;
    background-position: bottom;
}

/* Additional Colors */
.bg-one {
    background-color: #1CA4B2;
}
.bg-D9D9D9 {
    background-color: #D9D9D9;
}
.bg-FFC107 {
    background-color: #FFC107;
}
.bg-linear-1 {
    background: linear-gradient(90deg, #FF981E 0%, #FFC107 100%);
}

.text-one {
    color: #1CA4B2;
}
.font-manrope {
    font-family: 'Manrope', sans-serif;
}



.blue-head {
    border-bottom-right-radius: 100% 90%;
    border-bottom-left-radius: 100% 90%;
    background: linear-gradient(180deg, #2DD8EA 0%, #22B2C1 100%);
    box-shadow: 0px 3.1611111164093018px 10.273611068725586px 0px #C5C4D3;
}

/*.big-button {
    position: relative;
    width: 371px;
    height: 331px;
    filter: drop-shadow(0px 8px 20px rgb(0 0 0 / 0.15));
}
.big-button::before {
    opacity: 1;
    top: 0;
    right: 0;
    content: '';
    width: 100%;
    height: 100%;
    background: url('../img/button.svg');
    position: absolute;
}
.big-button::after {
    opacity: 0;
    top: 0;
    right: 0;
    content: '';
    width: 100%;
    height: 100%;
    background: url('../img/button_pressed.svg');
    position: absolute;
}
.big-button:active::before {
    transition: all 0.2s ease-in-out;
    opacity: 0;
}
.big-button:active::after {
    transition: all 0.2s ease-in-out;
    opacity: 1;
}

.big-button-start {
    position: relative;
    width: 371px;
    height: 331px;
    filter: drop-shadow(0px 8px 20px rgb(0 0 0 / 0.15));
}
.big-button-start::before {
    opacity: 1;
    top: 0;
    right: 0;
    content: '';
    width: 100%;
    height: 100%;
    background: url('../img/button_start.svg');
    position: absolute;
}
.big-button-start::after {
    opacity: 0;
    top: 0;
    right: 0;
    content: '';
    width: 100%;
    height: 100%;
    background: url('../img/button_pressed.svg');
    position: absolute;
}
.big-button-start:active::before {
    transition: all 0.2s ease-in-out;
    opacity: 0;
}
.big-button-start:active::after {
    transition: all 0.2s ease-in-out;
    opacity: 1;
}*/

.icon-login {
    background-image: url("../img/login_icon.svg");
    background-repeat: no-repeat;
    background-position: center;
}
.icon-home {
    background-image: url("../img/home_icon.svg");
    background-repeat: no-repeat;
    background-position: center;
}

.ball {
    position: absolute;
    top: 3px;
    right: 19px;
    width: 351px;
    height: 359px;
}

.ball_left {
    top: auto;
    right: auto;
    left: 44px;
    bottom: 3px;
}

.forward-button {
    display: block;
    width: 108px;
    height: 75px;
    background: url("../img/forward.svg") no-repeat;
}

.blue-header {
    background: url("../img/blue_header.svg") no-repeat;
    background-size: cover;
    background-position: bottom;
}

.variant-radio-dot-border, .variant-radio-image {
    border-color: #CFCFCF;
}
.variant-radio-dot {
    background-color: #CFCFCF;
}
.variant-radio:checked ~ .variant-radio-dot-border, .variant-radio:checked ~ .variant-radio-image {
    border-color: #8263E3;
}
.variant-radio:checked ~ .variant-radio-dot-border .variant-radio-dot {
    background-color: #8263E3;
}

.icon-microphone {
    display: block;
    width: 139px;
    height: 124px;
    background-image: url("../img/microphone.svg");
    transition: all ease-in-out 0.2s;
}
button:hover .icon-microphone {
    background-image: url("../img/microphone_active.svg");
    height: 125px;
}
.icon-clock {
    display: block;
    width: 139px;
    height: 123px;
    background-image: url("../img/clock.svg");
}

.button {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 190px;
    height: 71px;
    font-size: 37px;
    font-weight: 700;
    color: #FFFFFF;
    cursor: pointer;
}

.button-yellow {
    background: url('../img/yellow_button.svg') no-repeat;
    background-size: contain;
}
input[type="radio"]:checked + label.button-yellow {
    background: url('../img/yellow_button_active.svg') no-repeat;
    background-size: contain;
}

.button-purple {
    background: url('../img/purple_button.svg') no-repeat;
    background-size: contain;
}
input[type="radio"]:checked + label.button-purple {
    background: url('../img/purple_button_active.svg') no-repeat;
    background-size: contain;
}


.select2-container {
    margin-top: 35px ;
    display: block; }
.select2-container *:focus {
    outline: 0; }

.input-group .select2-container--bootstrap4 {
    -webkit-box-flex: 1;
    -ms-flex-positive: 1;
    flex-grow: 1; }

.input-group-prepend ~ .select2-container--bootstrap4 .select2-selection {
    border-top-left-radius: 0;
    border-bottom-left-radius: 0; }

.input-group > .select2-container--bootstrap4:not(:last-child) .select2-selection {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0; }

.select2-container--bootstrap4 .select2-selection {
    width: 100%;
    background-color: #fff;
    border: 3px solid #FFC107;
    border-radius: 8px;
    -webkit-transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out, -webkit-box-shadow 0.15s ease-in-out; }
@media (prefers-reduced-motion: reduce) {
    .select2-container--bootstrap4 .select2-selection {
        -webkit-transition: none;
        transition: none; } }

/*.select2-container--bootstrap4.select2-container--focus .select2-selection {
    border-color: #80bdff;
    -webkit-box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
    box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25); }*/

.select2-container--bootstrap4.select2-container--focus.select2-container--open .select2-selection {
    border-bottom: none;
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0; }

.select2-container--bootstrap4.select2-container--open.select2-container--above .select2-selection {
    border-top-left-radius: 0;
    border-top-right-radius: 0; }

.select2-container--bootstrap4.select2-container--open.select2-container--below .select2-selection {
    border-bottom-right-radius: 0;
    border-bottom-left-radius: 0; }

.select2-container--bootstrap4.select2-container--disabled .select2-selection, .select2-container--bootstrap4.select2-container--disabled.select2-container--focus .select2-selection {
    cursor: not-allowed;
    background-color: #e9ecef;
    border-color: #ced4da;
    -webkit-box-shadow: none;
    box-shadow: none; }

.select2-container--bootstrap4.select2-container--disabled .select2-search__field, .select2-container--bootstrap4.select2-container--disabled.select2-container--focus .select2-search__field {
    background-color: transparent; }

select.is-invalid ~ .select2-container--bootstrap4 .select2-selection,
form.was-validated select:invalid ~ .select2-container--bootstrap4 .select2-selection {
    border-color: #dc3545; }

select.is-valid ~ .select2-container--bootstrap4 .select2-selection,
form.was-validated select:valid ~ .select2-container--bootstrap4 .select2-selection {
    border-color: #28a745; }

.select2-container--bootstrap4 .select2-search {
    width: 100%; }

.select2-container--bootstrap4 .select2-dropdown {
    border-color: #ced4da;
    border-radius: 0; }
.select2-container--bootstrap4 .select2-dropdown.select2-dropdown--below {
    border: 0;
    border-top: none;
    border-bottom-right-radius: 0.25rem;
    border-bottom-left-radius: 0.25rem; }
.select2-container--bootstrap4 .select2-dropdown.select2-dropdown--above {
    border-top: 1px solid #ced4da;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem; }
.select2-container--bootstrap4 .select2-dropdown .select2-results__option[aria-selected="true"] {
    color: #212529;
    background-color: #f2f2f2; }

.select2-container--bootstrap4 .select2-results__option--highlighted,
.select2-container--bootstrap4 .select2-results__option--highlighted.select2-results__option[aria-selected="true"] {
    color: #292F36;
    background-color: #FFECB1; }

.select2-container--bootstrap4 .select2-results__option[role="group"] {
    padding: 0; }
.select2-container--bootstrap4 .select2-results__option[role="group"] .select2-results__options--nested .select2-results__option {
    padding-left: 1em; }

.select2-container--bootstrap4 .select2-results__option {
    padding: 0.375rem 0.75rem;
    height: 48px;
    line-height: 48px;
    font-size: 18px;
    font-weight: 700;
}

.select2-container--bootstrap4 .select2-results > .select2-results__options {
    max-height: 15em;
    overflow-y: auto; }

.select2-container--bootstrap4 .select2-results__group {
    display: list-item;
    padding: 6px;
    color: #6c757d; }

.select2-container--bootstrap4 .select2-selection__clear {
    float: right;
    width: .9em;
    height: .9em;
    padding-left: .15em;
    margin-top: .7em;
    margin-right: .3em;
    line-height: .75em;
    color: #f8f9fa;
    background-color: #c8c8c8;
    border-radius: 100%; }
.select2-container--bootstrap4 .select2-selection__clear:hover {
    background-color: #afafaf; }

.select2-container--bootstrap4 .select2-selection--single {
    height: 61px !important; }
.select2-container--bootstrap4 .select2-selection--single .select2-selection__placeholder {
    line-height: calc(1.5em + 0.75rem);
    color: #6c757d; }
.select2-container--bootstrap4 .select2-selection--single .select2-selection__arrow {
    position: absolute;
    top: calc(50% - 10px);
    left: 15px;
    width: 20px;
    height: 20px;
}
.select2-container--bootstrap4 .select2-selection--single .select2-selection__arrow b {
    display: block;
    width: 20px;
    height: 20px;
    background: url(../img/chevron-down-s.svg) no-repeat;
     }
.select2-container--bootstrap4 .select2-selection--single .select2-selection__rendered {
    padding-left: 0.75rem;
    line-height: 61px;
    font-size: 18px;
    font-weight: 700;
    color: #495057; }

.select2-search--dropdown .select2-search__field {
    padding: 0.375rem 0.75rem;
    border: 1px solid #ced4da;
    border-radius: 0.25rem; }

.select2-results__message {
    color: #6c757d; }

.select2-container--bootstrap4 .select2-selection--multiple {
    min-height: calc(1.5em + 0.75rem + 2px) !important; }
.select2-container--bootstrap4 .select2-selection--multiple .select2-selection__rendered {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    width: 100%;
    padding: 0 0.375rem;
    margin: 0;
    list-style: none; }
.select2-container--bootstrap4 .select2-selection--multiple .select2-selection__choice {
    float: left;
    padding: 0;
    padding-right: 0.75rem;
    margin-top: calc(0.375rem - 2px);
    margin-right: 0.375rem;
    color: #495057;
    cursor: pointer;
    border: 1px solid #bdc6d0;
    border-radius: 0.2rem; }
.select2-container--bootstrap4 .select2-selection--multiple .select2-search__field {
    color: #495057; }
.select2-container--bootstrap4 .select2-selection--multiple .select2-selection__choice + .select2-search {
    width: 0; }
.select2-container--bootstrap4 .select2-selection--multiple .select2-selection__choice__remove {
    float: left;
    padding-right: 3px;
    padding-left: 3px;
    margin-right: 1px;
    margin-left: 3px;
    font-weight: 700;
    color: #bdc6d0; }
.select2-container--bootstrap4 .select2-selection--multiple .select2-selection__choice__remove:hover {
    color: #343a40; }
.select2-container--bootstrap4 .select2-selection--multiple .select2-selection__clear {
    position: absolute !important;
    top: 0;
    right: .7em;
    float: none;
    margin-right: 0; }

.select2-container--bootstrap4.select2-container--disabled .select2-selection--multiple .select2-selection__choice {
    padding: 0 5px;
    cursor: not-allowed; }
.select2-container--bootstrap4.select2-container--disabled .select2-selection--multiple .select2-selection__choice .select2-selection__choice__remove {
    display: none; }

/* sm 640px */
@media (min-width: 640px) {

}
/* md 768px */
@media (min-width: 768px) {

}
/* lg 1024px */
@media (min-width: 1024px) {
    .button {
        width: 235px;
        height: 88px;
    }
}
/* xl 1280px */
@media (min-width: 1280px) {

}
/* 2xl 1536px */
@media (min-width: 1536px) {

}

.markdown h2 {
    font-size: 2.25rem;
    line-height: 2.5rem;
    font-weight: 700;
}
.markdown h3 {
    font-size: 1.875rem;
    line-height: 2.25rem;
    font-weight: 700;
}
.markdown h4 {
    font-size: 1.5rem;
    line-height: 2rem;
    font-weight: 700;
}