.template-91 {
    left: 0;
    top: 0;
    height: 100vh;
    width: 100vw;
    z-index: 10;
    background: rgba(0, 0, 0, .75);
    backdrop-filter: blur(1px);
    z-index: 20;
    display: flex;
    justify-content: center;
    align-items: flex-start;
    transition: opacity .4s;
    opacity: 0;
    pointer-events: none;
}

.template-91 .template__inner {
    max-width: 870px;
    box-shadow: 1px 1px 5px 3px rgba(0, 0, 0, .5);
    max-height: 90vh;
    overflow-x: hidden;
    overflow-y: auto;
    top: 30px;
    transition: opacity .4s;
}

/* width */

.template-91 .template__inner::-webkit-scrollbar {
    width: 6px;
}
  
/* Track */

.template-91 .template__inner::-webkit-scrollbar-track {
    background: #f1f1f1;
}
  
/* Handle */

.template-91 .template__inner::-webkit-scrollbar-thumb {
    background: #888;
}

/* Handle on hover */

.template-91 .template__inner::-webkit-scrollbar-thumb:hover {
    background: #555;
}

@media (min-width: 767px) {
    
    .template-91 {
        display: flex;
        align-items: center;
    }

    .template-91 .template__inner {
        top: 0;
    }
}

.template-91 .template__inner > .template__close {
    top: 20px;
    right: 20px;
    border: none;
    border-radius: 3px;
    z-index: 3;
    background: none;
}

.template-91.is-active {
    pointer-events: all;
    opacity: 1;
}

.template-91 .template-91__image {
    display: block;
    height: auto;
    object-fit: cover;
}

.template-91 .template-91__text {
    margin-bottom: 1rem;
}
