.cookies-popup {
    background-color: #fff;
    border-radius: 7px;
    display: flex;
    flex-wrap: wrap;
    /*padding: 15px;*/
    width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.cookies-title {
    color: #292929;
    font-family: 'MBCorpo Title',sans-serif;
    font-size: 24px;
    /*font-weight: 500;*/
    line-height: 2.5rem;
    /*margin: 15px 0px;*/
}
.cookies-text {
    color: #292929;
    font-family: 'MBCorpo Text',sans-serif;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.5rem;
    margin: 15px 0px;
}
.cookies-button-container {
    text-align: center;
    margin: 15px 0px;
    width: 100%;
}
.cookies-button-container > .button-cookie:first-child {
    margin-bottom: 15px;
}
.button-cookie {
    background: #00ADEF;
    border: 1px solid #4a90e2;
    border-radius: 7px;
    color: #fff;
    font-size: 1rem;
    font-weight: 500;
    line-height: 1.5rem;
    padding: 10px 25px;
    text-align: center;
    transition: background-color .3s ease-in-out;
    width: 100%;
}
.button-cookie:hover {
    color: #fff;
    background-color: #0088c6;
}
.cookies-footer {
    margin: 15px 0px;
    width: 100%;
    text-align: center;
}
.cookies-footer a:last-child {
    margin-left: 30px;
}
.link-cookie {
    color: #2D2D2D;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5rem;
    text-align: center;
}
.link-cookie:hover {
    color: #2D2D2D;
}
#cookies > div {
    position: fixed;
    top: 0px;
    left: 0px;
    width: 100vw;
    height: 100vh;
    z-index: 9999;
}
#cookies .container {
    /*max-width: 95%;*/
}
.cookie-background {
    background: rgba(0, 0, 0, 0.5);
    bottom: 0;
    left: 0;
    position: fixed;
    right: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    transition: background .3s ease-in-out;
    z-index: 9998;
}
.cookie-content {
    position: fixed;
    background: #fff;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 0px auto;
    border-radius: 4px;
    max-width: 1200px;
    max-height: 70vh;
    overflow: hidden auto;
    padding: 1rem 1rem 0 1rem;
    width: 95%;
    z-index: 9999;
}
.select-all-item {
    display: flex;
}
.select-all-item label {
    display: flex;
    align-items: center;
    justify-content: flex-start;
}
.select-all-item label input {
    margin-right: 5px;
}
.cookie-setting-text {
    font-family: 'MBCorpo Text',sans-serif;
    font-weight: 700;
}
@media (min-width: 768px) {
    .cookies-popup {
        background-color: #fff;
        border-radius: 7px;
        display: flex;
        flex-wrap: wrap;
        /*padding: 30px;*/
        width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    .cookies-title {
        color: #292929;
        font-size: 34px;
        /*font-weight: 700;*/
        line-height: 2.5rem;
        margin: 15px 0px;
    }
    .cookies-text {
        color: #292929;
        font-size: 18px;
        font-weight: 400;
        line-height: 1.5rem;
        /*margin: 15px 0px;*/
    }
    .cookies-button-container {
        float: right;
        text-align: right;
        margin: 15px 0px;
        width: 100%;
    }
    .cookies-button-container button:last-child {
        margin-left: 15px;
    }
    .button-cookie {
        background: #00ADEF;
        border: 1px solid #4a90e2;
        border-radius: 7px;
        color: #fff;
        font-size: 1rem;
        font-weight: 700;
        line-height: 1.5rem;
        padding: 10px 25px;
        text-align: center;
        transition: background-color .3s ease-in-out;
        width: auto;
        margin-bottom: 0;
    }
    .button-cookie:hover {
        color: #fff;
        background-color: #0088c6;
    }
    .cookies-footer {
        margin: 15px 0px;
        width: 100%;
        text-align: right;
    }
    .cookies-footer a:last-child {
        margin-left: 30px;
    }
    .link-cookie {
        color: #2D2D2D;
        font-size: 1rem;
        font-weight: 400;
        line-height: 1.5rem;
        text-align: center;
    }
    .link-cookie:hover {
        color: #2D2D2D;
    }
    #cookies {
        /*position: fixed;
        top: calc(5vh + 465px);
        z-index: 9999;*/
    }
    #cookies .container {
        /*max-width: 95%;*/
    }
    .cookies-button-container {
        float: right;
    }
}