*{
    font-family: 'Nunito', sans-serif;
    color: #01324A;
}

.reservationApp__card{
    background-color: var(--spark-white);
    box-shadow: 0px 18px 46px #00000029;
    border: 0 solid rgba(0,0,0,.125);
    border-radius: 20px;
    padding: 24px;
    margin: 12px;
    position: relative;
}

@media (max-width: 1200px){
    .reservationApp__card{
        padding: 16px;
    }
}

.reservationApp__card--flex-column{
    display: flex;
    flex-direction: column;
}

.reservationApp__card--min-w-500px{
    min-width: 500px;
}

@media (max-width: 768px){
    .reservationApp__card--min-w-500px{
        min-width: 90%;
    }
}

.reservationApp__card--reservationForm{
   width: 987px;
}

@media (max-width: 1200px){
    .reservationApp__card--reservationForm{
        width: 750px;
    }
}

@media (max-width: 850px){
    .reservationApp__card--reservationForm{
        width: 90%;
    }
}

.form-control{
    border-radius: 20px;
}

.form-group{
    margin-bottom: 18px;
}

.reservationApp__button-container{
    display: flex;
    justify-content: center;
    align-items: center;
}

.btn--bigger-padding{
    padding: 10px 70px !important;
    border-radius: 25px !important;
}

.reservationApp__headerText{
    font-size: 20px;
    margin: 0;
    padding: 10px;
    text-align: center;
}

.reservationApp__locationsGrid{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin: 18px 0;
    max-width: 1200px;
}

@media (max-width: 1200px){
    .reservationApp__locationsGrid{
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px){
    .reservationApp__locationsGrid{
        grid-template-columns: 1fr;
    }
}

.reservationApp__locationCard{
    background-color: var(--spark-white);
    box-shadow: 0 16px 48px rgb(0 0 0 / 26%);
    border: 0 solid rgba(0,0,0,.125);
    border-radius: 20px;
    padding: 24px;
    margin: 12px;
    width: 340px;
    height: 240px;
    position: relative;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-evenly;
    transition: .1s;
}

@media (max-width: 400px){
    .reservationApp__locationCard{
        width: 280px;
    }
}

.reservationApp__locationCard--active{
    justify-content: center;
}

.reservationApp__locationCard--active:hover{
    cursor: pointer;
    box-shadow: 0 18px 52px rgb(0 0 0 / 36%);
    transform: scale(1.02);
}

.reservationApp__locationCard__discard{
    position: absolute;
    top: 15px;
    right: 15px;
    cursor: pointer;
    transition: .1s;
}

.reservationApp__locationCard__discard:hover{
    transform: scale(1.15);
}

.reservationApp__locationCard__text__code{
    font-size: 14px;
    margin: 3px 0 0 0;
    text-align: center;
}

.reservationApp__locationCard__text__name{
    font-size: 20px;
    margin: 8px 0 0 0;
    text-align: center;
}

.reservationApp__locationCard__image img{
    max-width: 200px;
    max-height: 120px;
}

.reservationApp__logo{
    max-width: 200px;
    max-height: 120px;
    margin: 5px 0;
}

.resevationApp__form-and-progressbar-container{
    display: flex;
    flex-direction: row;
    margin: 18px;
}

@media (max-width: 768px){
    .resevationApp__form-and-progressbar-container{
        flex-direction: column;
    }
}

.form-and-progressbar-container__progressbar{
    background: #E9F3FF;
    border-radius: 20px;
    width: 85px;
    height: 100%;

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
    padding: 12px 0;
}

@media (max-width: 1200px){
    .form-and-progressbar-container__progressbar{
        width: 60px;
    }
}

@media (max-width: 768px){
    .form-and-progressbar-container__progressbar{
        display: none;
    }
}

.form-and-progressbar-container__progressbar-mobile{
    display: none;
}

@media (max-width: 768px){
    .form-and-progressbar-container__progressbar-mobile{
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: center;
        margin: 0 0 18px 0;
    }
}


.progressbar__step{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 10px;
}

@media (max-width: 1200px){
    .progressbar__step{
        padding: 5px;
    }
}

@media (max-width: 768px){
    .progressbar__step{
        margin: 0 12px;
    }
}

.progressbar__step .progressbar__step__number{
    font-size: 16px;
    font-weight: bold;
    background: #E1E1E1;
    color: #FFFFFF;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}

@media (max-width: 1200px){
    .progressbar__step .progressbar__step__number{
        font-size: 14px;
        width: 25px;
        height: 25px;
    }
}

@media (max-width: 768px){
    .progressbar__step .progressbar__step__number{
        font-size: 16px;
        width: 30px;
        height: 30px;
    }
}


.progressbar__step--active .progressbar__step__number{
    background: var(--main-primary);
}

.progressbar__step .progressbar__step__text{
    font-size: 12px;
    text-align: center;
    color: #E1E1E1;
    font-weight: bold;
}

@media (max-width: 1200px){
    .progressbar__step .progressbar__step__text{
        font-size: 10px;
    }
}

@media (max-width: 768px){
    .progressbar__step .progressbar__step__text{
        font-size: 12px;
        margin-bottom: 0;
    }
}

.progressbar__step--active .progressbar__step__text{
    color: var(--main-primary);
}

.form-and-progressbar-container__form{
    margin: 0 0 0 80px;
    width: 100%;
}

@media (max-width: 1200px){
    .form-and-progressbar-container__form{
        margin: 0 0 0 40px;
    }
}

@media (max-width: 768px){
    .form-and-progressbar-container__form{
        margin: 0;
    }
}

.progressbar-mobile__steps{
    display: none;
}

@media (max-width: 768px){
    .progressbar-mobile__steps{
        display: flex;
        flex-direction: row;
        align-items: center;
        margin: 0;
        max-width: 100%;
        overflow: hidden;
    }
}

.progressbar-mobile__prev, .progressbar-mobile__next{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    margin: 0;
    position: relative;
}

.progressbar-mobile__prev{
    right: 20px;
}

.progressbar-mobile__next{
    left: 20px;
}

.progressbar-mobile__steps-container{
    display: flex;
    flex-direction: row;
    align-items: center;
}

.form__step{
    margin-bottom: 18px;
}

.form__step__header{
    font-size: 32px;
    font-weight: bold;
    margin: 0;
    width: fit-content;
}

@media (max-width: 768px){
    .form__step__header{
        font-size: 24px;
        margin-top: 8px;
    }
}

.form__step__header-container{
    display: flex;
    flex-direction: row;
}

@media (max-width: 768px){
    .form__step__header-container{
        flex-direction: column;
    }
}

.form__step__header__select{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    margin-left: 12px;
}

@media (max-width: 768px){
    .form__step__header__select{
        align-items: flex-start;
        justify-content: flex-start;
        margin: 6px 0;
    }
}

.form__step__header__select .select2-selection__rendered {
    line-height: 35px !important;
}

.form__step__header__select .select2-container .select2-selection--single {
    height: 35px !important;
}

.form__step__header__select .select2-selection__arrow {
    height: 35px !important;
    right: 8px !important;
}

.form__step__header__select .select2-selection__placeholder{
    color: #01324A !important;
}

.select2-search--dropdown .select2-search__field{
    border-radius: 20px !important;
    border-color: #E1E1E1 !important;
}

.select2-container--default .select2-results>.select2-results__options{
    scrollbar-width: thin;
    scrollbar-color: #888 #f1f1f1;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar{
    width: 5px;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-thumb{
    background-color: #888;
    border-radius: 20px;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-thumb:hover{
    background-color: #555;
}

.select2-container--default .select2-results>.select2-results__options::-webkit-scrollbar-track {
    background-color: #f1f1f1;
    border-radius: 20px;
}

.select2-container--open .select2-dropdown--below{
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

.select2-dropdown{
    border-color: #E1E1E1;
}

.select2-selection{
    border-color: #E1E1E1 !important;
}

@media (max-width: 768px) {
    .form__step__header__select .select2-selection__rendered {
        line-height: 40px !important;
    }

    .form__step__header__select .select2-container .select2-selection--single {
        height: 40px !important;
    }

    .form__step__header__select .select2-selection__arrow {
        height: 40px !important;
        right: 8px !important;
    }
}

.form__step__text{
    font-size: 20px;
    margin: 0;

    display: flex;
    flex-direction: row;
    align-items: center
}

@media (max-width: 768px){
    .form__step__text__label{
        display: none;
        font-weight: normal;
        font-size: 14px;
    }
}

@media (max-width: 768px){
    .form__step__text__placeholders{
        font-weight: normal;
    }
}

.form__step__text__edit{
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.categories-container__category-header{
    font-size: 24px;
    font-weight: bold;
    margin: 0;
    padding: 5px 0;
}

@media (max-width: 768px){
    .categories-container__category-header{
        font-size: 18px;
    }
}

.categories-container__category-name{
    display: flex;
    flex-direction: row;

    font-size: 16px;
    font-weight: 600;
    font-family: "Open Sans", sans-serif;
    cursor: pointer;
    width: fit-content;
}

.reservationApp__serviceContainer{
    display: grid;
    grid-template-columns: 2fr 3fr;
    margin: 12px 0;
}

@media (max-width: 768px){
    .reservationApp__serviceContainer{
        grid-template-columns: 1fr;
    }
}

.reservationApp__serviceContainer__additionalInfo{
    display: grid;
    grid-template-columns: 1fr 1fr;
    text-align: center;
}

@media (max-width: 768px){
    .reservationApp__serviceContainer__additionalInfo{
        display: flex;
        flex-direction: row;
        margin-left: 30px;
    }

    .reservationApp__serviceContainer__additionalInfo>div{
        padding: 0 10px;
    }
}

.reservationApp__customCheckbox input[type=checkbox]
{
    width: 20px;
    height: 20px;
    top: calc( 50% - 5px );
    left: 30px;
    transform: translateY(-50%);
}

.reservationApp__customCheckbox label{
    margin-left: 30px;
    font-size: 16px;
}

@media (max-width: 768px) {
    .reservationApp__customCheckbox label{
        margin-left: 20px;
    }
}

.reservationApp__serviceContainer .servicePrice, .reservationApp__serviceContainer .serviceDuration{
    font-size: 14px;
}

.form__step__specialist-container{
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
}

@media (max-width: 1200px){
    .form__step__specialist-container{
        grid-template-columns: 1fr 1fr 1fr;
    }
}

@media (max-width: 768px){
    .form__step__specialist-container{
        grid-template-columns: 1fr 1fr;
    }
}

.reservationApp__specialistContainer{
    max-width: 240px;
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    margin: 12px 0;
}

.reservationApp__specialistContainer__text__name, .reservationApp__specialistContainer__text__specialisation{
    margin: 0;
    text-align: center;
    transition: .05s;
}

.reservationApp__specialistContainer__text__name{
    font-size: 20px;
    font-weight: bold;
}

.reservationApp__specialistContainer__image{
    border-radius: 50%;
    overflow: hidden;
    border: 2px solid transparent;
    transition: .05s;
}

.reservationApp__specialistContainer:hover .reservationApp__specialistContainer__text__name,
.reservationApp__specialistContainer--active .reservationApp__specialistContainer__text__name{
    color: var(--main-primary);
}
.reservationApp__specialistContainer:hover .reservationApp__specialistContainer__text__specialisation,
.reservationApp__specialistContainer--active .reservationApp__specialistContainer__text__specialisation{
    color: var(--main-primary);
}
.reservationApp__specialistContainer:hover .reservationApp__specialistContainer__image,
.reservationApp__specialistContainer--active .reservationApp__specialistContainer__image{
    border: 2px solid var(--main-primary);
}

.terms-container__auto, .terms-container__date{
    display: flex;
    flex-direction: row;

    font-size: 24px;
    font-weight: 600;
    font-family: "Open Sans", sans-serif;
    cursor: pointer;
    width: fit-content;
    margin-bottom: 8px;
}

@media (max-width: 768px) {
    .terms-container__auto, .terms-container__date {
        font-size: 18px;
    }
}

.terms-container__project__name{
    font-size: 18px;
    font-weight: 600;
    font-family: "Open Sans", sans-serif;
    margin: 8px 0;
}

@media (max-width: 768px){
    .terms-container__project__name{
        font-size: 16px;
    }
}


.terms-container__project__specialists__name{
    font-size: 16px;
    font-weight: 500;
    font-family: "Open Sans", sans-serif;
    height: 100%;
}

.terms-container__project__specialist{
    display: grid;
    grid-template-columns: minmax(150px, 200px) 1fr;
    align-items: center;
}

@media (max-width: 768px){
    .terms-container__project__specialist{
        grid-template-columns: 1fr;
    }
}

.terms-container__project__specialists__terms__loading{
    margin-left: 18px;
}

.terms-container__project__specialists__terms{
    display: flex;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    width: 100%;
}

@media (max-width: 768px){
    .terms-container__project__specialists__terms{
        justify-content: center;
    }
}

.terms-container__project__specialists__terms__term{
    font-size: 14px;
    font-family: "Open Sans", sans-serif;
    padding: 5px;
    margin: 3px 5px;
    border: 2px solid #F5F5F5;
    border-radius: 20px;
    background: #FCFCFC;
}

.terms-container__project__specialists__terms__term:hover{
    background: #F5F5F5;
    border: 2px solid #0070F1;
    cursor: pointer;
}

.reservationApp__selected-date-input{
    border: 1px solid #E1E1E1;
    border-radius: 20px;
    padding: 8px 15px;
    font-size: 14px;
    color: #01324A;
}

@media (max-width: 768px){
    .reservationApp__selected-date-input{
        width: 100%;
    }
}

.reservationApp__selected-date-input__container{
    position: relative;
    width: fit-content;
}

.reservationApp__selected-date-input__container::after{
    content: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' height='19px' viewBox='0 0 20.453 19.3'%3E%3Cpath id='calendar' d='M3190.77,2095.75h-1.311V2095a.788.788,0,0,0-1.573,0v.75h-6.818V2095a.788.788,0,0,0-1.573,0v.75h-1.311c-2.536,0-3.933,1.332-3.933,3.75V2110c0,2.418,1.4,3.75,3.933,3.75h12.587c2.536,0,3.933-1.332,3.933-3.75v-10.5C3194.7,2097.082,3193.306,2095.75,3190.77,2095.75Zm-12.587,1.5h1.311v.75a.788.788,0,0,0,1.573,0v-.75h6.818v.75a.788.788,0,0,0,1.573,0v-.75h1.311c1.654,0,2.36.673,2.36,2.25v.75h-17.307v-.75C3175.823,2097.923,3176.53,2097.25,3178.183,2097.25Zm12.587,15h-12.587c-1.654,0-2.36-.673-2.36-2.25v-8.25h17.307V2110C3193.13,2111.577,3192.424,2112.25,3190.77,2112.25Zm-9.419-7.25a1.053,1.053,0,1,1-1.059-1h.01A1.026,1.026,0,0,1,3181.351,2105Zm4.2,0a1.053,1.053,0,1,1-1.059-1h.01A1.026,1.026,0,0,1,3185.547,2105Zm4.2,0a1.053,1.053,0,1,1-1.059-1h.01A1.026,1.026,0,0,1,3189.742,2105Zm-8.391,4a1.053,1.053,0,1,1-1.059-1h.01A1.026,1.026,0,0,1,3181.351,2109Zm4.2,0a1.053,1.053,0,1,1-1.059-1h.01A1.026,1.026,0,0,1,3185.547,2109Zm4.2,0a1.053,1.053,0,1,1-1.059-1h.01A1.026,1.026,0,0,1,3189.742,2109Z' transform='translate(-3174.25 -2094.25)' fill='%230070f1'/%3E%3C/svg%3E");
    height: 22px;
    width: 22px;
    position: absolute;
    right: 15px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 10;
}

.reservationApp__policy-confirm-label{
    font-size: 16px;
    font-family: "Open Sans", sans-serif;
    margin: 0;
    padding: 10px 0;
}

.reservationApp__policyConfirmCenterContainer{
    display: flex;
    align-items: center;
    justify-content: center;
}

.reservationApp__button{
    padding: 15px 30px !important;
    font-size: 18px;
    border-radius: 30px !important;
}

.reservationApp__card__grid {
    display: grid;
    grid-template-columns: 2fr 3fr;
    gap: 10px;
}

@media (max-width: 768px){
    .reservationApp__card__grid {
        grid-template-columns: 1fr;
        gap: 0;
    }
}

.reservationApp__card--confirmation{
    padding: 40px 60px;
    font-family: "Nunito", sans-serif;
}

.reservationApp__card--confirmation p{
    text-align: right;
    margin: 0;
}

@media (max-width: 768px){
    .reservationApp__card--confirmation p{
        text-align: center;
    }

    .reservationApp__card--confirmation b{
        text-align: center;
        margin-bottom: 8px;
    }
}

.reservationApp__serviceContainer__additionalInfo__label--desktop{
    display: inline;
}

.reservationApp__serviceContainer__additionalInfo__label--mobile{
    display: none;
}

@media (max-width: 768px){
    .reservationApp__serviceContainer__additionalInfo__label--desktop{
        display: none;
    }

    .reservationApp__serviceContainer__additionalInfo__label--mobile{
        display: inline;
    }
}

.goBackButton{
    width: 987px;
    margin: 18px 0;
}
@media (max-width: 1200px){
    .goBackButton{
        width: 750px;
    }
}
@media (max-width: 850px){
    .goBackButton{
        width: 90%;
    }
}

.goBackButton--in-card{
    position: absolute;
    bottom: -40px;
    left: 0;
}

.form__step__nextbutton{
    display: none;
    margin-top: 0;
}

@media (max-width: 768px){
    .form__step__nextbutton{
        display: flex;
        margin-top: 18px;
    }
}

.client-input {
    max-width: 576px;
    margin-bottom: 1rem;
}

.clientHeader {
    width: calc(100% - 40px);
    max-width: 576px;

}

.selectCurrentPersonContainer {
    display: flex;
    justify-content: end;
    max-width: 576px;
}


.icon-wrapper {
    width: 35px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: end;
}

.icon-wrapper img {
    width: 100%;
}

.animated-icon {
    padding: 5px;
    border-radius: 50%;
    align-items: center;
}

.animated-icon:hover {
    background-color: var(--main-primary-light);
    transition-duration: 0.2s;
}