.reservation-modal .modal-content {
    background-color: rgba(0,0,0,0.925);
    border-radius: 0;
    border: 1px solid #91765a;
    color: #fff;
    text-align: center;
}

.reservation-modal .modal-body {
    padding: 2.5rem;
}

.reservation-modal .modal-body p:last-of-type {
    font-weight: bold;
    margin-bottom: 1.5rem;
    background-color: #91765a;
    padding: .5rem 1rem;
    color:white;
}

.reservation-modal .modal-body .btn-style {
    margin: 0;
    font-size: 1rem;
    text-transform: none;
}

.reservation-form small {
    font-size: .9rem;
    line-height: 1.5;
    color: #91765a;
}

#cancelModalForm {
    display: block;
}

#errors-cancel-modal-reservation {
    -webkit-padding-start: 1.5rem;
            padding-inline-start: 1.5rem;
    list-style-type: disc;
    text-align: left;
    color: #fff;
    background-color: rgba(0,0,0,0.7);
}

#errors-cancel-modal-reservation>li {
    line-height: 1;
    font-size: .85rem;
    padding-top: .5rem;
    padding-bottom: .5rem;
    list-style-type: disc;
}

.active-lang {
    color: #91765a !important;
}

#resForm .dropdown-menu {
    background-color: #14100c;
    width: 100%;
}

#serviceMenuBtn {
    display: block;
    width: 100%;
    font-size: 15px;
    color: #14100c;
    padding: 15px 40px 15px 15px;
    background: #fff;
    border: none;
    box-shadow: none;
    border-radius: 0;
    text-align: left;
}

#serviceDropdownContent .dropdown-header {
    color: rgba(255, 255, 255, .85);
    border-bottom: 1px solid rgba(255, 255, 255, .1);
}

#serviceDropdownContent .dropdown-header:last-of-type {
    margin-top: .25rem;
}

#serviceDropdownContent .dropdown-item {
    position: relative;
    padding: .25rem 1.5rem;
    border-bottom: none;
    margin: 0;
    color: #91765a;
}

#serviceDropdownContent .dropdown-item::after {
    content: '';
    display: inline-block;
    position: absolute;
    top: calc(50% - 10px);
    right: .5rem;
    width: 20px;
    height: 20px;
    background: url('../img/check.png') center / contain no-repeat;
    opacity: 0;
}

#serviceDropdownContent .dropdown-item:focus,
#serviceDropdownContent .dropdown-item:active,
#serviceDropdownContent .dropdown-item.active {
    color: #fff;
    background-color: initial;
}

#serviceDropdownContent .dropdown-item:hover::after {
    opacity: .5;
}

#serviceDropdownContent .dropdown-item.active::after {
    opacity: 1;
}

.blank {
    border: 1px solid red !important;
}

.ui-datepicker-trigger {
    display: none;
}

/* CUSTOM TOGGLE */
.switch {
    position: relative;
    display: inline-block;
    width: 50px;
    height: 22px;
    margin-bottom: 0;
}
  
.switch input { 
    opacity: 0;
    width: 0;
    height: 0;
}
  
.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid #91765a;
    background-color: transparent;
    -webkit-transition: .4s;
    transition: .4s;
}
  
.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 3px;
    bottom: 2px;
    background-color: #91765a;
    -webkit-transition: .4s;
    transition: .4s;
}
  
input:checked + .slider {
    background-color: rgba(0,0,0,0.45);
}
  
input:focus + .slider {
    box-shadow: 0 0 1px rgba(0,0,0,0.45);
}
  
input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
}
  
/* Rounded sliders */
.slider.round {
    border-radius: 34px;
}
  
.slider.round:before {
    border-radius: 50%;
}

.remember-me-label {
    margin-bottom: 0px;
    color: #14100c !important;
    font-size: 1rem;
    margin-left: 10px;
    display: inline-block !important;
}

#resForm .time-list {
    display: none;
    margin-bottom: 1rem;
    font-size: .9rem;
    color: #14100c;
}

#resForm .time-list__title {
    display: flex;
    align-items: center;
    white-space: nowrap;
    line-height: 1;
    margin-bottom: .5rem;
    color: #14100c;
}

#resForm .time-list__title::after {
    content: '';
    width: 100%;
    height: 1px;
    background: rgba(145,118,90,.25);
    margin-left: 1rem;
}

#resForm .time-list__body > span {
    display: inline-block;
    font-size: 1rem;
    padding: .25rem .75rem;
    border: 1px solid rgba(145,118,90,.25);
    cursor: pointer;
    transition: background-color .15s;
    color: #14100c;
}

#resForm .time-list__body > span:hover {
    background-color: rgba(145, 118, 90, .1);
}

#resForm .time-list__body > span.active {
    background-color: rgb(145,118,90);
    color: #fff;
}

/* CUSTOM CHECKBOX */
.custom-checkbox {
    display: inline-block;
    position: relative;
    padding-left: 35px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
  
.custom-checkbox input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}
  
.checkmark {
    position: absolute;
    top: 2px;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: transparent;
    border: 1px solid rgb(145,118,90);
}
  
.custom-checkbox:hover input ~ .checkmark {
    background-color: rgba(145,118,90,0.45);
}
  
.custom-checkbox input:checked ~ .checkmark {
    background-color: rgba(145,118,90,0.45);
}
  
.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}
  
.custom-checkbox input:checked ~ .checkmark:after {
    display: block;
}
  
.custom-checkbox .checkmark:after {
    left: 7px;
    top: 4px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

#errors-reservation {
    -webkit-padding-start: 1.5rem;
    padding-inline-start: 1.5rem;
    list-style-type: disc;
    text-align: left;
    color: #fff;
    background-color: rgba(0,0,0,0.7);
    margin-top: 10px;
    margin-bottom: 10px;
}

#errors-reservation>li {
    line-height: 1;
    font-size: .85rem;
    padding-top: .5rem;
    padding-bottom: .5rem;
    list-style-type: disc;
}