@charset "UTF-8";
/* dùng cho một vài thuộc tính riêng cho trình duyện VD: transition, box-shadow */
/* căn giữa chiều dọc và ngang trên 1 box */
/* background opacity */
* {
  margin: 0px;
  padding: 0px;
  outline: none;
  box-sizing: border-box; }

body {
  background: #f5f5f5;
  font-size: 14px;
  font-family: 'Comfortaa'; }

ul {
  list-style: none; }

a {
  text-decoration: none;
  color: #000000; }

p,
span {
  color: #5a5a5a; }

table {
  border-spacing: 0px;
  border-collapse: collapse;
  width: 100%; }

button {
  cursor: pointer; }

/* 
	thuộc tính transform dùng để tạo hiệu ứng
		rotate(Độ:deg): hiệu ứng xoay VD rotate(90deg)
		scale(kích thước phóng:số): hiệu ứng zoo VD scale(1)

		translateX(px): di chuyển ngang
		translateY(px): di chuyển dọc

		skewX(Độ:deg): nghiêng ngang
		skewY(Độ:deg): nghiêng dọc

		transform-origin: Nó cho phép bạn định vị chiều rộng và chiều cao cho thành phần,
		dùng chung với transform và có các thuộc tính: top bottom left right và %

		Perspective: tạo hiệu ứng 3D nó sẽ cho ta thấy được chiều sâu của thành phần, 
		khoảng chiều sâu được tính từ điểm đặt ban đầu tới giá trị của perspective (theo đơn vị pixel).
	
	cú pháp tạo 1 animation
	@keyframes box-rotate-reverse {
		50% {
			transform: rotate(-180deg); 
		}
		100% { 
			transform: rotate(-360deg); 
		}
	}
	gọi
	animation: NameKeyFrames duration(s) timing delay(s) iteration-count direction;
*/
.container {
  margin: 0 auto;
  padding: 0 15px;
  width: 100%;
  display: flex;
  flex-wrap: wrap; }

.row {
  width: calc(100% + 15px*2);
  float: left;
  margin: 0 -15px;
  display: flex;
  flex-wrap: wrap; }

.col {
  width: 100%;
  float: left;
  padding: 0 15px;
  transition: 0.2s; }

/* dùng xs cho màn điện thoại có kích thước nhỏ hơn 576px */
@media only screen and (max-width: 575px) {
  .container {
    max-width: 100%; }

  .col-xs-1 {
    width: calc(100% - (100% / (12 / (12 - 1) )) ); }

  .col-xs-2 {
    width: calc(100% - (100% / (12 / (12 - 2) )) ); }

  .col-xs-3 {
    width: calc(100% - (100% / (12 / (12 - 3) )) ); }

  .col-xs-4 {
    width: calc(100% - (100% / (12 / (12 - 4) )) ); }

  .col-xs-5 {
    width: calc(100% - (100% / (12 / (12 - 5) )) ); }

  .col-xs-6 {
    width: calc(100% - (100% / (12 / (12 - 6) )) ); }

  .col-xs-7 {
    width: calc(100% - (100% / (12 / (12 - 7) )) ); }

  .col-xs-8 {
    width: calc(100% - (100% / (12 / (12 - 8) )) ); }

  .col-xs-9 {
    width: calc(100% - (100% / (12 / (12 - 9) )) ); }

  .col-xs-10 {
    width: calc(100% - (100% / (12 / (12 - 10) )) ); }

  .col-xs-11 {
    width: calc(100% - (100% / (12 / (12 - 11) )) ); }

  .col-xs-12 {
    width: 100%; } }
/* dùng sm cho màn điện thoại có kích thước lớn hơn 576px */
@media only screen and (min-width: 576px) {
  .container {
    max-width: 540px; }

  .col-sm-1 {
    width: calc(100% - (100% / (12 / (12 - 1) )) ); }

  .col-sm-2 {
    width: calc(100% - (100% / (12 / (12 - 2) )) ); }

  .col-sm-3 {
    width: calc(100% - (100% / (12 / (12 - 3) )) ); }

  .col-sm-4 {
    width: calc(100% - (100% / (12 / (12 - 4) )) ); }

  .col-sm-5 {
    width: calc(100% - (100% / (12 / (12 - 5) )) ); }

  .col-sm-6 {
    width: calc(100% - (100% / (12 / (12 - 6) )) ); }

  .col-sm-7 {
    width: calc(100% - (100% / (12 / (12 - 7) )) ); }

  .col-sm-8 {
    width: calc(100% - (100% / (12 / (12 - 8) )) ); }

  .col-sm-9 {
    width: calc(100% - (100% / (12 / (12 - 9) )) ); }

  .col-sm-10 {
    width: calc(100% - (100% / (12 / (12 - 10) )) ); }

  .col-sm-11 {
    width: calc(100% - (100% / (12 / (12 - 11) )) ); }

  .col-sm-12 {
    width: 100%; } }
/* dùng md cho màn điện thoại có kích thước lớn hơn 768px */
@media only screen and (min-width: 768px) {
  .container {
    max-width: 720px; }

  .col-md-1 {
    width: calc(100% - (100% / (12 / (12 - 1) )) ); }

  .col-md-2 {
    width: calc(100% - (100% / (12 / (12 - 2) )) ); }

  .col-md-3 {
    width: calc(100% - (100% / (12 / (12 - 3) )) ); }

  .col-md-4 {
    width: calc(100% - (100% / (12 / (12 - 4) )) ); }

  .col-md-5 {
    width: calc(100% - (100% / (12 / (12 - 5) )) ); }

  .col-md-6 {
    width: calc(100% - (100% / (12 / (12 - 6) )) ); }

  .col-md-7 {
    width: calc(100% - (100% / (12 / (12 - 7) )) ); }

  .col-md-8 {
    width: calc(100% - (100% / (12 / (12 - 8) )) ); }

  .col-md-9 {
    width: calc(100% - (100% / (12 / (12 - 9) )) ); }

  .col-md-10 {
    width: calc(100% - (100% / (12 / (12 - 10) )) ); }

  .col-md-11 {
    width: calc(100% - (100% / (12 / (12 - 11) )) ); }

  .col-md-12 {
    width: 100%; } }
/* dùng lg cho màn điện thoại có kích thước lớn hơn 992px */
@media only screen and (min-width: 992px) {
  .container {
    max-width: 960px; }

  .col-lg-1 {
    width: calc(100% - (100% / (12 / (12 - 1) )) ); }

  .col-lg-2 {
    width: calc(100% - (100% / (12 / (12 - 2) )) ); }

  .col-lg-3 {
    width: calc(100% - (100% / (12 / (12 - 3) )) ); }

  .col-lg-4 {
    width: calc(100% - (100% / (12 / (12 - 4) )) ); }

  .col-lg-5 {
    width: calc(100% - (100% / (12 / (12 - 5) )) ); }

  .col-lg-6 {
    width: calc(100% - (100% / (12 / (12 - 6) )) ); }

  .col-lg-7 {
    width: calc(100% - (100% / (12 / (12 - 7) )) ); }

  .col-lg-8 {
    width: calc(100% - (100% / (12 / (12 - 8) )) ); }

  .col-lg-9 {
    width: calc(100% - (100% / (12 / (12 - 9) )) ); }

  .col-lg-10 {
    width: calc(100% - (100% / (12 / (12 - 10) )) ); }

  .col-lg-11 {
    width: calc(100% - (100% / (12 / (12 - 11) )) ); }

  .col-lg-12 {
    width: 100%; } }
/* dùng xl cho màn điện thoại có kích thước lớn hơn 1200px */
@media only screen and (min-width: 1200px) {
  .container {
    max-width: 1120px; }

  .col-xl-1 {
    width: calc(100% - (100% / (12 / (12 - 1) )) ); }

  .col-xl-2 {
    width: calc(100% - (100% / (12 / (12 - 2) )) ); }

  .col-xl-3 {
    width: calc(100% - (100% / (12 / (12 - 3) )) ); }

  .col-xl-4 {
    width: calc(100% - (100% / (12 / (12 - 4) )) ); }

  .col-xl-5 {
    width: calc(100% - (100% / (12 / (12 - 5) )) ); }

  .col-xl-6 {
    width: calc(100% - (100% / (12 / (12 - 6) )) ); }

  .col-xl-7 {
    width: calc(100% - (100% / (12 / (12 - 7) )) ); }

  .col-xl-8 {
    width: calc(100% - (100% / (12 / (12 - 8) )) ); }

  .col-xl-9 {
    width: calc(100% - (100% / (12 / (12 - 9) )) ); }

  .col-xl-10 {
    width: calc(100% - (100% / (12 / (12 - 10) )) ); }

  .col-xl-11 {
    width: calc(100% - (100% / (12 / (12 - 11) )) ); }

  .col-xl-12 {
    width: 100%; } }
@media only screen and (min-width: 1450px) {
  .container {
    max-width: 1200px; }

  .col-xl-1 {
    width: calc(100% - (100% / (12 / (12 - 1) )) ); }

  .col-xl-2 {
    width: calc(100% - (100% / (12 / (12 - 2) )) ); }

  .col-xl-3 {
    width: calc(100% - (100% / (12 / (12 - 3) )) ); }

  .col-xl-4 {
    width: calc(100% - (100% / (12 / (12 - 4) )) ); }

  .col-xl-5 {
    width: calc(100% - (100% / (12 / (12 - 5) )) ); }

  .col-xl-6 {
    width: calc(100% - (100% / (12 / (12 - 6) )) ); }

  .col-xl-7 {
    width: calc(100% - (100% / (12 / (12 - 7) )) ); }

  .col-xl-8 {
    width: calc(100% - (100% / (12 / (12 - 8) )) ); }

  .col-xl-9 {
    width: calc(100% - (100% / (12 / (12 - 9) )) ); }

  .col-xl-10 {
    width: calc(100% - (100% / (12 / (12 - 10) )) ); }

  .col-xl-11 {
    width: calc(100% - (100% / (12 / (12 - 11) )) ); }

  .col-xl-12 {
    width: 100%; } }
.hidden {
  display: none; }

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

.float-left {
  float: left; }
.float-right {
  float: right; }

.clear-fix {
  width: 100%;
  float: left;
  clear: both; }

#copy-input {
  opacity: 0;
  height: 0;
  width: 5px;
  position: absolute;
  top: -1px;
  left: -1px; }

/* Scollbar */
* {
  scrollbar-color: #0000ff #ccc;
  scrollbar-width: thin;
  scrollbar-face-color: #0000ff;
  scrollbar-track-color: #ccc; }

::-webkit-scrollbar {
  width: 5px;
  height: 5px; }

::-webkit-scrollbar-track {
  background: #ccc; }

::-webkit-scrollbar-thumb {
  background: #0000ff; }

::-webkit-scrollbar-thumb:hover {
  background: #68767b; }

.pagination {
  text-align: center; }
  .pagination-box {
    width: 100%;
    float: left;
    clear: both;
    margin-top: 20px; }
  .pagination li, .pagination .page-item {
    display: inline-block;
    color: #cccccc;
    margin-right: 3px; }
  .pagination a, .pagination span, .pagination .page-link {
    color: #cccccc;
    padding: 10px 15px;
    display: block;
    text-align: center;
    border: 1px solid #eeeeee;
    background: #ffffff;
    margin-bottom: 5px;
    transition: 0.2s; }
    .pagination a:hover, .pagination span:hover, .pagination .page-link:hover {
      background: #1da64c;
      color: #ffffff;
      border: 1px solid #1da64c;
      transition: 0.2s; }
  .pagination li.active a, .pagination li.active span, .pagination li.active .page-link, .pagination .active a, .pagination .active span, .pagination .active .page-link {
    border: 1px solid #1da64c;
    color: #ffffff;
    background: #1da64c; }

@media only screen and (max-width: 575px) {
  .pagination .page-item {
    display: none !important; }
  .pagination .page-item:nth-child(1),
  .pagination .page-item:nth-child(2),
  .pagination .page-item:nth-child(3),
  .pagination .page-item:nth-last-child(1),
  .pagination .page-item:nth-last-child(2),
  .pagination .page-item:nth-last-child(3),
  .pagination .page-item.disabled,
  .pagination .page-item.active {
    display: inline-block !important; } }
/* Module Breadcrumb */
.breadcrumb {
  width: 100%;
  float: left;
  clear: both;
  position: relative;
  z-index: 2; }
  .breadcrumb ul {
    float: left;
    width: 100%; }
    .breadcrumb ul li {
      float: left; }
      .breadcrumb ul li:after {
        content: "»";
        padding: 10px;
        color: #222;
        display: inline-block; }
      .breadcrumb ul li:last-child:after {
        content: "";
        display: none; }
      .breadcrumb ul li a {
        display: block;
        float: left;
        padding: 10px 0px;
        color: #01be42;
        font-weight: normal; }
      .breadcrumb ul li:last-child a {
        color: #000000; }

.btn {
  float: left;
  padding: 10px;
  text-align: center;
  border-radius: 5px;
  transition: 0.2s;
  border: 1px solid transparent; }
  .btn-flat {
    border-radius: 0px; }
  .btn-primary {
    color: #fff;
    background-color: #337ab7;
    border-color: #2e6da4; }
    .btn-primary:hover {
      color: #fff;
      background-color: #286090;
      border-color: #204d74; }
  .btn-default {
    color: #333;
    background-color: #fff;
    border-color: #ccc; }
    .btn-default:hover {
      color: #333;
      background-color: #e6e6e6;
      border-color: #adadad; }
  .btn-danger {
    color: #fff;
    background-color: #d9534f;
    border-color: #d43f3a; }
    .btn-danger:hover {
      color: #fff;
      background-color: #c9302c;
      border-color: #ac2925; }
  .btn-checkbox {
    -webkit-appearance: none;
    background-color: #ffffff;
    border: 1px solid #cccccc;
    padding: 0px;
    width: 20px;
    height: 20px;
    border-radius: 20px;
    cursor: pointer;
    vertical-align: middle; }
    .btn-checkbox:checked {
      background: url("../img/icon/icon-check.png");
      background-size: 20px 20px;
      color: #e9ecee;
      border: none; }

/* Module Loading */
/* Loading full page */
#loading_box {
  position: fixed;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.6);
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  z-index: 100000;
  opacity: 0;
  visibility: hidden; }

#loading_image {
  width: 100%;
  height: 100%;
  background: url("../img/loading_image.gif") no-repeat center center;
  background-size: 50px 50px; }

/* loading in box */
.loading {
  position: relative;
  transition: 0.2s; }
  .loading:before, .loading:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    z-index: 100000; }
  .loading:before {
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6); }
  .loading:after {
    background: url("../img/loading_image.gif") no-repeat center center;
    background-size: 50px 50px; }

/* Module progress  */
.progress-box {
  position: fixed;
  top: 0;
  width: 100%;
  height: 3px;
  background: #ffffff;
  transition: 0.1s;
  z-index: 100000;
  display: none; }

.progress-run {
  height: 100%;
  width: 0;
  background: #0000ff;
  display: block;
  transition: 0.1s; }

.image-square,
.image-circle,
.image-3-2,
.image-16-9 {
  width: 100%;
  height: auto !important;
  position: relative; }
  .image-square:after,
  .image-circle:after,
  .image-3-2:after,
  .image-16-9:after {
    content: "";
    display: block; }
  .image-square img,
  .image-circle img,
  .image-3-2 img,
  .image-16-9 img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    display: block;
    margin: 0 auto;
    position: absolute;
    width: 100% !important;
    height: 100% !important; }

.image-square:after {
  padding-bottom: 100%; }

.image-circle {
  border-radius: 100%;
  overflow: hidden; }
  .image-circle:after {
    padding-bottom: 100%; }

.image-3-2:after {
  padding-bottom: 66.66%; }

.image-16-9:after {
  padding-bottom: 56.25%; }

.popup {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.5);
  z-index: 10001;
  transition: 0.2s;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  opacity: 0;
  visibility: hidden; }
  .popup.open {
    opacity: 1;
    visibility: visible;
    transition: 0.2s;
    overflow-x: hidden;
    overflow-y: auto; }
  .popup-close {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    bottom: 0;
    z-index: 10001; }
  .popup-dialog {
    width: 600px;
    float: left;
    margin: 30px auto;
    position: relative;
    z-index: 10002; }
  .popup-header {
    width: 100%;
    float: left;
    clear: both;
    position: relative;
    background: #ffffff;
    border-bottom: 1px solid #cccccc; }
    .popup-header__content p {
      padding: 10px 10px;
      background: #0000ff;
      color: #ffffff;
      font-weight: bold; }
    .popup-header__close {
      position: absolute;
      top: calc(-25px / 2);
      right: calc(-25px / 2);
      cursor: pointer; }
      .popup-header__close i {
        width: 25px;
        height: 25px;
        border-radius: 25px;
        background: #1b1bca;
        line-height: 25px;
        text-align: center;
        color: #ffffff;
        transition: 0.2s; }
        .popup-header__close i:hover {
          background: #0000ff;
          transition: 0.2s; }
  .popup-body {
    width: 100%;
    float: left;
    clear: both;
    position: relative;
    background: #ffffff;
    padding: 10px; }
  .popup-footer {
    width: 100%;
    float: left;
    clear: both;
    position: relative;
    background: #ffffff;
    border-top: 1px solid #cccccc;
    text-align: right; }
    .popup-footer__content {
      width: 100%;
      float: left;
      clear: both;
      padding: 10px;
      text-align: right; }
    .popup-footer .btn {
      float: none;
      display: inline-block;
      margin-left: 5px;
      padding: 8px 10px; }

.css-content h1, .css-content h2, .css-content h3, .css-content h4, .css-content h5, .css-content h6 {
  color: #333333;
  margin: 15px 0; }
.css-content h2 {
  font: 700 20px/24px sans-serif; }
.css-content h3 {
  font: 700 18px/21px sans-serif; }
.css-content h4 {
  font: 700 16px/19px sans-serif; }
.css-content h5,
.css-content h6 {
  font: 700 14px/18px sans-serif; }
.css-content a {
  color: #1F7ECB; }
.css-content div {
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 10px;
  text-align: justify; }
.css-content p {
  display: block;
  width: 100%;
  font-size: 16px;
  line-height: 30px;
  margin-bottom: 10px;
  text-align: justify; }
.css-content ul {
  width: 100%; }
  .css-content ul li {
    font-size: 16px;
    margin-bottom: 10px;
    padding-left: 15px;
    line-height: 25px;
    position: relative;
    text-align: justify; }
    .css-content ul li:before {
      content: '';
      position: absolute;
      top: 10px;
      left: 0;
      display: inline-block;
      width: 6px;
      height: 6px;
      background: #dc0021;
      -webkit-border-radius: 100%;
      -moz-border-radius: 100%;
      border-radius: 100%; }
.css-content ol {
  width: 100%;
  font-size: 16px;
  padding-left: 20px; }
  .css-content ol li {
    margin-bottom: 10px;
    line-height: 25px;
    position: relative;
    text-align: justify; }
.css-content .sudo-media-item {
  width: 100%;
  text-align: center;
  margin: 20px 0; }
  .css-content .sudo-media-item img {
    margin-bottom: 5px;
    max-width: 100%;
    display: block;
    margin: 0 auto; }
  .css-content .sudo-media-item figcaption {
    padding: 10px 0; }
.css-content img {
  max-width: 100%;
  display: block;
  margin: 20px auto; }
.css-content table {
  border-spacing: 0;
  border-collapse: collapse;
  width: 100% !important;
  margin-bottom: 20px; }
  .css-content table tr td, .css-content table tr th {
    padding: 10px;
    border: 1px solid #000; }
.css-content iframe {
  max-width: 100% !important;
  margin: 20px auto;
  display: block; }
.css-content .mce-toc {
  width: 100%;
  padding: 10px;
  border: 1px dashed #ccc;
  background: #fcfcfc;
  margin: 20px 0;
  box-sizing: border-box; }
  .css-content .mce-toc > div {
    display: block;
    font-size: 18px;
    font-weight: bold;
    padding-bottom: 5px;
    color: #333333;
    text-align: center; }
  .css-content .mce-toc ul {
    color: #1ca54c !important;
    margin: 0;
    list-style: none; }
    .css-content .mce-toc ul li {
      margin-left: 20px;
      margin-bottom: 0.5em;
      line-height: 1.4em; }
      .css-content .mce-toc ul li a {
        font-weight: bold !important;
        color: #1F7ECB !important; }
      .css-content .mce-toc ul li ul {
        margin-top: 10px; }
        .css-content .mce-toc ul li ul li a {
          font-weight: normal !important; }

.p-0 {
  padding: 0px; }

.pt-0 {
  padding-top: 0px; }

.pb-0 {
  padding-bottom: 0px; }

.pr-0 {
  padding-right: 0px; }

.pl-0 {
  padding-left: 0px; }

.p-10 {
  padding: 10px; }

.pt-10 {
  padding-top: 10px; }

.pb-10 {
  padding-bottom: 10px; }

.pr-10 {
  padding-right: 10px; }

.pl-10 {
  padding-left: 10px; }

.p-15 {
  padding: 15px; }

.pt-15 {
  padding-top: 15px; }

.pb-15 {
  padding-bottom: 15px; }

.pr-15 {
  padding-right: 15px; }

.pl-15 {
  padding-left: 15px; }

.m-0 {
  margin: 0px; }

.mt-0 {
  margin-top: 0px; }

.mb-0 {
  margin-bottom: 0px; }

.mr-0 {
  margin-right: 0px; }

.ml-0 {
  margin-left: 0px; }

.m-10 {
  margin: 10px; }

.mt-10 {
  margin-top: 10px; }

.mb-10 {
  margin-bottom: 10px; }

.mr-10 {
  margin-right: 10px; }

.ml-10 {
  margin-left: 10px; }

.m-15 {
  margin: 15px; }

.mt-15 {
  margin-top: 15px; }

.mb-15 {
  margin-bottom: 15px; }

.mr-15 {
  margin-right: 15px; }

.ml-15 {
  margin-left: 15px; }

.site-main {
  background: #F8F8F8;
  padding-top: 96px; }

.font-26 {
  font-size: 26px;
  line-height: 55px; }

.font-36 {
  font-size: 36px;
  line-height: 45px; }

.font-23 {
  font-size: 23.5px;
  line-height: 45px; }

.font-w-b {
  font-weight: 900; }

.font-w-l {
  font-weight: lighter; }

.uppercase {
  text-transform: uppercase; }

.display-block {
  display: block;
  width: 100%; }

.color-text {
  color: #00aeef; }

.pd-b-100 {
  padding-bottom: 100px; }

.show {
  display: block; }

.hide {
  display: none; }

.item-welling {
  padding: 10px 10px 0;
  border-radius: 10px;
  transition: all .3s; }
  .item-welling:last-child {
    margin-right: 0; }
  .item-welling .image {
    width: 100%; }
    .item-welling .image img {
      width: 100%;
      border-radius: 10px; }
  .item-welling .content {
    padding: 12px 0;
    text-align: center; }
    .item-welling .content p {
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      overflow: hidden;
      text-overflow: ellipsis;
      font-family: 'Roboto';
      font-size: 16px;
      line-height: 24px;
      font-weight: 500; }
  .item-welling:hover {
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19); }

.max-w-878 {
  max-width: 878px;
  text-align: center; }

.owl-carousel .owl-nav {
  display: block !important;
  position: absolute;
  top: 50%;
  left: 0;
  right: 0; }
  .owl-carousel .owl-nav button {
    position: absolute; }
    .owl-carousel .owl-nav button i {
      font-size: 20px;
      font-weight: inherit; }
    .owl-carousel .owl-nav button.owl-prev {
      left: -70px; }
    .owl-carousel .owl-nav button.owl-next {
      right: -70px; }

.adminbar {
  width: 100%;
  float: left;
  clear: both;
  background: #252627;
  color: #fff;
  font-family: 'arial', 'Sans-serif';
  position: fixed;
  top: 0;
  right: 0;
  z-index: 999; }

.adminbar-wrap {
  padding: 0 10px; }

.adminbar-wrap ul {
  list-style: none; }

.adminbar-wrap ul li {
  font-size: 13px;
  line-height: 32px;
  float: left;
  margin-right: 20px;
  font-weight: bold; }

.adminbar-wrap ul li a {
  display: block;
  color: #ffffff;
  text-decoration: none; }

.pd-t-190 {
  padding-top: 128px; }

.header {
  background: #fefefe;
  position: fixed;
  width: 100%;
  left: 0;
  right: 0;
  z-index: 999;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2); }
  .header.t40 {
    top: 32px; }
  .header .main_header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    padding: 12px 0 24px;
    width: 100%; }
    .header .main_header__logo {
      width: 20%;
      margin-right: 20px; }
      .header .main_header__logo img {
        max-width: 131px;
        object-fit: cover; }
    .header .main_header__menu {
      width: calc(100% - 20px - 20%); }
      .header .main_header__menu .menu {
        width: 100%;
        display: flex;
        justify-content: flex-end;
        align-items: center; }
        .header .main_header__menu .menu li {
          margin-right: 35px;
          font-size: 15px;
          font-weight: bold; }
          .header .main_header__menu .menu li a {
            line-height: 48px; }
          .header .main_header__menu .menu li:last-child {
            margin-right: 0; }
            .header .main_header__menu .menu li:last-child img {
              width: 22px; }

.slide {
  width: 100%;
  position: relative; }
  .slide .owl-carousel .owl-nav .owl-prev {
    left: 50px; }
  .slide .owl-carousel .owl-nav .owl-next {
    right: 50px; }
  .slide .container {
    position: relative; }
  .slide .item .banner_image {
    position: relative;
    max-height: 705px; }
    .slide .item .banner_image .image_slide {
      cursor: pointer;
      max-height: 705px;
      object-fit: cover; }
  .slide .product_absolute {
    position: absolute;
    bottom: -2%;
    right: -86px;
    z-index: 99;
    max-width: 390px; }
  .slide.has_bgk:after {
    bottom: 0px; }

.banner_popup {
  display: none;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.6);
  z-index: 99999; }
  .banner_popup .popup_slide {
    width: 60%;
    margin: 100px auto;
    background: #fff;
    border-radius: 20px;
    padding: 50px 20px 0;
    position: relative;
    overflow-y: scroll;
    max-height: 700px; }
    .banner_popup .popup_slide__title {
      width: 100%;
      text-align: center;
      margin-bottom: 40px;
      color: #00aeef;
      font-size: 20px;
      text-transform: uppercase;
      line-height: 50px; }
    .banner_popup .popup_slide__content {
      width: 100%;
      line-height: 30px;
      margin-bottom: 40px;
      font-size: 16px; }
    .banner_popup .popup_slide__btn {
      display: flex;
      width: 100%;
      align-items: center;
      padding-bottom: 20px; }
      .banner_popup .popup_slide__btn .close {
        width: 50%;
        color: red; }
        .banner_popup .popup_slide__btn .close i {
          margin-right: 5px; }
      .banner_popup .popup_slide__btn .btn-popup {
        margin: auto;
        display: block;
        padding: 10px;
        border-radius: 10px;
        color: #fff;
        margin-right: 15px; }
        .banner_popup .popup_slide__btn .btn-popup:last-child {
          margin-right: 0; }
        .banner_popup .popup_slide__btn .btn-popup.add {
          background: #00aeef; }
  .banner_popup .product_image {
    position: absolute;
    bottom: -85px;
    right: 12%;
    max-width: 375px;
    z-index: 99999; }
  .banner_popup.active {
    display: block; }

.has_bgk {
  position: relative; }
  .has_bgk:after {
    position: absolute;
    right: 0;
    left: 0;
    width: 100%;
    content: '';
    background: url("/assets/img/path_16345_150.png");
    background-position: center !important;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    height: 150px;
    z-index: 9; }

.four_truth {
  width: 100%;
  padding-top: 13px;
  padding-bottom: 105px; }
  .four_truth__title {
    width: 100%;
    text-align: center;
    margin-bottom: 63px; }
    .four_truth__title span {
      display: block; }
  .four_truth__content {
    width: 100%;
    display: flex; }
    .four_truth__content .item {
      width: calc((100% - 120px)/4);
      background: #fff;
      margin-right: 40px; }
      .four_truth__content .item:last-child {
        margin: 0; }
      .four_truth__content .item_image img {
        max-height: 167px;
        min-height: 167px;
        object-fit: cover; }
      .four_truth__content .item_content p {
        font-weight: 300; }

.solution {
  width: 100%;
  height: auto; }
  .solution .top_content {
    width: 100%;
    display: flex;
    justify-content: flex-end; }
  .solution .has_bgk {
    position: relative; }
    .solution .has_bgk:after {
      background: url("/assets/img/path_16354_150_bg.png");
      height: 150px;
      bottom: -60px; }
    .solution .has_bgk:before {
      position: absolute;
      top: -22px;
      right: 0;
      left: 0;
      width: 100%;
      content: '';
      background: url("/assets/img/path_16346_120.png");
      background-position: center;
      background-size: cover;
      background-repeat: no-repeat;
      height: 120px;
      z-index: 9; }
  .solution_top {
    width: 50%;
    padding: 194px 0;
    text-align: end; }
    .solution_top__title span {
      width: 100%;
      display: block; }
    .solution_top__content {
      width: 100%;
      padding-top: 22px;
      display: flex;
      justify-content: flex-end; }
      .solution_top__content .list_solution {
        max-width: 485px; }
      .solution_top__content .detail p {
        padding: 23px 0;
        border-top: 1px solid #5a5a5a;
        font-family: 'Roboto';
        font-size: 20px;
        font-weight: 300;
        line-height: 26px;
        display: inline-block; }
      .solution_top__content .detail:first-child p {
        border-bottom: none; }

.material {
  padding: 75px 0 90px;
  width: 100%;
  background: #fff; }
  .material_title {
    width: 100%;
    text-align: center;
    margin-bottom: 50px; }
    .material_title span {
      color: #00aeef; }
  .material_content {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    font-family: "Roboto"; }
    .material_content__left {
      width: 37%; }
    .material_content__image {
      width: calc(100% - 40px - 67%);
      margin: 0 20px; }
      .material_content__image img {
        width: 100%; }
    .material_content__right {
      width: 30%;
      padding-top: 192px; }
      .material_content__right .right_text {
        font-size: 23px;
        position: relative;
        margin-bottom: 69px;
        display: block;
        font-weight: bold;
        text-align: right; }
        .material_content__right .right_text:before {
          position: absolute;
          content: "";
          left: -21%;
          top: 13px;
          background-image: url("/assets/img/ngang.png");
          height: 1px;
          width: 35%; }
      .material_content__right .material_item {
        text-align: right; }
        .material_content__right .material_item__icon {
          margin-right: 0;
          margin-left: 14px; }
  .material_item {
    width: 100%;
    display: flex;
    margin-bottom: 40px; }
    .material_item:last-child .material_item__icon:after {
      display: none; }
    .material_item__icon {
      position: relative;
      margin-right: 14px; }
      .material_item__icon span {
        color: #fff;
        width: 38px;
        height: 38px;
        background: #00aeef;
        border-radius: 50%;
        line-height: 38px;
        text-align: center;
        display: block; }
      .material_item__icon:after {
        position: absolute;
        content: "";
        top: 45px;
        left: 18px;
        background-image: url("/assets/img/line.png");
        width: 1px;
        height: 85%; }
    .material_item__content {
      width: calc(100% - 38px - 14px);
      padding-top: 12px; }
      .material_item__content .name {
        width: 100%;
        font-size: 18px;
        font-weight: bold;
        margin-bottom: 10px;
        display: block; }
      .material_item__content .detail {
        font-size: 18px;
        line-height: 26px; }

.level {
  width: 100%;
  text-align: center;
  background-color: #f8f8f8;
  padding-top: 80px; }
  .level_title {
    width: 100%;
    margin-bottom: 60px; }
  .level_content {
    width: 100%;
    display: flex;
    flex-wrap: wrap; }
    .level_content .item {
      width: calc((100% - 98px)/3);
      margin-bottom: 52px;
      background: #fff;
      margin-right: 49px;
      padding: 13px; }
      .level_content .item:nth-child(3n) {
        margin-right: 0; }
      .level_content .item_content {
        padding-top: 21px; }
        .level_content .item_content p {
          font-size: 20px;
          line-height: 30px;
          max-width: 310px;
          margin: auto;
          min-height: 66px; }
      .level_content .item_image img {
        max-width: 340px;
        height: 222px;
        width: 100%;
        object-fit: fill; }
  .level:before {
    position: absolute;
    top: -100px;
    right: 0;
    left: 0;
    width: 100%;
    content: '';
    background: url("/assets/img/path_16355_150.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 150px;
    z-index: 9; }
  .level:after {
    display: none; }

.other_product {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  padding-top: 160px;
  background: #fff;
  padding-bottom: 20px; }
  .other_product__title {
    width: 100%;
    text-align: center;
    margin-bottom: 30px; }
  .other_product.has_bgk:after {
    display: none; }
  .other_product.has_bgk:before {
    position: absolute;
    top: 0px;
    right: 0;
    left: 0;
    width: 100%;
    content: '';
    background: url("/assets/img/path_16346_120.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 120px;
    z-index: 9; }
  .other_product .other_e666__content {
    width: 100%;
    display: flex;
    align-items: center; }

.other_left {
  width: 26%;
  text-align: left; }
  .other_left .other_item {
    max-width: 310px; }
.other_item {
  width: 100%;
  padding: 42px 0 10px;
  border-bottom: 1px solid #5a5a5a;
  min-width: 220px; }
  .other_item__icon {
    margin-bottom: 16px; }
    .other_item__icon img {
      width: 59px;
      height: 59px;
      object-fit: cover; }
  .other_item__content {
    font-size: 20px;
    font-family: "Roboto";
    font-weight: 300;
    line-height: 30px;
    min-height: 91px; }
  .other_item:last-child {
    border-bottom: none; }
.other.other_image {
  width: calc(100% - 51% - 40px);
  text-align: center;
  margin: 0 20px; }
  .other.other_image img {
    width: 100%;
    height: 100%;
    max-width: 300px;
    height: auto; }
.other.other_right {
  width: 25%;
  display: flex;
  justify-content: flex-end; }
  .other.other_right .right_content .other_item {
    text-align: end;
    max-width: 294px; }

.banner_family {
  width: 100%; }
  .banner_family img {
    width: 100%; }
  .banner_family.has_bgk:before {
    position: absolute;
    top: -50px;
    right: 0;
    left: 0;
    width: 100%;
    content: '';
    background: url("/assets/img/path_16353_170.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 170px;
    z-index: 9; }
  .banner_family.has_bgk:after {
    background: url("/assets/img/path_16354_150_bg.png");
    bottom: -50px;
    height: 150px; }

.specifications {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  background: #fff;
  padding-top: 70px;
  padding-bottom: 140px; }
  .specifications_image {
    width: calc(100% - 52% - 100px);
    text-align: end;
    margin-right: 100px; }
    .specifications_image img {
      max-width: 408px; }
  .specifications_table {
    width: 52%; }
    .specifications_table__title {
      margin-bottom: 40px; }
    .specifications_table__content .list_speci {
      width: 100%;
      display: flex;
      padding: 10px 0 12px;
      font-size: 15px;
      font-weight: 300;
      font-family: "Roboto"; }
      .specifications_table__content .list_speci:nth-child(2n+1) {
        background: #E6F5FC; }
      .specifications_table__content .list_speci .speci_name {
        width: 27%;
        padding-left: 37px;
        display: flex;
        justify-content: flex-start;
        margin-right: 50px; }
      .specifications_table__content .list_speci .speci_detail {
        width: calc(100% - 27% -50px);
        padding-right: 10px; }

.versions {
  width: 100%;
  background: #f8f8f8;
  padding: 60px 0; }
  .versions_title {
    margin-bottom: 52px; }
  .versions_content {
    width: 100%;
    display: flex; }
    .versions_content__stan {
      max-width: 477px;
      width: 100%;
      margin-right: 75px; }
      .versions_content__stan .version_title {
        background: #8DC63F; }
      .versions_content__stan .version_content__image img {
        max-width: 191px; }
    .versions_content__adv {
      width: calc(100% - 477px - 75px); }
      .versions_content__adv .version_title {
        background: #00aeef; }
      .versions_content__adv .version_content__image {
        margin-left: 10px; }
        .versions_content__adv .version_content__image img {
          max-width: 140px; }
  .versions.has_bgk:before {
    position: absolute;
    top: -100px;
    right: 0;
    left: 0;
    width: 100%;
    content: '';
    background: url("/assets/img/Path_16700.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 150px;
    z-index: 9; }
  .versions.has_bgk:after {
    display: none; }

.version {
  width: 100%; }
  .version_title {
    height: 60px;
    padding: 0 36px;
    line-height: 60px;
    border-radius: 12px;
    margin-bottom: 40px; }
    .version_title span {
      color: #fff;
      font-size: 20px;
      letter-spacing: 5px; }
  .version_content {
    display: flex; }
    .version_content__detail p {
      font-size: 18px;
      line-height: 26px;
      font-family: "Roboto";
      color: #686868; }

.modern {
  background: #fff;
  padding: 160px 0; }
  .modern_title {
    width: 100%;
    text-align: center;
    margin-bottom: 63px; }
  .modern_content {
    width: 100%;
    display: flex; }
    .modern_content .item-welling {
      width: calc((100% - 96px)/3);
      margin-right: 48px;
      padding: unset;
      border-radius: 28px; }
      .modern_content .item-welling .image img {
        height: 230px;
        object-fit: cover; }
      .modern_content .item-welling .content {
        min-height: 81px;
        max-width: 275px;
        margin: auto; }
        .modern_content .item-welling .content p {
          font-family: "Roboto";
          font-size: 20px;
          line-height: 30px; }
      .modern_content .item-welling:last-child {
        margin-right: 0; }
  .modern:before {
    position: absolute;
    top: -55px;
    right: 0;
    left: 0;
    width: 100%;
    content: '';
    background: url("/assets/img/Path_16755.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 153px;
    z-index: 9; }
  .modern:after {
    display: none; }

.plan {
  width: 100%;
  background: #f8f8f8;
  padding: 75px 0; }
  .plan__title {
    margin-bottom: 65px;
    width: 100%;
    text-align: center; }
    .plan__title span {
      color: #00aeef; }
  .plan_title {
    margin-top: 29px; }
    .plan_title span {
      font-size: 20px;
      line-height: 40px; }
  .plan_1 {
    width: calc((100% - 100px)/2);
    margin-right: 100px;
    text-align: center; }
  .plan_2 {
    width: calc((100% - 100px)/2);
    text-align: center; }
  .plan_image {
    width: 100%; }
    .plan_image img {
      width: 100%; }
  .plan:before {
    position: absolute;
    top: -100px;
    right: 0;
    left: 0;
    width: 100%;
    content: '';
    background: url("/assets/img/Path_16700.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 153px;
    z-index: 9; }
  .plan:after {
    background: url("/assets/img/Path_16755.png");
    bottom: -115px; }

.feedback {
  width: 100%;
  padding-top: 175px;
  padding-bottom: 160px;
  background: #fff; }
  .feedback_title {
    width: 100%;
    text-align: center;
    margin-bottom: 70px; }
    .feedback_title span {
      color: #8dc63f; }
  .feedback .feedback_e666 {
    width: 100%; }
    .feedback .feedback_e666 .item {
      background: #f8f8f8;
      margin: 15px 0; }
      .feedback .feedback_e666 .item_name {
        width: 100%;
        text-align: center;
        padding: 15px;
        font-size: 18px;
        font-family: 'Roboto'; }
      .feedback .feedback_e666 .item_content {
        padding: 0 15px 15px; }
        .feedback .feedback_e666 .item_content p {
          font-size: 14px;
          line-height: 22px;
          font-weight: 300;
          -webkit-line-clamp: 4;
          min-height: 88px; }
      .feedback .feedback_e666 .item_image img {
        height: 168px;
        width: 100%;
        object-fit: cover; }
  .feedback.has_bgk:after {
    display: none;
    top: -100px;
    height: 150px;
    background: url("/assets/img/Path_16755.png"); }
  .feedback .owl-carousel .owl-nav {
    display: none !important; }
  .feedback .owl-carousel .owl-dots {
    text-align: center;
    position: absolute;
    left: 50%;
    bottom: 0px;
    bottom: -40px;
    display: flex !important;
    transform: translateX(-50%); }
    .feedback .owl-carousel .owl-dots .owl-dot {
      margin-right: 18px;
      height: 10px;
      width: 10px;
      border-radius: 50%;
      background: #C1C1C1;
      display: block; }
      .feedback .owl-carousel .owl-dots .owl-dot.active {
        background: #8dc63f; }

.hingh_photo {
  width: 100%;
  padding: 70px 0 50px; }
  .hingh_photo__title {
    width: 100%;
    text-align: center;
    margin-bottom: 70px; }
  .hingh_photo__content {
    width: 100%;
    display: flex;
    flex-wrap: wrap; }
    .hingh_photo__content img {
      width: calc((100% - 120px)/4);
      margin-right: 40px;
      margin-bottom: 40px;
      height: 165px; }
      .hingh_photo__content img:nth-child(4n) {
        margin-right: 0; }
  .hingh_photo:before {
    position: absolute;
    top: -100px;
    right: 0;
    left: 0;
    width: 100%;
    content: '';
    background: url("/assets/img/Path_16700.png");
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
    height: 153px;
    z-index: 9; }
  .hingh_photo:after {
    background: url("/assets/img/Path_16755.png");
    bottom: -80px; }

.research {
  width: 100%;
  text-align: center;
  padding-top: 130px;
  background: #fff;
  padding-bottom: 80px; }
  .research_title {
    width: 100%;
    text-align: center;
    margin-bottom: 38px; }
    .research_title img {
      max-height: 57px;
      position: relative;
      top: 5px;
      margin-left: 16px;
      z-index: 99; }
  .research_content {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px; }
    .research_content__item {
      width: calc(100% / 4);
      text-align: center;
      border-right: 1px solid #5a5a5a;
      font-family: "Roboto"; }
      .research_content__item:last-child {
        border-right: none; }
      .research_content__item .number {
        font-size: 80px;
        color: #00adee;
        font-family: "Helvetica"; }
      .research_content__item p {
        max-width: 200px;
        font-size: 14px;
        line-height: 22px;
        margin: auto; }
  .research_qr {
    position: absolute;
    left: 46%;
    top: -22px; }
    .research_qr p {
      font-size: 22px;
      font-weight: bold; }
    .research_qr__image {
      padding: 13px;
      border-radius: 10px;
      border: 1px solid #00AEEF;
      margin-bottom: 7px; }
      .research_qr__image img {
        height: 120px;
        width: 120px !important; }
  .research_image {
    width: 100%;
    position: relative;
    margin-top: 50px;
    margin-bottom: 15px; }
    .research_image img {
      width: 100%; }
  .research.has_bgk:after {
    display: none;
    top: -100px;
    height: 150px;
    background: url("/assets/img/path_16354_150.png"); }

@media only screen and (max-width: 1445px) {
  .research_qr {
    left: 45%; }

  .material_content__right .right_text:before {
    width: 28%;
    left: -20%; } }
.footer {
  padding: 40px 0 0;
  background: #00aeef;
  color: #fff; }
  .footer span {
    color: #fff; }
  .footer_title {
    width: 100%;
    text-align: center;
    margin-bottom: 46px; }
    .footer_title span:last-child {
      font-weight: 300; }
  .footer_content {
    width: 100%;
    display: flex;
    padding-bottom: 55px; }
    .footer_content__left {
      width: 50%;
      text-align: left;
      padding-right: 215px; }
      .footer_content__left .left_title {
        width: 100%;
        margin-bottom: 6px; }
        .footer_content__left .left_title span {
          width: 100%;
          display: block;
          line-height: 36px; }
          .footer_content__left .left_title span:last-child {
            font-weight: 300; }
      .footer_content__left .left_content {
        width: 100%;
        font-family: "Roboto";
        padding-top: 25px;
        position: relative; }
        .footer_content__left .left_content li {
          padding: 25px 0;
          border-bottom: 1px solid #fff;
          font-size: 16px;
          line-height: 28px; }
          .footer_content__left .left_content li:last-child {
            border-bottom: none; }
      .footer_content__left .left_contact {
        width: 100%;
        padding: 15px 20px;
        border: 1px solid #fff;
        border-radius: 10px;
        text-align: center;
        font-size: 22px;
        margin-top: 15px;
        font-family: "Roboto"; }
        .footer_content__left .left_contact span {
          line-height: 22px; }
        .footer_content__left .left_contact a {
          color: #fff; }
    .footer_content__right {
      width: 50%;
      text-align: left; }
      .footer_content__right .right_title {
        width: 100%;
        margin-bottom: 38px; }
        .footer_content__right .right_title span {
          width: 100%;
          display: block;
          line-height: 36px; }
          .footer_content__right .right_title span:last-child {
            font-weight: 300; }
      .footer_content__right .form_content {
        display: flex;
        justify-content: flex-end;
        width: 100%; }
      .footer_content__right .right_form {
        background-color: #fff;
        border-radius: 12px;
        width: 100%;
        padding: 23px 40px 35px; }
        .footer_content__right .right_form .form-group {
          width: 100%;
          margin-bottom: 15px;
          font-family: "Roboto"; }
          .footer_content__right .right_form .form-group label {
            width: 100%;
            color: #515151;
            display: block;
            margin-bottom: 10px;
            font-size: 12px;
            font-weight: 500; }
          .footer_content__right .right_form .form-group input {
            width: 100%;
            height: 40px;
            border-radius: 6px;
            border: 0.5px solid #ccc;
            padding: 0 10px; }
          .footer_content__right .right_form .form-group.phone_mail {
            display: flex; }
            .footer_content__right .right_form .form-group.phone_mail .phone {
              width: 40%;
              margin-right: 20px; }
            .footer_content__right .right_form .form-group.phone_mail .email {
              width: calc(100% - 40% - 20px); }
          .footer_content__right .right_form .form-group button {
            border: none;
            background: #00aeef;
            color: #fff;
            padding: 10px;
            border-radius: 10px;
            display: flex;
            align-items: center;
            min-width: 140px;
            justify-content: center; }
            .footer_content__right .right_form .form-group button i {
              margin-left: 10px;
              font-size: 18px;
              font-weight: inherit; }
          .footer_content__right .right_form .form-group.btn-group {
            display: flex;
            align-items: center;
            margin-bottom: 0;
            padding-top: 13px; }
            .footer_content__right .right_form .form-group.btn-group .text_form {
              width: calc(100% - 144px - 15px);
              display: flex;
              justify-content: flex-end;
              margin-left: 15px; }
            .footer_content__right .right_form .form-group.btn-group p {
              color: #00aeef;
              font-style: italic;
              font-size: 12px;
              max-width: 200px;
              text-align: end;
              font-weight: 500;
              line-height: 18px; }
  .footer_copyright {
    padding: 20px 0;
    text-align: center;
    width: 100%;
    font-family: "Roboto";
    border-top: 1px solid #fff; }
    .footer_copyright p {
      font-size: 14px;
      color: #fff;
      font-weight: 500; }
  .footer.has_bgk:after {
    top: -125px;
    height: 150px;
    background: url("/assets/img/path_16360_150.png"); }

.icon-fix {
  position: fixed;
  right: 58px;
  width: 50px;
  z-index: 9999;
  bottom: 140px; }
  .icon-fix .icon-fix__phone {
    width: 100%;
    clear: both; }
    .icon-fix .icon-fix__phone a {
      background-image: url("/assets/img/back-icon.png");
      background-position: -244px -65px;
      background-size: cover;
      display: block;
      width: 100%;
      height: 65px;
      margin-bottom: 15px; }

.err_show {
  color: red !important;
  display: none;
  padding-top: 5px;
  font-size: 12px;
  font-style: italic; }

.err_show.news {
  clear: both;
  margin-bottom: 0;
  text-align: center;
  float: right; }

.err_show.active {
  display: block !important; }

.toast-top-right {
  top: 12px;
  right: 12px; }

.toast-bottom-right {
  right: 12px;
  bottom: 12px; }

.toast-bottom-left {
  bottom: 12px;
  left: 12px; }

#toast-container {
  position: fixed;
  z-index: 999999;
  pointer-events: none;
  display: none; }

#toast-container * {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box; }

#toast-container > div {
  position: relative;
  pointer-events: auto;
  overflow: hidden;
  margin: 0 0 6px;
  padding: 15px 15px 15px 50px;
  width: 300px;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  background-position: 15px center;
  background-repeat: no-repeat;
  -moz-box-shadow: 0 0 12px #999;
  -webkit-box-shadow: 0 0 12px #999;
  box-shadow: 0 0 12px #999;
  color: #FFF;
  opacity: .8;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  filter: alpha(opacity=80); }

#toast-container > div.rtl {
  direction: rtl;
  padding: 15px 50px 15px 15px;
  background-position: right 15px center; }

#toast-container > div:hover {
  -moz-box-shadow: 0 0 12px #000;
  -webkit-box-shadow: 0 0 12px #000;
  box-shadow: 0 0 12px #000;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  filter: alpha(opacity=100);
  cursor: pointer; }

#toast-container > .toast-error {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAHOSURBVEhLrZa/SgNBEMZzh0WKCClSCKaIYOED+AAKeQQLG8HWztLCImBrYadgIdY+gIKNYkBFSwu7CAoqCgkkoGBI/E28PdbLZmeDLgzZzcx83/zZ2SSXC1j9fr+I1Hq93g2yxH4iwM1vkoBWAdxCmpzTxfkN2RcyZNaHFIkSo10+8kgxkXIURV5HGxTmFuc75B2RfQkpxHG8aAgaAFa0tAHqYFfQ7Iwe2yhODk8+J4C7yAoRTWI3w/4klGRgR4lO7Rpn9+gvMyWp+uxFh8+H+ARlgN1nJuJuQAYvNkEnwGFck18Er4q3egEc/oO+mhLdKgRyhdNFiacC0rlOCbhNVz4H9FnAYgDBvU3QIioZlJFLJtsoHYRDfiZoUyIxqCtRpVlANq0EU4dApjrtgezPFad5S19Wgjkc0hNVnuF4HjVA6C7QrSIbylB+oZe3aHgBsqlNqKYH48jXyJKMuAbiyVJ8KzaB3eRc0pg9VwQ4niFryI68qiOi3AbjwdsfnAtk0bCjTLJKr6mrD9g8iq/S/B81hguOMlQTnVyG40wAcjnmgsCNESDrjme7wfftP4P7SP4N3CJZdvzoNyGq2c/HWOXJGsvVg+RA/k2MC/wN6I2YA2Pt8GkAAAAASUVORK5CYII=) !important; }

#toast-container > .toast-success {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADsSURBVEhLY2AYBfQMgf///3P8+/evAIgvA/FsIF+BavYDDWMBGroaSMMBiE8VC7AZDrIFaMFnii3AZTjUgsUUWUDA8OdAH6iQbQEhw4HyGsPEcKBXBIC4ARhex4G4BsjmweU1soIFaGg/WtoFZRIZdEvIMhxkCCjXIVsATV6gFGACs4Rsw0EGgIIH3QJYJgHSARQZDrWAB+jawzgs+Q2UO49D7jnRSRGoEFRILcdmEMWGI0cm0JJ2QpYA1RDvcmzJEWhABhD/pqrL0S0CWuABKgnRki9lLseS7g2AlqwHWQSKH4oKLrILpRGhEQCw2LiRUIa4lwAAAABJRU5ErkJggg==) !important; }

#toast-container.toast-bottom-center > div,
#toast-container.toast-top-center > div {
  width: 300px;
  margin-left: auto;
  margin-right: auto; }

.toast {
  background-color: #030303; }

.toast-success {
  background-color: #51A351; }

.toast-error {
  background-color: #BD362F; }

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