@charset "UTF-8";

html,
body {
  min-height: 100%;
}

body {
  color: #333;
}

* {
  font-family: 'Roboto', sans-serif;
  font-size: 16px;
}

*,
:before,
:after {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

ul,
ol {
  margin: 0;
  padding: 0;
  list-style-position: inside;
}

.row:before,
.row:after {
  -webkit-display: none !important;
  -moz-display: none !important;
  -o-display: none !important;
  -ms-display: none !important;
  display: none !important;
}

h1,
h2,
h3,
h4,
h5,
h6,
p {
  padding: 0;
  margin: 0;
  line-height: 1;
  font-weight: 600;
}

h1 a,
h2 a,
h3 a,
h4 a,
h5 a,
h6 a {
  font-weight: 600;
}

a {
  color: #000;
  text-decoration: none !important;
}

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

button,
.btn,
span {
  outline: none !important;
}

.img-cover {
  display: block;
  width: 100%;
  height: 100%;
}

.img-cover img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
}

.img-scaledown {
  display: block;
  width: 100%;
  height: 100%;
}

.img-scaledown img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: scale-down;
  object-fit: scale-down;
}

.img-fill {
  display: block;
  width: 100%;
  height: 100%;
}

.img-fill img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: fill;
  object-fit: fill;
}

.img-contain {
  display: block;
  width: 100%;
  height: 100%;
}

.img-contain img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.img-none {
  display: block;
  width: 100%;
  height: 100%;
}

.img-none img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: none;
  object-fit: none;
}

/* ----------------------- Hiệu ứng hover ảnh ----------------------- */
.img-flash,
.img-shine {
  position: relative;
  overflow: hidden;
}

.img-circle:before,
.img-shine:before {
  content: '';
  display: block;
}

.img-circle,
.img-flash,
.img-shine,
.img-slide,
.img-zoomin,
.img-zoomout {
  overflow: hidden;
}

.img-flash:hover>* {
  opacity: 1;
  -webkit-animation: imgFlash 1.5s;
  animation: imgFlash 1.5s;
}

@-webkit-keyframes imgFlash {
  0% {
    opacity: .6;
  }

  100% {
    opacity: 1;
  }
}

@keyframes imgFlash {
  0% {
    opacity: .6;
  }

  100% {
    opacity: 1;
  }
}

.img-shine:before {
  position: absolute;
  top: 0;
  left: -75%;
  z-index: 100;
  width: 50%;
  height: 100%;
  background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), to(rgba(255, 255, 255, 0.5)));
  background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.5) 100%);
  -webkit-transform: skewX(-25deg);
  transform: skewX(-25deg);
}

.img-shine:hover:before {
  -webkit-animation: imgShine .75s ease-in-out;
  animation: imgShine .75s ease-in-out;
}

@-webkit-keyframes imgShine {
  100% {
    left: 125%;
  }
}

@keyframes imgShine {
  100% {
    left: 125%;
  }
}

.img-circle {
  position: relative;
}

.img-circle:before {
  position: absolute;
  width: 0;
  height: 0;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  z-index: 10;
  opacity: 0;
  background: rgba(255, 255, 255, 0.3);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.img-slide,
.img-slide>*,
.img-zoomin,
.img-zoomin>*,
.img-zoomout,
.img-zoomout>*,
[class*=img-caption] {
  position: relative;
}

.img-circle:hover:before {
  -webkit-animation: circle .75s infinite;
  animation: circle .75s infinite;
}

@-webkit-keyframes circle {

  0%,
  40% {
    opacity: 1;
  }

  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}

@keyframes circle {

  0%,
  40% {
    opacity: 1;
  }

  100% {
    width: 200%;
    height: 200%;
    opacity: 0;
  }
}

.img-zoomin>* {
  -webkit-transition: transform .4s ease-in-out;
  -webkit-transition: -webkit-transform .4s ease-in-out;
  transition: -webkit-transform .4s ease-in-out;
  transition: transform .4s ease-in-out;
  transition: transform .4s ease-in-out, -webkit-transform .4s ease-in-out;
}

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

.img-slide>* {
  left: 0;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.img-slide:hover>* {
  left: -10px;
}

.img-zoomout>* {
  -webkit-transition: all .4s linear;
  transition: all .4s linear;
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}

.img-zoomout:hover>* {
  -webkit-transform: scale(1);
  transform: scale(1);
}

[class*=img-caption] {
  display: block;
  overflow: hidden;
}

[class*=img-caption] .image {
  display: block;
  position: relative;
  font-size: 0;
  -webkit-transform: translateY(0);
  transform: translateY(0);
  -webkit-transition: all .35s ease-in-out;
  transition: all .35s ease-in-out;
}

[class*=img-caption]>.info {
  display: block;
  position: absolute;
  z-index: 100;
  left: 0;
  right: 0;
  background: white;
  -webkit-transition: all .35s ease-in-out;
  transition: all .35s ease-in-out;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.img-caption-bottom>.info {
  visibility: hidden;
  opacity: 0;
  top: initial;
  bottom: 0;
  -webkit-transform: translateY(100%);
  transform: translateY(100%);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.img-caption-bottom:hover>.info {
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.img-caption-bottom:hover>.image {
  -webkit-transform: translateY(-50px);
  transform: translateY(-50px);
}

.img-caption-top>.info {
  opacity: 0;
  top: 0;
  bottom: initial;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
}

.img-caption-top:hover>.info {
  opacity: 1;
  -webkit-transform: translateY(0);
  transform: translateY(0);
}

.img-caption-top:hover>.image {
  -webkit-transform: translateY(50px);
  transform: translateY(50px);
}

[class*=img-push] {
  display: block;
  overflow: hidden;
  position: relative;
}

[class*=img-push] .image {
  display: block;
  position: relative;
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

[class*=img-push] .info {
  display: block;
  position: absolute;
  z-index: 100;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background: white;
  -webkit-transition: all .4s ease-in-out;
  transition: all .4s ease-in-out;
}

.img-push-up .info {
  -webkit-transform: translate(0, 100%);
  transform: translate(0, 100%);
}

.img-push-down .info,
.img-push-up:hover .image {
  -webkit-transform: translate(0, -100%);
  transform: translate(0, -100%);
}

.img-push-down:hover .image {
  -webkit-transform: translate(0, 100%);
  transform: translate(0, 100%);
}

.img-push-left .info {
  -webkit-transform: translate(100%, 0);
  transform: translate(100%, 0);
}

.img-push-left:hover .image,
.img-push-right .info {
  -webkit-transform: translate(-100%, 0);
  transform: translate(-100%, 0);
}

.img-push-right:hover .image {
  -webkit-transform: translate(100%, 0);
  transform: translate(100%, 0);
}

[class*=img-push]:hover .info {
  -webkit-transform: translate(0, 0);
  transform: translate(0, 0);
}

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

  50% {
    opacity: 0.0;
  }

  100% {
    opacity: 1.0;
  }
}

@keyframes btn-blink {
  0% {
    opacity: 1.0;
  }

  50% {
    opacity: 0.0;
  }

  100% {
    opacity: 1.0;
  }
}

/* ----------------------- End Hiệu ứng hover ảnh ----------------------- */
*:hover {
  -webkit-transition: all .25s;
  transition: all .25s;
}

.active-pc {
  display: block;
}

@media (max-width: 414px) {
  .active-pc {
    display: none;
  }
}

.active-mb {
  display: none;
}

@media (max-width: 414px) {
  .active-mb {
    display: block;
  }
}

.dp-block {
  display: block;
}

.db-none {
  display: none;
}

.row.row-mg-0 {
  margin-left: 0px;
  margin-right: 0px;
}

.row.row-mg-0 .col-pd-0 {
  padding-right: 0px;
  padding-left: 0px;
}

.row.row-mg-75 {
  margin-left: -7.5px;
  margin-right: -7.5px;
}

.row.row-mg-75 .col-pd-75 {
  padding-right: 7.5px;
  padding-left: 7.5px;
}

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

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

.mb0 {
  margin-bottom: 0px;
}

.mb5 {
  margin-bottom: 5px;
}

.mb10 {
  margin-bottom: 10px;
}

.mb15 {
  margin-bottom: 15px;
}

.mb20 {
  margin-bottom: 20px;
}

.mb25 {
  margin-bottom: 25px;
}

.mb30 {
  margin-bottom: 30px;
}

.mb35 {
  margin-bottom: 35px;
}

.mb40 {
  margin-bottom: 40px;
}

.mb45 {
  margin-bottom: 45px;
}

.mb50 {
  margin-bottom: 50px;
}

.text-red {
  color: #cc2229;
}

.text-bold {
  font-weight: 600;
}

#to_top {
  display: none;
  border: medium none;
  bottom: 20px;
  cursor: pointer;
  text-align: center;
  height: 30px;
  line-height: 32px;
  outline: medium none;
  padding: 0;
  position: fixed;
  right: 20px;
  width: 30px;
  z-index: 89;
  background: #14B8A6;
  color: #fff;
}

#to_top span {
  color: #fff;
}

.dp-block {
  display: block;
}

.dp-none {
  display: none;
}

.tag {
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  padding: 3px 5px;
  border-radius: 3px;
}

.tag.tag-oran {
  background-color: #FF9A01;
}

.tag.tag-red {
  background-color: #FF0101;
}

.sec-head.sec-head-common-1 {
  margin-bottom: 20px;
}

.sec-head.sec-head-common-1 .heading {
  font-size: 22px;
  text-transform: uppercase;
  color: #14B8A6;
  font-weight: 600;
  display: inline-block;
  padding-bottom: 5px;
  border-bottom: 2px solid #14B8A6;
}

.color-red {
  color: red;
}

.box-button .btn {
  display: inline-block;
  text-transform: uppercase;
  font-weight: 500;
  color: #fff;
  border-radius: 19px;
}

.box-button .btn svg {
  margin-right: 5px;
}

.box-button .btn.btn-blue {
  background-color: #14B8A6;
}

.box-button .btn.btn-blue:hover {
  background-color: #189ef7;
}

.bg-gray {
  background-color: #f5f5f5;
}

.history-download-page .header-pc,
.update-info-page .header-pc,
.news-page .header-pc,
.news-detail-page .header-pc,
.guider-page .header-pc,
.filed-money-page .header-pc {
  margin-bottom: 0;
}

.history-download-page .breadcrumb,
.update-info-page .breadcrumb,
.news-page .breadcrumb,
.news-detail-page .breadcrumb,
.guider-page .breadcrumb,
.filed-money-page .breadcrumb {
  border-bottom: 1px solid #333;
  border-radius: 0;
  margin-bottom: 25px;
}

.breadcrumb {
  padding: 7.5px 0px;
  background-color: transparent;
  margin-bottom: 10px;
}

.breadcrumb .breadcrumb-item.active {
  max-width: 50%;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

@media (max-width: 414px) {
  .breadcrumb .breadcrumb-item.active {
    max-width: 100%;
  }
}

.inner-page {
  background-color: #e9e9e9;
}

.inner-page-content {
  margin-bottom: 50px;
}

.inner-page-detail .box-button.bottom {
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  padding: 15px;
}

.inner-page-detail .box-button.bottom .btn {
  padding: 5px 30px;
  display: inline-block;
  font-size: 14px;
  color: #666;
  border-color: #666;
  border-radius: 5px;
  background-color: #f5f5f5;
}

.inner-page-detail .box-button.bottom .btn:hover {
  color: #fff;
  background-color: #666;
  border-color: #666;
}

.icon-word {
  display: inline-block;
  font-size: 20px !important;
  margin-right: 2px;
}

.owl-carousel.owl-carousel-1 .owl-stage-outer {
  margin: 0 -10px;
}

.owl-carousel.owl-carousel-1 .owl-stage-outer .owl-item {
  margin: 10px !important;
}

.owl-carousel.owl-carousel-1 .owl-stage-outer .com-item-common:hover {
  -webkit-box-shadow: 0px 0px 10px #ccc;
  box-shadow: 0px 0px 10px #ccc;
}

.header-pc {
  background-color: #14B8A6;
  padding: 15px 0;
  margin-bottom: 20px;
}

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

.header-pc .header-pc-content__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-pc .header-pc-content__center {
  width: 100%;
  max-width: 400px;
}

.header-pc .header-pc-content__center .box-search .form-group {
  position: relative;
  width: 100%;
}

.header-pc .header-pc-content__center .box-search .form-group input {
  width: 100%;
}

.header-pc .header-pc-content__center .box-search .form-group .btn {
  position: absolute;
  top: 0;
  right: 0;
  color: #14B8A6;
}

.header-pc .header-pc-content__left .hd-logo {
  margin-right: 20px;
}

.header-pc .header-pc-content__left .hd-logo .image img {
  display: block;
  -o-object-fit: scale-down;
  object-fit: scale-down;
  height: 50px;
}

.header-pc .header-pc-content__right .hd-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-pc .header-pc-content__right .hd-menu li .menu-title {
  display: inline-block;
  color: #fff;
  padding: 10px 10px 5px 10px;
}

.header-pc .header-pc-content__right .hd-menu li:not(:last-child) {
  position: relative;
}

.header-pc .header-pc-content__right .hd-menu li:not(:last-child)::before {
  position: absolute;
  content: "";
  bottom: 7px;
  right: 0px;
  width: 1px;
  height: 20px;
  background-color: #fff;
}

.header-pc .header-pc-content__right .hd-menu li:first-child .menu-title {
  padding: 10px 0 5px 10px;
}

.header-pc .header-pc-content__right {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-pc .header-pc-content__right .box-search .form-group {
  position: relative;
}

.header-pc .header-pc-content__right .box-search .form-group input {
  max-width: 250px;
}

.header-pc .header-pc-content__right .box-search .form-group .btn {
  position: absolute;
  top: 0;
  right: 0;
  color: #14B8A6;
}

.box-hotline {
  margin: 3px 10px 0 20px;
  padding-left: 25px;
  position: relative;
}

.box-hotline svg {
  display: inline-block;
  position: absolute;
  top: 0px;
  left: 0;
  color: #fff;
  font-size: 18px;
}

.box-hotline p {
  line-height: 1.25;
  color: #ffdf00;
  font-weight: 600;
}

.header-pc .header-pc-content__right .box-button {
  margin: 0 10px;
}

.header-pc .header-pc-content__right .box-button .btn {
  background-color: orange;
  color: #fff;
  padding: 5px 15px;
  font-size: 12.5px;
  text-transform: unset;
}

.header-pc .header-pc-content__right .box-button .btn:hover {
  background-color: orangered;
}

.header-pc .header-pc-content__right .box-notification {
  position: relative;
  margin-right: 24px;
}

.header-pc .header-pc-content__right .box-notification .icon {
  background-color: transparent;
  padding: 5px;
  border-radius: 50%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  cursor: pointer;
  position: relative;
}

.header-pc .header-pc-content__right .box-notification .icon svg {
  color: #fff;
  width: 16px;
}

.header-pc .header-pc-content__right .box-notification .icon .number {
  position: absolute;
  top: -10px;
  left: 10px;
  font-size: 12px;
  padding: 0px 5.65px;
  border-radius: 10px;
  background-color: #f02849;
  color: #fff;
}

.header-pc .header-pc-content__right .box-notification .list-noti {
  position: absolute;
  top: 100%;
  right: 0%;
  min-width: 350px;
  z-index: 2;
  display: none;
  background-color: #fff;
  -webkit-box-shadow: 0px 0px 5px #ccc;
  box-shadow: 0px 0px 5px #ccc;
  padding: 10px;
  border-radius: 5px;
}

.header-pc .header-pc-content__right .box-notification .list-noti .noti-title {
  font-size: 18px;
  font-weight: 600;
  display: inline-block;
  padding: 0 10px 2px 0;
  border-bottom: 1px solid #333;
}

.header-pc .header-pc-content__right .box-notification .list-noti .noti {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 10px 10px 10px 0;
}

.header-pc .header-pc-content__right .box-notification .list-noti .noti__avatar {
  margin-right: 10px;
}

.header-pc .header-pc-content__right .box-notification .list-noti .noti__avatar svg {
  font-size: 35px;
  padding: 5px;
  color: #14B8A6;
}

.header-pc .header-pc-content__right .box-notification .list-noti .noti__info__desc {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 12px;
  color: #000;
  font-weight: 600;
}

.header-pc .header-pc-content__right .box-notification .list-noti .noti__info__time {
  font-size: 12px;
  color: #14B8A6;
  font-weight: 600;
}

.header-pc .header-pc-content__right .box-notification .list-noti .noti.seen {
  background-color: #fff;
}

.header-pc .header-pc-content__right .box-notification .list-noti .noti.seen .noti__avatar svg {
  color: #999;
}

.header-pc .header-pc-content__right .box-notification .list-noti .noti.seen .noti__info__desc {
  color: #666;
  font-weight: normal;
}

.header-pc .header-pc-content__right .box-notification .list-noti .noti.seen .noti__info__time {
  color: #666;
  font-weight: normal;
}

.header-pc .header-pc-content__right .box-notification .list-noti .noti:not(:last-child) {
  border-bottom: 1px solid #f0f0f0;
}

.header-pc .header-pc-content__right .box-notification .list-noti .noti:hover {
  background-color: #f2f2f2;
}

.header-pc .header-pc-content__right .box-notification.is-active .list-noti {
  display: block;
}

.header-pc .header-pc-content__right .box-notification:hover .icon {
  background-color: #fff;
}

.header-pc .header-pc-content__right .box-notification:hover .icon svg {
  color: #14B8A6;
}

.box-login {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}

.box-login .btn {
  color: #fff;
  display: block;
  padding: 0px 10px;
  border-radius: 0;
  text-align: center;
}

.box-login .box-menu-list {
  padding: 4px 8px;
  /*background-color: #ffffff;*/
}

.box-login .box-menu-list .menu-child a,
.box-login .box-menu-list .menu-child span {
  font-size: 14px;
  color: #fff;
}

.box-login .box-dropdown {
  position: absolute;
  content: "";
  top: calc(100% + 10px);
  right: 0;
  min-width: 280px;
  height: auto;
  background-color: #fff;
  -webkit-box-shadow: 2px 2px 5px 2px #ccc;
  box-shadow: 2px 2px 5px 2px #ccc;
  display: none;
  z-index: 9999;
  border-radius: 4px;
  overflow: hidden;
}

.box-login .box-dropdown .menu-child .title {
  padding: 7.5px 20px;
  display: block;
  background-color: #fff;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
}

.box-login .box-dropdown .menu-child .title svg,
.box-login .box-dropdown .menu-child .title i {
  width: 20px;
  margin-right: 8px;
  color: #666;
  display: inline-block;
}

.box-login .box-dropdown .menu-child .title:hover {
  background-color: #f2f2f2;
}

.box-login .box-dropdown .menu-child .title:hover svg,
.box-login .box-dropdown .menu-child .title:hover i {
  color: #14B8A6;
}

.box-login .box-dropdown .menu-child:not(:last-child) {
  border-bottom: 1px solid #eee;
}

.box-login.is-active .box-dropdown {
  display: block;
}

/* Mobile dropdown menu */
.header-mb .logout-mb {
  position: relative;
}

.header-mb .box-login-mb {
  position: relative;
}

.header-mb .box-login-mb .box-dropdown {
  position: absolute;
  content: "";
  top: calc(100% + 10px);
  right: 0;
  min-width: 280px;
  background-color: #fff;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
  display: none;
  z-index: 1000;
}

.header-mb .box-login-mb.is-active .box-dropdown {
  display: block;
}

.header-mb .box-login-mb .box-dropdown .menu-child .title {
  padding: 7.5px 20px;
  display: block;
  background-color: #fff;
  color: #333;
  text-decoration: none;
  transition: all 0.3s ease;
}

.header-mb .box-login-mb .box-dropdown .menu-child .title svg,
.header-mb .box-login-mb .box-dropdown .menu-child .title i {
  width: 20px;
  margin-right: 8px;
  color: #666;
  display: inline-block;
}

.header-mb .box-login-mb .box-dropdown .menu-child .title:hover {
  background-color: #f2f2f2;
}

.header-mb .box-login-mb .box-dropdown .menu-child .title:hover svg,
.header-mb .box-login-mb .box-dropdown .menu-child .title:hover i {
  color: #14B8A6;
}

.header-mb .box-login-mb .box-dropdown .menu-child:not(:last-child) {
  border-bottom: 1px solid #eee;
}

.box-info {
  cursor: pointer;
  margin-left: 8px;
}

.box-info .box-info-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #fff;
}

.box-info .box-info-link svg {
  color: #14B8A6;
}

.box-status__guest .box-info-link {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background-color: #fff;
}

.box-status__guest .box-info-link svg {
  color: #14B8A6;
}

.header-mb {
  background-color: #14B8A6;
  margin-bottom: 15px;
}

.header-mb #menu-container .panel-head-mb {
  padding: 15px 15px 15px 15px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.header-mb #menu-container .panel-head-mb #menu-wrapper {
  overflow: hidden;
  max-width: 100%;
  cursor: pointer;
}

.header-mb #menu-container .panel-head-mb #menu-wrapper #hamburger-menu {
  position: relative;
  width: 25px;
  height: 20px;
}

.header-mb #menu-container .panel-head-mb #menu-wrapper #hamburger-menu span {
  opacity: 1;
  left: 0;
  display: block;
  width: 100%;
  height: 2px;
  border-radius: 10px;
  color: #fff;
  background-color: #fff;
  position: absolute;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .4s ease-in-out;
  transition: .4s ease-in-out;
}

.header-mb #menu-container .panel-head-mb #menu-wrapper #hamburger-menu span:nth-child(1) {
  top: 0;
}

.header-mb #menu-container .panel-head-mb #menu-wrapper #hamburger-menu span:nth-child(2) {
  top: 9px;
}

.header-mb #menu-container .panel-head-mb #menu-wrapper #hamburger-menu span:nth-child(3) {
  top: 18px;
}

.header-mb #menu-container .panel-head-mb #menu-wrapper #hamburger-menu.open span:nth-child(1) {
  -webkit-transform: translateY(9px) rotate(135deg);
  transform: translateY(9px) rotate(135deg);
}

.header-mb #menu-container .panel-head-mb #menu-wrapper #hamburger-menu.open span:nth-child(2) {
  opacity: 0;
  -webkit-transform: translateX(-60px);
  transform: translateX(-60px);
}

.header-mb #menu-container .panel-head-mb #menu-wrapper #hamburger-menu.open span:nth-child(3) {
  -webkit-transform: translateY(-9px) rotate(-135deg);
  transform: translateY(-9px) rotate(-135deg);
}

.header-mb #menu-container .panel-head-mb .logo-mb .image {
  height: 65px;
}

.header-mb #menu-container .panel-head-mb .button {
  padding: 0;
  color: #fff;
}

.header-mb #menu-container .panel-head-mb .button:hover {
  outline: none;
  background-color: transparent;
}

.header-mb #menu-container .panel-head-mb .logout-mb .logout-content {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.header-mb #menu-container .panel-head-mb .logout-mb .logout-content .avatar .image img {
  background-color: #fff;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.header-mb #menu-container .panel-head-mb .logout-mb .logout-content .box-logout a {
  color: #fff;
}

.header-mb #menu-container .panel-head-mb .logout-mb.logout-index .box-logout a {
  color: #fff;
}

.header-mb #menu-container .panel-head-mb .logout-mb.logout-index .box-logout a:hover {
  color: #14B8A6;
}

.header-mb #menu-container .panel-body-mb .menu-list {
  padding-left: 0;
  display: block;
  position: absolute;
  height: 100%;
  width: 100%;
  max-width: 450px;
  background: white;
  z-index: 999;
  overflow-y: auto;
  overflow-x: hidden;
  left: -100%;
  padding-bottom: 100px;
}

.header-mb #menu-container .panel-body-mb .menu-list .menu-footer {
  margin-bottom: 15px;
}

.header-mb #menu-container .panel-body-mb .menu-list li.search-mb {
  position: relative;
  padding: 15px 15px 15px 15px;
  border-bottom: 1px solid #dbdcd2;
}

.header-mb #menu-container .panel-body-mb .menu-list li.search-mb svg {
  position: absolute;
  top: 25px;
  left: 25px;
}

.header-mb #menu-container .panel-body-mb .menu-list li.search-mb .input-search {
  width: 100%;
  padding: 7.5px 10px 7.5px 40px;
  border-radius: 5px;
  border: 1px solid #dbdbdb;
}

.header-mb #menu-container .panel-body-mb .menu-list li.toggle {
  font-size: 16px;
  margin: 0 15px;
  padding: 15px 0;
  text-transform: uppercase;
  border-bottom: 1px solid #dbdcd2;
}

.header-mb #menu-container .panel-body-mb .menu-list li.toggle .menu-link {
  color: #000;
}

.header-mb #menu-container .panel-body-mb .menu-list li.toggle.accordion-toggle {
  cursor: pointer;
  font-size: 16px;
  position: relative;
  letter-spacing: 1px;
}

.header-mb #menu-container .panel-body-mb .menu-list li.toggle.accordion-toggle.active-tab {
  background: white;
  -webkit-transition: all 0.3s ease;
  transition: all 0.3s ease;
}

.header-mb #menu-container .panel-body-mb .menu-list li.toggle.accordion-toggle a:before,
.header-mb #menu-container .panel-body-mb .menu-list li.toggle.accordion-toggle a:after {
  content: '';
  display: block;
  position: absolute;
  top: 50%;
  right: 10px;
  width: 15px;
  height: 2px;
  margin-top: -1px;
  background-color: #5a5858;
  -webkit-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.header-mb #menu-container .panel-body-mb .menu-list li.toggle.accordion-toggle a:before {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  opacity: 1;
  z-index: 2;
}

.header-mb #menu-container .panel-body-mb .menu-list li.toggle.accordion-toggle a.active:before {
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  background: #5a5858 !important;
}

.header-mb #menu-container .panel-body-mb .menu-list li.toggle.accordion-toggle a.active:after {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  background: #5a5858 !important;
  opacity: 0;
}

.header-mb #menu-container .panel-body-mb .menu-list li.menu-active-mb .menu-link {
  color: #14B8A6;
}

.header-mb #menu-container .panel-body-mb .menu-list .menu-submenu {
  margin: 0 40px;
}

.header-mb #menu-container .panel-body-mb .menu-list .menu-submenu.accordion-content {
  display: none;
}

.header-mb #menu-container .panel-body-mb .menu-list .menu-submenu li {
  padding: 10px;
  border-bottom: 1px solid #dbdcd2;
}

.header-mb #menu-container .panel-body-mb .menu-list .menu-submenu li .head {
  color: #000;
}

.footer__upper {
  padding: 30px 0;
  background-color: #0F223B;
  color: #fff;
}

.footer__upper .ft-upper__title {
  font-size: 19px;
  margin-bottom: 20px;
  line-height: 1.5;
}

.footer__upper .ft-upper__list-subject {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 20px;
}

.footer__upper .ft-upper__list-subject li {
  position: relative;
}

.footer__upper .ft-upper__list-subject li .title {
  color: #fff;
  text-transform: uppercase;
}

/*** Footer Start ***/
.footer .footer-item .btn-link {
  line-height: 35px;
  color: rgba(255, 255, 255, .5);
  transition: 0.5s;
}

.footer .footer-item .btn-link:hover {
  color: var(--bs-secondary) !important;
}

.footer .footer-item p.mb-4 {
  line-height: 35px;
}

/*** Footer End ***/

.text-through {
  text-decoration: line-through;
}

.btn-outline-secondary {
  color: #ffb524;
  border-color: #ffb524;
}

.me-2 {
  margin-right: .5rem !important;
}

.mb-3 {
  margin-bottom: 1rem !important;
}

p {
  margin-top: 0;
  margin-bottom: 1rem;
}

.btn-square,
.btn-sm-square,
.btn-md-square,
.btn-lg-square {
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: normal;
}

.btn-md-square {
  width: 44px;
  height: 44px;
}

.back-to-top {
  position: fixed;
  right: 30px;
  bottom: 30px;
  display: flex;
  width: 45px;
  height: 45px;
  align-items: center;
  justify-content: center;
  transition: 0.5s;
  z-index: 99;
}

/*** Floating Contact Buttons Start ***/
.floating-contact-buttons {
  position: fixed !important;
  right: 30px;
  bottom: 100px;
  z-index: 99999 !important;
  display: flex !important;
  flex-direction: column;
  gap: 15px;
  visibility: visible !important;
  opacity: 1 !important;
}

.floating-btn {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  color: white;
  font-size: 24px;
  text-decoration: none;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  transition: all 0.3s ease;
  animation: pulse 2s infinite;
}

.floating-btn:hover {
  transform: scale(1.1);
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.4);
}

.floating-btn .floating-label {
  position: absolute;
  right: 70px;
  background: rgba(0, 0, 0, 0.8);
  color: white;
  padding: 8px 15px;
  border-radius: 25px;
  white-space: nowrap;
  font-size: 14px;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
  pointer-events: none;
}

.floating-btn:hover .floating-label {
  opacity: 1;
  visibility: visible;
  right: 75px;
}

.zalo-btn {
  border: 2px solid #0068FF;
  background-color: #fff;
}

.zalo-btn:hover {
  opacity: 0.5;
}

.zalo-icon {
  width: 32px;
  height: 32px;
  display: block;
}

.phone-btn {
  background: linear-gradient(135deg, #28a745 0%, #20c997 100%);
}

.phone-btn:hover {
  background: linear-gradient(135deg, #218838 0%, #1aa179 100%);
}

@keyframes pulse {
  0% {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  }

  50% {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3), 0 0 0 10px rgba(0, 104, 255, 0.1);
  }

  100% {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
  }
}

@media (max-width: 768px) {
  .floating-contact-buttons {
    right: 15px !important;
    bottom: 90px !important;
    z-index: 99999 !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: fixed !important;
  }

  .floating-btn {
    width: 50px;
    height: 50px;
    font-size: 20px;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: relative !important;
  }

  .floating-btn .floating-label {
    display: none;
  }
}

@media (max-width: 414px) {
  .floating-contact-buttons {
    right: 10px !important;
    bottom: 80px !important;
    z-index: 99999 !important;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
    position: fixed !important;
  }

  .floating-btn {
    width: 45px;
    height: 45px;
    font-size: 18px;
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
}

/*** Floating Contact Buttons End ***/

/* .footer__upper .ft-upper__list-subject li:not(:last-child)::after {
  position: absolute;
  content: '';
  top: 0;
  right: -20px;
  width: 2px;
  height: 22px;
  background-color: #fff;
} */

@media (max-width: 414px) {
  .footer__upper .ft-upper__list-subject {
    display: none;
  }
}

.footer__upper .ft-upper__content .title {
  text-transform: uppercase;
  margin-bottom: 20px;
  font-size: 14px;
}

.footer__upper .ft-upper__content p {
  font-weight: normal;
  font-size: 13px;
  line-height: 1.5;
  margin-bottom: 5px;
}

.footer__upper .ft-upper__content .list-social {
  margin-top: 30px;
  margin-bottom: 25px;
}

.footer__upper .ft-upper__content .list-social .image {
  height: 50px;
}

.footer__upper .ft-upper__content .list-social .image img {
  display: inline-block;
  height: 50px;
  -o-object-fit: cover;
  object-fit: cover;
}

.footer__upper .ft-upper__content .ft-menu__title a {
  color: #fff;
  font-size: 13px;
}

.footer__lower {
  background-color: #011024;
  padding: 15px 0;
  text-align: center;
}

.footer__lower p {
  color: #fff;
  line-height: 1.55;
  font-size: 14px;
  font-weight: normal;
}

@font-face {
  font-family: 'icomoon';
  src: url("fonts/icomoon/icomoonbd43.eot?cqvfhu");
  src: url("fonts/icomoon/icomoonbd43.eot?cqvfhu#iefix") format("embedded-opentype"), url("fonts/icomoon/icomoonbd43.ttf?cqvfhu") format("truetype"), url("fonts/icomoon/icomoonbd43.woff?cqvfhu") format("woff"), url("fonts/icomoon/icomoonbd43.svg?cqvfhu#icomoon") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: block;
}

[class^="icon-"],
[class*=" icon-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-word:before {
  content: "\e900";
}

.com-item-common.item-common-1 .info {
  padding: 10px;
  background-color: #f5f5f5;
}

.com-item-common.item-common-1 .info .title {
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  margin-bottom: 10px;
  font-weight: 600;
}

.com-item-common.item-common-1 .info .box-tool {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.com-item-common.item-common-1 .info .box-tool__left .info-child svg {
  width: 16px;
  margin-right: 5px;
}

.com-item-common.item-common-1 .info .box-tool__right .btn {
  font-size: 13px;
  padding: 5px 10px;
  border-radius: 19px;
}

.com-item-common:hover {
  -webkit-box-shadow: 2px 2px 5px 2px #ccc;
  box-shadow: 2px 2px 5px 2px #ccc;
}

.com-banner {
  margin-bottom: 50px;
}

.com-feedback {
  margin-bottom: 50px;
}

.com-feedback .owl-carousel {
  position: relative;
}

.com-feedback .owl-carousel .item {
  padding: 20px;
  background-color: #f5f5f5;
  border-radius: 5px;
}

.com-feedback .owl-carousel .item .thumb {
  margin-bottom: 10px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.com-feedback .owl-carousel .item .thumb img {
  display: block;
  -o-object-fit: cover;
  object-fit: cover;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  margin-right: 20px;
}

.com-feedback .owl-carousel .item .thumb .name {
  color: #14B8A6;
  text-transform: uppercase;
  font-weight: 600;
}

.com-feedback .owl-carousel .item .desc p {
  font-size: 14px;
  line-height: 1.5;
  font-weight: normal;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.com-feedback .owl-carousel .owl-nav {
  display: block !important;
}

.com-feedback .owl-carousel .owl-nav button {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  background: #fff;
  border-radius: 50%;
  -webkit-box-shadow: 1px 1px 5px 1px #ccc;
  box-shadow: 1px 1px 5px 1px #ccc;
}

.com-feedback .owl-carousel .owl-nav button span {
  font-size: 27px;
}

.com-feedback .owl-carousel .owl-nav button.owl-prev {
  /* left: -30px; */
  left: 0;
}

@media (max-width: 414px) {
  .com-feedback .owl-carousel .owl-nav button.owl-prev {
    left: -10px;
  }
}

.com-feedback .owl-carousel .owl-nav button.owl-next {
  /* right: -30px; */
  right: -0;
}

@media (max-width: 414px) {
  .com-feedback .owl-carousel .owl-nav button.owl-next {
    right: -10px;
  }
}

.com-partner {
  background-color: #f5f5f5;
  padding: 35px 0 75px 0;
  margin-bottom: 48px;
}

.com-partner .item {
  padding: 20px;
  background-color: #fff;
}

.com-partner .item .image {
  height: 128.33px;
}

.com-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 15px;
  background-color: #fff;
}

.com-item__icon {
  margin-right: 15px;
}

.com-item__icon svg {
  font-size: 50px;
  color: #c8c8c8;
}

@media (max-width: 414px) {
  .com-item__icon {
    display: none;
  }
}

.com-item__content {
  width: 100%;
}

.com-item__content .title {
  line-height: 1.5;
  font-weight: 500;
  /* margin-bottom: 5px; */
  display: block;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 14px;
  /* height: 42px; */
}

.com-item__content-left {
  display: flex;
  align-items: center;
}

.com-item__content-left-icon {
  height: 36px;
  margin-right: 8px;
}

.com-item__content-left-icon img {
  height: 100%;
}

.com-item__content .toolbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.com-item__content .toolbox__left {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.com-item__content .toolbox__left .tool svg {
  margin-right: 2px;
  font-size: 14px;
}

.com-item__content .toolbox__left .tool span {
  font-size: 14px;
}

.com-item__content .toolbox__left .tool:not(:last-child) {
  margin-right: 15px;
}

.com-item__content .toolbox__right {
  text-align: right;
  margin-left: 10px;
}

.com-item__content .toolbox__right .btn {
  font-size: 12px;
  padding: 4px 12px;
  width: 110px;
}

.com-item__content .toolbox__right .btn svg {
  margin-right: 5px;
}

.com-item__content .toolbox__right .btn:not(:first-child) {
  margin: 0 0 0 10px;
}

@media (max-width: 414px) {
  .com-item__content .toolbox__right .btn:not(:first-child) {
    margin: 5px 0 0 0;
  }
}

.com-item__content .box-preview {
  margin-top: 15px;
  border: 1px solid #ccc;
  height: 515px;
  background-color: #f2f2f2;
}

.com-item:not(:last-child) {
  border-bottom: 1px solid #ccc;
}

.com-item.com-item-home {
  padding: 15px 0;
}

.com-item.com-item-home:first-child {
  padding-top: 0;
}

.com-item.com-item-home:last-child {
  padding-bottom: 0;
}

.com-intro {
  margin-bottom: 20px;
}

.com-intro__header .heading {
  display: block;
  font-weight: 500;
  background-color: #f2f2f2;
  padding: 7.5px 20px;
}

.com-intro__body .intro-upper .com-item__icon svg {
  font-size: 75px;
}

.com-intro__body .intro-upper .com-item__content .toolbox {
  margin-bottom: 5px;
}

.com-intro__body .intro-upper .com-item__content .toolbox__right span {
  font-size: 14px;
  font-weight: 500;
}

@media (max-width: 414px) {
  .com-intro__body .intro-upper .com-item__content .toolbox__right {
    text-align: unset;
  }
}

@media (max-width: 414px) {
  .com-intro__body .intro-upper .com-item__content .toolbox {
    display: unset;
  }
}

.com-intro__body .intro-upper .com-item__content .box-button .btn {
  font-size: 12px;
}

.com-intro__body .intro-lower {
  background-color: #fff;
  padding: 15px;
  border-top: 1px solid #ccc;
}

.com-intro__body .intro-lower .title {
  margin-bottom: 5px;
  font-weight: 500;
}

.com-intro__body .intro-lower .desc p {
  font-weight: normal;
  line-height: 1.25;
  font-size: 14px;
  text-align: justify;
}

.accordions {
  margin-bottom: 20px;
}

.accordions .sec-heading .heading a {
  display: block;
  text-transform: uppercase;
  padding: 7.5px 20px;
  background-color: #EA5209;
  color: #fff;
  margin-bottom: 10px;
  border-radius: 5px;
}

.accordions .sec-heading .heading a:hover {
  background-color: #ff5300;
}

.accordion-item {
  background-color: #f2f2f2;
  border: 1px solid #ccc;
  border-radius: 5px;
  margin-bottom: 5px;
}

.accordion-item .accordion-title {
  cursor: pointer;
  padding: 12.5px 15px 12.5px 20px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  border-radius: 5px 5px 0 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.accordion-item .accordion-title h2,
.accordion-item .accordion-title a {
  font-size: 15px;
  font-family: "Roboto";
  font-weight: 500;
  color: #14B8A6;
  text-transform: uppercase;
}

.accordion-item .accordion-title svg {
  font-size: 15px;
  -webkit-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.2s;
  transition: 0.2s;
  color: #14B8A6;
}

.accordion-item .accordion-title svg.chevron-top {
  -webkit-transform: rotate(-180deg);
  transform: rotate(-180deg);
  -webkit-transition: 0.2s;
  transition: 0.2s;
}

.accordion-item .accordion-title.active-title {
  background-color: #14B8A6;
  color: #fff;
}

.accordion-item .accordion-title.active-title h2,
.accordion-item .accordion-title.active-title a,
.accordion-item .accordion-title.active-title svg {
  color: #fff;
}

.accordion-item .accordion-content {
  display: none;
  background-color: #f9f9f9;
  border-radius: 0 0 5px 5px;
}

.accordion-item .accordion-content .item__title {
  display: block;
  padding: 7.5px 20px;
  font-weight: 500;
}

.accordion-item .accordion-content .item:hover {
  background-color: #f0f0f0;
}

.accordion-item .accordion-content .item:not(:last-child) {
  border-bottom: 1px solid #ccc;
}

.com-pagination {
  padding: 15px;
  margin-bottom: 20px;
  background-color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

.aside-common {
  border-radius: 5px 5px 0 0;
  -webkit-box-shadow: 2px 2px 5px 2px #ccc;
  box-shadow: 2px 2px 5px 2px #ccc;
}

.aside-common__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  background-color: #14B8A6;
  border-radius: 5px 5px 0 0;
  padding: 7.5px 20px;
}

.aside-common__header .heading {
  color: #fff;
  text-transform: uppercase;
  font-weight: 500;
}

.aside-common__header svg {
  color: #fff;
  font-size: 20px;
}

.aside-common__body {
  background-color: #fff;
}

.aside-common__body .item__title {
  display: block;
  padding: 7.5px 20px;
  font-weight: 500;
}

.aside-common__body .item:hover {
  background-color: #f2f2f2;
}

.aside-common__body .item:not(:last-child) {
  border-bottom: 1px solid #ccc;
}

.aside-common__body .item.item-2 {
  padding: 7.5px 20px;
}

.aside-common__body .item.item-2 .item__title {
  font-size: 14px;
  padding: 0;
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.aside-common__body .item.item-2 .toolbox {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.aside-common__body .item.item-2 .toolbox .tool svg {
  font-size: 14px;
  margin-right: 5px;
}

.aside-common__body .item.item-2 .toolbox .tool span {
  font-size: 14px;
}

.aside-left__subject .item {
  margin-bottom: 3px;
}

.aside-left__subject .item__title {
  display: block;
  padding: 7.5px 20px;
  color: #14B8A6;
  text-transform: uppercase;
  border: 1px solid #ccc;
  border-radius: 5px;
  font-weight: 500;
  font-size: 15px;
  background-color: #f2f2f2;
}

.aside-left__subject .item__title:hover {
  background-color: #fff;
}

.inner-page-detail-content .sec-head .heading {
  padding: 7.5px 20px;
  background-color: #f2f2f2;
  text-transform: uppercase;
  font-weight: 500;
}

.inner-page-detail-content .nav {
  background-color: #f2f2f2;
}

.inner-page-detail-content .nav .nav-item .nav-link {
  padding: 7.5px;
  font-size: 15px;
}

.inner-page-detail-content .nav .nav-item .nav-link.active {
  border-color: #fff;
}

.modal-login {
  text-align: center;
}

.modal-login .modal-body {
  padding: 75px 20px 200px 20px;
}

.modal-login .modal-body .btn {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  border-radius: 23px;
  margin-bottom: 50px;
}

.modal-login .modal-body img {
  margin-right: 10px;
}

.modal-login .text {
  font-weight: normal;
}

.modal-info .modal-body .title {
  font-size: 24px;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 25px;
}

.modal-info .modal-body .box-button {
  margin: 50px auto 25px auto;
}

.modal-info .modal-body .box-button .btn {
  width: 100%;
}

.home-top {
  margin-bottom: 50px;
}

.home-top.sidebar-menu {
  margin-bottom: 8px;
}

.home-top-menu__title .title {
  display: block;
  text-transform: uppercase;
  padding: 7.5px 20px;
  background-color: #EA5209;
  color: #fff;
}

.home-top-menu__title .title:hover {
  background-color: #ff5300;
}

.home-top-menu__title svg {
  margin-left: 10px;
}

.home-top-menu__content .menu-level-1 {
  position: relative;
}

a.menu-title {
  color: #fff;
}

.home-top-menu__content .menu-level-1 .menu-title a {
  display: block;
  padding: 7.5px 20px;
  text-transform: uppercase;
  background-color: #e9e9e9;
  color: #14B8A6;
  font-weight: 500;
  font-size: 15px;
}

.home-top-menu__content .menu-level-1 .menu-level-2 {
  position: absolute;
  left: 100%;
  top: 0;
  display: none;
  z-index: 2;
  min-width: 100%;
  -webkit-box-shadow: 2px 2px 5px 0px #ccc;
  box-shadow: 2px 2px 5px 0px #ccc;
}

.home-top-menu__content .menu-level-1 .menu-level-2 .menu-title-child a {
  display: block;
  padding: 7.5px 20px;
  text-transform: uppercase;
  background-color: #f5f5f5;
  color: #14B8A6;
  font-weight: 500;
  font-size: 15px;
}

.home-top-menu__content .menu-level-1 .menu-level-2 .menu-title-child a:hover {
  color: #fff;
  background-color: #189ef7;
}

.home-top-menu__content .menu-level-1 .menu-level-2 .menu-title-child:not(:last-child) {
  border-bottom: 1px solid #ccc;
}

.home-top-menu__content .menu-level-1::after {
  position: absolute;
  content: '';
  top: 9px;
  right: 0;
  width: 0;
  height: 0;
  border-top: 10px solid transparent;
  border-right: 15px solid #f5f5f5;
  border-bottom: 10px solid transparent;
  opacity: 0;
}

.home-top-menu__content .menu-level-1:not(:last-child) {
  border-bottom: 1px solid #ccc;
}

.home-top-menu__content .menu-level-1:hover .menu-title a {
  background-color: #14B8A6;
  color: #fff;
}

.home-top-menu__content .menu-level-1:hover .menu-level-2 {
  display: block;
}

.home-top-menu__content .menu-level-1:hover::after {
  opacity: 1;
}

.home-top-menu__content .menu-level-1:first-child .menu-title a {
  background-color: #EA5209;
  color: #fff;
}

.home-top-menu__content .menu-level-1:first-child:hover .menu-title a {
  background-color: #ff5300;
}

.home-top-menu__content .menu-level-1:first-child::after {
  display: none;
}

@media (max-width: 414px) {
  .home-top-menu__content {
    margin-bottom: 15px;
  }
}

.home-top-slider .owl-carousel {
  position: relative;
}

.home-top-slider .owl-carousel .owl-nav {
  margin-top: 0;
}

.home-top-slider .owl-carousel .owl-nav button {
  position: absolute;
  width: 40px;
  height: 40px;
  background: #f2f2f2c7;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.home-top-slider .owl-carousel .owl-nav button span {
  font-size: 27px;
}

.home-top-slider .owl-carousel .owl-nav button.owl-prev {
  /* left: 50px; */
  left: 0;
}

@media (max-width: 414px) {
  .home-top-slider .owl-carousel .owl-nav button.owl-prev {
    left: 10px;
  }
}

.home-top-slider .owl-carousel .owl-nav button.owl-next {
  /* right: 50px; */
  right: 0;
}

@media (max-width: 414px) {
  .home-top-slider .owl-carousel .owl-nav button.owl-next {
    right: 10px;
  }
}

.home-top-slider .owl-carousel .owl-dots {
  position: absolute;
  bottom: 10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.home-document {
  margin-bottom: 50px;
}

.home-collection {
  margin-bottom: 50px;
}

Home Carousel Banner
.home-carousel-banner {
  margin-bottom: 30px;
}

.home-carousel-banner .owl-carousel {
  position: relative;
}

.home-carousel-banner .owl-carousel .owl-nav {
  margin-top: 0;
}

.home-carousel-banner .owl-carousel .owl-nav button {
  position: absolute;
  width: 40px;
  height: 40px;
  background: rgba(242, 242, 242, 0.8);
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #333;
  font-size: 18px;
  transition: all 0.3s ease;
  z-index: 10;
}

.home-carousel-banner .owl-carousel .owl-nav button:hover {
  background: rgba(20, 184, 166, 0.9);
  color: #fff;
}

.home-carousel-banner .owl-carousel .owl-nav button.owl-prev {
  left: 15px;
}

.home-carousel-banner .owl-carousel .owl-nav button.owl-next {
  right: 15px;
}

.home-carousel-banner .owl-carousel .owl-dots {
  position: absolute;
  bottom: 15px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
}

.home-carousel-banner .owl-carousel .owl-dots .owl-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.5);
  margin: 0 5px;
  transition: all 0.3s ease;
}

.home-carousel-banner .owl-carousel .owl-dots .owl-dot.active {
  background: #14B8A6;
  width: 30px;
  border-radius: 6px;
}

.home-carousel-banner .owl-carousel .item {
  position: relative;
}

.home-carousel-banner .owl-carousel .item img {
  width: 100%;
  height: auto;
  display: block;
  border-radius: 8px;
  box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}
.owl-theme .owl-dots .owl-dot span {
  display: none;
}

@media (max-width: 768px) {
  .home-carousel-banner .owl-carousel .owl-nav button {
    width: 35px;
    height: 35px;
    font-size: 14px;
  }

  .home-carousel-banner .owl-carousel .owl-nav button.owl-prev {
    left: 10px;
  }

  .home-carousel-banner .owl-carousel .owl-nav button.owl-next {
    right: 10px;
  }
}

.home-subject {
  margin-bottom: 50px;
}

.home-subject .sec-head {
  background-color: #f5f5f5;
  margin-bottom: 20px;
}

.home-subject .sec-head .nav {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: left;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.home-subject .sec-head .nav .nav-item .nav-link {
  text-transform: uppercase;
  border-radius: 0;
}

.home-subject .sec-head .nav .nav-item .nav-link:hover {
  border-color: transparent;
}

.home-subject .sec-head .nav .nav-item .nav-link.active {
  background-color: #14B8A6;
  color: #fff;
}

@media (max-width: 414px) {
  .home-subject .sec-head .nav {
    display: unset;
  }
}

@media (max-width: 414px) {
  .home-subject .sec-body .tab-content .tab-pane .tab-common .row>div {
    margin-bottom: 15px;
  }
}

.home-subject .sec-body .tab-content .tab-pane .tab-common .tab-common-content {
  border: 1px solid #ccc;
  padding: 20px;
}

.home-subject .sec-body .tab-content .tab-pane .tab-common .tab-common-content__header .heading {
  text-transform: uppercase;
  color: #14B8A6;
  font-weight: 600;
  display: inline-block;
  padding-bottom: 5px;
  border-bottom: 2px solid #14B8A6;
}

/* .home-subject .sec-body .tab-content .tab-pane .tab-common .tab-common-content__body {
  margin-bottom: 20px;
} */

.home-subject .sec-body .tab-content .tab-pane .tab-common .tab-common-content__footer .pagination {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

@media (max-width: 414px) {
  .home-subject .sec-body .tab-content .tab-pane .tab-common .tab-common-content {
    padding: 15px;
  }
}

.news-hot__header {
  margin-bottom: 20px;
}

.news-hot__header .heading {
  font-size: 30px;
  font-weight: 500;
  text-transform: uppercase;
}

.news-hot__body {
  margin-bottom: 30px;
}

.news-hot__body .news-item {
  margin-bottom: 15px;
}

.news-hot__body .news-item .info .time {
  margin-bottom: 5px;
}

.news-hot__body .news-item .info .time svg {
  color: #707070;
  margin-right: 7.5px;
}

.news-hot__body .news-item .info .time span {
  font-size: 14px;
  color: #707070;
}

.news-hot__body .news-item .info .title {
  display: block;
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: justify;
}

.news-hot__body .news-item .info .desc {
  display: block;
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: justify;
}

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

@media (max-width: 414px) {
  .news-hot__footer {
    margin-bottom: 30px;
  }
}

.news-related {
  margin-bottom: 50px;
}

.news-related .sec-header {
  margin-bottom: 25px;
}

.news-related .sec-header .heading {
  font-size: 30px;
  text-transform: uppercase;
  font-weight: 600;
}

@media (max-width: 414px) {
  .news-related .sec-header .heading {
    font-size: 25px;
  }
}

.news-related .related-content .item {
  background-color: #f5f5f5;
}

.news-related .related-content .item .info {
  padding: 10px 15px;
}

.news-related .related-content .item .info .time {
  margin-bottom: 5px;
}

.news-related .related-content .item .info .time svg {
  color: #707070;
  margin-right: 7.5px;
}

.news-related .related-content .item .info .time span {
  font-size: 14px;
  color: #707070;
}

.news-related .related-content .item .info .title {
  margin-bottom: 5px;
}

.news-related .related-content .item .info .title a {
  font-weight: 500;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: justify;
}

.news-related .related-content .item .info .sub-title a {
  font-size: 14px;
  font-weight: 400;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: justify;
}

.news-detail-content .title {
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 5px;
  color: #14B8A6;
}

.news-detail-content .time {
  margin-bottom: 50px;
}

.news-detail-content .time svg {
  color: #707070;
  margin-right: 7.5px;
}

.news-detail-content .time span {
  font-size: 14px;
  color: #707070;
}

.news-detail-content p {
  text-align: justify;
  line-height: 1.25;
  font-weight: normal;
  margin-bottom: 20px;
}

.news-detail-content img {
  display: block;
  -o-object-fit: scale-down;
  object-fit: scale-down;
  margin: 0 auto 20px auto;
  width: 100%;
}

.aside-news {
  background-color: #e9e9e9;
  border-radius: 5px;
  padding: 15px 15px 25px 15px;
}

.aside-news .aside-header .heading {
  font-size: 25px;
  text-transform: uppercase;
  font-weight: 500;
  padding-bottom: 7.5px;
  border-bottom: 1px solid #333;
  margin-bottom: 15px;
}

.aside-news .aside-item-common .info .desc {
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: justify;
}

.aside-news .aside-item-common .time svg {
  color: #707070;
  margin-right: 7.5px;
}

.aside-news .aside-item-common .time span {
  font-size: 14px;
  color: #707070;
}

.aside-news .aside-item-common:not(:last-child) {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #ccc;
}

.aside-news__new {
  margin-bottom: 25px;
}

.aside-news__new .aside-body .title {
  font-weight: 500;
  margin-bottom: 5px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-align: justify;
}

.aside-news__new .aside-body .news-new-list .item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.aside-news__new .aside-body .news-new-list .item__title {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 15px;
}

.aside-news__new .aside-body .news-new-list .item svg {
  margin-right: 7.5px;
  color: #14B8A6;
}

.aside-news__new .aside-body .news-new-list .item:not(:last-child) {
  margin-bottom: 5px;
}

.aside-news__promotion {
  margin-bottom: 25px;
}

.aside-news__admissions .aside-body .news-admissions-item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.aside-news__admissions .aside-body .news-admissions-item .number {
  width: 38px;
  height: 38px;
  border: 1px solid #666;
  color: #333;
  font-weight: 500;
  border-radius: 5px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 7.5px;
  background-color: #fff;
}

.aside-news__admissions .aside-body .news-admissions-item .info {
  width: calc(100% - 50px);
}

.aside-news__admissions .aside-body .news-admissions-item .info__item {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  font-size: 15px;
  font-weight: 500;
  text-align: justify;
}

.aside-news__admissions .aside-body .news-admissions-item:not(:last-child) {
  margin-bottom: 10px;
}

.guider-content .guider-item {
  margin-bottom: 50px;
}

.guider-content .guider-item .sec-header {
  margin-bottom: 15px;
}

.guider-content .guider-item .sec-header .heading {
  font-size: 24px;
  font-weight: 500;
}

.guider-content .guider-item .sec-body p {
  font-weight: normal;
  line-height: 1.25;
}

.filed-money-page p {
  font-weight: normal;
}

.filed-money-page .filed-money-content .box-gray {
  margin-bottom: 30px;
  text-align: center;
  padding: 20px;
  background-color: #f2f2f2;
}

.filed-money-page .filed-money-content .box-gray p {
  line-height: 1.5;
}

.filed-money-page .filed-money-content .box-request {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-bottom: 30px;
}

@media (max-width: 414px) {
  .filed-money-page .filed-money-content .box-request .text {
    text-align: center;
  }
}

.filed-money-page .filed-money-content .box-request .form-request {
  margin: 0 30px;
}

.filed-money-page .filed-money-content .box-request .form-request .form-group {
  margin-bottom: 0;
}

.filed-money-page .filed-money-content .box-request .form-request .form-group .form-control {
  width: 250px;
}

@media (max-width: 414px) {
  .filed-money-page .filed-money-content .box-request .form-request .form-group .form-control {
    width: 100%;
  }
}

@media (max-width: 414px) {
  .filed-money-page .filed-money-content .box-request .form-request {
    margin: 10px 0;
  }
}

.filed-money-page .filed-money-content .box-request .box-button .btn {
  padding: 6px 50px;
  border-radius: 5px;
}

@media (max-width: 414px) {
  .filed-money-page .filed-money-content .box-request .box-button .btn {
    width: 100%;
  }
}

@media (max-width: 414px) {
  .filed-money-page .filed-money-content .box-request {
    display: unset;
  }
}

.filed-money-page .filed-money-content .box-info {
  margin-bottom: 30px;
}

.filed-money-page .filed-money-content .box-info .sec-header {
  padding: 5px 20px;
  background-color: #f2f2f2;
  display: inline-block;
}

.filed-money-page .filed-money-content .box-info .sec-header .heading {
  display: inline-block;
}

.filed-money-page .filed-money-content .box-info .sec-header svg {
  font-size: 13px;
  margin-left: 20px;
}

.filed-money-page .filed-money-content .box-info .sec-body {
  padding: 20px;
  border: 1px solid #f2f2f2;
}

.filed-money-page .filed-money-content .box-info .sec-body .title {
  margin-bottom: 15px;
}

.filed-money-page .filed-money-content .box-info .sec-body .text {
  line-height: 2;
}

@media (max-width: 414px) {
  .filed-money-page .filed-money-content .box-info {
    margin-top: 30px;
  }
}

.filed-money-page .filed-money-content .box-note {
  margin-bottom: 50px;
}

.filed-money-page .filed-money-content .box-note p {
  line-height: 1.5;
}

.sec-update-info {
  padding: 25px 25px 10px 25px;
  background-color: #f2f2f2;
  border-radius: 5px;
  margin-bottom: 30px;
}

.sec-update-info .title {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 20px;
}

@media (max-width: 414px) {
  .sec-update-info .title {
    text-align: center;
  }
}

.sec-update-info .form-update .form-group {
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  margin-right: 0;
}

.sec-update-info .form-update .form-group .label {
  margin-bottom: 0;
}

.sec-update-info .form-update .form-group .box-button {
  padding: 0;
}

.sec-update-info .form-update .form-group .box-button .btn {
  padding: 5px 30px;
  border-radius: 5px;
}

@media (max-width: 414px) {
  .sec-update-info .form-update .form-group .box-button .btn {
    width: 100%;
  }
}

@media (max-width: 414px) {
  .sec-update-info {
    padding: 25px 15px;
  }
}

.sec-history-download {
  padding: 20px 15px 20px 15px;
  background-color: #f2f2f2;
  border-radius: 5px;
}

.sec-history-download .heading {
  font-size: 25px;
  font-weight: 600;
  margin-bottom: 20px;
}

.sec-history-download .history-item__title {
  font-weight: 600;
  margin-bottom: 10px;
}

.sec-history-download .history-item__content {
  padding: 0 15px;
  background-color: #fff;
  border-radius: 5px;
}

.sec-history-download .history-item__content .item {
  position: relative;
  padding: 15px 0;
}

.sec-history-download .history-item__content .item__icon {
  position: absolute;
  top: 20px;
  left: 0;
}

.sec-history-download .history-item__content .item__icon span {
  font-size: 40px !important;
}

.sec-history-download .history-item__content .item__title {
  padding-left: 55px;
  margin-bottom: 10px;
}

.sec-history-download .history-item__content .item__title a {
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.sec-history-download .history-item__content .item__info {
  padding-left: 55px;
}

.sec-history-download .history-item__content .item__info * {
  display: inline-block;
  font-size: 14px;
  color: #666;
  margin-right: 25px;
  padding: 0;
}

.sec-history-download .history-item__content .item:not(:last-child) {
  border-bottom: 1px solid #ccc;
}

.sec-history-download .history-item:not(:last-child) {
  margin-bottom: 25px;
}

#users_transfer .method {
  padding: 0;
}

#users_transfer .method li {
  list-style: none;
  border: 1px solid #dedede;
  cursor: pointer;
  border-right: 0;
  padding: 0 0 15px 0;
  background: #fff;
  float: left;
}

#users_transfer .method li:last-child {
  border-right: 1px solid #dedede;
}

#users_transfer .method li a {
  height: 140px;
  display: block;
  color: #666;
  text-align: center;
  font-size: 13px;
  padding: 15px 15px 0 15px;
}

#users_transfer .method li.active {
  background: #fff6e7;
  position: relative;
}

#users_transfer .method li.active::before {
  border-left: 13px solid transparent;
  border-right: 13px solid transparent;
  border-top: 13px solid #b4b4b4;
  margin-left: -13px;
}

#users_transfer .method li.active::after {
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 12px solid #fff6e7;
  margin-left: -12px;
}

#users_transfer .method li.active::after,
#users_transfer .method li.active::before {
  content: "";
  display: block;
  height: 0;
  left: 50%;
  position: absolute;
  top: 100%;
  width: 0;
}

#users_transfer .transer_momo a {
  background: url("../../../404.html") no-repeat scroll 50% 100%;
  background-size: auto;
}

#users_transfer .transer_card a {
  background: url("images/payment/atm.png") no-repeat scroll 50% 100%;
}

#users_transfer .transer_cod a {
  background: url("images/payment/cod.png") no-repeat scroll 50% 100%;
}

#users_transfer .transer_bank a {
  background: url("images/payment/bank_transfer.png") no-repeat scroll 50% 100%;
  background-size: 70px;
}

#users_transfer .transfer_content {
  margin-top: 40px;
}

#users_transfer .choose_telco {
  list-style: none;
  padding: 0;
}

#users_transfer .choose_telco img {
  display: block;
  margin-bottom: 10px;
}

#users_transfer .choose_telco li {
  text-align: center;
  display: inline-block;
  padding: 0 15px;
}

#users_transfer .mobilecard_info {
  margin-top: 30px;
}

#users_transfer .note ul {
  margin-top: 30px;
  padding-left: 0;
  margin-left: 10px;
}

#users_transfer .note li {
  margin-bottom: 10px;
}

#users_transfer .bank img {
  border: 1px solid #dedede;
  cursor: pointer;
  margin: 0 2px 5px;
  width: 70px;
  max-width: none;
}

#users_page .mod_title {
  font-size: 24px;
  color: #00aeef;
  margin-bottom: 30px;
  margin-top: 0;
  font-weight: 500;
}

#users_page .form_label {
  font-weight: 500;
  text-align: right;
  line-height: 30px;
}

#users_page .update_btn {
  text-align: right;
}

#users_page .update_btn .update,
#users_page .updatebtn {
  background: #00aeef;
  color: #fff;
  padding: 7px 20px;
}

#users_page .update_btn .reset {
  background: #f3f3f3;
  border: 1px solid #eaeaea;
  padding: 7px 20px;
  margin-right: 15px;
}

#users_page .update_btn .reset:hover {
  background: #eaeaea;
}

#users_page .filter {
  margin-bottom: 20px;
}

#users_page .filter button {
  background: #00aeef;
  width: 100%;
  color: #fff;
  text-align: center;
}

#users_transfer .list-content .boxContent {
  width: 100%;
  background: #fff;
}

#users_transfer .list-content .boxContent .cardList {
  padding-left: 20px;
}

/*# sourceMappingURL=style.css.map */

.sidebar-contact {
  margin-bottom: 8px;
  background-color: #e9e9e9;
  padding: 8px 20px;
}

.sidebar-contact-header {
  text-align: center;
  color: #075a91;
  font-size: 18px;
  position: relative;
  margin-bottom: 8px;
}

.sidebar-contact-header:before {
  position: absolute;
  content: '';
  width: 80px;
  height: 1.5px;
  background-color: #075a91;
  left: 50%;
  transform: translateX(-50%);
  bottom: -0;
}

.sidebar-contact-body {
  display: flex;
  justify-content: center;
}

.sidebar-contact-item {}

.sidebar-contact-item span {
  color: #14B8A6;
  font-weight: 300;
}

.sidebar-contact-item-label {
  display: inline-block;
  min-width: 80px;
}

.sidebar-contact-link {
  color: #14B8A6;
  display: block;
  text-align: center;
}

.sidebar-contact-footer {
  text-align: center;
  color: #14B8A6;
}

.sidebar-ads {
  padding-bottom: 8px;
}

.sidebar-ads img {
  display: block;
  width: 100%;
}

.sidebar-left {
  position: sticky;
  position: -webkit-sticky;
  top: 0;
  z-index: 998;
}