#AppGuide {
    position: fixed;
    opacity: 1;
    width: 100%;
    height: 100%;
    z-index: 1000;
    top: 0;
    left: 0;
    display: flex;
    flex-direction: column;

    /* iPhone */
    /*background: linear-gradient(180deg, #D61317 50%, #EDEDED 50%);*/
    padding: env(safe-area-inset-top, 0px) env(safe-area-inset-right, 0px) env(safe-area-inset-bottom, 0px) env(safe-area-inset-left, 0px);
}
#AppGuide .top {
    display: flex;
    flex-direction: column;
    background: #D61317;
    color: #FFFFFF;
    flex: 1;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
}

#AppGuide .bottom {
    min-height: 20px;
    margin-bottom: 70px;
    background: #FFFFFF;
    position: relative;
}

#AppGuide .content {
    display: flex;
    flex-direction: column;
    flex: 1;
}

#AppGuide .image {
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    overflow: hidden;
    max-height: 200px;
    background-size: cover;    
    background-position: center center;    
    background-repeat: no-repeat;
    flex: 1;
}

#AppGuide .title {
    font-size: 20px;
    margin-bottom: 20px;
    letter-spacing: 1px;
}

#AppGuide .text {
    font-size: 13px;
    line-height: 130%;
    /*overflow-y: auto;*/
    flex: 1;
}

#AppGuide .buttons {
    margin-top: 13px;
    margin-bottom: 15px;
}

#AppGuide .button {
    width: 100%;
    margin: 0px;
    text-transform: uppercase;
}

#AppGuide .navigation {
    position: relative;
    text-align: center;
    margin-top: 15px;
    margin-bottom: 15px;
}

#AppGuide .navigation .bullets {
    display: inline-block;
}

#AppGuide .navigation .bullets .bullet {
    display: inline-block;
    width: 10px;
    height: 10px;
    background: #FFFFFF;
    margin: 6px;
    border-radius: 100%;
    opacity: 0.7;
}

#AppGuide .navigation .bullets .bullet.active {
    opacity: 1;
}

#AppGuide .navigation .back {
    display: block;
    width: 28px;
    height: 28px;
    position: absolute;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-image: url("../img/back-white.svg");
    top: 0;
    left: 0;
    margin-top: -2px;
}

#AppGuide .close {
    display: block;
    width: 28px;
    height: 28px;
    position: absolute;
    border-radius: 100%;
    background-size: 50%;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #D61317;
    background-image: url("../img/close-white.svg");
    top: env(safe-area-inset-top, 0px);
    right: env(safe-area-inset-left, 0px);
    margin-top: 25px;
    margin-right: 25px;
}

#AppGuide .arrow {
    position: absolute;
    width: 32px;
    aspect-ratio: 1;
    clip-path: polygon(0 0,85% 0,0 100%);
    background: #D61317;
    margin-left: 100px;
}