@charset "UTF-8";
/* Scss Document */
@import url("https://fonts.googleapis.com/css2?family=Archivo:wght@300..700&display=swap");
:root {
  --font-main: "Archivo", sans-serif;
  --color-main: #0F69ED;
}

html,
body {
  text-rendering: optimizeSpeed;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  text-rendering: geometricPrecision;
}

body {
  color: #091E42;
  font: 400 14px/1.4 var(--font-main);
  text-align: left;
  counter-reset: my-sec-counter;
  float: left;
  width: 100%;
  overflow-x: hidden;
  overflow-y: scroll;
}
body::-webkit-scrollbar {
  width: 6px;
  background-color: #fff;
}
body::-webkit-scrollbar-thumb {
  background-color: #282C84;
}
body::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.1);
  background-color: #fff;
}

/*body::-webkit-scrollbar { 
    display: none;
}*/
a:focus {
  outline: 1 !important;
}

a {
  text-decoration: none;
  outline: 1;
  color: inherit;
}
a:hover {
  color: var(--color-main);
}

.ic {
  fill: currentColor;
}

img {
  border: 0;
  font-size: 0;
  line-height: 0;
  max-width: 100%;
  /*image-rendering: pixelated;*/
}

ul,
li {
  list-style-type: none;
}

ul.dotted {
  padding-left: 20px;
}
ul.dotted li {
  margin-bottom: 5px;
  list-style-type: disc;
}
ul.dotted li:last-child {
  margin-bottom: 0;
}

ol.dotted {
  padding-left: 20px;
}
ol.dotted li {
  margin-bottom: 5px;
  list-style-type: inherit;
}
ol.dotted li:last-child {
  margin-bottom: 0;
}

input[type=text],
input[type=password],
input[type=email],
input[type=tel],
input[type=number],
input[type=date],
textarea,
select {
  font-family: var(--font-main);
  background: #fff;
  width: 100%;
  height: 30px;
  line-height: 30px;
  border: 1px solid #DCDCDC;
  font-size: 14px;
  margin: 3px 0;
  padding: 0 10px;
  outline: none;
  color: #091E42;
}
input[type=text]:focus-visible,
input[type=password]:focus-visible,
input[type=email]:focus-visible,
input[type=tel]:focus-visible,
input[type=number]:focus-visible,
input[type=date]:focus-visible,
textarea:focus-visible,
select:focus-visible {
  border: 1px solid #0F91EA !important;
}
input[type=text]::-webkit-input-placeholder,
input[type=password]::-webkit-input-placeholder,
input[type=email]::-webkit-input-placeholder,
input[type=tel]::-webkit-input-placeholder,
input[type=number]::-webkit-input-placeholder,
input[type=date]::-webkit-input-placeholder,
textarea::-webkit-input-placeholder,
select::-webkit-input-placeholder {
  color: #6E7B9B;
}
input[type=text]:-moz-placeholder,
input[type=password]:-moz-placeholder,
input[type=email]:-moz-placeholder,
input[type=tel]:-moz-placeholder,
input[type=number]:-moz-placeholder,
input[type=date]:-moz-placeholder,
textarea:-moz-placeholder,
select:-moz-placeholder {
  color: #6E7B9B;
}
input[type=text]::-moz-placeholder,
input[type=password]::-moz-placeholder,
input[type=email]::-moz-placeholder,
input[type=tel]::-moz-placeholder,
input[type=number]::-moz-placeholder,
input[type=date]::-moz-placeholder,
textarea::-moz-placeholder,
select::-moz-placeholder {
  color: #6E7B9B;
}
input[type=text]:-ms-input-placeholder,
input[type=password]:-ms-input-placeholder,
input[type=email]:-ms-input-placeholder,
input[type=tel]:-ms-input-placeholder,
input[type=number]:-ms-input-placeholder,
input[type=date]:-ms-input-placeholder,
textarea:-ms-input-placeholder,
select:-ms-input-placeholder {
  color: #6E7B9B;
}
input[type=text][disabled],
input[type=password][disabled],
input[type=email][disabled],
input[type=tel][disabled],
input[type=number][disabled],
input[type=date][disabled],
textarea[disabled],
select[disabled] {
  background: #F3F6FE;
  border: 1px solid #D3D9EC;
  color: #202F47;
  cursor: not-allowed;
}

textarea.form-control {
  padding: 5px 10px;
  border-radius: 3px;
  resize: none;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type=number] {
  -moz-appearance: textfield;
}

.clearfix:before,
.clearfix:after {
  content: "";
  display: block !important;
  height: 0;
  overflow: hidden;
}

.clearfix:after {
  clear: both;
}

.left {
  float: left;
}

.right {
  float: right;
}

.hidden-mobile {
  display: none;
}

.d-inline-block {
  display: inline-block;
}

.relative {
  position: relative;
}

.width_common {
  width: 100%;
  float: left;
}

.container {
  width: 100%;
  max-width: 1130px;
  padding-left: 15px;
  padding-right: 15px;
  margin: 0 auto;
  position: relative;
  clear: both;
}

html {
  -webkit-text-size-adjust: none;
}

#to_top {
  width: 40px;
  height: 40px;
  background: #fff;
  border: 1px solid #E5E5E5;
  line-height: 40px;
  text-align: center;
  border-radius: 3px;
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 3;
}

.gray {
  background: #F8F8F6;
}

.error {
  color: #F53520;
  font-size: 14px;
  display: block;
  font-family: var(--font-main);
  margin-top: 5px;
}

.icon-svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  vertical-align: middle;
}
.icon-svg.min {
  width: 12px;
  height: 12px;
}

.rotate90deg {
  -webkit-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
          transform: rotate(90deg);
}

.center {
  text-align: center;
}

.text_right {
  text-align: right;
}

.text_left {
  text-align: left;
}

.no_wrap {
  white-space: nowrap;
}

.mb0 {
  margin-bottom: 0 !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb12 {
  margin-bottom: 12px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mb16 {
  margin-bottom: 16px !important;
}

.mb20 {
  margin-bottom: 20px;
}

.mb24 {
  margin-bottom: 24px !important;
}
@media (max-width: 600px) {
  .mb24 {
    margin-bottom: 15px !important;
  }
}

.mb25 {
  margin-bottom: 25px;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb35 {
  margin-bottom: 35px;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb60 {
  margin-bottom: 60px;
}

.mt5 {
  margin-top: 5px;
}

.mt10 {
  margin-top: 10px;
}

.mt15 {
  margin-top: 15px;
}

.mt20 {
  margin-top: 20px;
}

.mt25 {
  margin-top: 25px;
}

.mt30 {
  margin-top: 30px;
}

.mt40 {
  margin-top: 40px;
}

.txt_666 {
  color: #666;
}

.txt_10 {
  font-size: 10px;
}

.txt_11 {
  font-size: 11px;
}

.txt_14 {
  font-size: 14px !important;
}

.txt_15 {
  font-size: 15px !important;
}

.txt_16 {
  font-size: 16px !important;
}

.txt_18 {
  font-size: 18px;
}

.txt_20 {
  font-size: 20px;
}

.txt_24 {
  font-size: 24px;
}

.txt_26 {
  font-size: 26px !important;
}

.txt_vne {
  color: #9f224e;
}

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

.fw-500 {
  font-weight: 500 !important;
}

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

.fw-700 {
  font-weight: 700;
}

.color-yellow {
  color: var(--color-main);
}

.color-gray {
  color: #6E7B9B;
}

.color-red {
  color: #F53520;
}

.mb10 {
  margin-bottom: 10px !important;
}

.view-mobile {
  display: none;
}

.box_category {
  margin-bottom: 30px;
}
.box_category:last-child {
  margin-bottom: 0;
}

.transition_ease {
  transition: 0.5s ease;
  -webkit-transition: 0.5s ease;
}

.bg-gray {
  background: #F4F6F8;
}

.bg-white {
  background: #fff;
  color: #070B29;
}

.radius10 {
  border-radius: 10px;
}

.pd16 {
  padding: 16px;
}
.pd16 ul:last-child, .pd16 p:last-child {
  margin-bottom: 0 !important;
}

.pd20 {
  padding: 20px;
}

.pd24 {
  padding: 24px;
}

.pd30 {
  padding: 30px;
}
@media (max-width: 767px) {
  .pd30 {
    padding: 20px;
  }
}

.border {
  border: 1px solid #D3D9EC;
}

.mb-0 {
  margin-bottom: 0 !important;
}

.pb-0 {
  padding-bottom: 0 !important;
}

.medium {
  font-weight: 500;
}

.bold {
  font-weight: bold !important;
}

.flex {
  display: inherit;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  -webkit-flex-wrap: wrap;
          flex-wrap: wrap;
  position: relative;
}

.flexbox {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}

.flex-shrink {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}

.space-between {
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}

.justify-center {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.align-center {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}

.col-3 {
  width: 25%;
}

.col-4 {
  width: 33.3%;
}

.col-6 {
  width: 50%;
}

.col-12 {
  width: 100%;
}

.uppercase {
  text-transform: uppercase;
}

.center {
  text-align: center;
}

.bg_gray {
  background: #F7F7F7;
}

.sticky {
  position: -webkit-sticky;
  position: sticky;
  top: 0;
}

.art_item {
  width: 100%;
  float: left;
  position: relative;
  margin-bottom: 20px;
}
.art_item .title-news {
  font: bold 18px var(--font-main);
  line-height: 1.3;
}
.art_item .content {
  overflow: hidden;
}
.art_item .description {
  font: 400 14px var(--font-main);
  line-height: 1.4;
  margin-top: 10px;
  color: #4F4F4F;
}
.art_item .description a {
  color: #4F4F4F;
}

.art_featured {
  width: 100%;
  float: left;
}

.thumb-product {
  position: relative;
}
.thumb-product img {
  max-height: 90%;
  max-width: 90%;
  width: auto;
  height: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.thumb_art {
  position: relative;
  float: left;
  width: 250px;
  margin-right: 20px;
}

.thumb_art.thumb_full {
  width: 100%;
  margin: 0 0 10px 0;
  float: none;
  position: relative;
}

.thumb_art.thumb_medium {
  width: 240px;
  margin: 0 15px 0 0;
}

.thumb_art.thumb_small {
  width: 130px;
  margin: 0 10px 0 0;
}
.thumb_art.thumb_small + .content .title-news {
  font: 500 15px/23px var(--font-main);
}

.thumb_img {
  display: block;
  overflow: hidden;
  height: 1px;
  position: relative;
  width: 100%;
  background: #f4f4f4;
}
.thumb_img img {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}

.thumb_img.thumb_5x3 {
  padding-bottom: 60%;
}

.thumb_img.thumb_5x4 {
  padding-bottom: 80%;
}

.thumb_img.thumb_1x1 {
  padding-bottom: 100%;
}

.thumb_img.thumb_1x15 {
  padding-bottom: 150%;
}

.thumb_img.thumb_16x9 {
  padding-bottom: 56.2%;
}

.thumb_img.thumb_video {
  padding-bottom: 56.25%;
}

.embed-container {
  padding-bottom: 56.2%;
  position: relative;
  display: block;
  height: 0px;
}
.embed-container iframe,
.embed-container img.lazyLoaded {
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: center;
     object-position: center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.embed-container > img {
  -o-object-position: top;
  object-position: top;
  -o-object-fit: cover;
  object-fit: cover;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100% !important;
  height: 100% !important;
}
@media (max-width: 900px) {
  .embed-container iframe {
    -webkit-overflow-scrolling: touch;
    -webkit-transform: translateZ(0);
    -webkit-backface-visibility: hidden;
            backface-visibility: hidden;
    -o-object-fit: unset !important;
       object-fit: unset !important;
  }
}

.title-news a:hover {
  color: #03256C;
}

.news_lead_res {
  font: 400 14px/18px arial;
  padding: 0;
}

.meta_post {
  font-size: 12px;
  color: #999;
}

.location-stamp {
  color: #999;
  letter-spacing: -0.5px;
  font-size: 14px;
  margin-right: 12px;
  position: relative;
}

.location-stamp::before {
  content: "";
  position: absolute;
  bottom: 3px;
  width: 5px;
  height: 1px;
  background: #333;
  right: -10px;
}

.agray {
  color: #757575;
}

/* Scss Document */
.page_contact .sidebar_2 iframe {
  width: 298px !important;
}

.space_bottom_15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px !important;
}

.text_center {
  text-align: center;
}

.no_margin {
  margin: 0 !important;
}

.no_margin_right {
  margin-right: 0 !important;
}

.no_margin_bottom {
  margin-bottom: 0 !important;
}

.no_padding {
  padding: 0 !important;
}

.no_padding_right {
  padding-right: 0 !important;
}

.no_border {
  border: none !important;
}

.list_title_no_dot li {
  padding: 0 0 5px 0 !important;
}
.list_title_no_dot li:after {
  content: none !important;
}

.line_dotted, .line_solid {
  width: 100%;
  height: 1px;
  border-bottom: 1px dotted #cecece;
  border-top: 0;
  margin-bottom: 10px;
  clear: both;
}

.line_solid {
  border-bottom: 1px solid #cecece;
}

.ic-live {
  font-style: inherit;
}

/* format thumb */
.item-news {
  position: relative;
  width: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-align-content: start;
      -ms-flex-line-pack: start;
          align-content: start;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 20px;
  padding-bottom: 0;
  margin-bottom: 0;
  border-bottom: 0;
}
.item-news .thumb-art {
  width: 240px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  margin: 0;
}
.item-news .thumb-art .icon_thumb {
  position: absolute;
  background: #010103;
  width: 24px;
  height: 24px;
  line-height: 22px;
  text-align: center;
  bottom: 0;
}
.item-news .thumb-art .icon_thumb svg {
  fill: #fff;
  width: 12px;
  height: 12px;
}
.item-news .thumb-art .time {
  position: absolute;
  left: 24px;
  bottom: 0;
  background: #4F4F4F;
  color: #fff;
  width: 44px;
  height: 24px;
  line-height: 26px;
  text-align: center;
}
.item-news .content {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-align-content: start;
      -ms-flex-line-pack: start;
          align-content: start;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  row-gap: 5px;
}
.item-news .title-news {
  font: 700 16px/1.6 var(--font-main);
  color: #091e42;
  margin: 0;
}
.item-news .title-news .comment,
.item-news .title-news .count_cmt {
  color: var(--gray1);
  font: 400 12px arial;
  margin-left: 3px;
}
.item-news .title-news .comment svg,
.item-news .title-news .count_cmt svg {
  width: 12px;
  height: 12px;
}
.item-news .description {
  font: 400 14px/1.6 Arial;
  color: #4F4F4F;
}
.item-news .status {
  color: #666666;
  margin-top: 10px;
}
.item-news .status .date {
  margin-right: 15px;
}
.item-news.full-thumb {
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
  row-gap: 8px;
}
.item-news.full-thumb .thumb-art {
  width: 100%;
  margin: 0;
}
@media (max-width: 600px) {
  .item-news .thumb-art {
    border-radius: 4px;
    overflow: hidden;
  }
  .item-news .title-news {
    font-size: 18px !important;
  }
  .item-news .description {
    font-size: 17px !important;
    line-height: 1.4 !important;
  }
  .item-news .description .location-stamp {
    font-size: 17px;
  }
}

.thumb_art.large_thumb {
  margin-bottom: 10px !important;
}

.interactives .thumb_art {
  width: 36%;
}

.thumb_art {
  position: relative;
  margin-right: 10px;
  float: left;
  width: 140px;
  margin-bottom: 10px;
}
.thumb_art img {
  width: 100%;
}

.thum120 {
  width: 120px;
}

.large_thumb {
  width: 100% !important;
  margin-bottom: 10px;
}

.thumb_medium {
  width: 45%;
}

.thumb_tags {
  width: 36%;
}

.thumb_30 {
  width: 30%;
}

.thumb_full {
  width: 100% !important;
  margin-bottom: 10px;
}
.thumb_full img {
  float: left;
  width: 100%;
}

.thumb_5x3 {
  padding-bottom: 60%;
}

.thumb_2x1 {
  padding-bottom: 50%;
}

.thumb_1x1 {
  padding-bottom: 100%;
}

.thumb_2x3 {
  padding-bottom: 150%;
}

.thumb_3x4 {
  padding-bottom: 133.33334%;
}

.thumb_1x15 {
  padding-bottom: 150%;
}

.title_news {
  margin-bottom: 5px;
  line-height: normal;
}
.title_news a:hover {
  color: #004f8b !important;
}

.title_news_nomal,
.title_news_nomal a {
  font: 400 14px arial;
}

.list_title {
  border-top: 1px dotted #CCC;
  margin-top: 10px;
  padding-top: 10px;
  float: left;
  width: 100%;
}
.list_title li {
  position: relative;
  padding: 0 0 5px 10px;
  /*font-size: 0;*/
  /*i{margin: 0 3px;}*/
  /*.ic-fun{
  	margin-right: 3px;
  }*/
}
.list_title li a {
  font: 700 12px/16px arial;
  color: #666;
}
.list_title li .time_news {
  font-size: 14px;
  color: #666;
  margin-left: 3px;
  font-weight: normal;
}
.list_title li .txt_666 {
  font-size: 14px;
  color: #666;
  font-weight: normal;
}
.list_title li:after {
  content: "";
  width: 3px;
  height: 3px;
  background: #999;
  position: absolute;
  left: 0;
  top: 7px;
}
.list_title .icon_news i:last-child {
  margin-right: 0;
}

.box_thumb_large_small .title_news {
  margin-top: 0 !important;
}
.box_thumb_large_small .title_news a {
  font-weight: 700;
}
.box_thumb_large_small .title_news i:nth-of-type(1) {
  margin-left: 3px;
}

.slide_video_box_300 {
  position: relative;
}
.slide_video_box_300 .thumb_art {
  width: 100%;
  margin-bottom: 10px;
}
.slide_video_box_300 .btn_next,
.slide_video_box_300 .btn_prev {
  top: 20%;
}
.slide_video_box_300 .title_news {
  margin-bottom: 0 !important;
  float: left;
  margin-top: 10px;
}
.slide_video_box_300 .title_news a {
  font-weight: 400;
}

/* end format thumb */
/*btn_vne*/
.btn_vne {
  background: #9F224E;
  color: #fff !important;
  font: 700 12px arial;
  padding: 5px 18px;
  border: none;
  cursor: pointer;
  display: inline-block;
}

.view-more {
  background: #FFFFFF;
  border: 1px solid #1870F1;
  color: #1870F1;
  font-size: 14px;
  height: 45px;
  border-radius: 5px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  padding: 0 20px;
}
.view-more.full {
  width: 100%;
}

.txt_clear_all {
  font-size: 11px;
  text-decoration: underline;
  color: #666;
}

/*end btn_vne*/
/*error*/
span.error {
  display: block;
  font-size: 14px;
  color: #D30606;
  clear: both;
  margin-top: 5px;
}

/*end error*/
/*Button owl-carousel*/
.btn_prev, .btn_next {
  position: absolute;
  height: 28px;
  line-height: 28px;
  width: 28px;
  background: rgba(255, 255, 255, 0.8);
  z-index: 9;
  top: 30%;
  text-align: center;
}
.btn_prev i, .btn_next i {
  color: #000;
}

.btn_list_raovat_sidebar_next,
.btn_list_ebank_sidebar_next, .btn_list_raovat_sidebar_prev,
.btn_list_ebank_sidebar_prev {
  position: absolute;
  top: 50%;
  z-index: 999;
}
.btn_list_raovat_sidebar_next i,
.btn_list_ebank_sidebar_next i, .btn_list_raovat_sidebar_prev i,
.btn_list_ebank_sidebar_prev i {
  font-weight: bold;
  color: #000;
}

.btn_next {
  right: 0;
}

.btn_prev {
  left: 0;
}

.btn_list_raovat_sidebar_prev,
.btn_list_ebank_sidebar_prev {
  left: -5px;
}

.btn_list_raovat_sidebar_next,
.btn_list_ebank_sidebar_next {
  right: -5px;
}

/*End Button owl-carousel*/
/*PAGINATION*/
#pagination {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: end;
  -webkit-justify-content: end;
      -ms-flex-pack: end;
          justify-content: end;
  margin: 0 0 20px 0;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
#pagination .button-page {
  margin-left: 20px;
}
#pagination a,
#pagination .btn-page {
  width: 40px;
  height: 40px;
  font-size: 14px;
  min-width: 40px !important;
  text-align: center;
  line-height: 40px;
  border: 1px solid #BFC1E8;
  display: inline-block;
  margin-left: 4px;
  border-radius: 3px;
  color: #757575;
  position: relative;
}
#pagination a.active, #pagination a:hover,
#pagination .btn-page.active,
#pagination .btn-page:hover {
  color: #1A59B7;
  border: 1px solid #1A59B7;
  font-weight: 400;
  background: none;
}
#pagination a.active svg, #pagination a:hover svg,
#pagination .btn-page.active svg,
#pagination .btn-page:hover svg {
  color: #1A59B7;
}
#pagination a .ic,
#pagination .btn-page .ic {
  width: 10px;
  height: 10px;
  border-left: 1px solid #757575;
  border-top: 1px solid #757575;
  -webkit-transform: rotate(135deg);
      -ms-transform: rotate(135deg);
          transform: rotate(135deg);
  position: absolute;
  left: 12px;
  top: 14px;
  opacity: 1;
}
#pagination a .ic-caret-left,
#pagination .btn-page .ic-caret-left {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  left: 16px;
}
#pagination .pa_prev svg {
  -webkit-transform: rotate(180deg);
      -ms-transform: rotate(180deg);
          transform: rotate(180deg);
}
#pagination .pagination_btn {
  line-height: 38px;
}

.pagination {
  float: right;
  margin-top: 10px;
}
.pagination a {
  width: 26px;
  height: 26px;
  line-height: 26px;
  display: inline-block;
  border: 1px solid #d6d6d6;
  color: #000;
  font: 400 11px/25px arial;
  border-radius: 3px;
  text-align: center;
  margin-left: 3px;
}
.pagination a i {
  vertical-align: middle;
  display: inline-block;
  /*margin-top: 2px;*/
}
.pagination .active, .pagination a:hover {
  background: #c8c8c8;
  font-weight: 700;
}
.pagination .ic-caret-right,
.pagination .ic-caret-left {
  opacity: 0.4;
}

/*End PAGINATION*/
.breadcrumb {
  padding: 15px 0;
}
.breadcrumb li {
  display: inline-block;
  margin-right: 10px;
  padding-right: 10px;
  position: relative;
}
.breadcrumb li::before {
  content: "";
  background: #222;
  height: 12px;
  width: 1px;
  position: absolute;
  right: 0;
  top: 1px;
  -webkit-transform: rotate(25deg);
      -ms-transform: rotate(25deg);
          transform: rotate(25deg);
}
.breadcrumb li::after {
  display: none;
}
.breadcrumb li a {
  font: 400 14px var(--font-main);
  color: #091E42;
}
.breadcrumb li.active::before {
  display: none;
}
@media (max-width: 600px) {
  .breadcrumb ul {
    display: block;
    overflow-x: scroll;
    overflow-y: hidden;
    -webkit-overflow-scrolling: touch;
    white-space: nowrap;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -ms-overflow-style: none;
    scrollbar-width: none;
  }
  .breadcrumb ul::-webkit-scrollbar {
    display: none;
  }
}

/*VIEW BY DATE*/
.view_by_date {
  height: 24px;
  display: block;
  border: 1px solid #acacac;
  padding: 0 10px 0 0;
  margin: 10px 0 20px;
  cursor: pointer;
  float: left;
  position: relative;
  z-index: 4;
}
.view_by_date img {
  float: left;
  margin-right: 10px;
}
.view_by_date #widgetField span {
  height: 24px;
  border: none;
}

#widgetCalendar,
.calendarblockvne {
  background: none;
}

/*End VIEW BY DATE*/
.view_more {
  font: 400 11px arial !important;
  color: #666;
  float: right;
  padding-right: 10px;
  /*i{
  	display: inline-block;
  	vertical-align: middle;
  	color: $vne_color;
  	font-size: 6px;
  }*/
}
.view_more:hover {
  color: #087CCE;
}
.view_more .ic-double-arrow-right {
  background-position: -524px -17px;
}

.line-bottom {
  border-bottom: 1px solid #E7E9F3;
}

.line-bottom2 {
  border-bottom: 1px solid #D3D9EC;
}

/*title_box_category cũ*/
.txt_main_category {
  display: inline-block;
  position: relative;
}
.txt_main_category:before {
  content: "";
  background: #999;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  width: 100%;
  height: 2px;
}
.txt_main_category a {
  font: 700 14px/32px arial;
  color: #9f224e;
}

/*End title_box_category cũ*/
#box_fb iframe {
  width: 298px !important;
}

.grid {
  display: grid;
  position: relative;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 20px;
  width: 100% !important;
  margin-left: 0 !important;
  margin-right: 0 !important;
}

.grid > * {
  margin-bottom: 0 !important;
}

.grid__1 {
  grid-template-columns: repeat(1, 1fr);
}

.grid__2 {
  grid-template-columns: repeat(2, 1fr);
}

.grid__3 {
  grid-template-columns: repeat(3, 1fr);
}

.grid__4 {
  grid-template-columns: repeat(4, 1fr);
}

.grid__5 {
  grid-template-columns: repeat(5, 1fr);
}

.grid__6 {
  grid-template-columns: repeat(6, 1fr);
}

.gap_10 {
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  row-gap: 10px;
}

.gap_15 {
  -webkit-column-gap: 15px;
     -moz-column-gap: 15px;
          column-gap: 15px;
  row-gap: 15px;
}

.gap_24 {
  -webkit-column-gap: 24px;
     -moz-column-gap: 24px;
          column-gap: 24px;
  row-gap: 24px;
}

.confir_res {
  padding-left: 30px;
  position: relative;
  cursor: pointer;
  display: block;
  font-size: 15px;
}
.confir_res input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
}
.confir_res .slogan {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.confir_res .slogan img {
  width: 27px;
  margin-right: 10px;
}
.confir_res .checkmark {
  position: absolute;
  top: 0px;
  left: 0;
  height: 20px;
  width: 20px;
  background: #FFF;
  border: 1px solid #D5D7DA;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border-radius: 6px;
}
.confir_res .checkmark:after {
  content: "";
  position: absolute;
  display: none;
  left: 7px;
  top: 2px;
  width: 3px;
  height: 9px;
  border: solid #0f69ed;
  border-width: 0 2px 2px 0;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
.confir_res input:checked ~ .checkmark:after {
  display: block;
}
.confir_res input:checked ~ .checkmark {
  background: #fff;
  border: 1px solid #0F69ED;
}
.confir_res input:disabled ~ .checkmark {
  border: 1px solid #EBEBEB;
}
.confir_res input:disabled ~ .checkmark:after {
  border: solid #EBEBEB;
  border-width: 0 1px 1px 0;
}
.confir_res.circle .checkmark {
  border-radius: 50%;
  background: #F9F5FF;
  border: 1px solid #D5D7DA;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.confir_res.circle .checkmark::after {
  background: #1254FF;
  width: 12px;
  height: 12px;
  left: 3px;
  top: 3px;
  border-radius: 50%;
  border-width: 0;
  border: 0;
  -webkit-transform: rotate(0deg);
      -ms-transform: rotate(0deg);
          transform: rotate(0deg);
}
@media (max-width: 600px) {
  .confir_res {
    font-size: 16px;
  }
}

.list-check li {
  border: 1px solid #D3D9EC;
  background: #FFF;
  padding: 10px;
  margin-bottom: 8px;
}
.list-check li .confir_res {
  margin-bottom: 0 !important;
  font-weight: bold;
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  padding: 0 30px 0 0;
}
.list-check li .confir_res .checkmark {
  left: inherit;
  right: 0;
  top: 50%;
  margin-top: -10px;
}
.list-check li .confir_res .logo {
  border: 1px solid #D3D9EC;
  background: #FFF;
  padding: 6px;
  width: 56px;
  height: 56px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.list-check li.active {
  background: #F3F6FE;
}

.player-video-main {
  width: 100%;
  position: relative;
  height: 0;
  padding-bottom: 56.25%;
  overflow: hidden;
  background: #353E50;
}
.player-video-main video, .player-video-main iframe {
  -o-object-fit: cover;
  object-fit: cover;
  -o-object-position: center;
  object-position: center;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
}
.player-video-main .over-layer {
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%);
}
.player-video-main:hover .over-layer {
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0);
}

@media (min-width: 1280px) {
  .video-js .vjs-big-play-button {
    background-size: auto 10%;
  }
}

.over-layer {
  position: absolute;
  width: 100%;
  left: 0;
  bottom: 0;
  padding: 11% 40px 32px 40px;
  background: -webkit-gradient(linear, left bottom, left top, from(#050F1E), to(rgba(5, 15, 30, 0)));
  background: -webkit-linear-gradient(bottom, #050F1E 0%, rgba(5, 15, 30, 0) 100%);
  background: linear-gradient(360deg, #050F1E 0%, rgba(5, 15, 30, 0) 100%);
  -webkit-transition-duration: 550ms;
          transition-duration: 550ms;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
          transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}
.over-layer .title-video {
  font: 600 32px/150% var(--font-main);
  color: #FFFFFF;
  margin-bottom: 0;
}
.over-layer .title-video a:hover {
  color: #168fd6;
}
.over-layer .sub-action {
  width: 100%;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: none;
}
.over-layer .meta-news a {
  width: 35px;
  height: 35px;
}
.over-layer .meta-news a.fb {
  width: 40px;
  height: 40px;
  margin-right: 28px;
}
.over-layer .right-act {
  margin-left: auto;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.over-layer .note-pod {
  color: #fff;
  font: 400 12px/150% var(--font-main);
  font-style: italic;
}
.over-layer .button-podcast {
  background: #3B25A8;
  border-radius: 4px;
  color: #fff;
  font: 500 14px/21px var(--font-main);
  padding: 12px 18px;
  margin-left: 20px;
}
.over-layer .button-podcast .ic {
  width: 16px;
  height: 16px;
  fill: #fff;
  margin: -3px 2px 0 0;
}

.thumb-video {
  background: #000;
}

.icon-play,
.play-icon {
  width: 80px;
  height: 80px;
  display: block;
  background: url(images/graphics/icon_play.svg) no-repeat;
  background-size: contain;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 1;
  cursor: pointer;
}
@media (max-width: 600px) {
  .icon-play,
  .play-icon {
    width: 55px;
    height: 55px;
  }
}

.icon-play-2 {
  background: #3D3047;
  width: 50px;
  height: 50px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  z-index: 10;
  cursor: pointer;
}
.icon-play-2:after {
  content: "";
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 20px 0 20px 30px;
  border-color: transparent transparent transparent #ffffff;
}

.fade-in-top {
  -webkit-animation: fade-in-top 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in-top 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

.fade-in-bottom {
  -webkit-animation: fade-in-bottom 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in-bottom 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

.fade-in-left {
  -webkit-animation: fade-in-left 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in-left 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

.fade-in-right {
  -webkit-animation: fade-in-right 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
  animation: fade-in-right 0.6s cubic-bezier(0.39, 0.575, 0.565, 1) both;
}

@-webkit-keyframes fade-in-bottom {
  0% {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in-bottom {
  0% {
    -webkit-transform: translateY(50px);
    transform: translateY(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes fade-in-top {
  0% {
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@keyframes fade-in-top {
  0% {
    -webkit-transform: translateY(-50px);
    transform: translateY(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
    opacity: 1;
  }
}
@-webkit-keyframes fade-in-right {
  0% {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-right {
  0% {
    -webkit-transform: translateX(50px);
    transform: translateX(50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@-webkit-keyframes fade-in-left {
  0% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@keyframes fade-in-left {
  0% {
    -webkit-transform: translateX(-50px);
    transform: translateX(-50px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateX(0);
    transform: translateX(0);
    opacity: 1;
  }
}
@-webkit-keyframes load-animate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
    opacity: 0.35;
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@keyframes load-animate {
  0% {
    -webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
            transform: rotate(180deg);
    opacity: 0.35;
  }
  100% {
    -webkit-transform: rotate(360deg);
            transform: rotate(360deg);
  }
}
@-webkit-keyframes dot-3-move {
  20% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  45% {
    -webkit-transform: translateY(-18px) scale(0.45);
            transform: translateY(-18px) scale(0.45);
  }
  60% {
    -webkit-transform: translateY(-90px) scale(0.45);
            transform: translateY(-90px) scale(0.45);
  }
  80% {
    -webkit-transform: translateY(-90px) scale(0.45);
            transform: translateY(-90px) scale(0.45);
  }
  100% {
    -webkit-transform: translateY(0px) scale(1);
            transform: translateY(0px) scale(1);
  }
}
@keyframes dot-3-move {
  20% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  45% {
    -webkit-transform: translateY(-18px) scale(0.45);
            transform: translateY(-18px) scale(0.45);
  }
  60% {
    -webkit-transform: translateY(-90px) scale(0.45);
            transform: translateY(-90px) scale(0.45);
  }
  80% {
    -webkit-transform: translateY(-90px) scale(0.45);
            transform: translateY(-90px) scale(0.45);
  }
  100% {
    -webkit-transform: translateY(0px) scale(1);
            transform: translateY(0px) scale(1);
  }
}
@-webkit-keyframes dot-2-move {
  20% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  45% {
    -webkit-transform: translate(-16px, 12px) scale(0.45);
            transform: translate(-16px, 12px) scale(0.45);
  }
  60% {
    -webkit-transform: translate(-80px, 60px) scale(0.45);
            transform: translate(-80px, 60px) scale(0.45);
  }
  80% {
    -webkit-transform: translate(-80px, 60px) scale(0.45);
            transform: translate(-80px, 60px) scale(0.45);
  }
  100% {
    -webkit-transform: translateY(0px) scale(1);
            transform: translateY(0px) scale(1);
  }
}
@keyframes dot-2-move {
  20% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  45% {
    -webkit-transform: translate(-16px, 12px) scale(0.45);
            transform: translate(-16px, 12px) scale(0.45);
  }
  60% {
    -webkit-transform: translate(-80px, 60px) scale(0.45);
            transform: translate(-80px, 60px) scale(0.45);
  }
  80% {
    -webkit-transform: translate(-80px, 60px) scale(0.45);
            transform: translate(-80px, 60px) scale(0.45);
  }
  100% {
    -webkit-transform: translateY(0px) scale(1);
            transform: translateY(0px) scale(1);
  }
}
@-webkit-keyframes dot-1-move {
  20% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  45% {
    -webkit-transform: translate(16px, 12px) scale(0.45);
            transform: translate(16px, 12px) scale(0.45);
  }
  60% {
    -webkit-transform: translate(80px, 60px) scale(0.45);
            transform: translate(80px, 60px) scale(0.45);
  }
  80% {
    -webkit-transform: translate(80px, 60px) scale(0.45);
            transform: translate(80px, 60px) scale(0.45);
  }
  100% {
    -webkit-transform: translateY(0px) scale(1);
            transform: translateY(0px) scale(1);
  }
}
@keyframes dot-1-move {
  20% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }
  45% {
    -webkit-transform: translate(16px, 12px) scale(0.45);
            transform: translate(16px, 12px) scale(0.45);
  }
  60% {
    -webkit-transform: translate(80px, 60px) scale(0.45);
            transform: translate(80px, 60px) scale(0.45);
  }
  80% {
    -webkit-transform: translate(80px, 60px) scale(0.45);
            transform: translate(80px, 60px) scale(0.45);
  }
  100% {
    -webkit-transform: translateY(0px) scale(1);
            transform: translateY(0px) scale(1);
  }
}
@-webkit-keyframes rotate-move {
  55% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
  }
  80% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
  }
}
@keyframes rotate-move {
  55% {
    -webkit-transform: translate(-50%, -50%) rotate(0deg);
            transform: translate(-50%, -50%) rotate(0deg);
  }
  80% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
  }
  100% {
    -webkit-transform: translate(-50%, -50%) rotate(360deg);
            transform: translate(-50%, -50%) rotate(360deg);
  }
}
@-webkit-keyframes index {
  0%, 100% {
    z-index: 3;
  }
  33.3% {
    z-index: 2;
  }
  66.6% {
    z-index: 1;
  }
}
@keyframes index {
  0%, 100% {
    z-index: 3;
  }
  33.3% {
    z-index: 2;
  }
  66.6% {
    z-index: 1;
  }
}
@-webkit-keyframes marquee {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-66.6%);
            transform: translateX(-66.6%);
  }
}
@keyframes marquee {
  0% {
    -webkit-transform: translateX(0);
            transform: translateX(0);
  }
  100% {
    -webkit-transform: translateX(-66.6%);
            transform: translateX(-66.6%);
  }
}
/* section-top-header */
.section-top-header {
  height: 41px;
  position: relative;
  float: none;
  z-index: 206;
  padding: 0;
  border-bottom: 1px solid #E7E8EC;
  background: rgba(255, 255, 255, 0.7);
}
.section-top-header .container {
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
.section-top-header .top-header-left {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  border-right: 1px solid rgba(19, 31, 70, 0.1);
}
.section-top-header .top-header-left a {
  line-height: 40px;
  padding: 0 10px;
  border-left: 1px solid rgba(19, 31, 70, 0.1);
}
.section-top-header .top-header-right {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
  border-right: 1px solid rgba(19, 31, 70, 0.1);
}
.section-top-header .select-dropdown {
  border-left: 1px solid rgba(19, 31, 70, 0.1);
  border-right: 1px solid rgba(19, 31, 70, 0.1);
}
.section-top-header .select-dropdown .dropbtn {
  padding: 0 25px 0 10px;
  line-height: 40px;
}
.section-top-header .select-dropdown .dropbtn::before {
  border-top: 1px solid #131F46;
  border-right: 1px solid #131F46;
  top: 13px;
  right: 10px;
}
.section-top-header .select-dropdown .dropdown-content {
  min-width: 170px;
  padding: 8px 10px;
  top: 40px;
}
@media (max-width: 767px) {
  .section-top-header .select-dropdown {
    display: none;
  }
}
@media (max-width: 600px) {
  .section-top-header {
    background: #fff;
    height: 38px;
    top: 0;
    width: 100%;
  }
  .section-top-header .top-header-left a {
    line-height: 37px;
  }
}

/* /section-top-header */
#myvne_taskbar.myvne_taskbar_pc {
  display: inline-block;
  margin-left: 10px;
  position: static;
  height: auto;
}
#myvne_taskbar.myvne_taskbar_pc .myvne_form_log.logged .myvne_notification .myvne_icon_bell_click svg {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='24' height='24' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M9.9979 2C13.1469 2 15.7418 4.33488 15.9824 7.3554L15.9958 7.57762L16.0003 7.80214L15.9993 11.398L16.9247 13.6202C16.9472 13.6743 16.9649 13.7302 16.9776 13.7871L16.9929 13.8733L17.0015 14.0046C17.0015 14.4526 16.705 14.8387 16.2524 14.9677L16.136 14.9945L16.0015 15.0046L12.4999 15.004L12.4949 15.1653C12.4098 16.469 11.3254 17.5 10.0003 17.5C8.67478 17.5 7.59022 16.4685 7.50558 15.1644L7.49986 15.004L3.99915 15.0046C3.9112 15.0046 3.82383 14.993 3.73927 14.9702L3.61481 14.9277C3.20403 14.7567 2.96206 14.3392 3.01246 13.8757L3.03354 13.7483L3.07596 13.6202L3.99926 11.401L4.00035 7.79281L4.00465 7.56824C4.12726 4.45115 6.77129 2 9.9979 2ZM11.4999 15.004H8.49986L8.50722 15.1454C8.57576 15.8581 9.143 16.425 9.8558 16.4931L10.0003 16.5C10.78 16.5 11.4207 15.9051 11.4934 15.1445L11.4999 15.004ZM9.9979 3C7.37535 3 5.22741 4.92372 5.0174 7.38498L5.00417 7.59723L5.00026 7.80214V11.5L4.96185 11.6922L3.99914 14.0046L15.9569 14.0066L16.0021 14.0045L15.0387 11.6922L15.0003 11.5L15.0004 7.81241L14.9963 7.60831C14.8911 5.0349 12.6949 3 9.9979 3Z' fill='%239F9F9F'%3e%3c/path%3e%3c/svg%3e");
  background-size: contain;
  width: 20px;
  height: 20px;
}
#myvne_taskbar.myvne_taskbar_pc .myvne_form_log.logged .myvne_notification .myvne_icon_bell_click svg use {
  display: none;
}
#myvne_taskbar.myvne_taskbar_pc .myvne_form_log.logged .myvne_notification .badged {
  top: -2px;
}

#myvne_taskbar.myvne_taskbar_mobile {
  position: absolute;
  height: 37px;
  z-index: 201;
  right: 15px;
  top: 0;
  display: none;
  border-right: 1px solid rgba(19, 31, 70, 0.1);
}
#myvne_taskbar.myvne_taskbar_mobile ul.myvne_form_log li.myvne_user {
  height: 37px !important;
  border-left: 1px solid rgba(19, 31, 70, 0.1);
}
#myvne_taskbar.myvne_taskbar_mobile ul.myvne_form_log li.myvne_user > a {
  line-height: 37px !important;
  height: 37px !important;
}
#myvne_taskbar.myvne_taskbar_mobile i.ic-user {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='24' height='25' viewBox='0 0 24 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M17.7541 14.4999C18.9961 14.4999 20.0029 15.5068 20.0029 16.7488V17.3242C20.0029 18.2185 19.6833 19.0833 19.1018 19.7627C17.5324 21.5962 15.1453 22.5011 11.9999 22.5011C8.85401 22.5011 6.468 21.5959 4.9017 19.7617C4.32194 19.0828 4.00342 18.2193 4.00342 17.3265V16.7488C4.00342 15.5068 5.01027 14.4999 6.25229 14.4999H17.7541ZM17.7541 15.9999H6.25229C5.8387 15.9999 5.50342 16.3352 5.50342 16.7488V17.3265C5.50342 17.8622 5.69453 18.3802 6.04239 18.7876C7.29569 20.2553 9.26157 21.0011 11.9999 21.0011C14.7382 21.0011 16.7058 20.2553 17.9623 18.7873C18.3112 18.3797 18.5029 17.8608 18.5029 17.3242V16.7488C18.5029 16.3352 18.1676 15.9999 17.7541 15.9999ZM11.9999 2.50464C14.7613 2.50464 16.9999 4.74321 16.9999 7.50464C16.9999 10.2661 14.7613 12.5046 11.9999 12.5046C9.23845 12.5046 6.99988 10.2661 6.99988 7.50464C6.99988 4.74321 9.23845 2.50464 11.9999 2.50464ZM11.9999 4.00464C10.0669 4.00464 8.49988 5.57164 8.49988 7.50464C8.49988 9.43764 10.0669 11.0046 11.9999 11.0046C13.9329 11.0046 15.4999 9.43764 15.4999 7.50464C15.4999 5.57164 13.9329 4.00464 11.9999 4.00464Z' fill='%23131F46'/%3e%3c/svg%3e");
  background-repeat: no-repeat no-repeat;
  background-position: center center !important;
  background-size: contain;
  width: 25px !important;
  height: 25px !important;
}
#myvne_taskbar.myvne_taskbar_mobile .ic-bell {
  width: 24px !important;
  height: 24px !important;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='24' height='25' viewBox='0 0 24 25' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M11.9999 2.49609C16.0498 2.49609 19.3565 5.69084 19.4957 9.74515L19.4999 9.99609V14.0931L20.8799 17.2491C20.9489 17.407 20.9846 17.5775 20.9846 17.7499C20.9846 18.4402 20.4249 18.9999 19.7346 18.9999L14.9999 19.0014C14.9999 20.6582 13.6567 22.0014 11.9999 22.0014C10.4022 22.0014 9.09621 20.7524 9.00496 19.1776L8.99941 18.9991L4.27473 18.9999C4.10339 18.9999 3.93388 18.9646 3.77673 18.8964C3.14353 18.6213 2.85318 17.8851 3.12822 17.2519L4.49987 14.094V9.99599C4.50046 5.8412 7.85195 2.49609 11.9999 2.49609ZM13.4994 18.9991L10.4999 19.0014C10.4999 19.8298 11.1714 20.5014 11.9999 20.5014C12.7796 20.5014 13.4203 19.9065 13.493 19.1458L13.4994 18.9991ZM11.9999 3.99609C8.67971 3.99609 6.00034 6.67035 5.99987 9.99609V14.4057L4.65589 17.4999H19.3524L17.9999 14.4067L18 10.0089L17.9962 9.78375C17.8852 6.55027 15.2414 3.99609 11.9999 3.99609Z' fill='%23131F46'/%3e%3c/svg%3e");
  background-position: center !important;
}
#myvne_taskbar.myvne_taskbar_mobile .ic-bell use {
  display: none;
}
#myvne_taskbar.myvne_taskbar_mobile .dot-blue {
  top: 10px;
}

.myvne_taskbar_2023 {
  margin-top: 0;
  margin-left: 0;
}
.myvne_taskbar_2023 .myvne_form_log .myvne_content_notification {
  right: 0;
  left: inherit;
  -webkit-transform: translateX(0%);
      -ms-transform: translateX(0%);
          transform: translateX(0%);
}
.myvne_taskbar_2023 .content-notify .list-noti .title-n {
  font-family: Arial;
}

.hamburger {
  display: none;
  position: absolute;
  top: 5px;
  left: 8px;
  text-align: center;
  height: 20px;
  z-index: 5;
  width: 30px;
  cursor: pointer;
  -webkit-transition-duration: 250ms;
          transition-duration: 250ms;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
          transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}
.hamburger span {
  display: block;
  height: 2px;
  margin: 3px auto 0 auto;
  width: 18px;
  background: #BDBDBD;
}

#box_menu_before {
  float: left;
  width: 100%;
  height: 1px;
}

.menu-main {
  padding: 0;
  font-family: "Arial", sans-serif;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 65px;
  gap: 20px;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 30px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.menu-main .logo {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  padding-top: 0;
  position: relative;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.menu-main .logo a {
  position: relative;
  font-size: 0;
}
.menu-main .logo img {
  width: 102px;
  -webkit-transition: all 300ms ease;
  transition: all 300ms ease;
}
.menu-main .list-menu {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 16px;
}
.menu-main .list-menu .icon-home {
  position: relative;
  top: -2px;
}
.menu-main .list-menu li {
  display: inline-block;
  position: relative;
  white-space: nowrap;
}
.menu-main .list-menu li.m_logo {
  display: none;
}
.menu-main .list-menu li a {
  font-family: var(--font-main);
  display: inline-block;
  font-weight: 400;
  font-size: 16px;
  line-height: 65px;
  position: relative;
  z-index: 9;
  outline: none;
}
.menu-main .list-menu li .btn-skew {
  line-height: 1;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 36px;
  font-size: 14px;
  padding: 0 15px;
}
.menu-main .list-menu li:last-child {
  padding-right: 0px;
}
.menu-main .list-menu li:last-child::after {
  display: none;
}
.menu-main .list-menu li.dropdown {
  display: block;
  padding-right: 16px;
  position: relative;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.menu-main .list-menu li.dropdown > a::before {
  content: "";
  border-top: 1px solid #091e42;
  border-right: 1px solid #091e42;
  width: 7px;
  height: 7px;
  -webkit-transform: rotate(135deg);
      -ms-transform: rotate(135deg);
          transform: rotate(135deg);
  position: absolute;
  right: -16px;
  top: 25px;
}
@media screen and (max-width: 1025px) {
  .menu-main .list-menu li.dropdown > a::before {
    top: 19px;
  }
}
.menu-main .list-menu li.dropdown:hover .dropdown-menu {
  display: block;
}
@media screen and (max-width: 1025px) {
  .menu-main .list-menu li.dropdown:hover .dropdown-menu {
    position: -webkit-sticky;
    position: sticky;
  }
}
.menu-main .list-menu li.dropdown .dropdown-menu {
  display: none;
  position: absolute;
  -webkit-box-shadow: 0px 8px 8px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 8px 8px rgba(0, 0, 0, 0.12);
  border-radius: 4px;
  padding: 10px 15px;
  overflow: hidden;
  top: 100%;
  background: #fff;
  left: 0;
}
.menu-main .list-menu li.dropdown .dropdown-menu li {
  display: block;
  line-height: 1.6;
  list-style: none;
  white-space: nowrap;
}
.menu-main .list-menu li.dropdown .dropdown-menu li a {
  line-height: 1.6;
  padding-left: 12px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='5' height='6' viewBox='0 0 5 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M5 3L0 0V6L5 3Z' fill='%23131F46'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: 0px 50%;
}
.menu-main .list-menu li.dropdown .dropdown-menu li.active, .menu-main .list-menu li.dropdown .dropdown-menu li:hover {
  color: #0F69ED;
}
.menu-main .list-menu li.dropdown .dropdown-menu li.active a, .menu-main .list-menu li.dropdown .dropdown-menu li:hover a {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='5' height='6' viewBox='0 0 5 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M5 3L0 0V6L5 3Z' fill='%230F91EA'/%3e%3c/svg%3e");
}
.menu-main .list-menu li.dropdown .dropdown-menu li + li {
  border-top: 1px solid #E8E9ED;
  padding-top: 12px;
  margin-top: 12px;
}
.menu-main .next-nav {
  position: absolute;
  right: 0;
  z-index: 9;
  bottom: 0;
  content: url('data:image/svg+xml,<svg width="10" height="17" viewBox="0 0 10 17" fill="none" xmlns="http://www.w3.org/2000/svg"><path d="M9.50005 8.50001C9.50005 8.69183 9.42673 8.88383 9.2803 9.03026L1.7803 16.5303C1.48723 16.8233 1.01267 16.8233 0.719797 16.5303C0.426922 16.2372 0.426734 15.7626 0.719797 15.4698L7.68955 8.50001L0.719796 1.53026C0.426734 1.2372 0.426734 0.762638 0.719796 0.469763C1.01286 0.176887 1.48742 0.176701 1.7803 0.469763L9.2803 7.96976C9.42673 8.1162 9.50005 8.3082 9.50005 8.50001Z" fill="white"/></svg>');
  bottom: 0;
  padding: 14px 5px 14px 30px;
  -webkit-box-pack: end;
  -webkit-justify-content: end;
      -ms-flex-pack: end;
          justify-content: end;
  display: none;
  background: -webkit-gradient(linear, right top, left top, from(#0763EC), to(rgba(7, 99, 236, 0)));
  background: -webkit-linear-gradient(right, #0763EC 0%, rgba(7, 99, 236, 0) 100%);
  background: linear-gradient(-90deg, #0763EC 0%, rgba(7, 99, 236, 0) 100%);
}
@media screen and (max-width: 767px) {
  .menu-main .next-nav {
    display: block;
  }
}
@media screen and (max-width: 1025px) {
  .menu-main {
    margin-bottom: 0;
    border-bottom: 0;
    padding: 0;
    height: 50px;
    gap: 0;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
  .menu-main .logo {
    display: none;
  }
  .menu-main .menu-right {
    white-space: nowrap;
    padding: 0 15px;
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
  }
  .menu-main .menu-right::-webkit-scrollbar {
    display: none;
  }
  .menu-main .list-menu {
    -webkit-box-align: start;
    -webkit-align-items: start;
        -ms-flex-align: start;
            align-items: start;
  }
  .menu-main .list-menu li.m_logo {
    display: inline-block;
    width: 102px;
    -webkit-flex-shrink: 0;
        -ms-flex-negative: 0;
            flex-shrink: 0;
    margin-top: 8px;
  }
  .menu-main .list-menu li.m_logo a {
    font-size: 0;
    line-height: 1;
  }
  .menu-main .list-menu li a {
    line-height: 50px;
  }
  .menu-main .list-menu li .btn-skew {
    margin-top: 6px;
  }
  .menu-main .list-menu li:last-of-type {
    padding-right: 20px;
  }
}

.section_header {
  border-bottom: 1px solid #E7E8EC;
  background: rgba(255, 255, 255, 0.7);
  width: 100%;
  top: 0;
  z-index: 204;
  float: none;
  -webkit-transition-duration: 200ms;
          transition-duration: 200ms;
  -webkit-transition-property: all;
  transition-property: all;
  -webkit-transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
          transition-timing-function: cubic-bezier(0.7, 1, 0.7, 1);
}
.section_header .container::after {
  display: none;
}
.section_header.sticky--active {
  background: #fff;
}
@media screen and (max-width: 1025px) {
  .section_header {
    background: #fff;
  }
  .section_header .container {
    padding: 0;
  }
}

@media (max-width: 600px) {
  #myvne_taskbar.myvne_taskbar_pc {
    display: none;
  }
  #myvne_taskbar.myvne_taskbar_mobile {
    display: block;
  }
}
.title_award {
  font-size: 32px;
  line-height: 1.4;
  margin-bottom: 35px;
  font-weight: 400;
  color: #091E42;
}
.title_award .lbl {
  color: #6E7B9B;
  font-size: 18px;
  text-transform: uppercase;
}
.title_award .lbl.none {
  text-transform: none;
}
.title_award.txt_36 {
  font-size: 36px;
}
.title_award.txt_30 {
  font-size: 30px;
  margin-bottom: 20px;
}
.title_award.txt_24 {
  font-size: 24px;
  margin-bottom: 20px;
}
@media (max-width: 1280px) {
  .title_award {
    font-size: 30px;
    margin-bottom: 24px;
  }
  .title_award .lbl {
    font-size: 16px;
  }
  .title_award.txt_36, .title_award.txt_30 {
    font-size: 24px;
  }
  .title_award.txt_24 {
    font-size: 20px;
    margin-bottom: 15px;
  }
}
@media (max-width: 1280px) {
  .title_award {
    font-size: 26px;
  }
}
@media (max-width: 600px) {
  .title_award.mb0 {
    margin-bottom: 15px !important;
  }
}

.head_vote {
  margin-bottom: 20px;
}
.head_vote .title_award {
  font-size: 30px;
  margin-bottom: 0;
}
.head_vote .title_award .lbl {
  text-transform: inherit;
  font-size: 20px;
}
@media (max-width: 600px) {
  .head_vote .title_award {
    font-size: 24px;
  }
  .head_vote .title_award .lbl {
    font-size: 18px;
  }
}

.header-section {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.header-section .title_award {
  margin-bottom: 14px;
}
.header-section .select-dropdown {
  margin-left: inherit;
  margin-bottom: 20px;
  min-width: 180px;
}
.header-section .select-dropdown .dropbtn {
  border: 1px solid #D3D9EC;
  border-radius: 2px;
  padding: 14px 30px 14px 10px;
}
.header-section .select-dropdown .dropbtn::before {
  right: 10px;
  top: 16px;
}
.header-section .select-dropdown .dropdown-content {
  top: 45px;
}
.header-section .sort-product {
  width: auto;
  margin: 0 0 0 auto;
  border: none;
  color: #4F4F4F;
  font-size: 14px;
  cursor: pointer;
  padding: 0;
}
@media (max-width: 600px) {
  .header-section {
    margin-bottom: 0;
  }
  .header-section .title_award {
    width: 100%;
  }
  .header-section .select-dropdown {
    width: 100%;
  }
  .header-section .select-dropdown .dropbtn {
    border-radius: 2px;
  }
  .header-section .select-dropdown .dropdown-content {
    right: inherit;
    left: 0;
    min-width: 100%;
  }
  .header-section .select-dropdown .dropdown-content li {
    color: #091E42;
    font-size: 14px;
  }
}

.see-more {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cg clip-path='url(%23clip0_142_797)'%3e%3cpath d='M15.8943 7.74365L12.258 4.10734C12.1273 3.95481 11.8978 3.93703 11.7453 4.06768C11.5927 4.1983 11.575 4.42786 11.7056 4.58039C11.7178 4.59461 11.731 4.60789 11.7453 4.62005L14.7597 7.63818H0.363619C0.16281 7.63818 0 7.80099 0 8.00183C0 8.20267 0.16281 8.36545 0.363619 8.36545H14.7597L11.7453 11.3799C11.5927 11.5106 11.575 11.7401 11.7056 11.8926C11.8363 12.0452 12.0658 12.0629 12.2183 11.9323C12.2325 11.9201 12.2458 11.9069 12.258 11.8926L15.8943 8.25633C16.0352 8.11455 16.0352 7.88549 15.8943 7.74365Z' fill='%232C2E2F'/%3e%3c/g%3e%3cdefs%3e%3cclipPath id='clip0_142_797'%3e%3crect width='16' height='16' fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e");
  background-repeat: no-repeat;
  padding-right: 22px;
  background-position: right;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
}
.see-more.color-blue {
  color: var(--color-main);
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cg clip-path='url(%23clip0_1075_5751)'%3e%3cpath d='M15.8943 7.74365L12.258 4.10734C12.1273 3.95481 11.8978 3.93703 11.7453 4.06768C11.5927 4.1983 11.575 4.42786 11.7056 4.58039C11.7178 4.59461 11.731 4.60789 11.7453 4.62005L14.7597 7.63818H0.363619C0.16281 7.63818 0 7.80099 0 8.00183C0 8.20267 0.16281 8.36545 0.363619 8.36545H14.7597L11.7453 11.3799C11.5927 11.5106 11.575 11.7401 11.7056 11.8926C11.8363 12.0452 12.0658 12.0629 12.2183 11.9323C12.2325 11.9201 12.2458 11.9069 12.258 11.8926L15.8943 8.25633C16.0352 8.11455 16.0352 7.88549 15.8943 7.74365Z' fill='%231984E8'/%3e%3c/g%3e%3cdefs%3e%3cclipPath id='clip0_1075_5751'%3e%3crect width='16' height='16' fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e");
}

.btn-default {
  border-radius: 2px;
  border: 1px solid #D3D9EC;
  background: #FFF;
  line-height: 40px;
  padding: 0 20px;
  display: inline-block;
  text-align: center;
}
.btn-default span {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='16' height='16' viewBox='0 0 16 16' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cg clip-path='url(%23clip0_346_2046)'%3e%3cpath d='M15.8943 7.74365L12.258 4.10734C12.1273 3.95481 11.8978 3.93703 11.7453 4.06768C11.5927 4.1983 11.575 4.42786 11.7056 4.58039C11.7178 4.59461 11.731 4.60789 11.7453 4.62005L14.7597 7.63818H0.363619C0.16281 7.63818 0 7.80099 0 8.00183C0 8.20267 0.16281 8.36545 0.363619 8.36545H14.7597L11.7453 11.3799C11.5927 11.5106 11.575 11.7401 11.7056 11.8926C11.8363 12.0452 12.0658 12.0629 12.2183 11.9323C12.2325 11.9201 12.2458 11.9069 12.258 11.8926L15.8943 8.25633C16.0352 8.11455 16.0352 7.88549 15.8943 7.74365Z' fill='%232C2E2F'/%3e%3c/g%3e%3cdefs%3e%3cclipPath id='clip0_346_2046'%3e%3crect width='16' height='16' fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e");
  padding-right: 20px;
  background-repeat: no-repeat;
  background-position: right;
}
.btn-default.full {
  width: 100%;
}

#countdown {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 32px;
     -moz-column-gap: 32px;
          column-gap: 32px;
  row-gap: 32px;
}
#countdown .item_countdown {
  display: inline-block;
  position: relative;
  color: #fff;
  text-align: center;
}
#countdown .item_countdown::before {
  content: "";
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='6' height='18' viewBox='0 0 6 18' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3ccircle cx='3' cy='3' r='3' fill='%23C6D9F3'/%3e%3ccircle cx='3' cy='15' r='3' fill='%23C6D9F3'/%3e%3c/svg%3e");
  background-size: contain;
  background-repeat: no-repeat;
  width: 6px;
  height: 18px;
  position: absolute;
  right: -18px;
  top: 28px;
}
#countdown .item_countdown.giay::before {
  display: none;
}
#countdown .item_countdown .item_txt {
  width: 74px;
  height: 74px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  font-size: 14px;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-align-content: center;
      -ms-flex-line-pack: center;
          align-content: center;
  background: url(images/graphics/bg-timer.png);
  background-size: cover;
  position: relative;
  z-index: 2;
}
#countdown .item_countdown .item_txt span {
  margin-bottom: 4px;
  line-height: 1;
  display: block;
  width: 100%;
}
#countdown .item_countdown .item_txt .text {
  display: block;
}
@media screen and (max-width: 600px) {
  #countdown {
    -webkit-column-gap: 24px;
       -moz-column-gap: 24px;
            column-gap: 24px;
    row-gap: 24px;
  }
  #countdown .item_countdown::before {
    top: 27px;
    right: -15px;
  }
}
@media screen and (max-width: 400px) {
  #countdown {
    -webkit-column-gap: 18px;
       -moz-column-gap: 18px;
            column-gap: 18px;
    row-gap: 18px;
  }
  #countdown .item_countdown::before {
    top: 23px;
    right: -13px;
  }
  #countdown .item_countdown .item_txt {
    width: 63px !important;
    height: 63px !important;
  }
}

.btn-skew {
  background: #0F91EA;
  color: #F3F6FE;
  cursor: pointer;
  border-radius: 2px;
  font-weight: bold;
  font-size: 14px;
  height: 42px;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border: none;
  padding: 0 24px;
  position: relative;
  cursor: pointer;
  text-align: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.btn-skew a:hover {
  color: inherit;
}
.btn-skew:focus {
  outline: none;
}
.btn-skew.full {
  width: 100%;
}
.btn-skew .load {
  display: none;
  width: 20px;
  height: 20px;
  margin-top: 10px;
  border: 5px solid #fff;
  border-radius: 100%;
  z-index: 1;
  position: relative;
}
.btn-skew .open {
  border-top: 5px solid transparent;
  -webkit-animation: load-animate infinite linear 1s;
          animation: load-animate infinite linear 1s;
}
.btn-skew .see-more {
  background: none;
  padding-right: 0;
}
.btn-skew.loading span {
  display: none;
}
.btn-skew.loading .load {
  display: inline-block;
  margin: 0;
}
.btn-skew-gray {
  background: #E9E9E9;
  color: #222;
}
.btn-skew-gray:after {
  background: #E9E9E9;
}
.btn-skew-gray:hover:after {
  background: #FFE74C;
}
.btn-skew.none {
  background: none;
  border: 1px solid var(--color-main);
  color: var(--color-main);
}
.btn-skew.disabled {
  cursor: default;
}
.btn-skew.success, .btn-skew.disabled, .btn-skew.gray {
  background: #E5E7F2;
  color: #6E7B9B;
}
.btn-skew.yellow {
  background: #FFE20D;
  color: #070B29;
}
.btn-skew.success:hover, .btn-skew.disabled:hover {
  background: #E5E7F2;
  color: #6E7B9B;
}
.btn-skew:hover {
  background: var(--color-main);
  color: #F3F6FE;
}
@media (max-width: 600px) {
  .btn-skew.full-mobile {
    width: 100%;
  }
}

.img-product {
  position: relative;
}
.img-product .thumb_img {
  background: none;
}
.img-product img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}

.scroll-height {
  max-height: 200px;
  overflow-y: auto;
}
.scroll-height::-webkit-scrollbar {
  width: 5px;
}
.scroll-height::-webkit-scrollbar-thumb {
  background-color: rgba(225, 225, 225, 0.6);
  width: 5px;
  border-radius: 10px;
}
.scroll-height .row-info {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  margin-bottom: 16px;
}
.scroll-height .row-info .info-left {
  width: 122px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}

/*icon play video*/
.embed_video_new .icon_blockvideo {
  position: absolute;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.embed_video_new .icon_blockvideo::before {
  content: "";
  opacity: 0.4;
  background: #000;
  position: absolute;
  width: 100%;
  height: 100%;
}
.embed_video_new .icon_blockvideo .img_icon {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='46' height='46' viewBox='0 0 46 46' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cg clip-path='url(%23clip0_74_1813)'%3e%3cpath d='M9.78529 1.01426C5.63813 -1.36461 2.27588 0.584193 2.27588 5.36355V40.6331C2.27588 45.4172 5.63813 47.3635 9.78529 44.9869L40.6126 27.3076C44.7612 24.9279 44.7612 21.0724 40.6126 18.6933L9.78529 1.01426Z' fill='white'/%3e%3c/g%3e%3cdefs%3e%3cclipPath id='clip0_74_1813'%3e%3crect width='46' height='46' fill='white'/%3e%3c/clipPath%3e%3c/defs%3e%3c/svg%3e");
  width: 46px !important;
  height: 46px !important;
  border: 0 !important;
  -webkit-transform: translate(-50%, -50%);
      -ms-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
}

.select-dropdown {
  position: relative;
  margin-left: auto;
}
.select-dropdown .dropbtn {
  border-radius: 4px 0px 0px 4px;
  font: 400 14px var(--font-main);
  position: relative;
  padding: 0 20px 0 0;
  cursor: pointer;
}
.select-dropdown .dropbtn::before {
  content: "";
  position: absolute;
  right: 0;
  top: 3px;
  border-top: 1px solid #091E42;
  border-right: 1px solid #091E42;
  width: 6px;
  height: 6px;
  -webkit-transform: rotate(135deg);
      -ms-transform: rotate(135deg);
          transform: rotate(135deg);
  -webkit-transition: 0.2s all;
  transition: 0.2s all;
}
.select-dropdown .dropdown-content {
  background: #FFFFFF;
  -webkit-box-shadow: 0px 4px 20px rgba(249, 179, 171, 0.25);
          box-shadow: 0px 4px 20px rgba(249, 179, 171, 0.25);
  border-radius: 4px;
  padding: 8px 12px;
  display: none;
  position: absolute;
  min-width: 180px;
  z-index: 3;
  right: 0;
  top: 35px;
}
.select-dropdown .dropdown-content li {
  padding: 10px 0;
  font: 400 15px/1.5 var(--font-main);
  color: #091E42;
  cursor: pointer;
  white-space: nowrap;
}
.select-dropdown .dropdown-content li strong {
  font-weight: bold;
  font-family: var(--font-main);
  color: #1A2141;
}
.select-dropdown .dropdown-content li.active, .select-dropdown .dropdown-content li:hover {
  color: #1984E8;
}
.select-dropdown.active .dropbtn::before, .pagination a.select-dropdown:hover .dropbtn::before {
  -webkit-transform: rotate(-45deg);
      -ms-transform: rotate(-45deg);
          transform: rotate(-45deg);
  margin-top: 4px;
}

.tab-default {
  border-bottom: 1px solid rgba(0, 0, 0, 0.15);
  margin-bottom: 30px;
}
.tab-default a {
  font: 400 16px var(--font-main);
  padding-bottom: 14px;
  margin-right: 24px;
  display: inline-block;
  border-bottom: 2px solid transparent;
  color: #4F4F4F;
}
.tab-default a:last-child {
  margin-right: 0;
}
.tab-default a.active, .tab-default .pagination a:hover, .pagination .tab-default a:hover {
  font-weight: 500;
  color: #000078;
  border-bottom: 2px solid #000078;
}
@media (max-width: 991px) {
  .tab-default {
    margin-bottom: 24px;
  }
}
@media (max-width: 600px) {
  .tab-default {
    margin-bottom: 18px;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    text-align: center;
  }
  .tab-default a {
    width: 50%;
    margin-right: 0;
  }
}

.swiper-controler {
  position: absolute;
  top: 50%;
  margin-top: -12px;
  z-index: 2;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  width: 100%;
  left: 0;
}
.swiper-controler .swiper-btn {
  cursor: pointer;
}
.swiper-controler .swiper-btn svg {
  width: 20px;
  height: 20px;
}
.swiper-controler .swiper-btn:hover {
  color: #1984E8;
}

#banner_top, .section-ads-top {
  background: #f7f7f7;
  float: none;
}

.section {
  float: none;
}

.hero_banner .wrap-bg {
  background: url(images/graphics/bg-banner.jpg);
  background-size: cover;
  margin-top: -105px;
  position: relative;
  padding: 220px 0 100px 0;
}
.hero_banner .content {
  text-align: center;
  color: #2B4472;
  font-size: 18px;
  line-height: 1.6;
}
.hero_banner .content .lbl {
  color: #131F46;
  font-size: 30px;
  margin-bottom: 15px;
}
.hero_banner .content .lbl b {
  font-size: 36px;
}
.hero_banner .content .slogan {
  line-height: 1;
}
.hero_banner .content .des {
  font-size: 18px;
  line-height: 1.7;
  margin-bottom: 20px;
}
.hero_banner .content .img-scroll {
  margin-top: 30px;
  font-size: 13px;
}
@media (max-width: 1025px) {
  .hero_banner .wrap-bg {
    padding: 50px 0 100px 0;
    margin-top: 0;
  }
}
@media (max-width: 768px) {
  .hero_banner {
    margin-bottom: 30px;
  }
  .hero_banner .wrap-bg {
    background: url(images/graphics/m_bg-banner.jpg) center;
    background-size: cover;
    padding: 30px 0 50px 0;
  }
}
@media (max-width: 600px) {
  .hero_banner .content .lbl {
    font-size: 24px;
  }
  .hero_banner .content .lbl b {
    font-size: 24px;
  }
  .hero_banner .content .des br {
    display: none;
  }
  .hero_banner .content .img-scroll {
    display: none;
  }
}

.section-conso .container {
  border-radius: 30px 30px 0px 0px;
  background: #FFF;
  -webkit-box-shadow: 0px -11px 12px 0px rgba(198, 217, 243, 0.25);
          box-shadow: 0px -11px 12px 0px rgba(198, 217, 243, 0.25);
  padding: 15px 20px 30px 20px;
  margin-top: -80px;
}
.section-conso .list-pc .grid {
  -webkit-column-gap: 0px;
     -moz-column-gap: 0px;
          column-gap: 0px;
  row-gap: 0px;
}
.section-conso .list-pc .grid:nth-child(1) {
  padding-right: 130px;
}
.section-conso .list-pc .grid:nth-child(1) .item::before {
  content: "";
  position: absolute;
  background: url(images/graphics/bg-conso2.png);
  width: 104px;
  height: 117px;
  background-size: contain;
  left: -2px;
  bottom: 0;
}
.section-conso .list-pc .grid:nth-child(1) .item::after {
  content: "";
  position: absolute;
  background: url(images/graphics/bg-conso1.png);
  width: 94px;
  height: 107px;
  background-size: contain;
  right: 0;
  bottom: 0;
}
.section-conso .list-pc .grid:nth-child(1) .item:first-child::before {
  display: none;
}
.section-conso .list-pc .grid:nth-child(2) {
  padding-left: 130px;
}
.section-conso .list-pc .grid:nth-child(2) .item::before {
  content: "";
  position: absolute;
  background: url(images/graphics/bg-conso3.png);
  width: 94px;
  height: 137px;
  background-size: contain;
  left: 4px;
  top: -2px;
}
.section-conso .list-pc .grid:nth-child(2) .item::after {
  content: "";
  position: absolute;
  background: url(images/graphics/bg-conso4.png);
  width: 104px;
  height: 125px;
  background-size: contain;
  right: -6px;
  top: -2px;
}
.section-conso .list-pc .grid:nth-child(2) .item:last-child::after {
  display: none;
}
.section-conso .list-pc .item {
  color: #6E7B9B;
  font-size: 16px;
  line-height: 1.4;
  padding: 20px 50px;
  position: relative;
}
.section-conso .list-pc .item .number {
  margin-bottom: 10px;
}
.section-conso .list-mobile {
  display: none;
}
.section-conso .list-mobile .grid {
  -webkit-column-gap: 0px;
     -moz-column-gap: 0px;
          column-gap: 0px;
  row-gap: 0px;
}
.section-conso .list-mobile .item {
  padding: 20px 30px;
  color: #6E7B9B;
  line-height: 1.6;
}
.section-conso .list-mobile .item .number {
  color: #091E42;
  font-size: 24px;
}
.section-conso .list-mobile .item:nth-child(odd) {
  border-bottom: 1px solid #D3D9EC;
  border-right: 1px solid #D3D9EC;
  border-radius: 0 0 60px 0;
}
.section-conso .list-mobile .item:nth-child(even) {
  border-bottom: 1px solid #D3D9EC;
  border-left: 1px solid #D3D9EC;
  border-radius: 0 0 0 60px;
}
@media (max-width: 768px) {
  .section-conso .container {
    margin-top: 0;
    padding: 0 15px;
    -webkit-box-shadow: none;
            box-shadow: none;
  }
  .section-conso .list-pc {
    display: none;
  }
  .section-conso .list-mobile {
    display: block;
  }
}
.section-chude {
  background: url(images/graphics/bg-chude.png);
  padding: 50px 0;
  font-size: 20px;
  line-height: 1.6;
}
.section-chude .container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 80px;
}
.section-chude .container .img {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media (max-width: 768px) {
  .section-chude {
    background: #fff;
  }
  .section-chude .container {
    gap: 24px;
  }
}
@media (max-width: 600px) {
  .section-chude {
    padding: 30px 0;
  }
  .section-chude .container {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    display: block;
  }
}

.section-toancanh {
  background: #F1F4FF;
  padding: 40px 0;
}
.section-toancanh .item {
  position: relative;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
}
.section-toancanh .item .relative {
  width: 100%;
}
.section-toancanh .item img {
  width: 100%;
  -webkit-transition: opacity 0.35s, -webkit-transform 2s ease-out;
  transition: opacity 0.35s, -webkit-transform 2s ease-out;
  transition: transform 2s ease-out, opacity 0.35s;
  transition: transform 2s ease-out, opacity 0.35s, -webkit-transform 2s ease-out;
  -webkit-backface-visibility: hidden;
          backface-visibility: hidden;
}
.section-toancanh .item img:hover {
  -webkit-transform: scale(1.3);
      -ms-transform: scale(1.3);
          transform: scale(1.3);
  -webkit-transition: -webkit-transform 3s ease-out;
  transition: -webkit-transform 3s ease-out;
  transition: transform 3s ease-out;
  transition: transform 3s ease-out, -webkit-transform 3s ease-out;
}
.section-toancanh .item .text {
  font-style: italic;
  border-top: 1px solid rgba(19, 31, 70, 0.1);
  padding-top: 6px;
  position: absolute;
  top: 0;
}
.section-toancanh .item:nth-child(1) .text {
  left: 100%;
  width: 210px;
  text-align: right;
}
.section-toancanh .item:nth-child(2) {
  padding-right: 175px;
  -webkit-box-align: end;
  -webkit-align-items: end;
      -ms-flex-align: end;
          align-items: end;
}
.section-toancanh .item:nth-child(2) .text {
  left: 100%;
  width: 175px;
  text-align: right;
}
.section-toancanh .item:nth-child(3) {
  -webkit-align-content: start;
      -ms-flex-line-pack: start;
          align-content: start;
}
.section-toancanh .item:nth-child(5) {
  padding-left: 175px;
}
.section-toancanh .item:nth-child(6) {
  padding-right: 175px;
}
.section-toancanh .item .p-right {
  padding-left: 195px;
  -webkit-box-align: start;
  -webkit-align-items: start;
      -ms-flex-align: start;
          align-items: start;
  width: 100%;
}
.section-toancanh .item .p-right .text {
  right: 100%;
  width: 195px;
  text-align: left;
}
.section-toancanh .toan-canh {
  width: 100%;
  background: url(images/graphics/bg-toancanh.png);
  background-size: cover;
  padding: 30px 10px 60px 0;
  margin-bottom: -20px;
}
@media (max-width: 600px) {
  .section-toancanh {
    padding: 0;
  }
  .section-toancanh .container {
    padding: 0;
  }
  .section-toancanh .grid {
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
    row-gap: 0;
  }
  .section-toancanh .item .text {
    display: none;
  }
  .section-toancanh .item .thumb_img {
    background: #000;
  }
  .section-toancanh .item .thumb_img img {
    opacity: 0.8;
  }
  .section-toancanh .item:nth-child(2) {
    padding-right: 0;
  }
  .section-toancanh .item .p-right, .section-toancanh .item:nth-child(5) {
    padding-left: 0;
  }
  .section-toancanh .item:nth-child(6) {
    padding-right: 0;
  }
  .section-toancanh .toan-canh {
    padding: 20px 15px;
    margin-bottom: 0;
  }
}

.section_article .grid {
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  row-gap: 40px;
}
.section_article .grid.gap30 {
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  row-gap: 30px;
}
.section_article .item-news .description {
  margin-top: 10px;
  display: none;
}
.section_article .grid__2 .item-news .title-news {
  font-size: 24px;
}
.section_article .grid__3 .item-news .title-news {
  font-size: 20px;
}
@media (max-width: 1025px) {
  .section_article .grid {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
    row-gap: 20px;
  }
}
@media (max-width: 600px) {
  .section_article .title_award {
    width: 100%;
    text-align: center;
  }
  .section_article .title_award br {
    display: block;
  }
  .section_article .grid {
    grid-template-columns: repeat(1, 1fr);
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
    row-gap: 0;
    margin-bottom: 0 !important;
  }
  .section_article .item-news {
    margin-bottom: 14px;
  }
  .section_article .item-news .title-news {
    font-weight: 400;
  }
}

.section-article-kol {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.section-article-kol .section_article {
  padding: 40px;
  width: 100%;
}
.section-article-kol .box-kols {
  width: 35%;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.section-article-kol .box-kols .swiper-container {
  height: 100%;
}
.section-article-kol .title_award br {
  display: none;
}
@media (max-width: 1366px) {
  .section-article-kol .section_article {
    padding: 30px 15px;
    max-width: 1130px;
    margin: 0 auto;
  }
  .section-article-kol .box-kols {
    display: none;
  }
}
@media (max-width: 600px) {
  .section-article-kol .title_award br {
    display: block;
  }
}

.box-kols {
  background: url(images/graphics/bg-nhan-vat.png);
  background-size: cover;
}
.box-kols .item {
  position: relative;
  height: 100%;
}
.box-kols .item .ava {
  width: 60%;
  float: right;
}
.box-kols .item .info {
  position: absolute;
  z-index: 1;
  padding: 40px;
  color: #D3D9EC;
  font-size: 16px;
  line-height: 1.6;
  left: 0;
  top: 150px;
  max-width: 510px;
}
.box-kols .item .info .des {
  margin-bottom: 20px;
}
.box-kols .item .info .name {
  color: #FFF;
  font-size: 20px;
}
.box-kols .item .info .position {
  color: rgba(255, 255, 255, 0.6);
}

.section-video {
  position: relative;
  z-index: 201;
}

.don_vi_donghanh {
  text-align: center;
  padding: 30px 0 20px 0;
}
.don_vi_donghanh .title_award {
  font-size: 18px !important;
  margin-bottom: 24px;
  text-transform: uppercase;
}
.don_vi_donghanh .flex {
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 20px;
}
.don_vi_donghanh .logo-dt {
  display: inline-block;
  width: 200px;
  font-size: 0;
}
.don_vi_donghanh .logo-dt img {
  width: 100%;
}
@media (max-width: 600px) {
  .don_vi_donghanh .title_award {
    font-size: 16px !important;
  }
  .don_vi_donghanh .flex {
    gap: 10px;
  }
  .don_vi_donghanh .flex.mb40 {
    margin-bottom: 20px !important;
  }
  .don_vi_donghanh .logo-dt {
    width: 40%;
    width: calc(50% - 10px);
  }
}

.section_thele {
  position: relative;
  float: left;
  width: 100%;
}
.section_thele .content_thele {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 130px;
     -moz-column-gap: 130px;
          column-gap: 130px;
}
.section_thele .content_thele h2 {
  font-size: 18px;
  margin-bottom: 16px;
  color: #091e42;
}
.section_thele .content_thele .title_award {
  font-size: 40px;
}
.section_thele .content_thele ul.dotted li {
  margin-bottom: 15px;
}
.section_thele .content_thele ul.dotted li:last-child {
  margin-bottom: 0;
}
.section_thele .content_thele__left {
  width: 100%;
}
.section_thele .content_thele__right {
  width: 300px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.section_thele .content_thele .content {
  font-size: 18px;
  line-height: 1.6;
}
.section_thele .content_thele .content p, .section_thele .content_thele .content ul {
  margin-bottom: 16px;
}
@media (max-width: 1025px) {
  .section_thele .content_thele {
    -webkit-column-gap: 50px;
       -moz-column-gap: 50px;
            column-gap: 50px;
  }
}
@media (max-width: 768px) {
  .section_thele .content_thele .title_award {
    font-size: 28px;
  }
  .section_thele .content_thele__right {
    display: none;
  }
}

.col-left {
  width: 800px;
  width: calc(100% - 300px);
  padding-right: 40px;
  -webkit-box-flex: 1;
  -webkit-flex-grow: 1;
      -ms-flex-positive: 1;
          flex-grow: 1;
}
@media (max-width: 991px) {
  .col-left {
    width: 100%;
    padding-right: 0 !important;
    margin-bottom: 30px;
  }
}

.col-right {
  width: 300px;
}
@media (max-width: 991px) {
  .col-right {
    display: none;
  }
}
@media (max-width: 600px) {
  .col-right {
    width: 100%;
    padding-left: 0 !important;
    display: block;
  }
}

.buid-top {
  gap: 20px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
}
.buid-top .item-news.big .title-news {
  font-size: 24px;
}
.buid-top .grid {
  border-top: 1px solid #e7e9f3;
  padding-top: 20px;
  margin-top: 20px;
}
.buid-top .grid .item-news .description {
  display: none;
}
.buid-top__left {
  width: 100%;
  margin-bottom: 30px;
}
.buid-top__left .flexbox {
  -webkit-column-gap: 40px;
     -moz-column-gap: 40px;
          column-gap: 40px;
  row-gap: 40px;
}
.buid-top__left .list {
  width: 250px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
          flex-wrap: wrap;
  -webkit-align-content: start;
      -ms-flex-line-pack: start;
          align-content: start;
  -webkit-column-gap: 20px;
     -moz-column-gap: 20px;
          column-gap: 20px;
  row-gap: 20px;
  position: relative;
}
.buid-top__left .list::before {
  content: "";
  background: #E7E9F3;
  position: absolute;
  width: 1px;
  height: 100%;
  left: -20px;
}
.buid-top__left .list .item-news .description {
  display: none;
}
.buid-top__left .list .item-news.item-news + .item-news {
  border-top: 1px solid #E7E9F3;
  padding-top: 20px;
}
.buid-top__right {
  width: 300px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  margin-bottom: 30px;
}
@media (max-width: 991px) {
  .buid-top__right {
    display: none;
  }
}
@media (max-width: 600px) {
  .buid-top .item-news .thumb-art {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
  .buid-top .item-news .content {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
  .buid-top .item-news.big {
    width: calc(100% + 30px);
    margin-left: -15px;
    margin-right: -15px;
  }
  .buid-top .item-news.big .thumb-art {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
    border-radius: 0;
  }
  .buid-top .item-news.big .content {
    padding: 0 15px;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
  .buid-top .item-news.big .title-news {
    font-size: 22px !important;
  }
  .buid-top__left {
    margin-bottom: 16px;
  }
  .buid-top__left .flexbox {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-column-gap: 16px;
       -moz-column-gap: 16px;
            column-gap: 16px;
    row-gap: 16px;
  }
  .buid-top__left .list {
    border-top: 1px solid #e7e9f3;
    padding-top: 16px;
    width: 100%;
    -webkit-column-gap: 16px;
       -moz-column-gap: 16px;
            column-gap: 16px;
    row-gap: 16px;
  }
  .buid-top__left .list::before {
    display: none;
  }
  .buid-top__left .list .item-news .description {
    display: block;
  }
  .buid-top__left .list .item-news.item-news + .item-news {
    padding-top: 16px;
  }
  .buid-top .grid {
    grid-template-columns: repeat(1, 1fr);
    padding-top: 16px;
    margin-top: 16px;
    -webkit-column-gap: 16px;
       -moz-column-gap: 16px;
            column-gap: 16px;
    row-gap: 16px;
  }
  .buid-top .grid .item-news {
    border-bottom: 1px solid #e7e9f3;
    padding-bottom: 16px;
  }
  .buid-top .grid .item-news .description {
    display: block;
  }
}

.box_stream {
  margin-bottom: 24px;
}
.box_stream .item-news.item-news + .item-news {
  border-top: 1px solid #E7E9F3;
  padding-top: 20px;
  margin-top: 20px;
}
.box_stream .item-news .title-news {
  font-size: 20px;
}
@media (max-width: 600px) {
  .box_stream .item-news {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-column-gap: 8px;
       -moz-column-gap: 8px;
            column-gap: 8px;
    row-gap: 8px;
  }
  .box_stream .item-news.item-news + .item-news {
    padding-top: 16px;
    margin-top: 16px;
  }
  .box_stream .item-news .thumb-art {
    width: 100%;
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
        -ms-flex-order: 2;
            order: 2;
  }
  .box_stream .item-news .content {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
        -ms-flex-order: 1;
            order: 1;
  }
  .box_stream .item-news .title-news {
    font-size: 18px;
  }
}

.section_techtalk .item-news {
  float: none;
}
.section_techtalk .item-news.big {
  background: #F1F4FF;
}
.section_techtalk .item-news.big .content {
  padding: 0 20px 20px 20px;
}
.section_techtalk .list-news-techtalk .item-news .img_icon {
  width: 30px;
  height: 30px;
  background: rgba(0, 0, 0, 0.6);
  position: absolute;
  left: 10px;
  bottom: 10px;
}
.section_techtalk .list-news-techtalk .item-news .img_icon::before {
  content: "";
  width: 0 !important;
  height: 0 !important;
  border-top: 8px solid rgba(255, 255, 255, 0) !important;
  border-left: 15px solid #fff !important;
  border-bottom: 8px solid rgba(255, 255, 255, 0) !important;
  position: absolute;
  top: 6px;
  left: 8px;
}
.section_techtalk .list-news-techtalk .item-news:last-child {
  border-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.main-grid {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 64px;
     -moz-column-gap: 64px;
          column-gap: 64px;
  padding: 20px 0;
}
.main-grid__left {
  width: 100%;
  margin-top: 20px;
}
.main-grid__right {
  width: 300px !important;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  margin-top: 20px;
  position: relative;
}
.main-grid__right::before {
  content: "";
  background: #E7E9F3;
  position: absolute;
  width: 1px;
  height: 100%;
  left: -32px;
  top: 0;
}
.main-grid .tab-content, .main-grid .list_product {
  width: 100%;
}
.main-grid .box-thongbao {
  border-radius: 10px;
  background: #F3F6FE;
  padding: 50px 20px 100px 20px;
  text-align: center;
  font-size: 16px;
  line-height: 1.6;
  position: relative;
  margin-top: 40px;
  margin-bottom: 37px;
}
.main-grid .box-thongbao .icon {
  position: absolute;
  top: -30px;
  left: 50%;
  -webkit-transform: translateX(-50%);
      -ms-transform: translateX(-50%);
          transform: translateX(-50%);
  width: 60px;
  height: 60px;
}
.main-grid .box-thongbao .title {
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 24px;
}
.main-grid .box-thongbao .name {
  font-size: 20px;
  font-weight: bold;
}
.main-grid .box-thongbao .link {
  text-decoration: none;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  padding-bottom: 1px;
}
.main-grid .box-contact {
  -webkit-column-gap: 120px;
     -moz-column-gap: 120px;
          column-gap: 120px;
  -webkit-box-align: end;
  -webkit-align-items: end;
      -ms-flex-align: end;
          align-items: end;
  font-size: 16px;
  line-height: 1.6;
  padding: 0 20px;
}
.main-grid .box-contact .item {
  position: relative;
}
.main-grid .box-contact .item::before {
  content: "";
  background: #E7E9F3;
  position: absolute;
  width: 1px;
  height: 100%;
  right: -60px;
  top: 0;
}
.main-grid .box-contact .item:last-child::before {
  display: none;
}
.main-grid .box-contact .item .text-icon {
  font-weight: bold;
  margin-bottom: 8px;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 8px;
     -moz-column-gap: 8px;
          column-gap: 8px;
}
.main-grid.reset-grid {
  padding: 0;
}
.main-grid.reset-grid .main-grid__left {
  margin-top: 0;
}
.main-grid.reset-grid .main-grid__right {
  margin-top: 90px;
}
@media (max-width: 600px) {
  .main-grid__right {
    display: none;
  }
  .main-grid .box-thongbao {
    padding: 40px 20px;
    margin-top: 20px;
  }
  .main-grid .box-contact {
    grid-template-columns: repeat(1, 1fr);
    padding: 0;
  }
  .main-grid .box-contact .item::before {
    display: none;
  }
}

/* Popup */
.title-popup {
  font-family: var(--font-main);
}

.popup_awards {
  max-width: 464px;
  border-radius: 5px;
  overflow: hidden;
  font-size: 16px;
  padding: 36px 32px;
  color: #fff;
  background: url(images/graphics/bg-popup.png) no-repeat;
  background-size: cover;
}
.popup_awards span.error {
  color: #06D3D3;
}
.popup_awards .success {
  font-size: 24px;
  position: relative;
  margin-bottom: 34px;
  padding-left: 52px;
}
.popup_awards .success img {
  position: absolute;
  left: 0;
  top: -4px;
  width: 38px;
  height: 38px;
}
.popup_awards .title_award {
  font-size: 24px;
  margin: 0;
  font-weight: bold;
  margin-bottom: 20px;
  padding-right: 30px;
}
.popup_awards .title_award::before {
  top: 16px;
  left: 10px;
}
@media (max-width: 768px) {
  .popup_awards .title_award {
    font-size: 20px;
  }
}
.popup_awards .name {
  font: bold 26px var(--font1);
  margin-bottom: 32px;
}
.popup_awards .name_number {
  font-family: var(--font1);
  font-size: 64px;
  font-weight: 400;
  margin-bottom: 15px;
}
.popup_awards .line-bottom {
  border-bottom: 1px solid rgba(238, 238, 238, 0.15);
  margin-bottom: 24px;
}
.popup_awards .name_2 {
  font-size: 24px;
  text-align: center;
}
.popup_awards p {
  margin-bottom: 10px;
  line-height: 1.6;
}
.popup_awards .btn-skew {
  margin: 0 10px;
  line-height: 47px;
  text-align: center;
  min-width: 97px;
  background: none;
  border: 1px solid #FFFFFF;
  font-size: 14px;
  color: #fff;
}
.popup_awards .mfp-close {
  display: block;
  font-family: -webkit-body;
  border-radius: 50%;
  font-size: 40px;
  width: 35px;
  height: 35px;
  line-height: 20px;
  top: 10px;
  right: 10px;
  opacity: 1;
  color: #fff;
  background: none;
  border: 0;
}
.popup_awards .content_lightbox ul {
  font-size: 0;
  margin-left: -25px;
}
.popup_awards .content_lightbox ul li {
  display: inline-block;
  width: 50%;
  vertical-align: top;
  margin-bottom: 20px;
  padding-left: 25px;
}
.popup_awards .content_lightbox ul li h3 {
  font-size: 16px;
  color: #ffcd13;
  background: #000;
  display: block;
  padding: 10px;
  font-weight: 400;
}
.popup_awards .content_lightbox ul li .warp {
  background: #fff;
  padding: 5px 15px;
  float: left;
  width: 100%;
  position: relative;
}
.popup_awards .content_lightbox ul li .warp .ava {
  width: 55px;
  height: 90px;
  position: relative;
  float: left;
}
.popup_awards .content_lightbox ul li .warp .ava img {
  max-height: 100%;
  max-width: 100%;
  width: auto;
  height: auto;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
}
.popup_awards .content_lightbox ul li .warp h4 {
  font-size: 14px;
  font-family: arial;
  font-weight: 400;
  position: absolute;
  left: 80px;
  top: 50%;
  transform: translate(0, -50%);
  -webkit-transform: translate(0, -50%);
  -moz-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
}
.popup_awards form .form-group {
  margin-bottom: 15px;
}
.popup_awards form .form-group label {
  font-weight: 400;
  margin-bottom: 15px;
  display: block;
}
.popup_awards form .form-group input {
  background: rgba(0, 0, 0, 0.6);
  border: 0;
  border-radius: 3px;
  height: 48px;
  width: 100%;
  color: #fff;
}
.popup_awards form .cap_cha .g-recaptcha > div {
  margin: 0 auto;
}

.vote-popup .success {
  font-weight: 700;
  font-size: 20px;
  line-height: 32px;
  color: #34C881;
  margin-bottom: 24px;
}
.vote-popup .success img {
  margin-right: 10px;
  width: 48px;
  height: 48px;
}
.vote-popup p {
  margin-bottom: 15px;
  line-height: 1.6;
}
.vote-popup .form-group {
  margin-bottom: 15px;
}
.vote-popup.white-popup {
  padding: 20px;
  border-radius: 5px;
}
.vote-popup.white-popup .title-popup {
  font-family: var(--main);
  margin-left: 0;
  font-size: 20px;
  margin-right: 0;
  margin-bottom: 14px;
  text-align: left;
  line-height: 1.6;
  height: auto;
  padding-bottom: 10px;
  border-bottom: 1px solid #E5E5E5;
}
.vote-popup.white-popup .content-popup {
  font-size: 14px;
  line-height: 1.6;
}
.vote-popup.white-popup .content-popup .sub-note {
  color: #6E7B9B;
  margin-bottom: 4px;
}
.vote-popup.white-popup .content-popup .name-gift {
  font-weight: 700;
  font-size: 20px;
  line-height: 29px;
  padding-bottom: 13px;
  border-bottom: 1px solid #E5E5E5;
  margin-bottom: 18px;
}
.vote-popup.white-popup .content-popup label {
  margin-bottom: 6px;
  display: block;
}
.vote-popup.white-popup .content-popup input {
  height: 46px;
  float: none;
}
.vote-popup.white-popup .content-popup input:focus, .vote-popup.white-popup .content-popup input:focus-visible {
  border: 1px solid #0084FF;
  outline: none;
}
.vote-popup.white-popup .content-popup span.error {
  margin: 0;
}
.vote-popup.white-popup .content-popup #error_captcha {
  text-align: left;
  max-width: 304px;
  margin: auto;
}
.vote-popup.white-popup .content-popup .note-form {
  margin: 10px 0;
}
.vote-popup.white-popup .mfp-close {
  right: 13px;
  top: 14px;
  text-indent: 0px;
  color: #111111;
  font-size: 42px;
  cursor: pointer;
  border: 0;
}
.vote-popup.white-popup.popup-success .content-popup {
  font-size: 16px;
}
.vote-popup#voted-popup {
  padding-top: 25px;
}
.vote-popup#voted-popup.white-popup .content-popup p {
  line-height: 25px;
  margin-bottom: 8px;
}

.dieukhoan {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
  font-size: 13px;
  font-weight: 400;
  line-height: 140%;
  margin-top: 20px;
  color: #757575;
}
.dieukhoan a {
  color: #131F46;
  text-decoration: none;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  padding-bottom: 1px;
}

.popup-light {
  background: #fff;
  color: #222;
}
.popup-light .title_award {
  color: #222 !important;
}
.popup-light .mfp-close {
  color: #222;
}
.popup-light form .form-group label {
  margin-bottom: 8px;
  font-size: 14px;
  color: #070B29;
}
.popup-light form .form-group sup {
  color: #D30606;
}
.popup-light form .form-group input {
  background: #fff;
  color: #222;
  border: 1px solid #DCDCDC;
}
.popup-light span.error {
  color: #D30606;
}
.popup-light .btn-skew {
  background: #FFE74C;
  border-color: #FFE74C;
  color: #222;
  line-height: 38px;
  height: 40px;
}
.popup-light .btn-skew.btn-skew-gray {
  background: #EEEEEE;
  border-color: #EEEEEE;
}
.popup-light .success {
  text-align: center;
  padding: 0;
  color: #34C881;
  font-size: 20px;
  margin-bottom: 4px;
  font-weight: bold;
}
.popup-light .success img {
  position: static;
  margin-bottom: 16px;
}
.popup-light .warning {
  text-align: center;
  color: #4F4F4F;
  margin-bottom: 15px;
  font-size: 14px;
  line-height: 1.45;
}
.popup-light .warning img {
  margin-bottom: 16px;
}
.popup-light .warning h2 {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
  color: #222;
}
.popup-light .line-bottom {
  color: #666;
  border-color: #eee;
}
.popup-light .name_number {
  color: #000078;
}
.popup-light .text_center {
  color: #666;
}

.popup-xacnhan {
  max-width: 385px;
}

.popup-ads {
  max-width: 720px;
  padding: 20px !important;
}
.popup-ads .flex-popup {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  gap: 24px;
}
.popup-ads .flex-popup .ads {
  width: 300px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
@media (max-width: 675px) {
  .popup-ads .flex-popup .content {
    max-width: 100%;
  }
  .popup-ads .flex-popup .ads {
    display: none;
  }
}

.popup-flex-new {
  max-width: 724px;
  -webkit-box-shadow: none;
          box-shadow: none;
  padding: 0 !important;
}
.popup-flex-new .flex-popup {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  gap: 4px;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.popup-flex-new .flex-popup .wrap-ads {
  width: 300px;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  font-size: 0;
}
.popup-flex-new .mfp-close {
  display: none;
}
.popup-flex-new .content {
  background: #fff url(images/graphics/bg-mail.png) no-repeat bottom;
  background-size: contain;
  padding: 20px;
  width: 100%;
  border-radius: 5px;
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.popup-flex-new .content > div {
  width: 100%;
}
.popup-flex-new .content.no-bg {
  background: #fff;
}
.popup-flex-new .bg-wrap {
  background: #fff !important;
  padding-right: 20px;
  border-radius: 5px;
}
.popup-flex-new .bg-wrap .title-popup {
  line-height: 1.4;
  height: auto;
  padding-bottom: 8px;
}
.popup-flex-new .bg-wrap .wrap-ads {
  padding: 55px 0 20px 0;
}
@media (max-width: 600px) {
  .popup-flex-new .flex-popup {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    background: #fff url(images/graphics/bg-mail.png) no-repeat bottom;
    background-size: contain;
    border-radius: 5px;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
        -ms-flex-pack: center;
            justify-content: center;
    padding: 20px;
    gap: 20px;
  }
  .popup-flex-new .flex-popup .content {
    max-width: 100%;
    padding: 0;
    background: none;
  }
  .popup-flex-new .flex-popup .content .close-popup {
    top: 0;
    right: 0;
  }
  .popup-flex-new .flex-popup .wrap-ads {
    display: none;
  }
}

.white-popup {
  border-radius: 5px;
  max-height: 100dvh;
  overflow-y: auto;
}
.white-popup::-webkit-scrollbar {
  width: 5px;
}
.white-popup::-webkit-scrollbar-thumb {
  background-color: #cccccc;
  width: 5px;
  border-radius: 10px;
}
.white-popup .close-popup {
  font-family: -webkit-body;
  text-indent: 0px;
  color: #111111;
  font-size: 42px;
  cursor: pointer;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  width: 32px;
  height: 32px;
  position: absolute;
  z-index: 2;
  right: 10px;
  top: 10px;
  border: 0;
}
.white-popup .img-product {
  position: relative;
  background: #fff;
  text-align: center;
  padding: 30px 12px;
  border: 1px solid #D3D9EC;
}
.white-popup .img-product .title {
  font-weight: 400;
  margin: 15px 0 0 0;
  font-size: 18px;
}
.white-popup .flex-input {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  row-gap: 10px;
}
.white-popup .flex-input .text {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.white-popup .flex-input input {
  width: 135px !important;
}
.white-popup .flex-button {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  row-gap: 10px;
}
.white-popup .flex-button .btn-skew {
  width: 100%;
}
.white-popup .flex-button .shrink {
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
  width: 200px;
}
@media (max-width: 600px) {
  .white-popup .img-product {
    max-width: 280px;
    padding: 10px;
    margin: 0 auto;
  }
}

.popup-grid {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-column-gap: 50px;
     -moz-column-gap: 50px;
          column-gap: 50px;
  row-gap: 20px;
  padding: 40px 20px;
  background: #fff url(images/graphics/bg-popup2.png) no-repeat bottom;
  background-size: contain;
  border-radius: 5px;
}
.popup-grid__left {
  width: 280px !important;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.popup-grid__right {
  width: 100%;
}
@media (max-width: 1025px) {
  .popup-grid {
    -webkit-column-gap: 20px;
       -moz-column-gap: 20px;
            column-gap: 20px;
  }
}
@media (max-width: 600px) {
  .popup-grid {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    -webkit-column-gap: 0;
       -moz-column-gap: 0;
            column-gap: 0;
    background: #fff;
  }
  .popup-grid__left {
    display: none;
  }
}

/* /Popup */
.footer {
  position: relative;
}
.footer .menu-footer {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
  -webkit-justify-content: flex-start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  padding: 15px 0;
  border-top: 1px solid #D3D9EC;
  border-bottom: 1px solid #D3D9EC;
  margin-bottom: 8px;
}
@media screen and (max-width: 767px) {
  .footer .menu-footer {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
    display: none;
  }
  .footer .menu-footer .social {
    margin-top: 20px;
  }
}
.footer .menu-footer .list-menu {
  position: relative;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 24px;
}
.footer .menu-footer .list-menu .icon-home {
  position: relative;
  top: -2px;
}
.footer .menu-footer .list-menu li {
  display: inline-block;
  position: relative;
  white-space: nowrap;
}
.footer .menu-footer .list-menu li.m_logo {
  display: none;
}
.footer .menu-footer .list-menu li a {
  font-family: var(--font-main);
  display: inline-block;
  font-weight: 400;
  font-size: 16px;
  line-height: 40px;
  position: relative;
  z-index: 9;
  outline: none;
}
.footer .menu-footer .list-menu li .btn-skew {
  line-height: 1;
  display: -webkit-inline-box;
  display: -webkit-inline-flex;
  display: -ms-inline-flexbox;
  display: inline-flex;
  height: 36px;
  font-size: 14px;
  padding: 0 15px;
}
.footer .menu-footer .list-menu li:last-child {
  padding-right: 0px;
}
.footer .menu-footer .list-menu li:last-child::after {
  display: none;
}
.footer .menu-footer .list-menu li.dropdown {
  display: block;
  padding-right: 16px;
  position: relative;
  -webkit-flex-shrink: 0;
      -ms-flex-negative: 0;
          flex-shrink: 0;
}
.footer .menu-footer .list-menu li.dropdown > a::before {
  content: "";
  border-top: 1px solid #091e42;
  border-right: 1px solid #091e42;
  width: 7px;
  height: 7px;
  -webkit-transform: rotate(135deg);
      -ms-transform: rotate(135deg);
          transform: rotate(135deg);
  position: absolute;
  right: -16px;
  top: 14px;
}
.footer .menu-footer .list-menu li.dropdown:hover .dropdown-menu {
  display: block;
}
@media screen and (max-width: 1025px) {
  .footer .menu-footer .list-menu li.dropdown:hover .dropdown-menu {
    position: -webkit-sticky;
    position: sticky;
  }
}
.footer .menu-footer .list-menu li.dropdown .dropdown-menu {
  display: none;
  position: absolute;
  -webkit-box-shadow: 0px 8px 8px rgba(0, 0, 0, 0.12);
          box-shadow: 0px 8px 8px rgba(0, 0, 0, 0.12);
  border-radius: 4px;
  padding: 10px 15px;
  overflow: hidden;
  top: 100%;
  background: #fff;
  z-index: 2;
  left: 0;
}
.footer .menu-footer .list-menu li.dropdown .dropdown-menu li {
  display: block;
  line-height: 1.6;
  list-style: none;
  white-space: nowrap;
}
.footer .menu-footer .list-menu li.dropdown .dropdown-menu li a {
  line-height: 1.6;
  padding-left: 12px;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='5' height='6' viewBox='0 0 5 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M5 3L0 0V6L5 3Z' fill='%23131F46'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: 0px 50%;
}
.footer .menu-footer .list-menu li.dropdown .dropdown-menu li.active, .footer .menu-footer .list-menu li.dropdown .dropdown-menu li:hover {
  color: #0F69ED;
}
.footer .menu-footer .list-menu li.dropdown .dropdown-menu li.active a, .footer .menu-footer .list-menu li.dropdown .dropdown-menu li:hover a {
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg width='5' height='6' viewBox='0 0 5 6' fill='none' xmlns='http://www.w3.org/2000/svg'%3e%3cpath d='M5 3L0 0V6L5 3Z' fill='%230F91EA'/%3e%3c/svg%3e");
}
.footer .menu-footer .list-menu li.dropdown .dropdown-menu li + li {
  border-top: 1px solid #E8E9ED;
  padding-top: 12px;
  margin-top: 12px;
}
.footer .logo-footer {
  font-size: 13px;
  line-height: 120%;
  padding: 15px 0;
  border-top: 0;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  width: 100%;
  float: none;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  border-bottom: 1px solid #D3D9EC;
}
@media screen and (max-width: 767px) {
  .footer .logo-footer {
    display: block;
    border-top: none;
    padding: 20px 0;
    font-size: 14px;
  }
}
.footer .logo-footer p {
  float: left;
}
@media screen and (max-width: 767px) {
  .footer .logo-footer p {
    text-align: left;
  }
}
.footer .logo-footer .logo_ft {
  vertical-align: middle;
  margin-left: 0;
}
.footer .logo-footer .logo_ft img {
  width: 145px;
}
@media screen and (max-width: 767px) {
  .footer .logo-footer .logo_ft {
    margin-bottom: 15px;
    margin-left: 0;
  }
}
.footer .logo-footer a {
  display: inline-block;
  margin-left: 10px;
}
.footer .logo-footer .flexbox {
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
}
@media screen and (max-width: 767px) {
  .footer .logo-footer .flexbox {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    margin-top: 15px;
    width: 100%;
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
.footer .logo-footer .ft-social {
  width: 26px;
  height: 26px;
  line-height: 26px;
  text-align: center;
  border-radius: 50%;
}
.footer .logo-footer .ft-social .ic {
  fill: #fff;
}
.footer .logo-footer .ft-social.face {
  background: #3B5999;
}
.footer .logo-footer .ft-social.link {
  background: #087CCE;
}
.footer .logo-footer .ft-social.link-mb {
  background: #1D64C1;
  display: none;
}
@media screen and (max-width: 767px) {
  .footer .logo-footer .ft-social {
    width: 36px;
    height: 36px;
    line-height: 36px;
  }
  .footer .logo-footer .ft-social.link, .footer .logo-footer .ft-social.face {
    display: none;
  }
  .footer .logo-footer .ft-social.link-mb {
    display: block;
  }
}
.footer .logo-footer .dksd {
  margin-right: 15px;
  padding-right: 15px;
  border-right: 1px solid #D3D9EC;
  margin-left: 0;
}
.footer .logo-footer .btn-gopy {
  margin-left: 10px;
}
.footer .logo-footer .btn-gopy a {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 5px;
  padding: 0 12px;
  height: 32px;
  margin-left: 0;
  white-space: nowrap;
  font-weight: 400;
  font-size: 13px;
  color: #2C2E2F;
  line-height: 30px;
  gap: 4px;
  padding-right: 32px;
  position: relative;
  background: #D3D9EC;
  border-radius: 31px;
}
.footer .logo-footer .btn-gopy a::after {
  content: "";
  width: 5px;
  height: 5px;
  position: absolute;
  right: 15px;
  border-top: 1px solid #2C2E2F;
  border-right: 1px solid #2C2E2F;
  -webkit-transform: rotate(45deg);
      -ms-transform: rotate(45deg);
          transform: rotate(45deg);
}
@media screen and (max-width: 414px) {
  .footer .logo-footer .btn-gopy {
    width: 100%;
    margin-top: 10px;
    margin-left: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
  }
}
.footer .social {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
}
.footer .social .txt-follow {
  margin-left: 0;
  padding-left: 0;
  color: rgba(34, 34, 34, 0.65);
  border-left: 0;
}
.footer .social a.social_ft {
  width: 32px;
  height: 32px;
  border: 1px solid #e5e5e5;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  background: none;
  border-radius: 50%;
}
.footer .social a.social_ft .ic {
  fill: #4f4f4f;
}
.footer .ft-bottom {
  padding: 20px 0;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -webkit-justify-content: space-between;
      -ms-flex-pack: justify;
          justify-content: space-between;
  row-gap: 15px;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
  font-weight: 400;
  font-size: 14px;
  line-height: 160%;
  color: #222;
}
@media screen and (max-width: 767px) {
  .footer .ft-bottom {
    -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
            flex-wrap: wrap;
  }
}
.footer .copyright-bottom {
  text-align: center;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -webkit-align-items: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-column-gap: 10px;
     -moz-column-gap: 10px;
          column-gap: 10px;
  font-size: 14px;
  line-height: 20px;
  color: #4f4f4f;
  padding-bottom: 20px;
}
.footer .copyright-bottom img {
  display: block;
}
@media screen and (max-width: 767px) {
  .footer .copyright-bottom {
    display: none;
  }
}
@media screen and (max-width: 600px) {
  .footer .container {
    border-top: 1px solid #d3d9ec;
  }
  .footer .none {
    display: none;
  }
}
/*# sourceMappingURL=maps/theme.css.map */
