* {
    font-family: Mazzerad, sans-serif;
}

.close {
    border-radius: 50%;
    cursor: pointer;
    display: block;
    height: 24px;
    position: relative;
    width: 24px
}

.close:after,.close:before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    width: calc(100% - 8px);
    height: 1px;
    transform-origin: left;
    background: #44566e
}

.close:after {
    transform: rotate(45deg) translateX(-50%)
}

.close:before {
    transform: rotate(-45deg) translateX(-50%)
}

.close:active {
    background: rgba(68,86,110,.12)
}

.cookie {
    position: fixed;
    bottom: -100%;
    left: 0;
    display: grid;
    grid-auto-flow: column;
    justify-content: flex-start;
    align-items: center;
    gap: 40px;
    width: 100%;
    padding: 10px calc(50vw - (1280px/2));
    box-shadow: 0px -4px 10px 3px rgba(0,24,55,.05);
    background: #fff;
    z-index: 999;
    transition: bottom .6s ease-in-out
}

.cookie_show {
    bottom: 0
}

.cookie__close {
    width: 30px !important;
    height: 30px !important
}

.cookie__text {
    font-size: 16px;
    line-height: 22px;
    color: #44566e
}

.cookie__text a {
    color: #166cb7
}

@media (max-width: 768px) {
    .cookie {
        padding: 5px 15px;
        grid-template-columns: max-content .7fr;
        grid-auto-flow: dense;
        gap: 30px;
      }

    .cookie_show {
        bottom: 0px;
        
        &.cookie--new {
            bottom: 73px;
        }
    }

    .cookie__text {
      @include font-size(14);
      @include line-height(20);
      order: 1;
    }
}