#consent-popup {
    position: fixed;
    bottom: 0;
    top: 0;
    left: 0;
    right: 0;
    max-height: 100%;
    max-width: 100%;
    background-color: rgba(90, 86, 86, 0.6);
    z-index: 3;
}

.hidden {
    display: none;
}

.main-popup img {
    width: 80px;
    margin-right: 20px;
}

.main-popup {
    position: fixed;
    bottom: 50%;
    left: 0;
    right: 0;
    padding: 1rem;
    background-color: white;
    display: flex;
    flex-direction: column;
    width: 90%;
    height: 20%;
    margin: auto;
    align-items: center;
    justify-content: center;
    border-radius: 2px;
}
.msg-content {
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    padding: 10px 40px;
}

#accept {
    background-color: #4771D1;
    color: white;
    border: none;
    border-radius: 2px;
    padding: 10px;
    width: 100px;
    height: 40px;
    font-weight: 500;
    letter-spacing: 0.5px;
}


@media only screen and (max-width: 700px) {
    .main-popup img {
        width: 70px;
        margin-right: 20px;
    }
    .main-popup p{
        font-size: 16px;
    }
    .msg-content {
        padding: 10px 20px;
    }
}

@media only screen and (max-width: 450px) {
    .main-popup img {
        width: 70px;
        margin-right: 20px;
    }
    .main-popup p{
        margin: 0px;
    }

    #accept {
        padding: 8px;
        width: 80px;
        height: 40px;
        font-weight: 500;
        letter-spacing: 0.5px;
    }
    .msg-content {
        padding: 10px 10px;
    }
    
}

