@charset "UTF-8";

/*CTA BTN---*/
.fixed-banner {
    position: fixed;
    width: 100%;
    right: 0;
    bottom: 0;
    transition: 0.5s;
    z-index: 20;
}

.fixed-banner.hide {
    transform: translateY(+100%);
}

.fixed-banner .banner-container {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
}

.fixed-banner .banner-container>a:nth-child(1),
.fixed-banner .banner-container>a:nth-child(2) {
    flex-basis: 40%;
    background-color: rgba(255, 193, 60, 0.9);
    padding: 6px 0;
}

.fixed-banner .banner-container>a:nth-child(3) {
    flex-basis: 16%;
    background: rgba(20, 20, 20, 0.8);
    text-align: center;
}

.fixed-banner .cta-btn-icon {
    display: block;
    width: 30px;
    margin: auto;
}

.fixed-banner .cta-btn-text {
    text-align: center;
    font-size: 1.4rem;
    font-weight: normal;
    margin-bottom: 1.0rem;
}

.fixed-banner .banner-container>a:nth-child(3)>div::before {
    display: block;
    content: '';
    width: 15px;
    height: 15px;
    border-top: solid 2px;
    border-right: solid 2px;
    transform: rotate(-45deg);
    margin: 14px auto 4px;
}

.fixed-banner .banner-container>a:nth-child(3)>div {
    font-size: 1.4rem;
}

.fixed-banner a {
    text-decoration: none;
    color: #ffffff;
}

/*---CTA BTN*/