.cgptcb-body {
    z-index: 2147483647;
    position: fixed;
}
.cgptcb-body .cgptcb-chat-circle,
.cgptcb-body .cgptcb-chat-box-toggle {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    width: 100px;
    height: 100px;
    border-radius: 50%;
    line-height: 4rem;
    cursor: pointer;
    color: var(--chatbot-color, #fff);
    background-color: var(--chatbot-bg-color, #0099dd);
    box-shadow: 0 0.25rem 0.5rem rgb(50 50 50 / 0.3),
    0 1px 3px rgb(0 0 0 / 0.05);
    text-align: center;
    transition: all 0.2s ease-in-out;
}

/*Increase the size on Hover*/
.cgptcb-body .cgptcb-chat-circle:hover,
.cgptcb-body .cgptcb-chat-circle:active,
.cgptcb-body .cgptcb-chat-box-toggle:hover,
.cgptcb-body .cgptcb-chat-box-toggle:active {
    transform: scale(1.1);
}

/* Center the icons inside the buttons */
.cgptcb-body .cgptcb-chat-circle img,
.cgptcb-body .cgptcb-chat-circle svg {
    width: 60px !important;
    height: 60px !important;
    position: absolute;
    /*! object-fit: cover; */
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    border-radius: 50%;
}

.cgptcb-body .cgptcb-chat-box-toggle img,
.cgptcb-body .cgptcb-chat-box-toggle svg {
    width: 18px !important;
    height: 18px !important;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
}

.cgptcb-body .cgptcb-chat-box-toggle {
    display: none;
}

.cgptcb-body .cgptcb-launcher-icon-bg {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    margin: auto;
    background-color: #ff00ff;
    width: 1px;
    height: 1px;
    border-radius: 50%;
    box-shadow: 0 0 1px 0px #ffffff, 0 0 1px 1px #ff00ff, 0 0 1px 1px #00ffff;
    z-index: -999;
    animation-name: glow-animation;
    animation-duration: 7s;
    animation-timing-function: ease-out;
    animation-iteration-count: infinite;
}

.pulse {
    animation: pulse-animation 1.5s infinite;
}

.squiggle {
    stroke-dasharray: 150;
    stroke-dashoffset: 150;
    animation: draw-path 2s ease-in-out infinite;
}

@keyframes glow-animation {
    0% {
        opacity: 0;
        box-shadow: 0 0 1px 0px #ffffff, 0 0 1px 1px #ff00ff,
        0 0 1px 1px #00ffff;
    }

    10% {
        opacity: 0.5;
        box-shadow: 0 0 5px 0px #ffffff, 0 0 5px 5px #ff00ff,
        0 0 5px 5px #00ffff;
    }

    20% {
        opacity: 1;
        box-shadow: 0 0 10px 0px #ffffff, 0 0 10px 10px #ff00ff,
        0 0 10px 10px #00ffff;
    }

    30% {
        box-shadow: 0 0 15px 0px #ffffff, 0 0 15px 15px #ff00ff,
        0 0 15px 15px #00ffff;
    }

    40% {
        box-shadow: 0 0 15px 0px #ffffff, 0 0 15px 15px #ff00ff,
        0 0 15px 15px #00ffff;
    }

    50% {
        box-shadow: 0 0 15px 0px #ffffff, 0 0 15px 15px #ff00ff,
        0 0 15px 15px #00ffff;
    }

    60% {
        box-shadow: 0 0 15px 0px #ffffff, 0 0 15px 15px #ff00ff,
        0 0 15px 15px #00ffff;
    }

    70% {
        box-shadow: 0 0 15px 0px #ffffff, 0 0 15px 15px #ff00ff,
        0 0 15px 15px #00ffff;
    }

    80% {
        box-shadow: 0 0 10px 0px #ffffff, 0 0 10px 10px #ff00ff,
        0 0 10px 10px #00ffff;
    }

    90% {
        box-shadow: 0 0 5px 0px #ffffff, 0 0 5px 5px #ff00ff,
        0 0 5px 5px #00ffff;
    }

    100% {
        opacity: 0.5;
        box-shadow: 0 0 1px 0px #ffffff, 0 0 1px 1px #ff00ff,
        0 0 1px 1px #00ffff;
    }
}

@keyframes pulse-animation {
    0% {
        box-shadow: 0 0 0 0px rgba(0, 0, 0, 0.2);
    }

    25% {
        box-shadow: 0 0 0 10px rgba(0, 0, 0, 0.1);
    }

    50% {
        box-shadow: 0 0 0 5px rgba(0, 0, 0, 0.2);
    }

    100% {
        box-shadow: 0 0 0 15px rgba(0, 0, 0, 0);
    }
}

@keyframes draw-path {
    to {
        stroke-dashoffset: 0;
    }
}

.cgptcb-body .cgptcb-chat-box-container {
    border: none;
    outline: none;
    height: 0;
    width: 0;
    padding: 0;
    margin: 0;
    position: absolute;
    right: 1rem;
    bottom: 84px;
    background: none;
    border-radius: 1.25rem;
    transition: all 0.2s ease-in-out;
}

:root {
    --cgpt-chat-box-container-height: 704px;
    --cgpt-chat-box-header-height: 52px;
}

.cgptcb-body .cgptcb-chat-box-iframe {
    overflow: hidden;
    position: relative;
    border-bottom-left-radius: 1.25rem;
    border-bottom-right-radius: 1.25rem;
    height: calc(100% - var(--cgpt-chat-box-header-height)) !important;
}

.cgptcb-body .cgptcb-chat-box-container.open {
    height: min(
            var(
                    --cgptcb-chat-box-height,
                    var(--cgpt-chat-box-container-height, calc(100% - 104px))
            )
    );
    z-index: 2147483000;
    position: fixed;
    min-height: 80px;
    max-height: var(
            --cgptcb-chat-box-height,
            var(--cgpt-chat-box-container-height)
    );
    width: var(--cgptcb-chat-box-width, 400px) !important;
}

/* responsive css */
@media only screen and (max-width: 600px) {
    .cgptcb-body .cgptcb-chat-circle,
    .cgptcb-body .cgptcb-chat-box-toggle {
        right: 1rem;
        bottom: 1rem;
    }

    .cgptcb-body .cgptcb-chat-box-container.open {
        right: 0;
        bottom: 0;
        max-height: 100%;
        max-width: 100%;
        height: 100% !important;
        width: 100% !important;
    }
    .cgptcb-chat-box-header,
    .cgptcb-chat-box-iframe {
        border-radius: 0;
    }
}


.cgptcb-body .cgptcb-chat-box-container.open .cgptcb-chat-box-header {
    display: flex;
}

.cgptcb-body .cgptcb-chat-box-header {
    background-color: var(
            --chatbot-toolbar-color,
            var(--chatbot-color, #730773)
    ) !important;
    height: var(--cgpt-chat-box-header-height);
    padding: 0 16px;
    display: none;
    justify-content: end;
    align-items: center;
    gap: 5px;
    border-top-left-radius: 1.25rem;
    border-top-right-radius: 1.25rem;
}

.cgptcb-body .cgptcb-chat-box-action {
    cursor: pointer;
    outline: none;
    border: 0;
    background-color: var(--chatbot-bg-color, #730773) !important;
    color: var(--chatbot-color, #fff);
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    width: 35px;
    height: 35px;
    padding: 0;
    position: relative;
}

.cgptcb-body .cgptcb-chat-box-action::after {
    content: attr(data-title);
    position: absolute;
    top: -3rem;
    color: #fff;
    background-color: #3b3b3b;
    border-radius: 10px;
    padding: 0.5rem;
    width: max-content;
    max-width: 10rem;
    border: 1px solid #808080;
    z-index: 1;
    opacity: 0;
    visibility: hidden;
    transition: all 200ms ease-in-out;
}
.cgptcb-body .cgptcb-chat-box-action:hover::after {
    opacity: 1;
    visibility: visible;
}

.cgptcb-chat-box-iframe .cgptcb-chat-box-iframe-load-indicator {
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    color: var(--chatbot-color, #000);
    background-color: var(--chatbot-toolbar-color);
}

.cgptcb-chat-box-iframe .cgptcb-chat-box-iframe-load-indicator svg {
    display: inline-block;
    width: 3rem;
    height: 3rem;
    animation: rotate 2s linear infinite;
}

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}
.cgptcb-chat-circle {
    position: relative;
    /*animation: jump-animation 1.5s ease infinite;*/
}

@keyframes jump-animation {
    0% {
        transform: translateY(0);
    }
    50% {
        transform: translateY(-20px);
    }
    100% {
        transform: translateY(0);
    }
}
.cgptcb-body .cgptcb-chat-circle.cgptcb-icon-size-small, .cgptcb-body .cgptcb-chat-box-toggle.cgptcb-icon-size-small {
    width: 80px;
    height: 80px;
}
@media (min-width: 0) and (max-width: 575px) {
    :root {
        --cookies-height: 90%;
        --cookies-bottom: 1rem;
    }
}
@media (min-width: 576px) {
    :root {
        --cookies-height: 90%;
        --cookies-bottom: 3rem;
    }
}
@media (min-width: 768px) {
    :root {
        --cookies-height: 70%;
        --cookies-bottom: 2rem;
    }
}
@media (min-width: 992px) {
    :root {
        --cookies-height: 60%;
        --cookies-bottom: 2rem;
    }
}
@media (min-width: 1200px) {
    :root {
        --cookies-height: 50%;
        --cookies-bottom: 2rem;
    }
}
@media (min-width: 1350px) {
    :root {
        --cookies-height: 30%;
        --cookies-bottom: 2rem;
    }
}
#cookie-banner {
    position: fixed;
    z-index: 2147483645;

    right: 0;
    left: 0;
    overflow-x: hidden;
    overflow-y: auto;
    bottom: var(--cookies-bottom);
    width: var(--cookies-height);
    flex-wrap: wrap;
    align-items: flex-end;
    gap: 16px;
    display: flex;
}
.cookies {
    -webkit-backdrop-filter: blur(12.5px);
    backdrop-filter: blur(12.5px);
    background: rgba(36,36,36,.95);
    /*border-radius: 8px;*/
    border-end-end-radius: 8px;
    border-start-end-radius: 8px;
    align-items: flex-start;
    gap: 8px;
    padding: 12px;
    display: flex;

}
.cookies .cookies__btn {
    flex-shrink: 0;
    padding-left: 20px;
    padding-right: 20px;
}
.btn-minor-md {
    font-variation-settings: "wght" 650;
    letter-spacing: 0;
    cursor: pointer;
    color: #242424;
    border-radius: 12px;
    padding: 5px 24px 7px;
    font-size: 14px;
    font-weight: 400;
    line-height: 20px;
    text-decoration: none;
    display: inline-block;
    position: relative;
}


.usn_back-to-top a.btn {
    display: block;
    height: 45px;
    font-size: 28px;
    margin: 0;
    padding: 0
}
@media (min-width: 0) and (max-width: 991px) {
    .usn_back-to-top {
        padding: 15px;
        height: auto
    }
}
@media (min-width: 992px) {
    .usn_back-to-top {
        position: fixed;
        bottom: 10rem;
        z-index: 2;
        width: 45px
    }
    html.nav-down:not(.reached-top) .usn_back-to-top, html.nav-up .usn_back-to-top {
        bottom: 15px
    }
    .usn_back-to-top a.btn {
        font-size: 18px;
        color: #432762;
        text-decoration: none;
        background: #fff;
        padding: 20px 21px;
        border-radius: 200px;
        -webkit-box-shadow: rgba(0, 0, 0, .2) 0 0 10px;
        box-shadow: rgba(0, 0, 0, .2) 0 0 10px
    }
    .usn_back-to-top.position-left {
        left: 25px
    }
    .usn_back-to-top.position-center {
        left: 50%;
        transform: translateX(-50%)
    }
    .usn_back-to-top.position-right {
        right: 25px;
    }
}
.usn_back-to-top a.btn i {
    font-size: 2rem;
    color: #432762;
    position: absolute;
    top: 5px;
    left: 12px
}
@media (min-width: 992px) {
    html.nav-down:not(.reached-top) .usn_back-to-top, html.nav-up .usn_back-to-top {
        bottom: 110px;
        right: 20px
    }
}

.usn_back-to-top {
    /*display: block;
    height: 45px;
    transition: all .3s ease-in-out 0s;*/


    position: fixed;
    bottom: 3rem;
    z-index: 2;
    width: 30px;
}
.usn_back-to-top a.btn {
    font-size: 18px;
    color: #432762;
    text-decoration: none;
    background: #fff;
    padding: 20px 21px;
    border-radius: 200px;
    -webkit-box-shadow: rgba(0, 0, 0, .2) 0 0 10px;
    box-shadow: rgba(0, 0, 0, .2) 0 0 10px;
}
.telegram-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #0088cc;
    color: white;
    border-radius: 50%;
    text-align: center;
    font-size: 30px;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.telegram-float:hover {
    transform: scale(1.1) translateY(-5px);
    background: #0077b5;
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.3);
}

@keyframes pulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.1); }
    100% { transform: scale(1); }
}

.telegram-float.pulse {
    animation: pulse 2s infinite;
}
