.cookie-panel{
    display: none;
    position: fixed;
    bottom: 32px;
    right: 32px;
    max-width: 773px;
    padding: 20px;
    background: #fff;
    border: 1px solid #E9EBEF;
    border-radius: 16px;
    box-shadow: 0px 10px 10px -5px rgba(0, 0, 0, 0.04);
    z-index: 1000;
}

.cookie-panel .cookie-panel__content{
    display: flex;
    align-items: center;
    gap: 18px;
}

.cookie-panel .cookie-panel__buttons{
    margin-left: 75px;
}

.cookie-panel .cookie-panel__btn{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 40px;
    padding: 0 28px;
    background: #F17F1B;
    border-radius: 8px;
    font-size: 15px;
    line-height: 22px;
    font-family: Montserrat-SemiBold, sans-serif;
    font-weight: 600;
    outline: none;
    border: 0;
    color: #fff;
    transition: background-color .3s;
}

.cookie-panel .cookie-panel__btn::after{
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    border: 1px solid #F17F1B;
    border-radius: 8px;
    margin: 0;
    transition: all .3s;
}

.cookie-panel .cookie-panel__btn:hover::after{
    margin: -3px;
    border: 1px solid #F17F1B;
}

.cookie-panel .cookie-panel__btn:hover{
    background-color: #F17F1B;
}

.cookie-panel .cookie-panel__text{
    font-size: 16px;
    line-height: 24px;
    font-weight: 500;
    font-family: Montserrat-Medium, sans-serif;
}

.cookie-panel .cookie-panel__text a{
    color: #F17F1B;
    text-decoration: none;
}

.cookie-panel .cookie-panel__text a:hover{
    opacity: .75;
}



@media (max-width: 767px) {
    .cookie-panel{
        left: 6px;
        right: 6px;
        bottom: 68px;
        padding: 16px;
    }

    .cookie-panel .cookie-panel__icon svg{
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 570px) {

    .cookie-panel .cookie-panel__content{
        flex-wrap: wrap;
        gap: 16px;
        align-items: flex-start;
    }

    .cookie-panel .cookie-panel__icon {
        flex: 0 0 28px;
        margin-top: 5px;
    }

    .cookie-panel .cookie-panel__text{
        flex: 0 0 calc(100% - 48px);
        font-size: 14px;
        line-height: 22px;
    }

    .cookie-panel .cookie-panel__buttons {
        margin-left: 48px;
    }

    .cookie-panel .cookie-panel__btn{
        height: 32px;
        font-size: 14px;
    }
}