.ac-popup-colmobile {
    display: none;
    position: fixed;
    top: 0;
    width: 100%;
    height: 100vh;
    overflow: auto;
    z-index: 999;
    background-color: #000000bf;
    opacity: 0;
    transition: opacity 0.5s;
}

.ac-popup-inner {
    display: flex;
    justify-content: center;
    align-items: center;
}

.ac-popup-inner img {
    width: auto;
    height: auto;
    cursor: pointer;
}

.ac-popup-colmobile.ac-open {
    display: block;
    opacity: 1;
        z-index: 999999;
}

.ac-clk-colmobile {
    text-decoration: underline;
    cursor: pointer;
}


/* width */

::-webkit-scrollbar {
    width: 8px;
}


/* Track */

::-webkit-scrollbar-track {
    background: #232635;
    border-radius: 0px;
}


/* Handle */

::-webkit-scrollbar-thumb {
    background: #002c5f;
    border-radius: 10px;
}


/* Handle on hover */

::-webkit-scrollbar-thumb:hover {
    background: #f7f7f7;
}

@media (max-width: 1000px) {
    .ac-popup-inner img {
        width: 100%;
        height: auto;
        cursor: pointer;
    }
}

body {
    overflow-x: hidden;
}