@charset "utf-8";
.smart-banner-app {
    width: -webkit-fill-available;
    position: fixed;
    width: 100%;
    z-index: 100;
    background: url('../static/images/bg-pattern.jpg') left center / 467px 90px repeat-y, no-repeat;
    background-size: cover;
    background-size: contain;
}

.smart-banner-app:before,
.smart-banner-app:after {
    content: " ";
    display: table;
}

.smart-banner-app:after {
    clear: both;
}

.smart-banner-app .smart-banner-app-wrapper {
    flex-direction: row;
    box-sizing: border-box;
}

.smart-banner-app .smart-banner-app-wrapper .d-flex:nth-of-type(1),
.smart-banner-app .smart-banner-app-wrapper .d-flex:nth-of-type(3) {
    flex-grow: 1;
}

.smart-banner-app .smart-banner-app-wrapper .d-flex:nth-of-type(2) {
    flex-grow: 2;
}

.smart-banner-app .d-logo {
    margin-right: 8px;
}

.smart-banner-app .smart-banner-logo {
    min-width: 42px;
    padding-left: 20px;
}

.smart-banner-app.closed {
    margin-top: -100%;
}

.smart-banner-app .close {
    width: 12px;
    height: 12px;
    top: calc(50% - 5px);
    left: 12px;
    text-decoration: none !important;
    color: var(--secondary-1);
    background: #CFCFCF;
    border-radius: 50%;
}

.smart-banner-app .close:before {
    transform: rotate(45deg);
}

.smart-banner-app .close:after {
    transform: rotate(-45deg);
}

.smart-banner-app .close:before,
.smart-banner-app .close:after {
    position: absolute;
    width: 1px;
    height: 6px;
    background: #767676;
    content: " ";
    top: 2.75px;
    left: 5.25px;
}

.smart-banner-app .smart-banner-title {
    font-size: 10px;
}

.smart-banner-app .smart-banner-subtitle {
    font-size: 8px;
}

.smart-banner-app .smart-banner-app-wrapper .button {
    text-transform: capitalize;
    font-size: 14px;
    font-weight: 600;
}

@media (min-width: 768px) {
    .smart-banner-app .smart-banner-title {
        font-size: 16px;
    }
    .smart-banner-app .smart-banner-subtitle {
        font-size: 12px;
    }
    .smart-banner-app .smart-banner-app-wrapper .smart-banner-logo {
        margin-right: 16px;
    }
    .smart-banner-app .d-logo {
        margin-right: 16px;
    }
    .smart-banner-app .smart-banner-app-wrapper {
        padding-left: 32px;
    }
}