html {
    height: -webkit-fill-available;
}

:root {
    --popin-title-color: #000000;
    --popup-close-color: #000000;
}

.global-module--popup {
    position: fixed;
    display: none;
    opacity: 0;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0,0,0,.5);
    z-index: 10000;
    -webkit-transition: opacity .4s linear;
    -o-transition: opacity .4s linear;
    transition: opacity .4s linear;
    min-height: 100vh;
    min-height: -webkit-fill-available; /* mobile viewport bug fix */
    min-width: 100vw;
    height: 100%;
}

.global-module--popup .content {
    position: absolute;
    left: 50%;
    top: 50%;
    background: #fff;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding: 25px;
    -webkit-transform: translate(-50%,-50%);
        -ms-transform: translate(-50%,-50%);
            transform: translate(-50%,-50%);
    max-width: 300px;
    width: 50vw;
}

.global-module--popup .content .title {
    font-size: 15px;
    color: #676767;
    text-align: center
}

.global-module--popup .content .button {
    /* border: 1px solid #4a4749; */
    border-radius: 13em;
    /* margin: 25px auto 0; */
    cursor: pointer;
    display: inline-block;
    /* text-transform: uppercase; */
    padding-left: 20px;
    padding-right: 20px;
    font-size: 14px;
    color: #fff;
    /* font-weight: bold; */
    -webkit-transition: color .4s linear, background-color .4s linear, border-color .4s linear;
    -o-transition: color .4s linear, background-color .4s linear, border-color .4s linear;
    transition: color .4s linear, background-color .4s linear, border-color .4s linear;
    text-decoration: none;
    background: #fff;
}

.global-module--popup .content .button.pop-up-btn:hover {
    /* background-color: #000000; */
    /* color: #fff !important; */
}
.global-module--popup .content .button.pop-up-btn-config:hover{
   color: #fff !important;
}
.global-module--popup .content .button.pop-up-btn-home:hover{
   color: #000000 !important;
}
.global-module--popup .content .button.pop-up-btn-config {
    color: #fff;
    background-color:#000000;
}
.global-module--popup .content .button.pop-up-btn-home {
    color: #000000;
    background-color:#FFF;
    border: 1px black solid;
}

.global-module--popup .content .close {
    position: absolute;
    top: 1em;
    right: 1em;
    cursor: pointer;
    width: 3em;
    height: 3em;
    z-index: 1;
    -webkit-transition: opacity .4s linear,-webkit-transform .4s cubic-bezier(.23,1,.32,1);
    transition: opacity .4s linear,-webkit-transform .4s cubic-bezier(.23,1,.32,1);
    -o-transition: opacity .4s linear,transform .4s cubic-bezier(.23,1,.32,1);
    transition: opacity .4s linear,transform .4s cubic-bezier(.23,1,.32,1);
    transition: opacity .4s linear,transform .4s cubic-bezier(.23,1,.32,1),-webkit-transform .4s cubic-bezier(.23,1,.32,1);
    -webkit-transform: rotate(.01deg);
        -ms-transform: rotate(.01deg);
            transform: rotate(.01deg)
}

.notouch .global-module--popup .content .close:hover {
    opacity: .5;
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg)
}

.global-module--popup .content .close i {
    width: 100%;
    height: 1px;
    background: #676767;
    -webkit-transform: rotate(-45deg);
        -ms-transform: rotate(-45deg);
            transform: rotate(-45deg);
    display: block;
    -webkit-transform-origin: 50% 0;
        -ms-transform-origin: 50% 0;
            transform-origin: 50% 0;
    top: 44%;
    position: relative
}

.global-module--popup .content .close i:last-child {
    -webkit-transform: rotate(45deg);
        -ms-transform: rotate(45deg);
            transform: rotate(45deg)
}

.price-module--popup {
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 5px;
}

.price-module--popup .content {
    width: 25vw;
    margin: 0 auto;;
    position: relative!important;
    left: auto!important;
    top: 32px!important;
    -webkit-transform: none;
        -ms-transform: none;
            transform: none;
    max-width: 100%;
    padding: 0;
}

.price-module--popup .popup-close {
    position: absolute;
    top: -20px;
    right: -15px;
    border: 2px solid #fff;
    border-radius: 50%;
    background: var(--popup-close-color);
    width: 35px;
    height: 35px;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    cursor: pointer
}

.price-module--popup .close {
    display: none
}

.price-module--popup .api-content {
    text-align: center;
    position: relative
}

.price-module--popup .api-content>.api-text {
    color: #fff;
    text-align: center;
    background: var(--popin-title-color);
    padding: 15px 10px;
    font-weight: 700;
    font-size: 1.3rem
}

.price-module--popup .api-content .api-columns {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    min-height: 100px
}

.price-module--popup .api-content .api-columns .api-right {
    text-align: center;
    color: #000;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    /* gap: 15px; */
    -webkit-justify-content: space-around;
        -ms-flex-pack: distribute;
            justify-content: space-around;
    padding: 15px;
    width:75%;
}

.price-module--popup .api-content .api-columns .api-left {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column;
    padding-left: 24px;
    padding-right: 24px;
    min-width: 100%;
}
.div-popup-btns{
    display: flex;
    flex-direction: row;
    margin-top: 20px;
}
.price-module--popup .api-content .api-columns .api-text {
    font-size: 1rem;
    white-space: break-spaces;
}

.price-module--popup .api-content .api-columns .api-text:first-child {
    font-weight: 700;
    margin-top: 20px;
    /* font-style: italic */
}

.price-module--popup .api-content .api-columns .api-img {
    width: 100%;
    max-width: 98%;
    margin: 18px auto 15px auto;
}

.price-module--popup .api-content .api-columns .api-price-w {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
    -webkit-flex-direction: row;
        -ms-flex-direction: row;
            flex-direction: row;
    color: #000;
    font-size: 1.75rem;
    font-weight: 900;
    gap: 10px
}

.price-module--popup .api-content .api-columns .api-price-w .api-price-old {
    position: relative
}

.price-module--popup .api-content .api-columns .api-price-w .api-price-old:after {
    content: "";
    width: 100%;
    height: 2px;
    background: red;
    -webkit-transform: rotate(-10deg);
        -ms-transform: rotate(-10deg);
            transform: rotate(-10deg);
    display: block;
    position: absolute;
    top: 50%;
    -webkit-transform-origin: 50%;
        -ms-transform-origin: 50%;
            transform-origin: 50%
}

.price-module--popup .api-content .api-columns .api-picture {
    margin-top: 8em;
    width: 80%;
    margin-left: auto;
    margin-right: auto
}

.price-module--popup .api-content .api-columns .api-cta-w {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    gap: 15px;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
        -ms-flex-direction: column;
            flex-direction: column
}

.price-module--popup .api-content .api-columns .api-cta-w a {
    margin-top: 0;
    /* width: 100%; */
    text-align: center;
    max-width: 100%;
    border-radius: 0;
    padding: 12px;
    height: auto;
    text-decoration: none;
}

/* .price-module--popup .api-content .api-columns .api-cta-w a.api-cta:not(.api-cta-pop):hover {
    background-color: var(--hoverCta2) !important;
    border-color: var(--hoverCta2) !important;
} */

/* .price-module--popup .api-content .api-columns .api-cta-w a.api-cta.api-cta-addcustom:hover {
    background-color: var(--hoverCta1) !important;
    border-color: var(--hoverCta1) !important;
} */

@media only screen and (max-width: 420px) {
    .price-module--popup .api-content .api-columns .api-cta-w a {
        max-width: 100%;
    }
    .price-module--popup .content{
        width:80vw;
    }
}

@media only screen and (max-height: 667px) {
    .price-module--popup .api-content .api-columns .api-text {
        font-size: 1.25rem;
    }
    .price-module--popup .api-content > .api-text {
        padding: 10px 10px;
        font-size: 1.45rem;
    }
    .price-module--popup .api-content .api-columns .api-price-w {
        font-size: 1.5rem;
    }
    .global-module--popup .content .button {
        font-size: 11px;
    }
    .price-module--popup .content{
        width:80vw;
    }
    .price-module--popup .api-content .api-columns .api-img {
        /* width: 160px; */
    }
}
@media (max-width: 767px) and (max-height: 568px) {
    .global-module--popup {overflow: auto}
    .price-module--popup .api-content .api-columns .api-img {width: 130px}
    .price-module--popup .api-content .api-columns .api-cta-w a {padding: 10px}
}

@media (max-width: 767px) and (max-height: 450px) {
    .global-module--popup {overflow: auto}
    .price-module--popup .api-content .api-columns .api-img {width: 130px}
    .price-module--popup .api-content .api-columns .api-cta-w a {padding: 5px}
}
