@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Work+Sans&display=swap');

.cookies-frame {
    background: #F34646;
    width: 100%;
    height: calc(100vh - 100px);
    display: block;
    flex-direction: column;
    overflow-y: scroll;
    scrollbar-width: none;
}

.cookies-frame .centered {
    margin-left: auto;
    margin-right: auto;
    width: 1300px;
    height: calc(100vh - 100px);
    min-height: 780px;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.cookies-frame .cookies-title {
    color: #FFFFFF;
    text-align: center;
    font-family: "Bebas Neue", sans-serif;
    font-size: 150px;
    margin-top: 0;
    margin-bottom: 0;
}

.cookies-frame .cookies-text {
    color: #FFFFFF;
    text-align: justify;
    font-family: "Work Sans", sans-serif;
    font-size: 32px;
    line-height: 54px;
}

.cookies-frame .cookies-settings {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-top: 50px;
    width: 630px;
    margin-bottom: 50px;
}

.cookies-frame .cookies-setting {
    background: #FFFFFF;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-direction: row;
    width: 100%;
    height: 90px;
    border-radius: 88px;
}

.cookies-frame .cookies-label {
    color: #000000;
    text-align: left;
    font-family: "Bebas Neue", sans-serif;
    font-size: 49px;
    margin-left: 60px;
}

.cookies-frame .cookies-checkbox {
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 42px;
    height: 42px;
    border: 4px solid #000000;
    background: #D5D5D5;
    border-radius: 50%;
    outline: none;
    cursor: pointer;
    margin-right: 40px;
}

.cookies-frame .cookies-checkbox:checked {
    background: #FFE86D;
}

@media screen and (max-width: 1340px) {
    .cookies-frame .centered {
        width: calc(100% - 40px);
        padding-right: 20px;
        padding-left: 20px;
    }
}

@media screen and (max-width: 650px) {
    .cookies-frame .cookies-settings {
        width: 100%;
        margin-left: 20px;
        margin-right: 20px;
    }
}

@media screen and (orientation: portrait) {
    .cookies-frame .centered {
        margin-top: 200px;
    }
}