@charset "UTF-8";
@media only screen and (max-width: 1200px) {
  header .list-posts-top .wrapper .left,
header .list-posts-top .wrapper .right {
    display: none;
  }
}
header .top-line-head {
  display: flex;
  align-items: center;
  padding: 7px 15px 9px 15px;
  background: #fff1e5;
}

header .top-line-head .line-datetime span {
  display: inline-block;
  color: #222;
  font-size: 14px;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  line-height: 15px;
}

header .top-line-head .line-datetime:before {
  content: "";
  width: 0;
  height: 15px;
  border-left: 1px dotted #777;
  margin-right: 20px;
}

header .top-line-head .line-rss {
  display: flex;
  align-items: baseline;
  margin-left: auto;
}

header .top-line-head .line-rss a {
  display: inline-block;
  text-decoration: none;
  font-size: 14px;
  color: #666;
  line-height: 20px;
  border-radius: 2px;
  margin-left: 10px;
}
header .top-line-head .line-rss .search-nav {
  display: inline-block;
  text-decoration: none;
  font-size: 14px;
  color: #666;
  line-height: 20px;
  border-radius: 2px;
  margin-left: 10px;
}

header .top-line-head .line-rss a:hover {
  color: #fff;
  background: #003f1b;
}

header .top-line-head .line-rss .icon {
  height: 14px;
  width: auto;
}

header .list-posts-top {
  background: #003f1b;
  padding: 19px 0;
}

header .list-posts-top .wrapper {
  position: relative;
}

header .list-posts-top .wrapper .swiper {
  margin: 0 -15px;
  padding: 15px 0;
}

header .list-posts-top .wrapper .swiper .post-item {
  flex-shrink: 0;
  padding: 0 15px;
}

header .list-posts-top .wrapper .swiper .post-item .item-box {
  display: flex;
  box-shadow: 0 0 10px #1a1a1a;
  background: #fff;
}

header .list-posts-top .wrapper .swiper .post-item .item-box .img {
  width: 100px;
  flex-shrink: 0;
}

header .list-posts-top .wrapper .swiper .post-item .item-box .cate {
  display: block;
  color: #999;
  font-size: 12px;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-style: italic;
  margin: 0;
  line-height: 16px;
  margin-top: -2px;
}

header .list-posts-top .wrapper .swiper .post-item .item-box .content {
  padding: 8px 10px 8px 20px;
}

header .list-posts-top .wrapper .swiper .post-item .item-box .content .title {
  color: #333;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 13px;
  line-height: 18px;
  max-height: 36px;
  overflow: hidden;
}

header .list-posts-top .wrapper .swiper .post-item .item-box .content .title:hover {
  color: #777;
}

header .list-posts-top .wrapper .swiper-button-next,
header .list-posts-top .wrapper .swiper-button-prev {
  position: absolute;
  border-color: #6ba834;
  background: #6ba834;
  color: #000;
  font-size: 11px;
  width: 20px;
  height: 20px;
  line-height: 20px;
  text-align: center;
  outline: none;
  border-radius: 3px;
  top: 50%;
  transform: translateY(-50%);
  margin-top: 0;
}

header .list-posts-top .wrapper .swiper-button-next:after, .swiper-rtl .swiper-button-prev:after,
header .list-posts-top .wrapper .swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
  font-size: 12px;
}

header .list-posts-top .wrapper .swiper-button-next:hover,
header .list-posts-top .wrapper .swiper-button-prev:hover {
  background: #fff1e5;
}

header .list-posts-top .wrapper .swiper-button-prev {
  left: -20px;
}

header .list-posts-top .wrapper .swiper-button-next {
  right: -20px;
}

header #nav {
  border-bottom: 1px solid #f0f0f0;
  background: #fff1e5;
}

header #nav.sticky {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 999;
}

header #nav .wrapper {
  display: flex;
}

header #nav .wrapper .logo {
  width: 120px;
  flex-shrink: 0;
}

header #nav .wrapper .logo .nav-logo {
  display: inline-block;
  padding: 5px 0;
}

header #nav .wrapper .nav-bar {
  margin-left: auto;
  display: flex;
}

header #nav .wrapper .nav-bar .nav-item {
  position: relative;
}

header #nav .wrapper .nav-bar > li {
  margin-right: 1px;
}

header #nav .wrapper .nav-bar > li > a {
  color: #333;
  font-size: 15px;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  padding: 20px 30px 15px 12px;
  position: relative;
  z-index: 2;
  display: inline-block;
  height: 100%;
}

header #nav .wrapper .nav-bar > li > a:before {
  position: absolute;
  content: "";
  width: 100%;
  height: 3px;
  top: 0;
  left: 0;
  z-index: -1;
  background: #6ba834;
  transition: all 0.2s ease-in-out;
}

header #nav .wrapper .nav-bar > li > a:after {
  content: "\f078";
  position: absolute;
  font-family: "icomoon", sans-serif;
  font-size: 8px;
  color: #666;
  top: 25px;
  right: 13px;
}

header #nav .wrapper .nav-bar > li > ul {
  display: none;
  margin: 0;
  padding: 0;
  position: absolute;
  top: 100%;
  left: 0;
  width: 250px;
  background: #fff;
  border-top: 3px solid #6ba834;
  z-index: 99;
}

header #nav .wrapper .nav-bar > li > ul > li {
  color: #222;
  background: #fafafa;
}

header #nav .wrapper .nav-bar > li > ul > li > a {
  display: block;
  color: #999;
  font-size: 13px;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  text-transform: uppercase;
  padding: 15px 20px;
  background: #fff;
}

header #nav .wrapper .nav-bar > li > ul > li > a:hover {
  color: #222;
  background: #fafafa;
}

header #nav .wrapper .nav-bar > li:hover > a {
  color: #fff;
}

header #nav .wrapper .nav-bar > li:hover > a:before {
  height: 100%;
}

header #nav .wrapper .nav-bar > li:hover > a:after {
  color: #fff;
}

header #nav .wrapper .nav-bar > li:hover > ul {
  display: block;
}
header.sticky #nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 100;
}
header.sticky .expand-bar {
  top: 57px;
}
@font-face {
  font-family: "icomoon";
  src: url("../fonts/icomoon/icomoon.eot");
  src: url("../fonts/icomoon/icomoon.eot") format("embedded-opentype"), url("../fonts/icomoon/icomoon.ttf") format("truetype"), url("../fonts/icomoon/icomoon.woff") format("woff"), url("../fonts/icomoon/icomoon.svg") format("svg");
  font-weight: normal;
  font-style: normal;
}
.icon {
  font-family: "icomoon" !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.icon-messenger:before {
  content: "\e901";
  color: #00b2ff;
}

.icon-search:before {
  content: "\f002";
}

.icon-th-large:before {
  content: "\f009";
}

.icon-home:before {
  content: "\f015";
}

.icon-map-marker:before {
  content: "\f041";
}

.icon-comment:before {
  content: "\f075";
}

.icon-chevron-down:before {
  content: "\f078";
}

.icon-phone:before {
  content: "\f095";
}

.icon-twitter:before {
  content: "\f099";
}

.icon-facebook:before {
  content: "\f09a";
}

.icon-facebook-f:before {
  content: "\f09a";
}

.icon-feed:before {
  content: "\f09e";
}

.icon-rss:before {
  content: "\f09e";
}

.icon-group:before {
  content: "\f0c0";
}

.icon-users:before {
  content: "\f0c0";
}

.icon-bars:before {
  content: "\f0c9";
}

.icon-navicon:before {
  content: "\f0c9";
}

.icon-reorder:before {
  content: "\f0c9";
}

.icon-list-ul:before {
  content: "\f0ca";
}

.icon-google-plus:before {
  content: "\f0d5";
}

.icon-envelope:before {
  content: "\f0e0";
}

.icon-angle-left:before {
  content: "\f104";
}

.icon-angle-right:before {
  content: "\f105";
}

.icon-youtube:before {
  content: "\e900";
}
html{
  background-color: #fff1e5;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
dfn,
img,
kbd,
q,
s,
samp,
small,
strike,
tt,
var,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
article,
aside,
canvas,
details,
embed,
figure,
figcaption,
footer,
header,
hgroup,
menu,
nav,
output,
ruby,
section,
summary,
time,
mark,
audio,
video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

:focus {
  outline: 0;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}

body {
  line-height: 1;
}

ol,
ul {
  list-style: none;
}

blockquote,
q {
  quotes: none;
}

blockquote:before,
blockquote:after,
q:before,
q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration,
input[type=search]::-webkit-search-results-button,
input[type=search]::-webkit-search-results-decoration {
  -webkit-appearance: none;
  -moz-appearance: none;
}

input[type=search] {
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
}

textarea {
  overflow: auto;
  vertical-align: top;
  resize: vertical;
}

audio,
canvas,
video {
  display: inline-block;
  *display: inline;
  *zoom: 1;
  max-width: 100%;
}

audio:not([controls]) {
  display: none;
  height: 0;
}

[hidden] {
  display: none;
}

html {
  font-size: 100%;
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}

a:focus {
  outline: thin dotted;
}

a:active,
a:hover {
  outline: 0;
}

img {
  border: 0;
  -ms-interpolation-mode: bicubic;
}

figure {
  margin: 0;
}

form {
  margin: 0;
}

fieldset {
  border: 1px solid #c0c0c0;
  margin: 0 2px;
  padding: 0.35em 0.625em 0.75em;
}

legend {
  border: 0;
  padding: 0;
  white-space: normal;
  *margin-left: -7px;
}

button,
input,
select,
textarea {
  font-size: 100%;
  margin: 0;
  vertical-align: baseline;
  *vertical-align: middle;
}

button,
input {
  line-height: normal;
}

button,
select {
  text-transform: none;
}

button,
html input[type=button],
input[type=reset],
input[type=submit] {
  -webkit-appearance: button;
  cursor: pointer;
  *overflow: visible;
}

button[disabled],
html input[disabled] {
  cursor: default;
}

input[type=checkbox],
input[type=radio] {
  box-sizing: border-box;
  padding: 0;
  *height: 13px;
  *width: 13px;
}

input[type=search] {
  -webkit-appearance: textfield;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

input[type=search]::-webkit-search-cancel-button,
input[type=search]::-webkit-search-decoration {
  -webkit-appearance: none;
}

button::-moz-focus-inner,
input::-moz-focus-inner {
  border: 0;
  padding: 0;
}

textarea {
  overflow: auto;
  vertical-align: top;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

html,
button,
input,
select,
textarea {
  color: #222;
}

::-moz-selection {
  background: #b3d4fc;
  text-shadow: none;
}

::selection {
  background: #b3d4fc;
  text-shadow: none;
}

img {
  vertical-align: middle;
  max-width: 100%;
}

fieldset {
  border: 0;
  margin: 0;
  padding: 0;
}

textarea {
  resize: vertical;
}

.chromeframe {
  margin: 0.2em 0;
  background: #ccc;
  color: #000;
  padding: 0.2em 0;
}

a {
  text-decoration: unset;
  color: inherit;
}

a:hover,
a:active,
a:focus {
  outline: 0;
}

* {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

@font-face {
  font-family: "Open Sans";
  src: local("OpenSans Regular"), url("../fonts/opensans/OpenSans-Regular.woff2") format("woff2"), url("../fonts/opensans/OpenSans-Regular.woff") format("woff"), url("../fonts/opensans/OpenSans-Regular.ttf") format("truetype"), url("../fonts/opensans/OpenSans-Regular.eot") format("embedded-opentype"), url("../fonts/opensans/OpenSans-Regular.svg") format("svg");
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: "Open Sans";
  src: local("OpenSans SemiBold"), url("../fonts/opensans/OpenSans-SemiBold.woff2") format("woff2"), url("../fonts/opensans/OpenSans-SemiBold.woff") format("woff"), url("../fonts/opensans/OpenSans-SemiBold.ttf") format("truetype"), url("../fonts/opensans/OpenSans-SemiBold.eot") format("embedded-opentype"), url("../fonts/opensans/OpenSans-SemiBold.svg") format("svg");
  font-weight: 600;
  font-style: normal;
}
@font-face {
  font-family: "Open Sans";
  src: local("OpenSans Bold"), url("../fonts/opensans/OpenSans-Bold.woff2") format("woff2"), url("../fonts/opensans/OpenSans-Bold.woff") format("woff"), url("../fonts/opensans/OpenSans-Bold.ttf") format("truetype"), url("../fonts/opensans/OpenSans-Bold.eot") format("embedded-opentype"), url("../fonts/opensans/OpenSans-Bold.svg") format("svg");
  font-weight: bold;
  font-style: normal;
}
body {
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  line-height: 1.42857143;
}

p {
  font-size: 14px;
  color: #000;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-weight: 400;
  line-height: 20px;
  margin-bottom: 15px;
  word-wrap: break-word;
  word-break: break-word;
}

.img,
.title {
  display: block;
}

.entry-body h2,
.entry-body h3,
.entry-body h4,
.entry-body h5,
.entry-body h6 {
  margin: 10px 0 15px;
  font-weight: bold;
}

.entry-body h2 {
  font-size: 1.5em;
}

.entry-body h3 {
  font-size: 1.17em;
}

.entry-body h4 {
  font-size: 1em;
}

.entry-body h5 {
  font-size: 0.83em;
}

.entry-body h6 {
  font-size: 0.67em;
}

.entry-body th,
.entry-body td {
  border-width: 1px;
  border-style: solid;
  padding: 5px;
}

/*=================================================================*/
.image-wrapper {
  position: relative;
  display: block;
  padding-bottom: 56.25%;
}

.image-wrapper-full {
  position: relative;
  display: block;
  padding-bottom: 100%;
}

.image-wrapper img,
.image-wrapper-full img {
  position: absolute;
  object-fit: cover;
  width: 100%;
  height: 100%;
}

/*=================================================================*/
.fblw-timeline-item {
  background: #fff;
}

.fblwtia-mask {
  background: #fff;
  position: absolute;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  height: 10px;
}

.fblwtia-title-line {
  right: 0;
  left: 36%;
  top: 0;
  height: 20px;
  width: 3%;
}

.fblwtia-front-mask {
  height: 10px;
  left: 36%;
  width: 3%;
}

.fblwtia-title-mask-1 {
  top: 30px;
}

.fblwtia-front-mask-2 {
  top: 70px;
  height: 15px;
}

.fblwtia-front-mask-3 {
  top: 105px;
}

.fblwtia-front-mask-4 {
  top: 125px;
}

.fblwtia-sepline-sapo {
  left: 36%;
  right: 0;
}

.fblwtia-sepline-sapo-0 {
  top: 20px;
}

.fblwtia-sepline-sapo-1 {
  top: 50px;
  height: 20px;
}

.fblwtia-sepline-sapo-2 {
  top: 85px;
  height: 20px;
}

.fblwtia-sepline-sapo-3 {
  top: 115px;
}

.fblwtia-sepline-sapo-4 {
  top: 135px;
  height: 50px;
}

.fblwtia-sapo-line {
  right: 0;
}

.fblwtia-sapo-line-2 {
  top: 70px;
  left: 55%;
  height: 15px;
}

.fblwtia-sapo-line-3 {
  top: 105px;
  left: 95%;
}

.fblwtia-sapo-line-4 {
  top: 125px;
  left: 85%;
  height: 10px;
}

.fblwti-animated {
  animation-duration: 1.5s;
  animation-fill-mode: forwards;
  animation-iteration-count: infinite;
  animation-name: placeHolderShimmer;
  animation-timing-function: linear;
  background: #f6f7f8;
  background: linear-gradient(to right, #eee 8%, #ddd 18%, #eee 33%);
  background-size: 800px 200px;
  height: 110px;
  position: relative;
}

@-webkit-keyframes placeHolderShimmer {
  0% {
    background-position: -800px 0;
  }
  100% {
    background-position: 800px 0;
  }
}
.fblwti-animated {
  height: 185px;
}

.fblwtia-sapo-line-0 {
  top: 0;
  left: 98%;
  height: 20px;
}

.fblwtia-sapo-line-1 {
  top: 30px;
  left: 85%;
  height: 20px;
}

.fb-loading-wrapper {
  padding: 25px 0;
  display: none;
}

.kdsdsk-wrapper {
  overflow: hidden;
}

.contentleft.list .fblwtia-title-line {
  left: 45%;
}

.contentleft.list .fblwtia-sepline-sapo {
  left: 45%;
}

.contentleft.list .fblwtia-front-mask {
  left: 45%;
}

.contentleft.list .fblwtia-sapo-line-0 {
  left: 98% !important;
}

.contentleft.list .fblwtia-sapo-line-1 {
  left: 85% !important;
}

.totalzoneapec .coll .timelineapec .loadnews li:first-child .thumbs-img {
  width: 350px;
  height: 218px;
}

.clearfix::after {
  display: block;
  content: "";
  clear: both;
}

.auto-loading .fb-loading-wrapper {
  display: block;
}

.auto-loading .readmore {
  display: none;
}

.auto-load footer {
  display: none;
}

.wrapper {
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  /* padding: 0 15px; */
}

ul[data-slideshow-slides] {
  overflow-x: hidden;
  white-space: nowrap;
  vertical-align: top;
  display: flex;
}

ul[data-slideshow-slides] li[data-slideshow-item] {
  flex-shrink: 0;
  width: 100%;
}

ul[data-slideshow-slides] li .title {
  display: block;
  white-space: normal;
}

[data-slideshow-prev],
[data-slideshow-next] {
  cursor: pointer;
}

.readmore a {
  display: block;
  margin-top: 20px;
  text-align: right;
  padding-right: 20px;
  color: #337ab7;
  font-weight: bold;
}

.search-form {
  position: relative;
  margin-bottom: 30px;
}

.search-form-header {
  margin-top: 20px;
  margin-bottom: 0;
  
}

.search-form input[type=text] {
  border: 1px solid #dedede;
  padding: 10px;
  color: #333;
  font-size: 11px;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  border-radius: 2px;
  outline: none;
  width: 100%;
}

.search-form button {
  background: transparent;
  border: none;
  position: absolute;
  top: 10px;
  right: 13px;
  padding: 0;
  font-size: 13px;
  color: #666;
}

.main .wrapper {
  display: flex;
  padding: 0;
}

.main .wrapper .main-block-content {
  padding: 30px 15px 60px;
  position: relative;
  width: 680px;
}

.section-primary {
  padding: 0px 10px 30px 15px;
}
.section-primary__top {
  display: flex;
  padding-bottom: 20px;
  border-bottom: 1px solid #c4c4c4;
}
.section-primary__top .left {
  max-width: 570px;
  width: 100%;
}
.section-primary__top .left .article-content {
  margin-top: 16px;
}
.section-primary__top .left .article-title {
  font-size: 24px;
  font-weight: bold;
  color: #333;
}
.section-primary__top .left .time-public {
  margin-top: 8px;
  font-size: 12px;
  color: #828282;
  display: flex;
  align-items: center;
}
.section-primary__top .left .time-public .text-1 {
  font-weight: bold;
}
.section-primary__top .left .article-des {
  font-size: 16px;
  line-height: 24px;
  color: #4f4f4f;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-weight: 400;
  margin-top: 12px;
}
.section-primary__top .right {
  flex: 1;
  padding-left: 20px;
}
.section-primary__top .right .article {
  padding-bottom: 20px;
}
.section-primary__top .right .article .article-title {
  font-size: 16px;
  font-weight: bold;
  margin-top: 10px;
  color: #333;
}
.section-primary__bot {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-gap: 16px;
  gap: 16px;
  padding-top: 20px;
}
.section-primary__bot .article-content {
  margin-top: 6px;
}
.section-primary__bot .article-title {
  font-size: 15px;
  font-weight: bold;
  color: #333;
}

.heading-one {
  /* border-bottom: 1px solid #e1e1e1; */
  margin-bottom: 16px;
}
.heading-one .title {
  color: #000000;
  font-size: 16px;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-weight: bold;
  margin: 0 0 30px;
  text-transform: uppercase;
  margin-bottom: -1px;
  display: inline-block;
  /* padding-bottom: 16px; */
  padding-left: 10px;
  border-left: 6px solid #000000;
  text-transform: uppercase;
}

.section-secondary {
  display: flex;
}
.section-secondary .block-primary {
  margin-bottom: 16px;
}
.section-secondary .block-primary__large .article {
  position: relative;
}
.section-secondary .block-primary__large .article-content {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.7);
  padding: 20px 40px;
  text-align: center;
}
.section-secondary .block-primary__large .article-title {
  display: block;
  font-size: 30px;
  color: #333;
}
.section-secondary .block-primary__small {
  display: flex;
  flex-wrap: wrap;
}
.section-secondary .block-primary__small .article {
  width: 50%;
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  display: flex;
}
.section-secondary .block-primary__small .article:nth-child(even) {
  padding-left: 15px;
}
.section-secondary .block-primary__small .article:nth-child(odd) {
  padding-right: 15px;
}
.section-secondary .block-primary__small .article-img {
  width: 35%;
  flex-shrink: 0;
}
.section-secondary .block-primary__small .article-content {
  flex: 1;
  padding-left: 20px;
}
.section-secondary .block-primary__small .article-title {
  color: #333;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 15px;
}
.section-secondary .block-secondary {
  margin-bottom: 16px;
}
.section-secondary .block-secondary .content {
  margin: 0 -5px;
  display: flex;
  flex-wrap: wrap;
}
.section-secondary .block-secondary .content .article {
  padding: 5px;
  width: 50%;
  position: relative;
}
.section-secondary .block-secondary .content .article-content {
  position: absolute;
  bottom: 5px;
  left: 5px;
  right: 5px;
  background: rgba(255, 255, 255, 0.7);
  padding: 10px 40px;
  text-align: center;
}
.section-secondary .block-secondary .content .article-title {
  color: #333;
  font-size: 13px;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 18px;
  line-height: 24px;
  max-height: 70px;
  overflow: hidden;
}
.section-secondary .block-tertiary {
  margin-bottom: 16px;
}
.section-secondary .block-tertiary .content .article {
  display: flex;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
}
.section-secondary .block-tertiary .content .article-img {
  width: 35%;
  flex-shrink: 0;
}
.section-secondary .block-tertiary .content .article-content {
  flex: 1;
  padding-left: 20px;
}
.section-secondary .block-tertiary .content .article-title {
  color: #333;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 18px;
}
.section-secondary .block-tertiary .content .article-des {
  font-size: 14px;
  line-height: 20px;
  color: #000;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-weight: 400;
  margin-top: 12px;
}

.search-form input[type=text] {
  border: 1px solid #dedede;
  color: #333;
}

.f-content .icon {
  margin-right: 5px;
}

.main .wrapper .sidebar-small {
  width: 190px;
  padding: 30px 15px;
  flex-shrink: 0;
}

.main .wrapper .sidebar-small .widget .sb-title {
  font-size: 15px;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  padding: 7px 20px;
  background: #003f1b;
  margin-bottom: 10px;
}

.main .wrapper .sidebar-small .widget .review-list .item {
  padding: 10px 0;
  border-bottom: 1px solid #f0f0f0;
  overflow: hidden;
}

.main .wrapper .sidebar-small .widget .review-list .item .img {
  margin-bottom: 10px;
}

.main .wrapper .sidebar-small .widget .review-list .item .title {
  color: #333;
  font-size: 15px;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-weight: 700;
  line-height: 22px;
  margin: 0 0 10px;
}

.main .wrapper .sidebar-small .widget .review-list .item .title:hover {
  color: #003f1b;
}

.main .wrapper .sidebar-big {
  width: 330px;
  padding: 0px 15px 30px 15px;
  /* padding: 10px 15px; */
  flex-shrink: 0;
}

.main .wrapper .sidebar-big .widget {
  margin-bottom: 30px;
}

.main .wrapper .sidebar-big .widget.nongsan,
.main .wrapper .sidebar-big .widget.taichinh {
  background: #eff7fa;
}

.main .wrapper .sidebar-big .widget .sb-title {
  font-size: 15px;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  padding: 7px 20px;
  background: #003f1b;
  margin-bottom: 20px;
  display: block;
}

.main .wrapper .sidebar-big .widget .review-list .item .img-box {
  display: flex;
  margin-bottom: 10px;
}

.main .wrapper .sidebar-big .widget .review-list .item .img-box .img {
  width: 110px;
  flex-shrink: 0;
  margin-right: 15px;
}

.main .wrapper .sidebar-big .widget .review-list .item .img-box .title {
  color: #333;
  font-size: 15px;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-weight: 700;
  line-height: 22px;
  margin-top: -2px;
}

/* .main .wrapper .sidebar-big .widget .review-list .item .img-box .title:hover {
  color: #003f1b;
} */

.main .wrapper .sidebar-big .widget .review-list .item .sapo-box .sapo {
  font-size: 14px;
  color: #000;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-weight: 400;
  line-height: 20px;
  display: block;
  margin-bottom: 5px;
}

.main .wrapper .sidebar-big .widget .review-list .item .sapo-box .time {
  font-size: 13px;
  color: #999;
  font-style: italic;
  display: block;
  margin-bottom: 5px;
}

.main .wrapper .sidebar-big .widget .review-list .item .readnew {
  display: block;
  text-align: right;
  color: #909090;
  font-style: italic;
}

.pager {
  display: flex;
}

.pager li {
  list-style: none;
  display: inline-block;
  border: thin solid #ccc;
  border-radius: 3px;
  margin-right: 10px;
  transition: ease 0.2s;
  color: #8b8b8b;
  height: 30px;
}

.pager li a {
  font-weight: bold;
  font-size: 19px;
  width: 30px;
  text-align: center;
  display: inline-block;
}

.pager li .icon {
  margin-bottom: 0;
}

.pager li:not(.disabled):hover,
.pager li:first-child.disabled,
.pager li:last-child.disabled {
  background: #ccc;
  color: #fff;
  border: thin solid #ccc;
}

.pager li:not(.disabled):hover .icon,
.pager li:first-child.disabled .icon,
.pager li:last-child.disabled .icon {
  filter: brightness(200%);
}

.pager li.disabled {
  background: #fff;
  color: #008000;
  border: solid 1px #008000;
  pointer-events: none;
  cursor: default;
}

.pager li:first-child.clickable {
  background: #008000;
  border-color: #008000;
  color: #fff;
}

.pager li:first-child.clickable .icon {
  filter: brightness(200%);
}

.pager li:last-child.clickable {
  background: #008000;
  border-color: #008000;
  color: #fff;
}

.pager li:last-child.clickable .icon {
  filter: brightness(200%);
}

.swiper-container {
  margin: 0 auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-container-no-flexbox .swiper-slide {
  float: left;
}

.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}

.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.swiper-container-multirow > .swiper-wrapper {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}

.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  -o-transition-property: transform, height;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}

.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}

.swiper-container-3d .swiper-cube-shadow,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-wrapper {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}

.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}

.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}

.swiper-button-next,
.swiper-button-prev {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}

.swiper-button-next.swiper-button-disabled,
.swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 0.3s opacity;
  -o-transition: 0.3s opacity;
  transition: 0.3s opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-container-horizontal > .swiper-pagination-bullets,
.swiper-pagination-custom,
.swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}

.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0);
}

.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
}

.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 0.2s top, 0.2s -webkit-transform;
  transition: 0.2s top, 0.2s -webkit-transform;
  -o-transition: 0.2s transform, 0.2s top;
  transition: 0.2s transform, 0.2s top;
  transition: 0.2s transform, 0.2s top, 0.2s -webkit-transform;
}

.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 0.2s left, 0.2s -webkit-transform;
  transition: 0.2s left, 0.2s -webkit-transform;
  -o-transition: 0.2s transform, 0.2s left;
  transition: 0.2s transform, 0.2s left;
  transition: 0.2s transform, 0.2s left, 0.2s -webkit-transform;
}

.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 0.2s right, 0.2s -webkit-transform;
  transition: 0.2s right, 0.2s -webkit-transform;
  -o-transition: 0.2s transform, 0.2s right;
  transition: 0.2s transform, 0.2s right;
  transition: 0.2s transform, 0.2s right, 0.2s -webkit-transform;
}

.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}

.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
}

.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite,
.swiper-container-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #fff;
}

.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  background: #fff;
}

.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000;
}

.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, 0.25);
}

.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  background: #000;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas,
.swiper-zoom-container > img,
.swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}

.swiper-lazy-preloader:after {
  display: block;
  content: "";
  width: 100%;
  height: 100%;
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat;
}

@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}

.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}

.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube {
  overflow: visible;
}

.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-next + .swiper-slide,
.swiper-container-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right,
.swiper-container-cube .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}

.swiper-container-flip {
  overflow: visible;
}

.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right,
.swiper-container-flip .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-container-coverflow .swiper-wrapper {
  -ms-perspective: 1200px;
}

.main .wrapper .main-block-content .block-content {
  margin-bottom: 15px;
}

.main .wrapper .main-block-content .block-content.box-media {
  margin-bottom: 40px;
}

.main .wrapper .main-block-content .block-content .title-main {
  border-bottom: 1px solid #e1e1e1;
  margin-bottom: 30px;
}

.main .wrapper .main-block-content .block-content .title-main .title {
  color: #222;
  font-size: 15px;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-weight: bold;
  margin: 0 0 30px;
  text-transform: uppercase;
  margin-bottom: -1px;
  display: inline-block;
  padding-bottom: 16px;
  padding-right: 5px;
  border-bottom: 1px solid #003f1b;
  text-transform: uppercase;
}

.main .wrapper .main-block-content .block-content .title-main a.title {
  color: #6ba834;
}

.main .wrapper .main-block-content .block-content .slide-post {
  position: relative;
  margin-bottom: 10px;
}

.main .wrapper .main-block-content .block-content .slide-post ul li .news-post {
  position: relative;
}

.main .wrapper .main-block-content .block-content .slide-post ul li .news-post .title-box {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(255, 255, 255, 0.7);
  padding: 20px 40px;
  text-align: center;
}

.main .wrapper .main-block-content .block-content .slide-post ul li .news-post .title-box .title {
  display: block;
  font-size: 32px;
  color: #333;
}

.main .wrapper .main-block-content .block-content .slide-post ul[data-slideshow-thumbs] {
  position: absolute;
  display: flex;
  bottom: 30px;
  left: 0;
  right: 0;
  justify-content: center;
}

.main .wrapper .main-block-content .block-content .slide-post ul[data-slideshow-thumbs] li {
  padding: 0 5px;
}

.main .wrapper .main-block-content .block-content .slide-post ul[data-slideshow-thumbs] li span {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 50%;
  border: 1px solid #fff;
}

.main .wrapper .main-block-content .block-content .slide-post ul[data-slideshow-thumbs] li.active span {
  background: #fff;
}

.main .wrapper .main-block-content .block-content .slide-post .swiper-pagination .swiper-pagination-bullet {
  border: 2px solid #fff;
  background: transparent;
}

.main .wrapper .main-block-content .block-content .slide-post .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #fff;
}

.main .wrapper .main-block-content .block-content .slide-post .left,
.main .wrapper .main-block-content .block-content .slide-post .right {
  position: absolute;
  width: 30px;
  background: rgba(51, 51, 51, 0.5);
  top: 0;
  bottom: 0;
  color: #fff;
  font-size: 30px;
  z-index: 99;
  cursor: pointer;
}

.main .wrapper .main-block-content .block-content .slide-post .left i,
.main .wrapper .main-block-content .block-content .slide-post .right i {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.main .wrapper .main-block-content .block-content .slide-post .left:hover,
.main .wrapper .main-block-content .block-content .slide-post .right:hover {
  background: #003f1b;
}

.main .wrapper .main-block-content .block-content .slide-post .left {
  left: 0;
}

.main .wrapper .main-block-content .block-content .slide-post .right {
  right: 0;
}

.main .wrapper .main-block-content .block-content .list-post {
  display: flex;
  margin: 0 -15px;
  flex-wrap: wrap;
}

.main .wrapper .main-block-content .block-content .list-post .item {
  width: 50%;
  padding: 0 15px;
  display: flex;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #f0f0f0;
}

.main .wrapper .main-block-content .block-content .list-post .item .img {
  width: 100px;
  flex-shrink: 0;
  margin-right: 20px;
}

.main .wrapper .main-block-content .block-content .list-post .item .title {
  color: #333;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-weight: bold;
  line-height: 23px;
  margin: 0 0 10px;
  font-size: 15px;
  margin-top: -3px;
}

.main .wrapper .main-block-content .block-content .list-post .item .title:hover {
  color: #003f1b;
}

.main .wrapper .main-block-content .article-box .list-news .item {
  display: flex;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
}

.main .wrapper .main-block-content .article-box .list-news .item .img {
  margin-right: 30px;
  width: 198px;
  flex-shrink: 0;
}

.main .wrapper .main-block-content .article-box .list-news .item .title {
  color: #333;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-weight: bold;
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 7px;
}

.main .wrapper .main-block-content .article-box .list-news .item .title:hover {
  color: #003f1b;
}

.main .wrapper .main-block-content .article-box .list-news .item .sapo {
  margin-top: 13px;
}

.main .wrapper .main-block-content .article-box .list-news .item .sapo p {
  margin-bottom: 0;
}

.main .wrapper .main-block-content .slide-box .content-slide {
  position: relative;
}

.main .wrapper .main-block-content .slide-box .content-slide .list-slide .slide-item ul {
  margin: 0 -5px;
}

.main .wrapper .main-block-content .slide-box .content-slide .list-slide .slide-item.item {
  position: relative;
  width: 50%;
  padding: 5px;
}

.main .wrapper .main-block-content .slide-box .content-slide .list-slide .slide-item.item .title-box {
  position: absolute;
  bottom: 5px;
  left: 5px;
  right: 5px;
  background: rgba(255, 255, 255, 0.7);
  padding: 10px 40px;
  text-align: center;
}

.main .wrapper .main-block-content .slide-box .content-slide .list-slide .slide-item ul .item .title-box .title {
  color: #333;
  font-size: 13px;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-weight: bold;
  font-size: 18px;
  line-height: 24px;
  max-height: 70px;
  overflow: hidden;
}

.main .wrapper .main-block-content .slide-box .content-slide .list-slide .slide-item ul .item .title-box .title:hover {
  opacity: 0.7;
}

.main .wrapper .main-block-content .slide-box .content-slide .left,
.main .wrapper .main-block-content .slide-box .content-slide .right {
  position: absolute;
  border: 1px solid #ccc;
  color: #999;
  font-size: 11px;
  width: 20px;
  line-height: 20px;
  text-align: center;
  outline: none;
  border-radius: 3px;
  top: -65px;
}

.main .wrapper .main-block-content .slide-box .content-slide .left:hover,
.main .wrapper .main-block-content .slide-box .content-slide .right:hover {
  background: #003f1b;
  color: #fff;
}

.main .wrapper .main-block-content .slide-box .content-slide .right {
  right: 0;
}

.main .wrapper .main-block-content .slide-box .content-slide .left {
  right: 27px;
}

.d-2xl-none {
  display: none;
}

.d-2xl-block {
  display: block;
}

.d-2xl-flex {
  display: flex;
}

.side-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 120vh;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: -1;
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s ease;
  will-change: opacity;
}

.active-overlay .side-overlay {
  visibility: visible;
  opacity: 1;
  z-index: 997;
}

.cate-block {
  display: grid;
  grid-template-columns: 1fr 330px;
  grid-gap: 30px;
  width: 100%;
  /* padding: 15px; */
  padding: 0px 10px 0px;
}

.cate-heading {
  border-bottom: 1px solid #e1e1e1;
  margin-bottom: 25px;
  /* color: #6ba834; */
  /* font-size: 18px; */
  /* font-weight: 500; */
  color: #333333;
  font-size: 32px;
  font-weight: bold;
  margin-bottom: 25px;
  padding-bottom: 16px;
  padding-right: 5px;
}
.thumb-img {
  position: relative;
  height: 100%;
  overflow: hidden;
}

.thumb-item {
  display: block;
  width: 100%;
  height: 100%;
  position: relative;
}

.thumb-5x3 {
  padding-bottom: 60%;
}

.thumb-item img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.load-more-text {
  display: block;
  margin-bottom: 20px;
  text-align: right;
  padding-right: 20px;
  color: #337ab7;
  font-weight: bold;
  font-size: 14px;
  margin-top: 20px;
}
.load-more-text:hover {
  color: #23527c;
  text-decoration: underline;
}

.cate-left-primary {
  display: grid;
  grid-template-columns: 600px 1fr;
  grid-gap: 10px;
  margin-bottom: 30px;
}

.cate-left-small {
  padding-left: 10px;
  border-left: 1px solid #dedede;
}

.cate-left-large-title {
  /* color: #832351; */
  color: #222222;
  margin: 10px 0;
  font-size: 24px;
  font-weight: bold;
  line-height: 30px;
}

.cate-left-small-item:not(:last-child) {
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #dedede;
}

.cate-left-small-title {
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 10px;
}

.cate-left-small-des {
  margin-bottom: 0;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 5;
  -webkit-box-orient: vertical;
}

.articles .item {
  display: flex;
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #f0f0f0;
}
.articles .item-img {
  width: 28%;
  flex-shrink: 0;
}
.articles .content-box {
  flex: 1;
  padding-left: 30px;
}
.articles .content-box-title {
  /* color: #337ab7; */
  color: #222222;
  margin: 0 0 10px;
  font-size: 18px;
  line-height: 24px;
  margin-bottom: 20px;
  font-weight: bold;
}

.big-cate {
  padding: 10px 0 30px;
}
.big-cate .big-cate-title {
  color: #333;
  margin: 10px 0;
  font-size: 20px;
  font-weight: bold;
  line-height: 27px;
}
.big-cate .big-cate-des {
  font-size: 14px;
  margin-bottom: 0;
}

.detail-block .detail-title {
  margin-top: 0;
  font-size: 30px;
  line-height: 38px;
  margin-bottom: 20px;
}
.detail-block .line-datetime {
  margin: 10px 0;
  display: flex;
  align-items: center;
}
.detail-block .line-datetime > span {
  font-size: 13px;
  color: #999;
}
.detail-block .line-datetime .share {
  margin: 0 10px;
}
.detail-block .line-datetime .mail {
  color: #888;
  font-size: 20px;
}
.detail-block .sapo {
  font-weight: bold;
  margin-bottom: 15px;
}
.detail-block .related-news {
  margin-bottom: 15px;
}
.detail-block .related-news li {
  color: #004370;
  margin-bottom: 5px;
  font-weight: bold;
  display: flex;
}
.detail-block .related-news li:last-child {
  margin-bottom: 0;
}
.detail-block .related-news li:before {
  content: "";
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #004370;
  display: inline-block;
  margin-right: 10px;
  margin-top: 8px;
  flex-shrink: 0;
}
.detail-block .related-news li:hover {
  color: #666;
}
.detail-block .author {
  text-align: right;
  margin-right: 30px;
  font-weight: bold;
  font-style: italic;
  color: #808080;
}
.detail-block .tag {
  margin: 15px 0 30px;
}
.detail-block .tags {
  display: flex;
  align-items: baseline;
}
.detail-block .tags .tags-title {
  margin-right: 10px;
}
.detail-block .tags > ul {
  display: flex;
  flex-wrap: wrap;
}
.detail-block .tags > ul li {
  margin-right: 5px;
}
.detail-block .tags > ul li a {
  display: block;
  background-color: #f5f5f5;
  border-radius: 4px;
  padding: 6px;
  color: #337ab7;
}
.detail-block .share-other {
  margin-bottom: 40px;
}
.detail-block .share-other .share-items {
  display: flex;
  align-items: center;
}
.detail-block .share-other .share-items .fb-share-button, .detail-block .share-other .share-items .fb-like {
  margin-right: 5px;
}
.detail-block .share-other .share-items [class*=itemshare-] {
  width: 20px;
  height: 20px;
  background-image: url("../images/sprite-socials.png");
  background-repeat: no-repeat;
  background-size: 62px;
  margin-right: 5px;
}
.detail-block .share-other .itemshare-twitter {
  background-position: -21px 0;
}
.detail-block .share-other .itemshare-reddit {
  background-position: 0 -21px;
}
.detail-block .share-other .itemshare-linked {
  background-position: -42px 0;
}

.entry-body h2 {
  font-size: 1.5em;
}

.entry-body h2,
.entry-body h3,
.entry-body h4,
.entry-body h5,
.entry-body h6 {
  margin: 10px 0 15px;
  font-weight: bold;
}

.dt-content figure figcaption {
  color: #666;
  font-style: italic;
  margin-top: 0;
  word-break: break-word;
}

.dt-content figure figcaption .expEdit {
  font-weight: normal;
  font-size: inherit !important;
  color: #00f;
  margin-top: 5px;
  font-size: 13px !important;
  text-align: center;
  font-style: italic;
}

.dt-content figure img {
  width: 100%;
  height: auto;
}

.box-related {
  margin-bottom: 15px;
}

.box-related .more-text {
  padding-left: 10px;
  display: block;
  font-size: 12px;
  color: #666;
  text-align: left;
  font-family: Arial;
  line-height: 28px;
}

.box-related-item {
  border: 1px solid #e3e3e3;
  border-left: 1px solid #fc915c;
  justify-content: space-between;
  display: flex;
  margin-bottom: 10px;
}
.box-related-item .box-related-img {
  width: 20%;
  flex-shrink: 0;
  order: 2;
}
.box-related-item .box-related-content {
  flex: 1;
  padding: 10px 7px;
  order: 1;
}
.box-related-item .box-related-content .box-related-title {
  font-weight: bold;
  font-size: 15px;
  color: #004370;
  margin-bottom: 0;
  text-decoration: none;
  display: block;
  line-height: 19px;
}
.box-related-item .box-related-content .box-related-public {
  font-size: 11px;
  text-decoration: none;
  color: #777;
  margin-top: 13px;
}

.box-samecate .sc-title {
  color: #222;
  font-size: 15px;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-weight: 700;
  margin: 0 0 25px;
  text-transform: uppercase;
  border-bottom: 1px solid #e1e1e1;
}
.box-samecate .sc-title span {
  display: inline-block;
  padding-bottom: 16px;
  padding-right: 5px;
  border-bottom: 1px solid #6ebf71;
}
.box-samecate .samecate-title {
  color: #333;
  font-size: 14px;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-weight: 700;
  line-height: 20px;
  margin-top: 10px;
}

.samecate-container {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-gap: 15px 30px;
}

.box-cmt {
  margin-top: 20px;
}

.detail__comment .box-comment .text svg, .detail__comment .list-comment .item .box-reply-content .item-content .item-bottom .like-action .ic-like {
  margin-right: 5px;
}

.icofb, .icotw {
  width: 22px;
  height: 22px;
}

.blNoLogin .inval, .cm-share {
  position: relative;
}

.box-bottom.isLogin .box-user .name, .detail__comment.box-comment-v2 .list-comment .item .box-reply-content .item-content .item-bottom .like-action .total-like {
  margin-left: 5px;
}

.detail__comment .box-comment {
  width: 100%;
}

.detail__comment .box-comment .text {
  font-family: inherit;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #000;
  display: flex;
  align-items: center;
}

.blNoLogin .input-info input, .detail__comment .box-comment .btn-comment {
  background: #fafafa;
  line-height: 26px;
  font-style: normal;
  font-family: inherit;
}

.detail__comment .box-comment .btn-comment {
  border: 1px solid #e9ebec;
  border-radius: 4px;
  width: 100%;
  height: 55px;
  resize: none;
  padding: 8px;
  min-height: 84px;
  font-weight: 400;
  font-size: 16px;
  color: #8c8c8c;
  margin: 14px 0;
  border-left: 2.5px solid #005bb2;
}

.detail__comment .box-comment .box-bottom {
  text-align: right;
}

.detail__comment .box-comment .box-bottom .btn-submit {
  display: inline-block;
  background: #0959ab;
  border-radius: 4px;
  padding: 12px 24px;
  font-family: inherit;
  font-style: normal;
  font-weight: 600;
  font-size: 14px;
  line-height: 20px;
  color: #fff;
}

.detail__comment .list-comment .item .box-reply .item-reply, .detail__comment .list-comment .item .item-reply, .detail__comment.box-comment-v2 .list-comment .item .item-reply {
  padding-top: 16px;
}

.detail__comment .list-comment {
  padding-top: 24px;
  margin-top: 8px;
}

.detail__comment .cmbl .title {
  font-size: 18px;
  font-style: normal;
  font-weight: 500;
}

.detail__comment .list-comment .item {
  margin-bottom: 24px;
  display: flex;
  border-bottom: 1px solid #e8e8e8;
}

.detail__comment .list-comment .item:last-child {
  border: 0;
}

.detail__comment .list-comment .item .avatar {
  display: block;
  width: 40px;
  height: 40px;
  margin-right: 13px;
  border-radius: 50%;
  overflow: hidden;
}

.detail__comment .list-comment .item .avatar img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.detail__comment .list-comment .item .item-content {
  width: calc(100% - 53px);
}

.detail__comment .list-comment .item .item-content .user-name {
  font-family: inherit;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 24px;
  color: #000;
  display: block;
  margin-bottom: 4px;
}

.detail__comment .list-comment .item .item-content .text-comment {
  font-family: inherit;
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  color: #000;
  margin-bottom: 16px;
}

.detail__comment .list-comment .item .item-content .item-bottom {
  font-family: inherit;
  font-style: normal;
  font-weight: 600;
  font-size: 13px;
  line-height: 16px;
  color: #8b8b8b;
  display: flex;
  align-items: center;
}

.detail__comment .list-comment .item .item-content .item-bottom .item-ls {
  display: block;
  margin-right: 24px;
  margin-bottom: 0;
}

.detail__comment .list-comment .item .item-content .item-bottom .item-ls:last-child {
  margin-right: 0;
}

.detail__comment .list-comment .item .box-reply {
  border-left: 1px solid #ebebeb;
  padding-left: 16px;
  margin-top: 16px;
}

.detail__comment .list-comment .item .box-reply .item-reply {
  display: flex;
  margin-bottom: 16px;
  padding-top: 16px;
}

.detail__comment .view-more {
  display: block;
  padding: 10px 16px;
  font-family: inherit;
  font-style: normal;
  font-weight: 600;
  font-size: 16px;
  line-height: 20px;
  width: 100%;
  margin: auto;
  border-radius: 4px;
  border: 1px solid #e8e8e8;
  background: #f5f6f8;
  color: #0959ab;
  text-align: center;
}

.detail__comment .list-comment .item .item-content .item-bottom .txt-like, .detail__comment .view-more.hidden {
  display: none !important;
}

.detail__comment .list-comment .item .item-content .item-bottom .like-action, .detail__comment.box-comment-v2 .list-comment .item .box-reply-content .item-content .item-bottom .item-ls.cm-share, .detail__comment.box-comment-v2 .list-comment .item .box-reply-content .item-content .item-bottom .item-ls.rep, .detail__comment.box-comment-v2 .list-comment .item .box-reply-content .item-content .item-bottom .like-action {
  display: block !important;
}

.blNoLogin .input-info input {
  width: 100%;
  height: 40px;
  border: 1px solid #ebebeb;
  border-radius: 4px;
  font-weight: 400;
  font-size: 15px;
  color: #8b8b8b;
  padding: 0 8px;
}

#boxCommentPopup .box-bottom.isLogin .login-comment, .box-comment .input-info {
  display: none;
}

.icofb, .icotw {
  display: inline-block;
}

.blNoLogin .box-comment .input-info {
  display: grid;
  column-gap: 20px;
  justify-content: space-between;
  grid-template-columns: calc(50% - 10px) calc(50% - 10px);
  margin-bottom: 20px;
}

.blNoLogin .erroMail:after, .blNoLogin .inval.t-content:after, .blNoLogin .inval.umail:after {
  font: 400 13px/15px arial;
  color: #9f224e;
  display: block;
}

.blNoLogin .inval .require {
  border: 1px solid #9f224e;
}

.blNoLogin .inval.t-content:after {
  content: "Bạn chưa nhập nội dung bình luận.";
  width: 100%;
  bottom: 10px;
  left: 0;
  position: absolute;
}

.blNoLogin .inval.t-content {
  padding-bottom: 15px;
}

.blNoLogin .inval.umail:after {
  content: "Hãy nhập email";
  margin-top: 4px;
}

.blNoLogin .inval.uname:after {
  content: "Hãy nhập họ và tên";
  font: 400 13px/15px arial;
  color: #9f224e;
  margin-top: 4px;
}

.blNoLogin .box-comment:has(.inval) .input-info {
  margin-bottom: 26px;
}

.blNoLogin .erroMail:after {
  content: "Email bạn nhập không hợp lệ";
  margin-top: 4px;
}

#commentNologin {
  font-family: inherit;
  font-family: inherit;
  font-style: normal;
  font-weight: 700;
  font-size: 16px;
  line-height: 20px;
  color: #858585;
  cursor: pointer;
}

@media (max-width: 767px) {
  .blNoLogin .box-comment .input-info {
    grid-template-columns: 100%;
    row-gap: 10px;
    margin-bottom: unset;
  }

  .blNoLogin .box-comment:has(.inval) .input-info {
    margin-bottom: -10px;
  }
}
.item-bottom .ic-like {
  width: 18px !important;
  height: 18px !important;
  background: url("https://static.mediacdn.vn/images/icon_like_line.png") 0 0/cover no-repeat;
  display: inline-block;
  vertical-align: bottom;
}

.detail__comment .list-comment .item .item-content .item-bottom .active .ic-like {
  background: url("https://thanhnien-static.mediacdn.vn/thanhnien.vn/image/icon_liked.png") 0 0/cover no-repeat !important;
}

.icofb {
  background-position: -16px -422px !important;
}

.wrapsharecmt button {
  background-color: transparent;
  border: none;
  padding: 0;
  cursor: pointer;
  outline: 0;
}

.icotw {
  background-position: -16px -498px !important;
}

.spritecmt {
  margin: 6px;
  background: url("https://static.mediacdn.vn/images/sprite_comment.svg") no-repeat;
}

.icofb:hover {
  background-position: -16px -460px !important;
}

.icotw:hover {
  background-position: -16px -536px !important;
}

.cm-share {
  cursor: pointer;
}

.modal__bg, .modal__commentpopup {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  transition: visibility, opacity 0.3s linear;
}

.cm-share:hover .wrapsharecmt {
  display: flex;
  position: absolute;
  top: -35px;
}

.wrapsharecmt {
  display: none;
  background: #fff;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.16);
  border-radius: 4px;
  z-index: 9;
}

.list-comment span.time.time-ago {
  font-weight: 400;
}

.cm-share .send-messenger {
  width: 20px;
  height: 20px;
}

.cm-share .send-messenger:hover svg, .cm-share .send-messenger:hover svg path {
  fill: #0084ff;
}

.box-comment-v2 {
  border: 1px solid #ebebeb;
  border-radius: 4px;
  background: #fafafa;
  padding: 16px;
}

.box-comment-v2 .view-more {
  border: 1px solid #ebebeb !important;
  border-radius: 4px !important;
  background: #fff !important;
  color: #0098d1 !important;
}

.box-comment-v2 .username-reply {
  font-weight: 600;
}

.detail__comment.box-comment-v2 .box-comment .btn-comment, .detail__comment.box-comment-v2.blNoLogin .input-info input {
  background: #fff !important;
}

.detail__comment.box-comment-v2 .box-comment .btn-comment {
  height: 80px;
}

#boxCommentPopup .box-comment-v2.detail__comment .box-reply-content .box-comment, #boxCommentPopup .detail__comment.box-comment-v2 .formreplaycomment .box-comment {
  padding: 0;
  background: #fff;
  border: 0;
}

#boxCommentPopup .box-comment-v2.detail__comment .box-reply-content .btn-comment, #boxCommentPopup .detail__comment.box-comment-v2 .formreplaycomment .btn-comment, #boxCommentPopup .detail__comment.box-comment-v2.blNoLogin .box-reply-content .input-info input, #boxCommentPopup .detail__comment.box-comment-v2.blNoLogin .formreplaycomment .box-comment .input-info input, #boxCommentPopup.detail__comment.box-comment-v2.blNoLogin .box-reply-content .input-info input {
  background: #fafafa !important;
}

.detail__comment.box-comment-v2 .box-comment .box-bottom .btn-submit {
  color: #fff !important;
}

.detail__comment.box-comment-v2 .list-comment .item {
  border-bottom: 1px solid #ebebeb;
  margin-bottom: 24px;
  padding-bottom: 24px;
}

.detail__comment.box-comment-v2 .list-comment .item:last-child {
  border-bottom: 0;
  margin-bottom: 16px;
  padding-bottom: 0;
}

.detail__comment.box-comment-v2 .list-comment .item .box-reply {
  margin: 0;
  width: 100%;
}

.detail__comment.box-comment-v2 .box-comment .text {
  font-family: inherit;
  font-weight: 700;
  font-size: 22px;
  line-height: 28px;
  width: 100%;
  justify-content: center;
}

.box-bottom.isLogin .box-user .name, .title-comment .scoll-comment {
  font-family: inherit;
  font-size: 18px;
  font-style: normal;
  font-weight: 600;
}

.detail__comment.box-comment-v2 .list-comment .item:first-child {
  padding-top: 0;
}

.open-modalcomment .modal__bg {
  visibility: visible;
  opacity: 0.6;
}

.modal__bg {
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: #000 !important;
  z-index: 9999 !important;
}

.mobile.modal__bg {
  z-index: 97 !important;
}

.modal__commentpopup {
  z-index: 99999;
  left: 50%;
  top: 50%;
  margin: auto;
  width: 672px;
  height: calc(100vh - 80px);
  background: #fff;
  box-shadow: 0 0 8px rgba(0, 0, 0, 0.12);
  transform: translate(-50%, -50%);
}

.modal__commentpopup.mobile {
  bottom: 0;
  width: 100%;
  z-index: 999999;
  height: 90%;
  top: auto;
  transform: none;
  left: 0 !important;
}

.modal__commentpopup .modal__content {
  overflow: hidden;
  height: 100%;
}

#boxCommentPopup .box-comment-v2 {
  padding: 0;
  background: #fff;
  border: none;
}

#boxCommentPopup .box-comment-v2.detail__comment .box-comment {
  width: 100%;
  padding: 16px;
  border-bottom: 1px solid #e8e8e8;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

#boxCommentPopup .box-comment-v2.detail__comment .cmbl {
  padding: 0 32px 24px;
  height: max-content;
  overflow-y: auto;
  max-height: 620px;
}

#boxCommentPopup .box-comment-v2.detail__comment .filter_coment {
  padding: 24px 16px 8px 0;
  margin: 0 16px;
}

#boxCommentPopup .box-comment-v2.detail__comment .filter_coment a {
  padding-bottom: 8px;
}

#boxCommentPopup .box-comment-v2.detail__comment .filter_coment a.active {
  border-bottom: 1px solid #e81d1a;
}

.modal__commentpopup .close-modal {
  position: absolute;
  right: 16px;
  top: 16px;
}

.modal__commentpopup.mobile .close-modal {
  right: 15px;
}

body.open-modalcomment, body.show-alert-box {
  overflow: hidden;
}

#boxCommentPopup .login-comment {
  font-style: normal;
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  cursor: pointer;
  color: #8b8b8b;
}

#boxCommentPopup .box-bottom {
  font-family: Inter;
  display: flex;
  flex-direction: row-reverse;
  justify-content: space-between;
  align-items: center;
}

#boxCommentPopup .box-comment-v2.detail__comment .cmbl::-webkit-scrollbar {
  width: 6px;
  background-color: #f5f5f5;
}

#boxCommentPopup .box-comment-v2.detail__comment .cmbl::-webkit-scrollbar-thumb {
  background-color: #0098d1;
  border-radius: 4px;
}

#boxCommentPopup .box-comment-v2.detail__comment .cmbl::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #f5f5f5;
}

.mobile #boxCommentPopup .box-comment-v2.detail__comment .box-comment {
  padding: 24px 15px;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

.mobile #boxCommentPopup .box-comment-v2.detail__comment .filter_coment {
  margin: 0 15px;
}

.mobile #boxCommentPopup .box-comment-v2.detail__comment .cmbl {
  padding: 24px 15px;
}

.alert-box.show {
  z-index: 100;
  height: 100%;
}

.title-comment {
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.title-comment .scoll-comment {
  color: #0959ab;
  line-height: 130%;
}

.filter_coment {
  color: #b0b0b0;
  border-bottom: 1px solid #e0e0e0;
  line-height: 1.3;
  margin-top: 24px;
  padding-bottom: 10px;
}

.filter_coment a {
  color: #8c8c8c;
  font-family: inherit;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 130%;
  padding: 10px;
}

.filter_coment a.active {
  color: #005bb2;
  border-bottom: 1px solid #005bb2;
}

.filter_coment a:first-child {
  padding-left: 0;
}

.btn-close-square {
  position: absolute;
  top: -10px;
  right: -10px;
  border-radius: 50% !important;
  padding: 5px !important;
  display: flex;
}

.alert-box.login-box.show .alert-content {
  min-height: 150px;
}

.alert-box .btn-login {
  color: #0959ab;
}

.detail__scroll-action .detail-social .icon {
  flex-direction: column;
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  line-height: 160%;
}

.box-comment-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-top: 1px solid #e8e8e8;
  background: #f5f6f8;
}

.open-modalcomment .modal__commentpopup {
  visibility: visible;
  opacity: 1;
  border-radius: 8px;
}

.box-bottom.isLogin .box-user {
  display: flex;
  align-items: center;
}

.box-bottom.isLogin .box-user .avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  overflow: hidden;
}

.mob .detail__comment .box-comment .text, .mob .title-comment .scoll-comment {
  font-size: 16px !important;
}

#detail_comment .active {
  background: transparent;
}

#detail_comment a {
  color: #222;
}

.detail__comment .list-comment .item .item-content .text-comment {
  font-family: Arial;
}

.detail__comment .box-comment .box-bottom .btn-submit {
  color: #fff !important;
  background: #008837;
}

.detail__comment .box-comment {
  width: 100%;
}

.footer {
  background: #003f1b;
  padding: 30px 0 15px;
}

.footer .wrapper .fmain {
  display: flex;
  align-items: center;
}

.footer .wrapper .fmain > [class*=footer-] .f-title {
  color: #fff;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-weight: bold;
  text-transform: uppercase;
  font-size: 13px;
  padding-bottom: 15px;
  border-bottom: 1px solid #555;
  margin-bottom: 15px;
  letter-spacing: 1px;
}

.footer .wrapper .fmain .footer-info {
  margin-right: 15px;
  width: 100%;
}

.footer .wrapper .fmain .footer-info .f-content {
  display: flex;
  justify-content: space-between;
}

.footer .wrapper .fmain .footer-info .f-content address > div {
  color: #fff;
  font-size: 12px;
  font-weight: bold;
  line-height: 21px;
  margin: 0 0 8px;
  position: relative;
  padding-left: 0;
}

.footer .wrapper .fmain .footer-info .f-content address > div > span {
  display: inline-block;
}

.footer .wrapper .fmain .footer-info .f-content address > div > span:first-child {
  width: 210px;
}

.footer .wrapper .fmain .footer-info .f-content address > div > span:nth-child(n+2) {
  margin-right: 30px;
}

.footer .wrapper .fmain .footer-info .f-content a {
  color: #337ab7;
}

.footer .wrapper .fmain .box-fb {
  width: 300px;
  flex-shrink: 0;
}

.footer .wrapper .copyright {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  border-top: 1px solid #555;
}

.footer .wrapper .copyright [class*=f-] span {
  font-size: 12px;
  color: #fff;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  line-height: 20px;
}

/* ------------------------------------------------------------------------------------------------- fix 1/2025 */
.fs-14 {
  font-size: 14px;
}
.fs-16 {
  font-size: 16px;
}
.fs-18 {
  font-size: 18px;
}
.fs-20 {
  font-size: 20px;
}
.d-3xl-flex {
  display: flex;
}
.d-3xl-grid {
  display: grid;
}
.col-2 {
  grid-template-columns: repeat(2,1fr);
}
.col-3 {
  grid-template-columns: repeat(3,1fr);
}
.colspan-1 {
  grid-column: span 1;
}
.colspan-2 {
  grid-column: span 2;
}
.gap-10 {
  grid-gap: 10px;
  gap: 10px;
}
.gap-20 {
  grid-gap: 20px;
  gap: 20px;
}
.items-center {
  align-items: center;
}
.flex-0 {
  flex-shrink: 0;
}
.flex-1 {
  flex: 1;
}

.border-t-e0 {
  border-top:1px solid #e0e0e0;
}
.border-b-e0 {
  border-bottom: 1px solid #e0e0e0;
}

.ratio-16x9 {
    position: relative;
    display: block;
    padding-bottom: 56.25%;
}

.ratio-16x9 img {
    position: absolute;
    object-fit: cover;
    width: 100%;
    height: 100%;
}
.w-40 {
  width: 40%;
}
.w-full {
  width: 100%;
}
.w-1140 {
  max-width: 1140px;
  margin: 0 auto;
}
.fix-text3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.fw-600 {
  font-weight: bold;
}

.mt-8 {
  margin-top: 8px;
}
.mt-10 {
  margin-top: 10px;
}
.pt-10 {
  padding-top: 10px;
}

.pb-10 {
  padding-bottom: 10px;
}
.pl-10 {
  padding-left: 10px;
}
.pr-10 {
  padding-right: 10px;
}
.px-10 {
  padding-left: 10px;
  padding-right: 10px;
}
.py-10 {
  padding-top: 10px;
  padding-bottom: 10px;
}
.pt-15 {
  padding-top: 15px;
}
.pb-15 {
  padding-bottom: 15px;
}
.pl-15 {
  padding-left: 15px;
}
.pr-15 {
  padding-right: 15px;
}
.px-15 {
  padding-left: 15px;
  padding-right: 15px;
}
.py-15 {
  padding-top: 15px;
  padding-bottom: 15px;
}
.pt-20 {
  padding-top: 1.25rem;
}
.pb-20 {
  padding-bottom: 1.25rem;
}
.pl-20 {
  padding-left: 1.25rem;
}
.pr-20 {
  padding-right: 1.25rem;
}
.py-20 {
  padding-top: 1.25rem;
  padding-bottom: 1.25rem;
}
.px-20 {
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}
.p-20 {
  padding: 1.25rem;
}
.mt-20 {
  margin-top: 1.25rem;
}
.mb-20 {
  margin-bottom: 1.25rem;
}
.ml-20 {
  margin-left: 1.25rem;
}
.mr-20 {
  margin-right: 1.25rem;
}
.my-20 {
  margin-top: 1.25rem;
  margin-bottom: 1.25rem;
}
.mx-20 {
  margin-left: 1.25rem;
  margin-right: 1.25rem;
}
.m-20 {
  margin: 1.25rem;
}

.items-center {
  align-items: center;
}
.last-article-empty .article:first-child {
  padding-top: 0;
}
.last-article-empty .article:last-child {
  padding-bottom: 0;
  border-bottom: none;
}
.icondv.icon-expandmenu.fix-expand {
  margin: auto;
} 
.fix-logo {
  display: flex;
  align-items: center;
}
.fix-logo .nav-logo img{
  height: 32px;
  width: auto !important;
}

.heading-first .title{
  font-size: 15px;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-weight: 700;
  text-transform: uppercase;
  color: #fff;
  padding: 7px 20px;
  background: #003f1b;
  margin-bottom: 20px;
  display: block;
  border: none;
}
.heading-second.sb-title {
  color: #000000 !important;
  font-size: 16px !important;
  font-family: "Open Sans", Arial, Helvetica, sans-serif;
  font-weight: bold;
  margin: 0 0 16px !important;
  display: inline-block;
  padding: 0 !important;
  padding-left: 10px !important;
  border-left: 6px solid #000000;
  text-transform: uppercase;
  background: transparent !important;
}

.article-content.article-content--fix {
  position: relative !important;
  top: auto !important;
  left: auto !important;
  right: auto !important;
  bottom: auto !important;
  padding: 5px !important;
}
.article-second-hidden-sapo.article:nth-child(n+2) .article-des{
  display: none;
}

.main-tertiary{
  padding-top: 30px;
  padding-bottom: 60px;
}
.cate-heading-mb {
  color: #333333;
  font-size: 26px;
  font-weight: bold;
  margin: 0px 0 15px 0;
  padding: 0px 15px;
  border-bottom: 1px solid #999;
}
.pagination {
  display: flex
;
  justify-content: center;
  margin: 0 auto;
}
.btn-load-more {
  width: 150px;
  height: 32px;
  font-size: 12px;
  line-height: 14px;
  color: #6ba834;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 0.5px solid #6ba834;
  border-radius: 8px;
  margin: 20px auto 20px;
}

#wrap_live_exp{
  display: none;
}
  /* css khối tin liên quan*/
  .VCSortableInPreviewMode.alignCenter.type-6 {
  margin-top: 25px;
  margin-bottom: 15px;
  border-top: 1px solid #bdbdbd;
}
span.kbwscwlrl-label {
  padding-left: 10px;
  display: block;
  font-size: 12px;
  color: #666;
  text-align: left;
  font-family: Arial;
  line-height: 28px;
  margin-top: 25px;
}
.kbwscwlrl-content {
  border: 1px solid #e3e3e3;
  border-left: 1px solid #fc915c;
  justify-content: space-between;
  display: flex;
  margin-bottom: 10px;
}
a.kbwscwlrl-thumb-avata {
  width: 20%;
  flex-shrink: 0;
  order: 2;
}
h4.kbwscwlrl-title {
  flex: 1;
  padding: 10px 7px;
  order: 1;
}
.kbwscwlrl-title svg{
display: none;
}
a.kbwscwlrl-thumb-avata {
  width: auto; 
  height: auto; 
  flex-shrink: 0;
  order: 2;
}

a.kbwscwlrl-thumb-avata img {
  width: 170px; 
  height: auto; 
  aspect-ratio: 16 / 9; 
  object-fit: cover; 
}
h4.kbwscwlrl-title {
  font-size: 15px !important;
  font-weight: bold !important;
  line-height: 20px !important;
  margin-bottom: 12px !important;
  text-align: unset !important;
}
/*--- giao diện detail vcc ---*/
.VCSortableInPreviewMode.alignRight, .widget-box.alignRight {
  float: right;
  margin-right: 0;
  margin-left: 15px;
  width: 350px;
}
.VCSortableInPreviewMode {
  display: inline-block;
  margin: 0 auto 15px auto;
  position: relative;
  transition: all .3s ease-in-out 0s;
  width: 100%;
  z-index: 90;
  visibility: visible;
  word-wrap: break-word;
  cursor: default;
}
.kbwscwl-relatedbox.type-1 {
  border: 1px solid #f1e7db;
  width: 350px;
}
.kbwscwl-relatedbox.type-1 {
  border: 1px solid #f1e7db;
}
.kbwscwlr-list {
  text-align: left;
}
.kbwscwl-relatedbox {
  float: right;
  display: block;
  margin-bottom: 0;
}
.kbwscwl-relatedbox {
  display: block;
  margin-bottom: 0;
  width: 100%;
}
.kbwscwl-relatedbox.type-1 .kbwscwlrl-title {
  padding: 10px;
  margin: 0px 0 15px;
}
.kbwscwlr-list {
  text-align: left;
}
.main .wrapper .main-block-content .block-content .detail-main .dt-content .entry-body a {
  color: #004370;
}
.kbwscwlrl-thumb {
  display: block;
}
.kbwscwl-relatedbox.type-1 .kbwscwlrl-title {
  background: #eaeaea;
}
.kbwscwl-relatedbox .kbwscwlrl-title a.title {
  font-weight: bold;
  font-size: 16px;
  color: #333;
  margin-bottom: 5px;
  text-decoration: none;
  display: block;
  line-height: 26px;
}
.kbwscwlrl-next {
  margin-left: auto;
  display: block;
  float: none;
}
.kbwscwlrl-next {
  background: rgba(0, 0, 0, 0) url(https://static.mediacdn.vn/webthethao/web_images/view-news.png) no-repeat scroll right center;
  color: #797671;
  display: inline-block;
  float: right;
  font-family: tahoma;
  font-size: 15px;
  height: 36px;
  line-height: 36px;
  text-transform: uppercase;
  width: 130px;
}
.kbwscwl-relatedbox.type-2 {
  border-top: 3px solid #fa5e00;
  border-bottom: 3px solid #fa5e00;
}
.VCSortableInPreviewMode {
  display: inline-block;
  margin: 0 auto 15px auto;
  position: relative;
  transition: all .3s ease-in-out 0s;
  width: 100%;
  z-index: 90;
  visibility: visible;
  word-wrap: break-word;
  cursor: default;
}
.kbwscwl-relatedbox.type-2 .kbwscwlrl {
  list-style: disc;
  color: #fa5e00;
  margin-left: 20px;
  padding: 10px 0;
  border-bottom: 1px solid #e2e2e2;
  display: list-item;
}

.article-img img, .image-wrapper img, .img img {
  /* position: absolute; */
  width: 100%;
  height: auto;
  aspect-ratio: 16 / 9;
  border-radius: 3px;
}
.ads-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
#explus-editor figcaption {
  text-align: center;
}
/* xử lý popup hiện ảnh */
.popup {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  z-index: 9999;
  justify-content: center;
  align-items: center;
}

.popup-content {
  position: relative;
  max-width: 90%;
  max-height: 90vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  padding: 10px;
  border-radius: 10px;
  overflow: hidden;
}

.popup-image {
  max-width: 100%;
  max-height: 70vh; /* Để chừa không gian cho caption */
  border-radius: 10px;
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
  object-fit: contain;
}

.popup-caption {
  color: white;
  text-align: center;
  font-size: 16px;
  margin-top: 5px;
  max-width: 100%;
  word-wrap: break-word;
  padding: 10px;
  max-height: 15vh; /* Giới hạn tối đa caption chiếm */
  overflow-y: auto; /* Nếu caption quá dài, sẽ có cuộn dọc */
  background: rgba(0, 0, 0, 0.5); /* Làm nền nhẹ để dễ đọc chữ */
  border-radius: 5px;
}

/* Điều chỉnh trên màn hình nhỏ */
@media screen and (max-height: 600px) {
  .popup-image {
    max-height: 60vh;
  }
  .popup-caption {
    max-height: 20vh;
  }
}
.popup-close {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 25px;
  color: white;
  cursor: pointer;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: transform 0.3s ease;
}

.popup-close:hover {
  transform: scale(1.2);
}

.popup-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 50%;
  z-index: 10000;
}

.popup-nav.left::before,
.popup-nav.right::before {
  content: '';
  display: block;
  width: 10px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  transform: rotate(-45deg);
}

.popup-nav.left::before {
  transform: rotate(135deg);
}


.popup-nav.right::before {
  transform: rotate(-45deg);
}

.popup-nav.left {
  left: 10px; 
}

.popup-nav.right {
  right: 10px; 
}

/*-----------------------------fix-detail-author--------------------------------*/
.detail-info {
  border-top: 1px solid #e1e1e1;
  border-bottom: 1px solid #e1e1e1;
  margin-bottom: 15px;

}
.justify-content-between {
  justify-content: space-between;
}
.align-items-center {
  align-items: center;
}
.text-gray-4f {
  color: #4f4f4f;
}

/* end ------------------------------------------------------------------------------------------------- fix 1/2025 */
@media (max-width: 1280px) {
  .d-xl-none {
    display: none;
  }

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

  .d-xl-flex {
    display: flex;
  }

  /*-------------------------------------------------------------*/
}
@media (max-width: 640px) {
  .article-large {
    padding-bottom: 16px;
    border-bottom: 1px solid #dedede;
}
.wrapper .article {
  padding: 16px 0;
  border-bottom: 1px solid #dedede;
}
}
@media (max-width: 1024px) {
  .d-lg-none {
    display: none;
  }

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

  .d-lg-flex {
    display: flex;
  }

  .sidebar-small,
.sidebar-big {
    display: none;
  }

  .main .wrapper .main-block-content {
    padding: 30px 15px 60px;
    position: relative;
    width: 100%;
  }

  /*----------------------------------------------------------------------------header*/
  .header {
    border-bottom: 2px solid #6ba834;
    background: #003f1b;
    height: 56px;
    position: fixed;
    z-index: 999;
    top: 0;
    left: 0;
    right: 0;
    display: flex;
    align-items: center;
    color: #fff;
    color: #fff;
    justify-content: space-between;
    padding: 0 15px;
  }

  .header .nav .menu-left {
    font-size: 22px;
  }

  .header .nav.active .nav-box {
    left: 0;
  }

  .header .nav .nav-box {
    position: fixed;
    width: 240px;
    top: 0;
    margin: 0;
    height: 100%;
    padding-bottom: 60px;
    z-index: 999;
    overflow-y: auto;
    background: #386426;
    color: #fff;
    transition: all 0.2s linear;
    left: -240px;
  }

  .header .nav .nav-box .search-box {
    padding: 15px 10px;
    margin-bottom: 20px;
    box-sizing: border-box;
  }

  .header .nav .nav-box .search-box .search-form {
    padding: 0 10px;
    background: #fff;
    border-radius: 5px;
    color: #fff;
    width: 100%;
    position: relative;
    margin-bottom: 0;
  }

  .header .nav .nav-box .search-box .search-form input[type=text] {
    height: auto;
    margin: 0;
    width: calc(100% - 25px);
    border: none;
    padding: 5px 20px;
    font-size: 15px;
  }

  .header .nav .nav-box .search-box .search-form button {
    color: #999;
    display: inline-block;
    background: transparent;
    border: none;
    position: absolute;
    top: 9px;
    left: 10px;
    right: auto;
    padding: 0;
  }

  .header .nav .nav-box .nav-bar .nav-item a {
    display: inline-flex;
    align-items: center;
    padding: 10px 0 10px 20px;
    margin-right: 38px;
  }

  .header .nav .nav-box .nav-bar .nav-item a .icon-angle-right {
    margin-right: 20px;
  }

  .header .nav .nav-box .nav-bar .nav-item .icon-down {
    border-left: 7px solid transparent;
    border-right: 7px solid transparent;
    border-top: 9px solid #3daa12;
    display: none;
    position: absolute;
    right: 10px;
  }

  .nav-item-header {
    display: flex;
    align-items: center;
  }

  .header .nav .nav-box .nav-bar .nav-item .icon-down.block {
    display: inline-block;
  }

  .header .nav .nav-box .nav-bar .nav-item ul {
    padding-left: 15px;
    display: none;
  }

  .header .nav .nav-box .nav-bar .nav-item.active ul {
    display: block;
  }

  .header .logo .nav-logo img {
    height: 50px;
  }

  .header .newstop .news-right {
    font-size: 22px;
  }

  .header .newstop.active .newstop-box {
    right: 0;
  }

  .header .newstop .newstop-box {
    position: fixed;
    width: 240px;
    right: -240px;
    top: 0;
    margin: 0;
    height: calc(100% + 60px);
    padding-bottom: 60px;
    z-index: 999;
    overflow-y: auto;
    background: #386426;
    color: #fff;
    transition: all 0.2s linear;
  }

  .header .newstop .newstop-box .newstop-title {
    background-color: #000;
    white-space: nowrap;
  }

  .header .newstop .newstop-box .newstop-title span {
    font-weight: 700;
    display: block;
    width: 110px;
    text-align: center;
    border-bottom: 2px solid #f00;
    line-height: 48px;
  }

  .header .newstop .newstop-box .list-top {
    font-size: 14px;
  }

  .header .newstop .newstop-box .list-top .item {
    padding: 13px 10px;
    border-bottom: 1px solid #222;
    display: flex;
  }

  .header .newstop .newstop-box .list-top .item .img {
    width: 65px;
    flex-shrink: 0;
    margin-right: 20px;
  }

  .header .newstop .newstop-box .list-top .item .title {
    margin-top: -2px;
  }
  /*----------------------------------------------------------------------------cate*/
  .cate-block {
    display: block;
  }

  .cate-right {
    display: none;
  }

  /*----------------------------------------------------------------------------detail*/
  .detail-mb .cate-heading {
    /* margin-bottom: 20px;
    color: #3daa12;
    font-size: 15px;
    font-weight: bold;
    border-bottom: none;
    padding-bottom: 0; */
    color: #333333;
    font-size: 26px;
    font-weight: bold;
    margin: 0px 0 15px 0;
  }

  .detail-mb-main .detail-title {
    font-size: 25px;
    font-weight: 700;
    color: #3daa12;
  }
  .detail-mb-main .line-datetime > span {
    font-size: 13px;
    color: #999;
  }
  .detail-mb-main .line-datetime .share {
    display: none;
    margin: 0 10px;
  }
  .detail-mb-main .line-datetime .mail {
    color: #888;
    font-size: 20px;
    display: none;
  }
  .detail-mb-main .sapo {
    font-weight: bold;
    margin-bottom: 15px;
    font-size: 20px;
  }
  .detail-mb-main .dt-content {
    font-size: 20px;
  }
  .detail-mb-main p {
    font-family: "Hind", sans-serif;
    line-height: 34px;
  }
  .detail-mb-main .box-related-item .box-related-img {
    width: 35%;
    flex-shrink: 0;
  }
  .detail-mb-main .box-related-title {
    font-family: "Arial";
    font-size: 14px !important;
  }
  .detail-mb-main .author {
    text-align: right;
    margin-right: 30px;
    font-weight: bold;
    font-style: italic;
    font-size: 20px;
  }
  .detail-mb-main .tag {
    margin: 15px 0 30px;
  }
  .detail-mb-main .tag .tags {
    display: flex;
    align-items: baseline;
    font-size: 15px;
  }
  .detail-mb-main .tag .tags .tags-title {
    margin-right: 10px;
  }
  .detail-mb-main .tag .tags > ul {
    display: flex;
    flex-wrap: wrap;
  }
  .detail-mb-main .tag .tags > ul li {
    margin-right: 5px;
  }
  .detail-mb-main .tag .tags > ul li a {
    display: block;
    background-color: #f5f5f5;
    border-radius: 4px;
    padding: 6px;
    color: #3daa12;
  }
  .detail-mb-main .share-other {
    margin-bottom: 40px;
  }
  .detail-mb-main .share-other .share-items {
    display: flex;
    align-items: center;
  }
  .detail-mb-main .share-other .share-items .fb-share-button, .detail-mb-main .share-other .share-items .fb-like {
    margin-right: 5px;
  }
  .detail-mb-main .share-other .share-items [class*=itemshare-] {
    width: 20px;
    height: 20px;
    background-image: url("../images/sprite-socials.png");
    background-repeat: no-repeat;
    background-size: 62px;
    margin-right: 5px;
  }
  .detail-mb-main .share-other .itemshare-twitter {
    background-position: -21px 0;
  }
  .detail-mb-main .share-other .itemshare-reddit {
    background-position: 0 -21px;
  }
  .detail-mb-main .share-other .itemshare-linked {
    background-position: -42px 0;
  }
  .detail-mb-main .box-related-mb {
    margin: 30px 0;
  }
  .detail-mb-main .box-related-mb .rl-title {
    color: #222;
    font-size: 15px;
    font-family: "Open Sans", Arial, Helvetica, sans-serif;
    font-weight: 700;
    margin: 0 0 15px;
    text-transform: uppercase;
    border-bottom: 1px solid #e1e1e1;
  }
  .detail-mb-main .box-related-mb .rl-title span {
    display: inline-block;
    padding-bottom: 16px;
    padding-right: 5px;
    border-bottom: 1px solid #6ebf71;
  }
  .detail-mb-main .box-related-mb .item {
    display: flex;
    padding: 5px 0;
  }
  .detail-mb-main .box-related-mb .item:before {
    content: "";
    width: 4px;
    height: 4px;
    background: #333;
    display: inline-block;
    flex-shrink: 0;
    margin-right: 10px;
    margin-top: 8px;
  }
  .detail-mb-main .box-related-mb .item .title {
    font-size: 16px;
    margin: 0;
    padding: 0;
    color: #666;
    margin-bottom: 5px;
    font-weight: 500;
  }
  .detail-mb-main .samecate-container {
    grid-template-columns: 1fr 1fr;
    grid-gap: 15px 20px;
  }

  /*------------------------------------------------------------- footer*/
  footer {
    background: #003f1b;
    color: #fff;
    padding: 15px 15px 5px;
  }

  footer .social-footer {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
  }

  footer .social-footer a {
    display: inline-block;
    margin: 0 2px;
    font-size: 20px;
    width: 35px;
    height: 35px;
    text-align: center;
    padding: 5px 0 0 0;
    color: #fff;
    border-radius: 50%;
  }

  footer .social-footer a.facebook {
    background: #3b5998;
  }

  footer .social-footer a.twitter {
    background: #55acee;
  }

  footer .social-footer a.gplus {
    background: #dd4b39;
  }

  footer .footer-title {
    text-align: center;
  }

  footer .list-info {
    font-size: 12px;
    padding-left: 15px;
    margin: 5px 0;
  }

  footer .list-info li {
    padding: 3px;
  }

  footer .copyright {
    text-align: center;
    color: #666;
    font-size: 10px;
  }

  footer .copyright a {
    color: #3daa12;
  }

  /*-------------------------------------------------------------*/
}
@media (max-width: 992px) {
  .cate-left-primary {
    display: block;
  }

  .cate-left-small {
    padding-left: 0;
    padding-top: 20px;
    border-left: none;
  }
}
@media (max-width: 768px) {
  .d-md-none {
    display: none;
  }

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

  .d-md-flex {
    display: flex;
  }

  /*-------------------------------------------------------------*/
}
@media (max-width: 640px) {
  .d-sm-none {
    display: none;
  }

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

  .d-sm-flex {
    display: flex;
  }

  /*-------------------------------------------------------------*/
  body {
    font-family: "Hind", sans-serif;
    font-size: 15px;
    line-height: 1.5;
  }

  p {
    font-size: 20px;
    color: #000;
    font-weight: 400;
    margin-bottom: 10px;
  }

  .img,
.title {
    display: block;
  }

  .entry-body h2,
.entry-body h3,
.entry-body h4,
.entry-body h5,
.entry-body h6 {
    margin: 10px 0 15px;
    font-weight: bold;
  }

  .entry-body h2 {
    font-size: 1.5em;
  }

  .entry-body h3 {
    font-size: 1.17em;
  }

  .entry-body h4 {
    font-size: 1em;
  }

  .entry-body h5 {
    font-size: 0.83em;
  }

  .entry-body h6 {
    font-size: 0.67em;
  }

  .entry-body th,
.entry-body td {
    border-width: 1px;
    border-style: solid;
    padding: 5px;
  }

  .fblw-timeline-item {
    background: #fff;
  }

  .fblwtia-mask {
    background: #fff;
    position: absolute;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    height: 10px;
  }

  .fblwtia-title-line {
    right: 0;
    left: 36%;
    top: 0;
    height: 20px;
    width: 3%;
  }

  .fblwtia-front-mask {
    height: 10px;
    left: 36%;
    width: 3%;
  }

  .fblwtia-title-mask-1 {
    top: 30px;
  }

  .fblwtia-front-mask-2 {
    top: 70px;
    height: 15px;
  }

  .fblwtia-front-mask-3 {
    top: 105px;
  }

  .fblwtia-front-mask-4 {
    top: 125px;
  }

  .fblwtia-sepline-sapo {
    left: 36%;
    right: 0;
  }

  .fblwtia-sepline-sapo-0 {
    top: 20px;
  }

  .fblwtia-sepline-sapo-1 {
    top: 50px;
    height: 20px;
  }

  .fblwtia-sepline-sapo-2 {
    top: 85px;
    height: 20px;
  }

  .fblwtia-sepline-sapo-3 {
    top: 115px;
  }

  .fblwtia-sepline-sapo-4 {
    top: 135px;
    height: 50px;
  }

  .fblwtia-sapo-line {
    right: 0;
  }

  .fblwtia-sapo-line-2 {
    top: 70px;
    left: 55%;
    height: 15px;
  }

  .fblwtia-sapo-line-3 {
    top: 105px;
    left: 95%;
  }

  .fblwtia-sapo-line-4 {
    top: 125px;
    left: 85%;
    height: 10px;
  }

  .fblwti-animated {
    animation-duration: 1.5s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-name: placeHolderShimmer;
    animation-timing-function: linear;
    background: #f6f7f8;
    background: linear-gradient(to right, #eee 8%, #ddd 18%, #eee 33%);
    background-size: 800px 200px;
    height: 110px;
    position: relative;
  }

  @-webkit-keyframes placeHolderShimmer {
    0% {
      background-position: -800px 0;
    }
    100% {
      background-position: 800px 0;
    }
  }
  .fblwti-animated {
    height: 85px;
  }

  .fblwtia-sapo-line-0 {
    top: 0;
    left: 98%;
    height: 20px;
  }

  .fblwtia-sapo-line-1 {
    top: 30px;
    left: 85%;
    height: 20px;
  }

  .fb-loading-wrapper {
    padding: 25px 0;
    display: none;
  }

  .kdsdsk-wrapper {
    overflow: hidden;
  }

  .contentleft.list .fblwtia-title-line {
    left: 45%;
  }

  .contentleft.list .fblwtia-sepline-sapo {
    left: 45%;
  }

  .contentleft.list .fblwtia-front-mask {
    left: 45%;
  }

  .contentleft.list .fblwtia-sapo-line-0 {
    left: 98% !important;
  }

  .contentleft.list .fblwtia-sapo-line-1 {
    left: 85% !important;
  }

  .totalzoneapec .coll .timelineapec .loadnews li:first-child .thumbs-img {
    width: 350px;
    height: 218px;
  }

  .clearfix::after {
    display: block;
    content: "";
    clear: both;
  }

  ul[data-slideshow-slides] {
    overflow-x: hidden;
    white-space: nowrap;
    vertical-align: top;
    display: flex;
  }

  ul[data-slideshow-slides] li[data-slideshow-item] {
    flex-shrink: 0;
    width: 100%;
  }

  ul[data-slideshow-slides] li .title {
    display: block;
    white-space: normal;
  }

  [data-slideshow-prev],
[data-slideshow-next] {
    cursor: pointer;
  }

  .readmore {
    text-align: right;
    margin: 10px 0;
    color: #3daa12;
  }

  .auto-loading .fb-loading-wrapper {
    display: block;
  }

  .auto-loading .readmore {
    display: none;
  }

  .auto-load footer {
    display: none;
  }

  .pager {
    display: flex;
    margin-top: 15px;
  }

  .pager li {
    list-style: none;
    display: inline-block;
    border: thin solid #ccc;
    border-radius: 3px;
    margin-right: 10px;
    transition: ease 0.2s;
    color: #8b8b8b;
    height: 25px;
  }

  .pager li.disabled {
    background: #fff;
    color: #008000;
    border: solid 1px #008000;
    pointer-events: none;
    cursor: default;
  }

  .pager li.clickable:first-child {
    background: #008000;
    border-color: #008000;
    color: #fff;
  }

  .pager li.clickable:last-child {
    background: #008000;
    border-color: #008000;
    color: #fff;
  }

  .pager li:first-child.disabled,
.pager li:last-child.disabled,
.pager li:not(.disabled):hover {
    background: #ccc;
    color: #fff;
    border: thin solid #ccc;
  }

  .pager li a {
    font-weight: bold;
    font-size: 15px;
    text-align: center;
    width: 25px;
    padding: 1px 0;
    display: inline-block;
  }

  .container-main {
    padding-top: 56px;
  }

  .mainbody .wrapper {
    padding: 16px;
  }

  .mainbody .wrapper .article-box {
    margin-bottom: 20px;
  }

  .mainbody .wrapper .article-box .title-main {
    margin: 0 0 10px 0;
    padding: 5px 0;
    font-size: 23px;
    font-weight: 700;
    border-bottom: 1px solid #999;
    position: relative;
    color: #6ba834;
    height: 40px;
  }

  .mainbody .wrapper .article-box .title-main .title {
    border-bottom: 1px solid #003f1b;
    display: inline-block;
  }

  .mainbody .wrapper .article-box .title-main .icon-list-ul {
    position: absolute;
    right: 0;
    top: 13px;
    font-size: 15px;
    font-weight: 300;
    color: #999;
  }

  .mainbody .wrapper .article-box .list-news .item {
    display: flex;
    padding: 10px 0;
    border-bottom: 1px solid #eee;
  }

  .mainbody .wrapper .article-box .list-news .item .img {
    width: 107px;
    flex-shrink: 0;
    margin-right: 15px;
  }

  .mainbody .wrapper .article-box .list-news .item .content-box .title {
    font-size: 16px;
    margin: 0;
    padding: 0;
    color: #444;
    margin-bottom: 5px;
    /* font-weight: 500; */
    font-weight: bold;
  }

  .mainbody .wrapper .article-box .list-news .item .content-box .time {
    color: #999;
    font-size: 13px;
  }

  .mainbody .wrapper .article-box .hightlight-big .item {
    padding: 10px 0;
  }

  .mainbody .wrapper .article-box .hightlight-big .item .content-box .title {
    font-size: 20px;
    color: #333;
    margin: 10px 0 5px;
    font-weight: bold;
    line-height: 24px;
  }

  .mainbody .wrapper .article-box .hightlight-big .item .content-box .time {
    color: #999;
    font-size: 13px;
    text-align: right;
  }

  .swiper-container {
    margin-left: auto;
    margin-right: auto;
    position: relative;
    overflow: hidden;
    z-index: 1;
  }

  .swiper-container-no-flexbox .swiper-slide {
    float: left;
  }

  .swiper-container-vertical > .swiper-wrapper {
    -webkit-box-orient: vertical;
    -moz-box-orient: vertical;
    -ms-flex-direction: column;
    -webkit-flex-direction: column;
    flex-direction: column;
  }

  .swiper-wrapper {
    position: relative;
    width: 100%;
    height: 100%;
    z-index: 1;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    -o-transition-property: -o-transform;
    -ms-transition-property: -ms-transform;
    transition-property: transform;
    -webkit-box-sizing: content-box;
    -moz-box-sizing: content-box;
    box-sizing: content-box;
  }

  .swiper-container-android .swiper-slide,
.swiper-wrapper {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    -o-transform: translate(0, 0);
    -ms-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  .swiper-container-multirow > .swiper-wrapper {
    -webkit-box-lines: multiple;
    -moz-box-lines: multiple;
    -ms-flex-wrap: wrap;
    -webkit-flex-wrap: wrap;
    flex-wrap: wrap;
  }

  .swiper-container-free-mode > .swiper-wrapper {
    -webkit-transition-timing-function: ease-out;
    -moz-transition-timing-function: ease-out;
    -ms-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
    margin: 0 auto;
  }

  .swiper-slide {
    -webkit-flex-shrink: 0;
    -ms-flex: 0 0 auto;
    flex-shrink: 0;
    width: 100%;
    height: 100%;
    position: relative;
  }

  .swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
    height: auto;
  }

  .swiper-container-autoheight .swiper-wrapper {
    -webkit-box-align: start;
    -ms-flex-align: start;
    -webkit-align-items: flex-start;
    align-items: flex-start;
    -webkit-transition-property: -webkit-transform, height;
    -moz-transition-property: -moz-transform;
    -o-transition-property: -o-transform;
    -ms-transition-property: -ms-transform;
    transition-property: transform, height;
  }

  .swiper-container .swiper-notification {
    position: absolute;
    left: 0;
    top: 0;
    pointer-events: none;
    opacity: 0;
    z-index: -1000;
  }

  .swiper-wp8-horizontal {
    -ms-touch-action: pan-y;
    touch-action: pan-y;
  }

  .swiper-wp8-vertical {
    -ms-touch-action: pan-x;
    touch-action: pan-x;
  }

  .swiper-button-prev,
.swiper-button-next {
    position: absolute;
    top: 50%;
    width: 27px;
    height: 44px;
    margin-top: -22px;
    z-index: 10;
    cursor: pointer;
    -moz-background-size: 27px 44px;
    -webkit-background-size: 27px 44px;
    background-size: 27px 44px;
    background-position: center;
    background-repeat: no-repeat;
  }

  .swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
    opacity: 0.35;
    cursor: auto;
    pointer-events: none;
  }

  .swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
    left: 10px;
    right: auto;
  }

  .swiper-pagination {
    position: absolute;
    text-align: center;
    -webkit-transition: 300ms;
    -moz-transition: 300ms;
    -o-transition: 300ms;
    transition: 300ms;
    -webkit-transform: translate3d(0, 0, 0);
    -ms-transform: translate3d(0, 0, 0);
    -o-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    z-index: 10;
  }

  .swiper-pagination.swiper-pagination-hidden {
    opacity: 0;
  }

  .swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
    bottom: 10px;
    left: 0;
    width: 100%;
  }

  .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
    display: inline-block;
    border-radius: 100%;
    background: #000;
    opacity: 0.2;
  }

  button.swiper-pagination-bullet {
    border: none;
    margin: 0;
    padding: 0;
    box-shadow: none;
    -moz-appearance: none;
    -ms-appearance: none;
    -webkit-appearance: none;
    appearance: none;
  }

  .swiper-pagination-clickable .swiper-pagination-bullet {
    cursor: pointer;
  }

  .swiper-pagination-white .swiper-pagination-bullet {
    background: #fff;
  }

  .swiper-pagination-bullet-active {
    opacity: 1;
    background: #007aff;
  }

  .swiper-pagination-white .swiper-pagination-bullet-active {
    background: #fff;
  }

  .swiper-pagination-black .swiper-pagination-bullet-active {
    background: #000;
  }

  .swiper-container-vertical > .swiper-pagination-bullets {
    right: 10px;
    top: 50%;
    -webkit-transform: translate3d(0, -50%, 0);
    -moz-transform: translate3d(0, -50%, 0);
    -o-transform: translate(0, -50%);
    -ms-transform: translate3d(0, -50%, 0);
    transform: translate3d(0, -50%, 0);
  }

  .swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 5px 0;
    display: block;
  }

  .swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
    margin: 0 5px;
  }

  .swiper-pagination-progress {
    background: rgba(0, 0, 0, 0.25);
    position: absolute;
  }

  .swiper-pagination-progress .swiper-pagination-progressbar {
    background: #007aff;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    -o-transform: scale(0);
    transform: scale(0);
    -webkit-transform-origin: left top;
    -moz-transform-origin: left top;
    -ms-transform-origin: left top;
    -o-transform-origin: left top;
    transform-origin: left top;
  }

  .swiper-container-rtl .swiper-pagination-progress .swiper-pagination-progressbar {
    -webkit-transform-origin: right top;
    -moz-transform-origin: right top;
    -ms-transform-origin: right top;
    -o-transform-origin: right top;
    transform-origin: right top;
  }

  .swiper-container-horizontal > .swiper-pagination-progress {
    width: 100%;
    height: 4px;
    left: 0;
    top: 0;
  }

  .swiper-container-vertical > .swiper-pagination-progress {
    width: 4px;
    height: 100%;
    left: 0;
    top: 0;
  }

  .swiper-pagination-progress.swiper-pagination-white {
    background: rgba(255, 255, 255, 0.5);
  }

  .swiper-pagination-progress.swiper-pagination-white .swiper-pagination-progressbar {
    background: #fff;
  }

  .swiper-pagination-progress.swiper-pagination-black .swiper-pagination-progressbar {
    background: #000;
  }

  .swiper-container-3d {
    -webkit-perspective: 1200px;
    -moz-perspective: 1200px;
    -o-perspective: 1200px;
    perspective: 1200px;
  }

  .swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    -ms-transform-style: preserve-3d;
    transform-style: preserve-3d;
  }

  .swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
  }

  .swiper-container-3d .swiper-slide-shadow-left {
    background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: -moz-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }

  .swiper-container-3d .swiper-slide-shadow-right {
    background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: -moz-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }

  .swiper-container-3d .swiper-slide-shadow-top {
    background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: -moz-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }

  .swiper-container-3d .swiper-slide-shadow-bottom {
    background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
    background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: -moz-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  }

  .swiper-container-coverflow .swiper-wrapper,
.swiper-container-flip .swiper-wrapper {
    -ms-perspective: 1200px;
  }

  .swiper-container-cube,
.swiper-container-flip {
    overflow: visible;
  }

  .swiper-container-cube .swiper-slide,
.swiper-container-flip .swiper-slide {
    pointer-events: none;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    z-index: 1;
  }

  .swiper-container-cube .swiper-slide .swiper-slide,
.swiper-container-flip .swiper-slide .swiper-slide {
    pointer-events: none;
  }

  .swiper-container-cube .swiper-slide-active,
.swiper-container-flip .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
  }

  .swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right,
.swiper-container-flip .swiper-slide-shadow-right {
    z-index: 0;
    -webkit-backface-visibility: hidden;
    -moz-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
  }

  .swiper-container-cube .swiper-slide {
    visibility: hidden;
    -webkit-transform-origin: 0 0;
    -moz-transform-origin: 0 0;
    -ms-transform-origin: 0 0;
    transform-origin: 0 0;
    width: 100%;
    height: 100%;
  }

  .swiper-container-cube.swiper-container-rtl .swiper-slide {
    -webkit-transform-origin: 100% 0;
    -moz-transform-origin: 100% 0;
    -ms-transform-origin: 100% 0;
    transform-origin: 100% 0;
  }

  .swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
    pointer-events: auto;
    visibility: visible;
  }

  .swiper-container-cube .swiper-cube-shadow {
    position: absolute;
    left: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    background: #000;
    opacity: 0.6;
    -webkit-filter: blur(50px);
    filter: blur(50px);
    z-index: 0;
  }

  .swiper-container-fade.swiper-container-free-mode .swiper-slide {
    -webkit-transition-timing-function: ease-out;
    -moz-transition-timing-function: ease-out;
    -ms-transition-timing-function: ease-out;
    -o-transition-timing-function: ease-out;
    transition-timing-function: ease-out;
  }

  .swiper-container-fade .swiper-slide {
    pointer-events: none;
    -webkit-transition-property: opacity;
    -moz-transition-property: opacity;
    -o-transition-property: opacity;
    transition-property: opacity;
  }

  .swiper-container-fade .swiper-slide .swiper-slide {
    pointer-events: none;
  }

  .swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
    pointer-events: auto;
  }

  .swiper-zoom-container {
    width: 100%;
    height: 100%;
    display: -webkit-box;
    display: -moz-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -moz-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -moz-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
    text-align: center;
  }

  .swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
  }

  .swiper-scrollbar {
    border-radius: 10px;
    position: relative;
    -ms-touch-action: none;
    background: rgba(0, 0, 0, 0.1);
  }

  .swiper-container-horizontal > .swiper-scrollbar {
    position: absolute;
    left: 1%;
    bottom: 3px;
    z-index: 50;
    height: 5px;
    width: 98%;
  }

  .swiper-container-vertical > .swiper-scrollbar {
    position: absolute;
    right: 3px;
    top: 1%;
    z-index: 50;
    width: 5px;
    height: 98%;
  }

  .swiper-scrollbar-drag {
    height: 100%;
    width: 100%;
    position: relative;
    background: rgba(0, 0, 0, 0.5);
    border-radius: 10px;
    left: 0;
    top: 0;
  }

  .swiper-scrollbar-cursor-drag {
    cursor: move;
  }

  .swiper-lazy-preloader {
    width: 42px;
    height: 42px;
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -21px;
    margin-top: -21px;
    z-index: 10;
    -webkit-transform-origin: 50%;
    -moz-transform-origin: 50%;
    transform-origin: 50%;
    -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
    -moz-animation: swiper-preloader-spin 1s steps(12, end) infinite;
    animation: swiper-preloader-spin 1s steps(12, end) infinite;
  }

  .swiper-lazy-preloader:after {
    display: block;
    content: "";
    width: 100%;
    height: 100%;
    background-position: 50%;
    -webkit-background-size: 100%;
    background-size: 100%;
    background-repeat: no-repeat;
  }

  @-webkit-keyframes swiper-preloader-spin {
    100% {
      -webkit-transform: rotate(360deg);
    }
  }
  @keyframes swiper-preloader-spin {
    100% {
      transform: rotate(360deg);
    }
  }
  .slide-post .ul .item {
    position: relative;
  }

  .slide-post .ul .item .img img {
    width: 100%;
  }

  .slide-post .ul .item .title-box {
    position: absolute;
    bottom: 0;
    padding: 20px 15px;
    background: linear-gradient(to top, #000, rgba(0, 0, 0, 0));
  }

  .slide-post .ul .item .title-box .title {
    font-size: 22px;
    color: #fff;
    font-weight: 500;
    line-height: 25px;
  }

  .slide-post .ul .item .title-box .time {
    font-size: 13px;
    color: #bbb;
  }

  .slide-post .swiper-pagination .swiper-pagination-bullet {
    margin: 0 2px;
    background: #999;
  }

  .slide-post .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active {
    background: #fff;
  }

  /*!
   * Pikaday
   * Copyright © 2014 David Bushell | BSD & MIT license | https://dbushell.com/
   */
  .pika-single {
    z-index: 9999;
    display: block;
    position: relative;
    color: #333;
    background: #fff;
    border: 1px solid #ccc;
    border-bottom-color: #bbb;
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  }

  .pika-single:before,
.pika-single:after {
    content: " ";
    display: table;
  }

  .pika-single:after {
    clear: both;
  }

  .pika-single {
    *zoom: 1;
  }

  .pika-single.is-hidden {
    display: none;
  }

  .pika-single.is-bound {
    position: absolute;
    box-shadow: 0 5px 15px -5px rgba(0, 0, 0, 0.5);
  }

  .pika-lendar {
    float: left;
    width: 240px;
    margin: 8px;
  }

  .pika-title {
    position: relative;
    text-align: center;
  }

  .pika-label {
    display: inline-block;
    display: inline;
    position: relative;
    z-index: 9999;
    overflow: hidden;
    margin: 0;
    padding: 5px 3px;
    font-size: 14px;
    line-height: 20px;
    font-weight: bold;
    background-color: #fff;
  }

  .pika-title select {
    cursor: pointer;
    position: absolute;
    z-index: 9998;
    margin: 0;
    left: 0;
    top: 5px;
    filter: alpha(opacity=0);
    opacity: 0;
  }

  .pika-prev,
.pika-next {
    display: block;
    cursor: pointer;
    position: relative;
    outline: none;
    border: 0;
    padding: 0;
    width: 20px;
    height: 30px;
    text-indent: 20px;
    white-space: nowrap;
    overflow: hidden;
    background-color: transparent;
    background-position: center center;
    background-repeat: no-repeat;
    background-size: 75% 75%;
    opacity: 0.5;
    *position: absolute;
    *top: 0;
  }

  .pika-prev:hover,
.pika-next:hover {
    opacity: 1;
  }

  .pika-prev,
.is-rtl .pika-next {
    float: left;
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAUklEQVR42u3VMQoAIBADQf8Pgj+OD9hG2CtONJB2ymQkKe0HbwAP0xucDiQWARITIDEBEnMgMQ8S8+AqBIl6kKgHiXqQqAeJepBo/z38J/U0uAHlaBkBl9I4GwAAAABJRU5ErkJggg==");
    *left: 0;
  }

  .pika-next,
.is-rtl .pika-prev {
    float: right;
    background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAeCAYAAAAsEj5rAAAAU0lEQVR42u3VOwoAMAgE0dwfAnNjU26bYkBCFGwfiL9VVWoO+BJ4Gf3gtsEKKoFBNTCoCAYVwaAiGNQGMUHMkjGbgjk2mIONuXo0nC8XnCf1JXgArVIZAQh5TKYAAAAASUVORK5CYII=");
    *right: 0;
  }

  .pika-prev.is-disabled,
.pika-next.is-disabled {
    cursor: default;
    opacity: 0.2;
  }

  .pika-select {
    display: inline-block;
    *display: inline;
  }

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

  .pika-table th,
.pika-table td {
    width: 14.2857142857%;
    padding: 0;
  }

  .pika-table th {
    color: #999;
    font-size: 12px;
    line-height: 25px;
    font-weight: bold;
    text-align: center;
  }

  .pika-button {
    cursor: pointer;
    display: block;
    box-sizing: border-box;
    -moz-box-sizing: border-box;
    outline: none;
    border: 0;
    margin: 0;
    width: 100%;
    padding: 5px;
    color: #666;
    font-size: 12px;
    line-height: 15px;
    text-align: right;
    background: #f5f5f5;
  }

  .pika-week {
    font-size: 11px;
    color: #999;
  }

  .is-today .pika-button {
    color: #c62127;
    font-weight: bold;
  }

  .is-selected .pika-button,
.has-event .pika-button {
    color: #fff;
    font-weight: bold;
    background: #3af;
    box-shadow: inset 0 1px 3px #178fe5;
    border-radius: 3px;
  }

  .is-selected .pika-button {
    background: #21275d;
  }

  .has-event .pika-button {
    background: #005da9;
    box-shadow: inset 0 1px 3px #0076c9;
  }

  .is-disabled .pika-button,
.is-inrange .pika-button {
    background: #d5e9f7;
  }

  .is-startrange .pika-button {
    color: #fff;
    background: #6cb31d;
    box-shadow: none;
    border-radius: 3px;
  }

  .is-endrange .pika-button {
    color: #fff;
    background: #3af;
    box-shadow: none;
    border-radius: 3px;
  }

  .is-disabled .pika-button {
    pointer-events: none;
    cursor: default;
    color: #999;
    opacity: 0.3;
  }

  .is-outside-current-month .pika-button {
    color: #999;
    opacity: 0.3;
  }

  .is-selection-disabled {
    pointer-events: none;
    cursor: default;
  }

  .pika-button:hover,
.pika-row.pick-whole-week:hover .pika-button {
    color: #fff;
    background: #c62127;
    box-shadow: none;
    border-radius: 3px;
  }

  .pika-table abbr {
    border-bottom: none;
    cursor: help;
  }

  /*-------------------------------------------------------------*/
}

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

/*-------------Quảng cáo------------------*/
.adv {text-align: center; margin: 0; max-width: 100%; overflow: hidden;}
.adv .e {display: block; max-width: 100%;}
.adv .e img {max-width: 100% !important; max-height: 100% !important;}
.adv-textlink {text-align: left; display: block; width: 500px; max-width: 100%; background: #f8f8f8; padding: 5px 8px 8px;}
#advBabylon {position: fixed; bottom: 0; right: 0;z-index: 999999;}
#advLeft {position: fixed; top: 80px; margin-left: -180px;}
#advRight {position: relative;}
#advRight .adv {position: absolute; top: 0; right: 0;}
#advRight .e {position: fixed; top: 80px; margin-left: 20px;}
.exp_qc_share .exp_qc_one {display: none;}
.exp_qc_share .exp_qc_one.active {display: block;}
