/* Cookie banner override styles */
#cookiebanner-root .cb {
    font-family: "Inter", sans-serif !important;
    background-color: #fff !important;
    color: #343434 !important;
    border-radius: 12px !important;
    border: 1px solid #ddd !important;
    box-shadow: 0px 4px 12px 0px #0000001a !important;
    padding: 20px !important;
    max-width: 380px !important;
}

#cookiebanner-root .cb__content-text {
    font-family: "Inter", sans-serif !important;
    font-size: 14px !important;
    line-height: 1.5 !important;
    color: #343434 !important;
    margin-bottom: 16px !important;
}

#cookiebanner-root .cb__link {
    color: #387ccd !important;
    text-decoration: underline !important;
}

#cookiebanner-root .cb__aside {
    display: flex !important;
    gap: 12px !important;
    flex-wrap: wrap !important;
}

#cookiebanner-root .cb__b {
    font-family: "Inter", sans-serif !important;
    font-size: 14px !important;
    font-weight: 600 !important;
    border-radius: 999px !important;
    padding: 10px 20px !important;
    cursor: pointer !important;
    transition: opacity 0.2s ease !important;
}

#cookiebanner-root .cb__b:hover {
    opacity: 0.85 !important;
}

#cookiebanner-root .cb__b_allow {
    background-color: #387ccd !important;
    border-color: #387ccd !important;
    color: #fff !important;
}

#cookiebanner-root .cb__b_decline {
    background-color: transparent !important;
    border: 1px solid #ddd !important;
    color: #343434 !important;
}

.topbtn {
    position: fixed;
    right: 30px;
    bottom: 30px;

    width: 52px;
    height: 52px;

    display: flex;
    align-items: center;
    justify-content: center;

    padding: 0;
    border: none;
    border-radius: 50%;

    background: #3F7FCE;
    color: #fff;

    opacity: 0;
    visibility: hidden;
    pointer-events: none;

    z-index: 1001;
    cursor: pointer;

    box-shadow: 0 8px 25px rgba(63, 127, 206, 0.25);

    transform: translateY(15px);

    transition:
        opacity 0.3s ease,
        visibility 0.3s ease,
        transform 0.3s ease,
        background-color 0.3s ease,
        box-shadow 0.3s ease;
}

.topbtn.show {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translateY(0);
}

.topbtn:hover {
    background: #3474c3;
    transform: translateY(-5px);

    box-shadow: 0 12px 30px rgba(63, 127, 206, 0.35);
}

.topbtn i {
    font-size: 24px;
    color: #fff;

    transition: transform 0.3s ease;
}

.topbtn:hover i {
    transform: translateY(-3px);
}

.topbtn:active {
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .topbtn {
        right: 20px;
        bottom: 20px;
        width: 46px;
        height: 46px;
    }

    .topbtn i {
        font-size: 21px;
    }
}

.header-phone {
    width: 42px;
    height: 42px;

    display: inline-flex;
    align-items: center;
    justify-content: center;

    border: 1px solid rgba(255, 255, 255, 0.7);
    border-radius: 50%;

    color: #fff;
    text-decoration: none;

    transition:
        background-color .25s ease,
        color .25s ease,
        border-color .25s ease;
}

.header.is-white .header-phone {
    border: 1px solid #387CCD;
    background-color: #387CCD;
}
.header-phone i {
    font-size: 19px;
}

.header-phone:hover {
    background-color: #fff;
    border-color: #fff;
    color: #333;
}