#modal-cookie {
    display: flex;
    flex-direction: column-reverse;
    max-width: 100%;
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 100;
}

.agreementCookie {
    display: block;
    justify-content: center;
    background: #000;
    padding: 10px 10px;
    overflow-y: auto;
    font-size: 14px;
    line-height: 1.5;
    color: #fff;
    border-top: 2px solid #e7311e;
}
body .agreementCookie .container {
    max-width: 1440px;
    width:100%;
}
.agreementCookie .content-wrapper {
    display: flex;
    gap: 2rem;
}
.agreementCookie .content-wrapper.settings-show {
    flex-direction: column;
    gap: 5px;
}

.agreementCookie .content {
    width: 100%;
    font-weight: 500;
}

.agreementCookie .content.content-settings {
    padding-right: calc(226px + 2rem);
}
.agreementCookie .content.content-settings span {
    color: #e7311e;
}
.agreementCookie .content.content-settings>p{
    margin-bottom:10px;
}
.agreementCookie .content p {
    margin: 0;
}

.agreementCookie .content ul {
    margin: 10px 0;
    list-style: none;
}

.agreementCookie .content ul span {
    font-weight: bold;
    margin: 0 0 0 5px;
    opacity: 1;
}

.agreementCookie .content ul label {
    font-size: 14px;
}

.agreementCookie .buttons {
    display: flex;
    gap: 1rem;
    align-items: center;
    width: 100%;
    max-width: 450px;
}

.agreementCookie .buttons .btn {
    width: 100%;
    height: auto;
    display: inline-block;
    margin: 0;
    padding: 10px 20px;
    font-size: 1em;
}

.agreementCookie .buttons .btn-grey {
    background: rgb(177, 177, 177) ;
    color:#fff;
    border: 2px solid rgb(177, 177, 177);
}
.agreementCookie .buttons .btn-grey:hover {
    background: transparent !important;
    border-color: rgb(177, 177, 177);
    color: rgb(177, 177, 177);
}

.agreementCookie .buttons .btn-grey-invert {
    background: transparent !important;
    color: rgb(177, 177, 177);
    border: 2px solid rgb(177, 177, 177);
}
.agreementCookie .buttons .btn-grey-invert:hover {
    background: rgb(177, 177, 177) !important;
    border-color: rgb(177, 177, 177);
    color: #fff;
}

.agreementCookie .buttons .btn-primary {
    color: #ffffff;
    text-shadow: none;
    background-color: #e7311e;
    background-image: unset;
    border: 2px solid #e7311e;
}
.agreementCookie .buttons .btn-primary:hover {
    background-color: transparent;
    border-color: #e7311e;
    color: #e7311e;
}

.agreementCookie ul li input {
    width: initial;
}

.agreementCookie label {
    color: #fff;
}

.agreementCookie .blue-clr {
    color: #e7311e;
}

@media (max-width: 1200px) {
    .agreementCookie .content-wrapper {
        flex-direction:column;
        gap: 5px;
    }
}

@media (max-width: 768px) {
    .agreementCookie {
        padding: 10px 0;
    }

    .agreementCookie .content {
        margin: 0;
    }

    .agreementCookie .content.content-settings {
        padding-right: 0;
    }

    .agreementCookie .content ul {
        margin: 1vw 0 1vw 3vw;
    }

    .agreementCookie .buttons {
        min-width: 120px;
        gap: 0.5rem;
    }

    .agreementCookie .buttons .btn {
        width: 100%;
        margin: 0 0 5px 0;
        font-size: 13px;
        padding: 2.5vw 5vw;
    }

    /*.agreementCookie .content p {
        line-height: 11px;
        font-size: 11px;
    }*/
}

@media (max-width: 480px) {
    .agreementCookie .buttons {
        flex-direction: column;
    }
}