cookie-popup.scss 808 Bytes
@import "../../vars";
@import "../../mixins";

.cookie-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-image: url("../img/main/cookies-bg.png");
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 101;
    max-height: 64px;
    height: 100%;
    display: none;
}

.cookie-popup-wrapper {
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;

    &__text {
            font-weight: 700;
            font-size: 12px;
            line-height: 14px;
            color: #E7EAEE;
            margin-right: 22px;
        }
    
        &__btn {
            @include btn-orange;
            padding: 13px 30px;
    
            &:hover {
                @include btn-orange-hover;
            }
        }

}