.cookiesPopupContainer {
    position: fixed;
    bottom: 60px;
    z-index: 1000;
    width: 100vw;
    justify-content: center;
    display: none;
}

.coPop {
    background-color: var(--blockBackground);
    padding: 40px 80px;
    border-radius: 20px;
    box-shadow: 2px 4px 4px 4px rgba(0, 0, 0, 0.40);
    justify-content: space-between;
    display: flex;
    margin: 20px;
    max-width: 1000px;
}

.coPop .button {
    height: 40px;
    line-height: 40px;
    margin: 0;
}

.coPop .title {
    font-size: 30px;
}

.coPop .left {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.coPop .right {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 20px;
    align-items: center;
}

.coPop .showMore {
    text-decoration: underline;
    color: var(--blocked);
    text-align: center;
    cursor: pointer;
}

.cookiesPopupDetails {
    position: fixed;
    height: 100vh;
    width: 100vw;
    background-color: rgba(0,0,0,0.4);
    z-index: 10002;
    top: 0;
    display: none;
    align-items: center;
    justify-content: center;
}

.cookiesPopupDetails .details {
    height: 500px;
    width: 600px;
    background-color: var(--blockBackground);
    padding: 40px 80px;
    border-radius: 20px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.cookiesPopupDetails .details .text {
    overflow-y: scroll;
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding-bottom: 20px;
}

.cookiesPopupDetails .details .text .piece {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.cookiesPopupDetails .details .text .piece .pieceOption{
    margin-left: 20px;
}

.cookiesPopupDetails .details .buttons {
    display: flex;
    justify-content: center;
}

.cFrame {
    width: 100%;
    border: none;
    display: block;
    flex-shrink: 0;
    height: 1100px;
}