.banner-top {
    background-color: #05292C;
    padding: 10px 0;
}

.logged-in .banner-top {
    /*display: block;*/
}

.banner-top .grid-x {
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

.banner-top .d-flex-main {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.banner-top .d-flex-main .desc {
    font-size: 15px;
    line-height: 20px;
    color: #FFF;
    font-family: var(--global-font-family,var(--global-font-family));
    font-weight: 500;
}

.banner-top .d-flex-main .desc p {
    margin: 0;
    font-size: 15px;
    line-height: 20px;
}

.banner-top .d-flex-main .btn {
    padding-left: 20px;
}

.banner-top .d-flex-main .btn a {
    font-family: var(--global-font-family,var(--global-font-family));
    font-size: 14px;
    background-color: #FF9200;
    padding: 8px 14px 8px 14px;
    font-weight: 600;
    border-radius: 3px;
    color: #fff;
    display: inline-block;
    line-height: 1;
    fill: #fff;
    text-align: center;
    -webkit-transition: all .3s;
    -o-transition: all .3s;
    transition: all .3s;
    margin: 0;
    text-decoration: none;
}

.banner-top .d-flex-main .btn a:hover {
    background-color: #137465;
    color: #fff;
    text-decoration: none;
}

body {
    padding-top: 52px !important;
}

@media (max-width: 767px) {
    .banner-top {
        padding: 10px 20px;
    }

    .banner-top .d-flex-main .btn {
        padding-left: 0px;
        margin-top: 10px;
        width: 100%;
        text-align: center;
    }

    .banner-top .d-flex-main .desc {
        width: 100%;
        text-align: center;
    }

    body {
        padding-top: 100px !important;
    }
}