/*reserve*/
.calendar_in input,
.calendar_out input {
    font-size: 14px;
    font-weight: 700;
    border: none;
    width: 243px;
    color: #044758;
    transition: all 0.3s ease;
    font-family: inherit;
}

.booking_bar_right_box input {
    font-size: 14px;
    font-weight: 700;
    border: none;
    width: 144px;
    color: #044758;
    transition: all 0.3s ease;
    font-family: inherit;
}

input[type="date"]:focus {
    outline: none;
    border-color: #044758;
    box-shadow: 0 0 0 2px rgba(4, 71, 88, 0.2);
}

input[type="date"]:before {
    content: attr(placeholder);
    color: #D9D9D9;
}

input[type="date"]:valid:before {
    display: none;
}


.calendar_in input::-webkit-calendar-picker-indicator,
.calendar_out input::-webkit-calendar-picker-indicator {
    opacity: 0;
    width: 20px;
    height: 20px;
    cursor: pointer;
    position: relative;
    z-index: 2;
    padding: 0 0 0 140px;
}

.booking_bar_right_box input::-webkit-calendar-picker-indicator{
    opacity: 0;
    width: 20px;
    height: 20px;
    cursor: pointer;
    position: relative;
    z-index: 2;
    padding: 0 0 0 40px;
}

input[type="date"] {
    background-image: url('/static/main/icon/check_in_date.svg');
    background-repeat: no-repeat;
    background-position: right center;
    background-size: 20px;
    background-color: transparent;
}


/*payment*/
input[type="checkbox"] {
    appearance: none;
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    border: 1px solid #D9D9D9;
    cursor: pointer;
    position: relative;
}


input[type="checkbox"]:checked::after {
    content: "✓";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 14px;
}


input[type="checkbox"]:checked {
    background-color: #044758;
    border-color: #044758;
}