@import 'https://fonts.googleapis.com/css?family=Montserrat:400,700|Raleway:300,400';
/* colors */
/* tab setting */
/* breakpoints */
/* selectors relative to radio inputs */
/* %%%%%  BACK TO TOP BTN  %%%%% */

body h1 {
    text-align: center;
    color: #428BFF;
    font-weight: 300;
    padding: 40px 0 20px 0;
    margin: 0;
}
.tab_label_active {
    position: sticky;
    top: 50px;
}
.tabs {
    left: 50%;
    transform: translateX(-50%);
    position: relative;
    background: white;
    padding: 50px;
    padding-bottom: 80px;
    width: 80%;
    /*height: 250px;*/
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
    border-radius: 5px;
    min-width: 240px;
}
.tabs input[name=tab-control] {
    display: none;
}
.tabs .content section h2,
.tabs ul li label {
    font-family: "Montserrat", serif;
    font-weight: bold;
    font-size: 18px;
    color: #428BFF;
}
.tabs ul {
    list-style-type: none;
    padding-left: 0;
    flex-direction: row;
    margin-bottom: 10px;
    justify-content: space-between;
    align-items: flex-end;
    flex-wrap: wrap;
}
.tabs ul li {
    width: 200px;
}
.tabs ul li label {
    transition: all 0.3s ease-in-out;
    color: #929daf;
    padding: 5px 0;
    overflow: hidden;
    text-overflow: ellipsis;
    display: block;
    cursor: pointer;
    white-space: nowrap;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.tabs ul li label br {
    display: none;
}
.tabs ul li label svg {
    fill: #929daf;
    height: 1.2em;
    vertical-align: bottom;
    margin-right: 0.2em;
    transition: all 0.2s ease-in-out;
}
.tabs ul li label:hover, .tabs ul li label:focus, .tabs ul li label:active {
    outline: 0;
    color: #bec5cf;
}
.tabs ul li label:hover svg, .tabs ul li label:focus svg, .tabs ul li label:active svg {
    fill: #bec5cf;
}
.tabs .slider {
    position: relative;
    width: 25%;
    transition: all 0.33s cubic-bezier(0.38, 0.8, 0.32, 1.07);
}
.tabs .slider .indicator {
    position: relative;
    width: 50px;
    max-width: 100%;
    margin: 0 auto;
    height: 4px;
    background: #428BFF;
    border-radius: 1px;
}
.tabs .content {
    margin-top: 30px;
}
.tabs .content section {
    display: none;
    -webkit-animation-name: content;
    animation-name: content;
    -webkit-animation-direction: normal;
    animation-direction: normal;
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: 1;
    animation-iteration-count: 1;
    line-height: 1.4;
}
.tabs .content section h2 {
    color: #428BFF;
    display: none;
}
.tabs .content section h2::after {
    content: "";
    position: relative;
    display: block;
    width: 30px;
    height: 3px;
    background: #428BFF;
    margin-top: 5px;
    left: 1px;
}
.tabs input[name=tab-control]:nth-of-type(1):checked ~ ul > li:nth-child(1) > label {
    cursor: default;
    color: #428BFF;
}
.tabs input[name=tab-control]:nth-of-type(1):checked ~ ul > li:nth-child(1) > label svg {
    fill: #428BFF;
}
@media (max-width: 600px) {
    .tabs input[name=tab-control]:nth-of-type(1):checked ~ ul > li:nth-child(1) > label {
        background: rgba(0, 0, 0, 0.08);
    }
}
.tabs input[name=tab-control]:nth-of-type(1):checked ~ .slider {
    transform: translateX(0%);
}
.tabs input[name=tab-control]:nth-of-type(1):checked ~ .content > section:nth-child(1) {
    display: block;
}
.tabs input[name=tab-control]:nth-of-type(2):checked ~ ul > li:nth-child(2) > label {
    cursor: default;
    color: #428BFF;
}
.tabs input[name=tab-control]:nth-of-type(2):checked ~ ul > li:nth-child(2) > label svg {
    fill: #428BFF;
}
@media (max-width: 600px) {
    .tabs input[name=tab-control]:nth-of-type(2):checked ~ ul > li:nth-child(2) > label {
        background: rgba(0, 0, 0, 0.08);
    }
}
.tabs input[name=tab-control]:nth-of-type(2):checked ~ .slider {
    transform: translateX(100%);
}
.tabs input[name=tab-control]:nth-of-type(2):checked ~ .content > section:nth-child(2) {
    display: block;
}
.tabs input[name=tab-control]:nth-of-type(3):checked ~ ul > li:nth-child(3) > label {
    cursor: default;
    color: #428BFF;
}
.tabs input[name=tab-control]:nth-of-type(3):checked ~ ul > li:nth-child(3) > label svg {
    fill: #428BFF;
}
@media (max-width: 600px) {
    .tabs input[name=tab-control]:nth-of-type(3):checked ~ ul > li:nth-child(3) > label {
        background: rgba(0, 0, 0, 0.08);
    }
}
.tabs input[name=tab-control]:nth-of-type(3):checked ~ .slider {
    transform: translateX(200%);
}
.tabs input[name=tab-control]:nth-of-type(3):checked ~ .content > section:nth-child(3) {
    display: block;
}
.tabs input[name=tab-control]:nth-of-type(4):checked ~ ul > li:nth-child(4) > label {
    cursor: default;
    color: #428BFF;
}
.tabs input[name=tab-control]:nth-of-type(4):checked ~ ul > li:nth-child(4) > label svg {
    fill: #428BFF;
}
@media (max-width: 600px) {
    .tabs input[name=tab-control]:nth-of-type(4):checked ~ ul > li:nth-child(4) > label {
        background: rgba(0, 0, 0, 0.08);
    }
}
.tabs input[name=tab-control]:nth-of-type(4):checked ~ .slider {
    transform: translateX(300%);
}
.tabs input[name=tab-control]:nth-of-type(4):checked ~ .content > section:nth-child(4) {
    display: block;
}
@-webkit-keyframes content {
    from {
        opacity: 0;
        transform: translateY(5%);
    }
    to {
        opacity: 1;
        transform: translateY(0%);
    }
}
@keyframes content {
    from {
        opacity: 0;
        transform: translateY(5%);
    }
    to {
        opacity: 1;
        transform: translateY(0%);
    }
}
@media (max-width: 1000px) {
    .tabs ul li label {
        white-space: initial;
    }
    .tabs ul li label br {
        display: initial;
    }
    .tabs ul li label svg {
        height: 1.5em;
    }
}
@media (max-width: 600px) {
    .tabs ul li label {
        padding: 5px;
        border-radius: 5px;
    }
    .tabs ul li label span {
        display: none;
    }
    .tabs .slider {
        display: none;
    }
    .tabs .content {
        margin-top: 20px;
    }
    .tabs .content section h2 {
        display: block;
    }
}
.tab_svg {
    width: 25px;
}
.tab_btn_active, .tab_btn:hover {
    /*filter: invert(1);*/
    color: white !important;
    background-color: #487866 !important;
}
.tab_sections {
    transition: all 0.3s ease-in-out;
}
.tab_btn {
    text-justify: inter-word;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: all 0.3s ease-in-out;
    border: none !important;;
    text-align: left;
    width: 100%;
}
.tab_container {
    position: relative;
    background: white;
    /*box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);*/
    /*border-radius: 5px;*/
}
#alertdiv {
    display: none;
    min-width: 250px;
    top: 30vh;
    left: 15%;
    position: fixed;
    z-index: 9;
    background-color: #f1f1f1;
    text-align: center;
    border: 1px solid #d3d3d3;
}
#alertheader {
    cursor: move;
    z-index: 9999999;
    /*background-color: #2196F3;*/
    /*color: #fff;*/
}
.alertclose {
    cursor: pointer;
}
.scrollhidden {
    overflow: hidden !important;
}
.vinbut:hover {
    color: white !important;
}
.section_tab_btn_active {
    color: white !important;
}
select[data-plugin-selecttwo]:required {
    border: 1px solid red !important;
}
.select2 {
    width: auto !important;
}
.select2-container, .select2-dropdown, .select2-search, .select2-results {
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -ms-transition: none !important;
    -o-transition: none !important;
    transition: none !important;
}
nav, .dropdown-menu {
    z-index: 200000 !important;
}
progress {
    padding: 6px;
    /*background: rgba(0, 0, 0, 0.25);*/
    /*box-shadow: inset 0 1px 2px rgba(0, 0, 0, 0.25), 0 1px rgba(255, 255, 255, 0.08);*/
    height: 35px;
    transition: 0.4s linear;
    transition-property: width, background-color;
}
@media print {
    .container-fluid, .header, .main, .footer {
        opacity: 1 !important;
    }
    .toast-container {
        display: none;
    }
    * {
        font-family: "Times New Roman", serif;
        text-shadow: none !important;
        color: #000 !important;
        background: transparent !important;
        box-shadow: none !important;
    }
    .unique_green {
        background: white !important;
    }
    body {
        opacity: 1 !important;
        margin-top: 0;
        -webkit-print-color-adjust: exact;
        background-color: white !important;
        /*color: #333;*/
        /*font-family: "Raleway", serif;*/
    }
    .navbar, .navbar-toggle {
        display: none;
        border-width: 0 !important;
    }
    .no_print {
        opacity: 1 !important;
        display: none !important;
    }
    .navbar, .navbar-toggle {
        display: none;
        border-width: 0 !important;
    }
    .non-printable, .accordion, nav, footer {
        display: none;
    }
    .printable {
        display: inline-block !important;
    }
    .review_divs {
        color: black !important;
        vertical-align: top;
        width: 350px !important;
        display: inline-block !important;
        margin: auto;
    }
    .review_div {
        page-break-inside: avoid;
    }
    .breakpoint {
        page-break-inside: avoid;
    }
    table.report-container {
        page-break-after: always;
    }
    thead.report-header {
        display: table-header-group;
    }
    tfoot.report-footer {
        display: table-footer-group;
    }
    table.report-container div.review_div {
        page-break-inside: avoid;
    }
}
button.disabled {
    cursor: not-allowed !important;
}
.fade {
    animation-name: fade;
    animation-duration: 0.1ms;
}
.text-responsive, button, select, textarea, input {
    /*font-size: calc(1% + 1vw + 1vh);*/
}
@keyframes fade {
    from {
        opacity: .4
    }
    to {
        opacity: 1
    }
}
/* On smaller screens, decrease text size */
@media only screen and (max-width: 300px) {
    .text {
        font-size: 11px
    }
}
.opacityclass {
    opacity: 0;
}
@media screen {
    .print_area {
        display: none;
    }
    .w3-animate-opacity {
        animation: opac 0.8s
    }
    @keyframes opac {
        from {
            opacity: 0
        }
        to {
            opacity: 1
        }
    }
}
.u_bg {
    background-color: --bs-light;
    /*background-image: url('/img/vinimg1.jpg?ver=0.2');*/
    /*background-position: 40% center;*/
    /*background-size: 100% 100%;*/
    /*background-repeat: no-repeat;*/
    /*background-attachment: fixed;*/
}
.wbg {
    background-color: --bs-light;
    /*background-image: url('/img/wbg.jpg?ver=0.3');*/
    /*background-position: 40% center;*/
    /*background-size: 100% 100%;*/
    /*background-repeat: no-repeat;*/
    /*background-attachment: fixed;*/
}
.blink-class {
    animation: blink 5s infinite !important;
}
@keyframes blink {
    /*0% {background-color:red;}*/
    20% {
        background-color: green;
    }
    /*40% {background-color:yellow;}*/
    /*60% {background-color:blue; color:#ffffff !important;}*/
    80% {
        background-color: orange;
    }
    /*100% {background-color:red;}*/
}
@-webkit-keyframes blink {
    /*0% {background-color:red;}*/
    20% {
        background-color: green;
    }
    /*40% {background-color:yellow;}*/
    /*60% {background-color:blue; color:#ffffff !important;}*/
    80% {
        background-color: orange;
    }
    /*100% {background-color:red;}*/
}
.cust_btn6 {
    background-image: url('https://vintanainvestments.com/img/gfb.png');
    background-size: cover;
    color: black !important;
}
.cust_btn {
    /*line-height: 110px;*/
    filter: grayscale(60%);
    transition: 500ms all ease;
    font-weight: bold;
    height: 70px;
    width: 180px;
    color: black;
    text-shadow: 0 0px 15px white;
    /*  background-image: url(
    'https://encrypted-tbn0.gstatic.com/images?q=tbn:ANd9GcTbWxzNK7fD15Z8Mhr5AKTBOkFEG7Ym_VBH7A&usqp=CAU');
                background-size: cover; */
    /*border: 0;*/
    cursor: pointer;
    background-position: 40% center;
    background-size: 100% 100%;
    background-repeat: no-repeat;
    /*font-size: 1.2rem;*/
}
.cust_btn:hover {
    font-size: 15px;
    filter: grayscale(0%);
    /*text-decoration:underline;*/
    /*text-decoration-color: red;*/
    transform: scale(1.1);
}
.active.cust_btn {
    font-size: 15px;
    filter: grayscale(0%);
    transform: scale(1.1);
}
.notifi-box {
    width: 400px;
    height: 0px;
    /*opacity: 0;*/
    position: absolute;
    top: 63px;
    right: 35px;
    transition: 1s opacity, 250ms height;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.notifi-box h2 {
    font-size: 14px;
    padding: 10px;
    border-bottom: 1px solid #eee;
    color: #999;
}
.notifi-box h2 span {
    color: #f00;
}
.notifi-item {
    display: flex;
    border-bottom: 1px solid #eee;
    padding: 1px 20px;
    /*margin-bottom: 15px;*/
    cursor: pointer;
}
.notifi-item:hover {
    background-color: #eee;
}
.notifi-item img {
    display: block;
    margin-right: 15px;
    /*border-radius: 50%;*/
}
.notifi-item .text h4 {
    color: #777;
    font-size: 16px;
    margin-top: 10px;
}
.notifi-item .text p {
    color: #aaa;
    font-size: 12px;
}
a:visited {
    color: black;
}
.popview {
    z-index: 5000;
    width: 100%;
    height: 100%;
    position: fixed;
}
.completion-percent{
    /*text-shadow: 0 0 6px #f00,0 0 6px #f00,0 0 6px #f00;*/
    /*color:white;*/
    /*margin-left: 2px;*/
}

.uniq_header {
    color: #000;
    font-size: 26px;
    font-weight: 300;
    text-align: center;
    text-transform: uppercase;
    position: relative;
    margin: 0px 0 20px;
}

.uniq_header::after {
    content: "";
    width: 100px;
    position: absolute;
    margin: 0 auto;
    height: 4px;
    border-radius: 1px;
    background: #000000;
    left: 0;
    right: 0;
    bottom: -20px;
}

/* basic positioning */
.legend {
    list-style: none;
}

.legend li {
    display: inline-block;
}

.legend span {
    border: 1px solid #ccc;
    float: left;
    width: 12px;
    height: 12px;
    margin: 6px;
}

/* your colors */
.legend .red {
    background-color: #dc3545;
}

.legend .yellow {
    background-color: #ffc107;
}

.legend .green {
    background-color: #198754;
}

/* Styles for the content section */
@media (min-width: 500px) {
}

@media only screen and (max-width: 768px) {
    /* For mobile phones: */
    .smartwizard .nav-progress {
        display: none !important;
    }

    * {
        /*font-size: 8px!important;*/
<!--        font-size: calc(1% + 1vw + 1vh) !important;-->
    }

    button {
        /*font-size: 6px!important;*/
    }

    .main_container {
        /*width: 90% !important;*/
        /*top: 20%;*/
        /*position: absolute;*/
        /*margin-top: -50px;*/
        /*margin-left: -50px;*/
    }

    .landing-result {
        min-height: 150px !important;
        min-width: auto !important;
    }

    .modal-content {
        align-self: start;
        border: none;
        /*min-height: 100vh !important;*/
        /*min-width: 100vw !important;*/
    }

    #profilemodal {
        background: white;
    }
}

/*// Small devices (landscape phones, 576px and up)*/
@media (min-width: 576px) {

}

/*// Medium devices (tablets, 768px and up)*/
@media (min-width: 768px) {

}

/*// Large devices (desktops, 992px and up)*/
@media (min-width: 992px) {
}

/*// Extra large devices (large desktops, 1200px and up)*/
@media (min-width: 1200px) {
}

@media (min-width: 1920px) and (max-width: 2560px) {
}

.hiding {
    animation: hideMe 1s forwards;
}

@keyframes hideMe {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

.showing {
    animation: showMe 1s forwards;
}

@keyframes showMe {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@property --rotate {
    syntax: "<angle>";
    initial-value: 132deg;
    inherits: false;
}

.action_btn {
    filter: grayscale(10%);
    transition: 500ms all ease;
    font-weight: bold;
    color: black;
    text-shadow: 0 0px 15px white;
    /*border: 0;*/
    cursor: pointer;
    /*font-size: 1.2rem;*/
}

.action_btn:hover {
    /*background-color: #ffc107;*/
    /*font-size: 1.3rem;*/
    filter: grayscale(50%);
    /*text-decoration: underline;*/
    /*text-decoration-color: red;*/
    transform: scale(1.1);
}

.edit-jump {
    text-transform: uppercase !important;
    transition: 500ms all ease;
}

.edit-jump:hover {
    cursor: pointer;
    text-decoration: underline;
    filter: grayscale(60%);
}
.loan-labels {
            vertical-align: top;
            width: 210px;
            height: 190px;
            cursor: pointer;
        }

        .loan-labels:hover {
            border: 1px solid #1aa61a !important;
            transform: scale(1.02);
            filter: grayscale(30%);
        }

        .loan-labels .icon {
            background: #2cdd9b;
            background: linear-gradient(to right, #2cdd9b 0%, #58d098 100%);
            position: absolute;
            height: 35px;
            border-radius: 25px;
            top: -20px;
            width: 180px;
            color: black;
            text-align: center;
            overflow: hidden;
            font-size: 13px;
            line-height: 20px;
            padding: 6px;
            text-shadow: 1px 1px 1px #003d38;
        }

        .loan-labels .body {
            /*font-size: 10px !important;*/
        }

        input[type="radio"]:checked + .loan-labels {
            border: 1px solid #1aa61a !important;
            transform: scale(1.02);
            filter: grayscale(30%);
        }

        button.btn {
            transition: 500ms all ease !important;
        }

        button.btn:hover {
            filter: grayscale(30%);
            transform: scale(1.1);
        }

        .loan-details-widget {
            transition: 500ms all ease !important;
        }

        .loan-details-widget:hover {
            filter: grayscale(30%);
            transform: scale(1.02);
        }

        .util button {
            font-size: 12px !important;
            width: 120px !important;
            margin: 2px 6px !important;
            padding: 2px 4px !important;
        }

        .util {
            z-index: 2;
        }

        .my-profile * {
            font-size: 14px;
            transition: 500ms all ease !important;
        }

        .my-profile > table,
        thead,
        tbody,
        th,
        td,
        tr {
            background-color: transparent !important;
        }

        body {
            width: 100vw;
            background-image: linear-gradient(to bottom, #9CB5A630, #22915096);
        }

        .header a,
        .header a:visited {
            color: #252424 !important;
        }

        .header a:hover {
            transform: scale(1.05) !important;
        }

        .my-profile h4 {
            color: #0c7234 !important;
        }

        .my-profile h4:hover {
            color: #023d1a !important;
        }

        .my-profile h4 {
            font-size: 24px;
        }

        .my-profile small,
        .completion-percent {
            font-size: 9px;
        }

        @media print {
            .my-profile * {
                font-size: 10px;
                transition: 500ms all ease !important;
            }

            body {
                background-image: none !important;
            }
        }

        .swal2-container {
            z-index: 5000;
        }

        .area {
            /*background: #4e54c8;*/
            /*background: -webkit-linear-gradient(to left, #8f94fb, #4e54c8);*/
            width: 100%;
            /*height:100vh;*/
        }

        .circles {
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            overflow: hidden;
        }

        .circles li {
            position: absolute;
            display: block;
            list-style: none;
            width: 20px;
            height: 20px;
            background: rgba(255, 255, 255, 0.2);
            animation: animate 25s linear infinite;
            bottom: -150px;
        }

        .circles li:nth-child(1) {
            left: 25%;
            width: 80px;
            height: 80px;
            animation-delay: 0s;
        }

        .circles li:nth-child(2) {
            left: 10%;
            width: 20px;
            height: 20px;
            animation-delay: 2s;
            animation-duration: 12s;
        }

        .circles li:nth-child(3) {
            left: 70%;
            width: 20px;
            height: 20px;
            animation-delay: 4s;
        }

        .circles li:nth-child(4) {
            left: 40%;
            width: 60px;
            height: 60px;
            animation-delay: 0s;
            animation-duration: 18s;
        }

        .circles li:nth-child(5) {
            left: 65%;
            width: 20px;
            height: 20px;
            animation-delay: 0s;
        }

        .circles li:nth-child(6) {
            left: 75%;
            width: 110px;
            height: 110px;
            animation-delay: 3s;
        }

        .circles li:nth-child(7) {
            left: 35%;
            width: 150px;
            height: 150px;
            animation-delay: 7s;
        }

        .circles li:nth-child(8) {
            left: 50%;
            width: 25px;
            height: 25px;
            animation-delay: 15s;
            animation-duration: 45s;
        }

        .circles li:nth-child(9) {
            left: 20%;
            width: 15px;
            height: 15px;
            animation-delay: 2s;
            animation-duration: 35s;
        }

        .circles li:nth-child(10) {
            left: 85%;
            width: 150px;
            height: 150px;
            animation-delay: 0s;
            animation-duration: 11s;
        }

        @keyframes animate {
            0% {
                transform: translateY(0) rotate(0deg);
                opacity: 1;
                border-radius: 0;
            }

            100% {
                transform: translateY(-1000px) rotate(720deg);
                opacity: 0;
                border-radius: 50%;
            }
        }

        .link-boxes .card {
            min-height: 300px;
            min-width: 300px;
        }

        .ani-txt {
            text-transform: uppercase;
            letter-spacing: 0.5em;
            display: inline-block;
            border: 4px double rgba(255, 255, 255, 0.25);
            border-width: 4px 0;
            padding: 1.5em 0em;
            position: absolute;
            top: 18%;
            left: 50%;
            width: 40em;
            margin: 0 0 0 -20em;
        }

        .ani-txt span {
            font: 700 4em/1 "Oswald", sans-serif;
            letter-spacing: 0;
            padding: 0.25em 0 0.325em;
            display: block;
            margin: 0 auto;
            text-shadow: 0 0 80px rgba(255, 255, 255, 0.5);
            /* Clip Background Image */
            background: url(https://vintanainvestments.com/img/vintanalogo.png?v=1) repeat-y;
            -webkit-background-clip: text;
            background-clip: text;
            /* Animate Background Image */
            -webkit-text-fill-color: transparent;
            -webkit-animation: aitf 80s linear infinite;
            /* Activate hardware acceleration for smoother animations */
            -webkit-transform: translate3d(0, 0, 0);
            -webkit-backface-visibility: hidden;
        }

        /* Animate Background Image */
        @-webkit-keyframes aitf {
            0% {
                background-position: 0% 50%;
            }

            100% {
                background-position: 100% 50%;
            }
        }

        .link-boxes {
            z-index: 99;
            cursor: pointer;
            transition: all ease 0.2s;
        }

        .link-boxes:hover {
            color: #0a803a !important;
            transform: scale(1.1);
        }

        .link-boxes.disabled {
            pointer-events: none;
            color: #0a803a !important;
            transform: scale(1);
            filter: grayscale(100%);
        }

        .promotions-btn {
            box-shadow: 8px 8px #bfbfbf;
            font-family: 'Roboto Condensed', sans-serif;
            text-transform: uppercase;
            /*background-color: transparent;*/
            /*border: 3px solid #ff0251;*/
            /*color: #ff0251;*/
            transition: .3s;
        }

        .promotions-btn:hover {
            box-shadow: 8px 8px #ffffff;
            animation: pulse 1s infinite;
            transition: .3s;
        }

        @keyframes pulse {
            0% {
                transform: scale(1);
            }

            70% {
                transform: scale(.9);
            }

            100% {
                transform: scale(1);
            }
        }

        /*html,*/
        /*body {*/
        /*    align-items: center;*/
        /*    display: flex;*/
        /*    flex-direction: column;*/
        /*    height: 100%;*/
        /*    justify-content: center;*/
        /*}*/
        /*body {*/
        /*    box-sizing: border-box;*/
        /*}*/
        /*body *,*/
        /*body *:before,*/
        /*body *:after {*/
        /*    box-sizing: inherit;*/
        /*}*/
        @-webkit-keyframes introducenewbadge {
            0% {
                opacity: 0;
            }

            100% {
                opacity: 1;
            }
        }

        @keyframes introducenewbadge {
            0% {
                opacity: 0;
            }

            100% {
                opacity: 1;
            }
        }

        @-webkit-keyframes pulsenewbadge {
            0% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.05);
            }

            100% {
                transform: scale(1);
            }
        }

        @keyframes pulsenewbadge {
            0% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.05);
            }

            100% {
                transform: scale(1);
            }
        }

        @-webkit-keyframes pulsenewbadge2 {
            0% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.1);
            }

            100% {
                transform: scale(1);
            }
        }

        @keyframes pulsenewbadge2 {
            0% {
                transform: scale(1);
            }

            50% {
                transform: scale(1.1);
            }

            100% {
                transform: scale(1);
            }
        }

        .newbadge {
            -webkit-animation: introducenewbadge 1s linear 0s 1 both;
            animation: introducenewbadge 1s linear 0s 1 both;
            background: rgba(10, 128, 58, 0.44);
            border-radius: 50%;
            height: 136px;
            perspective: 600px;
            position: relative;
            width: 136px;
            margin: auto;
        }

        .newbadge:before,
        .newbadge:after {
            -webkit-animation: pulsenewbadge 3s cubic-bezier(0.86, 0, 0.07, 1) 0s infinite both;
            animation: pulsenewbadge 3s cubic-bezier(0.86, 0, 0.07, 1) 0s infinite both;
            border: 2px dashed #0a803a;
            border-radius: inherit;
            bottom: -16px;
            content: "";
            left: -16px;
            opacity: 0.2;
            position: absolute;
            right: -16px;
            top: -16px;
        }

        .newbadge:after {
            -webkit-animation-name: pulsenewbadge2;
            animation-name: pulsenewbadge2;
            bottom: -32px;
            left: -32px;
            opacity: 0.1;
            right: -32px;
            top: -32px;
        }

        @-webkit-keyframes introduceLabel {
            0% {
                opacity: 0;
                transform: translate(-50%, -50%) scale(0.4) rotateY(-1800deg);
            }

            100% {
                opacity: 1;
                transform: translate(-50%, -50%) scale(1) rotateY(20deg);
            }
        }

        @keyframes introduceLabel {
            0% {
                opacity: 0;
                transform: translate(-50%, -50%) scale(0.4) rotateY(-1800deg);
            }

            100% {
                opacity: 1;
                transform: translate(-50%, -50%) scale(1) rotateY(20deg);
            }
        }

        @-webkit-keyframes rotateLabel {
            0% {
                transform: translate(-50%, -50%) rotateY(20deg);
            }

            50% {
                transform: translate(-50%, -50%) rotateY(-20deg);
            }

            100% {
                transform: translate(-50%, -50%) rotateY(20deg);
            }
        }

        @keyframes rotateLabel {
            0% {
                transform: translate(-50%, -50%) rotateY(20deg);
            }

            50% {
                transform: translate(-50%, -50%) rotateY(-20deg);
            }

            100% {
                transform: translate(-50%, -50%) rotateY(20deg);
            }
        }

        .newbadge__label {
            -webkit-animation: introduceLabel 2s cubic-bezier(0.19, 1, 0.22, 1) 1s 1 both, rotateLabel 5s linear 3s infinite;
            animation: introduceLabel 2s cubic-bezier(0.19, 1, 0.22, 1) 1s 1 both, rotateLabel 5s linear 3s infinite;
            color: #0a803a;
            font: 900 88px/1 -apple-system, BlinkMacSystemFont;
            left: 50%;
            position: absolute;
            text-align: center;
            text-shadow: 0px 4px 8px rgb(128, 192, 142);
            top: 50%;
            transform: translate(-50%, -50%);
            opacity: 0.7%;
        }

        /*.newoverlay:before {*/
        /*    content: "";*/
        /*    z-index: -1;*/
        /*    overflow: hidden;*/
        /*    transform: rotate(-135deg);*/
        /*    width: 120px;*/
        /*    display: block;*/
        /*    background: #79A70A;*/
        /*    background: linear-gradient(#9BC90D 0%, #79A70A 100%);*/
        /*    box-shadow: 0 3px 10px -5px rgba(0, 0, 0, 1);*/
        /*    position: absolute;*/
        /*    top: 34px;*/
        /*    right: -16px;*/
        /*    clip-path: polygon(120px 20px, 90px -10px, 30px -10px, 0px 20px, 10px 30px, 110px 30px);*/
        /*    height: 20px;*/
        /*}*/
        .newoverlay:after {
            content: "NEW";
            z-index: 1;
            overflow: hidden;
            font-size: 10px;
            font-weight: bold;
            color: #FFF;
            text-transform: uppercase;
            text-align: center;
            line-height: 20px;
            transform: rotate(45deg);
            width: 120px;
            display: block;
            background: #79A70A;
            background: linear-gradient(#9BC90D 0%, #79A70A 100%);
            box-shadow: 0 3px 10px -5px rgba(0, 0, 0, 1);
            position: absolute;
            top: 20px;
            right: -30px;
            clip-path: polygon(120px 20px, 90px -10px, 30px -10px, 0px 20px, 10px 30px, 110px 30px)
        }

        /*.comingoverlay:before {*/
        /*    content: "";*/
        /*    z-index: -1;*/
        /*    overflow: hidden;*/
        /*    transform: rotate(-135deg);*/
        /*    width: 120px;*/
        /*    display: block;*/
        /*    background: #f40404;*/
        /*    background: linear-gradient(#b80a0a 0%, #e50830 100%);*/
        /*    box-shadow: 0 3px 10px -5px rgba(0, 0, 0, 1);*/
        /*    position: absolute;*/
        /*    top: 34px;*/
        /*    right: -16px;*/
        /*    clip-path: polygon(120px 20px, 90px -10px, 30px -10px, 0px 20px, 10px 30px, 110px 30px);*/
        /*    height: 20px;*/
        /*}*/
        .comingoverlay:after {
            content: "COMING SOON";
            z-index: 1;
            overflow: hidden;
            font-size: 10px;
            font-weight: bold;
            color: #FFF;
            text-transform: uppercase;
            text-align: center;
            line-height: 20px;
            transform: rotate(45deg);
            width: 120px;
            display: block;
            background: #f40404;
            background: linear-gradient(#b80a0a 0%, #e50830 100%);
            box-shadow: 0 3px 10px -5px rgba(0, 0, 0, 1);
            position: absolute;
            top: 20px;
            right: -30px;
            clip-path: polygon(120px 20px, 90px -10px, 30px -10px, 0px 20px, 10px 30px, 110px 30px)
        }

        .loaded-html * {
            /*padding: 0 5px;*/
            line-height: 25px;
        }

        .sd-container {
            transition: all ease 0.2s;
            box-shadow: 8px 8px #bfbfbf;
            z-index: 1000;
            position: fixed;
            bottom: 10px;
            right: 5%;
            transform: translateY(-50%);
            border-radius: 50%;
            /*border: 2px solid #fff;*/
            padding: 20px;
            background: #000;
            cursor: pointer;
        }

        .sd-container:hover {
            box-shadow: none;
        }

        .arrow {
            position: relative;
            width: 42px;
            height: 16px;
            opacity: 0;
        }

        .arrow::before,
        .arrow::after {
            content: "";
            width: 21px;
            height: 2px;
            background-color: #fff;
            border-radius: 2px;
            display: inline-block;
        }

        .arrow::before {
            transform: rotate(45deg) translateX(25%);
        }

        .arrow::after {
            transform: rotate(-45deg) translateX(-25%);
        }

        .arrow:nth-child(1) {
            top: -50px;
            opacity: 1;
            -webkit-animation: arrow2 1s ease 0s infinite;
            animation: arrow2 1s ease 0s infinite;
        }

        .arrow:nth-child(2) {
            top: -25px;
            -webkit-animation: arrow1 1s ease 0.25s infinite;
            animation: arrow1 1s ease 0.25s infinite;
        }

        @-webkit-keyframes arrow1 {
            from {
                opacity: 0;
                top: -25px;
            }

            to {
                opacity: 0;
                top: 0px;
            }

            50% {
                opacity: 1;
            }
        }

        @keyframes arrow1 {
            from {
                opacity: 0;
                top: -25px;
            }

            to {
                opacity: 0;
                top: 0px;
            }

            50% {
                opacity: 1;
            }
        }

        @-webkit-keyframes arrow2 {
            from {
                opacity: 0;
                top: -35px;
            }

            to {
                opacity: 0;
                top: -10px;
            }

            50% {
                opacity: 1;
            }
        }

        @keyframes arrow2 {
            from {
                opacity: 0;
                top: -35px;
            }

            to {
                opacity: 0;
                top: -10px;
            }

            50% {
                opacity: 1;
            }
        }

        @media only screen and (max-width: 600px) {
            .sd-container {
                display: none;
            }

            .newbadge__label {
                font: 900 33px/1 -apple-system, BlinkMacSystemFont;
            }

            .link-boxes .card {
                min-height: 180px;
                min-width: 180px;
            }

            .promotions-btn {
                font-size: 11px !important;
            }

            body * {
                /*font-size: 11px !important;*/
                font-size: calc(1% + 1vw + 1vh) !important;
            }
        }

        