.fade-container {
    position: fixed;
    backdrop-filter: blur(5px);
    background-color: rgba(128, 128, 128, .5);
}

.tour-box {
    min-width: 417px;
    max-width: 750px;
    min-height: 251px;
    max-height: 500px;
    flex-shrink: 0;
    border-radius: 20px;
    background: rgb(30, 30, 30);
    box-shadow: 5px 5px 30px 0px rgba(0, 0, 0, .1);
    position: fixed;
    text-align: center;
    padding: 10px;
    z-index: 10002;
    animation-name: box-appear;
    animation-duration: 1.5s;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    align-content: center;
    border: 1px solid rgba(8, 255, 103, .4);
    color: rgba(241, 241, 241, 1);
}

.tour-btn-container {
    display: flex;
    flex-direction: row;
}

.tour-title {
    text-align: center;
    font-family: "Space Grotesk" !important;
    font-size: 25px;
    font-style: normal;
    font-weight: 700;
    line-height: 35px;
}

.tour-description {
    text-align: center;
    font-family: "Space Grotesk";
    font-size: 20px;
    font-style: normal;
    font-weight: 400;
    line-height: 25px;
}

.tour-btn-prev {
    width: 167px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 40px;
    background: #F1F1F11A !important;
    color: #F1F1F1 !important;
    font-family: "Space Grotesk";
    font-size: 20px;
    font-style: normal;
    font-weight: 400 !important;
    line-height: 25px;
    border: none !important;
    text-shadow: none !important;
    box-shadow: none !important;
}

.tour-btn-prev-svg {
    flex-shrink: 0;
    stroke-width: 1.5px;
    stroke: #F1F1F1;
}

.tour-btn-next {
    width: 143px;
    height: 48px;
    flex-shrink: 0;
    border-radius: 40px;
    background: rgba(8, 255, 103, .2) !important;
    color: #08FF67 !important;
    font-family: "Space Grotesk";
    font-size: 20px;
    font-style: normal;
    font-weight: 700 !important;
    line-height: 25px;
    border: 1px solid rgba(8, 255, 103, .8) !important;
    text-shadow: none !important;
    box-shadow: none !important;
}

.tour-btn-next-svg {
    flex-shrink: 0;
    stroke-width: 2.5px;
    stroke: #08FF67;
}

@keyframes box-appear {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}