#footer-banner {
    width: 100%;
    padding: 1.5rem 5%;
    background: rgb(255,255,255);
    background: linear-gradient(180deg, rgba(255,255,255,0) 0%, rgba(255,255,255,0.58) 45%, rgba(255,255,255,1) 100%);
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 99;
    opacity: 0;
    pointer-events: none;
    transition: all .2s;
}
#footer-banner.active {
    opacity: 1;
    pointer-events: all;
}
#footer-banner .inner {
    display: flex;
    align-items: center;
    justify-content: center;
}
#footer-banner a {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 28px 12px 48px;
    background: #eb0000;
    border: 1px solid #eb0000;
    border-radius: 50px;
    box-shadow: 1px 3px 0 #333;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.2;
    text-align: center;
    transition: all .3s;
}
#footer-banner a:hover {
    opacity: .8;
    text-decoration: none;
}

#footer-banner a svg {
    display: block;
    width: 20px;
    height: 20px;
    margin-left: 12px;
    transition: all .3s;
}

#footer-banner_close {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
    cursor: pointer;
    position: absolute;
    top: 0;
    left: 0;
    background-color: #fff;
}
.creative-banner {
    padding: 0 !important;
}
.creative-banner a {
    padding: 0 !important;
    background: none !important;
    border: none !important;
    border-radius: 0 !important;
}
.creative-banner a img {
    width: 100%;
    height: auto;
}
@media screen and (max-width: 896px) {
    #footer-banner {
    padding: 12px 20px;
    }
    #footer-banner a {
    padding: 12px 16px 12px 32px;
    font-size: 16px;
    }
    #footer-banner a svg {
    width: 16px;
    height: 16px;
    margin-left: 8px;
    }
}
@media screen and (max-width: 767px) {
    #footer-banner a {
    padding: 12px 12px 12px 24px;
    font-size: 12px;
    }
    #footer-banner a svg {
    width: 12px;
    height: 12px;
    margin-left: 4px;
    }
}
@media screen and (max-width: 480px) {
    #footer-banner a {
    padding: 0 16px;
    }
    #footer-banner a svg {
    display: none;
    }
    #footer-banner_close {
    top: 0;
    left: 0;
    }
}
@media screen and (min-width: 768px) {
    #footer-banner a:hover {
    background: #fff;
    box-shadow: 1px 3px 0 #eb0000;
    color: #eb0000;
    }
    #footer-banner a:hover svg {
    stroke: #eb0000;
    }
}


#ft-banner {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    position: fixed;
    bottom: 0;
    left: 0;
    z-index: 90;
}