.w360-booking {
    width: 100%;
    box-sizing: border-box;
    font-family: inherit;
    color: #101828
}

.w360-booking * {
    box-sizing: border-box
}

.w360-booking__header {
    text-align: center;
    margin-bottom: 24px
}

.w360-booking__eyebrow {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em
}

.w360-booking h2 {
    margin: 7px 0 8px;
    font-size: 32px;
    line-height: 1.15
}

.w360-booking__header p {
    margin: 0;
    color: #667085
}

.w360-booking__steps {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 8px;
    margin-bottom: 28px
}

.w360-booking .w360-step {
    padding: 10px;
    text-align: center;
    border-radius: 8px;
    background: #f8e8eb;
    color: #8b0014;
    font-size: 13px
}

.w360-booking .w360-step.is-active {
    background: #ae001a;
    color: #fff
}

.w360-booking__panel label {
    display: block;
    font-weight: 600;
    margin-bottom: 8px
}

.w360-booking input,.w360-booking select {
    width: 100%;
    /*padding: 13px 14px;*/
    border: 1px solid #d0d5dd;
    border-radius: 9px;
    background: #fff;
    color: #101828;
    font: inherit
}

.w360-booking input:focus,.w360-booking select:focus {
    outline: 0;
    border-color: #98a2b3;
    box-shadow: 0 0 0 3px rgba(16,24,40,.08)
}

.w360-booking__slots {
    display: grid;
    grid-template-columns: repeat(6,1fr);
    gap: 10px;
    margin-top: 18px
}

.w360-booking .w360-slot,.w360-booking .w360-button {
    border: 0;
    border-radius: 9px;
    padding: 2px 16px;
    font: inherit;
    font-weight: 700;
    cursor: pointer
}

.w360-booking .w360-slot {
    background: #f2f4f7;
    color: #344054
}

.w360-booking .w360-slot:hover {
    background: #e4e7ec;
    transform: translateY(-1px)
}

.w360-booking .w360-button {
    background: #b31920;
    color: #fff
}

.w360-booking .w360-button:disabled {
    opacity: .6;
    cursor: wait
}

.w360-booking .w360-button--secondary {
    background: #f2f4f7;
    color: #344054
}

.w360-field-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px
}

.w360-field--full {
    grid-column: 1/-1
}

.w360-booking__actions {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-top: 22px
}

.w360-booking__selected {
    padding: 13px 15px;
    margin-bottom: 20px;
    border-radius: 9px;
    background: #f2f4f7;
    font-weight: 400;
    font-size: 14px;
}

.w360-booking__muted {
    color: #667085;
    text-align: center;
    padding: 12px
}

.w360-booking__error {
    color: #b42318;
    margin: 12px 0 0
}

.w360-booking__success {
    text-align: center;
    padding: 28px 10px
}

.w360-booking__success-icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    margin: 0 auto 14px;
    border-radius: 50%;
    background: #ecfdf3;
    color: #067647;
    font-size: 28px;
    font-weight: 700
}

.w360-booking__success h3 {
    font-size: 25px;
    margin: 0 0 8px
}

.w360-booking .is-hidden {
    display: none!important
}

@media(max-width: 600px) {
    .w360-booking h2 {
        font-size:26px
    }

    .w360-booking__slots {
        grid-template-columns: repeat(3,1fr)
    }

    .w360-field-grid {
        grid-template-columns: 1fr
    }

    .w360-field--full {
        grid-column: auto
    }

    .w360-booking__actions {
        flex-direction: column
    }

    .w360-booking .w360-button {
        width: 100%
    }
}
