.tour-start-modal div {
    display: flex;
    flex-flow: column;
}
.modal-container.home.walkthrough-modal {
    max-width: 600px;
}
/* Quiet default focus */
.tour-popup:focus,
.tour-popup button:focus,
.tour-popup a:focus,
.tour-popup [tabindex]:focus {
    outline: none;
    box-shadow: none;
}
/* Show focus only for keyboard-style focus */
.tour-popup button:focus-visible,
.tour-popup a:focus-visible,
.tour-popup [tabindex]:focus-visible {
    outline: 2px solid #FFFFEE;
    outline-offset: 4px;
}
@media only screen and (min-width: 600px) {
    .tour-start-modal div {
        display: flex;
        flex-flow: row;
        gap: 20px;
    }
}
.wt-blocker {
    position: fixed;
    width: 100vw;
    height: 100vh;
    z-index: 9996;
    display: none;
}
.wt-overlay {
    opacity: 0;
    width: 100px;
    height: 100px;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 9998;
    border-radius: 20px;
    box-shadow: 0 0 0px 9999px rgba(0,0,0,0.7);
    transition: top 0.5s, left 0.5s, opacity 0.5s, width 0.5s, height 0.5s;
    display: none;
    /* cursor: pointer; */
}
.wt-overlay.step-1, .wt-overlay.step-6 {
    border-radius: 10px;
}
.wt-message-container {
    width: 100%;
    height: 100%;
    position: relative;
}
.wt-message {
    z-index: 2;
}
.wt-inside {
    opacity: 0;
    position: absolute;
    top: -300px;
    margin: 40px 40px 40px 0;
    left: unset;
    padding: 16px;
    flex-flow: column;
    min-width: 300px;
    min-height: 200px;
    border-radius: 16px;
    background-color: var(--UpOffWhite);
    color: var(--UpNavy);
    z-index: 9999;
    transition: opacity 0.5s;
    display: none;
    justify-content: center;
    align-items: flex-start;
    transition: top 0.5s;
}
.wt-overlay.step-1 .wt-inside {
    left: unset;
    right: 0;
    top: 0;
    margin: 60px 0 0 0;
}
.wt-overlay.step-5 .wt-inside,
.wt-overlay.step-6 .wt-inside {
    margin: 40px 40px 20px 20px;
}
.wt-inside h3,
.wt-inside p {
    text-align: left;
}
.wt-inside h3 {
    margin: 0 0 8px 0;
}
.wt-inside p {
    margin: 0;
    text-wrap: unset;
}
.wt-close-container {
    position: absolute;
    z-index: 9997;
    width: 100%;
    height: 100%;
}
.wt-close {
    top: 10px;
    right: 24px;
    padding: 8px;
    border-radius: 8px;
    position: absolute;
    display: none;
    cursor: pointer;
}
.wt-close:hover {
    background: var(--UpNavy);
}
.wt-close:hover rect {
    fill: var(--UpOffWhite);
}
.wt-close:focus {
    outline: 2px solid transparent;
}
.wt-close:focus-visible {
    outline: 2px solid var(--UpNavy);
}
.wt-nav {
    z-index: 9999;
}
.wt-nav-inner {
    display: flex;
    flex-flow: row nowrap;
    justify-content: flex-start;
    align-items: center;
    margin-top: 16px;
    gap: 12px;
}
.wt-overlay.step-1 .wt-nav-inner .prev {
    pointer-events: none;
}
.wt-overlay.step-1 .wt-nav-inner .prev svg path,
.wt-overlay.step-6 .wt-nav-inner .next svg path {
    opacity: 0.5;
}
.wt-nav-inner .prev,
.wt-nav-inner .next {
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    transition: background 0.3s ease;
    cursor: pointer;
}
.wt-nav-inner .prev:hover,
.wt-nav-inner .next:hover {
    background: var(--Yellow2);
}
.wt-nav-inner svg {
    padding: 8px;
    width: 20px;
    height: 20px;
}
/* ------------- */
/* Warning these are reverse media queries to the regular mobile first format! */
/* ------------- */
@media only screen and (max-width: 991px) {
    .wt-overlay.step-1 .wt-inside {
        left: 0;
    }
    .wt-overlay.step-1 .wt-inside {
        top: unset;
    }
}
@media only screen and (max-width: 567px) {
    .wt-overlay.step-1 .wt-inside {
        top: unset;
    }
}
@media only screen and (max-width: 400px) {
    .wt-inside {
        margin: 0;
        min-width: 0;
    }
}
/* ------------- */
/* ------------- */
@media only screen and (min-width: 992px) {
    .wt-inside {
        min-width: 400px;
        max-width: 600px;
    }
}