.first-visit.show {
    opacity: 1;
    visibility: visible;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
}
.first-visit {
    width: 100%;
    padding: 40px 10px;
    font-weight: 300;
    font-size: 15px;
    position: fixed;
    background: #fff;
    bottom: 0;
    border-top: 2px solid #167ac6;
    overflow: hidden;
    z-index: 999;
    background-clip: padding-box;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all .3s;
    transition: all .3s;
    -webkit-transform: translate3d(0, 100%, 0);
    transform: translate3d(0, 100%, 0);
}
.first-visit .container {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-wrap: nowrap;
    background: transparent;
}
.first-visit .text {
    padding: 0 20px 0 0;
    color: #000;
    line-height: 20px;
}
.first-visit .text a {
    color: #167ac6;
    text-decoration: none;
}
.first-visit .js-first {
    text-decoration: none;
    white-space: nowrap;
    display: inline-block;
    transition: all .3s;
    text-align: center;
    display: inline-block;
    vertical-align: top;
    border-radius: 5px;
    background-color: #167ac6;
    color: #fff;
    border: 1px solid #167ac6;
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    padding: 12px 10px;
    text-transform: uppercase;
    min-width: 222px;
    transition: background .3s, color .3s;
}