#popupc {
    position: fixed;
    opacity: 80%;
    display: block;
    background-color: #fff;
    width: 100%;
    height: 200px;
    left: 0%;
    z-index: 999;
    transition-duration: 1s;
}

.popupc_close {
    bottom: -210px;
}

.popupc_open {
    transition-delay: 3s;
    bottom: 0;
}

#popupc_text {
    position: absolute;
    left: 50%;
    transform: translate(-50%, 0);
    bottom: 40px;
    font-size: 20px;
}

@media (max-width: 900px) {
    #popupc_text {
        font-size: 18px;
    }
}

@media (max-width: 700px) {
    #popupc_text {
        font-size: 16px;
    }
}

@media (max-width: 550px) {
    #popupc_text {
        font-size: 14px;
    }
}

@media (max-width: 420px) {
    #popupc_text {
        font-size: 12px;
    }
}

#popupc_cancel {
    position: absolute;
    width: 40px;
    height: 40px;
    right: 0%;
    bottom: 160px;
    background-color:#00679b;
    color: #fff;
    border: none;
}

#popupc_cancel:hover {
    cursor: pointer;
    background-color: rgb(14, 43, 65);
}

#popupc_agree {
    position: absolute;
    width: 150px;
    height: 40px;
    left: 50%;
    transform: translate(-50%, 0);
    bottom: 2%;
    background-color: #00679b;
    color: #fff;
    border: none;
    font-size: 16px;
}

#popupc_agree:hover {
    cursor: pointer;
    background-color: rgb(14, 43, 65);
}
