﻿.wizard {
    padding: 60px;
}

.wizard-step {
    display: none;
    margin: 40px 0;
}

.wizard-step:first-of-type {
    margin-top: 0;
}

.wizard-step-full {
    margin: 60px -60px;
}

.wizard-step-bg {
    background-color: #f1f3fb;
}

.wizard-step-full-container {
    padding: 60px;
}

.wizard-step.active {
    display: block;
}

.wizard-step.passed {
    display: block;
    opacity: .6;
}

.wizard-step.in-scrollview {
    opacity: 1 !important;
}

.wizard-step-title {
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    margin-bottom: 20px;
}

.wizard-step-number {
    height: 48px;
    width: 48px;
    min-width: 48px;
    color: var(--secondary);
    font-weight: bold;
    border-radius: 48px;
    background-color: white;
    display: -ms-flexbox;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 20px;
}

.wizard-step-number small {
    font-weight: bold;
    opacity: .4;
    margin-left: 2px;
}

.wizard-step-title h2, .wizard-seating-title h2 {
    font-weight: 400;
    font-size: 2em;
}

.wizard-seating-title h2 {
    margin-bottom: unset !important;
    display: flex;
    align-items: center;
    gap: 10px;
}

#wizard-seating-selected-zone-area {
    font-size: .35em;
}

.wizard-seating-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
}

.wizard-zones, .wizard-durations, .wizard-guest-type-boxes, .wizard-others {
    display: -ms-flexbox;
    display: flex;
    align-items: center !important;
    -ms-flex-align: center !important;
    -webkit-box-flex: 1;
    flex: 1 auto;
    -ms-flex: 1 0 0px;
    min-width: 0;
}

.wizard-zone {
    position: relative;
    min-height: 300px;
    border: 1px solid white;
    cursor: pointer;
    color: white;
    display: -ms-flexbox;
    display: flex;
    align-items: end;
    align-items: flex-end;
    overflow: hidden;
}

.wizard-zone.wizard-zone-black {
    background-color: white;
    color: black;
    border-color: var(--gray);
}

.wizard-zone.disabled {
    filter: grayscale(100%);
    cursor: not-allowed;
}

.wizard-zone.wizard-zone-black.disabled {
    filter: grayscale(100%) opacity(60%);
}

.wizard-zone-image {
    background-position: center center;
    background-size: 110%;
    background-repeat: no-repeat;
    background-color: white;
    transition: all .5s;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    filter: brightness(75%);
    z-index: 0;
}

.wizard-zone:not(.disabled):hover .wizard-zone-image {
    background-size: 100%;
    filter: unset;
}

.wizard-zone:not(.disabled):not(.wizard-zone-black):hover .wizard-zone-body {
    opacity: 0;
}

.wizard-zone-body, .wizard-seating-zone-area-name {
    padding: 30px;
    padding-bottom: 50px;
    bottom: 0;
    z-index: 1;
    transition: all .5s;
}

.wizard-seating-zone-area-name {
    position: absolute;
    font-size: 2em;
    font-weight: 400;
    color: white;
}

.wizard-zone-body h3 {
    font-weight: 600;
}

.wizard-zone-body p {
    font-weight: 600;
    font-size: .85em;
    max-width: 60%;
}

.wizard-zone-label, .wizard-seating-zone-area-label {
    font-weight: 600;
    min-width: 50%;
    padding: 10px 30px;
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: .85em;
    text-transform: uppercase;
    z-index: 2;
    color: white;
    background-color: var(--primary);
}

.wizard-seating-zone-area-label {
    min-width: 30%;
}

.wizard-zone.selected .wizard-zone-image {
    filter: brightness(75%);
}

.wizard-zone.selected::before {
    position: absolute;
    content: "";
    float: right;
    top: 30px;
    right: 30px;
    width: 30px;
    height: 30px;
    border-radius: 30px;
    background-color: var(--primary);
    background-image: url(/assets/media/icons/check-white.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 50%;
    z-index: 1;
}

.wizard-duration {
    height: 60px;
    text-align: center;
    background-color: #ffffff;
    border: 1px solid #f4f5f8;
    padding: 18px;
    font-weight: 500;
    cursor: pointer;
}

.wizard-duration.disabled, .wizard-guest-type-number.disabled {
    background-color: var(--gray);
    color: gray;
    cursor: not-allowed;
}

.wizard-duration.selected, .wizard-guest-type-number.selected, .wizard-calendar-day.selected {
    background-color: var(--primary);
    border-color: rgba(119, 102, 255, .5);
    color: #ffffff;
    font-weight: 600;
}

.wizard-calendar-day-attached-label {
    position: absolute;
    top: 0;
    right: 0;
    padding: 1.5px 5px;
    color: white;
    font-size: .55em;
    font-weight: 800;
}

.wizard-calendar-day.selected {
    background-image: unset !important;
}

.wizard-calendar-day.selected * {
    color: #ffffff;
    opacity: 1;
}

.wizard-calendar-day.selected h4 {
    font-weight: 600;
}

.wizard-duration:not(.disabled):not(.selected):hover, .wizard-duration:not(.selected).hovered, .wizard-guest-type-number:not(.disabled):not(.selected):hover, .wizard-guest-type-number:not(.selected).hovered, .wizard-calendar-day:not(.disabled):not(.selected):hover {
    background-color: rgba(119, 102, 255, .75);
    border-color: rgba(119, 102, 255, .5);
    color: #ffffff;
    z-index: 1;
}

.wizard-calendar-day:not(.disabled):not(.selected):hover {
    background-image: unset !important;
}

.wizard-calendar-day:not(.disabled):not(.selected):hover * {
    color: #ffffff;
}

.wizard-guest-type {
    margin-bottom: 20px;
}

.wizard-guest-type.disabled {
    display: none;
}

.wizard-guest-type-number {
    height: 60px;
    width: 60px;
    text-align: center;
    background-color: #ffffff;
    border: 1px solid #f4f5f8;
    padding: 18px;
    cursor: pointer;
    font-weight: 500;
}

.wizard-guest-type-other {
    border: 1px solid #f4f5f8;
    width: calc(100% - 250px);
    height: 60px;
    margin-left: 10px;
    min-width: 150px;
    font-weight: 600;
}

.wizard-guest-type-other.disabled {
    background-color: var(--gray);
    pointer-events: none;
    cursor: not-allowed;
}

.wizard-calendar {
    height: 120px;
    background-color: white;
    position: relative;
}

.wizard-calendar-days {
    overflow-x: auto;
    white-space: nowrap;
}

.wizard-calendar-days-scroll {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.wizard-calendar::before, .wizard-calendar::after {
    content: "";
    display: block;
    width: 60px;
    height: 120px;
    background-color: var(--secondary);
    background-image: url(/assets/media/icons/chevron-left.svg);
    background-size: 30%;
    background-position: center center;
    background-repeat: no-repeat;
    margin: auto;
    position: absolute;
    margin-left: -60px;
    cursor: pointer;
    top: 0;
}

.wizard-calendar.no-past::before {
    background-color: gray;
    cursor: not-allowed;
    pointer-events: none;
}

.wizard-calendar::after {
    background-image: url(/assets/media/icons/chevron-right.svg);
    margin-left: unset;
    margin-right: -60px;
    float: right;
    right: 0;
}

.wizard-calendar.disable-controls::before, .wizard-calendar.disable-controls::after {
    background-color: gray;
    cursor: not-allowed;
    pointer-events: none;
}

.wizard-calendar.disable-controls {
    pointer-events: none;
}

.wizard-calendar .wizard-calendar-day:first-of-type {
    margin-left: unset;
}

.wizard-calendar-day {
    height: 120px;
    width: 88px;
    position: relative;
    display: inline-flex;
    background-color: white;
    border: 1px solid #f4f5f8;
    margin-left: -1px;
    padding: 10px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.wizard-calendar-day-date {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding-bottom: 15px;
}

.wizard-calendar-day-date h4 {
    font-weight: 400;
    font-size: 1.65em;
    margin: 0;
    margin-bottom: 5px;
}

.wizard-calendar-day-date span {
    font-weight: 500;
    opacity: .4;
    font-size: .75em;
}

.wizard-calendar-day-weekday {
    font-size: .85em;
    font-weight: 500;
}

.wizard-calendar-day.wizard-calendar-weekend-day .wizard-calendar-day-weekday {
    font-weight: 600;
}

.wizard-calendar-day.disabled {
    /*background-image: unset !important;*/
    background-color: var(--gray) !important;
    color: gray;
    cursor: not-allowed;
}

.wizard-calendar-day.disabled * {
    color: gray;
}

.wizard-calendar-labels {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: end;
    justify-content: flex-end;
    width: 100%;
    margin-top: 10px;
}

.wizard-calendar-label {
    display: flex;
    align-items: center;
    font-size: .7em;
    font-weight: 600;
    margin-left: 20px;
    color: gray;
}

.wizard-calendar-label-color {
    height: 7.5px;
    width: 20px;
    margin-right: 10px;
}

.wizard-calendar-label-color.wizard-calendar-label-attached {
    height: auto;
    width: auto;
    padding: 1.5px 5px;
    font-size: .75em;
    font-weight: 800;
    margin-right: 10px;
    color: white;
}

.wizard-other {
    flex-basis: 33.33%;
    border: 1px solid #f4f5f8;
    display: flex;
    align-items: center;
    height: 60px;
    padding: 10px 20px;
}

.wizard-other span {
    flex-grow: 1;
    font-size: .85em;
}

.wizard-other-price {
    font-weight: 600;
    text-align: right;
}

.wizard-bottom-bar {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 60px;
    padding: 20px 60px;
    align-items: center;
    background-color: rgba(22, 0, 58, .85);
    color: white;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    z-index: 100;
    display: none;
}

.wizard-bottom-bar.active {
    display: -ms-flexbox;
    display: flex;
}

.wizard-bottom-bar-left, .wizard-bottom-bar-right {
    display: -ms-flexbox;
    display: flex;
    align-items: center;
}

.wizard-bottom-bar-left {
    flex-basis: 80%;
    padding-right: 20px;
}

.wizard-selection .wizard-label {
    font-size: .55em;
    opacity: .6;
    text-transform: uppercase;
    margin-right: 15px;
}

.wizard-selection {
    display: -ms-flexbox !important;
    display: flex !important;
    align-items: center;
    flex-grow: 1;
}

.wizard-total-amount {
    font-weight: 400;
    font-size: 1.25em;
}

.wizard-bottom-bar-right {
    flex-basis: 20%;
    justify-content: end;
    justify-content: flex-end;
}

.wizard-bottom-bar-right .btn {
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.wizard-step-full-container .wizard-step-title h2, .wizard-step-full-container .wizard-seating-title h2 {
    font-size: 2.5em;
}

.wizard-deal-selection {
    position: relative;
    margin: 20px 0;
    padding: 40px;
    background-color: white;
    border: 1px solid #dbe4ea;
    cursor: pointer;
}

.wizard-deal-selection:hover {
}

.wizard-deal-selection h3 {
    font-size: 2.25em;
    font-weight: 300;
}

.selection-footer {
    display: flex;
    display: -ms-flexbox;
    align-items: center;
    margin-top: 20px;
}

.selection-footer div {
    flex-grow: 1;
}

.selection-footer .selection-labels {
    font-size: 1.25em;
}

.selection-footer .selection-labels .lb {
    color: black;
}

.selection-footer .selection-price {
    text-align: right;
}

.wizard-deal-selection.selected::before {
    position: absolute;
    content: "";
    float: right;
    top: 40px;
    right: 40px;
    width: 40px;
    height: 40px;
    border-radius: 30px;
    background-color: var(--primary);
    background-image: url(/assets/media/icons/check-white.svg);
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 50%;
    z-index: 1;
}

.special-deals {
    display: flex;
    display: -ms-flexbox;
    align-items: center;
}

.special-deals h3 {
    font-weight: bold;
}

.special-selection {
    flex-basis: 33.33%;
    padding: 0 !important;
}

.special-selection.special-selection-bg {
    color: white;
}

.selection-labels .lb:first-of-type {
    margin-left: 0 !important;
}

.special-selection.special-selection-bg .selection-footer .selection-labels .lb {
    color: white;
}

.special-selection-image {
    background-position: center center;
    background-size: 110%;
    background-repeat: no-repeat;
    background-color: white;
    transition: all .5s;
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    filter: brightness(75%) blur(1px);
    z-index: 0;
}

.special-selection.special-selection-bg:hover .special-selection-image {
    background-size: 100%;
    filter: unset;
}

.special-selection.special-selection-bg:hover .special-selection-body {
    opacity: 0;
}

.special-selection-body {
    padding: 40px;
    padding-bottom: 80px;
    bottom: 0;
    z-index: 1;
    transition: all .5s;
    position: relative;
}

.selection-label {
    font-weight: 600;
    min-width: 50%;
    padding: 10px 40px;
    position: absolute;
    bottom: 0;
    left: 0;
    font-size: .85em;
    text-transform: uppercase;
    z-index: 2;
    color: white;
    background-color: var(--primary);
}

div[data-warning-for] {
    display: none;
}

.wizard-access-intervals, .wizard-checkin-intervals {
    display: flex;
    width: 100%;
}

.wizard-access-interval, .wizard-checkin-interval {
    background-color: white;
    border: 1px solid #f4f5f8;
    width: auto;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 15px;
    font-weight: 500;
    cursor: pointer;
}

.wizard-access-interval.selected, .wizard-checkin-interval.selected {
    background-image: unset !important;
    background-color: var(--primary);
    border-color: rgba(119, 102, 255, .5);
    color: #ffffff;
    font-weight: 600;
}

.wizard-access-interval small {
    margin-left: 15px;
    opacity: .6;
    font-weight: 500;
    font-size: .85em;
}

.wizard-access-intervals .wizard-access-interval:first-of-type, .wizard-checkin-intervals .wizard-checkin-interval:first-of-type {
    margin-left: 0;
}

.wizard-access-intervals .wizard-access-interval:last-of-type, .wizard-checkin-intervals .wizard-checkin-interval:last-of-type {
    margin-right: 0;
}

.wizard-access-interval:not(.disabled):not(.selected):hover, .wizard-checkin-interval:not(.disabled):not(.selected):hover {
    background-image: unset;
    background-color: rgba(119, 102, 255, .75);
    border-color: rgba(119, 102, 255, .5);
    color: #ffffff;
}

.wizard-access-interval.available, .wizard-checkin-interval.available {
    background-image: linear-gradient(to top right, #88DF9ED9, #ffffff, #ffffff);
}

.wizard-access-interval.fully-booked-soon, .wizard-checkin-interval.fully-booked-soon {
    background-image: linear-gradient(to top right, #F9BF7BD9, #ffffff, #ffffff);
}

.wizard-access-interval.disabled, .wizard-checkin-interval.disabled {
    background-color: var(--gray);
    color: gray;
    cursor: not-allowed;
}

.wizard-seating-map {
    width: 100%;
    height: auto;
    display: flex;
    align-items: stretch;
    position: relative;
}

.wizard-seating-map .wizard-seat-types {
    flex-basis: 300px;
    margin-right: 30px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.wizard-seat-types .wizard-seat-type {
    width: 100%;
    height: 200px;
    border: 1px solid #f4f5f8;
    background-color: white;
    position: relative;
    cursor: pointer;
}

.wizard-seat-types .wizard-seat-type.disabled {
    filter: grayscale(100%);
    cursor: not-allowed;
    background-color: var(--gray);
}

.wizard-seat-types .wizard-seat-type.selected {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
}

.wizard-seat-types .wizard-seat-type.selected * {
    color: white;
}

.wizard-seat-types .wizard-seat-type.selected .wizard-seat-type-count-no {
    background-color: #ffffff;
    color: var(--primary);
}

.wizard-seat-types .wizard-seat-type:not(.disabled):not(.selected):hover {
    background-color: rgba(119, 102, 255, .75);
    border-color: rgba(119, 102, 255, .5);
    color: #ffffff;
}

.wizard-seat-types .wizard-seat-type.disabled {
    cursor: not-allowed !important;
}

.wizard-seat-type .wizard-seat-type-persons {
    position: absolute;
    top: 10px;
    left: 10px;
    font-size: 1.75em;
    display: flex;
    z-index: 1;
}

.wizard-seat-type-persons .fas {
    margin-right: 5px;
}

.wizard-seat-type .wizard-seat-type-count {
    position: absolute;
    top: 10px;
    right: 10px;
    text-align: right;
}

.wizard-seat-type .wizard-seat-type-icon {
    width: 95%;
    height: 95%;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
    transform: translate(-50%, -50%);
    left: 50%;
    top: 50%;
    position: absolute;
}

.wizard-seat-type .wizard-seat-type-bottom {
    width: 100%;
    height: auto;
    padding: 10px;
    display: flex;
    align-items: center;
    position: absolute;
    bottom: 0;
    left: 0;
    z-index: 1;
    font-weight: 500;
}

.wizard-seat-type-bottom > div {
    flex-grow: 1;
}

.wizard-seat-type-bottom .wizard-seat-type-availability {
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.wizard-seat-type-availability .available-rect {
    position: relative;
    background-color: #88df9e;
    width: 25px;
    height: 15px;
    margin-left: 10px;
}

.wizard-seating-map .wizard-map {
    flex-basis: calc(100% - 330px);
    display: flex;
    flex-direction: column;
}

.wizard-map .wizard-map-zones {
    display: flex;
    align-items: center;
    flex-basis: 60px;
}

.wizard-map-zones .wizard-map-zone {
    background-color: white;
    border: 1px solid #f4f5f8;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
}

.wizard-map-zones .wizard-map-zone:not(.selected):hover {
    background-color: rgba(119, 102, 255, .75);
    border-color: rgba(119, 102, 255, .5);
    color: #ffffff;
}

.wizard-map-zones .wizard-map-zone.selected {
    background-color: var(--primary);
    border-color: var(--primary);
    color: white;
    font-weight: 600;
}

.wizard-map .wizard-map-container {
    background-color: #cdcfe2;
    border: 1px solid #f4f5f8;
    flex-basis: calc(100% - 60px);
    overflow: hidden;
    position: relative;
}

.wizard-seating-map .wizard-map-tools {
    position: absolute;
    display: flex;
    flex-direction: column;
    width: 60px;
    height: auto;
    right: -60px;
    top: 50%;
    transform: translate(0, -50%);
}

.wizard-map-tools > div {
    margin: 20px 0;
}

.wizard-map-tools .btn {
    height: 60px;
    width: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5em;
    margin: 1px 0;
    opacity: .8;
}

.wizard-map-tools .btn:hover {
    opacity: 1;
}

.wizard-map-tools .wizard-map-tools-label {
    text-align: center;
    font-size: .5em;
    opacity: .75;
    color: var(--secondary);
    text-transform: uppercase;
    margin: 10px 0;
    font-weight: 500;
}

.wizard-zone-map {
    position: absolute;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    cursor: move;
}

.wizard-zone-map svg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.wizard-zone-map svg polygon {
    cursor: pointer;
}

.wizard-zone-map svg polygon.selected {
    display: none;
}

.wizard-map-contingent {
    height: 30px;
    width: 30px;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    position: absolute;
    animation: map-contingent-pulse 2s infinite ease-out;
    transform: translate(-50%, -50%);
    cursor: pointer;
}

.wizard-map-contingent.in-view {
    z-index: 2;
}

.wizard-map-contingent.opaque {
    opacity: .2;
    cursor: unset;
}

.wizard-zone-area-name {
    position: absolute;
    transform: translate(-50%, -50%);
    opacity: .8;
    color: white;
    font-size: 2em;
    z-index: 2;
    text-align: center;
    line-height: 1em;
    font-weight: 500;
    cursor: pointer;
}

.wizard-zone-area-name.selected {
    display: none;
}

.wizard-zone-area-name small {
    font-size: .5em;
    font-weight: 600;
}

.wizard-map-contingent-info {
    position: absolute;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;
    background-color: white;
    padding: 10px;
    font-weight: 600;
    z-index: 3;
    font-size: .85em;
}

.wizard-map-contingent-info::before {
    content: '';
    position: absolute;
    width: 0;
    height: 0;
    left: -20px;
    right: auto;
    top: 0px;
    bottom: auto;
    border: 20px solid;
    border-color: white transparent transparent transparent;
}

.wizard-map-contingent-info .seat-full-number {
    font-size: 1.25em;
}

.wizard-map-contingent-info .info-bottom {
    display: flex;
    flex-direction: row;
    align-items: center;
    font-weight: 500;
    margin-top: 5px;
    min-width: 90px;
}

.wizard-map-contingent-info .info-bottom > div {
    flex-grow: 1;
}

.wizard-map-contingent-info .seat-type-persons {
    display: flex;
    margin-right: 10px;
    font-size: 1.25em;
}

.wizard-map-contingent-info .seat-type-persons .fas {
    margin-right: 2.5px;
}

.wizard-map-contingent-info .seat-type-price {
    text-align: right;
}

.wizard-guest-names .guest-input {
    margin-bottom: 30px;
}

.wizard-guest-names .guest-input input {
    margin-bottom: 10px;
}

.wizard-guest-names .guest-input input:last-of-type {
    margin-bottom: unset;
}

.wizard-guest-seat-indicators {
    margin-bottom: 20px;
    text-align: center;
}

.wizard-guest-seat-indicators .lb {
    font-size: 1em;
    font-weight: 500;
    padding: 11.5px 25px;
    color: var(--secondary);
    position: relative;
}

.wizard-guest-seat-indicators .lb.selected {
    background-color: var(--primary);
    color: white;
    padding-right: 50px;
    cursor: pointer;
}

.wizard-guest-seat-indicators .lb.selected::after {
    position: absolute;
    top: 11.5px;
    height: 24px;
    width: 24px;
    right: 20px;
    content: "";
    background-image: url('/assets/media/icons/check-white.svg');
    background-position: center center;
    background-size: 75%;
    background-repeat: no-repeat;
}

.wizard-guest-seat-indicators .lb.selected:hover::after {
    background-image: url('/assets/media/icons/times-white.svg');
    background-size: 50%;
}

.wizard.disabled::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(249, 250, 255, .6);
    backdrop-filter: blur(5px);
    width: 100%;
    height: 100%;
    z-index: 1;
}

.wizard-day-occupancy {
    position: absolute;
    bottom: 130px;
    left: 0;
    background-color: rgba(22, 0, 58, .95);
    color: white;
    -webkit-backdrop-filter: blur(5px);
    backdrop-filter: blur(5px);
    display: flex;
    padding: 10px;
    z-index: 1;
    align-items: center;
    transform: translate(-50%);
}

.wizard-day-occupancy:after {
    content: '';
    position: absolute;
    top: 100%;
    left: 50%;
    margin-left: -5px;
    width: 0;
    height: 0;
    border-top: solid 5px rgba(22, 0, 58, .95);
    border-left: solid 5px transparent;
    border-right: solid 5px transparent;
}

.wizard-day-occupancy .wizard-zone-occupancy {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 5px;
}

.wizard-day-occupancy .wizard-zone-occupancy-bars {
    padding-bottom: 5px;
    display: flex;
    flex-direction: column-reverse;
}

.wizard-day-occupancy .wizard-zone-occupancy-bar {
    height: 2px;
    margin: 2px 0;
    background-color: rgba(255, 255, 255, .3);
    width: 30px;
}

.wizard-day-occupancy .wizard-zone-occupancy-details {
    font-size: .6em;
    font-weight: 600;
    text-transform: uppercase;
    white-space: nowrap !important;
}

.wizard-day-occupancy .wizard-zone-occupancy-details span {
    font-weight: 400 !important;
    opacity: .6;
}

.wizard-seating-zone-areas {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 60px;
}

.wizard-seating-zone-area {
    padding: unset;
}

.wizard-seating-seat-types {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 20px;
    width: 100%;
    max-width: 1000px;
    margin: auto;
    margin-top: 20px;
    margin-bottom: 40px;
}

.wizard-seating-seat-types .wizard-seating-seat-type {
    background-color: rgba(0, 0, 0, .1);
    display: flex;
    flex-direction: column;
    align-items: stretch;
    width: 200px;
    height: 140px;
    position: relative;
}

.wizard-seating-seat-types .wizard-seating-seat-type .wizard-seating-seat-type-icon {
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    width: 100%;
    height: 120px;
}

.wizard-seating-seat-types .wizard-seating-seat-type .wizard-seating-seat-type-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: .85em;
    font-weight: 500;
    padding: 5px;
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    z-index: 9999;
}

.wizard-seating-selected-seats {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    width: 100%;
    margin-top: 20px;
}

.wizard-seating-selected-seat {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: stretch;
    justify-content: center;
    gap: 20px;
    padding: 20px;
    background-color: white;
    border: 1px solid rgba(0, 0, 0, .1);
    width: 300px;
    height: 200px;
}

.wizard-seating-selected-seat .wizard-seating-selected-seat-header {
    position: absolute;
    width: 100%;
    top: 0;
    left: 0;
    padding: 10px 12.5px;
    font-size: .85em;
    opacity: .6;
    z-index: 2;
}

.wizard-seating-selected-seat .wizard-seating-selected-seat-icon {
    height: 200px;
    flex-basis: 200px;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: contain;
    z-index: 1;
    margin-bottom: 20px;
}

.wizard-seating-selected-seat .wizard-seating-selected-seat-footer {
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    bottom: 0;
    left: 0;
    padding: 10px 12.5px;
    z-index: 2;
}

.wizard-seating-selected-seat .wizard-seating-selected-seat-footer > div {
    display: flex;
    flex-direction: column;
}

.wizard-seating-selected-seat .wizard-seating-selected-seat-footer > .wizard-seating-selected-seat-quantity {
    text-align: right;
    font-size: 1.5em;
    padding-right: 2.5px;
}

.wizard-seating-selected-seat .wizard-seating-selected-seat-footer > .wizard-seating-selected-seat-quantity.no-qty {
    opacity: .4;
}

@media (max-width: 1500px) {
    .wizard {
        padding: 40px 60px;
        padding-bottom: 80px;
    }

    .wizard-step-title h2, .wizard-seating-title h2 {
        font-size: 1.75em;
    }

    .wizard-bottom-bar-left {
        flex-basis: 75%;
    }

    .wizard-bottom-bar-right {
        flex-basis: 25%;
    }

    .wizard-deal-selection h3 {
        font-size: 2em;
    }

    .wizard-step-full-container h2 {
        margin-bottom: 0;
    }

    .special-selection-body {
        padding-bottom: 40px;
    }

    .special-selection.special-selection-bg .selection-footer .selection-labels .lb {
        padding: 9px 12px;
    }
}

@media (max-width: 1200px) {
    .wizard-day-occupancy {
        display: none !important;
    }

    .wizard {
        padding: 30px 80px;
        padding-bottom: 60px;
    }

    .wizard-step-full {
        margin-bottom: 0;
    }

    .wizard-step-full-container {
        padding-top: 60px;
        padding-bottom: 60px;
    }

    .special-selection {
        flex-basis: 50%;
    }

    .special-selection-body {
        padding-bottom: 80px;
    }
}

@media (max-width: 992px) {
    .wizard {
        padding: 0px 15px;
        padding-bottom: 60px;
        padding-top: 30px;
        max-width: 700px;
        width: 100%;
        margin: 0 auto;
    }

    .wizard-duration {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .wizard-step {
        margin: 30px 0;
    }

    .wizard-highlight {
        min-height: 450px;
    }

    .wizard-highlight .px-60 {
        padding: 0 40px;
    }

    .wizard-highlight .t-jumbo {
        padding: 0;
        font-size: 2em;
        max-width: 400px;
        margin: 0 auto;
    }

    .wizard-highlight .sharer {
        text-align: left;
        margin-left: -25px;
    }

    .wizard-step-body.wizard-zones {
        display: block;
    }

    .wizard-zone {
        height: 220px !important;
        min-height: 220px;
        margin-bottom: 10px;
    }

    .wizard-zone-body, .wizard-seating-zone-area-name {
        padding: 15px;
        padding-bottom: 40px;
    }

    .wizard-zone-label, .wizard-seating-zone-area-label {
        padding: 10px 15px;
    }

    .wizard-seating-zone-area-label {
        min-width: 50%;
    }

    .wizard-duration {
        padding: 20px 10px;
        font-size: .85em;
    }

    .wizard-bottom-bar {
        padding: 0;
    }

    .wizard-bottom-bar-left {
        flex-basis: 50%;
        padding: 0;
    }

    .wizard-bottom-bar-left::before {
        content: "";
        display: block;
        width: 50px;
        height: 100%;
        background-image: url(/assets/media/icons/chevron-up.svg);
        background-position: center center;
        background-repeat: no-repeat;
        position: absolute;
        cursor: pointer;
        left: 0;
        bottom: 0;
    }

    .wizard-bottom-bar-right {
        flex-basis: 50%;
        padding: 0;
    }

    .wizard-bottom-bar-right .btn {
        width: 100%;
        padding: 21.5px 10px;
        font-size: .85em;
    }

    .wizard-selection {
        display: block !important;
        background-color: rgba(22, 0, 58, .95);
        -webkit-backdrop-filter: blur(5px);
        backdrop-filter: blur(5px);
        width: 100%;
        display: block !important;
        position: absolute;
        top: 60px;
        bottom: 0;
        left: 0;
        height: auto;
        padding: 30px 20px;
        opacity: 0.75;
        -webkit-transition: all 250ms ease-in-out;
        transition: all 250ms ease-in-out;
    }

    .wizard-selection.active {
        top: unset;
        bottom: 60px;
        opacity: 1;
        z-index: -1;
    }

    .wizard-others {
        flex-direction: column;
    }

    .wizard-others .wizard-other {
        flex-basis: 100%;
        width: 100%;
        padding: 15px;
    }

    .wizard-others .wizard-other span {
        font-size: 1em;
    }

    .wizard-guest-type-number {
        flex-basis: 15%;
    }

    .wizard-guest-type-other {
        flex-basis: 40%;
    }

    .wizard-step-full {
        margin: 40px -20px;
        margin-bottom: 0;
    }

    .wizard-step-full-container {
        padding: 60px 20px;
    }

    .wizard-deal-selection {
        margin: 10px 0;
        padding: 20px;
    }

    .wizard-deal-selection h3 {
        font-size: 1.5em;
    }

    .wizard-deal-selection.selected::before {
        top: 20px;
        right: 20px;
        width: 30px;
        height: 30px;
    }

    .wizard-deal-selection .selection-footer {
        flex-direction: column;
        align-items: start;
    }

    .wizard-deal-selection .selection-footer .selection-price {
        margin-top: 20px;
    }

    .special-deals {
        flex-direction: column;
        align-items: start;
    }

    .special-selection {
        flex-basis: 100%;
        width: 100%;
    }

    .special-selection-body {
        padding: 20px;
    }
}

@media (max-width: 796px) {
    .wizard-calendar {
        margin: 0 -15px;
    }

    .wizard-calendar::before,
    .wizard-calendar::after {
        display: none;
    }

    .wizard-step-full-container {
        padding: 40px 20px;
    }

    .wizard-seating-zone-area .element-media {
        min-height: 250px;
    }

    .wizard-seating-title {
        flex-direction: column;
        align-items: center;
        gap: 20px;
        margin-bottom: 30px;
    }

    .wizard-seating-title h2 {
        flex-direction: column;
    }

    .wizard-seating-selected-seat {
        width: 240px;
        height: 160px;
    }

    .reservation-wizard-tab[data-tab='map'] {
        display: none !important;
    }

    .reservation-wizard-footer {
        flex-direction: column;
        align-items: stretch;
        height: auto;
    }

    .reservation-wizard-footer a[data-toggle-reservation-wizard] {
        display: none !important;
    }

    .auto-seat-type {
        flex-direction: column;
        align-items: stretch;
        height: auto;
    }

    .auto-seat-type-icon {
        flex-basis: 60px;
        height: 60px;
    }

    .auto-seat-type-name {
        flex-basis: calc(100% - 220px);
    }

    .auto-seat-type-capacity {
        flex-basis: 50px;
    }

    .auto-seat-type-price {
        flex-basis: 80px;
        padding-right: 5px;
    }

    .auto-seat-type-quantity {
        border-left: unset;
        border-top: 1px solid rgba(0, 0, 0, .1);
        flex-basis: unset;
        height: unset;
        flex-direction: row;
        align-items: center;
    }

    .auto-seat-type-quantity .auto-seat-type-quantity-top {
        margin: unset;
    }

    .auto-seat-type-quantity-bottom .btn-rounded {
        width: 30px;
        height: 30px;
        padding: 0 7.5px !important;
        margin: 0 5px;
    }
}
