@font-face {
  font-family: "RCR";
  src: url("../fonts/Roboto/RobotoCondensedRegular.eot");
  src: url("../fonts/Roboto/RobotoCondensedRegular.eot")
      format("embedded-opentype"),
    url("../fonts/Roboto/RobotoCondensedRegular.woff2") format("woff2"),
    url("../fonts/Roboto/RobotoCondensedRegular.woff") format("woff"),
    url("../fonts/Roboto/RobotoCondensedRegular.ttf") format("truetype"),
    url("../fonts/Roboto/RobotoCondensedRegular.svg#RobotoCondensedRegular")
      format("svg");
}
@font-face {
  font-family: "RCB";
  src: url("../fonts/Roboto/RobotoCondensedBold.eot");
  src: url("../fonts/Roboto/RobotoCondensedBold.eot")
      format("embedded-opentype"),
    url("../fonts/Roboto/RobotoCondensedBold.woff2") format("woff2"),
    url("../fonts/Roboto/RobotoCondensedBold.woff") format("woff"),
    url("../fonts/Roboto/RobotoCondensedBold.ttf") format("truetype"),
    url("../fonts/Roboto/RobotoCondensedBold.svg#RobotoCondensedBold")
      format("svg");
}
@font-face {
  font-family: "UTMSwissCondensed";
  src: url("../fonts/UTMSwissCondensed.ttf");
}
@font-face {
  font-family: "UTMSwissCondensedBold";
  src: url("../fonts/UTMSwissCondensedBold.ttf");
}
@font-face {
  font-family: "UTMAzuki";
  src: url("../fonts/UTMAzuki.ttf");
}
@font-face {
  font-family: "RobotoSlab-Regular";
  src: url("../fonts/RobotoSlab-Regular.ttf");
}
@font-face {
  font-family: "RobotoSlab-Bold";
  src: url("../fonts/RobotoSlab-Bold.ttf");
}

:root {
  --default-color: #e20032;
  --sub-color: #e20032;
}

img {
  max-width: 100%;
}
:focus {
  outline: none;
}
.language_mobile1 {
  display: none;
}
a {
  color: #333;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
}
a:hover,
a:focus {
  text-decoration: none;
}
button:focus {
  outline: 0px !important;
}
/*Icon hotline on Mobile*/
.call_now {
  width: 80px;
  height: 80px;
  display: none;
  overflow: hidden;
  cursor: pointer;
  float: left;
  position: fixed;
  bottom: 5px;
  left: 5px;
  z-index: 999;
}
.call_now_circle {
  width: 80px;
  height: 80px;
  top: 0;
  left: 0;
  position: absolute;
  border: 2px solid #f34d06;
  opacity: 0.5;
  border-radius: 100%;
  -moz-border-radius: 100%;
  -o-border-radius: 100%;
  -webkit-border-radius: 100%;
  transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -webkit-transform-origin: 50% 50%;
  -o-transform-origin: 50% 50%;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  animation: call-circle-anim 1.2s infinite ease-in-out;
  -moz-animation: call-circle-anim 1.2s infinite ease-in-out;
  -o-animation: call-circle-anim 1.2s infinite ease-in-out;
  -webkit-animation: call-circle-anim 1.2s infinite ease-in-out;
}
.call_now_circle_fill {
  width: 50px;
  height: 50px;
  top: 15px;
  left: 15px;
  position: absolute;
  opacity: 0.75;
  background: #f34d06 none;
  border: 2px solid transparent;
  border-radius: 100%;
  -moz-border-radius: 100%;
  -o-border-radius: 100%;
  -webkit-border-radius: 100%;
  transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -webkit-transform-origin: 50% 50%;
  -o-transform-origin: 50% 50%;
  transition: all 0.5s;
  -o-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -webkit-transition: all 0.5s;
  animation: call-circle-fill-anim 2.3s infinite ease-in-out;
  -moz-animation: call-circle-fill-anim 2.3s infinite ease-in-out;
  -o-animation: call-circle-fill-anim 2.3s infinite ease-in-out;
  -webkit-animation: call-circle-fill-anim 2.3s infinite ease-in-out;
}
.call_now_icon {
  position: absolute;
  top: 25px;
  right: 25px;
  width: 30px;
  height: 30px;
  background-size: 24px 24px !important;
  background: #f34d06;
  border: 2px solid transparent;
  opacity: 1;
  border-radius: 100%;
  -moz-border-radius: 100%;
  -o-border-radius: 100%;
  -webkit-border-radius: 100%;
  transform-origin: 50% 50%;
  -moz-transform-origin: 50% 50%;
  -webkit-transform-origin: 50% 50%;
  -o-transform-origin: 50% 50%;
  animation: call-icon-anim 1s infinite ease-in-out;
  -o-animation: call-icon-anim 1s infinite ease-in-out;
  -moz-animation: call-icon-anim 1s infinite ease-in-out;
  -webkit-animation: call-icon-anim 1s infinite ease-in-out;
}
.call_now_icon:before {
  content: "\f095";
  font-family: FontAwesome;
  line-height: 28px;
  text-align: center;
  display: block;
  font-size: 23px;
  color: #fff;
}
@keyframes call-circle-anim {
  0% {
    transform: rotate(0) scale(0.5) skew(1deg);
    opacity: 0.1;
  }
  30% {
    transform: rotate(0) scale(0.7) skew(1deg);
    opacity: 0.5;
  }
  100% {
    transform: rotate(0) scale(1) skew(1deg);
    opacity: 0.1;
  }
}
@keyframes call-circle-fill-anim {
  0% {
    transform: rotate(0) scale(0.7) skew(1deg);
    opacity: 0.2;
  }
  50% {
    transform: rotate(0) scale(1) skew(1deg);
    opacity: 0.2;
  }
  100% {
    transform: rotate(0) scale(0.7) skew(1deg);
    opacity: 0.2;
  }
}
@keyframes call-icon-anim {
  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);
  }
}
.fl {
  float: left;
}
.bg-gray {
  background: #f0f0f0;
}
.bg-white {
  background: #fff;
}
.bd-gray {
  border: solid 1px #d5d5d5;
}
.bd-ra-0 {
  border-radius: 0;
}
.bd-ra-10 {
  border-radius: 10px;
}

.row7 {
  margin-left: -7px;
  margin-right: -7px;
}
.row0 {
  margin-left: 0px;
  margin-right: 0px;
}
.plr0 {
  padding-left: 0;
  padding-right: 0;
}
.plr5 {
  padding-left: 7px;
  padding-right: 7px;
}
.row10 {
  margin-left: -10px;
  margin-right: -10px;
}
.plr10 {
  padding-left: 0px;
  padding-right: 10px;
}
.plr15 {
  padding-left: 15px;
  padding-right: 15px;
}
.p0 {
  padding: 0px;
}
.p15 {
  padding: 15px;
}
.pl0 {
  padding-left: 0px;
}
.pr0 {
  padding-right: 0px;
}
.pb15 {
  padding-bottom: 15px;
}
.mb10 {
  margin-bottom: 10px;
}
.mb15 {
  margin-bottom: 15px;
}
.mb20 {
  margin-bottom: 20px;
}
.mb23 {
  margin-bottom: 23px;
}
.mb30 {
  margin-bottom: 30px;
}
.mr10 {
  margin-right: 10px;
}
.mr0 {
  margin-right: 0px;
}
.w100pe {
  width: 100%;
}

.animate1 {
  -webkit-animation-duration: 0.3s;
  animation-duration: 0.3s;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}

/*TIÊU ĐỀ AND FONT*/

#container {
  padding: 25px 0px 50px;
}

/*LEFT*/

#left {
  width: 300px;
  float: right;
}
#right {
  width: 870px;
  float: left;
}

.bao-left {
  margin-bottom: 20px;
}
.title-left {
  color: var(--default-color);
  font-family: "RCB";
  font-size: 18px;
  text-transform: uppercase;
  position: relative;
  background: url(../../images/border.png) no-repeat left bottom;
  padding-bottom: 13px;
  margin-bottom: 15px;
}
.title-left img {
  margin-right: 10px;
}
.ar_left {
  box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5);
  padding-bottom: 10px;
  padding: 10px;
  border: 1px solid #eee;
}

/*left danh mục sản phẩm*/
.ar_left.menu {
}
.ar_left ul {
  padding-left: 0px;
}
.ar_left ul li {
  list-style: none;
  font-family: "arial";
  font-size: 14px;
  color: #282828;
}
.ar_left ul li {
  border-bottom: 1px solid #e5e5e5;
}
.ar_left ul li img {
  width: 20px;
}
.ar_left ul li:last-child {
  border-bottom: none;
}
.ar_left ul li i {
  font-size: 14px;
}
.ar_left ul li a {
  color: #282828;
  display: block;
  padding: 10px 0px;
  display: block;
}
.ar_left ul > li:hover > a {
  color: #fff;
  background: var(--default-color);
  padding-left: 10px;
  transition: all 0.1s !important;
}
.ar_left ul li img {
  margin-right: 13px;
}

/*left hỗ trợ trực tuyến*/
.title-hotro span {
  color: red;
  font-weight: bold;
}
.title-hotro i {
  color: #282828;
  font-size: 18px;
}
.ar_left i {
  margin-right: 10px;
  font-size: 17px;
}
.hot-line img {
  margin-right: 10px;
}
.hot-line {
  font-family: "arial";
  font-size: 14.5px;
  color: #282828;
  text-transform: capitalize;
}

/*left video*/
.list_video select {
  width: 100%;
  height: 30px;
  font-family: "arial";
  font-size: 13px;
  padding-left: 10px;
}
/*Left Thống kê truy cập*/
.thongketruycap {
  max-width: 250px;
  float: right;
}
.thongketruycap li {
  list-style: none;
  font-family: "arial";
  font-size: 13px;
  line-height: 30px;
  color: #fff;
}
.thongketruycap li img {
  margin-right: 10px;
}
.thongketruycap li span {
  float: right;
  color: #ff0;
  margin-left: 80px;
}
.ngaydang {
  font-family: "RR";
  font-size: 12px;
  color: #707070;
  margin-top: 5px;
  margin-bottom: 5px;
}
.ngaydang i {
  margin-right: 8px;
}
.item-pro {
  position: relative;
  width: 100%;
  /*max-width: 264px;*/
  background: #fff;
  box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5);
  border: 1px solid #d7d7d7;
  transition: all 0.5s ease;
  -webkit-transition: all 0.5s ease;
  -moz-transition: all 0.5s ease;
  -o-transition: all 0.5s easef;
  text-align: center;
  padding-bottom: 20px;
}
/*CHI TIẾT SẢN PHẨM*/
.sp_detail.mota {
  font-weight: 500;
  font-size: 14px;
  color: #5f5f5f;
  line-height: 23px;
  text-align: justify;
}
.sp_detail.price_detail {
  font-size: 14px;
  color: #202020;
  font-weight: bold;
}
.sp_detail.price_detail h3 {
  font-weight: bold;
  font-size: 24px;
  background: #eaeaea;
  color: #006cb5;
  padding: 10px;
  width: 100%;
  margin-top: 10px;
}
h1.sp_detail {
  font-size: 18px !important;
  color: #000;
  line-height: 27px;
}
h1.sp_detail,
.sp_detail {
  border-bottom: 1px solid #d8d8d8;
  padding: 10px 0px;
  font-weight: bold;
  font-size: 15px;
}
.sp_detail.lienhemuahang {
  background: #006cb5;
  padding: 0px 10px;
  margin: 10px 0px;
  border-radius: 5px;
  color: #fff;
  display: inline-block;
  font-size: 16px;
}
.sp_detail button.addcart {
  border: 1px solid #006cb5;
  background: #fff;
  padding: 6px 14px;
  border-radius: 2px;
  transition: all 0.3s;
}
.sp_detail button.addcart:hover {
  border: 1px solid #fff;
  background: #006cb5;
  color: #fff;
  transition: all 0.3s;
}
.sp_detail button.addcart:hover i {
  color: #fff;
  transition: all 0.3s;
}
.sp_detail button.addcart i {
  margin-right: 10px;
  color: #006cb5;
  font-size: 20px;
}

.sub_img_detail {
  margin: 0px -9px;
}
#product_detail {
  margin: 15px 0px;
}
#product_detail .text {
  text-align: justify;
  line-height: 2em;
}
#product_detail .text img {
  max-width: 100%;
}

.img-detail-pro {
  margin-bottom: 20px;
}
.img_detail {
  text-align: center;
}
.sub_img_sanpham {
  margin: 0px auto;
  text-align: center;
  margin-top: 15px;
}
.sub_img_sanpham img {
  border: 1px solid #ebebeb;
}
/*END CHI TIẾT DETAIL*/
sub {
  top: -0.5em !important;
}

/**/
ul {
  padding: 0px;
  margin: 0px;
}
.h1,
.h2,
.h3,
h1,
h2,
h3 {
  margin: 0px;
  font-size: inherit;
}
body {
}
.no-padding {
  padding: 0px !important;
}
/*Contact/Liên hệ*/
#form-contact {
  display: inline-block;
  width: 100%;
}
.form-control {
  border-radius: 0px !important;
}
.col_contact label {
  font-weight: 600;
}
.input_contact {
  position: relative;
}
.input_contact input {
  padding-left: 50px;
}
.input_contact i {
  position: absolute;
  top: 0px;
  left: 0px;
  background: #bcbcbc;
  color: #056d2f;
  height: 34px;
  line-height: 34px;
  width: 40px;
  text-align: center;
}
.ct_contact {
  margin-top: 20px;
}
.button.button--aylen {
  background: #e90000 !important;
}
.input_contact {
  border-left: 2px solid #056d2f;
  border-radius: 1px;
}
/*Header*/
#header {
  position: relative;
}
#header img {
  width: 100%;
}

.infomation_header {
  background: #f8f8f8;
  height: 34px;
  line-height: 34px;
  font-family: "arial";
  font-size: 14.5px;
  color: #676666;
}
.email_header {
  float: right;
}
.hotline_header {
  float: right;
  margin-right: 33px;
}
.top_header {
  position: relative;
  text-align: center;
  background-size: 100% 100%;
}
.top_header img {
  width: 100%;
}
.language {
  position: absolute;
  top: 22px;
  right: 10%;
  z-index: 999;
}
.language img {
  width: 30px;
  height: 20px;
}
.language_mobile {
  display: none;
}
/*end header*/
section.partners {
  margin: 0 0;
  padding: 10px 0;
}
/*TÌM KIẾM NÂNG CAO*/
#timkiemnangcao {
  background: #e1e1e1;
  padding: 10px 35px;
  margin: 30px 0px;
}
#timkiemnangcao input,
#timkiemnangcao select {
  padding-left: 15px;
  font-family: "Tahoma";
  font-size: 14px;
  color: #010101;
  background: #fff;
  border: none;
  height: 30px;
  width: 350px;
}
#timkiemnangcao input.keyword_search {
  margin-right: 35px;
}
.title_timkiem {
  font-family: "RCB";
  font-size: 16px;
  color: #9f9e9b;
  float: left;
  margin-right: 80px;
  margin-top: 5px;
}
#timkiemnangcao input.submit_search {
  background: #ff0000;
  width: 100px;
  height: 30px;
  font-family: "Tahoma";
  font-weight: bold;
  text-transform: uppercase;
  color: #fff;
  float: right;
  transition: all 0.3s;
}
#timkiemnangcao input.submit_search:hover {
  background: #fff;
  color: #ff0000;
  transition: all 0.3s;
}
#slider_danhmuc {
}
.row5 {
  margin: 0px -5px;
}
/*=========================================*/
.col-left .box {
  float: left;
  width: 100%;
  border-top: none;
  padding: 10px;
  background: #fff;
}
.col-right .box {
  float: left;
  width: 100%;
  margin-bottom: 10px;
  border-top: none;
  padding: 10px;
  border: 1px solid #acacac;
}
.box.visited p {
  margin-bottom: 5px;
  font-weight: bold;
}
.box.visited span {
  display: inline-block;
  width: 150px;
  font-weight: normal;
  padding-left: 25px;
}
.box.visited span.v1 {
  background: url(../images/v1.png) no-repeat left center;
}
.box.visited span.v2 {
  background: url(../images/v2.png) no-repeat left center;
}
.box.visited span.v3 {
  background: url(../images/v3.png) no-repeat left center;
}
.footer {
  position: relative;
  background: var(--default-color);
  background-size: 100% 100%;
  color: #fff;
  width: 100%;
  float: left;
  margin: 0;
  padding: 35px 0px;
  font-size: 14px;
  border-top: 5px solid #cf630b;
  border-bottom: 1px solid #11b0a3;
}
.infomation_footer {
  padding-left: 0px;
}
.facebook_footer {
  padding-right: 0px;
}
.title_footer {
  font-family: "RCB";
  font-size: 16px;
  color: #fff;
  text-transform: uppercase;
  margin-bottom: 15px;
}
.thongke_footer {
  padding-left: 35px;
}
.footer_top {
  margin-bottom: 15px;
  display: inline-block;
  width: 100%;
}
#copyright {
  margin-bottom: -5px;
  background: var(--default-color);
  border-top: 1px solid #00938e;
  display: inline-block;
  width: 100%;
  font-family: "arial";
  font-size: 12px;
  color: #fff;
  padding: 9px 0px;
}
.pdH0 {
  padding-left: 0px;
  padding-right: 0px;
}
.designed {
  color: #fff;
  padding-top: 5px;
  font-size: 12px;
  font-family: "arial";
  font-weight: normal;
}
.designed a {
  color: #fff;
}

/*CSS HẬU*/
#full {
  max-width: 1200px;
  margin: 0px auto;
  overflow: hidden;
}
.center {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
}
.clear {
  display: block;
  clear: both;
}
.padding-out-line {
  padding: 20px;
}
.out-line {
  margin: 15px;
  border: 1px dashed #0096ff;
  border-radius: 0px 60px 0px 60px;
}
.img img {
  width: 100%;
}
/*SẢN PHẨM INDEX*/
.ar_spmoi {
  margin: 0px 7px;
  border: 1px solid #cccccc;
  text-align: center;
  box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5);
  margin-bottom: 5px;
}
.img_spmoi {
  overflow: hidden;
}
.img_spmoi img {
  width: 100%;
  transition: all 0.5s;
}
.img_spmoi:hover img {
  transition: all 0.5s;
  transform: scale(1.1);
}
.name_spmoi {
  font-family: "arial";
  font-size: 14px;
  color: #040404;
  height: 34px;
  overflow: hidden;
  line-height: 17px;
}
.price_spmoi {
  color: #fd0202;
  font-size: 14px;
  font-family: "arial";
  font-weight: bold;
}
.ar_name_price {
  padding: 10px 20px 25px;
}
#list_sanpham {
  padding-bottom: 9px;
}
#list_sanpham:last-child {
  padding-bottom: 0px;
}
#sanphamnoibat {
  margin-bottom: 10px;
}

/*THÔNG TIN FOOTER*/
#thongtinlienhe {
  margin: 0px -15px;
}
.slick-sanpham {
  margin: 0px -8px;
}
.thong-tin li {
  list-style: none;
  font-family: "Tahoma";
  font-size: 12px;
  color: #fff;
  line-height: 25px;
}
.thong-tin li a {
  color: #fff;
}
.thong-tin li:hover a {
  color: #ff0;
}
.facebook-footer {
  width: 100%;
}
.breadcrumb {
  background-color: #fff !important;
  border-bottom: 1px solid #e6e6e6;
  font-weight: bold;
  border-radius: 0px !important;
  padding-left: 0px !important;
}
.hieuung:after {
  content: "";
  position: absolute;
  top: -110%;
  left: -210%;
  width: 200%;
  height: 200%;
  opacity: 0;
  transform: rotate(0deg);

  background: rgba(255, 255, 255, 0.13);
  background: linear-gradient(
    to right,
    rgba(255, 255, 255, 0.13) 0%,
    rgba(255, 255, 255, 0.13) 77%,
    rgba(255, 255, 255, 0.5) 92%,
    rgba(255, 255, 255, 0) 100%
  );
}
.hieuung:hover:after {
  opacity: 1;
  top: -30%;
  left: -30%;
  transition-property: left, top, opacity;
  transition-duration: 0.7s, 0.7s, 0.15s;
  transition-timing-function: ease;
}
/*TIN TỨC MAIN */

/*đối tác*/
#doitac {
  margin-bottom: 50px;
}
.item_doitac {
  text-align: center;
  margin: 0px 5px;
}
.item_doitac img {
  border: 1px solid #e5e5e5;
}
.slick_doitac {
  margin: 0px -5px;
}
/*end đối tác*/
.map_description {
  color: #000 !important;
}
/*thông báo*/
.note {
  font-family: "arial";
  font-size: 13px;
  color: red;
  font-weight: bold;
  text-align: center;
  position: relative;
  display: inline-block;
  width: 100%;
}
/*Effect 2*/
/*.img_dv{position: relative;overflow: hidden;}
.img_dv img{transition: all 0.4s;width: 100%;}
.img_dv:hover img{transform: scale(1.1);transition: all 0.8s;opacity: 0.8;}
.img_dv::before,.img_dv::after {pointer-events: none;position: absolute;content: '';opacity: 0;-webkit-transition: opacity 0.7s,-webkit-transform 0.7s;transition: opacity 0.7s, transform 0.7s;z-index: 99;}
.img_dv:before {top: 20px;right: 20px;bottom: 20px;left: 20px;border-top: 1px solid #fecb33;border-bottom: 1px solid #fecb33;-webkit-transform: scale(0,1);transform: scale(0,1);-webkit-transform-origin: 100% 0;transform-origin: 100% 0;}
.img_dv:after {top: 20px;right: 20px;bottom: 20px;left: 20px;border-right: 1px solid #fecb33;border-left: 1px solid #fecb33;-webkit-transform: scale(0,1);transform: scale(1,0);-webkit-transform-origin: 100% 0;transform-origin: 100% 0;}
.img_dv:hover::before,
.img_dv:hover::after {opacity: 1;-webkit-transform: scale(1);transform: scale(1);}
.img_dv p {position: absolute;top: 0;display: flex; justify-content: center;align-items: center;width: 100%;height: 100%;padding: 3em 3em;text-transform: none;opacity: 0;-webkit-transform: translate3d(0,-10px,0);transform: translate3d(0,-10px,0);-webkit-transition: opacity 0.7s, -webkit-transform 0.7s;transition: opacity 0.7s, transform 0.7s;font-family: 'UTMAzuki';font-size: 18px;font-weight: bold;color: #000;z-index: 9;text-shadow: 1px 1px 1px #fff,1px -1px 1px #fff, -1px 1px 1px #fff, -1px -1px 1px #fff;}
.img_dv:hover p {opacity: 1;-webkit-transform: translate3d(0,0,0);transform: translate3d(0,0,0);}*/

/*Tab chi tiết sản phẩm*/
.title_tab {
  background: #fff;
  border-bottom: 2px solid #e90000;
}
.title_tab li {
  border-radius: 5px 5px 0px 0px;
  cursor: pointer;
  float: left;
  list-style: none;
  font-family: "arial";
  font-size: 15px;
  padding: 6px 30px;
  color: #000;
}
.title_tab li.active {
  background: #e90000;
  color: #fff;
}
.content_tab {
  padding: 20px 15px;
  border: 1px solid rgba(233, 0, 0, 0.5);
  border-top: 0px;
}
/*Giỏ hàng*/
.title-form {
  padding: 5px 0px 5px 15px;
  background: #e90000;
  color: #fff;
}
.ar_form {
  padding: 20px;
  border: 1px solid rgba(233, 0, 0, 0.5);
}
.tong_tt h3 {
  text-align: right;
}
.tong_tt h3 span {
  color: #f00;
  font-weight: bold;
}
.button_muahang {
  border: 1px solid transparent;
  float: right;
  padding: 7px 20px;
  background: #e90000;
  color: #fff;
  margin-bottom: 20px;
  margin-left: 15px;
  border-radius: 3px;
}
.button_muahang a {
  color: #fff;
}
.button_muahang:hover {
  border: 1px solid #e90000;
  background: #fff;
  transform: all 0.3s;
}
.button_muahang:hover a {
  color: #e90000;
  transition: all 0.2s !important;
}
.container_dathang {
  display: none;
}
/*Menu & tìm kiếm menu*/
#timkiem {
  position: absolute;
  top: 5px;
  right: 5px;
  width: 83%;
}
.s_desktop {
  width: 280px !important;
  position: absolute;
  top: 15px;
  right: 20px;
}
.s_desktop input {
  width: 100%;
  border-radius: 35px;
  height: 35px;
  padding-left: 15px;
  border: 1px solid #d5861d;
  color: #5f5f5f;
  font-size: 13px;
}
.s_desktop button {
  position: absolute;
  top: 7px;
  right: 10px;
  font-size: 13px;
  color: #d5861d;
  background: none;
  border: none;
}

#timkiem input {
  width: 100%;
  border: none;
  height: 30px;
  border-radius: 2px;
  padding-left: 15px;
  font-family: "arial";
  font-size: 12px;
}
#timkiem button {
  position: absolute;
  top: 5px;
  right: 5px;
  font-size: 13px;
  color: #000;
  background: none;
  border: none;
}
#menu_mobile {
  display: none;
  position: relative;
}
.header {
  background: var(--default-color);
}
.menu_pos {
  position: fixed !important;
  top: 0px;
  left: 0px;
  right: 0px;
  margin: 0px auto;
  z-index: 9999;
  transition: all 0.5s;
}
#menu_desktop {
  background: var(--default-color);
  z-index: 999;
  position: relative;
}
#menu_desktop .center > ul > li {
  float: left;
  position: relative;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
}
#menu_desktop ul li {
  list-style: none;
  text-transform: uppercase;
  font-family: "RCB";
  font-size: 16px;
  position: relative;
}
#menu_desktop .center > ul > li:first-child > a {
}
#menu_desktop .center > ul > li:first-child {
  border-left: none;
}
#menu_desktop .center > ul > li:last-child {
  border-right: none;
}
#menu_desktop ul > li.active > a,
#menu_desktop ul > li:hover > a {
  color: #ff0;
  transition: all 0.1s !important;
}
#menu_desktop ul > li.active > a,
#menu_desktop ul > li:hover {
  background: var(--default-color);
}
#menu_desktop ul > li > a {
  color: #fff;
  padding: 0px 39px;
  line-height: 40px;
  display: block;
}
#menu_desktop ul li ul {
  -webkit-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.75);
  -moz-box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.75);
  box-shadow: 0px 0px 20px 0px rgba(0, 0, 0, 0.75);
  position: absolute;
  top: 100%;
  left: 0px;
  width: 230px;
  background: #fff;
  z-index: 999;
  display: none;
  border-bottom: 5px solid #11b0a3;
}
#menu_desktop ul li ul li {
  text-transform: none;
  border-bottom: 1px solid #11b0a3;
  font-family: "arial";
  font-size: 14px;
}
#menu_desktop ul li ul li a {
  padding: 10px 10px;
  line-height: 20px;
}
#menu_desktop ul li ul li:last-child {
  border: none;
}
#menu_desktop ul li ul li ul {
  position: absolute;
  top: 0px;
  left: 100%;
}
#clock {
  font-size: 11px;
  color: #666;
  margin-bottom: 5px;
}
#menu_desktop ul li.li_horizontal {
  position: inherit;
}
#menu_desktop ul li ul.ul_horizontal {
  width: 100%;
  background: #fff;
  border: 1px solid #eee;
  border-bottom: 3px solid #11b0a3;
}
#menu_desktop ul li ul li a {
  color: var(--default-color);
}
#menu_desktop ul li ul.ul_horizontal li {
  width: 16.666%;
  text-align: center;
  float: left;
  border-bottom: 1px solid #eee;
}
#menu_desktop ul li i {
  position: absolute;
  right: 10px;
  top: 13px;
  color: var(--default-color);
}
#menu_desktop ul li ul.ul_horizontal li ul {
  position: absolute;
  top: 0px;
  left: 100%;
  width: 230px;
  background: var(--default-color);
  z-index: 999;
  display: none;
}
#menu_desktop ul li ul.ul_horizontal li ul li {
  text-align: left;
  float: none;
  width: 100%;
  text-transform: none;
  border-bottom: 1px solid #11b0a3;
  font-family: "arial";
  font-size: 14px;
}
#menu_desktop ul li ul.ul_horizontal li ul li a {
  color: #fff;
}
.title_main h3 {
  color: var(--default-color);
  text-align: center;
  text-transform: uppercase;
  font-size: 28px;
  font-weight: bold;
  text-shadow: 0px 2px 4px rgba(170, 179, 142, 0.8);
  /* background: url(../../images/tt1.png) no-repeat center bottom; */
  padding-bottom: 30px;
  margin-bottom: 30px;
}
/*Service*/
#service_main {
  padding: 15px 0px 40px;
}
.col_dv {
  padding: 0px 5px;
}
.ar_dv {
  border-radius: 5px;
  padding: 10px;
  border: 1px solid #e5e5e5;
  text-align: center;
  margin-bottom: 10px;
  box-shadow: 0 7px 7px -7px rgba(0, 0, 0, 0.5);
}
.name_dv {
  font-family: "RCB";
  font-size: 18px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  border-bottom: 2px solid #d7861b;
  margin-bottom: 10px;
  padding-bottom: 5px;
}
.name_dv a {
  color: var(--default-color);
}
.des_dv {
  font-family: "RCR";
  font-size: 15px;
  color: #5f5f5f;
  text-align: justify;
  margin-top: 10px;
  height: 63px;
  overflow: hidden;
}
/*Effect 1*/
.img_dv {
  overflow: hidden;
  position: relative;
}
.img_dv:before {
  pointer-events: none;
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 1;
  -webkit-transition: all 0.5s ease-in-out;
  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;
}
.img_dv:after {
  pointer-events: none;
  position: absolute;
  content: "";
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  -webkit-transition: all 0.5s ease-in-out;
  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;
}
.ar_dv:hover {
  background: #f1f1f1;
  transition: all 0.3s;
}
.ar_dv:hover .img_dv:before {
  right: 50%;
  left: 50%;
  width: 0;
  background: rgba(255, 255, 255, 0.3);
}
.ar_dv:hover .img_dv:after {
  height: 0;
  top: 50%;
  bottom: 50%;
  background: rgba(255, 255, 255, 0.3);
}

.ar_col {
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
.title_col {
  background: #e3e3e3;
  padding: 10px;
  border-top: 1px solid #fff;
  border-left: 1px solid #fff;
  border-right: 1px solid #fff;
  border-bottom: 1px solid #c6c2c1;
}
.title_col h3 {
  font-size: 15px;
  text-transform: uppercase;
  color: var(--default-color);
  font-weight: bold;
  text-shadow: 0px 2px 4px rgba(170, 179, 142, 0.5);
}
.title_col img {
  margin-right: 10px;
}
.title_col span {
  font-weight: 400;
  text-transform: none;
  float: right;
  color: #fff;
  font-size: 12px;
  width: 70px;
  height: 20px;
  border-radius: 3px;
  background: #d7861b;
  text-align: center;
  line-height: 20px;
}
.title_col span a {
  color: #fff;
}
.img_tintuc {
  float: left;
  margin-right: 10px;
  position: relative;
  overflow: hidden; /*border: 1px solid var(--default-color);*/
  -webkit-box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.5);
}
.img_tintuc img {
  transition: all 0.5s;
}
.ar_tintuc:hover .img_tintuc img {
  transform: scale(1.1);
  transition: all 0.5s;
}
.name_tintuc {
  height: 33px;
  overflow: hidden;
  font-family: "arial";
  font-weight: bold;
  font-size: 13px;
  color: #008080;
  margin-bottom: 2px;
}
.name_tintuc a {
  color: var(--default-color);
}
.des_tintuc {
  font-family: "arial";
  font-size: 13px;
  text-align: justify;
  line-height: 17px;
  height: 34px;
  overflow: hidden;
}
.ar_col_main {
  padding: 0px 10px;
  background: #fff;
}
.ar_tintuc {
  padding: 10px 0px;
  border-bottom: 1px dashed #ccc;
}
.ar_tintuc:last-child {
  border-bottom: none;
}
.col_main {
  padding: 0px 5px;
}
#col_3 {
  padding: 0px 0px 0px;
}
.slick_left {
  max-height: 465px;
}
/*Register*/
.col_dangky {
  padding: 0px 5px;
}
.ar_dangky {
  border: 1px solid #e7e7e7;
  padding: 15px 30px 30px;
  border-radius: 0px 0px 5px 5px;
}
.title_dangky .left_dangky {
  border-top-left-radius: 5px;
  background: #3cb661;
  color: #fff;
  width: 50%;
  text-align: center;
  position: relative;
}
.title_dangky .left_dangky:after {
  position: absolute;
  content: "";
  border-left: 10px solid #3cb661;
  border-bottom: 21px solid transparent;
  border-top: 22px solid transparent;
  left: 100%;
  top: 0px;
}
.title_dangky .right_dangky {
  width: 50%;
  text-align: center;
  color: #5f5f5f;
}
.title_dangky {
  border-radius: 5px 5px 0px 0px;
  line-height: 43px;
  font-family: "RCR";
  font-size: 18px;
  text-transform: uppercase;
  background: #e5e5e5;
}
.col_re {
  clear: both;
}
.col_re {
  font-family: "arial";
  font-size: 14px;
  color: #5f5f5f;
  margin-bottom: 15px;
}
.col_re.noclear {
  clear: none;
}
.col_re input {
  width: 100%;
  border: 1px solid #ddd;
  height: 35px;
  padding-left: 12px;
}
.col_re input.xpercent {
  width: 70%;
}
.col_re select {
  width: 100%;
  border: 1px solid #ddd;
  height: 35px;
  padding-left: 12px;
  cursor: pointer;
}
.col_re textarea {
  width: 100%;
  border: 1px solid #ddd;
  padding-left: 12px;
}
.line_re {
  padding: 15px 0px;
}
.title_re {
  display: inline-block;
  width: 100%;
  font-size: 18px;
  font-family: "RCR";
  margin-bottom: 15px;
}
.group1 {
  padding: 15px 0px 0px;
  border-bottom: 1px solid #ddd;
}
.title_rightre {
  line-height: 43px;
  padding-left: 20px;
  font-family: "RCR";
  font-size: 18px;
  text-transform: uppercase;
  color: #5f5f5f;
  border: 1px solid #ddd;
  border-radius: 5px 5px 0px 0px;
}
.ar_reright {
  padding: 20px;
}
.info_reright {
  padding: 10px 0px;
  border-bottom: 1px solid #ddd;
  font-size: 15px;
  color: #333;
}
.img_reright {
  padding-bottom: 15px;
  border-bottom: 1px solid #ddd;
  text-align: center;
}
.img_reright img {
  width: 270px;
}
.info_reright span {
  float: right;
  font-weight: 700;
  letter-spacing: 1.5px;
}
.info_reright:last-child {
  border-bottom: none;
}
.ar_reright {
  border: 1px solid #ddd;
  border-top: none;
}
.submit_goon {
  margin: 0px auto;
  width: 170px;
  height: 35px;
  background: #3cb661;
  color: #fff;
  text-align: center;
  margin-top: 20px;
  border: none;
}
.submit_goon i {
  margin-left: 10px;
}
span#err_captcha {
  color: #f00;
  font-size: 12px;
  margin-top: 5px;
  font-weight: bold;
}
#err_captcha i {
  margin-right: 5px;
}
.content_notication {
  font-size: 18px;
  color: #4d4d4e;
  font-family: "RobotoSlab-Regular";
  text-align: justify;
  line-height: 30px;
}
.i_icon i {
  font-size: 180px;
  color: #3b435d;
  text-align: center;
}
.i_icon {
  text-align: center;
  margin-top: 35px;
}
.title_notication {
  font-size: 36px;
  color: #f79522;
  font-family: "RobotoSlab-Regular";
  margin-bottom: 15px;
}
.content_notication span {
  color: #f79522;
}
.lichtrinh {
  margin-top: 40px;
  padding: 40px;
  background: #f2f2f2;
  font-family: "RobotoSlab-Bold";
  color: #4d4d4e;
  font-size: 14px;
}
.lichtrinh span {
  color: #f79522;
}
.col_lichtrinh {
  margin-bottom: 20px;
  line-height: 30px;
}
.col_in.centerin {
  text-align: center;
  position: relative;
  z-index: 999;
}
.col_in.leftin {
  text-align: left;
}
.col_in.rightin {
  text-align: right;
}
.col_lichtrinh.line {
  position: relative;
}
.col_lichtrinh.line:after {
  position: absolute;
  content: "";
  background: url(../../images/line1.png) repeat-x;
  width: 85%;
  left: 0px;
  right: 0px;
  margin: 0px auto;
  top: 18px;
  height: 1px;
  z-index: 9;
}
.hoantat {
  width: 120px;
  background: var(--default-color);
  color: #fff;
  height: 40px;
  line-height: 40px;
  margin-top: 20px;
  margin: 0px auto;
  text-align: center;
}
.hoantat a {
  color: #fff;
  display: block;
}
