.banner {
    margin: 100px 0;
}
#widget_wrapper {
    min-width: 320px;
    height: 800px;
}

.loader {
    position: relative;
}
.loader:before {
    content:'';
    background-image: url("data:image/svg+xml,%3Csvg width='44' height='44' viewBox='0 0 24 24' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23clip0_1421_40204)'%3E%3Cpath opacity='0.16' fill-rule='evenodd' clip-rule='evenodd' d='M12 4C7.58172 4 4 7.58172 4 12C4 16.4183 7.58172 20 12 20C16.4183 20 20 16.4183 20 12C20 7.58172 16.4183 4 12 4ZM2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12Z' fill='%230080FB'/%3E%3Cpath d='M3.72065 17.6068C4.68661 19.0332 6.00464 20.1858 7.54701 20.9529C9.08937 21.7201 10.8038 22.0758 12.524 21.9857C14.2443 21.8955 15.9121 21.3624 17.3658 20.4382C18.8195 19.514 20.0098 18.2299 20.8213 16.7104C21.6328 15.1909 22.0381 13.4875 21.9978 11.7654C21.9575 10.0432 21.473 8.36066 20.5912 6.8808C19.7095 5.40094 18.4604 4.17395 16.9651 3.31874C15.4697 2.46354 13.7788 2.00912 12.0562 1.99953L12.0451 3.9995C13.4231 4.00717 14.7759 4.37071 15.9721 5.05487C17.1684 5.73903 18.1677 6.72063 18.8731 7.90451C19.5785 9.0884 19.9661 10.4344 19.9983 11.8122C20.0306 13.1899 19.7064 14.5526 19.0572 15.7682C18.4079 16.9838 17.4557 18.011 16.2927 18.7504C15.1298 19.4898 13.7955 19.9163 12.4193 19.9884C11.0431 20.0606 9.6716 19.776 8.43771 19.1622C7.20382 18.5485 6.14939 17.6264 5.37662 16.4854L3.72065 17.6068Z' fill='%230080FB'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='clip0_1421_40204'%3E%3Crect width='44' height='44' fill='white'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
    background-position: center center;
    animation: rotating infinite 0.6s linear;
    background-repeat: no-repeat;
    position: absolute;
    top: 50%;
    left: 50%;
    right: 0;
    bottom: 0;
    width: 44px;
    height: 44px;
    margin-top: -22px;
    margin-left: -22px;
    z-index: -1;
}
@keyframes rotating {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(359deg);
    }
}
@media (max-width: 1199px) {
    .banner {
        margin: 60px 0;
    }
}
@media (max-width: 1079px) {
    #widget_wrapper {
        min-width: 320px;
        height: 890px;
    }
}
@media (max-width: 769px) {
    .banner {
        margin: 40px 0;
    }
}
@media (max-width: 697px) {
    #widget_wrapper {
        margin: 40px 0 0;
        height: 780px;
    }
}