/* Main */
:root {
   --color-red: #ec2d3f;
   --color-medium-red: #cc2c32;
   --color-dark-red: #c31829;
   --color-green: #28a745;
   --color-dark-green: #207d36;
   --color-black: #212529;
   --color-gray: #6c757d;
   --background-static: #3fa07e;
   --background-hover: #eceb1b;
   --color-static: #000;
   --color-hover: #ec2d3f;
}

@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap");
/* @font-face {
   font-family: "UTM-AvoBold";
   src: url("../fonts/UTM-AvoBold.woff");
   font-display: block;
} */

@font-face {
   font-family: 'UTM Beautiful Caps';
   src: url('../fonts/UTMBeautifulCaps.eot');
   src: url('../fonts/UTMBeautifulCaps.eot?#iefix') format('embedded-opentype'),
      url('../fonts/UTMBeautifulCaps.woff2') format('woff2'),
      url('../fonts/UTMBeautifulCaps.woff') format('woff'),
      url('../fonts/UTMBeautifulCaps.ttf') format('truetype');
   font-weight: normal;
   font-style: normal;
   font-display: swap;
}

@font-face {
   font-family: 'SVN-Century Gothic';
   src: url('../fonts/SVN-CenturyGothic/SVN-CenturyGothic-BoldItalic.woff2') format('woff2'),
      url('../fonts/SVN-CenturyGothic/SVN-CenturyGothic-BoldItalic.woff') format('woff');
   font-weight: bold;
   font-style: italic;
   font-display: swap;
}

@font-face {
   font-family: 'SVN-Century Gothic';
   src: url('../fonts/SVN-CenturyGothic/SVN-CenturyGothic-Bold.woff2') format('woff2'),
      url('../fonts/SVN-CenturyGothic/SVN-CenturyGothic-Bold.woff') format('woff');
   font-weight: bold;
   font-style: normal;
   font-display: swap;
}

@font-face {
   font-family: 'SVN-Century Gothic';
   src: url('../fonts/SVN-CenturyGothic/SVN-CenturyGothic-Black.woff2') format('woff2'),
      url('../fonts/SVN-CenturyGothic/SVN-CenturyGothic-Black.woff') format('woff');
   font-weight: 900;
   font-style: normal;
   font-display: swap;
}

@font-face {
   font-family: 'SVN-Century Gothic';
   src: url('../fonts/SVN-CenturyGothic/SVN-CenturyGothic-SemBdIta.woff2') format('woff2'),
      url('../fonts/SVN-CenturyGothic/SVN-CenturyGothic-SemBdIta.woff') format('woff');
   font-weight: 600;
   font-style: italic;
   font-display: swap;
}

@font-face {
   font-family: 'SVN-Century Gothic';
   src: url('../fonts/SVN-CenturyGothic/SVN-CenturyGothic-Light.woff2') format('woff2'),
      url('../fonts/SVN-CenturyGothic/SVN-CenturyGothic-Light.woff') format('woff');
   font-weight: 300;
   font-style: normal;
   font-display: swap;
}

@font-face {
   font-family: 'SVN-Century Gothic';
   src: url('../fonts/SVN-CenturyGothic/SVN-CenturyGothic-ExtraBd.woff2') format('woff2'),
      url('../fonts/SVN-CenturyGothic/SVN-CenturyGothic-ExtraBd.woff') format('woff');
   font-weight: bold;
   font-style: normal;
   font-display: swap;
}

@font-face {
   font-family: 'SVN-Century Gothic';
   src: url('../fonts/SVN-CenturyGothic/SVN-CenturyGothic-Regular.woff2') format('woff2'),
      url('../fonts/SVN-CenturyGothic/SVN-CenturyGothic-Regular.woff') format('woff');
   font-weight: normal;
   font-style: normal;
   font-display: swap;
}

@font-face {
   font-family: 'SVN-Century Gothic';
   src: url('../fonts/SVN-CenturyGothic/SVN-CenturyGothic-Italic.woff2') format('woff2'),
      url('../fonts/SVN-CenturyGothic/SVN-CenturyGothic-Italic.woff') format('woff');
   font-weight: normal;
   font-style: italic;
   font-display: swap;
}

@font-face {
   font-family: 'SVN-Century Gothic';
   src: url('../fonts/SVN-CenturyGothic/SVN-CenturyGothic-SemiBd.woff2') format('woff2'),
      url('../fonts/SVN-CenturyGothic/SVN-CenturyGothic-SemiBd.woff') format('woff');
   font-weight: 600;
   font-style: normal;
   font-display: swap;
}

@font-face {
   font-family: 'SVN-Century Gothic';
   src: url('../fonts/SVN-CenturyGothic/SVN-CenturyGothic-Thin.woff2') format('woff2'),
      url('../fonts/SVN-CenturyGothic/SVN-CenturyGothic-Thin.woff') format('woff');
   font-weight: 100;
   font-style: normal;
   font-display: swap;
}

@keyframes spin {
   to {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg);
   }
}

@-webkit-keyframes spin {
   to {
      -webkit-transform: rotate(360deg);
      transform: rotate(360deg);
   }
}

@keyframes blink {
   0% {
      opacity: 1;
   }

   50% {
      opacity: 0;
   }

   100% {
      opacity: 1;
   }
}

@-webkit-keyframes blink {
   0% {
      opacity: 1;
   }

   50% {
      opacity: 0;
   }

   100% {
      opacity: 1;
   }
}

@keyframes shake-anim {
   0% {
      -webkit-transform: rotate(0) scale(1) skew(1deg);
      transform: rotate(0) scale(1) skew(1deg);
   }

   10%,
   30% {
      -moz-transform: rotate(-25deg) scale(1) skew(1deg);
   }

   20%,
   40% {
      -moz-transform: rotate(25deg) scale(1) skew(1deg);
   }

   100%,
   50% {
      -moz-transform: rotate(0) scale(1) skew(1deg);
   }
}

@-webkit-keyframes shake-anim {

   0%,
   100%,
   50% {
      -webkit-transform: rotate(0) scale(1) skew(1deg);
   }

   10%,
   30% {
      -webkit-transform: rotate(-25deg) scale(1) skew(1deg);
   }

   20%,
   40% {
      -webkit-transform: rotate(25deg) scale(1) skew(1deg);
   }
}

.popup-custom .modal-content {
   border-radius: 0px;
   border: 0px;
}

.popup-custom .modal-content .modal-body {
   padding: 10px;
}

.popup-custom .close {
   position: absolute;
   top: 10px;
   right: 10px;
   width: 40px;
   height: 40px;
   z-index: 2;
   color: #888888;
   cursor: pointer;
   border: 1px solid #eeeeee;
   background-color: #ffffff;
   opacity: 1 !important;
}

#popup-quickview .modal-dialog {
   max-width: 1140px;
}

.opacity-0 {
   opacity: 0;
}

.scrollbar-style::-webkit-scrollbar-track {
   -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
   background-color: #ccc;
   display: none;
 }
 
.scrollbar-style::-webkit-scrollbar {
   width: 2px;
   background-color: #ccc;
 
 }
 
.scrollbar-style::-webkit-scrollbar-thumb {
   background-color: #FFC600;
   border: 2px solid #FFC600;
   display: block !important;
 }

@keyframes fadeInUp {
   0% {
      opacity: 0;
      transform: translate3d(0, 100px, 0);
   }

   100% {
      opacity: 1;
      transform: translate3d(0, 0, 0);
   }
}

@keyframes fadeInDown {
   0% {
      opacity: 0;
      transform: translate3d(0, -100px, 0);
   }

   100% {
      opacity: 1;
      transform: translate3d(0, 0, 0);
   }
}

@keyframes scaleLarge {
   0% {
      opacity: 0;
      transform: scale(2);
   }

   100% {
      opacity: 1;
      transform: scale(1);
   }
}

/* Toc */

a.mucluc-dropdown-list_button{
   cursor: pointer;
}

a.mucluc-dropdown-list_button:before {
   content: "\f0ca";
   font-family: "FontAwesome";
   font-style: normal;
   font-weight: 400;
   background: rgba(243, 243, 243, 0.95);
   color: rgba(51, 51, 51, 1) !important;
   font-size: 24px;
   width: 40px;
   height: 40px;
   display: inline-block;
   line-height: 40px;
   text-align: center;
   border: 1px solid rgba(51, 51, 51, .95);
   border-radius: 5px;
}

.meta-toc.fiedx {
   position: fixed;
   left: 15px;
   top: 200px;
   z-index: 1002;
}

.meta-toc .mucluc-dropdown-list_button {
   display: none;
}

.meta-toc.fiedx .mucluc-dropdown-list_button {
   display: block;
}
a.mucluc-dropdown-list_button:hover:before {
   color: red !important;
}

.meta-toc:not(.fiedx) .box-readmore {
   display: block !important;
}

.box-readmore {
   padding: 10px;
   background-color: #f5f5f5;
   width: 100%;
   margin-top: 2px;
   border: 1px solid #dddddd;
   font-size: 13px;
   margin-bottom: 10px;
}

.meta-toc.fiedx .box-readmore {
   width: 230px;
   display: none;
   position: fixed;
   top: 0;
   z-index: 99999;
   left: 0;
   height: 100vh;
   overflow-y: scroll;
   margin-top: 0px;
   border-top: 0;
}

.meta-toc.fiedx .box-readmore::-webkit-scrollbar-track {
   -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
   background-color: #ccc;
   display: none;
 }
 
 .meta-toc.fiedx .box-readmore::-webkit-scrollbar {
   width: 2px;
   background-color: #ccc;
 
 }
 
 .meta-toc.fiedx .box-readmore::-webkit-scrollbar-thumb {
   background-color: #1082fc;
   border: 2px solid #1082fc;
   display: block !important;
 }

.box-readmore-header {
   display: none;
   margin-bottom: 20px;
}

.meta-toc.fiedx .box-readmore-header {
   display: flex;
   color: #1082fc;
}

.box-readmore-header h3 {
   margin-bottom: 0;
   font-weight: 600;
}

.box-readmore-header i {
   font-size: 20px;
}

.box-readmore-close:hover {
   cursor: pointer;
   color: red;
}

.box-readmore li ul>li {
   margin: 0;
   margin-bottom: 8px;
}

.box-readmore li ul>li:before {
   content: counters(item, ".") " ";
}

.box-readmore ul {
   list-style-type: none;
   counter-reset: item;
   margin-bottom: 0px;
   padding-left: 0px !important;
   margin-top: 8px;
}

.box-readmore ul li {
   display: table;
   counter-increment: item;
   margin: 0 0 5px 0;
}

.box-readmore ul li:before {
   content: counters(item, ".") ". ";
   display: table-cell;
   padding-right: 5px;
}

.box-readmore ul li a {
   color: #000 !important;
   cursor: pointer;
   font-weight: 500;
   font-size: 14px;
}

.box-readmore ul li li a {
   font-weight: 400;
}

.box-readmore ul li a:hover {
   color: #767676;
}

/* loadpage website */
/* #loader-wrapper {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999999;
    pointer-events: none;
}

#loader-wrapper #wrap {
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: auto;
    display: block;
    text-align: center;
    width: 100%;
    height: 100%;
    z-index: 999999;
}

#loader-wrapper.show1 #wrap {
    background: transparent
}

#loader-wrapper:after {
    -webkit-mask: url(../images/mask-01.png);
    mask: url(../images/mask-01.png);
    -webkit-mask-size: 2300% 100%;
    mask-size: 2300% 100%;
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    background-color: rgba(255, 255, 255, 1);
    z-index: 99999;
}

#loader-wrapper.show1::after {
    -webkit-animation: MaskPlay 1s steps(22) forwards;
    animation: MaskPlay 1s steps(22) forwards;
}

#loader-wrapper.show1 #wrap {
    opacity: 0;
}
.loading-text ul {
   margin-top: 1.875rem
}

.loading-text ul li {
   -webkit-animation: anime 1.5s infinite linear;
   animation: anime 1.5s infinite linear;
   display: inline-block;
   font-family: var(--bs-font-monospace);
   font-size: 1.875rem;
   letter-spacing: 1px
}

.loading-text ul li:nth-child(1) {
   -webkit-animation-delay: 0s;
   animation-delay: 0s
}

.loading-text ul li:nth-child(2) {
   -webkit-animation-delay: .1s;
   animation-delay: .1s
}

.loading-text ul li:nth-child(3) {
   -webkit-animation-delay: .2s;
   animation-delay: .2s
}

.loading-text ul li:nth-child(4) {
   -webkit-animation-delay: .3s;
   animation-delay: .3s
}

.loading-text ul li:nth-child(5) {
   -webkit-animation-delay: .4s;
   animation-delay: .4s
}

.loading-text ul li:nth-child(6) {
   -webkit-animation-delay: .5s;
   animation-delay: .5s
}

.loading-text ul li:nth-child(7) {
   -webkit-animation-delay: .6s;
   animation-delay: .6s
}
.loader {
   align-items: center;
   display: flex;
   flex-direction: column;
   height: 100%;
   justify-content: center;
   left: 0;
   padding-bottom: 3.125rem;
   position: fixed;
   top: 0;
   width: 100%;
   z-index: 100001
} */
/* name */

/* @-webkit-keyframes anime {
   0% {
      color: grey;
      letter-spacing: 1px;
      text-shadow: 1px 1px 0 #000;
      transform: translateY(0)
   }

   50% {
      color: #ffc107;
      letter-spacing: 5px;
      text-shadow: 5px 10px 1px #000;
      transform: translateY(-10px)
   }

   100% {
      color: grey;
      letter-spacing: 1px;
      text-shadow: 1px 1px 0 #000;
      transform: translateY(0)
   }

}

@keyframes anime {
   0% {
      color: grey;
      letter-spacing: 1px;
      text-shadow: 1px 1px 0 #000;
      transform: translateY(0)
   }

   50% {
      color: #ffc107;
      letter-spacing: 5px;
      text-shadow: 5px 10px 1px #000;
      transform: translateY(-10px)
   }

   100% {
      color: grey;
      letter-spacing: 1px;
      text-shadow: 1px 1px 0 #000;
      transform: translateY(0)
   }

} */

/* end name*/
/* @-webkit-keyframes MaskPlay {
    from {
        -webkit-mask-position: 0 0;
        mask-position: 0 0
    }

    to {
        -webkit-mask-position: 100% 0;
        mask-position: 100% 0
    }
}

@keyframes MaskPlay {
    from {
        -webkit-mask-position: 0 0;
        mask-position: 0 0
    }

    to {
        -webkit-mask-position: 100% 0;
        mask-position: 100% 0
    }
} */
/*  end loadpage website */
body {
   font-size: 14px;
   line-height: 1.4;
   font-weight: 400;
   font-family: "Montserrat", serif;
}

blockquote {
   font-style: italic;
   font-family: Georgia, Times, "Times New Roman", serif;
   padding: 2px 0;
   border-style: solid;
   border-color: #ccc;
   border-width: 0;
   padding-left: 20px;
   padding-right: 8px;
   border-left-width: 5px;
}

blockquote p {
   margin-bottom: 0;
}

.footer-copyright a {
   color: #fff;
}

.row-10 {
   margin-left: -5px;
   margin-right: -5px;
}

.row-20 {
   margin-left: -10px;
   margin-right: -10px;
}

.row-30 {
   margin-left: -15px;
   margin-right: -15px;
}

.col-30 {
   padding-left: 15px;
   padding-right: -15px;
}

.col-20 {
   padding-left: 10px;
   padding-right: 10px;
}

.mg-col-10 {
   padding-left: 5px;
   padding-right: 5px;
}

.padding-top-bottom {
   padding: 2.5rem 0;
}

.pad-top {
   padding-top: 2.5rem;
}

.pad-bottom {
   padding-bottom: 2.5rem;
}

.mg-top {
   margin-top: 2.5rem;
}

.mg-bottom {
   margin-bottom: 2.5rem;
}

.hover_xemthem {
   transition: 0.4s;
}

.hover_xemthem:hover {
   letter-spacing: 2px;
}

img {
   max-width: 100%;
   height: auto;
   vertical-align: top;
}

a,
input,
textarea {
   outline: none;
   padding: 0px;
}

input[type="number"]::-webkit-outer-spin-button,
input[type="number"]::-webkit-inner-spin-button {
   -webkit-appearance: none;
   margin: 0;
}

.w-clear:after {
   display: block;
   content: "";
   clear: both;
}

.hidden {
   display: none;
}

.clear {
   clear: both;
}

.none {
   display: none;
}

.hidden-seoh {
   visibility: hidden;
   height: 0px;
   margin: 0px;
   overflow: hidden;
}

.wrap-content {
   max-width: 1200px;
   margin: auto;
   width: calc(100% - 30px);
}

.wrap-content-chinhanh-page {
   max-width: 100%;
   width: 100%;
}

.wrap-content-chinhanh-page .gm-style .place-card-large {
   opacity: 0 !important;
}

.fix_head {
   position: fixed !important;
   top: 0;
   width: 100%;
   z-index: 999 !important;
   background: #fff;
}

.pd-l-10 {
   padding-left: -10px;
}

.pd-r-10 {
   padding-right: -10px;
}

.mg-l-10 {
   margin-left: -10px;
}

.mg-r-10 {
   margin-right: -10px;
}

.mg-b-20 {
   margin-bottom: 20px;
}

.super-bg {
   background-position: center center;
   background-repeat: no-repeat;
   background-size: cover;
   position: relative;
   background-attachment: fixed;
}

.title-detail-main {
   color: #252525;
   font-size: 23px;
   margin-bottom: 1.5rem;
   font-weight: 500;
}
.wrap-content1 {
    padding: 60px 0;
    padding-left: calc((100% - 1200px) / 2);
    background: url(../images/bg_dmcap.png)no-repeat;
    background-size: 100% 100%;
    margin-right: -30px;
    overflow: hidden;
}
/* General */
.title-main {
   margin-bottom: 1.5rem;
   text-align: center;
}

.title-main span {
   color: var(--color-black);
   font-weight: 700;
   font-size: 45px;
   text-transform: uppercase;
   background: linear-gradient(to top, #0e4a78, #216ca9b8);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   font-weight: bold;
}

.time-main {
   margin-bottom: 0.75rem;
   color: #999999;
}

.time-main i {
   vertical-align: top;
   margin: 3px 7px 0px 0px;
}

.time-main span {
   vertical-align: top;
   display: inline-block;
}

.share {
   padding: 17px 15px 10px 15px;
   line-height: normal;
   background: rgba(128, 128, 128, 0.15);
   margin-top: 15px;
   border-radius: 5px;
}

.share b {
   display: block;
   margin-bottom: 5px;
}

.control-owl {
   position: absolute;
   width: 100%;
   z-index: 2;
   left: 0px;
   top: calc(50% - 45px / 2);
}

.control-owl button {
   opacity: 0.5;
   top: 0px;
   position: absolute;
   outline: none;
   border: 0px;
   padding: 0px;
   margin: 0px;
   display: block;
   cursor: pointer;
   color: #ffffff;
   width: 45px;
   height: 45px;
   text-align: center;
   font-size: 25px;
   margin: 0px;
   background-color: #000000;
   border-radius: 3px;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
   -webkit-box-pack: center;
   -ms-flex-pack: center;
   justify-content: center;
}

.control-owl button:hover {
   opacity: 1;
}

.control-owl button.owl-prev {
   left: 20px;
}

.control-owl button.owl-next {
   right: 20px;
}

.custom-form-row {
   margin-right: -10px;
   margin-left: -10px;
}

.custom-form-row>.col,
.custom-form-row>[class*="col-"] {
   padding-right: 10px;
   padding-left: 10px;
}

.text-sm {
   font-size: 0.875rem !important;
}

/* Lazyload */
img.lazy {
   opacity: 0;
}

img:not(.initial) {
   -webkit-transition: opacity 1s;
   transition: opacity 1s;
}

img.initial,
img.loaded,
img.error {
   opacity: 1;
}

img:not([src]) {
   visibility: hidden;
}

/* User */
.wrap-user {
   width: 100%;
   max-width: 550px;
   margin: auto;
   border: 1px solid #bce8f1;
   border-radius: 5px;
}

.title-user {
   background-color: #d9edf7;
   padding: 12px 15px;
   border-radius: 5px 5px 0px 0px;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: end;
   -ms-flex-align: end;
   align-items: flex-end;
   -webkit-box-pack: justify;
   -ms-flex-pack: justify;
   justify-content: space-between;
}

.title-user span {
   color: #31708f;
}

.title-user a {
   color: #0056b3;
   font-size: 12px;
}

.form-user {
   padding: 20px 15px;
}

.input-user {
   margin-bottom: 0.75rem;
}

.input-user input {
   font-size: 14px;
}

.button-user {
   margin-bottom: 1rem;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
   -webkit-box-pack: justify;
   -ms-flex-pack: justify;
   justify-content: space-between;
}

.button-user input {
   font-size: 14px;
}

.checkbox-user,
.radio-user {
   cursor: pointer;
}

.checkbox-user input {
   top: calc(50% - 1.25rem / 2);
   height: auto;
}

.checkbox-user label {
   font-size: 14px;
   cursor: pointer;
}

.checkbox-user label::before,
.checkbox-user label::after {
   top: calc(50% - 1rem / 2);
}

.radio-user {
   margin-right: 1rem;
}

.radio-user:last-child {
   margin-right: 0px;
}

.radio-user label::before,
.radio-user label::after {
   top: calc(50% - 1rem / 2);
}

.note-user {
   font-size: 14px;
   border-top: 1px solid #ddd;
   padding-top: 0.5rem;
}

/* Cart */
#popup-cart .modal-title {
   text-transform: uppercase;
}

#popup-cart .modal-body .wrap-cart {
   padding: 0px;
   -webkit-box-shadow: none;
   box-shadow: none;
   border: 0px;
}

#popup-cart .modal-footer {
   padding: 0.75rem 0 0 0;
   border-top: 0px;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
   -webkit-box-pack: justify;
   -ms-flex-pack: justify;
   justify-content: space-between;
}

.buymore-cart {
   color: #ec2d3f;
   cursor: pointer;
   margin: 0px;
}

.buymore-cart i {
   margin-right: 2px;
   margin-top: 5px;
   vertical-align: top;
   font-size: 12px;
}

.wrap-cart {
   padding: 20px 15px;
   background: #ffffff;
   border: 1px solid #d8d8d8;
   -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
   box-shadow: 0 0 20px rgba(0, 0, 0, 0.15);
}

.top-cart {
   border-right: 1px solid #eee;
}

@media only screen and (max-width: 991px) {
   .top-cart {
      margin-bottom: 2rem;
   }
}

.procart {
   padding: 20px 10px;
   border: 1px solid #eee;
   border-top: 0px;
}

.pic-procart {
   text-align: center;
}

.pic-procart img {
   max-height: 100px;
   height: inherit;
}

.pic-procart .del-procart {
   color: #999;
   font-size: 12px;
   display: block;
   margin-top: 5px;
   cursor: pointer;
}

.pic-procart .del-procart:hover {
   color: red;
}

.name-procart a {
   font-size: 14px;
   color: #000;
   display: block;
}

@media only screen and (max-width: 575px) {
   .name-procart a {
      font-size: 13px;
   }
}

.name-procart a:hover {
   color: #ec2d3f;
}

.properties-procart {
   display: block;
}

.properties-procart p {
   display: inline-block;
   margin-bottom: 0px;
}

.properties-procart p:first-child {
   margin-right: 10px;
}

.properties-procart p strong {
   font-weight: 600;
}

@media only screen and (max-width: 767px) {
   .quantity-procart {
      text-align: right;
   }
}

.quantity-procart p {
   margin-bottom: 0px;
}

.quantity-counter-procart {
   border: 1px solid #dfdfdf;
   width: 100%;
   height: 30px;
   line-height: normal;
   text-align: center;
   border-radius: 3px;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: stretch;
   -ms-flex-align: stretch;
   align-items: stretch;
   -webkit-box-pack: justify;
   -ms-flex-pack: justify;
   justify-content: space-between;
}

.counter-procart {
   background-color: transparent;
   border: 0px;
   width: 30%;
   color: #333;
   outline: none;
   cursor: pointer;
   font-size: 23px;
}

.counter-procart:hover,
.counter-procart:focus {
   color: #ec2d3f;
}

.counter-procart:disabled {
   color: #ccc;
   cursor: not-allowed;
}

.counter-procart:disabled:hover {
   color: #ccc;
   cursor: not-allowed;
}

.counter-procart-minus {
   line-height: 26px;
}

.counter-procart-plus {
   line-height: 24px;
}

.quantity-counter-procart .quantity-procart {
   width: 40%;
   -webkit-box-sizing: border-box;
   box-sizing: border-box;
   border: 0px;
   border-right: 1px solid #dfdfdf;
   border-left: 1px solid #dfdfdf;
   outline: none;
   -webkit-box-shadow: none;
   box-shadow: none;
   padding: 0px;
   color: #333;
   text-align: center;
}

.price-procart {
   width: 20%;
   text-align: right;
}

@media only screen and (max-width: 767px) {
   .price-procart {
      display: none;
   }
}

.price-procart-rp {
   display: none;
   width: 100%;
   margin-bottom: 10px;
   font-size: 13.5px;
}

@media only screen and (max-width: 767px) {
   .price-procart-rp {
      display: block;
   }
}

.price-new-cart {
   color: #ec2d3f;
   margin-bottom: 0px;
}

.price-old-cart {
   color: #999;
   text-decoration: line-through;
}

.procart-label {
   border: 0px;
   background: #eee;
   padding: 10px;
   margin: 0px;
   text-transform: capitalize;
}

@media only screen and (max-width: 575px) {
   .procart-label {
      font-size: 13px;
   }
}

@media only screen and (min-width: 768px) {
   .procart-label .quantity-procart p:first-child {
      display: block;
   }
}

@media only screen and (max-width: 767px) {
   .procart-label .quantity-procart p:first-child {
      display: none;
   }
}

@media only screen and (min-width: 768px) {
   .procart-label .quantity-procart p:last-child {
      display: none;
   }
}

@media only screen and (max-width: 767px) {
   .procart-label .quantity-procart p:last-child {
      display: block;
   }
}

.money-procart {
   margin-top: 15px;
}

.total-procart {
   background: #eee;
   padding: 7px 10px;
   border: 1px solid #dddfe2;
   margin-bottom: -1px;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
   -webkit-box-pack: justify;
   -ms-flex-pack: justify;
   justify-content: space-between;
}

.total-procart p {
   margin-bottom: 0px;
   font-size: 15px;
}

.total-procart p:last-child {
   color: #ec2d3f;
}

.section-cart {
   position: -webkit-sticky;
   position: sticky;
   top: 15px;
}

.title-cart {
   font-size: 15px;
   text-transform: uppercase;
   color: #000;
   border-bottom: 1px solid #eee;
   padding-bottom: 5px;
   margin-bottom: 15px;
}

.information-cart {
   margin-bottom: 1.5rem;
}

.input-cart {
   margin-bottom: 0.5rem;
   position: relative;
}

.input-cart textarea {
   resize: none;
   height: 100px;
}

.input-cart select {
   cursor: pointer;
}

.payments-cart {
   text-align: left;
   margin-bottom: 5px;
   min-height: auto;
   padding-left: 0;
   margin-left: 20px;
   position: relative;
}

.payments-cart:last-child {
   margin-bottom: 0px;
}

.payments-cart input {
   top: 10px;
   /* opacity: 0; */
   position: absolute;
}

.payments-label {
   cursor: pointer;
   background: #eee;
   display: block;
   padding: 10px 15px;
   border-radius: 3px;
   margin-bottom: 0px;
   color: #313131 !important;
}

.payments-label::before,
.payments-label::after {
   top: calc(50% - 1rem / 2);
}

.payments-label.active {
   background: var(--background-static);
   color: #ffffff !important;
}

.payments-info {
   opacity: 0;
   visibility: hidden;
   height: 0px;
   overflow: hidden;
   background: #f5efef;
   border-radius: 5px;
}

.payments-info p {
   margin-bottom: 1em;
}

.payments-info.active {
   padding: 10px 15px;
   margin-top: 5px;
   opacity: 1;
   visibility: visible;
   height: auto;
}

.btn-cart {
   text-transform: capitalize;
}

.empty-cart {
   padding: 25px 30px;
   text-align: center;
}

.empty-cart i {
   color: red;
   font-size: 70px;
}

.empty-cart p {
   margin: 15px 0px;
   color: #333;
   font-size: 18px;
}

/* Comment */
.comment-title {
   font-size: 18px;
}

.comment-show {
   display: block !important;
}

.comment-point {
   font-size: 47px;
   color: #fe302e;
}

.comment-star {
   font-size: 0;
   position: relative;
   display: inline-block;
   vertical-align: top;
   margin-bottom: 0.5rem;
}

.comment-star span {
   display: block;
   position: absolute;
   top: 0;
   left: 0px;
   bottom: 0;
   z-index: 1;
   overflow: hidden;
   text-align: left;
   white-space: nowrap;
}

.comment-star i {
   display: inline-block;
   margin: 0.1rem;
   color: #b8b8b8;
   text-rendering: auto;
   font-size: 20px;
}

.comment-star i:nth-child(1) {
   margin-left: 0;
}

.comment-star span i {
   color: #ffc120;
}

.comment-progress {
   width: 100%;
   margin-bottom: 0.375rem;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
   -webkit-box-pack: justify;
   -ms-flex-pack: justify;
   justify-content: space-between;
}

.comment-progress:last-child {
   margin-bottom: 0px;
}

.comment-progress .progress {
   height: 12px;
   margin-right: 10px;
   margin-left: 5px;
   width: calc(100% - 90px);
   border-radius: 10px;
}

.comment-progress .progress-bar#has-rate {
   background-color: #23b445;
}

.comment-progress .progress-num {
   font-size: 15px;
   width: 25px;
   text-align: center;
   color: #787878;
}

.comment-progress .progress-total {
   font-weight: 600;
   text-align: left;
   color: #787878;
   width: 50px;
}

.comment-write {
   display: none;
}

.review-rating-star {
   font-size: 0;
}

.review-rating-star-icon .fa {
   font-weight: 400;
   font-style: normal;
   display: inline-block;
   margin: 0.1rem;
   font-size: 21px;
   cursor: pointer;
   color: #f0c808;
}

.review-rating-star-icon .fa.star-empty {
   color: #dedddc;
}

.review-rating-star-icon .fa.star-not-empty {
   color: #f0c808;
}

.review-rating-star-icon .fa:nth-child(1) {
   margin-left: 0;
}

.review-fileuploader {
   padding: 20px 15px;
   text-align: center;
   background-color: #ffffff;
   cursor: pointer;
   border: 2px dashed #c2cdda;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -ms-flex-wrap: wrap;
   flex-wrap: wrap;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
   -webkit-box-pack: center;
   -ms-flex-pack: center;
   justify-content: center;
}

.review-fileuploader .review-fileuploader-text {
   color: #90a0bc;
}

.review-file-uploader .fileuploader {
   padding: 0px;
   margin: 0px;
   background: transparent;
}

.review-file-uploader .fileuploader-items .fileuploader-items-list {
   margin: 1rem -5px 0 -5px;
}

.review-file-uploader .fileuploader-items .fileuploader-items-list:after {
   display: block;
   content: "";
   clear: both;
}

.review-file-uploader .fileuploader-items .fileuploader-items-list .fileuploader-item {
   padding: 0px;
   width: calc(100% / 7 - 10px);
   float: left;
   margin: 0 5px 5px 5px;
   border-bottom: 0px;
}

.review-file-uploader .fileuploader-items .fileuploader-items-list .fileuploader-item .columns {
   display: block;
}

.review-file-uploader .fileuploader-items .fileuploader-items-list .fileuploader-item .column-thumbnail {
   width: auto;
   height: auto;
}

.review-file-uploader .fileuploader-items .fileuploader-items-list .fileuploader-item .column-thumbnail .fileuploader-item-image {
   height: auto;
   padding: 50% 0;
}

.review-file-uploader .fileuploader-items .fileuploader-items-list .fileuploader-item .column-thumbnail .fileuploader-item-image img {
   position: absolute;
   top: 0px;
   left: 0px;
   max-width: 100%;
   width: 100%;
   height: 100%;
   -o-object-fit: cover;
   object-fit: cover;
   -webkit-transform: none;
   transform: none;
}

.review-file-uploader .fileuploader-items .fileuploader-items-list .fileuploader-item .column-title {
   padding: 0px;
   margin-top: 0.5rem;
   text-align: center;
   display: none;
}

.review-file-uploader .fileuploader-items .fileuploader-items-list .fileuploader-item .column-actions {
   margin: 0px;
   position: absolute;
   top: 0px;
   right: -5px;
}

.review-file-uploader .fileuploader-items .fileuploader-items-list .fileuploader-item .column-infos input {
   border: 1px solid #dddddd;
   border-radius: 0.25rem;
}

.review-poster-video-avatar {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
   -webkit-box-pack: start;
   -ms-flex-pack: start;
   justify-content: flex-start;
}

.review-poster-video-avatar .avatar-detail {
   width: 95px;
   height: 95px;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
   -webkit-box-pack: center;
   -ms-flex-pack: center;
   justify-content: center;
}

.review-poster-video-avatar .avatar-detail img {
   max-width: 95px;
   max-height: 95px;
}

#review-content {
   height: 100px;
}

.carousel-comment-media .carousel-control a {
   opacity: 1;
   width: 45px;
   height: 45px;
   top: calc(50% - 45px / 2);
   bottom: inherit;
}

.carousel-comment-media .carousel-control a span {
   display: block;
   cursor: pointer;
   color: #222222;
   width: 45px;
   height: 45px;
   padding: 5px;
   text-align: center;
   background-color: #ffffff;
   -webkit-box-shadow: 0 1px 12px 0 rgba(0, 0, 0, 0.12);
   box-shadow: 0 1px 12px 0 rgba(0, 0, 0, 0.12);
   border-radius: 100%;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
   -webkit-box-pack: center;
   -ms-flex-pack: center;
   justify-content: center;
}

.carousel-comment-media .carousel-control a.carousel-control-prev {
   left: 20px;
}

.carousel-comment-media .carousel-control a.carousel-control-prev span {
   padding-right: 9px;
}

.carousel-comment-media .carousel-control a.carousel-control-next {
   right: 20px;
}

.carousel-comment-media .carousel-control a.carousel-control-next span {
   padding-left: 8px;
}

.carousel-comment-media .carousel-indicators {
   position: static;
   margin: 0 0 1rem 0;
}

.carousel-comment-media .carousel-indicators li {
   width: auto;
   max-width: 60px;
   height: auto;
   text-indent: inherit;
   -webkit-box-flex: 0;
   -ms-flex: none;
   flex: none;
   margin: 0px 0px 3px 0px;
   border: 2px solid transparent;
   opacity: 1;
   cursor: -webkit-zoom-in;
   cursor: zoom-in;
}

.carousel-comment-media .carousel-indicators li.active {
   border-color: #ffc120;
   cursor: -webkit-zoom-out;
   cursor: zoom-out;
   -webkit-transform: scale(1.05);
   transform: scale(1.05);
}

.carousel-comment-media .carousel-inner {
   max-width: 550px;
   -webkit-box-shadow: 0 1px 12px 0 rgba(0, 0, 0, 0.12);
   box-shadow: 0 1px 12px 0 rgba(0, 0, 0, 0.12);
   margin: auto;
}

.carousel-comment-media .carousel-inner .carousel-lists .carousel-comment-media-item-video #file-video {
   max-width: 100%;
   width: 100%;
   height: 500px;
   vertical-align: top;
   display: inline-block;
   background-color: #000000;
}

#form-reply {
   display: none;
}

.comment-item {
   margin-bottom: 3rem;
}

@media only screen and (min-width: 992px) {
   .comment-item {
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: start;
      -ms-flex-align: start;
      align-items: flex-start;
      -webkit-box-pack: start;
      -ms-flex-pack: start;
      justify-content: flex-start;
   }
}

.comment-item-poster {
   width: 200px;
   margin-right: 30px;
   text-align: center;
}

@media only screen and (max-width: 991px) {
   .comment-item-poster {
      width: auto;
      margin-right: 0px;
      margin-bottom: 0.5rem;
      display: -webkit-box;
      display: -ms-flexbox;
      display: flex;
      -webkit-box-align: center;
      -ms-flex-align: center;
      align-items: center;
      -webkit-box-pack: start;
      -ms-flex-pack: start;
      justify-content: flex-start;
   }
}

.comment-item-letter {
   border-radius: 50%;
   background-color: #d3d2d3;
   color: #919090;
   width: 65px;
   height: 65px;
   text-transform: uppercase;
   display: inline-block;
   vertical-align: top;
   line-height: 67px;
   font-size: 18px;
   font-weight: 700;
   margin-bottom: 0.5rem;
}

@media only screen and (max-width: 991px) {
   .comment-item-letter {
      width: 40px;
      height: 40px;
      line-height: 40px;
      font-size: 13px;
      margin-bottom: 0;
   }
}

.comment-item-name {
   margin-bottom: 0.25rem;
   text-transform: capitalize;
}

@media only screen and (max-width: 991px) {
   .comment-item-name {
      margin-bottom: 0px;
      margin-left: 10px;
      margin-right: 10px;
   }
}

.comment-item-posttime {
   font-size: 12px;
   color: #999999;
}

.comment-item-information {
   width: calc(100% - 230px);
}

@media only screen and (max-width: 991px) {
   .comment-item-information {
      width: 100%;
   }
}

.comment-item-star {
   float: left;
   margin-right: 10px;
}

.comment-item-star i {
   font-size: 17px;
}

.comment-item-title {
   font-size: 15px;
   font-weight: 500;
}

.comment-replies {
   position: relative;
   background: #f8f9fa;
   border: 1px solid #dfdfdf;
   padding: 1.75rem 1.5rem;
}

.comment-replies:after {
   content: "";
   position: absolute;
}

.comment-replies:before {
   content: "";
   position: absolute;
   z-index: 1;
   top: -13px;
   left: 10px;
   border-left: 10px solid transparent;
   border-right: 10px solid transparent;
   border-bottom: 13px solid #f8f9fa;
}

.comment-replies:after {
   top: -14px;
   left: 9px;
   border-left: 11px solid transparent;
   border-right: 11px solid transparent;
   border-bottom: 14px solid #dfdfdf;
}

.comment-replies-item {
   margin-bottom: 1.5rem;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: start;
   -ms-flex-align: start;
   align-items: flex-start;
   -webkit-box-pack: start;
   -ms-flex-pack: start;
   justify-content: flex-start;
}

.comment-replies-item:last-child {
   margin-bottom: 0px;
}

.comment-replies-letter {
   width: 45px;
   height: 45px;
   margin-right: 10px;
   line-height: 45px;
   padding-left: 1px;
   font-size: 14px;
   border-radius: 50%;
   background-color: #e5e3e5;
   color: #919090;
   text-transform: uppercase;
   display: inline-block;
   vertical-align: top;
   font-weight: 500;
   text-align: center;
   margin-top: 0.125rem;
}

.comment-replies-letter.admin {
   position: relative;
   background-color: #189eff;
   text-indent: 9999px;
   overflow: hidden;
}

.comment-replies-letter.admin:before {
   content: "QTV";
   text-indent: 0px;
   color: #ffffff;
   font-weight: 500;
   text-transform: uppercase;
   font-size: 13px;
   position: absolute;
   top: 50%;
   left: 50%;
   -webkit-transform: translate(-50%, -50%);
   transform: translate(-50%, -50%);
}

.comment-replies-info {
   width: calc(100% - 55px);
}

.comment-replies-name {
   font-weight: 500;
   margin-bottom: 0.125rem;
}

.comment-replies [class*="btn-load-more-"] {
   border: 0px;
   outline: none;
   padding: 0px;
   background: transparent;
}

.comment-media-play {
   z-index: 1;
   position: absolute;
   top: 50%;
   left: 50%;
   -webkit-transform: translateY(-50%) translateX(-50%);
   transform: translateY(-50%) translateX(-50%);
}

.comment-media-play svg {
   -webkit-box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.3);
   box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.3);
   border-radius: 50%;
   background-color: rgba(255, 255, 255, 0.15);
}

.comment-media-play svg .comment-media-play-stroke-dotted {
   opacity: 0;
   stroke-dasharray: 4, 5;
   stroke-width: 1px;
   -webkit-transform-origin: 50% 50%;
   transform-origin: 50% 50%;
   -webkit-animation: spin 4s infinite linear;
   animation: spin 4s infinite linear;
   -webkit-transition: opacity 1s ease, stroke-width 1s ease;
   transition: opacity 1s ease, stroke-width 1s ease;
}

.comment-media-play svg .comment-media-play-stroke-solid {
   stroke-dashoffset: 0;
   stroke-dasharray: 300;
   stroke-width: 4px;
   -webkit-transition: stroke-dashoffset 1s ease, opacity 1s ease;
   transition: stroke-dashoffset 1s ease, opacity 1s ease;
}

.comment-media-play svg .comment-media-play-icon {
   -webkit-transform-origin: 50% 50%;
   transform-origin: 50% 50%;
   -webkit-transition: -webkit-transform 200ms ease-out;
   transition: -webkit-transform 200ms ease-out;
   transition: transform 200ms ease-out;
   transition: transform 200ms ease-out, -webkit-transform 200ms ease-out;
}

.comment-media-play:hover svg .comment-media-play-stroke-dotted {
   stroke-width: 4px;
   opacity: 1;
}

.comment-media-play:hover svg .comment-media-play-stroke-solid {
   opacity: 0;
   stroke-dashoffset: 300;
}

.comment-media-play:hover svg .comment-media-play-icon {
   -webkit-transform: scale(1.05);
   transform: scale(1.05);
}

/* head */
.head {
   background-color: #ffffff;
}
.search input {
    height: 42px;
}
.head .head-top {
   color: #2b3845;
   background-color: #f5f5f5;
   padding: 5px 0;
   border-bottom: solid 1px #d9d9d9;
   font-weight: 500;
}

.line-info-head {
   font-size: 18px;
   margin-top: -3px;
}

.info-head i {
   vertical-align: top;
   margin: 3px 5px 0px 0px;
   font-size: 16px;
}

.head .head-bottom .wrap-content {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
   -webkit-box-pack: justify;
   -ms-flex-pack: justify;
   justify-content: space-between;
}

.head-bottom .wrap-content {
   padding: 5px 0;
}

.user-head a {
   color: #ffffff;
   padding-right: 9px;
   margin-right: 7px;
   position: relative;
   display: inline-block;
   vertical-align: top;
   text-decoration: none;
}
.search p.search-btn-submit i {
    margin-right: 8px;
}
.user-head a:after {
   content: "";
   position: absolute;
   width: 1px;
   height: 8px;
   background-color: #ffffff;
   top: calc(50% - 7px / 2);
   right: 0px;
   opacity: 0.7;
}

.user-head a:last-child {
   padding-right: 0px;
   margin-right: 0px;
}

.user-head a:last-child:after {
   display: none;
}


/* Menu */
.menu {
   position: relative;
   z-index: 9;
}

@media only screen and (max-width: 991px) {
   .menu {
      display: none;
   }
}
.logo_banner {
    max-width: 350px;
    width: 100%;
    margin-right: 100px;
}
.menu ul {
   width: 100%;
   padding: 0px;
   margin: auto;
   list-style: none;
}

.menu ul.menu-main {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
   -webkit-box-pack: justify;
   -ms-flex-pack: justify;
   justify-content: space-between;
   padding: 10px 0;
}

.menu-main .toggle-menu{
   display: none;
}

.menu ul li {
   position: relative;
   z-index: 1;
   margin: 8.5px 10px;
}

.menu ul li.menu-line {
   width: 1px;
   height: 15px;
   background-color: rgba(0, 0, 0, 0.1);
}

.menu ul li a {
   display: block;
   position: relative;
   font-size: 14px;
   color: #000;
   padding: 3px 3px;
   font-weight: 500;
   text-transform: uppercase;
   text-decoration: none;
   /* overflow: hidden; */
}

.menu ul li a::before {
   position: absolute;
   content: '';
   width: 7px;
   height: 7px;
   left: -10px;
   bottom: 0px;
   transform: scaleX(0);
   transition: transform 0.5s;
   border-radius: 30px;
   top: calc((100% - 7px) / 2);
   background-image: -moz-linear-gradient( -180deg, rgb(21,164,251) 0%, rgb(35,76,189) 100%);
   background-image: -webkit-linear-gradient( -180deg, rgb(21,164,251) 0%, rgb(35,76,189) 100%);
   background-image: -ms-linear-gradient( -180deg, rgb(21,164,251) 0%, rgb(35,76,189) 100%);
}

.menu ul>li>a.active::before,
.menu ul>li:hover>a::before {
   transform-origin: left;
   transform: scaleX(1);
}

.menu ul li a.has-child {
   padding-right: 16px;
   margin-right: 8px;
}

.menu ul li a.has-child:after {
   content: "";
   position: absolute;
   bottom: calc(50% - 4px / 2);
   right: 5px;
   width: 5px;
   height: 5px;
   border: 1px solid #fafafa;
   border-top: 0px;
   border-left: 0px;
   -webkit-transform: rotate(45deg);
   transform: rotate(45deg);
}

.menu ul li ul {
   position: absolute;
   min-width: 250px;
   margin-top: -5px;
   padding-top: 0.75rem;
   padding-bottom: 0.75rem;
   background-color: #fafafa;
   border-radius: 0.25rem;
   -webkit-box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.15);
   box-shadow: 1px 1px 15px rgba(0, 0, 0, 0.15);
   -webkit-transform: perspective(600px) rotateX(-90deg);
   transform: perspective(600px) rotateX(-90deg);
   -webkit-transform-origin: 0 0 0;
   transform-origin: 0 0 0;
   opacity: 0;
   visibility: hidden;
}

.menu ul li:hover>ul {
   -webkit-transform: perspective(600px) rotateX(0);
   transform: perspective(600px) rotateX(0);
   transform-origin: 0 0 0;
   -webkit-transform-origin: 0 0 0;
   opacity: 1;
   visibility: visible;
}

.menu ul li ul li {
   padding-left: 0.75rem;
   padding-right: 0.75rem;
   margin: 0px;
}

.menu ul li ul li a {
   font-size: 14px;
   color: #313131;
   border-bottom: 1px solid #ececec;
   padding: 10px 0px 9px 0px;
   text-transform: capitalize;
}

.menu ul li ul li a.has-child {
   margin-right: 0px;
}

.menu ul li ul li a.has-child:after {
   border-color: #313131;
   -webkit-transform: rotate(-45deg);
   transform: rotate(-45deg);
}

.menu ul li ul li a.active {
   color: var(--color-main);
}

.menu ul li ul li a.active.has-child:after {
   border-color: var(--color-main);
}

.menu ul li ul li:last-child>a {
   border-bottom: 0px;
}

.menu ul li ul li:hover>a {
   color: var(--color-main);
}

.menu ul li ul li:hover>a.has-child:after {
   border-color: var(--color-main);
}

.menu ul li ul li ul {
   top: -0.75rem;
   left: 100%;
   margin-top: 0px;
}

.menu ul li a.active,
.menu ul li a:hover {
   color: #2060cb;
   transition: all 0.3s;
}

/* Search */
.search {
   width: 480px;
   background: #ffffff;
   border-radius: 30px;
   border: solid 1px #dddddd;
   position: relative;
}

.search p.search-btn-submit {
   float: left;
   width: 50px;
   height: 40px;
   line-height: 40px;
   cursor: pointer;
   text-align: center;
   margin: 0px;
   color: #fff;
   font-size: 16px;
   display: flex;
   align-items: center;
   justify-content: center;
   border-radius: 18px;
   background-image: -moz-linear-gradient( -180deg, rgb(21,164,251) 0%, rgb(35,76,189) 100%);
   background-image: -webkit-linear-gradient( -180deg, rgb(21,164,251) 0%, rgb(35,76,189) 100%);
   background-image: -ms-linear-gradient( -180deg, rgb(21,164,251) 0%, rgb(35,76,189) 100%);
   position: absolute;
   right: 2px;
   top: 3px;
   width: 116px;
   height: 37px;
   z-index: 8;
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
   
.Rectangle_6 {
   border-radius: 18px;
   background-image: -moz-linear-gradient( -180deg, rgb(21,164,251) 0%, rgb(35,76,189) 100%);
   background-image: -webkit-linear-gradient( -180deg, rgb(21,164,251) 0%, rgb(35,76,189) 100%);
   background-image: -ms-linear-gradient( -180deg, rgb(21,164,251) 0%, rgb(35,76,189) 100%);
   position: absolute;
   left: 817px;
   top: 6px;
   width: 116px;
   height: 37px;
   z-index: 8;
};
}

.search input {
   width: calc(100% - 50px);
   height: 42px;
   float: left;
   outline: none;
   padding: 0px;
   border: 0px;
   background: transparent;
   text-indent: 18px;
   font-size: 13px;
}

.search input::-webkit-input-placeholder {
   color: #313131;
}

.search input:-moz-placeholder {
   color: #313131;
}

.search input::-moz-placeholder {
   color: #313131;
}

.search input:-ms-input-placeholder {
   color: #313131;
}

.search-result-auto {
   width: 300px;
   position: absolute;
   left: 0;
   top: 100%;
   background: #ffffff;
   overflow-x: hidden;
   overflow-y: scroll;
   padding: 10px;
   max-height: 455px;
   display: none;
}

.search-result-auto.active {
   display: block;
   z-index: 2;
}

.search-result-auto .price-per{
   right: initial;
   left: 10px;
}

.search-result-auto .menu ul li a {
   padding: 0;
}

.search-result-auto .name-product:hover {
   background: none;
}

.search-category-list .search{
   width: 490px;
   margin: 0 auto;
}
.search-category-list .search-category-list-id-select{
   float: left;
   width: 195px;
   position: relative;
}
.search-category-list .search-category-list-id{
   float: left;
   width: 100%;
   padding: 0 20px 0 10px;
   height: 40px;
   border-radius: 6px 0 0 6px;
   border: 0;
   color: #ffffff;
   background: #000000;
   appearance: none;
   -webkit-appearance: none;
   -moz-appearance: none;
   outline: none;
   position: relative;
}
.search-category-list .search-category-list-id-select:after {
   content: "\f107";
   font-family: "FontAwesome";
   position: absolute;
   top: 10px;
   right: 10px;
   width: 7px;
   height: 7px;
   color: #ffffff;
   font-size: 14px;
}

.search-category-list .search input {
    width: calc(100% - 245px);
    height: 40px;
    float: left;
    outline: none;
    padding: 0px;
    border: 0px;
    background: transparent;
    text-indent: 18px;
    font-size: 13px;
}
/* Mmenu */
.menu-res {
   z-index: 502;
   background: #fff;
   position: relative;
   display: none;
}

@media only screen and (max-width: 991px) {
   .menu-res {
      display: block;
   }
}

.menu-bar-res {
   min-height: 50px;
   padding: 0px 15px;
}

.menu-mobile-head {
   min-height: 50px;
   padding: 0px 15px 0 15px;
}

#menu {
   display: none;
}

.logo-head-mobile {
   max-width: 100px;
   margin: 0 auto;
}

#hamburger {
   display: block;
   width: 30px;
   height: 23px;
   position: relative;
}

#hamburger:before,
#hamburger:after,
#hamburger span {
   background: #ffffff;
   content: "";
   display: block;
   width: 100%;
   height: 2px;
   position: absolute;
   left: 0px;
}

#hamburger:before {
   top: 0px;
}

#hamburger span {
   top: 10px;
}

#hamburger:after {
   top: 20px;
}

#hamburger:before,
#hamburger:after,
#hamburger span {
   -webkit-transition: none 0.5s ease 0.5s;
   transition: none 0.5s ease 0.5s;
   -webkit-transition-property: transform, top, bottom, left, opacity;
   transition-property: transform, top, bottom, left, opacity;
}

.mm-wrapper_opening #hamburger:before,
.mm-wrapper_opening #hamburger:after {
   top: 10px;
}

.mm-wrapper_opening #hamburger span {
   left: -50px;
   opacity: 0;
}

.mm-wrapper_opening #hamburger:before {
   transform: rotate(45deg);
}

.mm-wrapper_opening #hamburger:after {
   transform: rotate(-45deg);
}

.mm-menu_opened {
   display: block !important;
}

/* Search Responsive */
.search-res {
   position: relative;
}

.search-res .icon-search {
   width: 40px;
   height: 40px;
   cursor: pointer;
   text-align: center;
   line-height: 42px;
   color: #000;
   font-size: 26px;
   margin: 0px;
}

.search-res .icon-search.active {
   color: #ec2d3f;
   background: #ffffff;
   border-radius: 100%;
}

.search-res .search-grid {
   position: absolute;
   top: 50px;
   right: 0px;
   width: 0px;
   height: 40px;
   overflow: hidden;
   background: #ffffff;
   border: 1px solid #ec2d3f;
   z-index: 2;
   opacity: 0;
   border-radius: 25px;
   line-height: normal;
}

.search-res .search-grid p {
   float: left;
   width: 35px;
   height: 38px;
   cursor: pointer;
   outline: none;
   border: none;
   margin: 0px;
   font-size: 17px;
   display: block;
   color: #ec2d3f;
   line-height: 40px;
   text-align: center;
}

.search-res .search-grid input {
   width: calc(100% - 35px);
   float: right;
   line-height: 38px;
   outline: none;
   border: none;
   color: #ec2d3f;
}

.search-res .search-grid input::-webkit-input-placeholder {
   color: #313131;
}

.search-res .search-grid input:-moz-placeholder {
   color: #313131;
}

.search-res .search-grid input::-moz-placeholder {
   color: #313131;
}

.search-res .search-grid input:-ms-input-placeholder {
   color: #313131;
}

/* Slideshow */
.slideshow {
   position: relative;
}

.slideshow-item {
   display: block;
   cursor: pointer;
}

.slideshow:hover .control-slideshow {
   opacity: 1;
}

.control-slideshow {
   opacity: 0;
}

.info-slide {
   position: absolute;
   top: calc((100% - 444px) / 2);
   left: calc((100% - 1200px) /2);
   bottom: 0;
   display: flex;
   flex-direction: column;
   width: 478px;
   height: 444px;
   background: url(../images/about_slide.png)no-repeat;
   border-radius: 108px;
   justify-content: center;
   align-items: center;
}
a.slideshow-image {
    text-decoration: none;
}

a.more_slide {
    width: 190px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #234cbd;
    border-radius: 30px;
    text-decoration: none;
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
}

a.more_slide:hover {
    background: red;
}
.name-slide {
   font-size: 30px;
   text-transform: uppercase;
   font-size: 15px;
   font-style: normal;
   font-weight: 800;
   
   /* 104.167% */
   text-align: center;
   color: #000;
}

.name-slide.name_bg.opacity-0 {
   font-size: 40px;
   font-style: normal;
   font-weight: bold;
   
   /* 156.25% */
   letter-spacing: -1px;
   background: var(--Color3, linear-gradient(180deg, #234ebe 0%, #1795f0 80.6%));
   background-clip: text;
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
   -webkit-text-stroke: inherit;
}

.desc-slide {
   font-size: 15px;
   color: #fff;
   margin: 20px 0;
   color: #000;
   font-size: 16px;
   font-style: normal;
   font-weight: 600;
   line-height: 24px;
   padding: 0 40px;
   -webkit-line-clamp: 5 !important;!i;!;
   text-align: center;
}

.views-more-slide {
   background-color: var(--background-static);
   width: 120px;
   height: 40px;
   color: #fff;
   font-size: 15px;
}

.box-slide.slick-current.slick-active .name-slide {
   animation: fadeInUp;
   animation-duration: 1s;
   animation-delay: 0.5s;
   animation-fill-mode: forwards;
}

.box-slide.slick-current.slick-active .desc-slide {
   animation: fadeInUp;
   animation-duration: 1s;
   animation-delay: 1s;
   animation-fill-mode: forwards;
}

.box-slide.slick-current.slick-active .views-more-slide {
   animation: scaleLarge;
   animation-duration: 1s;
   animation-delay: 1.5s;
   animation-fill-mode: forwards;
}

.slide-text .slick-prev,
.slide-text .slick-next {
   width: 40px;
   height: 40px;
   border-radius: 50%;
   background: rgba(0, 0, 0, 0.3);
}

.slide-text .slick-prev {
   left: 15px;
}

.slide-text .slick-next {
   right: 15px;
}

.slide-text .slick-prev:hover,
.slide-text .slick-next:hover {
   background: rgba(0, 0, 0, 1);
}

.slide-text .slick-prev:before {
   font-family: "FontAwesome";
   font-weight: 400;
   content: "\f053";
}

.slide-text .slick-next:before {
   font-family: "FontAwesome";
   font-weight: 400;
   content: "\f054";
}

.slide-text .slick-dots {
   bottom: 20px;
}

.slide-text .slick-dots li {
   margin: 0;
}

.slide-text .slick-dots li button:before {
   color: #fff;
   font-size: 15px;
}


/* Partner */
.control-partner button {
   background-color: transparent;
   color: #222222;
   opacity: 1;
   width: 25px;
   font-size: 23px;
}

.control-partner button:hover {
   opacity: 0.7;
}

.control-partner button.owl-prev {
   left: 0px;
}

.control-partner button.owl-next {
   right: 0px;
}

.wrap-partner {max-width: 900px;}

.wrap-partner .wrap-content {
   position: relative;
}
.title_doitac {
    font-size: 19px;
    font-weight: bold;
}
.partner {
   display: block;
   padding: 0 20px;
}
.wrap-content.wrap_doitac {
    padding: 40px 0;
    overflow: hidden;
}
.copyright_ft {
    color: #fff8e2;
    margin-top: 20px;
    line-height: 23px;
}
.name_footer {
    text-align: center;
    font-size: 20px;
    color: #ffffff;
    font-weight: 600;
    text-transform: uppercase;
    padding-bottom: 35px;
    margin-bottom: 35px;
    border-bottom: solid 1px #1874b5;
}
.footer-title:after {
    position: absolute;
    content: '';
    width: 40px;
    height: 1px;
    left: 0;
    bottom: 0;
    background: #fff;
}
/* Breadcrumb */
.breadCrumbs {
   background-color: #eee;
}

.breadCrumbs .wrap-content {
   padding: 0.75rem 0;
}

.breadCrumbs .wrap-content .breadcrumb {
   padding: 0;
   margin-bottom: 0;
   background-color: transparent;
   border-radius: 0;
}

.breadCrumbs .wrap-content .breadcrumb-item a {
   color: #212529;
}

.breadCrumbs .wrap-content .breadcrumb-item.active a {
   color: #6c757d;
}

/* Intro */
.wrap-intro {
   background-color: #eee;
   padding: 60px 0;
}

.news-intro:before {
   content: "";
   position: absolute;
   width: 1px;
   height: calc(100% - 50px);
   top: 10px;
   left: 90px;
   background-color: #cacaca;
}

.news-scroll:before,
.news-scroll:after {
   content: "";
   position: absolute;
   width: 10px;
   height: 10px;
   left: 85px;
   border-radius: 100%;
   background-color: #cacaca;
}

.news-scroll:before {
   top: 10px;
}

.news-scroll:after {
   bottom: 40px;
}

.news-control {
   left: 85px;
   font-size: 13px;
   opacity: 0.5;
   z-index: 1;
   cursor: pointer;
}

.news-control:hover {
   opacity: 1;
   color: #ec2d3f;
}

.news-control#up {
   top: -10px;
}

.news-control#down {
   bottom: 20px;
}

.news-shadow {
   padding-bottom: 30px;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
   -webkit-box-pack: start;
   -ms-flex-pack: start;
   justify-content: flex-start;
}

.news-shadow .news-shadow-time {
   font-size: 13px;
   width: 75px;
   margin-right: 45px;
}

.news-shadow .news-shadow-time:after {
   content: "";
   position: absolute;
   width: 20px;
   height: 20px;
   top: calc(50% - 20px / 2);
   right: -26px;
   background-repeat: no-repeat;
   background-position: center;
   background-image: url(../images/pattern-news.png);
}

.news-shadow .news-shadow-article {
   width: calc(100% - 120px);
   padding: 14px 15px;
   border-radius: 10px;
   background-color: #ffffff;
   border: 1px solid #cecabb;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
   -webkit-box-pack: start;
   -ms-flex-pack: start;
   justify-content: flex-start;
}

.news-shadow .news-shadow-article:before {
   content: "";
   position: absolute;
   top: calc(50% - 26px / 2);
   left: -13px;
   z-index: 0;
   border-top: 13px solid transparent;
   border-right: 13px solid #cecabb;
   border-bottom: 13px solid transparent;
}

.news-shadow .news-shadow-article:after {
   content: "";
   position: absolute;
   top: calc(50% - 24px / 2);
   left: -11px;
   z-index: 1;
   border-top: 12px solid transparent;
   border-right: 11px solid #ffffff;
   border-bottom: 12px solid transparent;
}

.news-shadow .news-shadow-article .news-shadow-image {
   margin-right: 10px;
   width: 90px;
}

.news-shadow .news-shadow-article .news-shadow-info {
   width: calc(100% - 100px);
}

.news-shadow .news-shadow-article .news-shadow-info .news-shadow-name {
   height: 36px;
   font-size: 15px;
   font-weight: 700;
}

.news-shadow .news-shadow-article .news-shadow-info .news-shadow-name a {
   color: #222222;
}

.news-shadow .news-shadow-article .news-shadow-info .news-shadow-name a:hover {
   color: #ec2d3f;
}

.news-shadow .news-shadow-article .news-shadow-info .news-shadow-name a .text-split {
   -webkit-line-clamp: 2;
   line-clamp: 2;
}

.news-shadow .news-shadow-article .news-shadow-info .news-shadow-desc {
   height: 38px;
   font-size: 13px;
}

.news-shadow .news-shadow-article .news-shadow-info .news-shadow-desc.text-split {
   -webkit-line-clamp: 2;
   line-clamp: 2;
}


.btn-contact-now {
   border-radius: 5px;
   padding: 10px 14px;
   color: #e89b40;
   text-transform: uppercase;
   line-height: 20px;
   text-decoration: none;
   display: inline-flex;
   align-items: center;
   justify-content: center;
   font-weight: 600;
   border: solid 1px #a3a3a3;
}

.btn-contact-now:hover {
   background-color: #179af4;
   color: #fff;
   transition: all .5s;
   border: solid 1px #179af4;
}

.btn-contact-now i {
   margin-left: 5px;
   font-weight: bold;
}

/* Video */
.video {
   cursor: pointer;
   margin-bottom: 1rem;
}

.video .video-image {
   position: relative;
   margin-bottom: 0.75rem;
}

.video .video-image:before {
   content: "";
   position: absolute;
   width: 50px;
   height: 35px;
   top: calc(50% - 17px);
   left: calc(50% - 25px);
   z-index: 1;
   background-repeat: no-repeat;
   background-image: url(../images/play.png);
}

.video .video-name {
   text-align: center;
   font-size: 16px;
   color: #212529;
   margin-bottom: 0px;
}

/* Album */
.album {
   cursor: pointer;
}

.album .album-image {
   margin-bottom: 0.75rem;
}

.album .album-name {
   margin-bottom: 0px;
   text-align: center;
}

.album .album-name a {
   display: block;
   font-size: 16px;
   color: #212529;
   margin-bottom: 0px;
}

/* Brand */
.wrap-brand .wrap-content {
   position: relative;
}

.brand {
   display: block;
   border: 1px solid #eee;
   max-width: 160px;
   margin: 0px auto;
}

/* Product */
.wrap-product {
   margin-bottom: 50px;
}

.cart-product {
   margin-bottom: 0px;
}

.cart-product span {
   cursor: pointer;
   color: #ffffff;
   text-transform: capitalize;
   text-align: center;
}

/* Product Detail */
.grid-pro-detail {
   margin-bottom: 3rem;
}

.left-pro-detail {
   position: relative;
   text-align: center;
   width: 45%;
}

.right-pro-detail {
   width: calc(55% - 40px);
}

.left-pro-detail .MagicZoom {
   border: 1px solid #eee;
   padding: 7px;
   border-radius: 5px;
   background-color: #ffffff;
}

.gallery-thumb-pro {
   position: relative;
   margin-top: 10px;
}

.gallery-thumb-pro-left {
   width: 100px;
   float: left;
}
.gallery-thumb-pro-left .slick-next, .gallery-thumb-pro-left .slick-prev{
   right: calc(50% - 15px);
   top: calc(100% - 8px);
   width: 30px;
   height: 30px;
   border-radius: 50%;
   background: #000000;
   opacity: .6;
}

.gallery-thumb-pro-left .slick-prev{
   right: initial;
   left: calc(50% - 15px);
   top: 0;
}
.gallery-thumb-pro-left .slick-next:before, .gallery-thumb-pro-left .slick-prev:before{
   font-family: "FontAwesome";
   font-weight: 400;
   content: "\f078";
}
.gallery-thumb-pro-left .slick-prev:before{
   content: "\f077";
}
.gallery-thumb-pro-left .slick-next:hover, .gallery-thumb-pro-left .slick-prev:hover{
   opacity: 1;
}
.gallery-thumb-pro-right {
   width: calc(100% - 130px);
   float: right;
}
.product-detail-size-guide {
   padding-bottom: 24px;
   margin-top: 15px;
   display: block;
   margin-bottom: 24px;
   border-bottom: solid 1px #7878782e;
}
.product-detail-size-guide a {
   color:#1B1B1D;
   font-size: 15px;
   font-weight: 400;
   line-height: 24px;
   text-decoration: none;
}
.product-detail-size-guide a:hover {
   color:var(--color-hover);
}
.owl-pro-detail {
   padding: 0;
}

.control-pro-detail button {
   background-color: transparent;
   color: #222222;
   opacity: 1;
   width: 25px;
   font-size: 23px;
}

.control-pro-detail button:hover {
   opacity: 0.7;
}

.control-pro-detail button.owl-prev {
   left: 0px;
}

.control-pro-detail button.owl-next {
   right: 0px;
}

.thumb-pro-detail {
   display: block !important;
   border: 1px solid #eee;
   padding: 5px;
   border-radius: 3px;
   cursor: pointer;
   background-color: #ffffff;
}

.thumb-pro-detail.mz-thumb.mz-thumb-selected {
   border-color: #cecfd2;
}

.thumb-pro-detail img {
   -webkit-box-shadow: none !important;
   box-shadow: none !important;
   -webkit-filter: brightness(100%) !important;
   filter: brightness(100%) !important;
   border-bottom: 0px !important;
   padding-bottom: 0px !important;
}

.title-pro-detail {
   text-transform: capitalize;
   font-size: 20px;
   display: block;
   font-weight: 700;
}

.comment-pro-detail {
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
   -webkit-box-pack: start;
   -ms-flex-pack: start;
   justify-content: flex-start;
}

.social-plugin-pro-detail {
   margin-bottom: 1rem;
   margin-top: 0px !important;
}

.desc-pro-detail {
   margin-bottom: 1rem;
}

.attr-pro-detail {
   list-style: none;
   padding: 0px;
}

.attr-pro-detail li {
   margin-bottom: 0.5rem;
}

.attr-label-pro-detail {
   margin: 0px 5px 0px 0px;
}

.attr-content-pro-detail {
   display: inline-block;
   margin-bottom: 0px;
}

.brand-pro-detail a {
   background: var(--color-red);
   color: #fff;
   border-radius: 2px;
   padding: 2px 5px;
}

.price-new-pro-detail {
   font-weight: 700;
   font-size: 23px;
   color: var(--color-black);
}

.price-old-pro-detail {
   font-weight: 400;
   color: var(--color-gray);
   text-decoration: line-through;
   padding-left: 10px;
}

.color-pro-detail {
   cursor: pointer;
   vertical-align: top;
   position: relative;
   width: 48px;
   height: 32px;
   margin: 0 8px 5px 0;
   background-repeat: no-repeat;
   background-size: contain;
   background-position: center center;
   border: 1px solid #dadada;
   transition: 0.3s;
   border-radius: 2px;
}

.size-pro-detail {
   cursor: pointer;
   display: flex;
   align-items: center;
   justify-content: center;
   height: 32px;
   width: 48px;
   position: relative;
   margin: 0 8px 0 0;
   border: 1px solid #dadada;
   border-radius: 2px;
   font-size: 12px;
   transition: 0.3s;
}

.size-pro-detail.active,
.color-pro-detail.active {
   border-color: var(--color-dark-red);
}

.size-pro-detail.active:after,
.color-pro-detail.active:after {
   content: "";
   position: absolute;
   bottom: 0px;
   right: 0px;
   width: 13px;
   height: 13px;
   background-repeat: no-repeat;
   background-image: url(../images/check-cart.png);
}

.color-pro-detail input[type="radio"],
.size-pro-detail input[type="radio"] {
   display: none;
}

.quantity-pro-detail {
   width: 150px;
   display: flex;
   align-items: center;
   justify-content: space-between;
   text-align: center;
   height: 45px;
   border-radius: 30px;
   overflow: hidden;
   border: 1px solid #dfdfdf;
}

.quantity-pro-detail span {
   line-height: 25px;
   padding: 0px;
   width: 45px;
   height: 100%;
   color: #000;
   cursor: pointer;
   font-size: 22px;
   display: flex;
   align-items: center;
   justify-content: center;
   font-weight: 500;
}

.quantity-pro-detail span.quantity-plus-pro-detail {
   border-left: 0px;
}

.quantity-pro-detail span.quantity-minus-pro-detail {
   border-right: 0px;
}

.quantity-pro-detail input {
   height: 100%;
   border: none;
   width: calc(100% - 90px);
   text-align: center;
   font-size: 15px;
}

.cart-pro-detail {
   max-width: 400px;
}

.cart-pro-detail a {
   text-align: center;
   color: #fff;
   text-transform: uppercase;
   cursor: pointer;
   width: calc(100% / 2 - 5px);
   height: 45px;
   border-radius: 5px;
}

.cart-pro-detail a.addnow {
   background: #fff;
   color: var(--color-red);
}

.cart-pro-detail a.addnow:hover {
   color: #fff;
   background: var(--color-red);
}

.cart-pro-detail a.buynow {
   background-color: #333;
}

.cart-pro-detail a.buynow:hover {
   background-color: var(--color-dark-red);
   color: #fff;
}

.cart-pro-detail a i {
   vertical-align: top;
   margin-right: 8px;
   font-size: 24px;
   position: relative;
   top: -2px;
}

.tags-pro-detail a {
   float: left;
   font-size: 13px;
   padding-bottom: 0.375rem;
   margin: 0px 5px 5px 0px;
}

.tags-pro-detail a i {
   font-size: 11px;
   margin: 5px 5px 0px 0px;
}

.tabs-pro-detail {
   margin-top: 2rem;
}

.tabs-pro-detail .nav-tabs .nav-link {
   border-top-width: 3px;
   font-size: 13px;
   color: #333;
   text-transform: uppercase;
   font-weight: 500;
}

.tabs-pro-detail .nav-tabs .nav-link.active,
.tabs-pro-detail .nav-tabs .nav-item.show .nav-link {
   border-top-color: #555555;
}

.catalogue-product-detail a {
   padding: 7px 20px;
   border: 1px solid var(--color-black);
   color: var(--color-black);
   transition: all .5s;
   border-radius: 5px;
   font-size: 16px;
   line-height: 22px;
}

.catalogue-product-detail a:hover {
   background: var(--color-black);
   color: #ffffff;
}

/* News */

.news-detail-page .pic-news {
   border-radius: 16px 16px 0px 0px;
   background: lightgray 50% / cover no-repeat;
   overflow: hidden;
   margin-bottom: 0;
   position: relative;
}
.news-detail-page .pic-news img {
   width: 100%;
}

.pic-news-times {
   top: 10px;
   left: 10px;
   margin-bottom: 0px;
   position: absolute;
   color: #1B1B1D;
   font-size: 13px;
   font-style: normal;
   font-weight: 400;
   line-height: 24px;
   background: #fff;
   padding: 2px 10px;
   border-radius: 30px;
}

.news-detail-page .info-news {
   width: 100%;
   border-radius: 0px 0px 16px 16px;
   background: rgba(176, 137, 88, 0.08);
   padding: 15px;
}

.news-detail-page .name-news {
   color: #252525;
   font-size: 17px;
   line-height: normal;
   font-weight: 600;
}

.news-detail-page .name-news.text-split {
   -webkit-line-clamp: 2;
   line-clamp: 2;
}

.news-detail-page .name-news:hover {
   color: #ff5605;
}

.time-news {
   color: var(--color-gray);
   margin-bottom: 10px;
}

.desc-news {
   color: #676767;
   margin-top: 5px;
   line-height: 22px;
}

.news-detail-page .news .news-name {
   margin-bottom: 0.5rem;
}

.news-detail-page .news .news-name a {
   color: #333;
   font-size: 16px;
}

.news-detail-page .news .news-name a.text-split {
   -webkit-line-clamp: 2;
   line-clamp: 2;
}

.news-detail-page .news .news-name a:hover {
   color: #ec2d3f;
}

.news-detail-page .news .news-time {
   color: #84878a;
   margin-bottom: 0.25rem;
}

.news-detail-page .news .news-desc {
   color: #333333;
   margin-top: 5px;
   line-height: 22px;
}

.othernews b {
   margin-bottom: 10px;
   font-size: 15px;
}

.title-news-connection {
   color: #252525;
   font-size: 20px;
   line-height: 26px;
   margin-bottom: 1.5rem;
   font-weight: 500;
}

/*News orther*/
.othernews {
   position: sticky;
   top: 60px;
   z-index: 11;
}

.news-other {
   margin-bottom: 15px;
}

.pic-news-other {
   width: 40%;
}

.info-news-other {
   width: 60%;
   padding-left: 10px;
}

.name-news-other {
   color: #252525;
   font-size: 14px;
   line-height: normal;
   font-weight: 600;
}

.name-news-other:hover {
   color: var(--background-static);
}

/* Contact */
.form-floating.form-floating-cus>input,
.form-floating-cus>select {
   height: 45px;
}

.form-floating.form-floating-cus>textarea {
   height: 100px;
}

.form-floating.form-floating-cus>label {
   padding: 10px 10px;
   color: var(--color-gray);
}

.contact-article {
   margin-bottom: 3rem;
}

.contact-input {
   position: relative;
   margin-bottom: 20px;
}

.contact-input input,
.contact-input textarea {
   border-radius: 0;
   border-top: none;
   border-left: none;
   border-right: none;
}

.contact-input input:focus,
.contact-input textarea:focus {
   box-shadow: none;
   outline: none;
}

.contact-input textarea {
   resize: none;
   height: 150px;
}

.contact-input .custom-file-label::after {
   content: attr(title);
}

.contact-map {
   position: relative;
   height: 500px;
}

.contact-map iframe {
   position: absolute;
   top: 0px;
   left: 0px;
   width: 100% !important;
   height: 100% !important;
}

/*Newsletter index tpl*/
.newsletter-index-page {
   padding: 50px 0;
}

.newsletter-index-page .wrap-content {
   max-width: 600px;
}

.newsletter-index-page .form-newsletter {
   position: relative;
}

.newsletter-index-page h2 {
   text-align: center;
   font-size: 28px;
   line-height: 32px;
   font-weight: 600;
   text-transform: uppercase;
   margin-bottom: 30px;
   text-align: center;
}

.newsletter-index-page .newsletter-input {
   position: relative;
   height: 50px;
   width: 100%;
}

.newsletter-index-page .newsletter-input input {
   height: 100%;
   width: 100%;
   border-radius: 5px;
   border: 1px solid #7B7B7B;
   height: 45px;
}

.newsletter-index-page #content-newsletter {
   border-radius: 5px;
   border: 1px solid #7B7B7B;
   height: 100px;
   resize: none;
}

.newsletter-index-page .newsletter-button {
   width: 240px;
   position: relative;
   margin: 25px auto 0 auto;
}

.newsletter-index-page .newsletter-button input[type="submit"] {
   border: 0px;
   color: #fff;
   height: 45px;
   border-radius: 15px;
   background: var(--color-red) url(../images/send-fill.svg) no-repeat;
   font-size: 18px;
   line-height: 32px;
   text-transform: uppercase;
   background-position: 184px 50%;
   background-size: 22px;
   padding-right: 31px;
   font-weight: 600;
   transition: all .5s;
}

.newsletter-index-page .newsletter-button input[type="submit"]:hover {
   background-position: 215px -30px;
   padding-right: 0;
}

/* Newsletter Footer*/
.footer-newsletter {
   margin: 0 auto;
   padding: 30px 0;
}

.footer-newsletter .form-newsletter {
   position: relative;
}

.footer-newsletter .newsletter-input {
   position: relative;
   height: 50px;
   width: 100%;
}

.footer-newsletter .newsletter-input input {
   height: 100%;
   width: 100%;
   border-radius: 5px;
   border: 1px solid #7B7B7B;
   background-color: transparent !important;
   height: 45px;
}

.footer-newsletter #content-newsletter {
   border-radius: 5px;
   border: 1px solid #7B7B7B;
   background-color: transparent;
   height: 97px;
   resize: none;
}

.footer-newsletter .newsletter-button {
   width: 140px;
   position: absolute;
   top: 0;
   right: 0;
}

.footer-newsletter .newsletter-button input[type="submit"] {
   border: 0px;
   color: #fff;
   height: 45px;
   border-radius: 0 4px 4px 0;
   background: var(--color-red) url(../images/send-fill.svg) no-repeat;
   font-size: 18px;
   line-height: 32px;
   text-transform: uppercase;
   background-position: 80px 50%;
   background-size: 22px;
   padding-right: 31px;
   font-weight: 600;
   transition: all .5s;
}

.footer-newsletter .newsletter-button input[type="submit"]:hover {
   background-position: 160px -30px;
   padding-right: 0;
}

.footer-newsletter-title {
   text-align: center;
   font-size: 22px;
   line-height: 32px;
   font-weight: 600;
   text-transform: uppercase;
   margin-bottom: 10px;
}

.newsletter-slogan {
   text-align: center;
   font-size: 14px;
   line-height: 24px;
   color: var(--color-gray);
}

/* Footer */
/*Animation footer*/
.waves {
   height: 15vh;
   min-height: 100px;
   max-height: 150px; }
 
 .parallax > use {
   animation: move-forever 25s cubic-bezier(0.55, 0.5, 0.45, 0.5) infinite;
   }
 
 .parallax > use:nth-child(1) {
   opacity: 0.7;
   animation-delay: -2s;
   animation-duration: 7s; }
 
 .parallax > use:nth-child(2) {
   opacity: 0.5;
   animation-delay: -3s;
   animation-duration: 10s; }
 
 .parallax > use:nth-child(3) {
   opacity: 0.3;
   animation-delay: -4s;
   animation-duration: 13s; }
 
 .parallax > use:nth-child(4) {
   animation-delay: -5s;
   animation-duration: 20s; }
 
 @keyframes move-forever {
   0% {
     transform: translate3d(-90px, 0, 0); }
   100% {
     transform: translate3d(85px, 0, 0); } }
  
.footer-article {
   background: url(../images/footer1.png)no-repeat;
   background-size: 100% 100%;
}

.footer-title {
   text-transform: uppercase;
   font-size: 15px;
   margin-bottom: 1rem;
   font-weight: 600;
   color: #ffffff;
   margin-bottom: 25px;
   padding-bottom: 15px;
   position: relative;
}

.name-company {
   text-transform: uppercase;
   font-size: 14px;
   margin-bottom: 1rem;
   font-weight: 700;
   color: #ffffff;
}
.footer-article-items .footer-info {
   color: #ffffff;
}
.footer-menu-vertical {
   list-style: none;
   padding: 0px;
   margin: 0px;
}

.footer-menu-vertical li {
   margin-bottom: 10px;
}

.footer-menu-vertical li:last-child {
   margin-bottom: 0px;
}

.footer-menu-vertical li a {
   color: #ffffff;
}

.footer-menu-vertical li a:hover {
   text-decoration: none;
   color: #ec2d3f;
}

.footer-tags {
   background: #2975B8;
}

.footer-tags .wrap-content {
   padding: 30px 15px;
}

.footer-tags-lists {
   list-style: none;
   padding: 0px;
   margin: 0px;
   align-items: center;
}

.footer-tags-lists li {
   float: left;
}

.footer-tags-lists li a {
   padding-bottom: 0.375rem;
}

.footer-powered {
   color: #ffffff;
   background-color: #212121;
}

.footer-powered .wrap-content {
   padding-top: 15px;
   padding-bottom: 15px;
}

.footer-statistic {
   text-align: right;
}

.footer-statistic span {
   padding-right: 10px;
}

.footer-statistic span:last-child {
   padding-right: 0px;
}

.footer-article-items--fanpage {
   width: 280px;
   overflow: hidden;
}

#footer-map {
   position: relative;
   height: 200px;
   overflow: hidden;
}

#footer-map iframe {
   position: absolute !important;
   width: 100% !important;
   height: 100% !important;
   top: 0px !important;
   left: 0px !important;
}


.social-media-icons li a {
   display: block;
}

.social-media-icons li a:hover {
   -webkit-animation: rotate 1s normal linear infinite;
   animation: rotate 1s normal linear infinite;
}

@keyframes rotate {
   0% {
      transform: rotate(0deg);
   }

   100% {
      transform: rotate(360deg);
   }
}

/* Like Share */
.social-plugin {
   margin-top: 10px;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: start;
   -ms-flex-align: start;
   align-items: flex-start;
   -webkit-box-pack: start;
   -ms-flex-pack: start;
   justify-content: flex-start;
}

.social-plugin .at-share-btn {
   margin-bottom: 0px !important;
}

.social-plugin .zalo-share-button {
   margin-left: 3px;
}

/* Paging */
.pagination-home .pagination .page-item .page-link {
   color: #555555;
   font-size: 0.875rem;
}

.pagination-home .pagination .page-item.active .page-link {
   color: #ffffff;
   background-color: #555555;
   border-color: #555555;
}

/* Paging Ajax */
.pagination-ajax {
   text-align: center;
   margin-top: 10px;
}

.pagination-ajax a {
   display: inline-block;
   vertical-align: top;
   margin: 0px 3px 3px 3px;
   width: 35px;
   height: 35px;
   line-height: 33px;
   color: #666 !important;
   border: 1px solid #e6e6e6;
   font-size: 13px;
   cursor: pointer;
   text-decoration: none !important;
   background-color: #ffffff;
   border-radius: 3px;
   border-radius: 30px;
}

.pagination-ajax a.current,
.pagination-ajax a:hover {
   color: #ffffff !important;
   border-color: #2f5acf;
   background-color: #2f5acf;
}

.pagination-ajax a.first,
.pagination-ajax a.last,
.pagination-ajax a.prev,
.pagination-ajax a.next {
   text-indent: -9999px;
   position: relative;
   background-color: #ffffff !important;
}

.pagination-ajax a.first:before,
.pagination-ajax a.last:before,
.pagination-ajax a.prev:before,
.pagination-ajax a.next:before {
   content: "";
   position: absolute;
   top: 0px;
   left: 0px;
   width: 100%;
   height: 100%;
   z-index: 2;
   background-color: transparent;
   background-repeat: no-repeat;
   background-position: center;
}

.pagination-ajax a.first:before {
   background-image: url(../images/page-first.png);
}

.pagination-ajax a.last:before {
   background-image: url(../images/page-last.png);
}

.pagination-ajax a.prev:before {
   background-image: url(../images/page-prev.png);
}

.pagination-ajax a.next:before {
   background-image: url(../images/page-next.png);
}

/* Popup */
#popup .modal-body {
   padding: 0px;
}

/* Hidden Google Captcha */
.grecaptcha-badge {
   display: none !important;
   width: 0px !important;
   height: 0px !important;
   visibility: hidden !important;
   overflow: hidden;
}

/* Hidden Check Grammar Coccoc */
coccocgrammar {
   display: none;
}

/* Scroll Top */
/* .scrollToTop {
   width: 41px;
   height: 41px;
   text-align: center;
   font-weight: bold;
   color: #444;
   text-decoration: none;
   position: fixed;
   bottom: 65px;
   right: 25px;
   display: none;
   z-index: 10;
   cursor: pointer;
} */

/*Google dịch*/
.ggdich-head {
   position: relative;
   cursor: pointer;
   border-radius: 40px;
   background: #FFF;
   width: 110px;
   height: 32px;
   flex-shrink: 0;
   color: #767676;
   font-size: 14px;
   font-style: normal;
   font-weight: 400;
   line-height: normal;
   text-align: center;
   display: flex;
   justify-content: center;
   align-items: center;
}

span.lang_txt {
   position: relative;
   display: inline-block;
   padding-right: 20px;
}

span.lang_txt:before {
   content: '';
   position: absolute;
   right: 0;
   transform: rotate(45deg);
   border: 1px solid #000000;
   border-top: 0px;
   border-left: 0px;
   width: 7px;
   height: 7px;
   top: calc(50% - 10px/2);
}

span.lang_icon {
   border: 1px solid #fff;
   display: inline-block;
   zoom: .7;
   margin-right: 5px;
}

#google_language_translator {
   clear: both;
   width: auto !important;
   text-align: right;
   display: none;
}

.ggdich-head .box_solang {
   position: absolute;
   top: 105%;
   right: 0;
   width: max-content;
   background: #fff;
   box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.3);
   padding: 10px;
   display: none;
   z-index: 10000;
   border-radius: 3px;
   width: 100%;
   box-sizing: border-box;
}

.ggdich-head .box_solang a {
   /* background-repeat: no-repeat; */
   /* background-position: left center; */
   /* padding-left: 40px; */
   color: #333;
   font-size: 12px;
   letter-spacing: 1px;
   height: 20px;
   display: flex;
   align-items: center;
   text-transform: uppercase;
   background-size: 30px 20px;
   margin-bottom: 10px;
   /* min-width: 120px; */
   text-decoration: none;
   text-align: center;
   justify-content: center;
}

.ggdich-head .box_solang a:last-child {
   margin-bottom: 0;
}

.ggdich-head .box_solang a:hover {
   color: #fe8800;
}

/*Chi nhánh*/
.market-container {
   width: 100%;
   padding-right: 15px;
   padding-left: 15px;
   margin-right: auto;
   margin-left: auto;
}

.market-page {
   padding: 30px 0;
}

@media (min-width: 768px) {
   .market-page {
      padding: 50px 0;
   }
}

@media (min-width: 1200px) {
   .market-page {
      padding: 50px 0 15px;
   }
}

.market-wrapper {
   position: relative;
}

.market-wrapper>* {
   margin-bottom: 15px;
}

@media (min-width: 768px) {
   .market-wrapper>* {
      margin-bottom: 0;
   }
}

.market-title {
   display: inline-block;
   font-family: "SVN-Megante";
   font-style: normal;
   font-weight: 400;
   font-size: 25px;
   line-height: 1.4;
   text-align: center;
   text-transform: uppercase;
   color: #aa1f23;
}

.market-address {
   width: 100%;
   height: 100%;
   overflow: hidden;
   margin-right: auto;
   max-width: 100%;
   max-height: 400px;
   padding: 8px;
}

.market-address ul {
   max-width: 100%;
   max-height: 360px;
   width: 100%;
   height: 100%;
   overflow-y: auto;
   margin-right: auto;
   margin: 0;
   padding: 0;
   padding-right: 10px;
}

@media (min-width: 768px) {
   .market-address ul {
      max-height: 100%;
   }
}

.market-address ul::-webkit-scrollbar-track {
   background-color: #ebebeb;
   border-radius: 30px;
}

.market-address ul::-webkit-scrollbar {
   width: 6px;
   background-color: #ebebeb;
   border-radius: 30px;
}

.market-address ul::-webkit-scrollbar-thumb {
   background-color: #b8b8b8;
   border-radius: 30px;
}

.market-address ul li:not(:last-child) {
   margin-bottom: 8px;
}

@media (min-width: 1535px) {
   .market-address ul li:not(:last-child) {
      margin-bottom: 16px;
   }
}

.market-address ul a {
   display: block;
   background: #f2f2f2;
   border: 1px solid #f2f2f2;
   border-radius: 8px;
   padding: 8px;
   text-decoration: none;
}

@media (min-width: 1536px) {
   .market-address ul a {
      padding: 8px;
   }
}

.market-address ul a span {
   display: block;
   line-height: 1.4;
   color: #333333;
   font-size: 14px;
}

@media (min-width: 1536px) {
   .market-address ul a span {
      font-size: 16px;
   }
}

.market-address ul a span:first-child {
   font-weight: 600;
   text-transform: uppercase;
   margin-bottom: 4px;
}

.market-address ul a span:last-child {
   font-weight: 400;
}

.market-address ul a:hover,
.market-address ul a.active {
   background: #fff;
   border: 1px solid #aa1f23;
   -webkit-box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
   box-shadow: 0px 4px 20px rgba(0, 0, 0, 0.05);
}

.market-address ul a:hover span:first-child,
.market-address ul a.active span:first-child {
   color: #aa1f23;
}

@media (min-width: 768px) {
   .market-address {
      position: absolute;
      left: 10px;
      top: 50%;
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%);
      max-width: 300px;
      background: #ffffff;
      -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
      box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
      border-radius: 16px;
   }
}

@media (min-width: 992px) {
   .market-address {
      left: 30px;
      max-width: 300px;
      max-height: 350px;
      padding: 12px;
   }
}

@media (min-width: 1536px) {
   .market-address {
      max-width: 365px;
      max-height: 605px;
      padding: 5px 17px 5px;
   }
}

.market-this-address {
   width: 100%;
   padding: 16px;
   max-width: 100%;
}

.market-this-address ul {
   padding: 0;
   margin: 0;
}

.market-this-address ul>li {
   position: relative;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -ms-flex-wrap: wrap;
   flex-wrap: wrap;
   -webkit-box-align: start;
   -ms-flex-align: start;
   align-items: flex-start;
   gap: 12px;
}

.market-this-address ul>li:not(:last-child) {
   margin-bottom: 16px;
}

@media (min-width: 992px) {
   .market-this-address ul>li:not(:last-child) {
      margin-bottom: 8px;
   }
}

@media (min-width: 1536px) {
   .market-this-address ul>li:not(:last-child) {
      margin-bottom: 16px;
   }
}

.market-this-address ul>li .icon {
   display: block;
   width: 20px;
   height: 20px;
   -ms-flex-negative: 0;
   flex-shrink: 0;
}

.market-this-address ul>li .icon i {
   font-size: 18px;
   color: #aa1f23;
}

@media (min-width: 1366px) {
   .market-this-address ul>li .icon {
      width: 32px;
      height: 32px;
   }
}

.market-this-address ul>li .info {
   -webkit-box-flex: 1;
   -ms-flex: 1;
   flex: 1;
}

.market-this-address ul>li .info .title {
   display: block;
   font-family: "SVN-Megante";
   font-style: normal;
   font-weight: 500;
   line-height: 1.4;
   color: #333333;
   font-size: 15px;
   margin-bottom: 4px;
}

@media (min-width: 1440px) {
   .market-this-address ul>li .info .title {
      font-size: 18px;
   }
}

.market-this-address ul>li .info .adress {
   display: block;
   font-weight: 400;
   line-height: 1.5;
   color: #333333;
   font-size: 13px;
}

@media (min-width: 1440px) {
   .market-this-address ul>li .info .adress {
      font-size: 15px;
   }
}

@media (min-width: 768px) {
   .market-this-address {
      position: absolute;
      right: 10px;
      top: 50%;
      -webkit-transform: translateY(-50%);
      transform: translateY(-50%);
      max-width: 300px;
      background: #ffffff;
      -webkit-box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
      box-shadow: 0px 4px 4px rgba(0, 0, 0, 0.25);
      border-radius: 12px;
   }
}

@media (min-width: 992px) {
   .market-this-address {
      max-width: 300px;
      right: 30px;
   }
}

@media (min-width: 1536px) {
   .market-this-address {
      padding: 8px;
      max-width: 350px;
   }
}

.market-maps .map {
   min-height: 350px !important;
}

.market-maps .map iframe {
   height: 350px !important;
   width: 100%;
}

@media (min-width: 768px) {
   .market-maps .map iframe {
      height: 500px !important;
   }
}

@media (min-width: 1536px) {
   .market-maps .map iframe {
      height: 715px !important;
   }
}

@media (min-width: 768px) {
   .market-maps .map {
      min-height: 500px !important;
   }
}

@media (min-width: 1536px) {
   .market-maps .map {
      min-height: 715px !important;
   }
}

.market-maps .map,
.market-this-address ul {
   display: none;
}

.market-maps .map.active,
.market-this-address ul.active {
   display: block;
}

/* Text Hide */
.text-split,
.text-split-2,
.text-split-3,
.text-split-4 {
   overflow: hidden;
   text-overflow: ellipsis;
   white-space: normal;
   -webkit-box-orient: vertical;
   display: -webkit-box;
   -webkit-line-clamp: 3;
   line-clamp: 3;
}

.text-split-2 {
   -webkit-line-clamp: 2;
   line-clamp: 2;
}

.text-split-3 {
   -webkit-line-clamp: 3;
   line-clamp: 3;
}

.text-split-4 {
   -webkit-line-clamp: 4;
   line-clamp: 4;
}

/* Transition All */
.transition,
.control-owl button,
.carousel-comment-media .carousel-control a span,
.menu ul li a.has-child:after,
.menu ul li ul,
.menu ul li:hover>ul,
.scale-img img,
.scale-img:hover>img,
.btn-frame .kenit-alo-circle-fill,
.support-online .kenit-alo-circle-fill {
   -webkit-transition: 0.3s all;
   transition: 0.3s all;
}

/* Scale IMG */
.scale-img {
   overflow: hidden;
   display: block;
}

.scale-img img {
   -webkit-transform: scale(1, 1);
   transform: scale(1, 1);
}

.scale-img:hover>img {
   -webkit-transform: scale(1.1, 1.1);
   transform: scale(1.1, 1.1);
}

/* Blink */
.blink {
   -webkit-animation-name: blink;
   -webkit-animation-duration: 1s;
   -webkit-animation-timing-function: linear;
   -webkit-animation-iteration-count: infinite;
   -moz-animation-name: blink;
   -moz-animation-duration: 1s;
   -moz-animation-timing-function: linear;
   -moz-animation-iteration-count: infinite;
   animation-name: blink;
   animation-duration: 1s;
   animation-timing-function: linear;
   animation-iteration-count: infinite;
}

/* Button Frame */
.btn-frame {
   display: block;
   width: 50px;
   height: 50px;
   position: fixed;
   right: 20px;
   z-index: 10;
   cursor: pointer;
}

.btn-frame i {
   width: 50px;
   height: 50px;
   border-radius: 50%;
   background: linear-gradient(180deg, rgb(0, 183, 255), rgb(255, 48, 255));
   position: relative;
   z-index: 1;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
   -webkit-box-pack: center;
   -ms-flex-pack: center;
   justify-content: center;
}

.btn-frame i img {
   vertical-align: middle;
   width: 70%;
}

.btn-frame .animated.infinite {
   -webkit-animation-iteration-count: infinite;
   animation-iteration-count: infinite;
}

.btn-frame .kenit-alo-circle {
   width: 60px;
   height: 60px;
   top: -5px;
   right: -5px;
   position: absolute;
   background-color: transparent;
   border-radius: 100%;
   border: 2px solid rgba(7, 41, 103, 0.8);
   opacity: 0.1;
   border-color: #1182fc;
   opacity: 0.5;
}

.btn-frame .zoomIn {
   -webkit-animation-name: zoomIn;
   animation-name: zoomIn;
}

.btn-frame .animated {
   -webkit-animation-duration: 1s;
   animation-duration: 1s;
   -webkit-animation-fill-mode: both;
   animation-fill-mode: both;
}

.btn-frame .kenit-alo-circle-fill {
   width: 70px;
   height: 70px;
   top: -10px;
   right: -10px;
   position: absolute;
   border-radius: 100%;
   border: 2px solid transparent;
   background-color: rgba(7, 41, 103, 0.35);
   opacity: 0.4;
}

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

/* Zalo */
.btn-zalo {
   bottom: 315px;
}

/* Phone */
.btn-phone {
   bottom: 230px;
}

/* Messenger */
.js-facebook-messenger-top-header {
   background: #487dfc;
   color: #fff;
   height: 35px;
   display: flex;
   align-items: center;
   justify-content: center;
   text-align: center;
   border-radius: 5px 5px 0 0;
}

.js-facebook-messenger-container.closed {
   display: none !important;
}

.js-facebook-messenger-tooltip {
   bottom: 97px;
   right: 97px;
   color: #404040;
   background: #fff;
}

.js-facebook-messenger-tooltip.closed {
   display: none !important;
}

.js-facebook-messenger-box,
.js-facebook-messenger-button {
   z-index: 999;
}

.js-facebook-messenger-tooltip {
   z-index: 999;
   display: none;
   position: fixed;
   text-align: center;
   border-radius: 10px;
   overflow: hidden;
   font-size: 12px;
   line-height: 1;
   padding: 10px;
   border: 1px solid rgba(0, 0, 0, 0.1);
   -webkit-box-shadow: rgba(0, 0, 0, 0.15) 0 2pt 10pt;
   box-shadow: rgba(0, 0, 0, 0.15) 0 2pt 10pt;
   z-index: 1000000000000000019884624838656;
}

.js-facebook-messenger-close-tooltip {
   width: 10px;
   height: 10px;
   display: inline-block;
   cursor: pointer;
   margin-left: 10px;
}

.js-facebook-messenger-box {
   z-index: 999;
}

.js-facebook-messenger-box.rubberBand {
   -webkit-animation-name: rubberBand;
   animation-name: rubberBand;
}

.js-facebook-messenger-box.animated {
   -webkit-animation-duration: 1s;
   animation-duration: 1s;
   -webkit-animation-fill-mode: both;
   animation-fill-mode: both;
}

.js-facebook-messenger-button,
.js-facebook-messenger-tooltip {
   z-index: 999;
}

.js-facebook-messenger-box {
   display: block;
   position: fixed;
   cursor: pointer;
   bottom: 150px;
   right: 17px;
   width: 56px;
   height: 56px;
   text-align: center;
   background: #1182fc;
   border-radius: 100%;
   overflow: hidden;
   z-index: 99;
   -webkit-box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.3);
   box-shadow: 1px 1px 4px 0 rgba(0, 0, 0, 0.3);
}

.js-facebook-messenger-box.rotate svg#fb-msng-icon {
   -webkit-transform: rotate(0deg);
   transform: rotate(0deg);
}

.js-facebook-messenger-box svg#fb-msng-icon {
   width: 32px;
   height: 33px;
   position: absolute;
   top: 13px;
   left: 12px;
   opacity: 1;
   overflow: hidden;
   -webkit-transition: opacity 160ms ease-in-out, transform 160ms ease-in-out;
   -webkit-transition: opacity 160ms ease-in-out,
      -webkit-transform 160ms ease-in-out;
   transition: opacity 160ms ease-in-out, -webkit-transform 160ms ease-in-out;
   transition: opacity 160ms ease-in-out, transform 160ms ease-in-out;
   transition: opacity 160ms ease-in-out, transform 160ms ease-in-out,
      -webkit-transform 160ms ease-in-out;
}

.js-facebook-messenger-box.rotate svg#close-icon {
   -webkit-transform: rotate(-45deg);
   transform: rotate(-45deg);
}

.js-facebook-messenger-box svg#close-icon {
   opacity: 0;
   width: 19px;
   height: 20px;
   position: absolute;
   top: 19px;
   left: 19px;
   -webkit-transition: opacity 160ms ease-in-out, transform 160ms ease-in-out;
   -webkit-transition: opacity 160ms ease-in-out,
      -webkit-transform 160ms ease-in-out;
   transition: opacity 160ms ease-in-out, -webkit-transform 160ms ease-in-out;
   transition: opacity 160ms ease-in-out, transform 160ms ease-in-out;
   transition: opacity 160ms ease-in-out, transform 160ms ease-in-out,
      -webkit-transform 160ms ease-in-out;
}

.js-facebook-messenger-container,
.js-facebook-messenger-container-button {
   z-index: 1000;
}

.js-facebook-messenger-container {
   width: 250px;
   position: fixed;
   opacity: 0;
   -webkit-transform: translateY(50px);
   transform: translateY(50px);
   bottom: 110px;
   right: 90px;
   border-radius: 10px;
   pointer-events: none;
   -webkit-box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06),
      0 2px 32px rgba(0, 0, 0, 0.16);
   box-shadow: 0 1px 6px rgba(0, 0, 0, 0.06), 0 2px 32px rgba(0, 0, 0, 0.16);
   -webkit-transition: transform 160ms ease-in-out, opacity 160ms ease-in-out;
   -webkit-transition: opacity 160ms ease-in-out,
      -webkit-transform 160ms ease-in-out;
   transition: opacity 160ms ease-in-out, -webkit-transform 160ms ease-in-out;
   transition: transform 160ms ease-in-out, opacity 160ms ease-in-out;
   transition: transform 160ms ease-in-out, opacity 160ms ease-in-out,
      -webkit-transform 160ms ease-in-out;
}

.js-facebook-messenger-top-head {
   width: 220px;
   color: #ffffff;
   background: #1182fc;
   display: block;
   position: relative;
   width: 220px;
   background: #1182fc;
   color: #ffffff;
   text-align: center;
   line-height: 1;
   padding: 10px;
   font-size: 14px;
   border-top-left-radius: 10px;
   border-top-right-radius: 10px;
}

.js-facebook-messenger-container iframe,
.js-facebook-messenger-container-button iframe {
   border-bottom-left-radius: 10px;
   border-bottom-right-radius: 10px;
}

.js-facebook-messenger-box,
.js-facebook-messenger-button,
.js-facebook-messenger-tooltip {
   z-index: 999;
}

.js-facebook-messenger-container,
.js-facebook-messenger-container-button {
   z-index: 1000;
}

.js-facebook-messenger-top-head {
   color: #ffffff;
   background: #1182fc;
   width: 220px;
}

.js-facebook-messenger-tooltip {
   color: #404040;
   background: #fff;
}

.js-facebook-messenger-container.open {
   -webkit-transform: translateY(0px);
   transform: translateY(0px);
   opacity: 1;
   pointer-events: all;
}

.js-facebook-messenger-tooltip {
   bottom: 97px;
   right: 97px;
}

.js-facebook-messenger-box.open svg#fb-msng-icon {
   opacity: 0;
}

.js-facebook-messenger-box.rotate.open svg#close-icon {
   -webkit-transform: rotate(0deg);
   transform: rotate(0deg);
}

.js-facebook-messenger-box.open svg#close-icon {
   opacity: 1;
}

/* Cart Fix */
.cart-fixed {
   position: fixed;
   right: 20px;
   bottom: 390px;
   z-index: 10;
   background: #4b4f56;
   width: 50px;
   height: 50px;
   text-align: center;
   color: #fff !important;
   border-radius: 100%;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
   -webkit-box-pack: center;
   -ms-flex-pack: center;
   justify-content: center;
}

.cart-fixed i {
   font-size: 20px;
   animation: ring_phone 1.4s infinite;
}

.cart-fixed span {
   position: absolute;
   top: 0px;
   right: -5px;
   color: #ffffff;
   width: 25px;
   height: 25px;
   background: #ff5605;
   text-align: center;
   line-height: 25px;
   font-size: 11px;
   border-radius: 100%;
}

/* Toolbar */
@keyframes tada {
   0% {
      transform: scaleX(1);
   }

   10%,
   20% {
      transform: scale3d(0.9, 0.9, 0.9) rotate(-3deg);
   }

   30%,
   50%,
   70%,
   90% {
      transform: scale3d(1.3, 1.3, 1.3) rotate(3deg);
   }

   40%,
   60%,
   80% {
      transform: scale3d(1.3, 1.3, 1.3) rotate(-3deg);
   }

   to {
      transform: scaleX(1);
   }
}

@-webkit-keyframes dash {
   to {
       fill: #f79c32;
       stroke-dashoffset: 0;
   }
}

@keyframes dash {
   to {
       fill: #f79c32;
       stroke-dashoffset: 0;
   }
}

.toolbar {
   background: var(--background-static);
   width: 100%;
   padding: 3vw;
   bottom: 0px;
   position: fixed;
   z-index: 500;
   height: auto;
   left: 0px;
   max-height: 65px;
}

.toolbar ul {
   list-style: none;
   display: flex;
   align-items: center;
   justify-content: space-between;
   padding: 0px;
   margin: 0px;
}

.toolbar ul li {
   text-align: center;
   width: 25%;
}

.toolbar ul li a {
   display: block;
   width: 100%;
   cursor: pointer;
}

.toolbar ul li a img {
   height: 20px;
   width: 20px;
   animation: tada 1.2s infinite;
}

.toolbar ul li a span {
   color: #fff;
   font-size: 10px;
}

/* Fixbar */
.fixbar {
   bottom: 0;
   display: block;
   background: #f0eff4;
   border-top: 1px solid #ddd;
   width: 100%;
   -webkit-box-sizing: border-box;
   box-sizing: border-box;
   position: fixed;
   margin: 0;
   z-index: 500;
   -webkit-backface-visibility: hidden;
   backface-visibility: hidden;
   height: 50px;
}

.fixbar ul {
   margin: 0px;
   padding: 0px;
   list-style: none;
}

.fixbar ul li {
   margin: 0 auto 10px;
   text-align: center;
   width: 25%;
   float: left;
}

.fixbar .icon-cart-mobile,
.fixbar .icon-cart-new,
.fixbar .icon-home-new,
.fixbar .icon-hotdeal-new {
   width: 20px;
   height: 20px;
   display: block;
   margin: 8px auto 0;
}

.fixbar .icon-cart-mobile {
   background: url(../images/cart-mobile.png) no-repeat;
}

.cart-total-head-mobile {
   font-size: 10px;
   position: absolute;
   background: red;
   color: #fff !important;
   border-radius: 50%;
   height: 15px;
   width: 15px;
   line-height: 15px;
   top: 5px;
   margin-left: 5px;
}

.fixbar ul li a {
   font-size: 11px;
   text-decoration: none;
   color: #333;
}

.fixbar ul li a i {
   font-size: 20px;
}

/* Plugbar */
.plugbar {
   position: fixed;
   bottom: 0;
   left: 0;
   border-top: 1px solid #eae6e6;
   width: 100%;
   right: 0;
   max-width: 767px;
   margin: 0 auto;
   background: #ffffff;
   padding: 9px 10px 10px 7px;
   z-index: 10;
}

.plugbar ul {
   list-style: none;
   padding: 0;
   margin: 0px;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
   -webkit-box-pack: justify;
   -ms-flex-pack: justify;
   justify-content: space-between;
}

.plugbar ul li {
   width: 20%;
   float: left;
}

.plugbar ul li a {
   display: block;
   color: #696969;
   font-size: 12px;
   text-align: center;
   position: relative;
}

.plugbar ul li a i {
   font-size: 20px;
   color: #696969;
}

.plugbar ul li a span {
   position: absolute;
   width: 50px;
   height: 50px;
   top: -40px;
   left: calc(50% - 50px / 2);
   font-size: 14px;
   display: block;
   border: 1px solid rgba(234, 230, 230, 0.5);
   border-radius: 100%;
}

/* Combo Phone */
.support-online {
   position: fixed;
   z-index: 999;
   left: 10px;
   bottom: 0px;
}

.support-online a {
   position: relative;
   margin: 20px 10px;
   text-align: left;
   width: 40px;
   height: 40px;
}

.support-online i {
   width: 40px;
   height: 40px;
   background: #43a1f3;
   color: #ffffff;
   border-radius: 100%;
   font-size: 20px;
   text-align: center;
   line-height: 1.9;
   position: relative;
   z-index: 999;
}

.support-online a {
   display: block;
}

.support-online a span {
   border-radius: 2px;
   text-align: center;
   background: #67b634;
   padding: 9px;
   display: none;
   width: 180px;
   margin-left: 10px;
   position: absolute;
   color: #ffffff;
   z-index: 999;
   top: 0px;
   left: 40px;
   -webkit-transition: all 0.2s ease-in-out 0s;
   transition: all 0.2s ease-in-out 0s;
   -webkit-animation: headAnimation 0.7s 1;
   animation: headAnimation 0.7s 1;
}

.support-online a:hover span {
   display: block;
}

.support-online a span:before {
   content: "";
   width: 0;
   height: 0;
   border-style: solid;
   border-width: 10px 10px 10px 0;
   border-color: transparent #67b634 transparent transparent;
   position: absolute;
   left: -10px;
   top: 10px;
}

.support-online .kenit-alo-circle-fill {
   width: 60px;
   height: 60px;
   top: -10px;
   position: absolute;
   border-radius: 100%;
   border: 2px solid transparent;
   background-color: rgba(0, 175, 242, 0.5);
   opacity: 0.75;
   right: -10px;
}

.support-online .kenit-alo-circle {
   width: 50px;
   height: 50px;
   top: -5px;
   right: -5px;
   position: absolute;
   background-color: transparent;
   border-radius: 100%;
   border: 2px solid rgba(30, 30, 30, 0.4);
   opacity: 0.1;
   border-color: #0089b9;
   opacity: 0.5;
}

.support-online .support-online .btn-support {
   cursor: pointer;
}

.support-online .mes i {
   background: orange;
}

.support-online .sms i {
   background: red;
}

.support-online .call-now i {
   background: green;
}

/* Phone Switch */
.widget-mobile {
   position: fixed;
   left: 50%;
   -webkit-transform: translateX(-50%);
   transform: translateX(-50%);
   bottom: 10px;
   z-index: 9999999;
}

#my-phone-circle {
   position: relative;
   width: 50px !important;
   height: 50px !important;
}

.wcircle-open .wcircle-icon i:before {
   content: "\f00d";
}

.wcircle-icon {
   background: #1282fc;
   border-radius: 50%;
   position: relative !important;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
   -webkit-box-pack: center;
   -ms-flex-pack: center;
   justify-content: center;
}

.wcircle-icon:before {
   position: absolute;
   content: "";
   width: 60px;
   height: 60px;
   background: rgba(18, 130, 252, 0.5);
   border: 1px solid #ffffff;
   border-radius: 50%;
   left: -5px;
   top: -5px;
   -webkit-animation: pulse 1s infinite ease-in-out;
   animation: pulse 1s infinite ease-in-out;
}

.wcircle-icon:after {
   position: absolute;
   content: "";
   width: 80px;
   height: 80px;
   background: rgba(18, 130, 252, 0.5);
   border-radius: 50%;
   left: -15px;
   top: -15px;
   -webkit-animation: zoomIn 2s infinite ease-in-out;
   animation: zoomIn 2s infinite ease-in-out;
}

.wcircle-menu {
   position: absolute !important;
   left: 0;
   top: 0;
   display: none;
}

.wcircle-menu-item {
   width: 50px;
   height: 50px;
   background: #1282fc;
   border-radius: 50%;
   display: -webkit-box;
   display: -ms-flexbox;
   display: flex;
   -webkit-box-align: center;
   -ms-flex-align: center;
   align-items: center;
   -webkit-box-pack: center;
   -ms-flex-pack: center;
   justify-content: center;
}

.wcircle-menu-item img {
   width: 50px;
   height: 50px;
   display: block;
   border-radius: 50%;
}

.wcircle-menu-item i {
   font-size: 25px;
   color: #ffffff;
   position: relative;
   z-index: 9999;
}

.wcircle-icon i {
   font-size: 25px;
   color: #ffffff;
   position: relative;
   z-index: 9999;
}

.shake-anim {
   -webkit-animation: shake-anim 1s infinite ease-in-out;
   animation: shake-anim 1s infinite ease-in-out;
   -webkit-transform-origin: 50% 50%;
   transform-origin: 50% 50%;
}

.wrap-newsnb .wrap-content {
   position: relative;
}

a.name-newsnb {
   color: #000;
   font-size: 14px;
   margin: 0 0 10px 0;
   line-height: normal;
}

a.name-newsnb.text-split {
   -webkit-line-clamp: 2;
   line-clamp: 2;
}

a.name-newsnb:hover {
   color: var(--color-dark-red);
}

.desc-newsnb {
   color: #333;
}

.video-main {
   position: relative;
   height: 300px;
}

.video-main iframe {
   position: absolute;
   width: 100%;
   height: 100%;
   top: 0px;
   left: 0px;
}

.listvideos {
   width: 100%;
   height: 40px;
   padding: 0px 10px;
   border: 1px solid #ccc;
   color: var(--color-black);
   margin-top: 10px;
   cursor: pointer;
}

.item-video1 img {
   max-height: 292px;
}

.item-video2 img {
   height: 102px;
}

.pic-video {
   position: relative;
   cursor: pointer;
}

.pic-video:before {
   content: "";
   position: absolute;
   width: 50px;
   height: 35px;
   top: calc(50% - 17px);
   left: calc(50% - 25px);
   z-index: 1;
   background: url(../images/play.png) no-repeat center center;
   cursor: pointer;
   background-size: cover;
}

.pic-video img {
   width: 100%;
}

.p-relative {
   position: relative;
}

.control-video.control-owl button {
   top: -66px;
   width: 30px;
   height: 30px;
   border-radius: 50%;
   background: #ffffff;
   left: 5px;
}

.control-video.control-owl button.owl-next {
   right: 5px;
   left: initial;
}

.pic-video-2 {
   position: relative;
   cursor: pointer;
}

.pic-video-2:before {
   content: "";
   position: absolute;
   width: 50px;
   height: 35px;
   top: calc(50% - 17px);
   left: calc(50% - 25px);
   z-index: 1;
   background: url(../images/play.png) no-repeat center center;
   cursor: pointer;
   background-size: cover;
}

.pic-video-2 img {
   width: 100%;
}

.name-video {
   font-size: 16px;
   color: var(--color-black);
   margin-bottom: 0px;
}

.owl-video {
   margin-top: 10px;
}

.newshome-intro .name-newshome {
   margin: 10px 0;
}

.newshome-intro .view-newshome {
   margin-top: 10px;
}

.newshome-scroll {
   overflow: hidden;
   max-height: 190px;
}

.news-slick {
   display: flex;
   margin-bottom: 20px;
}

.news-slick h3 {
   margin: 0;
}

.news-slick h3 a.name-newshome {
   margin-bottom: 10px;
}

.news-slick .img {
   width: 150px;
}

.news-slick .info {
   width: calc(100% - 150px);
   padding-left: 15px;
}

.flex_ttnb {
   display: flex;
   flex-flow: row wrap;
   justify-content: space-between;
}

.newshome-intro {
   width: 100%;
   /* max-width: 380px; */
}

.pic-newshome-normal {
   float: left;
   width: 34%;
   margin-right: 3%;
   margin-bottom: 0px;
}

.pic-newshome-normal img {
   width: 100%;
}

.info-newshome-normal {
   float: left;
   width: calc(100% - 37%);
}

.name-newshome {
   color: #10598c;
   font-size: 18px;
   line-height: normal;
   font-weight: 600;
   background: linear-gradient(to top, #0e4a78, #024b87b8);
   -webkit-background-clip: text;
   -webkit-text-fill-color: transparent;
}

.name-newshome.text-split {
   -webkit-line-clamp: 2;
   line-clamp: 2;
}

.name-newshome.text-split a {
   color: #000;
}

.time-newshome {
   color: var(--color-gray);
   margin-bottom: 10px;
}

.desc-newshome {
   color: #363636;
   margin-bottom: 0px;
   text-align: justify;
   -webkit-line-clamp: 4;
}

.desc-home-cl.text-split {
   -webkit-line-clamp: 2;
   line-clamp: 2;
}

.view-newshome {
   width: 140px;
   height: 40px;
   display: flex;
   align-items: center;
   justify-content: center;
   border: 1px solid #ccc;
   color: #000;
}

.view-newshome:hover {
   color: #000;
}

.pic-product {
   background: #ffffff;
   position: relative;
   margin-bottom: 1rem;
   border-radius: 8px;
   overflow: hidden;
   border: solid 1px #9d9d9d;
}

.pic-product img {
   width: 100%;
}

.product-tool {
   /* opacity: 0;
   visibility: hidden; */
   position: absolute;
   width: 100%;
   left: 0px;
   bottom: 0px;
   z-index: 1;
}

.product-tool a {
   cursor: pointer;
   width: 50%;
   padding: 10px;
   text-align: center;
   color: #ffffff;
   background-color: rgb(0 0 0 / 0.6);
}

.product-tool a:hover {
   background-color: rgb(0 0 0 / 0.8);
}

.product-tool a svg {
   margin-right: 5px;
}

.product-tool a span {
   text-transform: capitalize;
   font-size: 12px;
   font-weight: 300;
}

.box-product:hover .product-tool {
   opacity: 1;
   visibility: visible;
}

.name-product {
   font-size: 15px;
   color: #000000;
   margin-bottom: 10px;
   text-align: center;
   font-weight: 500;
}

.name-product.text-split {
   line-clamp: 2;
   -webkit-line-clamp: 2;
}

.price-product {
   margin-bottom: 10px;
   text-align: center;
   display: flex;

}

.price-new,
.price-old {
   font-size: 15px;
   color: #242424;
   font-weight: 700;
   display: inline-block;
   width: 50%;
}

.price-new.full-width {
   width: 100%;
}

.price-old {
   text-decoration: line-through;
   font-weight: 300;
}

.price-per {
   position: absolute;
   top: 10px;
   right: 10px;
   color: #ffffff;
   background: #2f5acf;
   font-size: 11px;
   border-radius: 5px;
   width: 40px;
   height: 22px;
   text-align: center;
   line-height: 22px;
}

.color-pro-page {
   cursor: pointer;
   vertical-align: top;
   position: relative;
   width: 48px;
   height: 32px;
   margin: 0 8px 5px 0;
   background-repeat: no-repeat;
   background-size: contain;
   background-position: center center;
   border: 1px solid #dadada;
   transition: 0.3s;
   border-radius: 2px;
}

.color-pro-page.active {
   border-color: var(--color-dark-red);
}

.color-pro-page.active:after {
   content: "";
   position: absolute;
   bottom: 0px;
   right: 0px;
   width: 13px;
   height: 13px;
   background-repeat: no-repeat;
   background-image: url(../images/check-cart.png);
}

.tooltip-color {
   visibility: hidden;
   max-width: 100px;
   min-width: 50px;
   background-color: black;
   color: #fff;
   text-align: center;
   border-radius: 20px;
   padding: 5px 10px;
   position: absolute;
   z-index: 1;
   bottom: 100%;
   left: 50%;
   transform: translateX(-50%);
   opacity: 0;
}

.tooltip-color:after {
   content: "";
   position: absolute;
   top: 100%;
   left: 50%;
   margin-left: -5px;
   border-width: 5px;
   border-style: solid;
   border-color: black transparent transparent transparent;
}

.color-pro-page:hover .tooltip-color {
   visibility: visible;
   bottom: 130%;
   opacity: 1;
   transition: all 0.5s;
}

.color-pro-page input[type="radio"] {
   display: none;
}

.cart-product {
   margin-bottom: 0px;
}

.cart-product span {
   cursor: pointer;
   width: calc(50% - 3px);
   color: #ffffff;
   text-transform: capitalize;
   text-align: center;
   padding: 7px 5px;
   border-radius: 3px;
}

.cart-add {
   background-color: var(--color-red);
}

.cart-add:hover {
   background-color: var(--color-dark-red);
}

.cart-buy {
   background-color: var(--color-green);
}

.cart-buy:hover {
   background-color: var(--color-dark-green);
}

.dm-noibat {
   max-width: 1000px;
   position: relative;
   margin: auto;
}

.dm-noibat a {
   cursor: pointer;
   color: #333;
   transition: 0.4s;
   text-transform: capitalize;
   font-weight: 400;
   font-size: 14px;
   text-align: center;
   position: relative;
   display: block;
   background: #f7f7f7;
   border-radius: 8px;
   border: 1px solid #eaeaea;
   height: 100%;
   padding: 10px;
}

.dm-noibat a:hover,
.dm-noibat a.active {
   background: #212121;
   color: #fff;
}

.cats-bar {
   width: 50px;
   padding-top: 3px;
   position: relative;
}

.cats-bar-icon {
   width: 30px;
   cursor: pointer;
}

.cats-bar-icon span {
   display: block;
   width: 100%;
   height: 2px;
   background: #505050;
   transition: all 0.3s;
   position: relative;
}

.cats-bar-icon span+span {
   margin-top: 5px;
}

.cats-bar-icon.active span:nth-child(1) {
   animation: ease 0.7s top forwards;
}

.cats-bar-icon.not-active span:nth-child(1) {
   animation: ease 0.7s top-2 forwards;
}

.cats-bar-icon.active span:nth-child(2) {
   animation: ease 0.7s scaled forwards;
}

.cats-bar-icon.not-active span:nth-child(2) {
   animation: ease 0.7s scaled-2 forwards;
}

.cats-bar-icon.active span:nth-child(3) {
   animation: ease 0.7s bottom forwards;
}

.cats-bar-icon.not-active span:nth-child(3) {
   animation: ease 0.7s bottom-2 forwards;
}

@keyframes top {
   0% {
      top: 0;
      transform: rotate(0);
   }

   50% {
      top: 6px;
      transform: rotate(0);
   }

   100% {
      top: 6px;
      transform: rotate(45deg);
   }
}

@keyframes top-2 {
   0% {
      top: 6px;
      transform: rotate(45deg);
   }

   50% {
      top: 6px;
      transform: rotate(0deg);
   }

   100% {
      top: 0;
      transform: rotate(0deg);
   }
}

@keyframes bottom {
   0% {
      bottom: 0;
      transform: rotate(0);
   }

   50% {
      bottom: 8px;
      transform: rotate(0);
   }

   100% {
      bottom: 8px;
      transform: rotate(135deg);
   }
}

@keyframes bottom-2 {
   0% {
      bottom: 8px;
      transform: rotate(135deg);
   }

   50% {
      bottom: 8px;
      transform: rotate(0);
   }

   100% {
      bottom: 0;
      transform: rotate(0);
   }
}

@keyframes scaled {
   50% {
      transform: scale(0);
   }

   100% {
      transform: scale(0);
   }
}

@keyframes scaled-2 {
   0% {
      transform: scale(0);
   }

   50% {
      transform: scale(0);
   }

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

.cats-owl.list-hot {
   width: calc(100% - 50px);
}

@-webkit-keyframes rotating {
   from {
      -webkit-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      transform: rotate(0deg);
   }

   to {
      -webkit-transform: rotate(360deg);
      -o-transform: rotate(360deg);
      transform: rotate(360deg);
   }
}

@keyframes rotating {
   from {
      -ms-transform: rotate(0deg);
      -moz-transform: rotate(0deg);
      -webkit-transform: rotate(0deg);
      -o-transform: rotate(0deg);
      transform: rotate(0deg);
   }

   to {
      -ms-transform: rotate(360deg);
      -moz-transform: rotate(360deg);
      -webkit-transform: rotate(360deg);
      -o-transform: rotate(360deg);
      transform: rotate(360deg);
   }
}

.choose_list span {
   text-transform: capitalize;
   cursor: pointer;
   display: inline-block;
   position: relative;
   padding: 0 10px;
}

.choose_list span:last-child:after {
   display: none;
}

.choose_list span:after {
   content: "";
   width: 1px;
   height: 10px;
   background: #ddd;
   position: absolute;
   right: 0;
   top: 6px;
}

.choose_list span.choosed {
   color: #2f5acf;
}

.btn_sp a {
   color: #fff;
   background: #000;
   width: 100px;
   display: flex;
   align-items: center;
   justify-content: center;
   height: 30px;
   border-radius: 60px;
   font-size: 13px;
}

.btn_sp a:hover {
   color: #fff;
   background-color: #0009;
}

.d-title-choose-list {
   margin-bottom: 10px;
   padding: 5px 0;
   margin-top: 10px;
}

/* dat lich */
.div-datlich {
   width: 46%;
}

.newsletter-booking {
   margin-bottom: 5px;
}

.newsletter-booking input {
   border-radius: 0;
   border: none;
   border-bottom: 1px solid var(--background-static);
   background: none;
   padding: 0;
}

.newsletter-booking textarea {
   border-radius: 0;
   border: none;
   border-bottom: 1px solid var(--background-static);
   background: none;
   margin-bottom: 10px;
   padding: 0;
}

.newsletter-checkbox input {
   outline: none;
   width: 15px;
   height: 15px;
}

.label-checkbox {
   color: #7e7e7e;
   position: relative;
   top: 1px;
   margin-left: 10px;
}

.booking-button input {
   width: 86px;
   height: 37px;
   font-weight: 600;
   color: #fff;
   text-transform: capitalize;
}

.khung-datlich {
   background: rgba(255, 255, 255, 0.8);
   padding: 40px;
   border: 1px solid var(--background-static);
   border-radius: 20px;
}

.desc-dongy {
   color: #7e7e7e;
   font-size: 13px;
   font-style: italic;
   margin-top: 5px;
}

.btn-datlich {
   position: fixed;
   bottom: 455px;
   right: 10px;
   padding: 10px;
   border-radius: 5px;
   z-index: 99;
   background: #333;
   color: #fff;
   font-size: 14px;
   text-align: center;
   text-decoration: none !important;
}

.btn-datlich i {
   font-size: 20px;
}

.btn-datlich:hover {
   color: #ffff00;
   transition: 0.2s;
}

/*.wave {
   width: 56px;
   height: 56px;
   background: linear-gradient(180deg, rgb(0, 183, 255), rgb(255, 48, 255));
   box-shadow: inset 0 0 50px rgba(0, 0, 0, 0.5);
   left: 0;
   top: -80px;
   transition: 0.4s;
}

.wave::after,
.wave::before {
   width: 200%;
   height: 200%;
   content: "";
   position: absolute;
   top: 0;
   left: 50%;
   transform: translate(-50%, -75%);
}

.wave::after {
   border-radius: 25%;
   background-color: rgba(20, 20, 20, 0.5);
   animation: wave 10s linear infinite;
}

.wave::before {
   border-radius: 40%;
   background-color: rgb(255, 48, 255);
   animation: wave 5s linear infinite;
}

@keyframes wave {
   0% {
      transform: translate(-50%, -75%) rotate(0deg);
   }

   100% {
      transform: translate(-50%, -75%) rotate(360deg);
   }
}*/

.section-product {
   padding-top: 60px;
}

.menu ul li ul li a:hover {
   color: red;
} 

.category_product1 {
   padding: 60px 0;
   overflow: hidden;
}

.category_product1_item {
   border-radius: 15px;
   display: block;
   position: relative;
}

.footer {
   margin-bottom: 0 !important;
}

.cart_ic_box {
   position: absolute;
   right: 10px;
   top: 58px;
   width: 32px;
   animation: ring_phone 1.6s infinite;
   cursor: pointer;
}

@keyframes ring_phone {
   0% {
      transform: rotate(0) scale(1) skew(1deg);
   }

   10% {
      transform: rotate(-25deg) scale(1) skew(1deg);
   }

   20% {
      transform: rotate(25deg) scale(1) skew(1deg);
   }

   30% {
      transform: rotate(-25deg) scale(1) skew(1deg);
   }

   40% {
      transform: rotate(25deg) scale(1) skew(1deg);
   }

   50% {
      transform: rotate(0) scale(1) skew(1deg);
   }

   100% {
      transform: rotate(0) scale(1) skew(1deg);
   }
}

.btn_custom {
   position: relative;
   background: transparent;
   color: #212121 !important;
   border: 2px solid #212121;
   padding: 8px 16px;
   margin-top: 10px;
   display: inline-block;
}

.btn_custom::before,
.btn_custom::after {
   content: "";
   display: block;
   position: absolute;
   width: 10%;
   background: #fff;
   height: 4px;
   transition: all 0.45s cubic-bezier(0.86, 0, 0.07, 1);
}

.btn_custom::before {
   right: 20%;
   top: -3px;
   transform: skewX(-45deg);
}

.btn_custom::after {
   left: 20%;
   bottom: -3px;
   transform: skewX(45deg);
}

.btn_custom:hover::before {
   right: 80%;
}

.btn_custom:hover::after {
   left: 80%;
}

.newsletter_index h2 {
   color: #141414;
   font-size: 30px;
   margin-bottom: 4px;
   font-weight: 600;
}

.newsletter-group {
   display: flex;
   gap: 10px;
}

/*Sản Phẩm*/
.support-list {
   text-align: center;
   position: relative;
   margin-bottom: 20px;
   background: #f9f9fa;
   display: flex;
   justify-content: space-evenly;
   align-items: center;
   padding: 17px 10px;
}

.support-list a {
   font-size: 14px;
   color: #1a1a1a;
   text-transform: uppercase;
   font-weight: 500;
   display: inline-block;
   margin: 10px;
   flex: auto;
}

.support-list a:hover,
.support-list a.active {
   color: var(--main-color);
}

.grid-support {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   grid-gap: 30px;
}

.item-support {
   display: flex;
   flex-wrap: wrap;
   justify-content: space-between;
   align-items: flex-start;
   box-shadow: 0 0 5px -1px #00000029;
   position: relative;
   padding: 10px;
}

.item-support .content {
   width: calc(100% - 75px);
}

.item-support h3 a {
   font-size: 16px;
   font-weight: 700;
   text-transform: uppercase;
   color: #1a1a1a;
   line-clamp: 1;
   -webkit-line-clamp: 1;
}

.item-support p {
   font-size: 14px;
   line-height: 25px;
   height: 75px;
}

.readsupport {
   margin-top: 30px;
   display: inline-block;
   border: 1px solid var(--main-color);
   color: #333;
   text-transform: capitalize;
   padding: 7px 30px;
   border-radius: 50px;
   background: #fff;
   font-weight: 500;
}

.item-support:hover h3 a {
   color: var(--main-color);
}

.readsupport:hover {
   background: var(--main-color);
   color: #fff;
}

.support-cat {
   text-align: center;
   position: relative;
   margin-bottom: 20px;
   display: flex;
   justify-content: space-evenly;
   align-items: center;
}

.support-cat a {
   font-size: 14px;
   color: #1a1a1a;
   text-transform: uppercase;
   font-weight: 400;
   display: inline-block;
   margin: 10px;
}

.support-cat a:hover,
.support-cat a.active {
   color: var(--main-color);
}

.support-item {
   text-align: center;
   position: relative;
   margin-bottom: 20px;
   display: flex;
   justify-content: space-evenly;
   align-items: center;
}

.support-item a {
   font-size: 14px;
   color: #1a1a1a;
   text-transform: uppercase;
   font-weight: 400;
   display: inline-block;
   margin: 10px;
}

.support-item a:hover,
.support-item a.active {
   color: var(--main-color);
}

.grid-project {
   display: grid;
   grid-template-columns: repeat(3, 1fr);
   grid-gap: 30px;
}

.item-project a.scale-img {
   position: relative;
}

.item-project a.scale-img:before {
   position: absolute;
   content: '';
   left: -40px;
   top: -40px;
   width: 40px;
   height: 40px;
   border-left: 2px solid #fff;
   border-top: 2px solid #fff;
   transition: all 0.5s;
   z-index: 5;
}

.item-project a.scale-img:after {
   position: absolute;
   content: '';
   right: -40px;
   bottom: -40px;
   width: 40px;
   height: 40px;
   border-right: 2px solid #fff;
   border-bottom: 2px solid #fff;
   transition: all 0.5s;
   z-index: 2;
}

.item-project a.scale-img .box-content:before {
   position: absolute;
   content: '';
   right: -40px;
   top: -40px;
   width: 40px;
   height: 40px;
   border-right: 2px solid #fff;
   border-top: 2px solid #fff;
   transition: all 0.5s;
   z-index: 2;
}

.item-project a.scale-img .box-content:after {
   position: absolute;
   content: '';
   left: -40px;
   bottom: -40px;
   width: 40px;
   height: 40px;
   border-left: 2px solid #fff;
   border-bottom: 2px solid #fff;
   transition: all 0.5s;
   z-index: 2;
}

.item-project .box-content {
   background: rgba(0, 0, 0, 0);
   transition: all 0.5s;
   position: absolute;
   left: 0;
   top: 0;
   right: 0;
   bottom: 0;
   display: flex;
   justify-content: center;
   align-items: center;
   align-content: center;
   text-align: center;
   z-index: 2;
}

.item-project .content {
   max-width: 300px;
   transform: scale(0);
   transition: all 0.5s;
   color: #fff;
}

.item-project:hover .box-content {
   background: rgba(0, 0, 0, 0.8);
}

.item-project:hover a.scale-img:before {
   left: 15px;
   top: 15px;
}

.item-project:hover a.scale-img:after {
   right: 15px;
   bottom: 15px;
}

.item-project:hover a.scale-img .box-content:before {
   right: 15px;
   top: 15px;
}

.item-project:hover a.scale-img .box-content:after {
   left: 15px;
   bottom: 15px;
}

.item-project:hover a.scale-img .box-content .content {
   transform: scale(1);
}

.item-project h3 {
   font-size: 20px;
   text-transform: uppercase;
   font-weight: 700;
   margin-bottom: 15px;
   -webkit-line-clamp: 2;
   line-clamp: 2;
}

.item-project p {
   line-height: 25px;
   height: 75px;
}

.item-project i {
   font-size: 24px;
   margin-top: 20px;
}

.grid-product {
   display: grid;
   grid-template-columns: repeat(4, 1fr);
   grid-gap: 30px;
   position: relative;
   z-index: 2;
}

.title_sp {
   color: #f28c38;
   font-size: 23px;
   font-style: normal;
   font-weight: 700;
   line-height: 25px;
   /* 83.333% */
   padding-bottom: 5px;
   border-bottom: solid 1px;
   margin-bottom: 15px;
}

ul.ul_dm_sp li a {
   color: #000;
   text-decoration: none;
   font-size: 14px;
}

ul.ul_dm_sp li {
   padding-bottom: 10px;
}

ul.ul_dm_sp li a:hover {
   color: red;
}

.items_news_detail a.scale-img {
   max-width: 140px;
}

.info_right_nb a {
   color: #000;
   text-decoration: none;
   font-size: 20px;
   font-weight: 600;
   line-height: 22px;
   margin-bottom: 10px;
   display: block;
}

.items_news_detail.d-flex.justify-content-between.align-items-center {
   margin-bottom: 20px;
}

.name_cap1 {
   text-transform: uppercase;
   color: #056E1C;
   font-family: "Roboto Slab";
   font-size: 26px;
   font-style: normal;
   font-weight: 700;
   line-height: normal;
   display: block;
   margin-bottom: 20px;
}

.top_album_video {
   display: flex;
   justify-content: space-between;
   flex-wrap: wrap;
}

.top_album_video a.album-image {
   width: 48.5%;
   border-radius: 15px;
   position: relative;
}

.col-lg-6.col-md-6.col-12.left_album_video {
   padding: 0 5px;
   position: relative;
}

a.album-image.boxaaaa {
   border-radius: 15px;
   position: relative;
}

.album-image a i {
   color: var(--primary-color2);
   font-size: 35px
}

.album-image button {
   position: absolute;
   left: 0;
   top: 0;
   width: 100%;
   height: 100%;
   display: flex;
   align-items: center;
   justify-content: center;
   background-color: rgba(16, 12, 8, .6);
   color: var(--white-color);
   text-align: center;
   color: #ffc107;
   font-size: 15px;
   font-weight: 400;
   letter-spacing: .6px;
   flex-direction: column;
   transition: all .45s;
   transform: scale(.4);
   border-radius: 10px;
   opacity: 0;
}

.album-image button i {
   color: #ffc107;
   font-size: 20px
}

.album-image:hover a {
   transform: scale(1);
   opacity: 1
}

.album-image:hover button {
   transform: scale(1);
   opacity: 1
}

.album-image.active a {
   transform: scale(1);
   opacity: 1
}

.top_album_video.all {
   margin-top: 20px;
}

.top_album_video a.album-image img {
   height: 100%;
}

.row.box_album_video {
   margin-bottom: 30px;
}

/*Scroll to top*/
.scrollToTop {
   position: fixed;
   bottom: 50px;
   right: 25px;
   height: 35px;
   width: 35px;
   cursor: pointer;
   display: block;
   border-radius: 50%;
   z-index: 1001;
   opacity: 0;
   visibility: hidden;
   transition: all 400ms linear;
   -webkit-animation: floatY 2s infinite;
   -o-animation: floatY 2s infinite;
   animation: floatY 2s infinite;

}

.scrollToTop.active-progress {
   opacity: 1;
   visibility: visible;
}

.scrollToTop:after {
   position: absolute;
   font-family: 'FontAwesome';
   content: '\f077';
   text-align: center;
   line-height: 35px;
   font-size: 16px;
   color: #8F0800;
   left: 50%;
   top: 0;
   transform: translatex(-50%);
   cursor: pointer;
   display: block;
   z-index: 1;
   transition: all 400ms linear;
}

.scrollToTop svg path {
   fill: none;
}

.scrollToTop:hover svg path {
   fill: #ffffffab;
}

.scrollToTop svg.progress-circle path {
   stroke: #8F0800;
   stroke-width: 4;
   -webkit-box-sizing: border-box;
   box-sizing: border-box;
   transition: all 400ms linear;
}

@keyframes floatY {
   0% {
      -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
      transform: translateY(0);
   }

   50% {
      -webkit-transform: translateY(-6px);
      -ms-transform: translateY(-6px);
      transform: translateY(-6px);
   }

   100% {
      -webkit-transform: translateY(0);
      -ms-transform: translateY(0);
      transform: translateY(0);
   }
}


/* hotline fix */
.hotline-fix {
   position: fixed;
   left: 20px;
   bottom: 20px;
   z-index: 11;
}

.hotline-fix a {
   width: 200px;
   height: 50px;
   display: block;
   padding: 2px 0 6px 50px;
   position: relative;
   z-index: 1;
   border-radius: 30px;
   border: 4px solid #ffc107;
   background: #FECD07;
   color: #603814;
   font-size: 12px;
   font-style: normal;
   font-weight: 400;
   line-height: normal;
}

.hotline-fix a:before {
   position: absolute;
   left: 2px;
   top: 1px;
   content: "";
   width: 39px;
   height: 39px;
   background: url(../images/hl1.png) no-repeat;
   border-radius: 50%;
   -webkit-animation-name: blink;
   -webkit-animation-duration: 1s;
   -webkit-animation-timing-function: linear;
   -webkit-animation-iteration-count: infinite;
   -moz-animation-name: blink;
   -moz-animation-duration: 1s;
   -moz-animation-timing-function: linear;
   -moz-animation-iteration-count: infinite;
   animation-name: blink;
   animation-duration: .7s;
   animation-timing-function: linear;
   animation-iteration-count: infinite;
}

.hotline-fix a:after {
   content: '';
   position: absolute;
   width: calc(100% + 14px);
   height: calc(100% + 14px);
   top: -7px;
   left: -7px;
   border-radius: 100px;
   box-shadow: 0px 0px 7px 0px rgba(255, 255, 255, 0.55);
}

.hotline-fix a span {
   display: block;
   overflow: hidden;
   z-index: 1;
   position: relative;
   color: #603814;
   font-size: 16px;
   font-style: normal;
   font-weight: 700;
   line-height: normal;
}

/*Menu mobile*/
body.block-scroll {
   margin: 0;
   height: 100%;
   overflow: hidden;
}

.wrap-responsive-menu-mobile {
   position: relative;
}

/* 
.wrap-responsive-menu-mobile.active .button-open-menu-mobile {
   left: 280px;
   position: absolute;
   top: 0;
   cursor: pointer;
   background: #0d62ac;
   transform: translateY(0);
   -moz-transform: translateY(0);
   -webkit-transform: translateY(0);
   -o-transform: translateY(0);
}

.wrap-responsive-menu-mobile.active .button-open-menu-mobile:before {
   top: 20px;
   background: #ffffff;
   left: 8px;
   -webkit-transform: rotate(-45deg);
   -moz-transform: rotate(-45deg);
   -ms-transform: rotate(-45deg);
   -o-transform: rotate(-45deg);
   transform: rotate(-45deg);
   box-sizing: initial;
}

.wrap-responsive-menu-mobile.active .button-open-menu-mobile:after {
   top: 20px;
   border: 0;
   left: 8px;
   height: 3px;
   background: #ffffff;
   -webkit-transform: rotate(45deg);
   -moz-transform: rotate(45deg);
   -ms-transform: rotate(45deg);
   -o-transform: rotate(45deg);
   transform: rotate(45deg);
} */

.wrap-responsive-menu-mobile.active #responsive-menu {
   left: 0;
}

.wrap-responsive-menu-mobile.active .overlay-menu {
   opacity: 1;
   visibility: visible;
   width: 100vw;
 
}

.wrap-responsive-menu-mobile .overlay-menu {
   position: fixed;
   width: 100vw;
   height: 100vh;
   z-index: 99999;
   background: rgba(0, 0, 0, 0.4);
   opacity: 0;
   visibility: hidden;
   -webkit-transition: all .5s linear;
   -moz-transition: all .5s linear;
   -ms-transition: all .5s linear;
   -o-transition: all .5s linear;
   transition: all .5s linear;
   top: 0;
   right: 0;
}

.button-open-menu-mobile {
   color: #113466;
   font-size: 18px;
   cursor: pointer;
   position: relative;
   width: 45px;
   height: 45px;
   z-index: 999999;
   background: transparent;
   -webkit-transition: all 1s ease-in-out;
   -moz-transition: all 1s ease-in-out;
   -ms-transition: all 1s ease-in-out;
   -o-transition: all 1s ease-in-out;
   transition: all 1s ease-in-out;
}

.button-open-menu-mobile span {
   position: absolute;
   left: 5px;
   top: 19px;
   width: 36px;
   height: 25px;
   z-index: 99;
   border-top: 3px solid #000;
   -webkit-transition: all 0.5s ease-in-out;
   -moz-transition: all 0.5s ease-in-out;
   -ms-transition: all 0.5s ease-in-out;
   -o-transition: all 0.5s ease-in-out;
   transition: all 0.5s ease-in-out;
   animation: animationLineMenu2 2s infinite;
}

.button-open-menu-mobile:before {
   position: absolute;
   top: 12px;
   left: 8px;
   display: block;
   height: 3px;
   width: 30px;
   background: #000;
   content: "";
   -webkit-transition: all 0.5s ease-in-out;
   -moz-transition: all 0.5s ease-in-out;
   -ms-transition: all 0.5s ease-in-out;
   -o-transition: all 0.5s ease-in-out;
   transition: all 0.5s ease-in-out;
   display: flex;
   justify-content: center;
   align-items: center;
   animation: animationLineMenu1 2s infinite;
}

.button-open-menu-mobile:after {
   position: absolute;
   top: 21px;
   left: 8px;
   display: block;
   height: 6px;
   width: 30px;
   border-bottom: 3px solid #000;
   content: " ";
   box-sizing: initial;
   -webkit-transition: all 0.5s ease-in-out;
   -moz-transition: all 0.5s ease-in-out;
   -ms-transition: all 0.5s ease-in-out;
   -o-transition: all 0.5s ease-in-out;
   transition: all 0.5s ease-in-out;
   animation: animationLineMenu1 2s infinite;
}
.button-open-menu-mobile:hover:after {
   width: 35px;
   border-color: #1a2c5e;
}

.button-open-menu-mobile:hover span {
   left: 12px;
   width: 28px;
   border-color: #1a2c5e;
}

.button-open-menu-mobile:hover:before {
   width: 35px;
   background: #1a2c5e;
}

.block-scroll .button-open-menu-mobile {
   transform: translateY(-300px);
}

@keyframes animationLineMenu1 {
   0% {
      width: 30px;
   }

   50% {
      width: 35px;
   }

   100% {
      width: 30px;
   }
}
@keyframes animationLineMenu2 {
   0% {
      left: 5px;
      width: 36px;
   }

   50% {
      left: 12px;
      width: 28px;
   }

   100% {
      left: 5px;
      width: 36px;
   }
}

#responsive-menu {
   position: fixed;
   z-index: 1;
   background: #ffffff;
   z-index: 10000000;
   top: 0;
   left: -100%;
   width: 280px;
   height: 100vh;
   text-align: left;
   -webkit-transition: left 0.5s linear;
   -moz-transition: left 0.5s linear;
   -ms-transition: left 0.5s linear;
   -o-transition: left 0.5s linear;
   transition: left 0.5s linear;
   padding: 10px 0;
   overflow-y: scroll;
   display: flex;
   flex-flow: row wrap;
}

#responsive-menu .logo {
   margin-bottom: 20px;
   padding: 0 15px;
}

#responsive-menu .search-menu-mobile {
   width: 100%;
   background: #ffffff;
   border-radius: 10px;
   border: solid 1px transparent;
   border-image: linear-gradient(0.25turn, rgb(26 44 94), rgb(53 120 229), rgba(56, 2, 155, 0.5));
   border-image-slice: 1;
}

#responsive-menu .search-menu-mobile input {
   width: calc(100% - 50px);
   height: 40px;
   float: left;
   outline: none;
   padding: 0px;
   border: 0px;
   background: transparent;
   text-indent: 18px;
   font-size: 13px;
}

#responsive-menu .search-menu-mobile p {
   float: left;
   width: 50px;
   height: 40px;
   line-height: 40px;
   cursor: pointer;
   text-align: center;
   margin: 0px;
   color: #6c757d;
   font-size: 16px;
}

#responsive-menu .wrap-search-menumb {
   margin-bottom: 20px;
   padding: 0 15px;
}

#responsive-menu .header-menu-mobile {
   width: 100%;
}

#responsive-menu .content {
   width: 100%;
}

#responsive-menu .content ul {
   list-style: none;
   padding: 0;
   width: 100%;
   display: block;
}

#responsive-menu .content ul li {
   text-align: left;
   -webkit-transition: all 0.5s ease-in-out;
   -moz-transition: all 0.5s ease-in-out;
   -ms-transition: all 0.5s ease-in-out;
   -o-transition: all 0.5s ease-in-out;
   transition: all 0.5s ease-in-out;
   padding: 10px 0px;
   position: relative;
   cursor: pointer;
   border-bottom: 1px solid transparent;
   border-image: linear-gradient(0.25turn, rgb(26 44 94), rgb(53 120 229), rgba(56, 2, 155, 0));
   border-image-slice: 1;
}

#responsive-menu .content ul li a {
   color: #1a2c5e;
   font-size: 1.1rem;
   line-height: 2.1rem;
   padding: 0 30px 0 15px;
   display: block;
   text-decoration: none;
   overflow: hidden;
   text-overflow: ellipsis;
   white-space: normal;
   -webkit-box-orient: vertical;
   display: -webkit-box;
   -webkit-line-clamp: 1;
   line-clamp: 1;
}

#responsive-menu .content ul li a .active {
   color: #f9ec00;
}

#responsive-menu .content ul li a b {
   font-weight: normal;
}

#responsive-menu .content ul li ul {
   display: none;
}

#responsive-menu .content ul li:first-child {
   border-top: 1px solid #ebebeb;
}

#responsive-menu .content>ul {
   padding: 0;
   margin: 0;
}

#responsive-menu .content>ul>li ul {
   position: relative;
   background: transparent;
   margin-top: 10px;
}

#responsive-menu .content>ul li ul li a {
   padding-left: 20px;
}

#responsive-menu .content>ul li ul li:last-of-type {
   border-bottom: none;
   margin-bottom: -10px;
}

#responsive-menu .content>ul li ul li ul li a {
   padding-left: 30px;
}

#responsive-menu .content>ul li ul li ul li:last-of-type {
   border-bottom: none;
   margin-bottom: -10px;
}

#responsive-menu .content .toggle-menu {
   cursor: pointer;
   position: absolute;
   top: 0;
   right: 0;
   width: 30px;
   height: 100%;
   max-height: 54px;
}

#responsive-menu .content .toggle-menu:after {
   content: "\f067";
   font-family: "FontAwesome";
   position: absolute;
   top: calc(50% - 10px);
   left: calc(50% - 10px);
   color: #1a2c5e;
   -webkit-transition: all 0.5s ease-in-out;
   -moz-transition: all 0.5s ease-in-out;
   -ms-transition: all 0.5s ease-in-out;
   -o-transition: all 0.5s ease-in-out;
   transition: all 0.5s ease-in-out;
}

#responsive-menu .content .toggle-menu.active:after {
   transform: rotate(180deg);
   content: "\f068";
}

#responsive-menu .footer-menu-mobile {
   display: flex;
   flex-flow: row wrap;
   align-items: flex-end;
   width: 100%;
}

#responsive-menu .footer-menu-mobile .wrap {
   width: 100%;
}

#responsive-menu .footer-menu-mobile .social {
   border-bottom: 1px solid #f2f2f2;
   padding: 15px 10px 10px 15px;
   margin-bottom: 15px;
}

#responsive-menu .footer-menu-mobile .social ul li {
   float: left;
   margin-right: 10px;
   height: 18px;
}

#responsive-menu .footer-menu-mobile .social ul li i {
   color: #fff;
   font-size: 19px;
}

#responsive-menu .footer-menu-mobile .content {
   padding: 0 15px;
}

#responsive-menu .footer-menu-mobile .content p {
   font-size: 13px;
   color: #ffffff;
   line-height: 16px;
   margin-bottom: 5px;
}

#responsive-menu .footer-menu-mobile .content p a {
   font-size: 13px;
   color: #ffffff;
   line-height: 16px;
}

#responsive-menu .footer-menu-mobile .content p:last-of-type {
   margin-top: 0;
}

.close-menu-responsive-mobile {
   width: 35px;
   height: 35px;
   position: absolute;
   top: 10px;
   right: 10px;
   background: #1a2c5e;
   border-radius: 50%;
   box-shadow: 0 0 20px -5px rgba(255, 255, 255, .5);
   transition: 0.25s ease-in-out;
   cursor: pointer;
}

.close-menu-responsive-mobile .circle path {
   stroke: rgba(255, 255, 255, 1);
   fill: none;
   stroke-width: 1px;
   stroke-linecap: round;
   animation: progress 3s normal linear infinite;
}
@keyframes progress {
   from {
      stroke-dasharray: 0 100;
  }
}
.close-menu-responsive-mobile span {
   display: block;
   width: 14px;
   height: 2px;
   background: rgba(255, 255, 255, 1);
   box-shadow: 0 0 20px -5px rgba(255, 255, 255, .5);
   border-radius: 20px;
   position: absolute;
}

.close-menu-responsive-mobile span:nth-child(1) {
   top: 17px;
   left: 18px;
   transform: rotate(45deg);
   transform-origin: top left;
}
.close-menu-responsive-mobile span:nth-child(2) {
   top: 17px;
   right: 18px;
   transform: rotate(-45deg);
   transform-origin: top right;
}
.close-menu-responsive-mobile span:nth-child(3) {
   bottom: 17px;
   left: 18px;
   transform: rotate(-45deg);
   transform-origin: bottom left;
}
.close-menu-responsive-mobile span:nth-child(4) {
   bottom: 17px;
   right: 18px;
   transform: rotate(45deg);
   transform-origin: bottom right;
}
.close-menu-responsive-mobile:hover {
   background: #131313;
}

.mobile-menu__section {
   padding: 15px 15px 0px 15px;
}

.mobile-menu__section .mobile-menu__section-title {
   font-size: 15px;
   line-height: 1.85;
   text-transform: uppercase;
   font-weight: 500;
   font-style: normal;
   color: #1a2c5e;
}

 .mobile-menu__section .mobile-menu__help-wrapper {
   color: #677279;
   display: flex;
   align-items: center;
}

.mobile-menu__section .mobile-menu__help-wrapper svg {
   margin-right: 16px;
   width: 24px;
   height: 24px;
   animation: ring_phone 1.4s infinite;
}

.mobile-menu__help-wrapper a {
   font-size: 16px;
   line-height: 22px;
   text-decoration: none;
   color: #1a2c5e;
}

/* About home page */
   .box-about-home-page {
      padding: 50px 0;
   }

   .box-about-home-page-image {
      position: relative;
      overflow: hidden;
   }

   .box-about-home-page .box-about-home-page-title {
      font-size: 20px;
      line-height: 24px;
      color: #aeadb2;
      text-transform: uppercase;
      margin-bottom: 15px !important;!i;!;
      font-weight: 700;
   }

   .box-about-home-page .box-about-home-page-slogan {
      font-size: 32px;
      line-height: 40px;
      color: var(--color-black);
      font-weight: 600;
   }

   .box-about-home-page .box-about-home-page-desc {
      margin-bottom: 20px;
   }

   .box-about-home-page .box-about-home-page-desc p {
      font-size: 20px;
      line-height: 24px;
      color: #3d3d3d;
      /* font-weight: 500; */
      /* font-family: none; */
      line-height: 27px;
      margin-bottom: 30px;
   }

   .over_lay {
      position: absolute;
      bottom: 0;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1;
   }

   .over_lay::before {
      position: absolute;
      top: 0;
      left: -75%;
      z-index: 2;
      display: block;
      content: '';
      width: 50%;
      height: 100%;
      background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 100%);
      background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 100%);
      -webkit-transform: skewX(-25deg);
      transform: skewX(-25deg);
   }

   .over_lay:hover::before {
      -webkit-animation: shine 1s;
      animation: shine 1s;
   }

   @-webkit-keyframes shine {
      100% {
         left: 125%;
      }
   }

   @keyframes shine {
      100% {
         left: 125%;
      }
   }
.left_about {
    max-width: 735px;
    padding-right: 170px;
}
.items-thanhtuu {
    width: 49%;
}

.name-thanhtuu {
    font-size: 52px;
    color: rgb( 0, 0, 0 );
    background: linear-gradient(90deg, #0055c5, #008bff73); /* Gradient màu */
    -webkit-background-clip: text; /* Chỉ tô gradient cho text */
    -webkit-text-fill-color: transparent;
    font-weight: bold;
}

.desc_thanhtuu.text-split-3 {
    font-size: 15px;
    font-weight: 500;
}
.center_about {
    display: flex;
    align-items: end;
    position: absolute;
    bottom: 10px;
    right: 305px;
    z-index: 1;
}

.box-about-home-page .wrap-content {
    position: relative;
}
.hosonangluc a {
    display: block;
}

.hosonangluc a:nth-child(1) {
    margin-right: -32px;
    position: relative;
}
.box_thanhtuu {
    margin-top: 30px;
}
.wrap-content1 .title-main {
    text-align: start;
}

.slogan_sp {
    font-size: 20px;
    font-weight: 700;
    color: #234cbd;
}
.wrap-content1 .title-main {
    text-align: start;
    margin-bottom: 0;
}

.slogan_sp {
    font-size: 20px;
    font-weight: 700;
    color: #234cbd;
}
.info_dmcap {
    padding: 20px;
    padding-bottom: 30px;
    width: 100%;
    background: #fff;
}

.top_namedm.d-flex.align-items-end {
    justify-content: space-between;
    font-size: 15px;
    font-weight: 600;
    color: #234cbd;
    margin-bottom: 15px;
}

.name_dmcapsp {
    font-size: 19px;
    color: #060722;
    font-weight: bold;
}
.top_dmcap {
    position: relative;
    margin-bottom: 25px;
    padding-right: calc((100% - 1200px) /2);
    flex-wrap: wrap;
}
.control-news123.control-owl.transition {
    max-width: 140px;
    position: relative;
    top: 0;
}

.top_dmcap .control-owl button {
    background: #fff;
    opacity: 1;
    border-radius: 30px;
}

.top_dmcap .control-owl button svg {
    font-size: 10px;
    width: 25px;
}
.slogan_spnb {
    text-align: center;
    margin-top: -20px;
    margin-bottom: 25px;
    font-size: 15px;
    font-weight: 500;
}

.slogan_spnb span {
    margin-bottom: 10px;
    display: block;
}
.wrap-content1 .title-main span {
    font-size: 40px;
    color: #000 !important;!i;!;
    background: linear-gradient(90deg, #000 , #000 );
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: bold;
    text-transform: capitalize;
}
.right_why a {
    max-height: 564px;
    display: block;
}
.left_why {
    width: 50%;
    padding-left: calc((100% - 1200px) / 2);
    height: 100%;
    background: #10598c;
    display: block;
    color: #fff; /* Blue background color */
    min-height: 564px;
    padding-top: 70px;
    padding-right: 80px;
}

.right_why {
    width: 50%;
    flex: 1;
}

.right_why a img {
    width: 100%;
    max-height: 564px;
    object-fit: cover;
    /* position: absolute; */
    display: flex;
    justify-content: center;
    align-items: center;
}
.wrap_taisaochon {
    /* align-items: center; */
    justify-content: space-between;!i;!;
    
    !i;!;
    position: relative;
}
.title_tsc {
    font-size: 20px;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 500;
    color: #ffffff;
}
.wrap-tieuchi-homepage {
    margin: 30px auto;
}
.items-tieuchi {
    cursor: pointer;
    width: 48%;
    padding-bottom: 50px;
    margin-bottom: 50px;
    border-bottom: solid 1px #ddd;
}

.items-tieuchi a {
    max-width: 80px;
    width: 100%;
}

.info-tieuchi {
    width: calc(100% - 100px);
}

.name-tieuchi {
    font-size: 16px;
    font-weight: bold;
    margin-bottom: 10px;
}

.items-tieuchi:hover .name-tieuchi {
    color: #2252c1;
}

.items-tieuchi a img {
    transition: 1s;
}

.items-tieuchi:hover a img {
}
.wrap_tc {
    padding: 70px 0;
    padding-bottom: 0;
}

.items-tieuchi:nth-child(3),.items-tieuchi:nth-child(4) {
    border-bottom: none;
}
.wrap_tc {
    padding: 70px 0;
    padding-bottom: 0;
}

.items-tieuchi:nth-child(3),.items-tieuchi:nth-child(4) {
    border-bottom: none;
}

.desc_tieuchi.text-split-3 {
    font-size: 13px;
    color: #2c2c2c;
    font-weight: 500;
}
.left_newsnb {
    max-width: 795px;
    padding-right: 30px;
    border-right: solid 1px #d9d9d9;
}
.right_newsnb {
    width: calc(100% - 795px);
    padding-left: 30px;
}
.info_newsb {
    width: calc(100% - 400px);
}
.wrap_newsnb {
    padding: 50px 0;
    background: #f5f5f5;
}

.top_newsnb {
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: solid 1px #bbbbbb;
}

.title_newsnb {
    color: #10598c;
    font-size: 30px;
    font-weight: 600;
}

.top_newsnb a {
    font-size: 13px;
    text-decoration: none;
    color: #10598c;
    font-weight: 500;
    display: flex;
    align-items: center;
}

.top_newsnb a img {
    margin-left: 10px;
}

.top_newsnb a:hover {
    color: red;
}
.right_newsnb .name-newshome {
    margin-bottom: 0 !important;!i;!;
    font-size: 15px;
    background: linear-gradient(to top, #000000, #000000b8);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.more_newsnb {
    font-size: 13px;
    text-decoration: none;
    color: #10598c;
    font-weight: 500;
    display: flex;
    align-items: center;
    justify-content: end;
}

.more_newsnb img {
    margin-left: 10px;
}
.news-slick h3 img {
    margin-right: 10px;
}
a.pic-newshome-best {
    border-radius: 20px;
    max-width: 380px;
}
.tag_tukhoa.d-flex.flex-wrap {
    font-size: 13px;
    color: #fff;
    font-weight: 500;
    padding-top: 30px;
    margin-top: 30px;
    border-top: solid 1px #1874b5;
}

p.footer-title1 {
    text-transform: uppercase;
    margin-right: 10px;
}

.footer-tags-lists a {
    color: #fff;
    text-decoration: none;
}

.line_tag {
    width: 1px;
    height: 15px;
    background: #fff;
    margin: 0 10px;
    transform: rotate(20deg);
}

.footer-tags-lists li a:hover {
    color: #bcdfff;
}
.footer-article .wrap-content {
    padding-bottom: 20px;
}
.slide_mobile{display: none;}