.driver-active .driver-overlay,
.driver-active * {
    pointer-events: none;
}

.driver-active .driver-active-element,
.driver-active .driver-active-element *,
.driver-popover,
.driver-popover * {
    pointer-events: auto;
}

@keyframes animate-fade-in {
    0% {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

.driver-fade .driver-overlay {
    animation: animate-fade-in .2s ease-in-out;
}

.driver-fade .driver-popover {
    animation: animate-fade-in .2s;
}

.driver-popover {
    all: unset;
    box-sizing: border-box;
    color: #2d2d2d;
    padding: calc(var(--th)* 3);
    border-radius: calc(var(--th)* 3);
    /* min-width: 250px;
    max-width: 300px; */
    /* max-height: calc(var(--th)* 94);
    min-height: calc(var(--th)* 50);
    max-width: 30vw;
    min-width: 10vw; */
    height: fit-content;
    width: calc(var(--th)* 70);
    z-index: 1000000000;
    position: fixed;
    background-color: #fff;
    top: 50% !important;
    bottom: 50% !important;
    transform: translateY(-50%) !important;
    gap: calc(var(--th)* 2);

    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
}

.driver-popover * {
    font-family: Helvetica Neue, Inter, ui-sans-serif, "Apple Color Emoji", Helvetica, Arial, sans-serif;
}

.driver-popover-title {
    /* font: 19px/normal sans-serif;
    font-weight: 700; */
    font-size: calc(var(--th)* 5);
    display: block;
    position: relative;
    /* line-height: 1.5; */
    zoom: 1;
    margin: 0;
    color: #fb86b3;
}

.driver-popover-close-btn {
    all: unset;
    position: absolute;
    top: 0;
    right: 0;
    width: calc(var(--th) * 8);
    height: calc(var(--th) * 8);
    cursor: pointer;
    font-size: calc(var(--th) * 5);
    font-weight: 500;
    color: #fb86b3;
    z-index: 1;
    text-align: center;
    transition: color;
    transition-duration: .2s;
}

.driver-popover-close-btn:hover,
.driver-popover-close-btn:focus {
    color: #fb86b3;
}

.driver-popover-title[style*=block] + .driver-popover-description {
    color: #fb86b3;
}

.driver-popover-description {
    margin-bottom: 0;
    /* font: 14px/normal sans-serif; */
    /* line-height: 1.5; */
    /* font-weight: 400; */
    font-size: calc(var(--th)* 3.5);
    zoom: 1;

    color: #fb86b3;

    display: flex !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    gap: calc(var(--th)* 2) !important;

    .tutorial-image {
        width: calc(var(--th)* 60);
        height: calc(var(--th)* 60);

        background-color: transparent;
        display: block;
        background-size: cover;
        background-position: center;

        user-select: none;
        -webkit-user-select: none;  
        -moz-user-select: none;     
        -ms-user-select: none;
        pointer-events: none;
    }
}

.driver-popover-footer {
    margin-top: 15px;
    text-align: right;
    zoom: 1;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.driver-popover-progress-text {
    font-size: 13px;
    font-weight: 400;
    color: #727272;
    zoom: 1;
}

.driver-popover-footer button {
    all: unset;
    display: inline-block;
    box-sizing: border-box;
    padding-left: calc(var(--th)* 2);
    padding-right: calc(var(--th)* 2);
    padding-top: calc(var(--th)* 0.5);
    padding-bottom: calc(var(--th)* 0.5);
    text-decoration: none;
    /* text-shadow: 1px 1px 0 #fff; */
    background-color: #fd9fc2;
    color: #ffffff;
    /* font: 12px/normal sans-serif; */
    font-size: calc(var(--th)* 3);
    cursor: pointer;
    outline: 0;
    zoom: 1;
    /* line-height: 1.3; */
    /* border: 1px solid #ccc; */
    border-radius: calc(var(--th)* 1);
}

.driver-popover-footer .driver-popover-btn-disabled {
    opacity: .5;
    pointer-events: none;
}

:not(body):has(>.driver-active-element) {
    overflow: hidden !important;
}

.driver-no-interaction,
.driver-no-interaction * {
    pointer-events: none !important;
}

.driver-popover-footer button:hover,
.driver-popover-footer button:focus {
    background-color: #f7f7f7;
}

.driver-popover-navigation-btns {
    display: flex;
    flex-grow: 1;
    justify-content: flex-end;
}

.driver-popover-navigation-btns button + button {
    margin-left: 4px;
}

.driver-popover-arrow {
    content: "";
    position: absolute;
    border: 5px solid #fff;
}

.driver-popover-arrow-side-over {
    display: none;
}

.driver-popover-arrow-side-left {
    left: 100%;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-top-color: transparent;
}

.driver-popover-arrow-side-right {
    right: 100%;
    border-left-color: transparent;
    border-bottom-color: transparent;
    border-top-color: transparent;
}

.driver-popover-arrow-side-top {
    top: 100%;
    border-right-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
}

.driver-popover-arrow-side-bottom {
    bottom: 100%;
    border-left-color: transparent;
    border-top-color: transparent;
    border-right-color: transparent;
}

.driver-popover-arrow-side-center {
    display: none;
}

.driver-popover-arrow-side-left.driver-popover-arrow-align-start,
.driver-popover-arrow-side-right.driver-popover-arrow-align-start {
    top: 15px;
}

.driver-popover-arrow-side-top.driver-popover-arrow-align-start,
.driver-popover-arrow-side-bottom.driver-popover-arrow-align-start {
    left: 15px;
}

.driver-popover-arrow-align-end.driver-popover-arrow-side-left,
.driver-popover-arrow-align-end.driver-popover-arrow-side-right {
    bottom: 15px;
}

.driver-popover-arrow-side-top.driver-popover-arrow-align-end,
.driver-popover-arrow-side-bottom.driver-popover-arrow-align-end {
    right: 15px;
}

.driver-popover-arrow-side-left.driver-popover-arrow-align-center,
.driver-popover-arrow-side-right.driver-popover-arrow-align-center {
    top: 50%;
    margin-top: -5px;
}

.driver-popover-arrow-side-top.driver-popover-arrow-align-center,
.driver-popover-arrow-side-bottom.driver-popover-arrow-align-center {
    left: 50%;
    margin-left: -5px;
}

.driver-popover-arrow-none {
    display: none;
}