@charset "UTF-8";
/* Mixins */
@media screen and (min-width: 1025px) {
  body .container {
    max-width: 1200px;
  }
}
.bg-blue {
  background: #00A1E4;
  color: #ffffff;
}

.h-bar .h-bar-content ul {
  margin: 0;
  padding: 0;
  list-style-type: none;
  height: 34px;
}
.h-bar .h-bar-content ul li {
  float: right;
  margin-right: 40px;
  line-height: 34px;
}
.h-bar .h-bar-content ul li a {
  font-size: 13px;
  color: #ffffff;
  text-decoration: none;
}
.h-bar .h-bar-content ul li a:focus {
  border: none;
}
.h-bar .h-bar-content ul li:first-child {
  margin-right: 0;
}
@media screen and (max-width: 414px) {
  .h-bar .h-bar-content ul {
    text-align: center;
  }
  .h-bar .h-bar-content ul li {
    margin-right: 5px;
    font-size: 10px;
    float: left;
    width: 48%;
  }
}

.loading {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: white;
  z-index: 6000;
}

.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px;
}

.lds-ellipsis div {
  position: absolute;
  top: 27px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #00A1E4;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}

.lds-ellipsis div:nth-child(1) {
  left: 6px;
  animation: lds-ellipsis1 0.6s infinite;
}

.lds-ellipsis div:nth-child(2) {
  left: 6px;
  animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(3) {
  left: 26px;
  animation: lds-ellipsis2 0.6s infinite;
}

.lds-ellipsis div:nth-child(4) {
  left: 45px;
  animation: lds-ellipsis3 0.6s infinite;
}

@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(19px, 0);
  }
}
.menu-wrapper {
  min-height: 65px;
  background-color: #fff;
}
.menu-wrapper .container .h-bar-sub-content nav {
  width: 100%;
  padding: 0;
}
.menu-wrapper .container .h-bar-sub-content nav .navbar-brand {
  width: 140px;
  height: auto;
  margin-right: 30px;
}
.menu-wrapper .container .h-bar-sub-content nav .navbar-nav {
  float: left;
}
.menu-wrapper .container .h-bar-sub-content nav .navbar-nav li {
  position: relative;
  /*padding: 22px 0 20px;*/
  border-bottom: 2px solid transparent;
  transition: all linear 0.5s;
}
.menu-wrapper .container .h-bar-sub-content nav .navbar-nav li::before {
  position: absolute;
  content: "";
  height: 17px;
  width: 1px;
  background-color: #f2f2f2;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.menu-wrapper .container .h-bar-sub-content nav .navbar-nav li:hover {
  border-bottom: 2px solid #00A1E4;
}
.menu-wrapper .container .h-bar-sub-content nav .navbar-nav li a {
  padding: 22px 80px 20px 30px;
  color: #333;
  font-size: 14px;
  display: block;
}
.menu-wrapper .container .h-bar-sub-content nav .navbar-nav li a:hover {
  color: #00A1E4;
}
@media screen and (max-width: 1024px) {
  .menu-wrapper .container .h-bar-sub-content nav .navbar-nav li a {
    padding: 0 30px 0 30px;
  }
}
.menu-wrapper .container .h-bar-sub-content nav .navbar-nav li ul {
  padding: 0;
  min-height: auto;
}
.menu-wrapper .container .h-bar-sub-content nav .navbar-nav li ul li {
  padding: 0;
}
.menu-wrapper .container .h-bar-sub-content nav .navbar-nav li ul li a {
  display: block;
  padding: 15px;
}
.menu-wrapper .container .h-bar-sub-content nav .navbar-nav .dropdown:hover .dropdown-menu {
  display: block;
}
 .navbar-nav .dropdown>a {
   cursor: pointer;
 }
@media screen and (min-width: 992px) {
  .menu-wrapper .container .h-bar-sub-content nav #navbarNav {
    display: block !important;
  }
}
.menu-wrapper .container .h-bar-sub-content nav .form-language {
  background-color: #e9e9e9;
  margin-top: -1px;
  height: 66px;
}
.menu-wrapper .container .h-bar-sub-content nav .form-language .bootstrap-select {
  width: auto;
}
.menu-wrapper .container .h-bar-sub-content nav .form-language .bootstrap-select button {
  background: transparent;
  border: 0;
  width: 35px;
  padding: 20px 0;
  margin: 0 15px;
  font-family: "Lato", sans-serif;
  font-weight: 600;
  color: #666;
  font-size: 14px;
}
.menu-wrapper .container .h-bar-sub-content nav .form-language .bootstrap-select button:hover {
  color: #00A1E4;
}
.menu-wrapper .container .h-bar-sub-content nav .form-language .language-option .dropdown-menu {
  min-width: 160px;
  min-height: 100%;
  max-height: 100%;
}
.menu-wrapper .container .h-bar-sub-content nav .form-language .language-option .dropdown-menu ul li a {
  font-weight: 600;
  color: #666;
  font-size: 14px;
}
.menu-wrapper .container .h-bar-sub-content nav .form-language .language-option .dropdown-menu ul li:hover {
  background-color: #00A1E4 !important;
}
.menu-wrapper .container .h-bar-sub-content nav .form-language .language-option .dropdown-menu ul li a:hover {
  background-color: #00A1E4 !important;
  color: #fff;
}
.menu-wrapper .container .h-bar-sub-content nav .form-language .language-option .dropdown-menu ul li.active {
  background-color: #00A1E4;
}
.menu-wrapper .container .h-bar-sub-content nav .form-language .language-option .dropdown-menu ul li.active a {
  background-color: #00A1E4;
}
.menu-wrapper .container .h-bar-sub-content nav .form-language .lable-search {
  color: #666;
  font-size: 14px;
}
.menu-wrapper .container .h-bar-sub-content nav .form-language .lable-search:hover {
  color: #00A1E4;
}
.menu-wrapper .container .h-bar-sub-content nav .form-language .lable-search button {
  border: 0;
  background: transparent;
  color: #666;
  padding-left: 10px;
  padding-top: 2px;
  cursor: pointer;
}
.menu-wrapper .container .h-bar-sub-content nav .form-language .lable-search button:hover {
  color: #00A1E4;
}
.menu-wrapper .container .h-bar-sub-content nav .search-form {
  z-index: 10;
  position: absolute;
  top: calc(100%);
  right: 0;
  background: #fff;
  white-space: nowrap;
  border: 2px solid #00A1E4;
  border-top: none;
  transition: ease all 0.5s;
  height: 0;
  overflow: hidden;
  width: 300px;
  border-bottom: 0;
}
@media screen and (max-width: 1400px) {
  .menu-wrapper .container .h-bar-sub-content nav .search-form {
    position: absolute;
    top: calc(100% - 1px);
  }
}
.menu-wrapper .container .h-bar-sub-content nav .search-form label {
  position: absolute;
  top: 20px;
  color: #e1e1e1;
  left: 15px;
  font-weight: 400;
  transition: ease all 0.3s;
  z-index: 1;
}
.menu-wrapper .container .h-bar-sub-content nav .search-form .border {
  position: absolute;
  bottom: 10px;
  left: 15px;
  background: #00A1E4;
  width: 0;
  z-index: 4;
  height: 2px;
  transition: ease all 0.3s;
}
.menu-wrapper .container .h-bar-sub-content nav .search-form .search-submit {
  position: absolute;
  top: 20px;
  background: none;
  right: 12px;
  border: none;
  color: #e1e1e1;
  z-index: 4;
  cursor: pointer;
}
.menu-wrapper .container .h-bar-sub-content nav .search-form input {
  border: none;
  border-bottom: 2px solid #e1e1e1;
  width: 100%;
  background: transparent;
  position: relative;
  z-index: 3;
  height: 40px;
  padding: 10px 0px 0;
}
.menu-wrapper .container .h-bar-sub-content nav .search-form input:not(:placeholder-shown) ~ label, .menu-wrapper .container .h-bar-sub-content nav .search-form input:focus ~ label {
  color: #00A1E4;
  font-size: 80%;
  top: 5px;
}
.menu-wrapper .container .h-bar-sub-content nav .search-form input:not(:placeholder-shown) ~ .border, .menu-wrapper .container .h-bar-sub-content nav .search-form input:focus ~ .border {
  width: calc(100% - 30px);
}
.menu-wrapper .container .h-bar-sub-content nav .search-form input:not(:placeholder-shown) ~ .search-submit, .menu-wrapper .container .h-bar-sub-content nav .search-form input:focus ~ .search-submit {
  color: #00A1E4;
}
.menu-wrapper .container .h-bar-sub-content nav .search-form.active {
  height: 71px;
  padding: 19px 15px;
  z-index: 10;
  transition: ease all 0.5s;
  border: 2px solid #00A1E4;
  border-top-color: #00A1E4;
  border-top-style: solid;
  border-top-width: 2px;
  border-top: 0;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .menu-wrapper .container .h-bar-sub-content nav .search-form.active {
    padding: 25px 15px;
  }
}

.content-wrapper {
  padding-top: 100px;
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  width: 100%;
}

@media screen and (max-width: 1168px) {
  .menu-wrapper .container .h-bar-sub-content nav .navbar-nav li a {
    padding: 22px 80px 20px 20px;
  }
}
@media screen and (max-width: 1118px) {
  .menu-wrapper .container .h-bar-sub-content nav .navbar-nav li a {
    padding: 22px 80px 20px 18px;
  }
}
@media screen and (min-width: 992px) {
  .menu-wrapper .container .h-bar-sub-content nav .navbar-nav li a {
    padding: 22px 62px 20px 10px;
  }
}
@media screen and (max-width: 533px) {
  .h-bar .h-bar-content ul li {
    margin-right: 5px;
    font-size: 10px;
    float: left;
    width: 48%;
  }
}
@font-face {
  font-family: "Lato-Thin";
  src: url("../fonts/Lato-Thin.eot?#iefix") format("embedded-opentype"), url("../fonts/Lato-Thin.woff") format("woff"), url("../fonts/Lato-Thin.ttf") format("truetype"), url("../fonts/Lato-Thin.svg#Lato-Thin") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Lato-Semibold";
  src: url("../fonts/Lato-Semibold.eot?#iefix") format("embedded-opentype"), url("../fonts/Lato-Semibold.woff") format("woff"), url("../fonts/Lato-Semibold.ttf") format("truetype"), url("../fonts/Lato-Semibold.svg#Lato-Semibold") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Lato-Black";
  src: url("../fonts/Lato-Black.eot?#iefix") format("embedded-opentype"), url("../fonts/Lato-Black.woff") format("woff"), url("../fonts/Lato-Black.ttf") format("truetype"), url("../fonts/Lato-Black.svg#Lato-Black") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Lato-Regular";
  src: url("../fonts/Lato-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/Lato-Regular.woff") format("woff"), url("../fonts/Lato-Regular.ttf") format("truetype"), url("../fonts/Lato-Regular.svg#Lato-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Lato-Medium";
  src: url("../fonts/Lato-Medium.eot?#iefix") format("embedded-opentype"), url("../fonts/Lato-Medium.woff") format("woff"), url("../fonts/Lato-Medium.ttf") format("truetype"), url("../fonts/Lato-Medium.svg#Lato-Medium") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "RobotoCondensed-Light";
  src: url("../fonts/RobotoCondensed-Light?#iefix") format("embedded-opentype"), url("../fonts/RobotoCondensed-Light.woff") format("woff"), url("../fonts/RobotoCondensed-Light.ttf") format("truetype"), url("../fonts/RobotoCondensed-Light.svg#RobotoCondensed-Light") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "RobotoCondensed-Regular";
  src: url("../fonts/RobotoCondensed-Regular?#iefix") format("embedded-opentype"), url("../fonts/RobotoCondensed-Regular.woff") format("woff"), url("../fonts/RobotoCondensed-Regular.ttf") format("truetype"), url("../fonts/RobotoCondensed-Regular.svg#RobotoCondensed-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Lato-Bold";
  src: url("../fonts/Lato-Bold?#iefix") format("embedded-opentype"), url("../fonts/Lato-Bold.woff") format("woff"), url("../fonts/Lato-Bold.ttf") format("truetype"), url("../fonts/Lato-Bold.svg#Lato-Bold") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Lato-Heavy";
  src: url("../fonts/Lato-Heavy?#iefix") format("embedded-opentype"), url("../fonts/Lato-Heavy.woff") format("woff"), url("../fonts/Lato-Heavy.ttf") format("truetype"), url("../fonts/Lato-Heavy.svg#Lato-Heavy") format("svg");
  font-weight: normal;
  font-style: normal;
}
.slider-wrapper {
  position: relative;
}
.slider-wrapper .swiper-container .swiper-wrapper .swiper-slide .h-swiper-text {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  text-align: center;
}
.slider-wrapper .swiper-container .swiper-wrapper .swiper-slide .h-swiper-text h1 {
  color: #fff;
  font-size: 75px;
}
.slider-wrapper .swiper-container .swiper-wrapper .swiper-slide .h-swiper-text h4 {
  color: #fff;
  font-size: 30px;
}
.slider-wrapper .swiper-container .swiper-wrapper .swiper-slide .h-swiper-text .description {
  color: #fff;
  font-size: 17px;
}
.slider-wrapper .swiper-container .swiper-pagination .swiper-pagination-bullet {
  background-color: #fff;
  opacity: 1;
  position: relative;
}
.slider-wrapper .swiper-container .swiper-pagination .swiper-pagination-bullet::before {
  position: absolute;
  content: "";
  width: 16px;
  height: 16px;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  transform: translate(-50%, -50%);
}
.slider-wrapper .swiper-container .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background-color: #00A1E4;
}
.slider-wrapper .swiper-container .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::before {
  border: 2px solid #00A1E4;
}

.about-wrapper {
  padding-top: 110px;
  background-color: #f6f6f6;
  padding-bottom: 40px;
}
.about-wrapper .container .info-bar:hover .content {
  color: #fff;
}
.about-wrapper .container .info-bar:hover .content::before {
  width: 100%;
  opacity: 1;
}
.about-wrapper .container .info-bar:hover .content .each-about:before {
  border-color: rgba(0, 161, 228, 0.7);
}
.about-wrapper .container .info-bar:hover .content .each-about .hl-active-text {
  color: #fff;
}
.about-wrapper .container .info-bar:hover .content .description span {
  color: #fff;
}
.about-wrapper .container .info-bar:hover .content .description span p {
  color: #fff;
}
.about-wrapper .container .info-bar:hover .i-text-2 h4 p {
  color: #fff;
}
.about-wrapper .container .info-bar:hover .i-text-2 h4 p strong {
  color: #fff;
}
.about-wrapper .container .info-bar:hover .i-text-2 .description span {
  color: #fff;
}
.about-wrapper .container .info-bar:hover .featured-images .mark-layer {
  opacity: 1;
  width: 100%;
}
.about-wrapper .container .info-bar:hover .mission-vision .each-about h4 p {
  color: #fff;
}
.about-wrapper .container .info-bar:hover .mission-vision .each-about h4 p strong {
  color: #fff;
}
.about-wrapper .container .info-bar:hover .mission-vision .each-about .description span p {
  color: #fff;
}
.about-wrapper .container .info-bar .content {
  position: relative;
}
.about-wrapper .container .info-bar .content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  opacity: 0;
  transition: all linear 0.3s;
  height: 100%;
  background-color: rgba(0, 161, 228, 0.5);
}
.about-wrapper .container .info-bar .featured-images {
  position: relative;
}
.about-wrapper .container .info-bar .featured-images .mark-layer {
  position: absolute;
  width: 0;
  height: 100%;
  opacity: 0;
  transition: all linear 0.3s;
  transition-delay: 0.3s;
  top: 0;
  left: 0;
  background-color: rgba(51, 51, 51, 0.5);
}
.about-wrapper .container .info-bar .order-2.bg-about-1 {
  background: url(../images/about-1.jpg);
  background-size: cover;
  z-index: 10;
}
.about-wrapper .container .info-bar .bg-about-2 {
  background: url(../images/about-2.jpg);
  background-size: cover;
}
.about-wrapper .container .info-bar .bg-about-3 {
  background: url(../images/about-3.jpg);
  background-size: cover;
}
.about-wrapper .container .info-bar .bg-about-4 {
  background: url(../images/about-4.jpg);
  background-size: cover;
  height: 250px;
}
.about-wrapper .container .info-bar .i-text-1 {
  z-index: 20;
}
.about-wrapper .container .info-bar .order-2 {
  background-color: #fff;
  position: relative;
  padding: 30px;
  min-height: 250px;
}
.about-wrapper .container .info-bar .order-2 .each-about {
  position: relative;
  top: 50%;
  transform: translateY(-50%);
  width: 100%;
  text-align: justify;
  transition: all ease 0.3s;
}
.about-wrapper .container .info-bar .order-2 .each-about .description span {
  /*font-size: 20px;*/
  /*font-family: 'Lato-Thin', sans-serif;*/
  color: #333;
  transition: all ease 0.3s;
}
.about-wrapper .container .info-bar .order-2 .each-about .hl-active-text {
  color: #00A1E4;
  transition: all ease 0.3s;
}
.about-wrapper .container .info-bar .order-2 .each-about:before {
  content: "";
  position: absolute;
  transition: all ease 0.3s;
  transition-delay: 0.3s;
  width: 0;
  height: 0;
  border-top: 8px solid transparent !important;
  border-bottom: 8px solid transparent !important;
  border-left: 8px solid #fff;
  left: calc(100% + 30px);
  top: 7px;
  z-index: 10;
}
.about-wrapper .container .info-bar .order-2 .each-about h4 .hl-active-text {
  display: block;
  color: #00A1E4;
}
.about-wrapper .container .info-bar .order-2 .each-about h4 p {
  font-size: 25px;
  color: #333;
  margin-bottom: 0;
  transition: all ease 0.3s;
}
.about-wrapper .container .info-bar .order-2 .each-about h4 p strong {
  display: block;
  color: #00A1E4;
  transition: all ease 0.3s;
}
.about-wrapper .container .info-bar .order-2 .each-about h4 .description span {
  font-size: 14px;
  transition: all ease 0.3s;
  color: #333;
}
.about-wrapper .container .info-bar .order-1 {
  padding: 0;
  z-index: 10;
}
.about-wrapper .container .info-bar .i-text-2 {
  background-color: #fff;
  position: relative;
  padding: 30px;
}
.about-wrapper .container .info-bar .i-text-2 h4 .hl-active-text {
  display: block;
  color: #00A1E4;
}
.about-wrapper .container .info-bar .i-text-2 h4 p {
  font-size: 25px;
  color: #333;
  margin-bottom: 0;
  transition: all ease 0.3s;
}
.about-wrapper .container .info-bar .i-text-2 h4 p strong {
  display: block;
  color: #00A1E4;
  transition: all ease 0.3s;
}
.about-wrapper .container .info-bar .i-text-2 h4 .description span {
  font-size: 14px;
  transition: all ease 0.3s;
  color: #333;
}
.about-wrapper .container .info-bar .i-text-2 .each-about.event-about {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.about-wrapper .container .info-bar .i-text-2 .each-about.event-about:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-top: 0px solid #fff;
  border-right: 8px solid transparent;
  border-left: 8px solid transparent;
  left: 0px;
  bottom: calc(100% + 49px);
  top: -76px;
  z-index: 10;
  border-bottom: 8px solid #fff;
}
.about-wrapper .container .info-bar .i-text-2 {
  position: relative;
  z-index: 1;
}
.about-wrapper .container .info-bar .i-text-2 .each-about {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.about-wrapper .container .info-bar .i-text-2 .each-about:before {
  content: "";
  position: absolute;
  transition: all linear 0.3s;
  transition-delay: 0.3s;
  width: 0;
  height: 0;
  border-top: 8px solid transparent !important;
  border-bottom: 8px solid transparent !important;
  border-right: 8px solid #fff;
  right: calc(100% + 30px);
  top: 7px;
  z-index: 10;
}
.about-wrapper .container .info-bar .i-text-2 .each-about .description span {
  font-size: 14px;
  transition: all ease 0.3s;
  color: #333;
  height: 63px;
}
@media screen and (min-width: 768px) {
  .about-wrapper .container .info-bar .i-text-2,
.about-wrapper .container .info-bar .mission-vision {
    min-height: 250px;
  }
}
.about-wrapper .container .info-bar .mission-vision {
  /*padding: 30px;*/
  background-color: #fff;
  z-index: 20;
}
.about-wrapper .container .info-bar .mission-vision .each-about {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.about-wrapper .container .info-bar .mission-vision .each-about h4 {
  color: #333;
}
.about-wrapper .container .info-bar .mission-vision .each-about h4 .hl-active-text {
  display: block;
  color: #00A1E4;
}
.about-wrapper .container .info-bar .mission-vision .each-about p {
  color: #333;
}
.about-wrapper .container .info-bar .mission-vision .each-about p strong {
  display: block;
  color: #00A1E4;
}
.about-wrapper .container .info-bar .mission-vision .each-about .description p {
  font-size: 14px;
}
.about-wrapper .container .info-bar .mission-vision .each-about:before {
  content: "";
  position: absolute;
  transition: all linear 0.3s;
  transition-delay: 0.3s;
  width: 0;
  height: 0;
  border-top: 8px solid transparent !important;
  border-bottom: 8px solid transparent !important;
  border-left: 8px solid #fff;
  left: calc(100% + 15px);
  top: 35px;
  z-index: 10;
}
.about-wrapper .container .info-bar-1:hover .content {
  color: #fff;
}
.about-wrapper .container .info-bar-1:hover .content::before {
  width: 100%;
  opacity: 1;
  left: 0;
}
.about-wrapper .container .info-bar-1:hover .content .each-about:before {
  border-color: rgba(127, 216, 254, 0.75);
}
.about-wrapper .container .info-bar-1:hover .content .each-about .hl-active-text {
  color: #fff;
}
.about-wrapper .container .info-bar-1:hover .featured-images .mark-layer {
  opacity: 1;
  width: 100%;
  left: 0;
}
.about-wrapper .container .info-bar-1 .content {
  position: relative;
}
.about-wrapper .container .info-bar-1 .content::before {
  content: "";
  position: absolute;
  top: 0;
  left: 100%;
  width: 0;
  opacity: 0;
  transition: all linear 0.3s;
  height: 100%;
  background-color: rgba(0, 161, 228, 0.5);
}
.about-wrapper .container .info-bar-1 .featured-images {
  position: relative;
}
.about-wrapper .container .info-bar-1 .featured-images .mark-layer {
  position: absolute;
  width: 0;
  height: 100%;
  opacity: 0;
  transition: all linear 0.3s;
  transition-delay: 0.3s;
  top: 0;
  left: 100%;
  background-color: rgba(51, 51, 51, 0.5);
}
.about-wrapper .container .info-bar-3:hover .content {
  color: #fff;
}
.about-wrapper .container .info-bar-3:hover .content::before {
  height: 100%;
  opacity: 1;
  top: 0;
}
.about-wrapper .container .info-bar-3:hover .content .each-about:before {
  border-bottom: 8px solid rgba(127, 216, 254, 0.75) !important;
}
.about-wrapper .container .info-bar-3:hover .content .each-about .hl-active-text {
  color: #fff;
}
.about-wrapper .container .info-bar-3:hover .featured-images .mark-layer {
  opacity: 1;
  height: 100%;
  top: 0;
}
.about-wrapper .container .info-bar-3 .content {
  position: relative;
}
.about-wrapper .container .info-bar-3 .content::before {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  opacity: 0;
  transition: all linear 0.3s;
  height: 0;
  background-color: rgba(0, 161, 228, 0.5);
}
.about-wrapper .container .info-bar-3 .featured-images {
  position: relative;
}
.about-wrapper .container .info-bar-3 .featured-images .mark-layer {
  position: absolute;
  width: 100%;
  height: 0;
  opacity: 0;
  transition: all linear 0.3s;
  transition-delay: 0.3s;
  top: 100%;
  left: 0;
  background-color: rgba(51, 51, 51, 0.5);
}
.about-wrapper .container .info-bar-3 .each-about.event-about {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.about-wrapper .container .info-bar-3 .each-about.event-about:before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border-right: 8px solid transparent !important;
  border-left: 8px solid transparent !important;
  left: 0px;
  bottom: calc(100% + 49px);
  top: auto;
  z-index: 10;
  border-bottom: 8px solid #fff !important;
}
.about-wrapper .container .content-img {
  padding: 0;
}

.guarantee-wrapper {
  min-height: 90px;
  padding-top: 20px;
}
.guarantee-wrapper .title-register-guarantee {
  float: left;
  padding-left: 20px;
}
.guarantee-wrapper img.good-vote {
  float: left;
}
.guarantee-wrapper .description {
  float: right;
  width: calc(100% - 65px);
  font-size: 13px;
  color: #fff;
  line-height: 20px;
  padding-top: 5px;
}
.guarantee-wrapper .guarantee-click {
  color: #fff;
  border: 2px solid #33b4e9;
  border-radius: 30px;
  padding: 10px 20px;
  display: inline-block;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 25px;
  text-decoration: none;
  transition: all linear 0.3s;
  z-index: 10;
}
.guarantee-wrapper .guarantee-click i {
  padding-left: 5px;
}
.guarantee-wrapper .guarantee-click:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 30px;
  opacity: 0;
  transition: all linear 0.3s;
  z-index: -1;
}
.guarantee-wrapper .guarantee-click:hover {
  color: #00A1E4;
}
.guarantee-wrapper .guarantee-click:hover:before {
  width: 100%;
  opacity: 1;
}
@media screen and (min-width: 767px) {
  .guarantee-wrapper .description-guarantee {
    padding: 0;
  }
}

.video-wrapper {
  position: relative;
  background: url(../images/bg-video.jpg);
  background-size: cover;
}
.video-wrapper .video-content {
  color: #fff;
  text-align: center;
  padding: 120px 0;
}
.video-wrapper .video-content h1 {
  font-size: 40px;
}
.video-wrapper .video-content h4 {
  font-size: 20px;
}
.video-wrapper .video-content .video-description {
  font-size: 20px;
}
.video-wrapper .video-content .video-description span {
  font-size: 20px;
}
@media screen and (max-width: 575px) {
  .video-wrapper .video-content iframe {
    width: auto;
  }
}
.video-wrapper .video-content .play-video {
  padding-top: 40px;
  cursor: pointer;
}

#play-video .modal-dialog {
  max-width: 800px;
  max-height: 500px;
  height: 100%;
}
#play-video .modal-dialog .modal-content {
  height: 100%;
}
#play-video .modal-dialog .modal-content .modal-body {
  padding: 0;
  margin: 15px;
}
#play-video .modal-dialog .modal-content .video-container {
  height: 100%;
  position: absolute;
  width: 100%;
}

.category-wrapper h3 {
  font-size: 35px;
}
.category-wrapper h3 span {
  color: #00A1E4;
}
.category-wrapper .tab-content {
  padding-bottom: 50px;
  min-height: 315px;
}
.category-wrapper .tab-content .description-category {
  color: #666;
  font-size: 15px;
}
.category-wrapper .tab-content .category-click {
  background-color: #00A1E4;
  color: #fff;
  border-radius: 30px;
  padding: 10px 20px;
  margin-top: 30px;
  display: inline-block;
  position: relative;
  transition: all linear 0.3s;
  border: 2px solid transparent;
  z-index: 10;
}
.category-wrapper .tab-content .category-click::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  opacity: 0;
  z-index: -1;
  transition: all linear 0.3s;
  height: 100%;
  padding: 10px 20px;
  background-color: rgba(255, 255, 255, 0.7);
}
.category-wrapper .tab-content .category-click:hover {
  color: #00A1E4;
  border: 2px solid #00A1E4;
}
.category-wrapper .tab-content .category-click:hover::before {
  width: 100%;
  border-radius: 30px;
  opacity: 1;
}
.category-wrapper .tab-content .category-click i {
  padding-left: 10px;
}

.hotline-wrapper {
  padding-top: 100px;
}
.hotline-wrapper .container .swiper-hotline .swiper-wrapper .swiper-slide:hover .featured-images .icon-hover {
  width: 100%;
  opacity: 1;
}
.hotline-wrapper .container .swiper-hotline .swiper-wrapper .swiper-slide:hover .featured-images .icon-hover img {
  opacity: 1;
}
.hotline-wrapper .container .swiper-hotline .swiper-wrapper .swiper-slide:hover .hotline-click {
  color: #00A1E4;
}
.hotline-wrapper .container .swiper-hotline .swiper-wrapper .swiper-slide:hover .hotline-click:after {
  width: 60%;
}
.hotline-wrapper .container .swiper-hotline .swiper-wrapper .swiper-slide .featured-images {
  position: relative;
  display: block;
  overflow: hidden;
}
.hotline-wrapper .container .swiper-hotline .swiper-wrapper .swiper-slide .featured-images .featured-image {
  min-height: 270px;
  max-width: none;
}
.hotline-wrapper .container .swiper-hotline .swiper-wrapper .swiper-slide .featured-images .icon-hover {
  position: absolute;
  width: 0;
  opacity: 0;
  height: 100%;
  left: 0;
  top: 0;
  transition: all linear 0.3s;
  background-color: rgba(0, 161, 228, 0.7);
}
.hotline-wrapper .container .swiper-hotline .swiper-wrapper .swiper-slide .featured-images .icon-hover img {
  position: absolute;
  top: 50%;
  opacity: 0;
  transition: all linear 0.3s;
  left: 50%;
  transform: translate(-50%, -50%);
}
.hotline-wrapper .container .swiper-hotline .swiper-wrapper .swiper-slide .hotline-click {
  padding: 20px 0;
  display: block;
  transition: all linear 0.3s;
  position: relative;
  font-size: 17px;
  color: #232323;
}
.hotline-wrapper .container .swiper-hotline .swiper-wrapper .swiper-slide .hotline-click:before {
  content: "";
  position: absolute;
  transition: all linear 0.3s;
  bottom: 0;
  left: 0;
  width: 60%;
  height: 1px;
  background-color: #ddd;
}
.hotline-wrapper .container .swiper-hotline .swiper-wrapper .swiper-slide .hotline-click::after {
  content: "";
  position: absolute;
  transition: all linear 0.3s;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background-color: #00A1E4;
}
.hotline-wrapper .container h3.title {
  color: #666;
  font-size: 35px;
}

.news-wrapper {
  padding-bottom: 30px;
  padding-top: 60px;
}
.news-wrapper .container h3.title {
  color: #666;
  font-size: 35px;
}
.news-wrapper .container a.news-click {
  background-color: #00A1E4;
  color: #fff;
  border-radius: 30px;
  padding: 10px 20px;
  display: inline-block;
  text-decoration: none;
  position: relative;
  z-index: 10;
  transition: all linear 0.3s;
}
.news-wrapper .container a.news-click i {
  padding-left: 7px;
}
.news-wrapper .container a.news-click:before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  border-radius: 30px;
  opacity: 0;
  transition: all linear 0.3s;
  z-index: -1;
}
.news-wrapper .container a.news-click:hover {
  color: #00A1E4;
}
.news-wrapper .container a.news-click:hover:before {
  width: 100%;
  opacity: 1;
}
.news-wrapper .container .featured-post {
  position: relative;
}
.news-wrapper .container .featured-post a {
  text-decoration: none;
  color: #fff;
  height: 100%;
  position: relative;
  display: block;
}
.news-wrapper .container .featured-post a:hover {
  /*color: $blue;*/
}
.news-wrapper .container .featured-post a:hover .icon-hover {
  width: 100%;
  opacity: 1;
}
.news-wrapper .container .featured-post a:hover .icon-hover img {
  opacity: 1;
}
.news-wrapper .container .featured-post a:hover .info-post {
  background-color: transparent;
}
.news-wrapper .container .featured-post a .icon-hover {
  position: absolute;
  width: 0;
  opacity: 0;
  height: 100%;
  left: 0;
  top: 0;
  transition: all linear 0.3s;
  background-color: rgba(51, 51, 51, 0.5);
}
.news-wrapper .container .featured-post a .icon-hover img {
  position: absolute;
  top: 50%;
  opacity: 0;
  transition: all linear 0.3s;
  left: 50%;
  transform: translate(-50%, -50%);
}
.news-wrapper .container .featured-post a .info-post {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  transition: all linear 0.3s;
  background-color: rgba(0, 0, 0, 0.4);
  padding: 20px;
}
.news-wrapper .container .featured-post a .info-post p.title-post {
  font-size: 20px;
  margin-bottom: 0;
}
.news-wrapper .container .featured-post a .info-post p.date-time-post {
  font-size: 12px;
  margin-bottom: 0;
}
.news-wrapper .container .sm-post {
  padding-bottom: 30px;
}
.news-wrapper .container .sm-post .content-post-relation a {
  display: block;
  text-decoration: none;
  color: #333;
  transition: all linear 0.5s;
}
.news-wrapper .container .sm-post .content-post-relation a p.post-title {
  font-size: 15px;
  margin-bottom: 5px;
  line-height: 21px;
  overflow: hidden;
}
.news-wrapper .container .sm-post .content-post-relation a p.post-time {
  font-size: 12px;
  color: #666;
  line-height: 20px;
  margin-bottom: 10px;
  max-height: 20px;
  overflow: hidden;
}
.news-wrapper .container .sm-post .content-post-relation a p.post-description {
  font-size: 14px;
  color: #666;
  line-height: 15px;
  margin-bottom: 0;
  max-height: 45px;
  overflow: hidden;
}
.news-wrapper .container .sm-post:hover .featured-images .icon-hover {
  width: calc(100% - 30px);
  opacity: 1;
}
.news-wrapper .container .sm-post:hover .featured-images .icon-hover img {
  opacity: 1;
}
.news-wrapper .container .sm-post:hover .content-post-relation a {
  color: #00A1E4;
}
.news-wrapper .container .sm-post .featured-images {
  position: relative;
  display: block;
}
.news-wrapper .container .sm-post .featured-images .icon-hover {
  position: absolute;
  width: 0;
  opacity: 0;
  height: 100%;
  left: 15px;
  top: 0;
  transition: all linear 0.3s;
  background-color: rgba(51, 51, 51, 0.5);
}
.news-wrapper .container .sm-post .featured-images .icon-hover img {
  position: absolute;
  top: 50%;
  opacity: 0;
  transition: all linear 0.3s;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .news-wrapper .container .sm-post .featured-images {
    overflow: hidden;
  }
}
.news-wrapper .container .sm-post:last-child {
  padding-bottom: 0;
}

@media screen and (max-width: 1024px) {
  .video-wrapper {
    background-position: right;
  }

  .about-wrapper .container .info-bar .i-text-2 .each-about.event-about::before {
    bottom: calc(100% + 39px);
  }
}
@media screen and (max-width: 991px) {
  .guarantee-wrapper .description-guarantee {
    padding-right: 15px;
  }

  .guarantee-wrapper .description {
    text-align: justify;
    padding-top: 0;
  }

  .guarantee-wrapper {
    margin-bottom: 50px;
  }

  .guarantee-wrapper .guarantee-click {
    color: #fff;
    border: 2px solid #33b4e9;
    border-radius: 30px;
    padding: 10px 20px;
    display: inline-block;
    position: absolute;
    top: 50%;
    transform: translate(50%, 50%);
    right: 50%;
    background-color: #33b4e9;
  }

  .menu-wrapper .container .h-bar-sub-content nav {
    padding-top: 7px;
  }
  .menu-wrapper .container .h-bar-sub-content nav .navbar-nav {
    width: 100%;
  }
  .menu-wrapper .container .h-bar-sub-content nav .navbar-nav li {
    text-align: center;
  }
  .menu-wrapper .container .h-bar-sub-content nav .form-language {
    background-color: #e9e9e9;
    margin-top: -1px;
    height: auto;
    display: block;
    width: 100%;
  }
  .menu-wrapper .container .h-bar-sub-content nav .form-language .form-group {
    float: left;
  }
  .menu-wrapper .container .h-bar-sub-content nav .form-language .lable-search {
    width: 100px;
    float: right;
    padding-top: 20px;
  }
  .menu-wrapper .container .h-bar-sub-content nav .search-form {
    position: absolute;
    top: calc(100% - 1px);
  }

  .about-wrapper .container .info-bar .i-text-2 .each-about.event-about::before {
    bottom: auto;
    content: "";
    position: absolute;
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 8px solid #fff;
    right: calc(100% + 30px);
    top: 7px;
    z-index: 10;
    left: auto;
  }

  .news-wrapper .container .featured-post {
    margin-bottom: 30px;
  }
  .news-wrapper .container .featured-post a img {
    width: 100%;
  }

  .news-wrapper .container .featured-post a .icon-hover img {
    width: auto;
  }

  .news-wrapper .container .sm-post:hover .content-post-relation {
    padding-left: 15px;
  }

  .category-wrapper .container .tab-content {
    height: auto;
  }
  .category-wrapper .container .tab-content .featured-images {
    max-width: auto;
  }

  .slider-wrapper .swiper-container .swiper-wrapper .swiper-slide .h-swiper-text h1 {
    font-size: 70px;
  }
}
@media screen and (max-width: 767px) {
  .h-bar .h-bar-content ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
    height: 34px;
  }

  .slider-wrapper .swiper-container .swiper-wrapper .swiper-slide .h-swiper-text h1 {
    color: #fff;
    font-size: 35px;
  }

  .slider-wrapper .swiper-container .swiper-wrapper .swiper-slide .h-swiper-text h4 {
    color: #fff;
    font-size: 20px;
  }

  .slider-wrapper .swiper-container .swiper-wrapper .swiper-slide .h-swiper-text p {
    color: #fff;
    font-size: 14px;
  }

  .about-wrapper .container .info-bar .bg-about-1,
.about-wrapper .container .info-bar .bg-about-2,
.about-wrapper .container .info-bar .bg-about-3 {
    min-height: 250px;
  }

  .guarantee-wrapper .title-register-guarantee {
    float: left;
    padding-left: 20px;
    width: 100%;
    text-align: center !important;
    padding-bottom: 10px;
  }

  .guarantee-wrapper img.good-vote {
    float: none;
    margin: 0 auto;
    display: block;
  }

  .guarantee-wrapper .description {
    text-align: justify;
    padding-top: 0;
    width: 100%;
    padding-bottom: 20px;
  }

  .category-wrapper ul.nav-tabs li {
    width: 50%;
  }

  .category-wrapper ul.nav-tabs li:nth-of-type(3) a {
    margin-left: 0;
  }

  .category-wrapper .tab-content .description-category {
    color: #666;
    font-size: 15px;
    padding-top: 20px;
    text-align: justify;
  }

  .category-wrapper .tab-content .category-click {
    background-color: #00A1E4;
    color: #fff;
    border-radius: 30px;
    padding: 10px 20px;
    margin-top: 30px;
    display: block;
    margin: 30px auto 0;
    width: 150px;
  }

  .news-wrapper .container .sm-post .featured-images img {
    width: 100%;
  }

  .news-wrapper .container .sm-post .featured-images .icon-hover img {
    width: auto;
  }

  .news-wrapper .container .sm-post .content-post-relation {
    padding-left: 15px;
    padding-top: 15px;
  }

  .about-wrapper .container .info-bar .order-2 .each-about::before,
.about-wrapper .container .info-bar .i-text-2 .each-about::before,
.about-wrapper .container .info-bar .mission-vision .each-about::before,
.about-wrapper .container .info-bar .i-text-2 .each-about.event-about::before {
    display: none;
  }

  .about-wrapper {
    padding-top: 0px;
  }

  .menu-wrapper .container .h-bar-sub-content nav .form-language .form-group {
    margin: 0;
  }

  .menu-wrapper .container .h-bar-sub-content nav .form-language .lable-search {
    width: 200px;
    text-align: right;
  }

  .menu-wrapper .container .h-bar-sub-content nav .search-form {
    width: 100%;
  }

  .menu-wrapper .container .h-bar-sub-content nav .search-form input {
    border-radius: 0;
    border-bottom: 1px solid #e1e1e1;
  }

  .list-about-wrapper .container .list-group a {
    width: 100%;
  }

  .about-wrapper .container .info-bar .order-2,
.about-wrapper .container .info-bar .i-text-2,
.about-wrapper .container .info-bar .mission-vision {
    padding: 15px;
  }
}
@media screen and (max-width: 368px) {
  .slider-wrapper {
    margin-top: 35px;
  }

  .slider-wrapper .swiper-container .swiper-wrapper .swiper-slide .h-swiper-text h1 {
    color: #fff;
    font-size: 22px;
  }

  .slider-wrapper .swiper-container .swiper-wrapper .swiper-slide .h-swiper-text h4 {
    color: #fff;
    font-size: 20px;
  }

  .slider-wrapper .swiper-container .swiper-wrapper .swiper-slide .h-swiper-text p {
    color: #fff;
    font-size: 14px;
  }

  .slider-wrapper .swiper-container .swiper-wrapper .swiper-slide .h-swiper-text .description {
    font-size: 15px;
  }
}
@media screen and (max-width: 533px) {
  .h-bar .h-bar-content ul {
    height: 78px;
  }

  .h-bar .h-bar-content ul li a {
    font-size: 11px;
  }
}
.breadcrumb-wrapper .container .breadcrumb {
  background-color: transparent;
  margin-bottom: 0;
  padding: 45px 0 15px;
  border-bottom: 1px solid #dddddd;
  font-size: 13px;
  color: #999999;
}
.breadcrumb-wrapper .container .breadcrumb a {
  font-size: 13px;
  color: #999999;
}
.breadcrumb-wrapper .container .breadcrumb a:hover {
  color: #00A1E4;
}
.breadcrumb-wrapper .container .breadcrumb i {
  padding: 2px 10px;
}
.breadcrumb-wrapper .container .breadcrumb span {
  color: #00A1E4;
}
.breadcrumb-wrapper .container .breadcrumb span.click-back {
  font-size: 13px;
  color: #666;
}

.list-about-wrapper {
  padding-top: 60px;
}
.list-about-wrapper .container .list-group {
  display: block;
  border-bottom: 2px solid #00A1E4;
}
.list-about-wrapper .container .list-group a {
  display: inline-block;
  min-width: calc(25% - 9px);
  margin-left: -2px;
  font-size: 16px;
  color: #666;
  text-decoration: none;
  text-align: center;
}
.list-about-wrapper .container .list-group a .about-title {
  max-height: 54px;
  background-color: #fff;
  border-radius: 4px 4px 0 0;
  padding: 15px 20px;
  font-size: 16px;
  color: #666;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .list-about-wrapper .container .list-group a .about-title {
    padding: 15px 18px;
  }
}
.list-about-wrapper .container .list-group a .about-title img.icon-about-active {
  display: none;
}
.list-about-wrapper .container .list-group a .about-title img.icon-about {
  display: inline-block;
}
.list-about-wrapper .container .list-group a:hover .about-title {
  color: #fff;
  background-color: #00A1E4;
}
.list-about-wrapper .container .list-group a:hover .about-title img.icon-about-active {
  display: inline-block;
}
.list-about-wrapper .container .list-group a:hover .about-title img.icon-about {
  display: none;
}
.list-about-wrapper .container .list-group a:first-child {
  margin-left: 0;
  min-width: calc(25% - 9px);
}
.list-about-wrapper .container .list-group a.active .about-title {
  color: #fff;
  background-color: #00A1E4;
}
.list-about-wrapper .container .list-group a.active .about-title img.icon-about-active {
  display: inline-block;
}
.list-about-wrapper .container .list-group a.active .about-title img.icon-about {
  display: none;
}

.tab-content #AboutHL .info-company {
  background-color: #fff;
  padding-bottom: 60px;
  padding-left: 50px;
  padding-right: 50px;
}
.tab-content #AboutHL .info-company .featured-title-aboutHL {
  padding: 30px 0;
  font-size: 20px;
  color: #333;
}
.tab-content #AboutHL .info-company .featured-title-aboutHL p {
  margin-bottom: 0;
}
.tab-content #AboutHL .info-company .featured-title-aboutHL p strong {
  color: #00A1E4;
}
.tab-content #AboutHL .info-company .featured-description-aboutHL {
  font-size: 14px;
  color: #333;
}
.tab-content #AboutHL .info-company .featured-description-aboutHL p {
  margin-bottom: 0;
}
.tab-content #AboutHL .info-company .list-aboutHL {
  padding-top: 70px;
}
.tab-content #AboutHL .info-company .list-aboutHL .title-aboutHL {
  font-size: 16px;
  color: #00A1E4;
  line-height: 16px;
  padding-bottom: 25px;
}
.tab-content #AboutHL .info-company .list-aboutHL .description-aboutHL {
  font-size: 14px;
  color: #333;
  display: block;
  max-width: 85%;
}
.tab-content #AboutHL .info-company .list-aboutHL strong {
  color: #00a1e4;
  font-size: 17px;
  padding-bottom: 15px;
  display: block;
}
.tab-content #AboutHL .history-wrapper {
  margin-top: 90px;
  border-bottom: 1px solid #dddddd;
}
.tab-content #AboutHL .history-wrapper h3.title {
  font-size: 20px;
  color: #00A1E4;
  line-height: 20px;
  padding-bottom: 30px;
}
.tab-content #AboutHL .history-wrapper .description-history {
  padding-bottom: 50px;
  padding-right: 107px;
}
.tab-content #AboutHL .history-wrapper .description-history .description {
  font-size: 14px;
  color: #333;
  padding-bottom: 45px;
}
.tab-content #AboutHL .history-wrapper .list-history ul {
  padding-left: 0;
  list-style: none;
}
.tab-content #AboutHL .history-wrapper .list-history ul li span.year-history {
  font-size: 14px;
  color: #00A1E4;
  padding-left: 30px;
  position: relative;
}
.tab-content #AboutHL .history-wrapper .list-history ul li span.year-history:before {
  content: "";
  position: absolute;
  top: 4px;
  left: 0;
  width: 10px;
  height: 10px;
  background-color: #00A1E4;
  border-radius: 50%;
  z-index: 10;
}
.tab-content #AboutHL .history-wrapper .list-history ul li span.year-history:after {
  content: "";
  position: absolute;
  top: 8px;
  left: 4px;
  width: 2px;
  height: 100%;
  border-left: 2px dashed #dddddd;
  z-index: 1;
}
.tab-content #AboutHL .history-wrapper .list-history ul li .process-history {
  padding-bottom: 40px;
}
.tab-content #AboutHL .history-wrapper .list-history ul li:last-child span.year-history:after {
  height: 0;
}
.tab-content #AboutHL .vision-aboutHL {
  padding-top: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid #dddddd;
}
.tab-content #AboutHL .vision-aboutHL .container h3.title {
  font-size: 20px;
  color: #00A1E4;
  line-height: 20px;
  padding-bottom: 40px;
}
.tab-content #AboutHL .vision-aboutHL .container .description {
  font-size: 14px;
}
.tab-content #AboutHL .vision-aboutHL .container .description-customW {
  padding-right: 92px;
  text-align: justify;
}
.tab-content #AboutHL .structure-wrapper {
  padding-top: 40px;
  padding-bottom: 40px;
}
.tab-content #AboutHL .structure-wrapper .container h3.title {
  font-size: 20px;
  color: #00A1E4;
  line-height: 20px;
  padding-bottom: 40px;
}
.tab-content #AboutHL .structure-wrapper .container h4.title {
  font-size: 17px;
  color: #00A1E4;
  line-height: 17px;
  padding: 20px 0;
}
.tab-content #AboutHL .structure-wrapper .container .description {
  font-size: 15px;
}
.tab-content #AboutHL .structure-wrapper .container .list-parts ul {
  padding: 0;
  list-style: none;
}
.tab-content #AboutHL .structure-wrapper .container .list-parts ul li {
  font-size: 14px;
}
.tab-content #vision-mission {
  padding-bottom: 190px;
  padding-top: 80px;
}
.tab-content #vision-mission .info .content-mission {
  padding: 40px 40px 0 40px;
  background-color: #fff;
  height: 100%;
}
.tab-content #vision-mission .info .content-mission h3.title {
  font-size: 20px;
  color: #00A1E4;
  line-height: 20px;
  padding-bottom: 25px;
}
.tab-content #vision-mission .info .content-mission .description {
  font-size: 15px;
  line-height: 19px;
}
.tab-content #leadership {
  padding-bottom: 145px;
}
.tab-content #leadership .list-leadership .each-leadership {
  margin-top: 25px;
}
.tab-content #leadership .list-leadership .each-leadership .info-leadership {
  background-color: #fff;
}
.tab-content #leadership .list-leadership .each-leadership .info-leadership .description {
  height: 100%;
  padding: 40px 80px 15px 45px;
  font-size: 14px;
  color: #666;
}
.tab-content #leadership .list-leadership .each-leadership .info-leadership .description p {
  line-height: 18px;
}
.tab-content #leadership .list-leadership .each-leadership .info-leadership .leadership-position {
  padding-top: 5px;
}
.tab-content #leadership .list-leadership .each-leadership .info-leadership .leadership-position span {
  display: block;
  padding-left: 17px;
}
.tab-content #leadership .list-leadership .each-leadership .info-leadership .leadership-position span.position {
  position: relative;
  font-size: 15px;
}
.tab-content #leadership .list-leadership .each-leadership .info-leadership .leadership-position span.position::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 1px;
  background-color: #00A1E4;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
}
.tab-content #leadership .list-leadership .each-leadership .info-leadership .leadership-position span.name {
  color: #00A1E4;
}
.tab-content #leadership .list-leadership .each-leadership .featured-image {
  background-color: #fff;
}
@media screen and (min-width: 767px) {
  .tab-content #leadership .list-leadership .each-leadership {
    margin-left: 0;
    margin-right: 0;
  }
}
.tab-content #leadership .list-leadership .each-leadership:nth-child(2n) .info-leadership .description {
  padding: 40px 80px 25px 80px;
}
.tab-content #partner {
  margin-bottom: 105px;
}
.tab-content #partner .list-partner {
  background-color: #fff;
  padding: 65px 40px 0 40px;
}
.tab-content #partner .list-partner .each-partner .partner {
  padding: 65px 40px 0 40px;
  height: 100%;
}
.tab-content #partner .list-partner .each-partner .partner .info {
  padding: 0 0 55px 0;
  border-bottom: 1px solid #ddd;
  height: 100%;
}
.tab-content #partner .list-partner .each-partner .partner .info img {
  padding-bottom: 40px;
}
.tab-content #partner .list-partner .each-partner .partner a.btn-partner {
  background-color: #00A1E4;
  padding: 10px 20px;
  border-radius: 25px;
  color: #ffffff;
  position: relative;
  z-index: 10;
  border: 1px solid transparent;
}
.tab-content #partner .list-partner .each-partner .partner a.btn-partner:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  border: 1px solid #00A1E4;
  border-radius: 25px;
  width: 0;
  opacity: 0;
  transition: all linear 0.3s;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: -1;
}
.tab-content #partner .list-partner .each-partner .partner a.btn-partner:hover:before {
  width: 100%;
  opacity: 1;
}
.tab-content #partner .list-partner .each-partner:last-child .partner .info {
  border-bottom: 0;
}

@media screen and (max-width: 767px) {
  .tab-content #AboutHL .info-company {
    padding-left: 15px;
    padding-right: 15px;
  }

  .tab-content #AboutHL .info-company .list-aboutHL .description-aboutHL {
    max-width: 100%;
  }

  .tab-content #AboutHL .history-wrapper .description-history {
    padding-right: 15px;
  }

  .tab-content #AboutHL .vision-aboutHL .container .description-customW,
.tab-content #AboutHL .structure-wrapper .container .description {
    padding-right: 0;
    padding-bottom: 30px;
  }

  .tab-content #AboutHL .history-wrapper .list-history ul {
    padding: 0 15px;
  }

  .tab-content #AboutHL .vision-aboutHL .container h3.title,
.tab-content #AboutHL .structure-wrapper .container h3.title {
    padding-bottom: 15px;
  }

  .tab-content #vision-mission {
    padding-bottom: 40px;
    padding-top: 40px;
  }

  .tab-content #vision-mission .info .content-mission {
    padding: 40px 15px 0 15px;
  }

  .tab-content #leadership .list-leadership .each-leadership .featured-image img {
    display: block;
    margin: 0 auto;
    padding-top: 15px;
  }

  .tab-content #leadership .list-leadership .each-leadership .info-leadership .description,
.tab-content #leadership .list-leadership .each-leadership:nth-child(2n) .info-leadership .description {
    padding: 15px 0;
  }

  .tab-content #leadership {
    padding-bottom: 40px;
  }

  .list-about-wrapper .container .list-group a {
    margin-left: 0;
  }

  .tab-content #partner .list-partner {
    background-color: #fff;
    padding: 40px 0;
  }

  .tab-content #partner .list-partner .each-partner .partner {
    padding: 65px 15px 0 15px;
    height: 100%;
  }

  .tab-content #partner .list-partner .each-partner .partner .info img {
    display: block;
    margin: 0 auto;
  }

  .tab-content #partner .list-partner {
    padding: 0;
  }

  .tab-content #partner {
    margin-bottom: 40px;
  }
}
.footer-wrapper {
  background-color: #333;
  color: #fff;
  padding-top: 40px;
}
.footer-wrapper .footer-menu {
  padding-bottom: 15px;
  border-bottom: 1px solid #484848;
}
.footer-wrapper .footer-menu img.footer-logo {
  padding-left: 15px;
  padding-top: 3px;
}
.footer-wrapper .footer-menu .each-menu {
  padding-top: 10px;
}
.footer-wrapper .footer-menu .each-menu h4 {
  font-size: 20px;
}
.footer-wrapper .footer-menu .each-menu ul {
  padding-left: 0;
  padding-top: 15px;
  list-style: none;
}
.footer-wrapper .footer-menu .each-menu ul li a {
  text-decoration: none;
  color: #fff;
  font-size: 13px;
}
.footer-wrapper .footer-menu .each-menu ul li a:hover {
  color: #00A1E4;
}
.footer-wrapper .footer-menu .each-menu label {
  padding-top: 20px;
  font-size: 13px;
}
.footer-wrapper .footer-menu .each-menu .group-input {
  height: 50px;
}
.footer-wrapper .footer-menu .each-menu .group-input input {
  background-color: transparent;
  border-radius: 4px 0 0 4px;
  border-right: 0;
  float: left;
  width: calc(100% - 40px);
  color: #fff;
}
.footer-wrapper .footer-menu .each-menu .group-input input:focus {
  border-color: #ced4da;
  box-shadow: none;
}
.footer-wrapper .footer-menu .each-menu .group-input input::placeholder {
  color: #fff;
  font-size: 13px;
}
.footer-wrapper .footer-menu .each-menu .group-input i {
  float: right;
  width: 40px;
  height: 38px;
  border: 1px solid #ced4da;
  border-left-color: #ced4da;
  border-left-style: solid;
  border-left-width: 1px;
  border-left: 0;
  border-radius: 0 4px 4px 0;
  padding: 10px;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .footer-wrapper .footer-menu .each-menu .group-input i {
    height: 33px;
  }
}
.footer-wrapper .footer-menu .each-menu p {
  margin-bottom: 0;
  font-size: 13px;
}
.footer-wrapper .footer-menu .each-menu p a:first-child {
  margin-left: 10px;
}
.footer-wrapper .footer-menu .each-menu p a i {
  background-color: #ebebeb;
  color: #333;
  padding: 5px;
  border-radius: 50%;
  display: inline-block;
  width: 22px;
  height: 22px;
  text-align: center;
  line-height: 12px;
}
.footer-wrapper .address-tax:last-child .tax-code {
  display: none;
}
.footer-wrapper .policy_footer-content {
  padding-left: 40px;
}
.footer-wrapper .policy_footer-content .policy-list {
  padding-left: 22px;
}
.footer-wrapper .policy_footer-content a {
  font-size: 11.5px;
  color: #fff;
}
.footer-wrapper .policy_footer-content a:hover {
  color: #007bff;
}
.footer-wrapper .footer-address {
  padding-top: 30px;
  border-bottom: 1px solid #484848;
}
.footer-wrapper .footer-address .address {
  padding-left: 25px;
  padding-bottom: 15px;
}
.footer-wrapper .footer-address .address h5.title {
  font-size: 20px;
}
.footer-wrapper .footer-address .address .address-detail {
  padding-left: 22px;
  font-size: 13px;
}
.footer-wrapper .footer-address .address .address-detail p {
  margin-bottom: 8px;
}
.footer-wrapper .footer-address .address .address-detail p a {
  color: #fff;
  transition: all ease-in-out 0.3s;
  -moz-transition: all ease-in-out 0.3s;
  -webkit-transition: all ease-in-out 0.3s;
}
.footer-wrapper .footer-address .address .address-detail p a:hover {
  color: #00A1E4;
}
.footer-wrapper .copyright {
  font-family: "Lato-Regular", sans-serif;
  font-size: 13px;
  color: #939393;
  padding: 15px;
}
.footer-wrapper .copyright p {
  margin-bottom: 0;
}

@media screen and (max-width: 767px) {
  .footer-wrapper .footer-address .address {
    padding-left: 0;
    padding-bottom: 30px;
    padding-right: 0;
  }

  .footer-wrapper .footer-address .address .address-detail {
    padding-left: 15px;
    padding-right: 15px;
  }

  .footer-wrapper .copyright {
    padding: 15px;
  }
  .footer-wrapper .copyright img {
    padding-top: 10px;
  }
}
@media (max-width: 576px) {
  .policy_detail {
    padding: 60px 20px 30px 20px !important;
  }
}
@media (max-width: 1024px) {
  .policy_footer-content {
    padding-left: 30px !important;
  }
  .policy_footer-content h4 {
    font-size: 18px;
  }
}
@media (max-width: 480px) {
  .policy_footer-content {
    padding: 20px 0 0 15px !important;
  }
}
.format-recruitment {
  padding-bottom: 30px;
  margin-bottom: 40px;
}
.format-recruitment .time-recruitment {
  font-size: 12px;
  margin-bottom: 10px;
  color: #666666;
}
.format-recruitment .col-content {
  margin-top: 30px;
}
.format-recruitment .card {
  border-radius: 0;
  display: flex;
  height: 100%;
}
.format-recruitment .recruitment:hover .img-hover::before {
  height: 100%;
  opacity: 1;
}
.format-recruitment .recruitment:hover .img-hover .recruitment-detail {
  top: 50%;
  opacity: 1;
}
.format-recruitment .recruitment:hover .h5 a {
  color: #00A1E4;
}
.format-recruitment .recruitment .card-body {
  position: relative;
  display: flex;
  flex-direction: column;
}
.format-recruitment .recruitment .card-body .total-content {
  flex-direction: column;
}
.format-recruitment .recruitment .card-body .total-content .custom-title {
  flex: 1;
}
.format-recruitment .recruitment .card-body .total-content .custom-css {
  display: flex;
  align-items: flex-start;
}
.format-recruitment .recruitment .card-body .total-content .custom-css ul {
  flex: 1;
}
.format-recruitment .recruitment .card-body .description {
  margin-top: 25px;
}
.format-recruitment .recruitment .img-hover {
  position: relative;
}
.format-recruitment .recruitment .img-hover::before {
  position: absolute;
  width: 100%;
  content: "";
  top: 0;
  left: 0;
  height: 0;
  opacity: 0;
  transition: all linear 0.3s;
  background-color: rgba(0, 161, 228, 0.5);
}
.format-recruitment .recruitment .img-hover::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 25px;
  width: calc(100% - 50px);
  height: 1px;
  background-color: #e5e5e5;
}
.format-recruitment .recruitment .img-hover .recruitment-detail {
  position: absolute;
  top: -10px;
  left: 50%;
  transition: all linear 0.3s;
  transition-delay: 0.2s;
  opacity: 0;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 15px;
}
.format-recruitment .recruitment .img-hover .recruitment-detail img {
  padding-left: 5px;
}
.format-recruitment .recruitment h5 {
  margin-bottom: 15px;
}
.format-recruitment .recruitment h5 a {
  font-size: 20px;
  color: #00A1E4;
  text-decoration: none;
}
.format-recruitment .recruitment .title-recruitment {
  padding: 0;
  list-style: none;
  padding-top: 5px;
}
.format-recruitment .recruitment .title-recruitment li {
  padding-left: 15px;
  position: relative;
  margin: 0 0 15px 0;
  line-height: 13px;
  font-size: 13px;
  color: #666;
  display: flex;
  align-items: center;
}
.format-recruitment .recruitment .title-recruitment li span {
  display: block;
  flex: 1;
}
.format-recruitment .recruitment .title-recruitment li:before {
  position: absolute;
  content: "";
  width: 5px;
  height: 5px;
  top: 50%;
  left: 0;
  transform: translate(0, -50%);
  background-color: #00a1e4;
  border-radius: 50%;
}
.format-recruitment .recruitment .card-title {
  font-family: "Lato-Medium", sans-serif;
  color: #333;
}
.format-recruitment .recruitment .information-re {
  display: table-cell;
  padding-left: 25px;
  list-style: none;
}
.format-recruitment .recruitment .information-re li {
  font-size: 15px;
  margin: 8px 0;
}
.format-recruitment .recruitment .title-description {
  color: #00a1e4;
  font-size: 15px;
  margin-bottom: 15px;
  line-height: 15px;
}

.category-wrapper .info-category {
  position: relative;
}
.category-wrapper .info-category:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  transition: all linear 0.3s;
  background-color: rgba(51, 51, 51, 0.5);
}
.category-wrapper .info-category:hover:before {
  height: 100%;
  opacity: 1;
}
.category-wrapper .info-category:hover .name-category a {
  color: #00A1E4;
}
.category-wrapper .info-category .featured-category-images {
  width: 100%;
}
.category-wrapper .info-category .name-category {
  position: absolute;
  left: 25px;
  bottom: 15px;
}
.category-wrapper .info-category .name-category a {
  font-size: 20px;
  color: #fff;
  transition: all linear 0.3s;
  line-height: 20px;
}
.category-wrapper .list-child-category {
  padding: 0 25px;
  background-color: #fff;
}
.category-wrapper .list-child-category .child-category {
  padding: 25px 0 20px;
  position: relative;
}
.category-wrapper .list-child-category .child-category::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: -25px;
  width: calc(100% + 50px);
  background-color: #f6f6f6;
  height: 2px;
}
.category-wrapper .list-child-category .child-category a.custom-click {
  height: 135px;
  display: block;
}
.category-wrapper .list-child-category .child-category a.custom-click .featured-images {
  padding-bottom: 40px;
  transition: all linear 0.3s;
  max-height: 100%;
}
.category-wrapper .list-child-category .child-category .name-child-category {
  font-size: 20px;
  color: #333;
  position: relative;
}
.category-wrapper .list-child-category .child-category .name-child-category img {
  position: absolute;
  right: calc(100% + 5px);
  top: 10px;
  opacity: 0;
  transition: all linear 0.3s;
}
.category-wrapper .list-child-category .child-category .name-child-category span {
  position: relative;
  left: 0;
  transition: all linear 0.3s;
}
.category-wrapper .list-child-category .child-category .name-child-category span a {
  color: #333;
  transition: all linear 0.3s;
}
.category-wrapper .list-child-category .child-category .description {
  font-size: 13px;
  color: #666;
  height: 60px;
  overflow: auto;
}
.category-wrapper .list-child-category .child-category .description p {
  margin-bottom: 0;
}
.category-wrapper .list-child-category .child-category:hover .featured-images {
  transform: scale(1.1);
}
.category-wrapper .list-child-category .child-category:hover .name-child-category img {
  right: calc(100% - 17px);
  opacity: 1;
}
.category-wrapper .list-child-category .child-category:hover .name-child-category span {
  left: 25px;
}
.category-wrapper .list-child-category .child-category:hover .name-child-category span a {
  color: #00A1E4;
}
.category-wrapper ul.nav-tabs {
  border: 0;
  padding-top: 50px;
}
.category-wrapper ul.nav-tabs li a.active {
  border: 0;
  color: #00A1E4;
  background-color: transparent;
}
.category-wrapper ul.nav-tabs li a.active::before {
  content: "";
  border-bottom: 1px solid #00A1E4;
  position: absolute;
  width: 100%;
}
.category-wrapper ul.nav-tabs li a {
  border: 0;
  border-bottom: 1px solid #dddddd;
  border-width: 90%;
  color: #999;
  position: relative;
  transition: all ease 0.3s;
  margin-left: 30px;
  padding-left: 0;
  font-size: 13px;
  text-transform: uppercase;
}
.category-wrapper ul.nav-tabs li a::before {
  content: "";
  border-bottom: 1px solid #f1f1f1;
  position: absolute;
  transition: all ease 0.5s;
  width: 0;
  bottom: 0;
  left: -1px;
}
.category-wrapper ul.nav-tabs li a:hover {
  color: #00A1E4;
}
.category-wrapper ul.nav-tabs li a:hover::before {
  width: 100%;
  border-bottom: 1px solid #00A1E4;
}
.category-wrapper ul.nav-tabs li:first-child a {
  margin-left: 0;
}

.categories-wrapper {
  padding-top: 54px;
  padding-bottom: 30px;
}
.categories-wrapper .container ul.nav-tabs {
  border: 0;
  padding-top: 25px;
}
.categories-wrapper .container ul.nav-tabs li a.active {
  border: 0;
  color: #00A1E4;
  background-color: transparent;
}
.categories-wrapper .container ul.nav-tabs li a.active::before {
  content: "";
  border-bottom: 1px solid #00A1E4;
  position: absolute;
  width: 100%;
}
.categories-wrapper .container ul.nav-tabs li a {
  border: 0;
  border-bottom: 1px solid #dddddd;
  border-width: 90%;
  color: #999;
  padding-right: 4px;
  position: relative;
  transition: all ease 0.3s;
  margin-left: 15px;
  padding-left: 0;
  font-size: 14px;
  text-transform: uppercase;
}
.categories-wrapper .container ul.nav-tabs li a::before {
  content: "";
  border-bottom: 1px solid #f1f1f1;
  position: absolute;
  transition: all ease 0.5s;
  width: 0;
  bottom: 0;
  left: -1px;
}
.categories-wrapper .container ul.nav-tabs li a:hover {
  color: #00A1E4;
}
.categories-wrapper .container ul.nav-tabs li a:hover::before {
  width: 100%;
  border-bottom: 1px solid #00A1E4;
}
.categories-wrapper .container ul.nav-tabs li:first-child a {
  margin-left: 0;
}
.categories-wrapper .container .tab-content {
  min-height: 350px;
}
.categories-wrapper .container .tab-content .description-category {
  color: #666;
  font-size: 15px;
}
.categories-wrapper .container .tab-content .category-click {
  background-color: #00A1E4;
  color: #fff;
  border-radius: 30px;
  padding: 10px 20px;
  margin-top: 30px;
  display: inline-block;
  position: relative;
  transition: all linear 0.3s;
  border: 2px solid transparent;
  z-index: 10;
}
.categories-wrapper .container .tab-content .category-click::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  opacity: 0;
  z-index: -1;
  transition: all linear 0.3s;
  height: 100%;
  padding: 10px 20px;
  background-color: rgba(255, 255, 255, 0.7);
}
.categories-wrapper .container .tab-content .category-click:hover {
  color: #00A1E4;
  border: 2px solid #00A1E4;
}
.categories-wrapper .container .tab-content .category-click:hover::before {
  width: 100%;
  border-radius: 30px;
  opacity: 1;
}
.categories-wrapper .container .tab-content .category-click i {
  padding-left: 10px;
}
.categories-wrapper .container .info-category h4.title {
  font-size: 20px;
  color: #666;
}
.categories-wrapper .container .info-category h4.title span {
  color: #00A1E4;
}
.categories-wrapper .container .info-category .description {
  font-size: 14px;
  color: #666;
}
.categories-wrapper .container .list-categories {
  padding-top: 50px;
}
.categories-wrapper .container .list-categories h3.title {
  font-size: 20px;
  color: #00A1E4;
  padding-bottom: 10px;
  position: relative;
  margin-bottom: 45px;
  min-height: 30px;
}
.categories-wrapper .container .list-categories h3.title::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 115px;
  height: 1px;
  background-color: #00A1E4;
}
.categories-wrapper .container .list-categories .child-category {
  margin-bottom: 50px;
  font-size: 17px;
  color: #00A1E4;
  position: relative;
  padding-bottom: 10px;
}
.categories-wrapper .container .list-categories .child-category::before {
  position: absolute;
  content: "";
  left: 0;
  bottom: 0;
  height: 2px;
  width: 20px;
  background: #666666;
}
.categories-wrapper .container .list-categories .child-category a {
  color: #00A1E4;
}
.categories-wrapper .container .list-categories .info {
  background-color: #fff;
  position: relative;
}
.categories-wrapper .container .list-categories .info .status {
  position: absolute;
  top: -10px;
  left: 21px;
  z-index: 10;
}
.categories-wrapper .container .list-categories .info:hover .featured-images::before {
  width: 100%;
  opacity: 1;
}
.categories-wrapper .container .list-categories .info:hover .featured-images .product-detail {
  left: 50%;
  opacity: 1;
}
.categories-wrapper .container .list-categories .info:hover .info-product {
  padding: 20px 25px;
}
.categories-wrapper .container .list-categories .info:hover .info-product h3.title a {
  color: #00A1E4;
}
.categories-wrapper .container .list-categories .info .featured-images {
  padding: 70px 25px 60px;
  position: relative;
  /*height:240px;*/
}
.categories-wrapper .container .list-categories .info .featured-images img.mx-auto {
  width: 100%;
  /*                        height: 100%;
                          max-width: 100%;
                          max-height: 100%;*/
}
.categories-wrapper .container .list-categories .info .featured-images::before {
  position: absolute;
  width: 0;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  opacity: 0;
  transition: all linear 0.3s;
  background-color: rgba(0, 161, 228, 0.5);
}
.categories-wrapper .container .list-categories .info .featured-images::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 25px;
  width: calc(100% - 50px);
  height: 1px;
  background-color: #e5e5e5;
}
.categories-wrapper .container .list-categories .info .featured-images .product-detail {
  position: absolute;
  top: 50%;
  left: -10px;
  transition: all linear 0.3s;
  transition-delay: 0.2s;
  opacity: 0;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 15px;
}
.categories-wrapper .container .list-categories .info .featured-images .product-detail img {
  padding-left: 5px;
}
.categories-wrapper .container .list-categories .info .info-product {
  padding: 20px 25px;
}
.categories-wrapper .container .list-categories .info .info-product h3.title {
  height: 82px;
  margin-bottom: 0;
  padding-bottom: 10px;
}
.categories-wrapper .container .list-categories .info .info-product h3.title a {
  font-size: 14px;
  color: #666;
}
@media (max-width: 1680px) {
  .categories-wrapper .container .list-categories .info .info-product h3.title a {
    font-size: 14px;
  }
}
.categories-wrapper .container .list-categories .info .info-product h3.title::before {
  height: 0;
}
.categories-wrapper .container .list-categories .info .info-product .price {
  font-size: 13px;
  color: #00A1E4;
  min-height: 47px;
}
.categories-wrapper .container .list-categories .info .info-product .price span {
  position: relative;
  font-size: 15px;
}
.categories-wrapper .container .list-categories .info .info-product .price span img {
  padding-bottom: 15px;
}
.categories-wrapper .container .list-categories .info .info-product .description {
  font-size: 13px;
  color: #666;
  text-align: justify;
  min-height: 125px;
  padding: 7px 0;
  height: 80px;
  overflow: auto;
}
.categories-wrapper .container .list-categories .info .info-product .tag-product span {
  background-color: #ebebeb;
  padding: 4px 7px;
  border-radius: 2px;
  margin-right: 2px;
}
.categories-wrapper .container .list-categories .info .info-product .tag-product span a {
  font-size: 10px;
  color: #6b6767;
}

.general-info {
  padding-top: 60px;
  background-color: #fff;
  margin-top: 40px;
}
.general-info .container h3.title {
  font-size: 20px;
  color: #999;
}
.general-info .container h3.title span {
  padding-top: 10px;
  color: #00A1E4;
}
.general-info .container .gallery-top {
  border: 1px solid #f2f2f2;
}
.general-info .container .gallery-top .swiper-wrapper {
  height: 100%;
}
.general-info .container .gallery-top .swiper-wrapper .swiper-slide {
  height: 100%;
  min-height: 435px;
  position: relative;
}
.general-info .container .gallery-top .swiper-wrapper .swiper-slide img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 80%;
}
.general-info .container .gallery-top .swiper-button-next,
.general-info .container .gallery-top .swiper-button-prev {
  position: absolute;
  top: 50%;
  width: 20px;
  height: 35px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 20px 35px;
  background-position: center;
  background-repeat: no-repeat;
}
.general-info .container .gallery-thumbs {
  padding-top: 20px;
  padding-bottom: 40px;
}
.general-info .container .gallery-thumbs .swiper-slide {
  border: 1px solid #f2f2f2;
  height: 80px;
  position: relative;
}
.general-info .container .gallery-thumbs .swiper-slide img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  max-width: 80%;
  opacity: 0.7;
}
.general-info .container .gallery-thumbs .swiper-slide.swiper-slide-active {
  border: 2px solid #00A1E4;
}
.general-info .container .gallery-thumbs .swiper-slide.swiper-slide-active img {
  opacity: 1;
}
.general-info .container .info-product {
  border-bottom: 1px solid #f2f2f2;
  padding-bottom: 15px;
}
.general-info .container .info-product span {
  font-size: 15px;
  color: #00A1E4;
  padding-bottom: 5px;
}
.general-info .container .description {
  font-size: 13px;
  color: #666;
  padding: 20px 0;
  border-bottom: 1px solid #f2f2f2;
}
.general-info .container .list-featured {
  padding: 20px 0;
  border-bottom: 1px solid #f2f2f2;
}
.general-info .container .list-featured ul {
  padding: 0;
  list-style: none;
}
.general-info .container .list-featured ul li {
  font-size: 15px;
  color: #666;
}
.general-info .container .list-featured ul img {
  padding-right: 3px;
}
.general-info .container .list-featured p {
  font-size: 15px;
  color: #666;
  margin-bottom: 0;
  padding-left: 20px;
  position: relative;
}
.general-info .container .list-featured p::before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 13px;
  height: 11px;
  background: url(../images/check.png);
}
.general-info .container .price {
  padding: 20px 0;
  border-bottom: 1px solid #f2f2f2;
  font-size: 15px;
  color: #00A1E4;
}
.general-info .container .price span {
  padding-left: 15px;
  font-size: 20px;
}
.general-info .container .price span img {
  padding-bottom: 15px;
}
.general-info .container .catalog {
  padding: 20px 0;
  border-bottom: 1px solid #f2f2f2;
}
.general-info .container .catalog a.store-click {
  display: inline-block;
  padding: 10px 20px;
  background-color: #00A1E4;
  color: #fff;
  border-radius: 30px;
  font-size: 15px;
}
.general-info .container .catalog a.store-click i {
  padding-left: 7px;
}
.general-info .container .catalog span {
  padding-left: 30px;
}
.general-info .container .catalog span a {
  font-size: 15px;
  color: #00A1E4;
}
.general-info .container .catalog span img {
  padding-right: 10px;
}
.general-info .container .intro {
  padding: 20px 0;
  font-size: 15px;
  color: #666;
}
.general-info .container .intro a {
  color: #00A1E4;
}

.info-product-detail {
  background-color: #f6f6f6;
  padding-top: 40px;
}
.info-product-detail .list-featured ul {
  padding: 0;
  list-style: none;
}
.info-product-detail .list-featured ul li {
  display: inline-block;
}
.info-product-detail .list-featured ul li a {
  font-size: 20px;
  color: #999;
  padding-right: 30px;
  margin-right: 30px;
  position: relative;
  padding-bottom: 15px;
  transition: all linear 0.3s;
  display: block;
}
.info-product-detail .list-featured ul li a::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background-color: #ddd;
}
.info-product-detail .list-featured ul li a::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  opacity: 0;
  transition: all linear 0.3s;
  height: 1px;
  background-color: #00A1E4;
}
.info-product-detail .list-featured ul li:hover a {
  color: #00A1E4;
}
.info-product-detail .list-featured ul li:hover a::after {
  width: 100%;
  opacity: 1;
}
.info-product-detail .list-featured ul li.active a {
  color: #00A1E4;
}
.info-product-detail .list-featured ul li.active a::after {
  width: 100%;
  opacity: 1;
}
.info-product-detail .content {
  padding-top: 50px;
  text-align: justify;
}
.info-product-detail .content p img {
  margin: 40px auto;
  display: block;
}
.info-product-detail .featured {
  padding-top: 30px;
  padding-bottom: 90px;
}
.info-product-detail .featured h4.title {
  font-size: 25px;
  color: #00A1E4;
  padding-top: 10px;
  position: relative;
  line-height: 25px;
  margin-bottom: 0;
  padding-bottom: 45px;
}
.info-product-detail .featured h4.title::before {
  position: absolute;
  content: "";
  width: 20px;
  height: 2px;
  background-color: #00A1E4;
  top: 0;
  left: 0;
}
.info-product-detail .featured .name-category {
  font-size: 17px;
  color: #333;
  line-height: 17px;
  padding-bottom: 30px;
}
.info-product-detail .featured .list-featured .featured-images {
  float: left;
  max-width: 100px;
  width: 100%;
}
.info-product-detail .featured .list-featured .info {
  float: left;
  width: calc(100% - 100px);
}
.info-product-detail .featured .list-featured .info span {
  display: block;
  color: #333;
}
.info-product-detail .featured .list-featured .info .name {
  padding-top: 7px;
  font-size: 15px;
  line-height: 15px;
  padding-bottom: 15px;
}
.info-product-detail .featured .list-featured .info .description {
  font-size: 14px;
}

.related-product .container .list-related-product .swiper-related {
  padding-bottom: 50px;
}
.related-product .container .list-related-product .swiper-related .swiper-button-next-custom {
  position: absolute;
  bottom: 60px;
  right: calc(50% - 25px);
  transform: translateX(50%);
  cursor: pointer;
}
.related-product .container .list-related-product .swiper-related .swiper-button-prev-custom {
  position: absolute;
  bottom: 60px;
  left: calc(50% - 25px);
  transform: translateX(-50%);
  cursor: pointer;
}
.related-product .container .list-related-product .swiper-related .info {
  background-color: #fff;
  position: relative;
}
.related-product .container .list-related-product .swiper-related .info .status {
  position: absolute;
  top: 0;
  left: 21px;
  z-index: 10;
}
.related-product .container .list-related-product .swiper-related .info:hover .featured-images::before {
  width: 100%;
  opacity: 1;
}
.related-product .container .list-related-product .swiper-related .info:hover .featured-images .product-detail {
  left: 50%;
  opacity: 1;
}
.related-product .container .list-related-product .swiper-related .info:hover .info-product {
  padding: 20px 25px;
}
.related-product .container .list-related-product .swiper-related .info:hover .info-product h3.title a {
  color: #00A1E4;
}
.related-product .container .list-related-product .swiper-related .info .featured-images {
  padding: 70px 25px 60px;
  position: relative;
}
.related-product .container .list-related-product .swiper-related .info .featured-images::before {
  position: absolute;
  width: 0;
  content: "";
  top: 0;
  left: 0;
  height: 100%;
  opacity: 0;
  transition: all linear 0.3s;
  background-color: rgba(0, 161, 228, 0.5);
}
.related-product .container .list-related-product .swiper-related .info .featured-images::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 25px;
  width: calc(100% - 50px);
  height: 1px;
  background-color: #e5e5e5;
}
.related-product .container .list-related-product .swiper-related .info .featured-images .product-detail {
  position: absolute;
  top: 50%;
  left: -10px;
  transition: all linear 0.3s;
  transition-delay: 0.2s;
  opacity: 0;
  transform: translate(-50%, -50%);
  color: #fff;
  font-size: 15px;
}
.related-product .container .list-related-product .swiper-related .info .featured-images .product-detail img {
  padding-left: 5px;
}
.related-product .container .list-related-product .swiper-related .info .info-product {
  padding: 20px 25px;
}
.related-product .container .list-related-product .swiper-related .info .info-product h3.title {
  height: 85px;
  line-height: 20px;
  margin-top: 40px;
  padding-bottom: 15px;
}
.related-product .container .list-related-product .swiper-related .info .info-product h3.title a {
  font-size: 15px;
  color: #666;
}
.related-product .container .list-related-product .swiper-related .info .info-product h3.title::before {
  height: 0;
}
.related-product .container .list-related-product .swiper-related .info .info-product .price {
  font-size: 13px;
  color: #00A1E4;
  min-height: 30px;
}
.related-product .container .list-related-product .swiper-related .info .info-product .price span {
  position: relative;
  font-size: 15px;
}
.related-product .container .list-related-product .swiper-related .info .info-product .price span img {
  padding-bottom: 15px;
}
.related-product .container .list-related-product .swiper-related .info .info-product .description {
  font-size: 13px;
  color: #666;
  text-align: justify;
  padding: 7px 0;
  min-height: 110px;
}
.related-product .container .list-related-product .swiper-related .info .info-product .tag-product span {
  background-color: #ebebeb;
  padding: 4px 7px;
  border-radius: 2px;
  margin-right: 2px;
}
.related-product .container .list-related-product .swiper-related .info .info-product .tag-product span a {
  font-size: 10px;
  color: #6b6767;
}
.related-product .container .list-related-product .swiper-related .info .info-product .tag-product span a :hover {
  color: #00A1E4;
}

.related-product {
  padding-top: 60px;
}
.related-product h3.title {
  margin-bottom: 0;
  padding-bottom: 50px;
}
.related-product h3.title a {
  font-size: 15px;
  color: #666;
}

/*.content-table{
    table{
        tr{
            &:nth-child(2n+1){
                margin: 0px;
                padding: 0px;
                border: 0px;
                box-sizing: border-box;
                background: transparent;
                font-weight: inherit;
                outline: 0px;
                vertical-align: top;
                height: 15pt;
                td{
                    margin: 0px;
                    padding: 0in 5.4pt;
                    border-top: none;
                    border-right: 1pt solid windowtext;
                    border-bottom: 1pt solid windowtext;
                    border-left: 1pt solid windowtext;
                    border-image: initial;
                    box-sizing: border-box;
                    border-collapse: collapse;
                    vertical-align: middle;
                    width: 122pt;
                    height: 15pt;
                    p{
                        margin: 0px 0px 0.0001pt;
                        padding: 0px;
                        border: 0px;
                        box-sizing: border-box;
                        background: transparent;
                        font-weight: inherit;
                        outline: 0px;
                        vertical-align: top;
                        font-size: 14px;
                        line-height: normal;
                        span{
                            margin: 0px;
                            padding: 0px;
                            border: 0px;
                            box-sizing: border-box;
                            background: transparent;
                            font-weight: inherit;
                            outline: 0px;
                            vertical-align: top;
                            color: #000;
                        }
                    }
                }
            }
            &:nth-child(2n){
                margin: 0px;
                padding: 0px;
                border: 0px;
                box-sizing: border-box;
                background: transparent;
                font-weight: inherit;
                outline: 0px;
                vertical-align: top;
                height: 15pt;
                td{
                    margin: 0px;
                    padding: 0in 5.4pt;
                    border-top: none;
                    border-right: 1pt solid windowtext;
                    border-bottom: 1pt solid windowtext;
                    border-left: 1pt solid windowtext;
                    border-image: initial;
                    box-sizing: border-box;
                    border-collapse: collapse;
                    vertical-align: middle;
                    width: 122pt;
                    background: #ccebfc;
                    height: 15pt;
                    p{
                        margin: 0px 0px 0.0001pt;
                        padding: 0px;
                        border: 0px;
                        box-sizing: border-box;
                        background: transparent;
                        font-weight: inherit;
                        outline: 0px;
                        vertical-align: top;
                        font-size: 14px;
                        line-height: normal;
                        span{
                            margin: 0px;
                            padding: 0px;
                            border: 0px;
                            box-sizing: border-box;
                            background: transparent;
                            font-weight: inherit;
                            outline: 0px;
                            vertical-align: top;
                            color: black;
                        }
                    }
                }
            }
            &:nth-child(1),&:nth-child(2){
                margin: 0px;
                padding: 0px;
                border: 0px;
                box-sizing: border-box;
                background: transparent;
                font-weight: inherit;
                outline: 0px;
                vertical-align: top;
                height: 15pt;
                td{
                    margin: 0px;
                    padding: 0in 5.4pt;
                    border-width: 1pt;
                    border-style: solid;
                    border-color: windowtext windowtext black;
                    border-image: initial;
                    box-sizing: border-box;
                    border-collapse: collapse;
                    vertical-align: middle;
                    width: 122pt;
                    background: #2c89c3;
                    height: 15pt;
                    p{
                        margin: 0px;
                        padding: 0px;
                        border: 0px;
                        margin-bottom:0;
                        box-sizing: border-box;
                        background: transparent;
                        font-weight: inherit;
                        outline: 0px;
                        vertical-align: top;
                        font-size: 14px;
                        text-align: center;
                        line-height: 21px;
                        color: #fff;
                        font-weight: bold;
                        span{
                            margin: 0px;
                            padding: 0px;
                            border: 0px;
                            box-sizing: border-box;
                            background: transparent;
                            font-weight: bold;
                            outline: 0px;
                            vertical-align: top;
                            color: #fff;
                            span{
                                margin: 0px;
                                padding: 0px;
                                border: 0px;
                                box-sizing: border-box;
                                background: transparent;
                                font-weight: inherit;
                                outline: 0px;
                                vertical-align: top;
                                color: #fff;
                            }
                        }
                    }
                }
            }
        }
    }
}*/
@media screen and (max-width: 767px) {
  .category-wrapper .list-child-category {
    padding: 0 15px;
    background-color: #fff;
  }

  .general-info .container .catalog span {
    padding-left: 0;
    padding-top: 20px;
  }

  .info-product-detail .list-featured ul li a {
    margin-bottom: 20px;
  }
}
.contact-header {
  margin: 130px 40px 40px 50px;
}
.contact-header h3 {
  color: #00a1e4;
}
.contact-header p {
  font-size: 15px;
}

.contact-main {
  position: relative;
  min-height: 620px;
  margin-bottom: 60px;
}
.contact-main img {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}
.contact-main .contact-form {
  padding-top: 50px;
}
.contact-main .contact-form .show-error-msg ul li {
  font-size: 15px;
}
.contact-main .contact-form input {
  height: 40px;
  color: #494747;
  font-size: 14px;
  padding-left: 25px;
  outline: none;
  box-shadow: none;
  border-radius: 0;
}
.contact-main .contact-form label {
  font-size: 14px;
  color: black;
}
.contact-main .contact-form textarea {
  outline: none;
  box-shadow: none;
  border-radius: 0;
  padding-left: 25px;
  font-size: 14px !important;
}
.contact-main .contact-form button {
  border-radius: 30px;
  padding: 5px 20px;
  color: #fff;
  background-color: #00A1E4;
  margin-top: 30px;
  position: relative;
  z-index: 10;
  border: 1px solid transparent;
}
.contact-main .contact-form button::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  border-radius: 30px;
  width: 0;
  opacity: 0;
  transition: all linear 0.3s;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: -1;
  border: 1px solid #00A1E4;
}
.contact-main .contact-form button:hover {
  color: #00A1E4;
  border: 1px solid #00A1E4;
}
.contact-main .contact-form button:hover::before {
  width: 100%;
  opacity: 1;
}
.contact-main .contact-form button .contact-bg-overlay {
  position: absolute;
  background-color: #cdcdcd;
  opacity: 0.6;
  width: 0%;
  height: 98%;
  top: 2%;
  left: 1.6%;
  border-radius: 30px;
  display: none;
}

.contact-info-company .content {
  padding: 30px 40px;
}
.contact-info-company .content:first-child {
  border-bottom: 1px solid #cccccc;
}
.contact-info-company .content div {
  padding: 0;
}
.contact-info-company .content .company-name {
  font-size: 20px;
  color: #333333;
}
.contact-info-company .content .company-info {
  font-size: 13px;
  color: #333333;
}
.contact-info-company .content .company-info-button a {
  background-color: #00A1E4;
  padding: 12px 24px;
  color: #ffffff;
  border-radius: 25px;
  position: relative;
  z-index: 2;
  font-size: 15px;
  border: 1px solid transparent;
}
.contact-info-company .content .company-info-button a img {
  margin-right: 5px;
  display: inline;
}
.contact-info-company .content .company-info-button a:before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  border-radius: 25px;
  width: 0;
  opacity: 0;
  transition: all linear 0.3s;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: -1;
  border: 1px solid #00A1E4;
}
.contact-info-company .content .company-info-button a:hover {
  color: #00A1E4;
  border: 1px solid #00A1E4;
}
.contact-info-company .content .company-info-button a:hover::before {
  width: 100%;
  opacity: 1;
}

.modal .modal-dialog {
  top: 20px;
  margin: 0 auto;
  max-width: 1000px;
  display: block;
}
.modal .modal-dialog .modal-content {
  border-radius: 0;
}
.modal .modal-dialog .modal-content .modal-header {
  padding-top: 15px;
  padding-bottom: 15px;
  padding-right: 10px;
}
.modal .modal-dialog .modal-content .modal-header .modal-title {
  width: 100%;
  text-align: center;
}

.list-services-wrapper {
  padding-top: 50px;
}
.list-services-wrapper .container .each-service {
  padding-bottom: 40px;
}
.list-services-wrapper .container .each-service:hover .featured-images .icon-hover {
  width: 100%;
  opacity: 1;
}
.list-services-wrapper .container .each-service:hover .featured-images .icon-hover img {
  opacity: 1;
}
.list-services-wrapper .container .each-service:hover .hotline-click {
  color: #00A1E4;
}
.list-services-wrapper .container .each-service:hover .hotline-click:after {
  width: 220px;
}
.list-services-wrapper .container .each-service .featured-images {
  position: relative;
  display: block;
}
.list-services-wrapper .container .each-service .featured-images img.images {
  width: 100%;
}
.list-services-wrapper .container .each-service .featured-images .icon-hover {
  position: absolute;
  width: 0;
  opacity: 0;
  height: 100%;
  left: 0;
  top: 0;
  transition: all linear 0.3s;
  background-color: rgba(0, 161, 228, 0.7);
}
.list-services-wrapper .container .each-service .featured-images .icon-hover img {
  position: absolute;
  top: 50%;
  opacity: 0;
  transition: all linear 0.3s;
  left: 50%;
  transform: translate(-50%, -50%);
}
.list-services-wrapper .container .each-service .hotline-click {
  padding: 20px 0;
  display: block;
  transition: all linear 0.3s;
  position: relative;
  font-size: 17px;
  color: #232323;
}
.list-services-wrapper .container .each-service .hotline-click:before {
  content: "";
  position: absolute;
  transition: all linear 0.3s;
  bottom: 0;
  left: 0;
  width: 220px;
  height: 1px;
  background-color: #ddd;
}
.list-services-wrapper .container .each-service .hotline-click::after {
  content: "";
  position: absolute;
  transition: all linear 0.3s;
  bottom: 0;
  left: 0;
  width: 0%;
  height: 1px;
  background-color: #00A1E4;
}

.list-service-detail {
  padding-bottom: 40px;
}
.list-service-detail .list-service {
  border-bottom: 0;
  padding-top: 45px;
}
.list-service-detail .list-service li a {
  border: 0;
  background-color: transparent;
  text-transform: uppercase;
  font-size: 15px;
  color: #999;
  position: relative;
  padding-left: 0;
  margin-right: 30px;
  padding-right: 30px;
  transition: all linear 0.3s;
  min-height: 74.5px;
}
.list-service-detail .list-service li a::before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 105px;
  height: 1px;
  background-color: #dddddd;
}
.list-service-detail .list-service li a::after {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  transition: all linear 0.3s;
  background-color: #00A1E4;
}
.list-service-detail .list-service li a:hover {
  color: #00A1E4;
}
.list-service-detail .list-service li a:hover::after {
  width: 105px;
}
.list-service-detail .list-service li a.active {
  color: #00A1E4;
  background-color: transparent;
}
.list-service-detail .list-service li a.active::before {
  background-color: #00A1E4;
}
.list-service-detail .tab-content #ho-tro-ky-thuat .description {
  padding: 50px;
  font-size: 15px;
  color: #666;
}
.list-service-detail .tab-content #ho-tro-ky-thuat .description span {
  display: block;
  padding-top: 25px;
  line-height: 20px;
  color: #00A1E4;
}
.list-service-detail .tab-content #ho-tro-ky-thuat .description span i {
  transform: rotate(90deg);
  color: #999;
  padding-right: 5px;
}
.list-service-detail .tab-content #ho-tro-ky-thuat .description span a {
  color: #00A1E4;
}
.list-service-detail .tab-content #ho-tro-ky-thuat .form-support {
  background-color: #fff;
  padding: 45px 0 0 45px;
}
.list-service-detail .tab-content #ho-tro-ky-thuat .form-support .form-group {
  margin-bottom: 10px;
}
.list-service-detail .tab-content #ho-tro-ky-thuat .form-support .form-group label {
  color: #333;
}
.list-service-detail .tab-content #ho-tro-ky-thuat .form-support .form-group input {
  height: 40px;
  border-radius: 0;
  color: #666;
  font-size: 14px;
}
.list-service-detail .tab-content #ho-tro-ky-thuat .form-support .form-group input:focus {
  box-shadow: none;
}
.list-service-detail .tab-content #ho-tro-ky-thuat .form-support .form-group textarea {
  border-radius: 0;
  color: #666;
  font-size: 14px;
  min-height: 200px;
  outline: none;
}
.list-service-detail .tab-content #ho-tro-ky-thuat .form-support .form-group textarea:focus {
  box-shadow: none;
}
.list-service-detail .tab-content #ho-tro-ky-thuat .form-support .form-group button {
  color: #fff;
  font-size: 15px;
  background-color: #00A1E4;
  border-radius: 30px;
  border: 0;
  position: relative;
  z-index: 10;
  border: 1px solid transparent;
  transition: all linear 0.3s;
  margin-top: 20px;
}
.list-service-detail .tab-content #ho-tro-ky-thuat .form-support .form-group button::before {
  position: absolute;
  content: "";
  top: 0;
  left: 0;
  border-radius: 30px;
  width: 0;
  opacity: 0;
  transition: all linear 0.3s;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.7);
  z-index: -1;
}
.list-service-detail .tab-content #ho-tro-ky-thuat .form-support .form-group button i {
  padding-left: 5px;
}
.list-service-detail .tab-content #ho-tro-ky-thuat .form-support .form-group button:hover {
  color: #00A1E4;
  border: 1px solid #00A1E4;
}
.list-service-detail .tab-content #ho-tro-ky-thuat .form-support .form-group button:hover::before {
  width: 100%;
  opacity: 1;
}
.list-service-detail .tab-content #ho-tro-ky-thuat .form-support img.images {
  padding-left: 20px;
}
.list-service-detail .tab-content #chinh-sach-bao-hanh {
  padding-top: 30px;
}
.list-service-detail .tab-content #chinh-sach-bao-hanh .description {
  font-size: 15px;
  color: #333;
  padding-bottom: 20px;
}
.list-service-detail .tab-content #chinh-sach-bao-hanh .list-guarantee h4.title {
  padding-top: 25px;
  font-size: 14px;
  color: #333;
}
.list-service-detail .tab-content #chinh-sach-bao-hanh .list-guarantee .content {
  font-size: 14px;
  color: #666;
}
.list-service-detail .tab-content #chinh-sach-bao-hanh .list-guarantee .content p span {
  color: #333;
  display: flex;
}
.list-service-detail .tab-content #chinh-sach-bao-hanh .list-guarantee .content p span img {
  width: 25px;
  height: 25px;
  padding-right: 0;
  margin-right: 7px;
}
.list-service-detail .tab-content #chinh-sach-bao-hanh .list-guarantee .content p img {
  padding-right: 7px;
}
.list-service-detail .tab-content #chinh-sach-bao-hanh .list-guarantee .content ul {
  padding-left: 0px;
  list-style: none;
}
.list-service-detail .tab-content #chinh-sach-bao-hanh .list-guarantee .content ul li {
  position: relative;
  padding-left: 30px;
}
.list-service-detail .tab-content #chinh-sach-bao-hanh .list-guarantee .content ul li::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  background-color: #acacac;
  border-radius: 50%;
  top: 8px;
  left: 7px;
}
.list-service-detail .tab-content #trung-tam-bao-hanh {
  padding-top: 30px;
}
.list-service-detail .tab-content #trung-tam-bao-hanh .description {
  font-size: 15px;
  color: #333;
  padding-bottom: 20px;
  text-align: justify;
}
.list-service-detail .tab-content #trung-tam-bao-hanh .description p {
  margin-bottom: 0;
}
.list-service-detail .tab-content #trung-tam-bao-hanh .search-guarantee {
  margin-top: 25px;
  position: relative;
}
.list-service-detail .tab-content #trung-tam-bao-hanh .search-guarantee .form-search {
  position: absolute;
  background-color: #fff;
  z-index: 10;
  padding: 20px 35px;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
}
@media screen and (max-width: 767px) {
  .list-service-detail .tab-content #trung-tam-bao-hanh .search-guarantee .form-search {
    top: 70px;
  }
}
.list-service-detail .tab-content #trung-tam-bao-hanh .search-guarantee .form-search .form-inline .form-group {
  margin-bottom: 5px;
  margin-top: 5px;
}
.list-service-detail .tab-content #trung-tam-bao-hanh .search-guarantee .form-search .form-inline .form-group span {
  font-size: 15px;
  color: #00A1E4;
  padding-right: 35px;
}
.list-service-detail .tab-content #trung-tam-bao-hanh .search-guarantee .form-search .form-inline .form-group select,
.list-service-detail .tab-content #trung-tam-bao-hanh .search-guarantee .form-search .form-inline .form-group .dropdown-toggle,
.list-service-detail .tab-content #trung-tam-bao-hanh .search-guarantee .form-search .form-inline .form-group .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  min-width: 300px;
  background-color: #f2f2f2;
  font-size: 15px;
  color: #666;
}
.list-service-detail .tab-content #trung-tam-bao-hanh .search-guarantee .form-search .form-inline .form-group select span,
.list-service-detail .tab-content #trung-tam-bao-hanh .search-guarantee .form-search .form-inline .form-group .dropdown-toggle span,
.list-service-detail .tab-content #trung-tam-bao-hanh .search-guarantee .form-search .form-inline .form-group .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) span {
  font-size: 15px;
  color: #666;
  left: 0;
}
.list-service-detail .tab-content #trung-tam-bao-hanh .search-guarantee .form-search .form-inline .line {
  height: 40px;
  width: 1px;
  background-color: #f2f2f2;
}
.list-service-detail .tab-content #trung-tam-bao-hanh .search-guarantee .form-search .form-inline .btn-search-store {
  z-index: 10;
  background-color: #00A1E4;
  border-radius: 30px;
  border: 0;
}
.list-service-detail .tab-content #trung-tam-bao-hanh .search-guarantee .form-search .form-inline .btn-search-store i {
  padding-left: 5px;
}
.list-service-detail .tab-content #trung-tam-bao-hanh .list-store {
  padding-top: 50px;
}
.list-service-detail .tab-content #trung-tam-bao-hanh .list-store h3.title {
  font-size: 20px;
  color: #666;
  padding-bottom: 40px;
}
.list-service-detail .tab-content #trung-tam-bao-hanh .list-store .stores .store {
  margin-bottom: 45px;
  cursor: pointer;
}
.list-service-detail .tab-content #trung-tam-bao-hanh .list-store .stores .store:hover {
  box-shadow: 0px 0px 0px 1px #00A1E4 inset;
  background-color: white;
}
.list-service-detail .tab-content #trung-tam-bao-hanh .list-store .stores .store .name-store {
  padding-left: 10px;
  display: block;
  position: relative;
  font-size: 16px;
  text-transform: capitalize;
  color: #00A1E4;
  width: 90%;
}
.list-service-detail .tab-content #trung-tam-bao-hanh .list-store .stores .store .name-store::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  background-color: #00A1E4;
  border-radius: 50%;
  top: 8px;
  left: 0;
}
.list-service-detail .tab-content #trung-tam-bao-hanh .list-store .stores .store span {
  padding-bottom: 5px;
}
.list-service-detail .tab-content #trung-tam-bao-hanh .list-store .stores .store .address,
.list-service-detail .tab-content #trung-tam-bao-hanh .list-store .stores .store .phone {
  padding-left: 30px;
  display: block;
  position: relative;
  font-size: 14px;
  color: #666;
  width: 90%;
}
.list-service-detail .tab-content #trung-tam-bao-hanh .list-store .stores .store .address::before,
.list-service-detail .tab-content #trung-tam-bao-hanh .list-store .stores .store .phone::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 1px;
  background-color: #dddddd;
  top: 8px;
  left: 10px;
}
.list-service-detail .tab-content #dang-ky-bao-hanh-bao-tri {
  padding-top: 30px;
}
.list-service-detail .tab-content #dang-ky-bao-hanh-bao-tri .option-header {
  margin-bottom: 55px;
}
.list-service-detail .tab-content #dang-ky-bao-hanh-bao-tri .option-header .for-personal {
  background-color: #00A1E4;
  color: #ffffff;
  padding: 15px 0;
  font-size: 20px;
  border-radius: 4px;
}
.list-service-detail .tab-content #dang-ky-bao-hanh-bao-tri .option-header .for-personal span img {
  max-height: 30px;
}
.list-service-detail .tab-content #dang-ky-bao-hanh-bao-tri .option-header .for-store {
  background-color: #333333;
  color: #ffffff;
  padding: 15px 0;
  font-size: 20px;
  border-radius: 4px;
  transition: all linear 0.4s;
}
.list-service-detail .tab-content #dang-ky-bao-hanh-bao-tri .option-header .for-store span img {
  max-height: 30px;
}
.list-service-detail .tab-content #dang-ky-bao-hanh-bao-tri .option-header .for-store:hover {
  background: #00A1E4;
}
.list-service-detail .tab-content #dang-ky-bao-hanh-bao-tri .option-request {
  color: #333333;
  font-size: 15px;
  margin-bottom: 50px;
}
.list-service-detail .tab-content #dang-ky-bao-hanh-bao-tri .form-main ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #999999;
  font-size: 14px;
}
.list-service-detail .tab-content #dang-ky-bao-hanh-bao-tri .form-main ::-moz-placeholder {
  /* Firefox 19+ */
  color: #999999;
  font-size: 14px;
}
.list-service-detail .tab-content #dang-ky-bao-hanh-bao-tri .form-main :-ms-input-placeholder {
  /* IE 10+ */
  color: #999999;
  font-size: 14px;
}
.list-service-detail .tab-content #dang-ky-bao-hanh-bao-tri .form-main :-moz-placeholder {
  /* Firefox 18- */
  color: #999999;
  font-size: 14px;
}
.list-service-detail .tab-content #dang-ky-bao-hanh-bao-tri .form-main select {
  font-size: 14px;
  color: #999999;
}
@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
  .list-service-detail .tab-content #dang-ky-bao-hanh-bao-tri .form-main .timestamp .row {
    width: 100%;
  }
}
.list-service-detail .tab-content #dang-ky-bao-hanh-bao-tri .form-main input,
.list-service-detail .tab-content #dang-ky-bao-hanh-bao-tri .form-main select {
  out-line: none;
  box-shadow: none;
  border-radius: 0;
  height: 40px;
}
.list-service-detail .tab-content #dang-ky-bao-hanh-bao-tri .form-main input.birthday {
  margin-right: 15px;
  display: block;
  width: 100%;
}
.list-service-detail .tab-content #dang-ky-bao-hanh-bao-tri .form-main .each-form {
  height: 100%;
  background-color: #fff;
}
.list-service-detail .tab-content #dang-ky-bao-hanh-bao-tri .form-main .product-info {
  background-image: url("../images/service-bg-person-info.png");
  padding: 50px 30px;
  border-bottom: 1px solid #e5e5e5;
}
.list-service-detail .tab-content #dang-ky-bao-hanh-bao-tri .form-main .product-info h3 {
  font-size: 20px;
  color: #00A1E4;
  line-height: 22px;
}
.list-service-detail .tab-content #dang-ky-bao-hanh-bao-tri .form-main .product-info p {
  font-size: 15px;
  color: #333333;
  line-height: 15px;
  margin: 0;
}
.list-service-detail .tab-content #dang-ky-bao-hanh-bao-tri .form-main .form-pro-content label {
  font-size: 14px;
  color: #333333;
  padding-right: 10px;
}
.list-service-detail .tab-content #dang-ky-bao-hanh-bao-tri .form-main .personal-info {
  background-image: url("../images/service-bg-person-info.png");
  padding: 50px 30px;
  border-bottom: 1px solid #e5e5e5;
}
.list-service-detail .tab-content #dang-ky-bao-hanh-bao-tri .form-main .personal-info h3 {
  font-size: 20px;
  color: #00A1E4;
  line-height: 22px;
}
.list-service-detail .tab-content #dang-ky-bao-hanh-bao-tri .form-main .personal-info p {
  font-size: 15px;
  color: #333333;
  line-height: 15px;
  margin: 0;
}
.list-service-detail .tab-content #dang-ky-bao-hanh-bao-tri .form-main .form-pro-content {
  padding: 27px 20px 105px;
  background-color: #ffffff;
}
.list-service-detail .tab-content #dang-ky-bao-hanh-bao-tri .form-main .form-pro-content .bootstrap-select {
  width: 100%;
  background-color: white;
  color: #999;
}
.list-service-detail .tab-content #dang-ky-bao-hanh-bao-tri .form-main .form-pro-content .bootstrap-select button {
  padding: 0.375rem 0.75rem;
  border: 1px solid #ced4da;
  out-line: none;
  box-shadow: none;
  border-radius: 0;
  height: 40px;
  background-color: transparent;
  color: #495057;
}
.list-service-detail .tab-content #dang-ky-bao-hanh-bao-tri .form-main .form-pro-content .bootstrap-select button:hover {
  background-color: transparent;
  out-line: none;
  box-shadow: none;
  border-radius: 0;
}
.list-service-detail .tab-content #dang-ky-bao-hanh-bao-tri .form-main .form-pro-content .bootstrap-select button:hover:after {
  background-color: transparent;
  out-line: none;
  box-shadow: none;
  border-radius: 0;
  border: none;
}
.list-service-detail .tab-content #dang-ky-bao-hanh-bao-tri .form-main .form-pro-content .bootstrap-select button:after {
  background-color: transparent;
  out-line: none;
  box-shadow: none;
  border-radius: 0;
  border: none;
}
.list-service-detail .tab-content #dang-ky-bao-hanh-bao-tri .form-main .form-personal-content {
  padding: 27px 20px 105px;
  background-color: #ffffff;
}
.list-service-detail .tab-content #dang-ky-bao-hanh-bao-tri .form-main .form-personal-content .bootstrap-select {
  width: 100%;
  background-color: white;
  color: #999;
}
.list-service-detail .tab-content #dang-ky-bao-hanh-bao-tri .form-main .form-personal-content .bootstrap-select button {
  padding: 0.375rem 0.75rem;
  border: 1px solid #ced4da;
  out-line: none;
  box-shadow: none;
  border-radius: 0;
  height: 40px;
  background-color: transparent;
  color: #495057;
}
.list-service-detail .tab-content #dang-ky-bao-hanh-bao-tri .form-main .form-personal-content .bootstrap-select button:hover {
  background-color: transparent;
  out-line: none;
  box-shadow: none;
  border-radius: 0;
}
.list-service-detail .tab-content #dang-ky-bao-hanh-bao-tri .form-main .form-personal-content .bootstrap-select button:hover:after {
  background-color: transparent;
  out-line: none;
  box-shadow: none;
  border-radius: 0;
  border: none;
}
.list-service-detail .tab-content #dang-ky-bao-hanh-bao-tri .form-main .form-personal-content .bootstrap-select button:after {
  background-color: transparent;
  out-line: none;
  box-shadow: none;
  border-radius: 0;
  border: none;
}
.list-service-detail .tab-content #dang-ky-bao-hanh-bao-tri .confirm-program {
  padding: 45px 0px;
}
.list-service-detail .tab-content #dang-ky-bao-hanh-bao-tri .confirm-program p {
  margin-bottom: 32px;
  font-size: 15px;
  color: #333333;
}
.list-service-detail .tab-content #dang-ky-bao-hanh-bao-tri .confirm-program div label {
  font-size: 15px;
  color: #333333;
}
.list-service-detail .tab-content #dang-ky-bao-hanh-bao-tri button {
  background-color: #00A1E4;
  font-size: 15px;
  color: white;
  padding: 6px 24px;
  border-radius: 25px;
  position: relative;
  z-index: 10;
}
.list-service-detail .tab-content #dang-ky-bao-hanh-bao-tri button::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 0;
  opacity: 0;
  transition: all linear 0.3s;
  background-color: rgba(255, 225, 255, 0.7);
  z-index: -1;
  border-radius: 25px;
}
.list-service-detail .tab-content #dang-ky-bao-hanh-bao-tri button:hover::after {
  width: 100%;
  opacity: 1;
}
.list-service-detail .tab-content #kiem-tra-so-serial .input-group-append {
  margin-left: -15px;
}
.list-service-detail .tab-content #kiem-tra-so-serial .container .kiem-tra-so-serial-title {
  padding: 0;
}
.list-service-detail .tab-content #kiem-tra-so-serial .container .kiem-tra-so-serial-title h3 {
  font-size: 15px;
  color: #000000;
  margin-top: 43px;
  margin-bottom: 26px;
}
.list-service-detail .tab-content #kiem-tra-so-serial .container .ktSerial-header {
  background-color: #ffffff;
  padding: 27px 46px;
  border-bottom: 1px solid #f6f6f6;
}
.list-service-detail .tab-content #kiem-tra-so-serial .container .ktSerial-header .form-check-serial {
  margin-top: 15px;
}
.list-service-detail .tab-content #kiem-tra-so-serial .container .ktSerial-header .descript-serial {
  background-color: #f2f2f2;
  font-size: 14px;
  color: #666666;
  display: inline-block;
  padding: 10px 15px;
}
.list-service-detail .tab-content #kiem-tra-so-serial .container .ktSerial-header .descript-serial a {
  color: unset;
}
.list-service-detail .tab-content #kiem-tra-so-serial .container .ktSerial-header .descript-serial a:hover {
  text-decoration: underline;
}
.list-service-detail .tab-content #kiem-tra-so-serial .container .ktSerial-header .descript-serial img {
  margin-right: 14px;
}
.list-service-detail .tab-content #kiem-tra-so-serial .container .ktSerial-header form ::-webkit-input-placeholder {
  /* Chrome/Opera/Safari */
  color: #999999;
  font-size: 14px;
}
.list-service-detail .tab-content #kiem-tra-so-serial .container .ktSerial-header form ::-moz-placeholder {
  /* Firefox 19+ */
  color: #999999;
  font-size: 14px;
}
.list-service-detail .tab-content #kiem-tra-so-serial .container .ktSerial-header form :-ms-input-placeholder {
  /* IE 10+ */
  color: #999999;
  font-size: 14px;
}
.list-service-detail .tab-content #kiem-tra-so-serial .container .ktSerial-header form :-moz-placeholder {
  /* Firefox 18- */
  color: #999999;
  font-size: 14px;
}
.list-service-detail .tab-content #kiem-tra-so-serial .container .ktSerial-header form input,
.list-service-detail .tab-content #kiem-tra-so-serial .container .ktSerial-header form select {
  out-line: none;
  box-shadow: none;
  border-radius: 0;
}
@media screen and (max-width: 434px) {
  .list-service-detail .tab-content #kiem-tra-so-serial .container .ktSerial-header form #search-serial {
    min-width: 273px;
  }
  .list-service-detail .tab-content #kiem-tra-so-serial .container .ktSerial-header form #btn-serial {
    margin: 15%;
  }
}
.list-service-detail .tab-content #kiem-tra-so-serial .container .ktSerial-header form label {
  font-size: 15px;
  color: #000000;
}
.list-service-detail .tab-content #kiem-tra-so-serial .container .ktSerial-header form button {
  background-color: #00A1E4;
  font-size: 15px;
  color: white;
  padding: 6px 24px;
  border-radius: 25px;
  position: relative;
  z-index: 10;
}
.list-service-detail .tab-content #kiem-tra-so-serial .container .ktSerial-header form button::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 100%;
  width: 0;
  opacity: 0;
  transition: all linear 0.3s;
  background-color: rgba(255, 225, 255, 0.7);
  z-index: -1;
  border-radius: 25px;
}
.list-service-detail .tab-content #kiem-tra-so-serial .container .ktSerial-header form button:hover::after {
  width: 100%;
  opacity: 1;
}
.list-service-detail .tab-content #kiem-tra-so-serial .container .ktSerial-content {
  background-color: #ffffff;
}
.list-service-detail .tab-content #kiem-tra-so-serial .container .ktSerial-content .content {
  padding: 0 46px;
  padding-bottom: 30px;
}
.list-service-detail .tab-content #kiem-tra-so-serial .container .ktSerial-content h3 {
  font-size: 20px;
  color: #00A1E4;
  padding: 25px 0;
  margin-bottom: 0;
}
.list-service-detail .tab-content #kiem-tra-so-serial .container .ktSerial-content h3.title {
  font-size: 20px;
  color: #00A1E4;
  padding: 40px 0 20px;
  margin-bottom: 0;
  position: relative;
  margin-bottom: 20px;
}
.list-service-detail .tab-content #kiem-tra-so-serial .container .ktSerial-content h3.title::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20px;
  height: 2px;
  background-color: #666;
}
.list-service-detail .tab-content #kiem-tra-so-serial .container .ktSerial-content p {
  font-size: 14px;
  color: #333333;
}
.list-service-detail .tab-content #kiem-tra-so-serial .container .ktSerial-content .info-customer {
  padding-top: 30px;
  padding: 46px;
}
.list-service-detail .tab-content #kiem-tra-so-serial .container .ktSerial-content .info-customer span {
  display: block;
  padding-bottom: 10px;
  color: #666;
  font-size: 14px;
}
.list-service-detail .tab-content #kiem-tra-so-serial .container .ktSerial-content .info-customer .respone span {
  color: #333;
}
.list-service-detail .tab-content #kiem-tra-so-serial .container .ktSerial-content .info-customer .respone span:last-child, .list-service-detail .tab-content #kiem-tra-so-serial .container .ktSerial-content .info-customer .respone span:nth-child(5) {
  color: #00A1E4;
}
.list-service-detail .tab-content #kiem-tra-so-serial .container .ktSerial-content .none-result {
  padding: 45px;
  background-color: #00A1E4;
  color: #fff;
}
.list-service-detail .tab-content #kiem-tra-so-serial .container .ktSerial-content .none-result span {
  display: block;
  padding-bottom: 10px;
  font-size: 14px;
}
.list-service-detail .tab-content #kiem-tra-so-serial .container .ktSerial-content .none-result .warning {
  padding-top: 20px;
}
.list-service-detail .tab-content #kiem-tra-so-serial .container .ktSerial-content .none-result .warning i {
  padding-right: 10px;
}
.list-service-detail .tab-content #tai-catalog .tai-catalog-content {
  margin-top: 60px;
}
.list-service-detail .tab-content #tai-catalog .tai-catalog-content .catalog-menu {
  background-color: white;
}
.list-service-detail .tab-content #tai-catalog .tai-catalog-content .catalog-menu ul {
  padding: 5px 20px;
}
.list-service-detail .tab-content #tai-catalog .tai-catalog-content .catalog-menu ul li {
  position: relative;
  background-color: transparent;
  display: inline-block;
  width: 100%;
  transition: all ease 0.3s;
  padding: 15px 0 15px 18px;
  border-top: 1px solid #e5e5e5;
}
.list-service-detail .tab-content #tai-catalog .tai-catalog-content .catalog-menu ul li:hover:before {
  background-color: #00A1E4;
  transition: all linear 0.3s;
}
.list-service-detail .tab-content #tai-catalog .tai-catalog-content .catalog-menu ul li:hover a {
  color: #00A1E4;
  transition: all linear 0.3s;
}
.list-service-detail .tab-content #tai-catalog .tai-catalog-content .catalog-menu ul li a {
  font-size: 15px;
  color: #666666;
}
.list-service-detail .tab-content #tai-catalog .tai-catalog-content .catalog-menu ul li a:before {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  background-color: #999999;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  left: 0;
}
.list-service-detail .tab-content #tai-catalog .tai-catalog-content .catalog-menu ul li:first-child {
  border-top: none;
}
.list-service-detail .tab-content #tai-catalog .tai-catalog-content .catalog-menu ul li a.active {
  color: #00A1E4;
}
.list-service-detail .tab-content #tai-catalog .tai-catalog-content .catalog-menu ul li a.active:before {
  background-color: #00A1E4;
}
.list-service-detail .tab-content #tai-catalog .tai-catalog-content .catalog-menu ul li.list-header-title {
  position: relative;
  background-color: #fff;
}
.list-service-detail .tab-content #tai-catalog .tai-catalog-content .catalog-menu ul li.list-header-title a {
  color: #00A1E4;
}
.list-service-detail .tab-content #tai-catalog .tai-catalog-content .catalog-menu ul.header-menu-list-group {
  background-color: #f6f6f6;
}
.list-service-detail .tab-content #tai-catalog .tai-catalog-content .catalog-menu ul.header-menu-list-group li {
  background-color: #f6f6f6;
  border: none;
}
.list-service-detail .tab-content #tai-catalog .tai-catalog-content .catalog-menu ul.header-menu-list-group li:before {
  background-color: #00A1E4;
}
.list-service-detail .tab-content #tai-catalog .tai-catalog-content .catalog-table table {
  background-color: white;
}
.list-service-detail .tab-content #tai-catalog .tai-catalog-content .catalog-table table thead tr {
  font-size: 15px;
  color: #00A1E4;
  padding: 10px;
  background-color: #f6f6f6;
}
.list-service-detail .tab-content #tai-catalog .tai-catalog-content .catalog-table table thead tr th {
  border-bottom: none;
  border-top: none;
  padding: 20px;
}
.list-service-detail .tab-content #tai-catalog .tai-catalog-content .catalog-table table thead tr th span {
  position: relative;
  display: block;
  padding-left: 15px;
}
.list-service-detail .tab-content #tai-catalog .tai-catalog-content .catalog-table table thead tr th span:before {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  background-color: #00A1E4;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  left: 0px;
}
.list-service-detail .tab-content #tai-catalog .tai-catalog-content .catalog-table table tbody tr {
  transition: all linear 0.3s;
}
.list-service-detail .tab-content #tai-catalog .tai-catalog-content .catalog-table table tbody tr:hover {
  background-color: #00A1E4;
}
.list-service-detail .tab-content #tai-catalog .tai-catalog-content .catalog-table table tbody tr:hover td {
  color: #ffffff;
}
.list-service-detail .tab-content #tai-catalog .tai-catalog-content .catalog-table table tbody tr:hover td:first-child {
  color: #ffffff;
}
.list-service-detail .tab-content #tai-catalog .tai-catalog-content .catalog-table table tbody tr:hover .catalog-view-online,
.list-service-detail .tab-content #tai-catalog .tai-catalog-content .catalog-table table tbody tr:hover .catalog-download {
  display: block;
}
.list-service-detail .tab-content #tai-catalog .tai-catalog-content .catalog-table table tbody tr:hover .catalog-type-file,
.list-service-detail .tab-content #tai-catalog .tai-catalog-content .catalog-table table tbody tr:hover .catalog-size-file {
  display: none;
}
.list-service-detail .tab-content #tai-catalog .tai-catalog-content .catalog-table table tbody tr td {
  font-size: 15px;
  border-top: 0;
  border-bottom: 1px solid #dee2e6;
  color: #666666;
  padding-left: 20px;
  min-width: 170px;
}
.list-service-detail .tab-content #tai-catalog .tai-catalog-content .catalog-table table tbody tr td:first-child {
  font-size: 15px;
  color: #666666;
}
.list-service-detail .tab-content #tai-catalog .tai-catalog-content .catalog-table table tbody tr td img {
  padding-right: 12px;
}
.list-service-detail .tab-content #tai-catalog .tai-catalog-content .catalog-table table tbody tr td span {
  padding-left: 20px;
}
.list-service-detail .tab-content #tai-catalog .tai-catalog-content .catalog-table table tbody tr td span span {
  padding-left: 0;
}
.list-service-detail .tab-content #tai-catalog .tai-catalog-content .catalog-table table tbody tr .catalog-view-online,
.list-service-detail .tab-content #tai-catalog .tai-catalog-content .catalog-table table tbody tr .catalog-download {
  display: none;
}
.list-service-detail .tab-content #tai-catalog .tai-catalog-content .catalog-table table tbody tr .catalog-view-online a,
.list-service-detail .tab-content #tai-catalog .tai-catalog-content .catalog-table table tbody tr .catalog-download a {
  font-size: 13px;
  color: white;
}
.list-service-detail .tab-content #tai-catalog .tai-catalog-content .catalog-table table tbody tr .catalog-download i {
  font-size: 138%;
  color: #ffffff;
}
.list-service-detail .tab-content #tong-dai-hotline .description {
  padding: 50px 0;
  font-size: 15px;
  color: #666;
}
.list-service-detail .tab-content #tong-dai-hotline .description span {
  display: block;
  padding-top: 25px;
  line-height: 20px;
  color: #00A1E4;
}
.list-service-detail .tab-content #tong-dai-hotline .description span i {
  transform: rotate(90deg);
  color: #999;
  padding-right: 5px;
}
.list-service-detail .tab-content #tong-dai-hotline .description span a {
  color: #00A1E4;
}

body .dropdown-item.active span,
body .dropdown-item:active span {
  color: #fff !important;
}

@media screen and (max-width: 991px) {
  #tai-catalog .tai-catalog-content .catalog-table {
    margin-top: 35px;
  }
}
@media screen and (max-width: 767px) {
  .list-service-detail .list-service li {
    width: 33%;
    margin-bottom: 20px;
  }
  .list-service-detail .list-service li a {
    padding-right: 0;
    margin-right: 0;
    font-size: 13px;
  }
  .list-service-detail .list-service li a::before {
    width: 75px;
  }
  .list-service-detail .tab-content #ho-tro-ky-thuat .description {
    padding: 30px 0;
    text-align: justify;
  }
  .list-service-detail .tab-content #ho-tro-ky-thuat .form-support {
    padding: 15px;
  }
  .list-service-detail .tab-content #ho-tro-ky-thuat .form-support button {
    margin-bottom: 30px;
  }
  .list-service-detail .tab-content #dang-ky-bao-hanh .option-header,
.list-service-detail .tab-content #dang-ky-bao-hanh .option-request {
    margin-bottom: 30px;
  }
  .list-service-detail .tab-content #kiem-tra-so-serial .container .ktSerial-content {
    padding: 0 15px;
    text-align: justify;
  }
  .list-service-detail .tab-content #kiem-tra-so-serial .container .ktSerial-header {
    padding: 15px;
  }
  .list-service-detail .tab-content #kiem-tra-so-serial .container .ktSerial-header .descript-serial {
    width: 100%;
  }
}
.news-menu {
  margin-bottom: 50px;
}
.news-menu ul li {
  padding-bottom: 17px;
  margin-right: 30px;
  min-width: 105px;
  display: inline-block;
  position: relative;
  cursor: pointer;
}
.news-menu ul li::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 100%;
  background-color: #dddddd;
}
.news-menu ul li::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  opacity: 0;
  transition: all linear 0.3s;
  background-color: #00A1E4;
}
.news-menu ul li:hover a {
  color: #00A1E4;
}
.news-menu ul li:hover::after {
  width: 100%;
  opacity: 1;
}
.news-menu ul li a {
  color: #999999;
  transition: all linear 0.3s;
  font-size: 15px;
}
.news-menu ul li.active::after {
  width: 100%;
  opacity: 1;
}
.news-menu ul li.active a {
  color: #00A1E4;
}

.news-item {
  margin-bottom: 20px;
}
.news-item:hover .news-img-feature a .icon-hover {
  height: 100%;
  opacity: 1;
}
.news-item:hover .news-content .news-title a {
  color: #00A1E4;
}
.news-item .news-img-feature a {
  display: block;
  position: relative;
  margin-top: 3px;
}
.news-item .news-img-feature a img {
  width: 100%;
}
.news-item .news-img-feature a .icon-hover {
  position: absolute;
  background-color: rgba(0, 161, 228, 0.7);
  width: 100%;
  height: 0;
  opacity: 0;
  top: 0;
  transition: all linear 0.3s;
  left: 0;
}
.news-item .news-img-feature a .icon-hover img {
  width: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 768px) {
  .news-item .news-content {
    padding-right: 45px;
  }
}
.news-item .news-content .news-title {
  font-size: 16px;
  margin-bottom: 5px;
  line-height: 20px;
  max-height: 42px;
}
.news-item .news-content .news-title a {
  color: #333;
  font-size: 16px;
}
.news-item .news-content .news-date {
  font-size: 12px;
  margin-bottom: 15px;
  color: #666;
}
.news-item .news-content .news-date span {
  padding-left: 11px;
}
.news-item .news-content .news-short-description p {
  font-size: 14px;
  color: #666;
  line-height: 21px;
  margin-bottom: 0;
  height: 65px;
}

.pagination-custom ul.pagination {
  background-color: none;
  border: none;
  padding: 50px 0;
}
.pagination-custom ul.pagination li {
  border: none;
  outline: none;
}
.pagination-custom ul.pagination li a.page-link {
  color: #666;
  background-color: transparent;
  font-size: 16px;
  border: none;
  padding: 9px 15px;
  margin-right: 15px;
  border-radius: 0;
}
.pagination-custom ul.pagination li a.page-link:focus {
  box-shadow: none;
}
.pagination-custom ul.pagination li:last-child {
  border-left: 1px solid #ddd;
  padding-left: 20px;
}
.pagination-custom ul.pagination li:last-child i {
  padding-left: 5px;
  margin-top: 3px;
}
.pagination-custom ul.pagination li:hover a {
  background-color: #00A1E4;
  color: #fff;
}
.pagination-custom ul.pagination li:hover:last-child a {
  background-color: transparent;
  color: #00A1E4;
}
.pagination-custom ul.pagination li.active span {
  background-color: #00A1E4;
  color: #fff;
  border-color: transparent;
  font-size: 16px;
  border: none;
  padding: 9px 15px;
  margin-right: 15px;
  border-radius: 0;
}
.pagination-custom ul.pagination li.disabled {
  display: none;
}

@media screen and (max-width: 991px) {
  .news-menu ul li {
    margin-bottom: 15px;
  }

  .news-item {
    margin-bottom: 30px;
  }
  .news-item .news-content .news-title {
    margin-top: 13px;
  }
}
.news-detail-wrapper {
  padding: 0;
  marign: 0;
}
.news-detail-wrapper .news-detail-content-wrapper {
  padding: 35px 27px;
  background-color: #ffffff;
  margin-top: 35px;
  margin-bottom: 50px;
}
.news-detail-wrapper .news-detail-content-wrapper .news-detail-title {
  padding: 0;
}
.news-detail-wrapper .news-detail-content-wrapper .news-detail-title h3 {
  font-size: 25px;
  color: #00A1E4;
  margin-bottom: 39px;
}
.news-detail-wrapper .news-detail-content-wrapper .news-detail-description {
  padding: 0;
}
.news-detail-wrapper .news-detail-content-wrapper .news-detail-description p {
  font-size: 17px;
  color: #666666;
  margin-bottom: 48px;
}
.news-detail-wrapper .news-detail-content-wrapper .date-and-socials {
  padding: 10px 0;
  boxsizing: border-box;
  -moz-boxsizing: border-box;
  -ms-boxsizing: border-box;
  -webkit-boxsizing: border-box;
  -o-boxsizing: border-box;
  border-top: 1px solid #eeeeee;
  border-bottom: 1px solid #eeeeee;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  align-content: center;
  margin-bottom: 40px;
  font-size: 13px;
  color: #666;
}
.news-detail-wrapper .news-detail-content-wrapper .date-and-socials div i {
  margin-right: 15px;
}
.news-detail-wrapper .news-detail-content-wrapper .date-and-socials div a {
  color: white;
  background-color: #4167b2;
  padding: 4px 10px;
  text-align: center;
  border-radius: 2px;
}
.news-detail-wrapper .news-detail-content-wrapper .news-detail-content p {
  font-size: 15px;
  color: #666666;
  line-height: 25px;
}
.news-detail-wrapper .news-detail-content-wrapper .news-detail-content img {
  max-width: 100%;
  margin: 0 auto;
}
.news-detail-wrapper .news-detail-content-wrapper .company-info {
  background-color: #00a1e4;
  padding: 20px 25px;
  margin-bottom: 27px;
}
.news-detail-wrapper .news-detail-content-wrapper .company-info p {
  font-size: 14px;
  color: #ffffff;
  line-height: 20px;
}
.news-detail-wrapper .news-detail-content-wrapper .company-info ul {
  list-style-type: square;
  padding: 0 11px;
}
.news-detail-wrapper .news-detail-content-wrapper .company-info ul li {
  font-size: 14px;
  color: #ffffff;
  line-height: 23px;
}
.news-detail-wrapper .news-detail-content-wrapper .news-detail-tags {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.news-detail-wrapper .news-detail-content-wrapper .news-detail-tags .tags-title {
  font-size: 15px;
  color: #666666;
}
.news-detail-wrapper .news-detail-content-wrapper .news-detail-tags .tags-name {
  margin-left: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.news-detail-wrapper .news-detail-content-wrapper .news-detail-tags .tags-name ul {
  list-style-type: none;
  padding: 0;
  margin: 0;
}
.news-detail-wrapper .news-detail-content-wrapper .news-detail-tags .tags-name ul li {
  display: inline-block;
  margin-left: 5px;
  margin-bottom: 7px;
}
.news-detail-wrapper .news-detail-content-wrapper .news-detail-tags .tags-name ul li a {
  padding: 5px 6px;
  background-color: #ebebeb;
  color: #6b6767;
  display: block;
  border-radius: 4px;
}
.news-detail-wrapper .related-news {
  padding-left: 35px;
  margin-top: 24px;
}
.news-detail-wrapper .related-news .related-news-big-title {
  padding: 15px 0;
  box-sizing: border-box;
  -moz-boxsizing: border-box;
  -ms-boxsizing: border-box;
  -webkit-boxsizing: border-box;
  -o-boxsizing: border-box;
  margin-bottom: 21px;
}
.news-detail-wrapper .related-news .related-news-big-title h3 {
  color: #00A1E4;
  font-size: 15px;
}
.news-detail-wrapper .related-news .related-news-big-title h3:before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 200px;
  height: 2px;
  background-color: #00A1E4;
}
.news-detail-wrapper .related-news .related-news-item:hover .related-item-img-featured a .icon-hover {
  width: 100%;
  opacity: 1;
}
.news-detail-wrapper .related-news .related-news-item:hover .related-item-content .related-news-title a {
  color: #00A1E4;
}
.news-detail-wrapper .related-news .related-news-item .related-item-img-featured {
  margin-right: 0px;
}
.news-detail-wrapper .related-news .related-news-item .related-item-img-featured a {
  display: block;
  position: relative;
  margin-top: 3px;
}
.news-detail-wrapper .related-news .related-news-item .related-item-img-featured a img {
  width: 100%;
}
.news-detail-wrapper .related-news .related-news-item .related-item-img-featured a .icon-hover {
  position: absolute;
  background-color: rgba(0, 161, 228, 0.7);
  width: 0;
  height: 100%;
  opacity: 0;
  top: 0;
  transition: all linear 0.3s;
  left: 0;
}
.news-detail-wrapper .related-news .related-news-item .related-item-img-featured a .icon-hover img {
  width: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.news-detail-wrapper .related-news .related-news-item .related-item-content {
  padding: 0px 0px 0px 20px;
}
.news-detail-wrapper .related-news .related-news-item .related-item-content .related-news-title {
  margin-bottom: 13px;
}
.news-detail-wrapper .related-news .related-news-item .related-item-content .related-news-title p a {
  font-size: 16px;
  color: #333333;
}
.news-detail-wrapper .related-news .related-news-item .related-item-content .related-news-date p {
  font-size: 12px;
  color: #666666;
}
.news-detail-wrapper .other-news {
  padding-bottom: 106px;
}
.news-detail-wrapper .other-news .other-news-title {
  padding: 17px 0;
  margin-bottom: 35px;
  margin-top: 35px;
  position: relative;
}
.news-detail-wrapper .other-news .other-news-title h3 {
  color: #00A1E4;
  font-size: 15px;
}
.news-detail-wrapper .other-news .other-news-title h3:before {
  position: absolute;
  content: "";
  bottom: 0;
  left: 0;
  width: 200px;
  height: 2px;
  background-color: #00A1E4;
}

@media screen and (max-width: 1228px) {
  .related-news-item {
    margin: 0px;
    padding-right: 35px;
  }
}
@media screen and (max-width: 991px) {
  .news-detail-wrapper .related-news {
    padding: 0 0 0 13px;
  }
  .news-detail-wrapper .related-news .related-news-item {
    padding-right: 31px;
  }
  .news-detail-wrapper .related-news .related-news-item .related-item-content {
    padding: 0px;
    margin-top: 15px;
  }
  .news-detail-wrapper .other-news .news-item .news-img-feature {
    padding-right: 0;
  }
  .news-detail-wrapper .other-news .news-item .news-content .news-title {
    margin-top: 15px;
  }
}
.muahang-wrapper .muahang-title {
  padding: 17px 0 0 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -ms-box-sizing: border-box;
  -o-box-sizing: border-box;
  margin-bottom: 40px;
  margin-top: 29px;
}
.muahang-wrapper .muahang-title h3 {
  font-size: 15px;
  color: #00A1E4;
  line-height: 29px;
  position: relative;
  padding: 5px;
}
.muahang-wrapper .muahang-title h3:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  background-color: #00A1E4;
  z-index: -1;
  width: 250px;
}
.muahang-wrapper .muahang-description {
  margin-bottom: 50px;
}
.muahang-wrapper .muahang-description p {
  font-size: 15px;
  color: #333333;
  line-height: 21px;
}
.muahang-wrapper #trung-tam-bao-hanh .description {
  font-size: 15px;
  color: #333;
  padding-bottom: 20px;
}
.muahang-wrapper #trung-tam-bao-hanh .search-guarantee {
  margin-top: 25px;
  position: relative;
}
.muahang-wrapper #trung-tam-bao-hanh .search-guarantee .form-search {
  position: absolute;
  background-color: #fff;
  z-index: 10;
  padding: 30px 35px;
  top: 20px;
  left: 50%;
  transform: translateX(-50%);
}
.muahang-wrapper #trung-tam-bao-hanh .search-guarantee .form-search .form-inline .form-group {
  margin-bottom: 0;
  margin-right: 20px;
}
.muahang-wrapper #trung-tam-bao-hanh .search-guarantee .form-search .form-inline .form-group span {
  font-size: 15px;
  color: #00A1E4;
  padding-right: 35px;
}
.muahang-wrapper #trung-tam-bao-hanh .search-guarantee .form-search .form-inline .form-group select,
.muahang-wrapper #trung-tam-bao-hanh .search-guarantee .form-search .form-inline .form-group .dropdown-toggle,
.muahang-wrapper #trung-tam-bao-hanh .search-guarantee .form-search .form-inline .form-group .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) {
  min-width: 340px;
  background-color: #f2f2f2;
  font-size: 15px;
  color: #666;
}
.muahang-wrapper #trung-tam-bao-hanh .search-guarantee .form-search .form-inline .form-group select span,
.muahang-wrapper #trung-tam-bao-hanh .search-guarantee .form-search .form-inline .form-group .dropdown-toggle span,
.muahang-wrapper #trung-tam-bao-hanh .search-guarantee .form-search .form-inline .form-group .bootstrap-select:not([class*=col-]):not([class*=form-control]):not(.input-group-btn) span {
  font-size: 15px;
  color: #666;
}
.muahang-wrapper #trung-tam-bao-hanh .search-guarantee .form-search .form-inline .line {
  height: 40px;
  width: 1px;
  background-color: #f2f2f2;
}
.muahang-wrapper #trung-tam-bao-hanh .search-guarantee .form-search .form-inline .btn-search-store {
  z-index: 10;
  background-color: #00A1E4;
  border-radius: 30px;
  border: 0;
  margin-left: 20px;
}
.muahang-wrapper #trung-tam-bao-hanh .search-guarantee .form-search .form-inline .btn-search-store i {
  padding-left: 5px;
}
.muahang-wrapper #trung-tam-bao-hanh .list-store {
  padding-top: 50px;
}
.muahang-wrapper #trung-tam-bao-hanh .list-store h3.title {
  font-size: 20px;
  color: #666;
  padding-bottom: 40px;
}
.muahang-wrapper #trung-tam-bao-hanh .list-store h3.title i.icon-map-custom {
  color: #cccccc;
}
.muahang-wrapper #trung-tam-bao-hanh .list-store ul {
  padding-left: 6px;
  list-style: none;
}
.muahang-wrapper #trung-tam-bao-hanh .list-store ul li {
  font-size: 14px;
  color: #333333;
}
.muahang-wrapper #trung-tam-bao-hanh .list-store ul li:before {
  content: "•";
  color: #00A1E4;
}
.muahang-wrapper #trung-tam-bao-hanh .list-store .stores .store {
  margin-bottom: 45px;
  cursor: pointer;
}
.muahang-wrapper #trung-tam-bao-hanh .list-store .stores .store:hover {
  box-shadow: 0px 0px 0px 1px #00A1E4 inset;
  background-color: white;
}
.muahang-wrapper #trung-tam-bao-hanh .list-store .stores .store .name-store {
  padding-left: 10px;
  display: block;
  position: relative;
  font-size: 14px;
  color: #333;
}
.muahang-wrapper #trung-tam-bao-hanh .list-store .stores .store .name-store::before {
  content: "";
  position: absolute;
  width: 5px;
  height: 5px;
  background-color: #00A1E4;
  border-radius: 50%;
  top: 8px;
  left: 0;
}
.muahang-wrapper #trung-tam-bao-hanh .list-store .stores .store span {
  padding-bottom: 5px;
}
.muahang-wrapper #trung-tam-bao-hanh .list-store .stores .store .address,
.muahang-wrapper #trung-tam-bao-hanh .list-store .stores .store .phone {
  padding-left: 30px;
  display: block;
  position: relative;
  font-size: 14px;
  color: #666;
}
.muahang-wrapper #trung-tam-bao-hanh .list-store .stores .store .address::before,
.muahang-wrapper #trung-tam-bao-hanh .list-store .stores .store .phone::before {
  content: "";
  position: absolute;
  width: 10px;
  height: 1px;
  background-color: #dddddd;
  top: 8px;
  left: 10px;
}
.muahang-wrapper #trung-tam-bao-hanh .list-store .stores .pagination-custom ul.pagination {
  list-style: none;
}
.muahang-wrapper #trung-tam-bao-hanh .list-store .stores .pagination-custom ul.pagination li:before {
  content: "";
  color: #00A1E4;
}

.button-back {
  font-size: 13px;
  color: #666666;
  font-style: normal;
}

body {
  padding: 0;
  margin: 0;
  font-size: 14px;
  color: #333;
  background-color: #f6f6f6;
}
body a {
  outline: none !important;
  text-decoration: none;
}
body a:hover {
  text-decoration: none;
}
body button,
body .bootstrap-select .dropdown-toggle:focus,
body .btn-light:not(:disabled):not(.disabled).active:focus,
body .btn-light:not(:disabled):not(.disabled):active:focus,
body .show > .btn-light.dropdown-toggle:focus {
  outline: none !important;
  box-shadow: none;
}
body img {
  max-width: 100%;
  height: auto;
}
body #play-video .modal-dialog {
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: auto;
  margin: 0;
}
body button:disabled {
  background-color: #e9ecef;
}

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