.booking-form {
    font-size: 18px;
    position: relative;
}

.plan {
    width: auto;
}

.form-section {
    display: flex;
    width: 100%;
}
.panel {
    width: 100%;
}
.price {
    margin-left: auto;
    color: #1ca7e2;
}
.price--weekend {
    color: #ff8b3e;
}

.price::after {
    content: ' руб.';
}

.checkbox {
    position: relative;
    height: 28px;
    transition: all .3s;
}

.checkbox--active {
    height: 70px;
}
.checkbox--active .time {
    visibility: visible;
    opacity: 1;
}

.checkbox--disabled {
    color: #ccc;
}
.checkbox--disabled span {
    color: #ccc;
}
.checkbox input {
    margin-top: 0;
}

label.checkbox-label {
    display: flex;
    align-items: center;
    padding-left: 0;
}
.checkbox .fa {
    margin-right: 10px;
    color: #888;
}
.checkbox .text {
    margin-right: 25px;
}


.time {
    display: flex;
    justify-content: space-between;
    margin-top: 15px;
    width: 100%;
    position: absolute;
    bottom: 0;
    visibility: hidden;
    opacity: 0;
    transition: all .2s;
}

.time input {
    width: 80px;
}

.sum:after {
    content: ' руб.';
}

.datepicker, .table-condensed {
    width: 100%;
}
.datepicker .active {
    background: #1CAFE9!important;
}
.datepicker .disabled {
    background: #ddd!important;
    border-radius: 0;
}
div.datepicker-inline {
    width: auto;
}

.people .panel-body {
    display: flex;
    align-items: flex-start;
}
.people input[type=number] {
    width: 40px;
    margin-right: 10px;
}
.people .people-price {
    font-weight: bold;
    color: #1CAFE9;
}
.people-message {
    display: none;
    font-size: 12px;
}
.people-message--active {
    display: block;
}

.people-price--weekend {
    color: #ff8b3e;
}

.contacts label{
    font-weight: normal;
    color: #1CAFE9;
}

.booking-message {
    display: none;
}
.booking-message--active {
    display: flex;
}
#datepicker tbody > tr td {
    border-radius: 0;
}
#datepicker tbody > tr td:nth-child(6), #datepicker tbody > tr td:nth-child(7) {
    background-image: none;
    background-color: #ffd7bf;
}

.booking-success {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    visibility: hidden;
    opacity: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background: #fff;
    transition: all .3s;
}
.booking-success--active {
    visibility: visible;
    opacity: 1;
}
.booking-success span {
    font-size: 20px;
    font-weight: bold;
    color: #ff8b3e;
}
.booking-success-message {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
