.tour-start-modal div {
    display: flex;
    flex-flow: column;
}
/* 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: 32px;
    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 {
    border-radius: 0!important;
}
.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(--White);
    color: var(--RoyalBlue);
    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: 100%;
    right: unset;
    top: 0;
    margin: 40px;
}
.wt-inside h3,
.wt-inside p {
    text-align: left;
}
.wt-inside h3 {
    margin: 0 0 8px 0;
}
.wt-inside p {
    margin: 0;
}
.wt-arrow {
    position: absolute;
    width: 100%;
    height: 100%;
}
.wt-arrow-inner {
    position: absolute;
    left: 15px;
    top: unset;
    bottom: -14px;
    background: var(--White);
    width: 33px;
    height: 33px;
    border-radius: 2px;
    transform: rotate(45deg);
}
.wt-overlay.step-1 .wt-arrow-inner {
    left: -30px;
    top: 30px;
    right: unset;
    bottom: unset;
}
.wt-close-container {
    position: absolute;
    z-index: 9997;
    width: 100%;
    height: 100%;
}
.wt-close {
    top: 4px;
    right: 20px;
    padding: 8px;
    position: absolute;
    display: none;
    border-radius: 50%;
    cursor: pointer;
}
.wt-close:hover {
    background: var(--Yellow2);
}
.wt-close:focus {
    outline: 2px solid transparent;
}
.wt-close:focus-visible {
    outline: 2px solid var(--Pink2);
}
.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;
}
.wt-nav-inner p {
    font-family: var(--Kapra);
    font-size: 18px;
    text-transform: uppercase;
}
/* ------------- */
/* Warning these are reverse media queries to the regular mobile first format! */
/* ------------- */
@media only screen and (max-width: 991px) {
    .wt-overlay.step-1 {
        left: 10px!important;
        top: 10px!important;
        width: calc(100% - 20px)!important;
        height: 50px!important;
        border-radius: 8px!important;
    }
    .wt-overlay.step-1 .wt-inside {
        top: 60px!important;
        left: 0;
    }
    .wt-overlay.step-1 .wt-arrow-inner {
        top: -12px;
        left: unset;
        right: 45px;
    }
    .wt-overlay .wt-inside {
        top: -70%;
    }
    .wt-overlay.step-1 .wt-inside {
        top: unset;
    }
}
@media only screen and (max-width: 767px) {
    .wt-overlay {
        border-radius: 20px;
    }
}
@media only screen and (max-width: 567px) {
    .wt-overlay .wt-inside {
        top: -85%;
    }
    .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;
    }
}