/* Header */
.nav-header {
    background: linear-gradient(0deg, rgba(255, 255, 255, 0.3), rgba(255, 255, 255, 0.3)), linear-gradient(180deg, rgba(255, 255, 255, 0.7) 0%, rgba(255, 255, 255, 0) 100%), linear-gradient(180deg, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0) 100%);
}

.navbar .navbar-brand img {
    height: 28px;
}

.navbar-brand .logo-text {
    color: black;
    font-size: 21px;
    font-weight: 600;
}

.navbar-brand .logo-sub-text {
    color: black;
    font-size: 10px;
    letter-spacing: 4px;
    position: absolute;
    bottom: 0;
    left: 34px;
}

.navbar .navbar-nav .nav-item .nav-link {
    color: black;
    font-size: 14px;
    font-weight: 400;
    -webkit-transition: all 1s;
    -moz-transition: all 1s;
    -ms-transition: all 1s;
    -o-transition: all 1s;
    transition: all 1s;
    white-space: nowrap;
}

.navbar .nav .nav-item .nav-link {
    color: black;
    font-size: 16px;
    font-weight: 400;
}

.navbar .navbar-nav .nav-item .nav-link.active {
    font-weight: 700;
    padding-left: 0;
    margin-left: 0.5rem;
    background: url("/frontend/svg/active-bar.svg") bottom left no-repeat;
}

.navbar .nav .nav-item .nav-link.active {
    font-weight: 700;
    color: #03D675;
}

.navbar .navbar-nav .nav-item a.nav-link.active::before {
    border-bottom: 3px solid green;
    width: 30px;
}

.navbar .navbar-nav .nav-item {
    margin-left: 2.25rem;
}


.website-section {
    padding-top: 100px;
    padding-bottom: 20px;
}

/** Footer */
.footer {
    padding: 60px 0 40px;
    font-size: 15px;
}

.footer .navbar-brand img {
    height: 30px;
}

.footer .navbar-brand .logo-text {
    color: black;
    font-size: 20px;
    font-weight: 600;
}

.footer .nav-link {
    color: black;
    padding-left: 0;
    font-size: 15px;
}

.footer .no-link {
    padding-bottom: 1rem;
}

.footer h6 {
    font-size: 17px;
}


/* Site Wide changes */
.btn,
.form-control {
    border-radius: 12px;
}

.form-control {
    background: #E2FFF2;
    border: 0.5px solid #F2F2F2;
}

.nav-pills .nav-link {
    margin-right: 10px;
    font-weight: 700;
    min-width: 60px;
    border-radius: 99px;
    text-align: center;
}

.nav-pills .nav-link:not(.active) {
    border: 1px solid #03D675;
    color: #03D675;
}

.nav-pills .nav-link:hover {
    box-shadow: 0px 9px 16px rgba(95, 94, 98, 0.1);
}

.nav-pills .nav-link.active {
    background: #03D675;
    box-shadow: 0px 9px 16px rgba(95, 94, 98, 0.1);
}

.text-egray {
    color: #E2E2E1;
}

.text-e-primary, .text-e-primary:visited {
    color: #03D675;
}

.bg-e-primary {
    background: #03D675;
}

.bg-e-light-primary {
    background: #DDFFEF;
}

.font-px-19 {
    font-size: 19px
}

.font-px-22 {
    font-size: 18px;
}

.font-px-14 {
    font-size: 14px
}

.rounded-12 {
    border-radius: 12px;
}


/* Banner */
.rect,
.rect-xs {
    position: absolute;
    width: 100%;
    height: 179px;
    bottom: 0;
    background: linear-gradient(180deg, rgba(250, 254, 252, 0) 0%, #FBF9EC 100%);
}

.rect-xs {
    height: 496px;
}

.savings-based-finance ol {
    list-style: none;
}

.savings-based-finance ol li {
    margin-bottom: 20px;
    counter-increment: my-awesome-counter;
}

.savings-based-finance ol li::marker {
    display: none;
}

.savings-based-finance ol li::before {
    background: #03D675;
    border-radius: 22px;
    box-shadow: 0px 9px 16px rgba(95, 94, 98, 0.1);
    color: white;
    width: 2rem;
    height: 3rem;
    content: counter(my-awesome-counter);
    font-weight: bold;
    margin-right: 0.5rem;
    line-height: 1;
    display: block;
    text-align: center;
    line-height: 3rem;
    position: absolute;
    left: 15px;
}

.position-absolute-center {
    position: absolute;
    left: 40%;
    top: 50%;
}

.multi-step-form,
.multi-step-form-2 {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(0, 1fr));
}

.multi-step-form .nav-item,
.multi-step-form-2 .nav-item {
    text-indent: 0;
    transition-property: all;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    transition-delay: 0s;
    position: relative;
    padding-top: 20px;
    color: rgba(108, 117, 125, 0.7);
    border: none;
    background-color: transparent;
    outline: none !important;
    cursor: pointer;
}

.multi-step-form .nav-item::before,
.multi-step-form-2 .nav-item::before {
    position: absolute;
    top: -2px;
    left: 50%;
    display: block;
    width: 18px;
    height: 18px;
    content: '';
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    transition: all 0.15s linear 0s, -webkit-transform 0.15s cubic-bezier(0.05, 1.09, 0.16, 1.4) 0s;
    transition: all 0.15s linear 0s, transform 0.15s cubic-bezier(0.05, 1.09, 0.16, 1.4) 0s;
    transition: all 0.15s linear 0s, transform 0.15s cubic-bezier(0.05, 1.09, 0.16, 1.4) 0s, -webkit-transform 0.15s cubic-bezier(0.05, 1.09, 0.16, 1.4) 0s;
    border: 2px solid #eee;
    border-radius: 50%;
    background-color: #fff;
    box-sizing: border-box;
    z-index: 3;
}

.multi-step-form-2 .filled.nav-item::before,
.multi-step-form .filled.nav-item::before {
    border-color: #03D675;
    color: #03D675;
}

.multi-step-form .filled.nav-item::before {
    background-color: #03D675;
    border-color: #03D675;
    border-width: 3px;
}

.multi-step-form-2 .nav-item::before {
    width: 70px;
    height: 70px;
    top: -30px;
}

.multi-step-form .nav-item:not(:first-child)::after,
.multi-step-form-2 .nav-item:not(:first-child)::after {
    position: absolute;
    top: 5px;
    left: calc(-50% - 13px / 2);
    transition-property: all;
    transition-duration: 0.15s;
    transition-timing-function: linear;
    transition-delay: 0s;
    display: block;
    width: 100%;
    height: 2px;
    content: '';
    background-color: #03D675;
    z-index: 1;
}

.step-icon {
    position: relative;
    z-index: 9;
    top: -40px;
}

.step-icon~p.active {
    font-weight: 700;
    color: #03D675
}

.ratings .ti-star {
    color: #FFCC4D;
}

.faq .card {
    border-color: #DDFFEF;
    border-width: 2px;
}

.faq .card div:first-child {
    cursor: pointer;
}

.faq .card .collapsed .btn:first-child {
    background: #DDFFEF;
    border: 0;
    color: #03D675;
}

.faq .card .collapsed .btn:first-child::before {
    font-family: 'themify';
    content: "\e61a";
}

.faq .card .btn:first-child::before {
    font-family: 'themify';
    content: "\e622";
}

.faq .card .btn:nth-child(2) {
    color: black;
}

.box {
    position: relative;
    padding: 50px 20px;
    background: #E2FFF2;

    /* Etiqa/Primary */
    border: 1px dashed #03D675;
    box-sizing: border-box;
    border-radius: 12px;
}

.box.has-advanced-upload {
    -webkit-transition: outline-offset .15s ease-in-out, background-color .15s linear;
    transition: outline-offset .15s ease-in-out, background-color .15s linear;
}

.box.is-dragover {
    outline-offset: -20px;
    outline-color: #c8dadf;
    background-color: #fff;
}

.box__dragndrop,
.box__icon {
    display: none;
}

.box.has-advanced-upload .box__dragndrop {
    display: inline;
}

.box.has-advanced-upload .box__icon {
    width: 100%;
    height: 80px;
    fill: #92b0b3;
    display: block;
    margin-bottom: 40px;
}

.box.is-uploading .box__input,
.box.is-success .box__input,
.box.is-error .box__input {
    visibility: hidden;
}

.box__uploading,
.box__success,
.box__error {
    display: none;
}

.box.is-uploading .box__uploading,
.box.is-success .box__success,
.box.is-error .box__error {
    display: block;
    position: absolute;
    top: 50%;
    right: 0;
    left: 0;

    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
}

.box__uploading {
    font-style: italic;
}

.box__success {
    -webkit-animation: appear-from-inside .25s ease-in-out;
    animation: appear-from-inside .25s ease-in-out;
}

@-webkit-keyframes appear-from-inside {
    from {
        -webkit-transform: translateY(-50%) scale(0);
    }

    75% {
        -webkit-transform: translateY(-50%) scale(1.1);
    }

    to {
        -webkit-transform: translateY(-50%) scale(1);
    }
}

@keyframes appear-from-inside {
    from {
        transform: translateY(-50%) scale(0);
    }

    75% {
        transform: translateY(-50%) scale(1.1);
    }

    to {
        transform: translateY(-50%) scale(1);
    }
}

.box__restart {
    font-weight: 700;
}

.box__restart:focus,
.box__restart:hover {
    color: #39bfd3;
}

.box__file {
    width: 100%;
    height: 100%;
    opacity: 0;
    overflow: hidden;
    position: absolute;
    top: 0;
    left: 0;
}

.box__button {
    font-weight: 700;
    color: #e5edf1;
    background-color: #39bfd3;
    display: none;
    padding: 8px 16px;
    margin: 40px auto 0;
}

.box__button:hover,
.box__button:focus {
    background-color: #0f3c4b;
}

.product-details {
    border: none;
    background: #DDFFEF;
    border-radius: 24px;
}


.noborder td, .noborder th {
    border: none !important;
}

.social-box {
    display: inline-block;
    border: none;
    width: 70px;
    height: 70px;
    border-radius: 12px;
    text-align: center;
}

.social-box [class^="ti-"],
.social-box svg {
    line-height: 70px;
}

.container {
    padding-right: 23px;
    padding-left: 23px;
}

.section-head h5 {
    font-size: 14px;
}

.section-head h3 {
    font-size: 24px;
    font-weight: 700;
}

.h1 {
    font-size: 46px;
}

.h6 {
    font-size: 18px;
}

.mobile-app {
    position: absolute;
    top: -80px;
}

.mobile-coming-soon .container {
    min-height: 530px;
}

.fire-svg {
    position: absolute;
    top: -6px;
}

@media (min-width: 768px) {
    .website-banner>div {
        padding-top: 60px;
    }

    .h1 {
        font-size: 56px;
    }

    .h6 {
        font-size: 22px;
    }

    .section-head h5 {
        font-size: 22px;
    }

    .section-head h3 {
        font-size: 48px;
        font-weight: 700;
    }

    .container {
        padding-right: 15px;
        padding-left: 15px;
    }

    .mobile-app {
        position: absolute;
        top: -150px;
    }

    .mobile-coming-soon .container {
        min-height: 230px;
    }

    .fire-svg {
        position: absolute;
        top: -2px;
    }

    .font-px-22 {
        font-size: 22px;
    }
}

@media (min-width: 992px) {
    .website-banner>div {
        padding-top: 60px;
    }

    .h1 {
        font-size: 74px;
    }

    .h6 {
        font-size: 22px;
    }
}

.btn-icon {
    line-height: 1.6px;
}

.btn-etiqa-yellow {
    color: white;
    background-color: #FFCC4D;
    border-color: #FFCC4D;
}

.social-circle {
    border-radius: 50%;
    width: 30px;
    height: 30px;
    display: inline-block;
    border: 1px solid #FFCC4D;
    text-align: center;
    padding: 4px;
    color: #FFCC4D;
}

.category-menu .nav .nav-item .nav-link:not(.active) {
    color: #969494;
}

.discount {
    position: absolute;
    top: 10%;
    padding: 10px;
    display: block;
    background: #FFCC4D;
    color: white;
    border-radius: 0px 18px 18px 0px;
}

.popular,
.best-deal {
    padding: 5px 10px;
    border-radius: 10px;
    position: absolute;
    bottom: 5%;
    left: 5%;
}

.popular {
    background: #FEE2E2;
    color: #F7567C;
}

.best-deal {
    background: #D1FAE5;
    color: #436436;
}


.form-group.input-material .form-control, .form-group.input-material .form-select {
    border: none;
    border-bottom: 2px solid #ced4da;
    border-radius: 0px;
    background-color: transparent;
    box-shadow: none;
    /* required fields */
    /* active state */
    /* invalid state */
}

.form-group.input-material .form-control:focus, .form-group.input-material .form-control[value]:not([value=""]), .form-group.input-material .form-select:focus, .form-group.input-material .form-select[value]:not([value=""]) {
    border-bottom-color: rgba(62, 61, 61, 0.04);
    color: #000;
}

.form-group.input-material .form-control:focus.invalid, .form-group.input-material .form-control.invalid, .form-group.input-material .form-control:focus.parsley-error, .form-group.input-material .form-control[value]:not([value=""]).parsley-error, .form-group.input-material .form-select:focus.invalid, .form-group.input-material .form-select.invalid, .form-group.input-material .form-select:focus.parsley-error, .form-group.input-material .form-select[value]:not([value=""]).parsley-error {
    border-bottom-color: #dc3545;
}

.form-group.input-material .form-control:focus.invalid~label, .form-group.input-material .form-control.invalid~label, .form-group.input-material .form-control:focus.parsley-error~label, .form-group.input-material .form-control[value]:not([value=""]).parsley-error~label, .form-group.input-material .form-select:focus.invalid~label, .form-group.input-material .form-select.invalid~label, .form-group.input-material .form-select:focus.parsley-error~label, .form-group.input-material .form-select[value]:not([value=""]).parsley-error~label {
    color: #dc3545;
}

.form-group.input-material .form-select {
    background-position: right 0 center;
    padding-left: 0;
}

.form-group.input-material .parsley-errors-list {
    color: #dc3545;
    list-style: none;
    font-size: 0.7em;
    padding-left: 5px;
    position: absolute;
    top: 107%;
}



/**
* Search box
*/
.search-box {
    position: absolute;
    height: 100%;
    width: 0;
    opacity: 0;
    transition: all 0.3s;
}

.has-search .form-control {
    padding-left: 2.175rem;
    width: 99%;
}

.has-search .form-control-feedback {
    position: absolute;
    z-index: 2;
    display: block;
    width: 2.375rem;
    height: 2.375rem;
    line-height: 2.375rem;
    text-align: center;
    pointer-events: none;
    color: #aaa;
}

.category-menu .nav .nav-item {
    opacity: 1;
    transition: all 0.3s 0.3s;
}

.category-menu .show .nav-item {
    opacity: 0;
    transition: all 0.3s;
}

.category-menu .show .nav-item:nth-child(even) {
    transform: translateY(-100%);
}

.category-menu .show .nav-item:nth-child(odd) {
    transform: translateY(100%);
}

.category-menu .show .search-box {
    width: calc(100% - 5em);
    opacity: 1;
    transition: all 0.3s 0.3s;
}

.item-product {
    position: relative;
    overflow: hidden;
    height: 100%;
}

.item-product a {
    width: 100%;
    display: inline-block;
    text-align: center;
    min-height: 70%;
}

.item-product .button-head {
    background: #fff;
    position: absolute;
    display: block;
    bottom: -50px;
    -webkit-transition: all 0.4s ease;
    -moz-transition: all 0.4s ease;
    transition: all 0.4s ease;
    padding: 5px;
    left: 0;
    right: 0;
}

.item-product:hover .button-head {
    bottom: 0;
}

.item-product .product-action a span,
.item-product .product-action button span {
    visibility: hidden;
    position: absolute;
    background: #3CC78F !important;
    color: #fff !important;
    text-align: center;
    padding: 5px 12px;
    z-index: 3;
    opacity: 0;
    -webkit-transition: opacity .6s, margin .3s;
    -o-transition: opacity .6s, margin .3s;
    transition: opacity .6s, margin .3s;
    font-size: 11px;
    right: 0;
    line-height: 14px;
    top: -12px;
    margin-top: -5px;
    margin-right: 0;
    display: inline-block;
    width: 120px;
    border-radius: 15px 0 0 15px;
}

.item-product .button-head .product-action a span::after,
.item-product .button-head .product-action button span::after {
    position: absolute;
    content: "";
    right: 0;
    bottom: -12px;
    border: 6px solid #3CC78F;
    border-left: 0px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid transparent;
}

.item-product .product-action a:hover span,
.item-product .product-action button:hover span {
    visibility: visible;
    opacity: 1;
    color: #333;
    background: #fff;
    margin-top: -12px;
}

.font-value-serif {
    font-family: "Value Serif Pro Regular";
}

.white-fade {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, #FFFFFF 100%);
}

.nav-nowrap {
    flex-wrap: nowrap;
    white-space: nowrap;
    overflow-x: auto;
}

@media (max-width: 576px) {
    .flex-xs-reverse-column {
        flex-flow: column-reverse;
    }
}

@media (min-width: 768px) {
    .nav-nowrap {
        flex-wrap: nowrap;
        white-space: nowrap;
        overflow-x: initial;
    }
}

.navbar-toggler {
    padding: 0;
    padding-top: 3px;
}

.carousel-control-next, .carousel-control-prev {
    width: initial;
}

.vertical-center {
    display: flex;
    justify-content: center;
    flex-direction: column;
}

.horizontal-center {
    margin: 0 auto;
}

/* Product Card CSS */
.product-card {
    position: relative;
    z-index: 1;
}

.product-card .badge {
    position: absolute;
    top: 1rem;
    left: 1rem;
    z-index: 10;
}

.product-card .wishlist-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    color: #ea4c62;
    font-size: 1.25rem;
    line-height: 1;
}

.product-card .wishlist-btn:hover, .product-card .wishlist-btn:focus {
    -webkit-transform: translateY(-2px);
    transform: translateY(-2px);
}

.product-card .product-thumbnail {
    position: relative;
    z-index: 1;
    text-align: center;
}

.product-card .product-thumbnail img {
    width: 100%;
}

.product-card .product-thumbnail .offer-countdown-timer {
    background-color: #ffaf00;
    position: absolute;
    bottom: .75rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 10;
    border-radius: 5rem;
    padding: 4px 8px 3px !important;
}

.product-card .product-thumbnail .offer-countdown-timer li {
    font-size: 11px;
    line-height: 1;
    margin-right: .25rem;
    color: #020310;
    font-weight: 500;
}

.product-card .product-thumbnail .offer-countdown-timer li:last-child {
    margin-right: 0;
}

.product-card .product-thumbnail .offer-countdown-timer li span {
    font-weight: 700;
}

.product-card .delete-btn {
    position: absolute;
    top: 1rem;
    right: 1rem;
    z-index: 10;
    color: #747794;
    font-size: 1.25rem;
    line-height: 1;
}

.product-card .product-title {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: .25rem;
    color: #03D675;
}

.product-card .sale-price {
    margin-bottom: .375rem;
    font-weight: 500;
    line-height: 1.2;
}

.product-card .sale-price span {
    color: #747794;
    margin-left: 5px;
    text-decoration: line-through;
    font-size: 11px;
    display: block;
}

.product-card .product-rating {
    font-size: 12px;
    color: #ffaf00;
    line-height: 1;
}

.product-card .product-rating i {
    margin-right: 3px;
}

.product-card .btn {
    padding: 0;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    text-align: center;
    position: absolute;
    right: 1rem;
    bottom: 1rem;
    z-index: 9;
}

.product-card .btn i {
    line-height: 28px;
}

.product-card:hover .product-title, .product-card:focus .product-title {
    color: #058449;
}

/* Weekly Product Card CSS */
.horizontal-product-card {
    position: relative;
    z-index: 1;
}

.horizontal-product-card .product-thumbnail-side {
    position: relative;
    z-index: 1;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    width: 50%;
    padding-right: 1rem;
}

.horizontal-product-card .product-thumbnail-side .product-thumbnail {
    position: relative;
    z-index: 1;
}

.horizontal-product-card .product-thumbnail-side .product-thumbnail img {
    max-height: 150px;
}

.horizontal-product-card .product-thumbnail-side .product-thumbnail .offer-countdown-timer {
    background-color: #ffaf00;
    position: absolute;
    bottom: 1.75rem;
    left: 50%;
    -webkit-transform: translateX(-50%);
    transform: translateX(-50%);
    z-index: 10;
    border-radius: 5rem;
    padding: 4px 8px 3px !important;
}

.horizontal-product-card .product-thumbnail-side .product-thumbnail .offer-countdown-timer li {
    font-size: 11px;
    line-height: 1;
    margin-right: .25rem;
    color: #020310;
    font-weight: 500;
}

.horizontal-product-card .product-thumbnail-side .product-thumbnail .offer-countdown-timer li:last-child {
    margin-right: 0;
}

.horizontal-product-card .product-thumbnail-side .product-thumbnail .offer-countdown-timer li span {
    font-weight: 700;
}

.horizontal-product-card .product-thumbnail-side .badge {
    position: absolute;
    z-index: 2;
    top: 0;
    left: 0;
}

.horizontal-product-card .product-thumbnail-side .wishlist-btn {
    position: absolute;
    bottom: 0;
    left: 0;
    color: #ea4c62;
    line-height: 1;
    z-index: 11;
    font-size: 1.25rem;
}

.horizontal-product-card .product-thumbnail-side .delete-btn {
    position: absolute;
    bottom: 0.5rem;
    left: 0.5rem;
    color: #747794;
    line-height: 1;
    z-index: 11;
}

.horizontal-product-card .product-description {
    position: relative;
    z-index: 1;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%;
    width: 50%;
}

.horizontal-product-card .product-description .product-title {
    margin-bottom: 0.5rem;
    font-weight: 500;
    font-size: 1rem;
    color: #020310;
    line-height: 1;
}

.horizontal-product-card .product-description .sale-price {
    margin-bottom: 0.5rem;
    font-size: 14px;
    font-weight: 500;
    color: #020310;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    white-space: nowrap;
}

.horizontal-product-card .product-description .sale-price i {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 22px;
    flex: 0 0 22px;
    max-width: 22px;
    width: 22px;
    height: 22px;
    line-height: 23px;
    border-radius: 50%;
    color: #ffffff;
    background-color: #100DD1;
    font-size: 10px;
    text-align: center;
    margin-right: 0.25rem;
}

.horizontal-product-card .product-description .sale-price span {
    text-decoration: line-through;
    color: #747794;
    margin-left: 0.25rem;
    font-size: 11px;
}

.horizontal-product-card .product-description .product-rating {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 0.5rem;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
}

.horizontal-product-card .product-description .product-rating i {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 22px;
    flex: 0 0 22px;
    max-width: 22px;
    width: 22px;
    height: 22px;
    line-height: 23px;
    border-radius: 50%;
    color: #ffffff;
    background-color: #ffaf00;
    font-size: 10px;
    text-align: center;
    margin-right: 0.25rem;
    padding-left: 1px;
}

.horizontal-product-card .product-description .btn i {
    font-size: 14px;
}

.horizontal-product-card:hover .product-title, .horizontal-product-card:focus .product-title {
    color: #100DD1;
}

.scroll {
  white-space: nowrap; /* [1] */
  overflow-x: auto; /* [2] */
  -webkit-overflow-scrolling: touch; /* [3] */
  -ms-overflow-style: -ms-autohiding-scrollbar; /* [4] */ }

/* [5] */
.scroll::-webkit-scrollbar {
  display: none;
}
