.cookie-window {
    display: flex;
    justify-content: center;
    align-items: center;
    position: fixed;
    padding: 0 20px 20px;
    bottom: 0;
    z-index: 1000;
    left: 50%;
    transform: translate(-50%);
    width: 100%;
}

.cookie-container {
    width: 100%;
    padding: 15px 34px;
    border-radius: 16px;
    font-size: 12px;
    line-height: 16px;
    text-align: left;
    background: rgba(245, 245, 245, .64);
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px)
}

.cookie-container-text {
    width: 100%
}

.cookie-container-action .btn {
    width: 100%;
    height: 46px;
    margin-top: 13px
}

.cookie-container-action .btn span {
    font-size: 17px
}

@media (min-width:768px) {
    .cookie-window {
        padding: 0 30px 30px;
        justify-content: flex-start;
    }

    .cookie-container {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: center;
        padding: 15px 20px;
        font-size: 17px;
        line-height: 22px;
        width: 65%;
    }

    .cookie-container-action {
        display: flex;
        text-align: center;
        justify-content: space-between
    }

    .cookie-container-action .btn {
        width: auto;
        margin-top: 0;
        margin-left: 16px;
        padding: 0 24px
    }
}

.btn {
    display: inline-flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    padding: 0 15px;
    border-radius: 50px;
    border: none;
    text-align: center;
    -webkit-user-select: none;
    -moz-user-select: none;
    user-select: none;
    cursor: pointer
}

.btn span {
    position: relative;
    width: 100%;
    font-family: SBSansDisplay-Regulat, sans-serif;
    font-weight: 400;
    font-size: 15px;
    line-height: 1;
    letter-spacing: .01em;
    white-space: nowrap;
    text-align: center;
    z-index: 1
}

.btn--color-1 {
    background-color: #006eff;
    color: #fff;
    transition: box-shadow .3s
}

.btn--color-1:active {
    box-shadow: 0 2px 15px rgba(0, 110, 255, .55)
}

.btn--color-1:hover {
    box-shadow: 0 2px 15px rgba(0, 110, 255, .55)
}

.btn--color-2 {
    background: 0 0;
    border: 1px solid #333f48;
    color: #333f48;
    transition: border-color .3s, color .3s
}

.btn--color-2:active {
    border-color: #979797;
    color: #979797
}

.btn--color-2:hover {
    border-color: #979797;
    color: #979797
}

.btn--color-3 {
    background-color: transparent;
    border: 1px solid #006eff;
    color: #006eff;
    transition: border-color .3s, color .3s
}

.btn--color-3:active {
    border-color: #1ca0ff;
    color: #1ca0ff
}

.btn--color-3:hover {
    border-color: #1ca0ff;
    color: #1ca0ff
}

.btn--color-4 {
    position: relative;
    padding: 0;
    background: #d8ea42;
    background: linear-gradient(135deg, #d8ea42 0, #3eb658 28%, #3cb559 54%, #2d66db 76%, #6234ed 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#d8ea42", endColorstr="#6234ed", GradientType=1);
    color: #333f48;
    overflow: hidden
}

.btn--color-4:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #6234ed;
    background: linear-gradient(135deg, #6234ed 0, #2d66db 24%, #3cb559 46%, #3eb658 72%, #d8ea42 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#6234ed", endColorstr="#d8ea42", GradientType=1);
    opacity: 0;
    transition: opacity .3s
}

.btn--color-4 span {
    display: flex;
    justify-content: center;
    align-items: center;
    top: 0;
    height: calc(100% - 2px);
    width: calc(100% - 2px);
    padding: 0 16px;
    border-radius: inherit;
    background-color: #f3f4f5
}

.btn--color-4:active:before {
    opacity: 1
}

.btn--color-4:hover:before {
    opacity: 1
}

.btn--color-5 {
    background: 0 0;
    border: 1px solid #fff;
    color: #fff;
    transition: border-color .3s, color .3s
}

.btn--color-5:active {
    border-color: #979797;
    color: #979797
}

.btn--color-5:hover {
    border-color: #979797;
    color: #979797
}

.btn--size-40 {
    height: 40px
}

.btn--size-48 {
    height: 48px
}

.btn--size-50 {
    height: 50px
}

.btn--size-54 {
    height: 54px
}

.hidden {
    display: none;
}