.generic-popup {
    position: fixed;
    z-index: 99999;
    left: 0;
    top: 0;
    height: 100%;
    width: 100%;
    background-color: rgba(0, 0, 0, .75);
    display: none;
    -webkit-perspective: 600px;
    perspective: 600px;
}

.generic-popup {
    display: none;
}

.popup-box {
    background: #202020;
    opacity: 1;
    margin: 32px auto;
    border-radius: 16px;
    padding: 24px 16px;
    box-sizing: border-box;
    color: #fff;
    position: relative;
}

.container.popup-container {
    position: relative;
    padding: 0 16px;
    max-width: 640px;
    margin: 0 auto;
    top: 1%;
    overflow-y: auto;
    max-height: 99vh;
}


body.popup-is-opened{
    overflow: hidden;
}

.popup-btn-close {
    position: absolute;
    left: 24px;
    top: 24px;
    display: block;
    color: #e61c29;
    font-weight: 500;
    font-size: 40px;
    height: 34px;
    line-height: 24px;
    cursor: pointer;
}

a[data-popup-target="#mahan-global-popup"] {
  position: fixed;
  bottom: 5px;
  left: 15px;
}

.popup-trigger {
font-family: "Yekan";
  font-size: 0.8rem;
  font-weight: 500;
  border-radius: 50px 50px 50px 50px;
  padding: 10px 10px 10px 10px;
  color: var( --e-global-color-text ) !important;
  background-color: var( --e-global-color-secondary );
  border-color: var( --e-global-color-secondary );
}

.book-excerpt-link {
    text-decoration: underline !important;
    color: #e61c29;
}

.book-excerpt-link:hover {
    text-decoration: none !important;
}

.book-excerpt {
    margin: 15px 0;
}

@media (min-width: 640px) {
    .container.popup-container {
        top: 10%;
        overflow: hidden;
    }
}

@media (max-width: 570px) {
    a[data-popup-target="#mahan-global-popup"] {
        bottom: 0;
        margin: 0;
        width: 100%;
        right: 0;
        border-radius: 0;
        text-align: center;
    }
}