/* booking form css - .bf */

.air-datepicker.-inline-.bws{
    width:100%;
    font-family: "Suisse Intl";
    border:none;
}

.bws .air-datepicker-body--day-name{
    color: var(--dark);
    font-weight: 800;
    font-family: "Suisse Intl";
}

.bws .air-datepicker-body--day-name.-weekend- {
    color: var(--dark);
    font-weight: 800;
}

.bws .air-datepicker-cell.-day-.-selected- {
    background-color: var(--dark);
    color: var(--yellow);
    border-radius: 8em;
}

.bws .air-datepicker-cell.-day-.-current-:not(.-selected-) {
    background-color: none;
    color: var(--dark);
    border-radius: 8em;
}
.bws .air-datepicker-cell.-day-.-current-.selected {
    background-color: none;
    color: var(--yellow);
    border-radius: 8em;
}
.bws .air-datepicker-cell:hover {
    background-color: var(--yellow);
    color: var(--dark);
    border-radius: 8em;
}
.bws .air-datepicker-cell {
    transition-duration: 0.5s;
}

.full-height {
    display: block;
    height:100%;
    align-items: center;
}

/* .bw-order-element:first-of-type {
    border-radius: 1rem 1rem 0 0;
}
.bw-order-element:last-of-type {
    border-radius: 0em 0em 1rem 1rem;
} */
.slots-container {
    display: flex;
    max-width: 600px;
    flex-direction: row;
    flex-wrap: wrap;
    align-content: stretch;
    justify-content: flex-start;
    align-items: center;
}

.slots-container .one-slot {
    width: 4em;
    display: inline-grid;
    height: 2.4em;
    padding: 0em;
    border: 2px solid var(--dark);
    align-content: space-around;
    border-radius: 7em;
    justify-items: center;
    align-items: center;
    justify-content: space-evenly;
}

.slots-container .one-slot.selected {
    background: var(--dark);
    color: var(--yellow)!important;
}

.slots-container .one-slot.disabled {
    background: var(--gray);
    color: var(--dark)!important;
}


.bw-order-element {
    display: block;
    padding: 1em;
    background: white;
    border: 4px solid;
    border-bottom: none;
    border-color: #ffffff1f;
    margin-bottom: 1em;
    border-radius: 1rem;
}

.booking-form-shadow {
    
    box-shadow: 2px 2px 6px 2px #0000001a;
}

.order-element-title {
    display: block;
    color: var(--gray);
    font-weight: 100;
    font-size: 0.7rem;
    padding-left: 1rem;
    padding-right: 1rem;
    position: relative;
    padding-bottom: 0.2rem;
}

.order-element-value {
    display: block;
    width:100%;
    color: var(--gray);
}

/* 2) Абсолютно позиционируем метку */
.booking-label {
    display: inline-block;
    font-size: 0.75rem;
    padding: 0.2em 0.6em;
    background-color: var(--white);
    color: var(--dark);
    border-radius: 1em;
    margin: 0;
    z-index: 10;
    width: fit-content;
  }

  .block-price {
    display: inline-block;
    position: absolute;
    /* bottom: 0px; */
    font-size: 0.8rem;
    right: 4rem;
    /* right: 0px; */
    background-color: var(--yellow);
    color: var(--dark);
    border-radius: 3rem;
    padding: 0.7rem;
    z-index: 12;
    font-weight: 100;
  }

  .block-edit-btn {
    display: inline-block;
    position: absolute;
    /* bottom: 0px; */
    font-size: 0.8rem;
    right: 1rem;
    /* right: 0px; */
    background-color: var(--dark);
    color: var(--yellow);
    border-radius: 4rem;
    width: 3em;
    height: 3em;
    text-align: center;
    padding-top: 0.7em;
  }