:root {
--color-red: #ec2d3f;
--color-medium-red: rgb(204, 44, 50);
--color-dark-red: #c31829;
--color-green: #28a745;
--color-dark-green: #207d36;
--color-black: #353434;
--color-gray: #6c757d;
--background-static: #3fa07e;
--background-hover: #eceb1b;
--color-static: #000;
--color-hover: #ec2d3f;
--color-main: #faa619;
--color-submain: #6d6d6d;
}

html, body {
    -webkit-user-select: none; /* Safari */
    -ms-user-select: none; /* IE 10 and IE 11 */
    user-select: none; /* Standard syntax */
}

body {
    font-family: 'SVN-Poppins', sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: var(--color-submain);
    background-color: #fff;
    max-width: 100%;
    margin: 0px auto;
    padding: 0px !important;
}

/* .row>* {
    flex-shrink: 0;
    width: 100%;
    max-width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-top: var(--bs-gutter-y);
} */

input::-webkit-input-placeholder {
    color: #313131;
    font-size: 14px;
}

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

input::-moz-placeholder {
    color: #313131;
    font-size: 14px;
}

input:-ms-input-placeholder {
    color: #313131;
    font-size: 14px;
}

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;
}

a {
    transition: all .2s ease-in-out;
    color: #000;
}
a:hover{
    color: var(--color-main);
}
a, a:hover {
    text-decoration: none;
}

blockquote {
    position: relative;
    font-style: italic;
    font-family: Georgia,Times,"Times New Roman",serif;
    padding: 2px 0;
    border-width: 0;
    padding-left: 20px;
    padding-right: 8px;
}

blockquote::before,
blockquote::after{
    content: '';
    display: block;
    position: absolute;
    width: 50px;
    height: 50px;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" fill="currentColor" class="bi bi-quote" viewBox="0 0 16 16"><path d="M12 12a1 1 0 0 0 1-1V8.558a1 1 0 0 0-1-1h-1.388q0-.527.062-1.054.093-.558.31-.992t.559-.683q.34-.279.868-.279V3q-.868 0-1.52.372a3.3 3.3 0 0 0-1.085.992 4.9 4.9 0 0 0-.62 1.458A7.7 7.7 0 0 0 9 7.558V11a1 1 0 0 0 1 1zm-6 0a1 1 0 0 0 1-1V8.558a1 1 0 0 0-1-1H4.612q0-.527.062-1.054.094-.558.31-.992.217-.434.559-.683.34-.279.868-.279V3q-.868 0-1.52.372a3.3 3.3 0 0 0-1.085.992 4.9 4.9 0 0 0-.62 1.458A7.7 7.7 0 0 0 3 7.558V11a1 1 0 0 0 1 1z"/></svg>');
    background-repeat: no-repeat;
    background-size: 50px;
}
blockquote::before {
    top: -20px;
    left: -20px;
}
blockquote::after{
    bottom: -20px;
    right: -20px;
    transform: rotate(-180deg);
}

blockquote p{
    margin-bottom: 0;
}

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

/* 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;
}

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

.left-0 {
    left: 0px;
}
.right-0 {
    right: 0px;
}
.color-main {
color: var(--color-main);
}
.btn-main {
    color: #fff;
    background-color: var(--color-main);
}
.btn-main-light {
    color: var(--color-main);
    background: transparent;
    border: 1px solid var(--color-main);
    border-radius: 30px;
}

.fw-400 {
    font-weight: 400;
}
.fw-600 {
    font-weight: 600;
}

.font-oswald {
    font-family: "Oswald", sans-serif;
}

.border-dotted {
    border-style: dotted;
}

#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
}

.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;
}

.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;
}



/* General */
.title-main {
    position: relative;
}

.title-main h2, .title-main h3, .title-main h4 {
    position: relative;
    z-index: 2;
    text-transform: uppercase;
    color: var(--color-submain);
    font-weight: 600;
    font-family: "Montserrat", sans-serif;
    margin-bottom: 0px;
}
.title-main h2 {
    font-size: 40px;
    color: var(--color-main);
}
.title-main h3 {
    font-size: 30px;
    color: var(--color-main);
}
.title-main h4 {
font-size: 20px;
}

.title-main.has-line::after {
    content: '';
    display: inline-block;
    position: relative;
    width: 60px;
    height: 4px;
    background-color: var(--color-main);
}
.title-main.has-logo::before{
    content: '';
    display: none;
    position: absolute;
    z-index: 1;
    left: 50%;
    top: 0%;
    width: 90px;
    height: 80px;
    margin-left: -45px;
    margin-top: -40px;
    background: url(../images/logo_vector.png) no-repeat center center;
}
.title-main.text-white h2{
    color: #fff;
}
.title-main.text-white::after{
    background-color: #fff;
}

.title-main h2 span,
.title-main h3 span,
.title-main h4 span{
}

.title-submain {
    font-family: 'SVN-Poppins';
    color: #919090;
    font-weight: 400;
    font-size: 16px;
    letter-spacing: 2px;
    line-height: 1.5;
    margin-bottom: 30px;
}

.title-desc {
    margin-bottom: 30px;
}

.title-main-detail {
    margin-top: .5rem;
    margin-bottom: 1rem;
    border-bottom: 1px solid #333;
}
.title-main-detail h2 {
    font-size: 24px;
    padding-bottom: 10px;
}

.time-main {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 1rem;
    color: #999999;
    font-size: 14px;
    line-height: 1;
}


/* Footer */
.footer {
    background-color: #F2F4F7;
}

.footer a {
    color: #333;
}

.footer a:hover {
    color: var(--color-main);
}

.footer-top {
    background-color: #F7F8FA;
}

.footer-top .col-lg-6:nth-child(2) {
    text-align: right;
}

.footer-top a svg{
    position: absolute;
    left: -3rem;
    animation: moveLeftBounceRight 1s linear infinite;
}


.footer-title {
    text-transform: uppercase;
    font-size: 15px;
    margin-bottom: 1rem;
    font-weight: 500;
}

.footer-title::after{
    content: '';
    display: block;
    width: 43px;
    height: 2px;
    margin-top: 5px;
    margin-bottom: 0px;
    background-color: var(--color-main);
}
.footer-title span{
    color: var(--color-main);
}
.footer-ul {
    list-style: inside;
    padding: 0px;
    margin: 0px;
}

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

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

.footer-ul li a {
    color: #333;
}

.footer-ul li a:hover {
    text-decoration: none;
    color: var(--color-main);
}

.footer-tags {
    background: #eee;
}

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

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

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

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

.footer-powered {
    text-align: left;
    color: #c0c0c0;
    font-size: 14px;
    background-color: #F7F8FA;
}

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

.footer-statistic {
    text-align: right;
    color: #333;
}

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

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

#footer-map {
    position: relative;
    height: 300px;
}

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

.footer-news:nth-child(4) {width: 25%;}
.footer-news:nth-child(3) {width: 25%;}
.footer-news:nth-child(2) {width: 25%;}
.footer-news:nth-child(1) {width: 17%;}
.footer-news .icon {
    border: 1px solid #fff;
    border-radius: 100%;
    line-height: 30px;
    text-align: center;
    width: 36px;
    height: 36px;
}
.footer-news .info {
    margin-left: 10px;
    width: calc(100% - 46px);
}


/* Breadcrumb */
.breadCrumbs {
    padding: 10px 0px;
    background-color: #f2f2f2;
}
  
.breadCrumbs .container .breadcrumb {
    padding: 0;
    margin-bottom: 0;
    background-color: transparent;
    border-radius: 0;
}

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

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

.cursor-pointer {
    cursor: pointer;
}

.sidebar {
    position: sticky;
    top: 100px;
}
.widget {
    padding: 10px;
}
.widget-title {
    font-size: 1.1rem;
    font-weight: 600;
    text-transform: uppercase;
    border-bottom: 1px solid rgba(0,0,0,1);
    line-height: 1;
    text-align: center;
    letter-spacing: 1.5px;
}
.widget-ul {
    list-style: none;
    margin: 0px;
    padding: 10px 0px;
}
.widget-ul li{
    position: relative;
    display: block;
    padding-left: 15px;
    border-top: 1px solid #f2f2f2;
}
.widget-ul > li{
}
.widget-ul > li:first-child{
    border-top: 0px;
}

.widget-ul li a{
    display: block;
    font-weight: 500;
    text-transform: capitalize;
    padding: 7px 10px 7px 10px;
}


.widget-ul li a svg{
    color: var(--color-main);
}


.widget-ul li .icon{
    position: absolute;
    display: block;
    padding: 5px;
    font-size: 20px;
    top: 10px;
    right: 10px;
}

.widget-ul li .icon::before,
.widget-ul li .icon::after {
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%) rotate(-90deg);
    transform: translate(-50%, -50%) rotate(-90deg);
    background-color: currentColor;
    -webkit-transition: opacity 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
    transition: opacity 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out;
    transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out;
    transition: transform 0.4s ease-in-out, opacity 0.4s ease-in-out, -webkit-transform 0.4s ease-in-out
}
.widget-ul li .icon::before {
    width: 11px;
    height: 1px;
    opacity: 1
}

.widget-ul li .icon::after {
    width: 1px;
    height: 11px
}

.widget-ul li.active > .icon::after {
    -webkit-transform: translate(-50%, -50%) rotate(90deg);
    transform: translate(-50%, -50%) rotate(90deg)
}

.widget-ul li.active > .icon::before {
    opacity: 0
}


.widget-ul li:hover{
    background-color: #f2f2f2;
}

.widget-ul li.active > a,
.widget-ul li:hover > a{
}

.widget-ul li.has-child:after {
    content: "";
    position: absolute;
    top: 18px;
    right: 10px;
    width: 5px;
    height: 5px;
    border: 1px solid #333;
    border-top: 0px;
    border-left: 0px;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}
.widget-ul li ul{
    display: none;
    list-style: none;
    margin: 0px;
    padding: 0px;
}
.widget-ul li.active > ul {
    display: block;
    padding: 10px 0px;
}


/* Like Share */
.share {
    padding: 17px 15px 10px 15px;
    line-height: normal;
    background: rgba(128, 128, 128, 0.15);
    margin-top: 15px;
    border-radius: 5px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
  
.share b {
    display: block;
    margin-right: 20px;
}
.social-plugin {
    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;
}

.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;
}

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

.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: 25px;
right: 25px;
display: none;
z-index: 10;
cursor: pointer;
}

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

/* 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);
}
#noidung {
    padding-bottom: 50px;
    max-height: 580px;
    overflow-y: hidden;
    position: relative;
}
#noidung.show-full-content {
    max-height: 100%;
    padding-bottom: 50px;
}
#toc-content {
    position: relative;
}
.hide-content {
    position: absolute;
    width: 100%;
    bottom: -60px;
    padding: 120px 0 0 0;
    z-index: 1;
    text-align: center;
    background: -webkit-linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.6699054621848739) 60%, rgba(252,176,69,0) 100%);
    background: -o-linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.6699054621848739) 60%, rgba(252,176,69,0) 100%);
    background: linear-gradient(0deg, rgba(255,255,255,1) 0%, rgba(255,255,255,0.6699054621848739) 60%, rgba(252,176,69,0) 100%);
}
.hide-content.removeBlur {
    background: transparent;
    padding-bottom: 0px;
}


.toolbar2 {
    width: 100%;
    bottom: 0px;
    position: fixed;
    z-index: 500;
    left: 0px;
    -webkit-filter: drop-shadow(1px 1px 4px rgba(0, 0, 0, 0.75));
    -moz-filter: drop-shadow(1px 1px 4px rgba(0, 0, 0, 0.75));
    -ms-filter: drop-shadow(1px 1px 4px rgba(0, 0, 0, 0.75));
    -o-filter: drop-shadow(1px 1px 4px rgba(0, 0, 0, 0.75));
}

.toolbar2.is-active .list-phone {
    display: block;
    -webkit-animation: quickShow .2s cubic-bezier(0.66, 0.45, 0.76, 1.53) forwards;
    animation: quickShow .2s cubic-bezier(0.66, 0.45, 0.76, 1.53) forwards;
}

.toolbar2 .list-phone {
    position: absolute;
    bottom: 100%;
    left: 30px;
    opacity: 0;
    transform: scale(0);
    transform-origin: 50% 100%;
    display: none;
    width: 230px;
}

.toolbar2 .list-phone a {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    background: #fff;
    max-width: 240px;
    padding: 10px 20px;
    margin: 10px 0;
    border-radius: 50px;
    padding-right: 30px;
}

.toolbar2 .list-phone svg {
    max-width: 30px;
    max-height: 30px;
}

.toolbar2 .list-phone span {
    display: block;
    width: calc(100% - 40px);
    color: #333;
    font-weight: 700;
}

.toolbar2 .phone {
    position: relative;
    width: 50px;
    height: 50px;
    z-index: 99;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--color-main);
    border-radius: 50%;
    margin: 0 0px -25px 30px;
    transition: transform .2s ease-in-out;
}

.toolbar2 .phone a {
    color: #333;
    display: block;
    position: relative;
}

.toolbar2 .phone a:before,.toolbar2 .phone a:after {
    position: absolute;
    content: '';
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(135deg);
    width: 30px;
    height: 3px;
    border-radius: 2rem;
    background-color: #fff;
    opacity: 0;
    transition: opacity .2s ease-in-out;
}

.toolbar2 .phone a:after {
    transform: translate(-50%, -50%) rotate(45deg);
}

.toolbar2 .phone svg {
    max-width: 27px;
    max-height: 27px;
    display: block;
    position: relative;
    fill: #fff;
}

.toolbar2.is-active .phone {
    transform: rotate(-180deg);
}

.toolbar2.is-active .phone svg {
    opacity: 0;
}

.toolbar2.is-active .phone a:before,.toolbar2.is-active .phone a:after {
    opacity: 1;
}

.toolbar2 ul {
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0px;
    margin: 0px;
    --size: 33px;
    -webkit-mask: radial-gradient(33px at 55px 0px, #0000 99%, #fff 101%) 100%;
    background: var(--color-main);
    padding: 10px 0;
    padding-left: 100px;
    border-radius: 10px 10px 0px 0px;
}

.toolbar2 ul li {
    text-align: center;
    width: 25%;
    line-height: 1;
}

.toolbar2 ul li a {
    display: block;
    width: 100%;
    font-size: 27px;
    color: #ffff;
}

.toolbar2 ul li .icon {
    position: relative;
    margin: 0 auto;
    text-align: center;
}

.toolbar2 ul li a span {
    display: none;
    font-weight: 400;
    font-size: 11px;
    margin-top: 5px;
    color: #333;
    text-transform: capitalize;
}

.toolbar2 ul li a img,.toolbar2 ul li svg {
    max-height: 30px;
    fill: #fff;
    width: 100%;
}

.toolbar2 .phone svg {
    animation: tada 1.2s infinite;
    fill: #fff;
}

.tada {
    animation: tada 1.2s infinite;
}


.ex6 path {
    fill: transparent;
    stroke: #fff;
    stroke-width: 0.5;
    stroke-dasharray: 1500;
    stroke-dashoffset: 1500;
    -webkit-animation: dash 5s ease forwards;
    animation: dash 5s ease forwards;
}

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

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

@keyframes tada {
    0% {
        transform: scaleX(1)
    }

    10%, 20% {
        transform: scale3d(.9, .9, .9) rotate(-3deg)
    }

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

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

    to {
        transform: scaleX(1)
    }
}

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

    100% {
        opacity: 1;
        transform: scale(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;
line-height: 50px;
text-align: center;
}

.btn-frame i{
width: 50px;
height: 50px;
border-radius: 50%;
background: #4b4f56;
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: #bdbab8;
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;
}

.btn-frame svg {
    fill: #faa619;
    width: 30px;
    height: 30px;
}


.btn-frame b {
  position: absolute;
  top: 50%;
  right: calc(100% - 45px);
  transform: translateY(-50%);
  display: block;
  opacity: 0;
  visibility: hidden;
  padding: 9px 45px 6px 20px;
  line-height: 1.5;
  border-radius: 30px;
  color: #fff;
  font-weight: 400;
  background-color: var(--color-main);
  white-space: nowrap;
  transition: all .3s ease-in-out;
}
.btn-frame:hover b {
  visibility: visible;
  opacity: 1;
}


/* Cart Fix */
.cart-fixed {
    position: fixed;
    right: 20px;
    bottom: 170px;
    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 svg {
    width: 25px;
    height: 25px;
    color: #faa619;
  
  }
  
  .cart-fixed span {
    position: absolute;
    top: 0px;
    right: -5px;
    color: #ffffff;
    width: 25px;
    height: 25px;
    background: #ec2d3f;
    text-align: center;
    line-height: 25px;
    font-size: 11px;
    border-radius: 100%;
    z-index: 1;
  }

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

/* Phone */
.btn-phone {
bottom: 90px;
}
.btn-phone svg {
    width: 25px;
    height: 25px;
}

/* 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;
}