/* ======= menu-mobile ====== */

.menu-mobile {
    top: 0;
    left: -100%;
    height: 100%;
    width: 80%;
    background: #fff;
    z-index: 3;
    transition: all .2s linear;
}

.menu-mobile-main li:not(:last-child) {
    margin-bottom: 14px;
}

.menu-mobile-main a {
    color: var(--text-color);
    font-size: 16px;
}

.menu-mobile .menu-mobile-main li a {
    position: relative;
}

.menu-mobile .menu-mobile-main .parent::before {
    content: '\f078';
    font-family: var(--fontAwesome);
    display: block;
    padding: 10px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
    font-weight: 900;
}

.elementBefore::before {
    content: '\f077' !important;
    font-family: var(--fontAwesome);
    display: block;
    padding: 10px;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 14px;
}

.parent+ul {
    left: -100%;
    position: relative;
    display: none;
}

.menu-mobile .menu-mobile-main .submenu {
    display: block;
    left: 0;
    margin: 20px 0 20px 20px;
    animation: showSubMenuMobile .3s ease-in-out forwards;
}

.menu-mobile .menu-mobile-main .submenu li {
    list-style: disc;
    margin-left: 20px;
}

@keyframes showSubMenuMobile {
    from {
        transform: translateX(-100%);
    }

    to {
        transform: translateX(0);
    }
}

.showMenu {
    left: 0;
    animation: showMenuMain .3s linear forwards;
    transition: all .3s linear;
}

@keyframes showMenuMain {
    from {
        opacity: 0;
        transform: translateX(-100%);
    }

    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.overlay {
    height: 100%;
    width: 100%;
    background: #000000a8;
    top: 0;
    left: -100%;
    opacity: 1;
}

.showOverlay {
    z-index: 2;
    left: 0;
    animation: showOverlay .5s ease-in-out forwards;
}

@keyframes showOverlay {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

/* ======= slide ======== */
.slide-mobile {
    display: none;
}

.slide-pc img {
    width: 100%;
}

.heading-box {
    overflow: hidden;
}

.swiper-button-next,
.swiper-button-prev {
    border-radius: 50%;
    background: var(--bg-color);
    color: var(--red-color);
    width: 40px;
    height: 40px;
    border: 1px solid #ffb800;
}

.swiper-button-next:after,
.swiper-button-prev:after {
    font-size: 20px;
}



/* ===== HEADE-MENU ======*/
.header-left {
    text-align: center;
}

.logo img {
    width: 100px;
    max-width: 100%;
}

.form-search input {
    border-radius: 30px;
}

.icon-search {
    height: 100%;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
    background: var(--main-color);
    display: flex;
    align-items: center;
    width: 60px;
    justify-content: center;
}

.hotline-item img {
    height: 40px;
}

.hotline-item .contain {
    width: auto;
}

/* ====== MENU PC===== */
/* .menu {
    background-color: var(--main-color);
} */

.menu ul {
    display: flex;
}

.menu ul li a {
    font-size: 16px;
    /* text-transform: uppercase; */
    padding: 14px 22px;
    /* color: #313131; */
    display: block;
}

.menu ul li a:hover {
    background-color: #038598;
    transition: background-color .2s linear;
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
    color: var(--white-color);
}

/* .menu ul li a.active {
    background-color: #2c8397;
} */

.menu li {
    position: relative;
}

.menu li:hover .submenu {
    display: block;
}

.menu .submenu {
    position: absolute;
    display: block;
    content: '';
    top: 100%;
    min-width: 250px;
    z-index: 3;
    background-color: var(--white-color);
    border-radius: 0px 0 8px 8px;
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    overflow: hidden;
    display: none;
}

.menu .submenu a {
    color: #000;
    font-size: 15px;
}

.menu .submenu a:hover {
    color: var(--white-color);
    transition: background-color .15s linear;
}

nav ul.submenu {
    position: absolute;
    min-width: 220px;
    background-color: #f9f9f9;
    border-bottom-right-radius: 10px;
    border-bottom-left-radius: 10px;
    top: 100%;
    z-index: 2;
    display: none;
    opacity: 0;
    flex-direction: column;
}

nav ul li:hover .submenu {
    display: flex;
    opacity: 1;
    transition: all .5s linear;
}


.form-search,
.head-text {
    max-width: 600px;
    margin: 0 auto;
    position: relative;
}

.box-search {
    top: -250%;
    bottom: 0;
    width: 100%;
    z-index: -1;
}

.box-search.showBoxSearch {
    top: 0;
    z-index: 1;
    background: #fff;
    animation: showBoxSearch linear .3s;
}

@keyframes showBoxSearch {
    0% {
        top: -180%;
    }

    50% {

        top: -100%;
    }

    100% {
        top: 0;
    }
}

.box-search.hiddenBoxSearch {
    animation: hiddenBoxSearch ease-out .2s;
}

@keyframes hiddenBoxSearch {
    0% {
        top: 0;
    }

    100% {
        top: -180%;
    }
}

.close-box.absolute {
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    font-size: 30px;
}

.footer-main {
    background-image: url('../../img/ft-bg.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    position: relative;
    z-index: 1;
    color: white;
    padding-top: 100px;
    overflow: hidden;
}

.footer-line {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
}

.footer-line img {
    width: 100%;
}

.footer-title {
    font-size: 24px;
    z-index: 2;
}

.footer-main li {
    font-size: 16px;
    margin-bottom: 20px;
}

.footer-main li a {
    color: #fff;
}

.icon-ft {
    color: var(--theme-color);
}

.icon-footer {
    color: var(--white-color);
    font-size: 18px;
    margin-right: 10px;
    margin: 0;
}

.footer-social a {
    display: flex;
    height: 50px;
    width: 50px;
    border-radius: 50%;
    /* background: #0f2a46; */
    align-items: center;
    justify-content: center;
}

.footer-social li {
    margin-bottom: 0;
    border: 1px solid #828282;
    padding: 14px;
    border-radius: 50%;
    height: 50px;
    width: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all .2s ease-in-out;
}

.footer-social li:hover {
    background: var(--theme-color);
}

.coppy-right {
    font-size: 18px;
    padding: 30px 0;
    background: var(--theme-color);
    color: var(--white-color);
    position: relative;
}

.coppy-right::before {
    position: absolute;
    left: 100%;
    top: 0;
    border-right: 40px solid transparent;
    border-bottom: 87px solid var(--theme-color);
    content: "";
}

.footer-bottom>.col-xl-6.relative::before {
    content: '';
    position: absolute;
    display: block;
    background: var(--theme-color);
    width: 100%;
    height: 100%;
    left: -50%;
}

.nav-footer li:not(:last-child) {
    margin-right: 20px;
}

.map iframe {
    width: 100%;
    height: 200px;
}

.footer-title.line::before {
    position: absolute;
    left: 0;
    top: 50%;
    font-size: 16px;
    line-height: 30px;
    color: var(--theme-color);
    font-weight: 900;
    content: "\f142";
    font-family: var(--fontAwesome);
    transform: translateY(-50%);
}

.ft-bottom {
    background: #063A41;
}

/* ====== POPUP ====== */
#popup {
    position: fixed;
    top: 50%;
    left: 50%;
    z-index: 5;
    display: none;
    transform: translate(-50%, -50%);
    width: 800px;
    max-width: 90%;
}

.overlay-main {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #00000087;
    z-index: 1;
    display: none;
}

.popup-main {
    width: 800px;
    max-width: 90%;
    margin: 200px auto;
    background: var(--main-color);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.popup-main::before {
    content: '';
    position: absolute;
    display: block;
    padding: 100px;
    background: #29b1c4;
    border-radius: 50%;
    left: -50px;
    bottom: -50px;
}

.popup-main::after {
    content: '';
    position: absolute;
    display: block;
    padding: 100px;
    background: #3db7c8;
    border-radius: 50%;
    left: -30px;
    bottom: -30px;
    opacity: 0.5;
}

.popup-overlay {
    position: absolute;
    content: '';
    display: block;
    background-image: url(../img/bg12.jpg);
    background-position: top;
    background-repeat: no-repeat;
    background-size: cover;
    opacity: 0.2;
    top: -260%;
    bottom: 50px;
    left: -78px;
    width: 50%;
    rotate: 323deg;
}

.popup-title {
    text-align: center;
    width: 50%;
}

.popup-title img {
    width: 143px;
}

.popup-content {
    background-color: #fff;
    width: 50%;
    z-index: 1;
}

.popup-close {
    top: 10px;
    right: 10px;
    border: 1px solid #ccc;
    border-radius: 50%;
    height: 45px;
    width: 45px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 20px;
    cursor: pointer;
}

.zalo-btn {
    position: fixed;
    margin: 0;
    padding: 0;
    left: 0;
    bottom: 180px;
    background: #fff;
    background-color: transparent;
    cursor: pointer;
    font-size: 0;
    width: 110px;
    height: 110px;
    z-index: 1000;
}

.call-btn {
    position: fixed;
    margin: 0;
    padding: 0;
    left: 0;
    bottom: 0;
    background: #fff;
    background-color: transparent;
    cursor: pointer;
    font-size: 0;
    width: 110px;
    height: 110px;
    z-index: 1000;
}

.zalo-btn .zoomIn {
    width: 80px;
    height: 80px;
    border: 2px solid var(--zalo-color);
    border-radius: 100px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -40px;
    margin-left: -40px;
    animation-name: zoomIn;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-out;
}

.call-btn .zoomIn {
    width: 80px;
    height: 80px;
    border: 2px solid #db0005;
    border-radius: 100px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -40px;
    margin-left: -40px;
    animation-name: zoomIn;
    animation-duration: 1s;
    animation-iteration-count: infinite;
    animation-timing-function: ease-out;
}

.zalo-btn .pulse {
    width: 60px;
    height: 60px;
    background: var(--zalo-color);
    opacity: .75;
    border-radius: 100px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -30px;
    margin-left: -30px;
    animation-name: pulse;
    animation-duration: .5s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: ease-in-out;
}

.call-btn .pulse {
    width: 60px;
    height: 60px;
    background: rgba(219, 0, 5, 0.6);
    border-radius: 100px;
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -30px;
    margin-left: -30px;
    animation-name: pulse;
    animation-duration: .5s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
    animation-timing-function: ease-in-out;
}

.zalo-btn .tada {
    overflow: hidden;
    background: var(--zalo-color);
    border-radius: 100px;
    width: 40px;
    height: 40px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -20px;
    margin-left: -20px;
    animation-name: tadaa;
    animation-duration: .5s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

.call-btn .tada {
    background: #db0005;
    border-radius: 100px;
    width: 40px;
    height: 40px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-top: -20px;
    margin-left: -20px;
    animation-name: tadaa;
    animation-duration: .5s;
    animation-iteration-count: infinite;
    animation-direction: alternate;
}

.call-btn .tada a:before {
    content: "\f095";
    font-size: 20px;
    font-family: var(--fontAwesome);
    text-decoration: none;
    color: #fff;
    margin-left: 10px;
    position: absolute;
    top: 50%;
    font-weight: 900;
    transform: translateY(-50%);
}

.zalo-btn a {
    display: block;
    width: 40px;
}

.zalo-btn img {
    width: 100%;
}

.call-btn .tel {
    position: absolute;
    top: 50%;
    left: 45px;
    color: #fff;
    font-size: 17px;
    width: 180px;
    text-align: center;
    padding-left: 50px;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    -o-transform: translate(0, -50%);
    transform: translate(0, -50%);
    line-height: 36px;
    border: 1px solid #fb0309;
    border-radius: 20px;
    background: #fb0309;
    z-index: -1;
    font-weight: 700;
    font-family: Arial;
    text-shadow: 1px 1px 2px #5f5f5f;
}

.call-btn.call-tow .pulse {
    background: rgba(1, 131, 70, 0.6);
}

.call-btn.call-tow .tel {
    background: rgba(1, 131, 70, 0.8);
    border-color: rgba(1, 131, 70, 0.6);
}

.call-btn.call-tow .tada {
    background: rgba(1, 131, 70, 1);
}

.call-btn.call-tow .zoomIn {
    border: 2px solid #02a546;
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }

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

    100% {
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }

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

    100% {
        -webkit-transform: scale(1);
        -ms-transform: scale(1);
        transform: scale(1);
    }
}

.pulse {
    -webkit-animation-name: pulse;
    animation-name: pulse;
}

.call-action button {
    font-size: 16px;
    padding: 8px 14px;
}

.zalo-btn.messenger {
    bottom: 270px;
}

.call-btn.call-tow {
    bottom: 90px;
}

.heading {
    text-align: center;
    position: relative;
    display: inline-block;
    line-height: 1;
    margin-bottom: 40px !important;
    font-weight: 500;
    text-transform: uppercase;
    padding-top: 12px;
}

.heading::before,
.heading::after {
    content: '';
    display: block;
    position: absolute;
    height: 10px;
    width: 220px;
}

.heading::before {
    background: url('../../img//line_titl2.png');
    background-repeat: no-repeat;
    background-position: center;
    left: 100%;
    top: 50%;
    transform: translateY(-50%);
}


.heading::after {
    background: url('../../img/line_title.png');
    background-repeat: no-repeat;
    background-position: center;
    right: 100%;
    top: 50%;
    transform: translateY(-50%);
}

.search-mobile .close-box {
    font-size: 30px;
}

.popup-search {
    position: fixed;
    top: 0;
    left: -150%;
    right: 0;
    bottom: 0;
    height: 100%;
    width: 0;
    background: #0e0e0ec7;
    z-index: 3;
    transition: all .3s ease-in-out;
}

.search-mobile {
    max-width: 90%;
    width: 600px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: #fff;
    padding: 100px 50px;
    border-radius: 20px;
}

.action-search--mobile {
    position: absolute;
    right: 0;
    top: 0;
}

.action-search--mobile input {
    padding: 8px 14px;
    background-color: var(--main-color);
    color: var(--white-color);
}

.form-search>.form-group:not(:last-child)>input {
    padding: 14px 110px 14px 14px;
    font-size: 13px;

}

.close-mobile {
    font-size: 30px;
    position: absolute;
    top: 10px;
    right: 10px;
    text-align: right;
    width: 55px;
    padding: 10px;
    cursor: pointer;
}

.popup-search.open {
    animation: searchMobile .3s ease-in-out forwards;
}

@keyframes searchMobile {
    to {
        width: 100%;
        left: 0;
    }
}

.head-middle .form-search {
    position: relative;
}

.form-button button {
    border: none;
    background-color: var(--theme-color);
    color: #fff;
    border-radius: 30px;
    padding: 4px 28px;
    font-size: 15px;
    position: absolute;
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.head-text,
.head-text ul {
    display: flex;
    font-size: 13px;
}

.head-text ul li {
    padding: 0 10px;
    position: relative;
}

.head-text ul li::after {
    content: '';
    height: 8px;
    width: 1px;
    background-color: #706d6d;
    position: absolute;
    display: block;
    top: 50%;
    transform: translateY(-50%);
    right: 0;
}

.head-text span {
    margin-left: 30px;
}

.head-text ul li:last-child {
    padding-right: 0;
}

.head-text ul li:last-child::after {
    content: '';
    display: none;
}

.head-item-action span {
    right: -14px;
    background-color: red;
    border-radius: 50%;
    padding: 7px;
    height: 20px;
    width: 20px;
    text-align: center;
    display: flex;
    align-items: center;
    top: -4px;
    font-size: 12px;
    justify-content: center;
    color: #fff;
}

.action-icon {
    font-size: 25px;
}

/* SEARCH  TOP */

/* HEADER BOTTOM */

.header-bottom {
    background-color: #f9f9f9;
}

.header-bottom .catagory {
    background-color: var(--theme-color);
    color: var(--white-color);
    cursor: pointer;
    position: relative;
}

.catagory span:not(:first-child) {
    position: relative;
}

.catagory span:not(:first-child)::after {
    content: '\f078';
    display: block;
    position: absolute;
    right: 0;
    font-weight: 900;
    font-family: var(--fontAwesome);
    top: 50%;
    transform: translateY(-50%);
    font-size: 10px;

}

nav ul {
    display: flex;
}

nav ul li {
    position: relative;
}

nav ul li a {
    font-size: 16px;
    padding: 14px 20px;
    display: block;
    position: relative;
    transition: all .2s linear;
    text-transform: capitalize;
}

nav .submenu {
    position: absolute;
    top: 0;
    min-width: 15px;
    background-color: #ccc;
}

a.active {
    background-color: var(--theme-color);
    color: #fff;
}

a.active:hover {
    color: #fff;
}

nav ul li a.active::after {
    content: '';
    position: absolute;
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--theme-color);
    bottom: 0;
    left: 0;
}

nav ul li a:hover,
.sub-catagory ul li a:hover,
.heading-box.sub-heading ul li a:hover {
    color: var(--theme-color);
}

.sub-catagory {
    position: absolute;
    top: 100%;
    z-index: 2;
    width: 100%;
    background: #fff;
    left: 0;
    border-bottom-right-radius: 20px;
    border-bottom-left-radius: 20px;
}

.sub-catagory ul {
    padding: 0 20px;
}

.sub-catagory a {
    padding: 10px 0px;
    display: block;
}


.sub-catagory ul li:not(:last-child) a {
    border-bottom: 1px dashed #ccc;
}

/* HEADER MOBILE */
.header-mobile {
    display: none;
}

.search-mobile .close-box {
    font-size: 30px;
}

.action-search--mobile input {
    padding: 14px 18px;
}

.search {
    cursor: pointer;
}

/* BREAKCRUMD */
.breadcrumb {
    background-color: #fff;
    margin-bottom: 0;
    padding: 20px 0;

}

.breadcrumb ul {
    display: flex;
}

.breadcrumb ul li:not(:last-child) {
    border-right: 1px dashed #ccc;
    padding-right: 20px;
}

.breadcrumb ul li:not(:first-child) {
    padding-left: 20px;
}


.breadcrumb a {
    font-size: 14px;
    color: #a4a3a3eb;
}

.breadcrumb a.active {
    background-color: unset;
    color: var(--theme-color);
    cursor: unset;
}

section.content-main,
.relaytion {
    background-color: #f5f6f7;
}

.box-content {
    border: 2px dashed #f1efef;
    padding: 40px;
    background-color: var(--white-color);
    border-radius: 10px;
}

.content-wrapper,
.relaytion-list {
    overflow: hidden;
    width: 1000px;
    max-width: 100%;
    margin: 0 auto;
    text-align: center;

}

.content-wrapper h1 {
    font-size: 28px;
    line-height: 1.6;
    text-transform: uppercase;
}

.content-wrapper h2,
.content-wrapper h3,
.content-wrapper h4 {
    margin: 10px 0;
    text-align: left;
}


.content-wrapper p,
.content-wrapper a,
.content-wrapper span,
.content-wrapper ul li {
    font-size: 16px;
    text-align: justify;
}



.content-wrapper a {
    color: #0d6efd;
}

.content-wrapper img,
.content-wrapper iframe,
.content-wrapper figure {
    width: 600px;
    max-width: 100%;
    margin: 10px auto;
}

.content-wrapper figure img {
    margin-bottom: 0;
}

.content-wrapper figure figcaption {
    background: #ededed;
    font-size: 16px;
    padding: 10px;
}

.content-wrapper ul li,
.content-wrapper ol li {
    margin-left: 50px;
    list-style: disc;
}

.content-wrapper ol li {
    list-style: auto;
    font-size: 18px;
    text-align: left;
}

.content-wrapper table td {
    font-size: 16px;
    text-align: initial;
}


.social-share {
    display: flex;
    justify-items: center;
    justify-content: center;
    flex-wrap: wrap;
}

.social-share a {
    margin: 0 10px 10px;
    color: var(--white-color);
    width: calc(25% - 20px);
}

.social-share a:hover {
    border-top-right-radius: 20px;
    border-bottom-left-radius: 20px;
}

.relaytion-list {
    text-align: left;
}

.relaytion-list p {
    text-transform: uppercase;
    font-size: 20px;
    font-weight: bold;
}

.relaytion-list a {
    font-size: 18px;
    padding: 8px 0;
    display: block;
    border-bottom: 1px dashed #ccc;
    font-weight: 300;
}

.menu-vegetarian {
    padding: 160px 0;
    position: relative;
}

.menu-vegetarian::before {
    content: '';
    display: block;
    background-image: url('../../img/hoa-sen-2.png');
    background-position: center top;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    right: 0;
    bottom: 0;
    width: 50%;
    height: 50%;
    z-index: -1;
}

.menu-vegetarian::after {
    content: '';
    display: block;
    background-image: url('../../img/hoa-sen-1.png');
    background-position: left top;
    background-repeat: no-repeat;
    background-size: cover;
    position: absolute;
    left: -200px;
    top: 0;
    width: 50%;
    height: 50%;
    z-index: -1;
    transform: rotateY(170deg);
}

.menu-vegetarian>.container>.row .col-xl-12:nth-child(even)>.vegetarian-item {
    flex-direction: row-reverse;
}

.menu-vegetarian>.container>.row .col-xl-12:nth-child(even)>.vegetarian-item .vegetarian-content {
    border-radius: 0 200px 0 200px;
}

.menu-vegetarian>.container>.row .col-xl-12:nth-child(even)>.vegetarian-item .vegetarian-image {
    border-radius: 200px 0 200px 0;
}

.contact-info .icon-footer {
    color: var(--theme-color);
}

/* POST */

.post-item,
.product-item {
    box-shadow: 0px 0px 30px 0px rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    overflow: hidden;
}

.post-info,
.product-info {
    padding: 30px;
}

.post-info .desc {
    font-size: 16px;
    margin-bottom: 20px;
}

.post-info a {
    cursor: pointer;
}

.post-info a:hover {
    color: var(--theme-color);
    transition: all .3s ease-out;
}

.product-icon {
    display: block;
    padding: 10px;
    background: var(--theme-color);
    color: #fff;
    border-radius: 5px;
}

li.action-icon {
    top: 50%;
    transform: translateY(-50%);
    right: 0;
}

li.action-icon a {
    padding: 0;
    display: block;
}

li.action-icon span {
    position: absolute;
    top: -15px;
    display: flex;
    border-radius: 50%;
    background-color: #ff8f15;
    color: var(--white-color);
    font-size: 16px;
    height: 25px;
    width: 25px;
    left: -16px;
    justify-content: center;
    align-items: center;
}

.product-icon--mobile {
    padding: 10px;
    color: #333;
}

.menu-mobile .call-action {
    background-color: unset;
    width: 100%;
}

.backtop {
    position: fixed;
    right: 0;
    bottom: 90px;
    z-index: 5;
    right: 30px;
    display: none;
}

.form-main small,
.form-main .success {
    color: #ffd200;
}