.cookie-notice-container {
    max-width: 1240px;
    margin: auto;
    background: #FFFFFF;
    box-shadow: 9px 4px 20px -11px rgba(0, 0, 0, 0.25);
    border-radius: 14px;
    display: flex;
    /*align-items: center;*/
    justify-content: space-between;
    gap: 32px;
    padding: 24px 32px;
    min-height: 184px;
    position: relative;
    border: 1px solid rgba(231, 229, 228, 1);
}

.cookie-notice-container .btn{
    width: 181px;
    height: 44px;
    color: white;
    background-color: #04724D;
    transition: 0.5s;
    border-radius: 8px;
    border-color: transparent;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    margin: 0 30px;
    padding: 7px 30px;
}

.cookie-notice-container .btn:hover{
    color: white;
    background-color: #62BD73;
}

.cookie-notice-container .btn.btn-white {
    background: rgb(255, 255, 255, 0.5);
    border: 2px solid #D7D3D0;
    box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
    border-radius: 8px;
    font-style: normal;
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #44403C;
}

.cookie-notice-container .btn.btn-white:hover {
    background: #FAFAF9;
}

div#cookie-notice {
    bottom: 35px;
    padding: 0 10px;
}

.cookie-text-container {
    width: 70%;
    flex-grow: 1;
    padding: 24px 0;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    text-align: left;
    gap: 10px;
    order: 1;
}

.cookie-image {
    width: 48px;
    height: 48px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #FFFFFF;
    border: 1px solid #E7E5E4;
    box-shadow: 0px 1px 2px rgba(16, 24, 40, 0.05);
    border-radius: 10px;
    -webkit-flex-shrink: 0;
    flex-shrink: 0;
    position: absolute;
    bottom: 16px;
    right: 16px;
}

a#cn-more-info {
    padding: 0;
    line-height: 44px;
    margin: 0;
    width: 161px;
    height: 44px;
    background: #FFFFFF;
    border: 1px solid #D7D3D0;
}

.cookie-text-heading {
    font-weight: 600;
    font-size: 16px;
    line-height: 24px;
    color: #44403C;
}

span#cn-notice-text {
    font-style: normal;
    font-weight: 400;
    font-size: 16px;
    line-height: 24px;
}

.cookie-buttons-container {
    display: flex;
    flex-direction: column;
    gap: 8px;
    height: 100%;
    align-items: flex-end;
    align-self: flex-start;
    order: 3;
    padding: 24px 0;
}

#cookie-notice {
    display: block;
    visibility: hidden;
    position: fixed;
    min-width: 100%;
    height: auto;
    z-index: 100000;
    font-size: 13px;
    line-height: 20px;
    left: 0;
    text-align: center;
    bottom: 35px;
}

#cn-notice-text a {
    text-decoration: underline;
    color: #212529;
}

.cookie-buttons-container .btn {
    margin: 0;
    padding: 0;
    line-height: 44px;
}

.cookie-buttons-container .btn.btn-white {
    margin: 0;
    padding: 0;
    line-height: 44px;
}

a#cn-accept-cookie {
    width: 181px;
    height: 44px;
}

#cn-notice-text a:hover {
    background: none;
}

@media (max-width: 1024px) {
    .cookie-notice-container {
        gap: unset;
        flex-wrap: wrap;
        justify-content: flex-start;
        column-gap: 29px;
        max-width: 734px;
        padding: 30px 48px;
    }
    .cookie-buttons-container {
        margin-left: auto;
        flex-direction: row-reverse;
    }

    .cookie-image {
        top: 16px;
        bottom: unset;
    }
}

@media (max-width: 470px){
    .cookie-image {
        display: none;
    }

    .cookie-notice-container {
        padding: 16px;
        flex-direction: column;
        flex-wrap: nowrap;
        max-width: 388px;
        gap: 30px;
    }

    .cookie-text-container {
        width: 100%;
        padding: 0;
        gap: 21px;
    }

    a#cn-accept-cookie {
        width: 100%;
    }

    .cookie-buttons-container .btn.btn-white {
        width: 100%;
    }

    .cookie-buttons-container {
        margin: 0;
        flex-direction: column;
        width: 100%;
    }

    a#cn-more-info {
        width: 100%;
    }

    span#cn-notice-text, #cn-notice-text a {
        color: #57534E;
    }
}
