/* ========Privacy policy alert============= start */
.privacy-alert {
    padding: .5rem;
    position: sticky;
    bottom: 0;
    background-color: var(--light-font-color);
    width: 100%;
    border-top: 1px solid #3A424A;
    z-index: 1000;
}

.privacy-alert p {
    max-width: 93%;
}

.privacy-alert span {
    color: #066593;
    white-space: nowrap;
    cursor: pointer;
}

#close-icon {
    font-size: 2rem;
    position: absolute;
    right: 5px;
    top: 5px;
    cursor: pointer;
}

/* ========Privacy policy alert============= end */
/* ========Privacy policy content============= start */

#privacy-policy-content {
    display: none;
}

#privacy-policy-content .content {
    position: fixed;
    width: 90%;
    height: 80%;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: var(--light-font-color);
    padding: 1rem;
    margin-block: 1rem;
    z-index: 100000;
    overflow: auto;
    
}

.bkg {
    position: fixed;
    width: 100vw;
    height: 100vh;
    top: 0;
    left: 0;
    background-color: #3A424A;
    z-index: 10000;

}

#privacy-policy-contentclose-icon{
    position: fixed;
    top: 6%;
    left: 50%;
    transform: translate(-50%, -6%);
    z-index: 100000;
    font-size: 2.5rem;
    color: var(--light-font-color);
    cursor: pointer;
}

/* ========Privacy policy content============= start */