/* ==============================
   DALYKAS STYLES
============================== */
#dalykas-overlay {
    position: fixed;
    top: 0;
    left: 0;
    z-index: -9999;
    opacity: 0;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(0,0,0,0.4);
    cursor: pointer;
}

#dalykas-overlay.active {
    z-index: 9999;
    opacity: 1;
}

#dalykas-container {
    position: fixed;
    width: 60%;
    max-width: 551px;
    min-height: 100px;
    height: auto;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 10px 10px 60px #555;
    z-index: 10;
}

#dalykas-close {
    position: absolute;
    top: 160px;
    right: 200px;
    z-index: 9999;
    width: 30px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgb(255, 98, 31);
    border: 2px solid rgb(0, 0, 0);
    border-radius: 50%;
    cursor: pointer;
    font-weight: bold;
    font-size: 25px;
    color: rgb(255, 255, 255);
}

#dalykas-close:hover {
    top: 185px;
    right: 225px;
}

/* ==============================
   MEDIA QUERIES
============================== */
@media screen and (max-width: 768px) {
    #dalykas-overlay {
        pointer-events: none;
    }
    .adsbygoogle {
        pointer-events: auto;
    }
    #dalykas-container {
        width: 100%;
    }

    #dalykas-close {
        top: 60px;
        right: 175px;
    }

    #dalykas-close:hover {
        top: 85px;
        right: 200px;
    }

    #dalykas-close.active {
        top: 85px;
        right: 200px;
    }
}
