.t-cookie-info
{
    position: fixed;
    bottom: 1.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: rgb(12, 31, 88);
    box-shadow: 0 0.5rem 2.1875rem 0 rgba(0, 0, 0, 0.16);
    padding: 1rem 1.5rem;
    width: 68.125rem;
    z-index: 998;
    border-radius: 0.25rem;
}

.t-cookie-info-inner
{
    display: flex;
    gap: 1.5rem;
    align-items: center;
}

.t-cookie-info-inner-text
{
    color: rgb(247, 247, 247);
    font-size: 0.875rem;
    font-weight: 400;
    line-height: 1.25rem;
}
.t-cookie-info-inner-text a {
    text-decoration: none;
    font-weight: 600;
}
.t-cookie-info-inner-text a:hover {
    color: #00AAFF;
}
.t-cookie-info-inner-btn a
{
    width: 13.625rem;
    background: linear-gradient(90.00deg, rgb(13, 83, 187),rgb(0, 170, 255) 100%);
    border-radius: 0.25rem;
    text-align: center;
    padding: 0.75rem 1.5rem 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    line-height: 1.125rem;
    text-decoration: none;
    display: inline-block;
    color: #FFFFFF;
    transition: opacity 0.3s;
}
.t-cookie-info-inner-btn a:hover {
     background: linear-gradient(266.96deg, #007be6 2.84%, #0d2a7d 97.86%);
}

@media (max-width: 1280px) {
    .t-cookie-info {
        width: 70%;
        bottom: 3rem;
    }

    .t-cookie-info-inner-btn a
    {
        width: 12.5rem;
    }
}

@media (max-width: 1023px) {
    .t-cookie-info {
        width: 87.5%;
        bottom: 6.25rem;
    }

}

@media (max-width: 767px) {
    .t-cookie-info {
        width: 90%;
        bottom: 6rem;
    }
    .t-cookie-info-inner
    {
        flex-direction: column;
        gap: 1rem;
    }
    .t-cookie-info-inner-btn,
    .t-cookie-info-inner-btn a
    {
        width: 100%;
    }
}
