#my-cookie__consent {
    width: 100%;
    max-width: 460px;
    background: #fff;
    position: fixed;
    bottom: 26px;
    right: 12px;
    border-radius: 10px;
    max-height: 0;
    transition: all .8s cubic-bezier(0.65, .05, .36, 1);
    opacity: 0;
    z-index: 9999;
    font-size: inherit;
    box-shadow: #00000091 1px 1px 11px 0px;
}

#my-cookie__consent.active {
    max-height: 250px;
    opacity: 1;
}

#my-cookie__consent .my-cookie__container {
    width: inherit;
    max-width: 90%;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 50px 0;
}

#my-cookie__consent .my-cookie__open-settings {
    font-size: 1em;
    position: relative;
    cursor: pointer;
    white-space: nowrap;
}

#my-cookie__consent .my-cookie__accept-button {
    margin-left: 30px;
    font-size: 1em;
    color: #ffffff;
    background: #e50012;
    padding: 20px;
    border-radius: 5px;
    cursor: pointer;
    white-space: nowrap;
}

#my-cookie__consent .my-cookie__container,
#my-cookie__consent .my-cookie__open-settings,
#my-cookie__consent .my-cookie__open-accept-btn {
    color: #000;
}

#my-cookie__consent .my-cookie__open-settings::before {
    content: '';
    bottom: -4px;
    width: 100%;
    height: 2px;
    background: #000;
    position: absolute;
}

#my-cookie__consent .my-cookie__controls {
    margin-left: auto;
    display: flex;
    align-items: center;
    margin-top: 20px;
    margin-bottom: -26px;
}

@media screen and (max-width: 767px) {
    #my-cookie__consent {
        width: 100%;
        max-width: 90vw;
        background: #fff;
        position: fixed;
        bottom: 26px;
        left: 50%;
        right: 0;
        transform: translateX(-50%);
    }
}