.tour {
    /*display: none; !* Hidden by default *!*/
    /*position: fixed !important;!* Stay in place *!*/
    /*z-index: 100; !* Sit on top *!*/
    /*left: 0;*/
    /*top: 0;*/
    /*width: 100%; !* Full width *!*/
    /*height: 100%; !* Full height *!*/
    /*overflow: auto; !* Enable scroll if needed *!*/
    /*background-color: rgba(0,0,0,0.4); !* Black w/ opacity *!*/
    /*color: black;*/
    /*transition: 200ms;*/

    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 300 !important;
    color: black;
    text-align: center;
}

.active_tour {
    z-index: 200 !important;
}

.highlighted {
    transition: 200ms;
    outline: solid rgba(0, 0, 0, .5) 10000px;
    z-index: 200 !important;
    position: relative;
}

.tour-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 5rem;
    border: 1px solid #888;
    width: 60%; /* Could be more or less, depending on screen size */

    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 2rem;


    z-index: 200 !important;
}

.tour-content .tour-content_buttons {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    gap: 2rem;

}

.tour-content .tour-content_buttons .close, .tour-content .tour-content_buttons .prev {
    background-color: #d7d7d7;
    color: black;
    border: #d7d7d7;
}

@media (min-width: 1000px) {
    .tour-content {
        min-width: 500px;
    }
}

@media (max-width: 896px) {
    .tour-content {
        padding: 1rem;
    }
    .tour-content {
        min-width: 300px;
    }
}

@media (max-width: 596px) {
    .tour-content .tour-content_buttons {
        flex-direction: column;
    }
}
