#echipa-cookie-banner {
    box-sizing: border-box;
    position: fixed;
    left: 24px;
    bottom: 24px;
    z-index: 10000;
    width: min(747px, calc(100vw - 32px));
    background: #ffffff;
    border: 1px solid #e8eaf0;
    border-radius: 23px;
    padding: 20px;
    display: none;
    align-items: flex-start;
    gap: 18px;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    box-shadow: 0 8px 32px rgba(54, 65, 83, 0.12);
}

#echipa-cookie-banner.is-visible {
    display: flex;
}

#echipa-cookie-banner .cookie-banner__close {
    position: absolute;
    top: 14px;
    right: 14px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    padding: 0;
    border: 0;
    border-radius: 6px;
    background: transparent;
    color: #9ca3af;
    cursor: pointer;
    -webkit-appearance: none;
    appearance: none;
}

#echipa-cookie-banner .cookie-banner__close:hover,
#echipa-cookie-banner .cookie-banner__close:focus {
    color: #6b7280;
    background: rgba(54, 65, 83, 0.06);
    outline: none;
}

#echipa-cookie-banner .cookie-banner__close svg {
    display: block;
}

#echipa-cookie-banner .cookie-banner__icon {
    flex: 0 0 41px;
    width: 41px;
    height: 42px;
}

#echipa-cookie-banner .cookie-banner__icon img {
    display: block;
    width: 41px;
    height: 42px;
}

#echipa-cookie-banner .cookie-banner__content {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 13px;
    flex: 1;
    min-width: 0;
}

#echipa-cookie-banner .cookie-banner__title {
    margin: 0;
    font-style: normal;
    font-weight: 800;
    font-size: 18px;
    line-height: 22px;
    color: #364153;
}

#echipa-cookie-banner .cookie-banner__text {
    margin: 0;
    font-style: normal;
    font-weight: 500;
    font-size: 16px;
    line-height: 150%;
    color: #364153;
}

#echipa-cookie-banner .cookie-banner__text a {
    color: #364153;
    font-weight: 700;
    text-decoration: none;
}

#echipa-cookie-banner .cookie-banner__text a:hover {
    color: #4e65b4;
}

#echipa-cookie-banner .cookie-banner__button {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 12px 32px;
    margin-top: 4px;
    border: 0;
    border-radius: 12px;
    background: #4E65B4;
    background-color: #4E65B4;
    -webkit-appearance: none;
    appearance: none;
    font-family: inherit;
    font-style: normal;
    font-weight: 600;
    font-size: 15px;
    line-height: 22px;
    text-align: center;
    color: #ffffff;
    cursor: pointer;
}

#echipa-cookie-banner .cookie-banner__button:hover,
#echipa-cookie-banner .cookie-banner__button:focus {
    background: #4E65B4;
    background-color: #4E65B4;
    color: #ffffff;
}

@media (max-width: 640px) {
    #echipa-cookie-banner {
        flex-direction: column;
        left: 16px;
        bottom: 16px;
        padding: 16px;
    }

    #echipa-cookie-banner .cookie-banner__button {
        width: 100%;
    }
}
