.ingenius_cookies {
    position: fixed;
    left: 20px;
    bottom: 20px;
    z-index: 99999999999999;
    background-color: #fff !important;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    max-width: 17%;
    padding: 10px;
    border-radius: 3px;
    animation: opacity 2s;
    animation-fill-mode: forwards;
    opacity: 0;
}

@keyframes opacity {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

.ingenius_cookies_text {
    font-size: 12px !important;
    color: var(--gray-600);
}

.ingenius_cookies .ingenius_btn {
    height: 30px;
    width: 80px;
    margin-top: 10px;
}

.ingenius_cookies .ingenius_btn span {
    font-size: 12px;
}

#cookie_icon {
    background: var(--primary);
    color: #fff;
    width: 40px;
    border-radius: 50%;
    height: 40px;
    box-shadow: 0 -2px 5px rgba(0, 0, 0, 0.1);
    position: fixed;
    bottom: 20px;
    left: 20px;
    z-index: 999999999999999999999;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    border: 1px solid var(--primary);
    transition: all .3s ease-in-out;
    visibility: hidden;
}

#cookie_icon:hover {
    background-color: #fff;
    color: var(--primary);
    cursor: pointer;
    transition: all .3s ease-in-out;
}

.ingenius_btn_primary_border {
    border: 1px solid var(--primary);
    transition: all .3s ease-in-out;
}

.ingenius_btn_primary_border span {
    color: var(--primary);
}

.ingenius_btn_primary_border:hover {
    background-color: var(--primary);
}

.ingenius_btn_primary_border:hover span {
    color: #fff;
}