
#datePickContainer{
    margin-right: auto;
}

input.check-date, #check-date-room, #guests, .r-title{
    background-color: transparent;
    font-size: 20px;
    font-weight: normal;
    color: #fff;
    line-height: 30px;
    border: none;
    cursor: pointer;
}

input.check-date.error, #guests.error{
    color: #d00;
}

.hide{
    display: none;
}

.check-in-form .nice-select{
    background-color: transparent;
    border: none;
    height: auto;
    line-height: unset;
    padding-left: 0;
    font-size: 20px;
}

.datepick-popup{
    position: absolute !important;
}

.datepick-popup select{
    background-color: var(--section-bg);
    border: 1px solid #414141;
    margin-right: 5px;
    padding: 5px;
    opacity: 0.7;
}

.check-in-form .nice-select .list{
    background-color: var(--section-bg);
    border-radius: 0px;
    color: var(--theme-color);
    top: calc(100% + 18px);
    padding: 15px 15px 20px;
}

.datepick-nav{
    display: flex;
    justify-content: space-between;
    padding: 10px 20px;
}

.datepick-month-header{
    display: flex;
    margin-bottom: 10px;
}

.datepick-month table td span:not(.datepick-other-month), .datepick-month table td a{
    border: 1px solid transparent;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    display: flex;
    margin: 2px;
    align-items: center;
    justify-content: center;
}

.datepick-month table td a:hover{
    border-color: var(--calendar-color) !important;
}

.datepick-selected{
    background-color: var(--calendar-color);
    color: var(--section-bg);
}

.datepick-ctrl{
    display: flex;
    justify-content: flex-end;
    padding: 10px 20px;
}

.datepick-ctrl a{
    margin-left: 10px;
}

.datepick-month table td span{
    opacity: 0.3;
}

select.error + .nice-select{
    color: #d00;
}

.lds-dual-ring {
    display: none;
    width: 35px;
    height: 35px;
}
.lds-dual-ring:after {
    content: " ";
    display: block;
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 2px solid #fff;
    border-color: #fff transparent #fff transparent;
    animation: lds-dual-ring 1.2s linear infinite;
}

.setGuestsPopUp{
    display: none;
    padding: 30px;
    position: absolute;
    background-color: var(--section-bg);
    /* display: block; */
    width: 350px;
    top: calc(100% + 10px);
    color: var(--theme-color);
    font-weight: 300;
    font-family: var(--font-Kudryashev);
}

.setGuestsPopUp .counter .down, .setGuestsPopUp .counter .up, .stepper-input{
    font-size: 50px;
    line-height: 30px;
    height: 30px;
}

.setGuestsPopUp .field-row:not(:last-child){
    margin-bottom: 10px;
}

.setGuestsPopUp .button-number{
    font-size: 30px;
}

.stepper-input{
    background-color: transparent;
    border: none;
    width: 80px;
    text-align: center;
    -moz-appearance: textfield;
    font-size: 25px;
    font-family: inherit;
}

.setGuestsPopUp .field-row > span{
    text-transform: capitalize;
    font-size: 25px;
}

@keyframes lds-dual-ring {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}