
@media print, (prefers-reduced-motion: reduce) {
  .animate__animated {
    animation-duration: 1ms !important;
    transition-duration: 1ms !important;
    animation-iteration-count: 1 !important;
  }
  .animate__animated[class*=Out] {
    opacity: 0;
  }
}
/* Attention seekers  */
@keyframes bounce {
  from, 20%, 53%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0);
  }
  40%, 43% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -30px, 0) scaleY(1.1);
  }
  70% {
    animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
    transform: translate3d(0, -15px, 0) scaleY(1.05);
  }
  80% {
    transition-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    transform: translate3d(0, 0, 0) scaleY(0.95);
  }
  90% {
    transform: translate3d(0, -4px, 0) scaleY(1.02);
  }
}
.animate__bounce {
  animation-name: bounce;
  transform-origin: center bottom;
}
@keyframes flash {
  from, 50%, to {
    opacity: 1;
  }
  25%, 75% {
    opacity: 0;
  }
}
.animate__flash {
  animation-name: flash;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes pulse {
  from {
    transform: scale3d(1, 1, 1);
  }
  50% {
    transform: scale3d(1.05, 1.05, 1.05);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.animate__pulse {
  animation-name: pulse;
  animation-timing-function: ease-in-out;
}
@keyframes rubberBand {
  from {
    transform: scale3d(1, 1, 1);
  }
  30% {
    transform: scale3d(1.25, 0.75, 1);
  }
  40% {
    transform: scale3d(0.75, 1.25, 1);
  }
  50% {
    transform: scale3d(1.15, 0.85, 1);
  }
  65% {
    transform: scale3d(0.95, 1.05, 1);
  }
  75% {
    transform: scale3d(1.05, 0.95, 1);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.animate__rubberBand {
  animation-name: rubberBand;
}
@keyframes shakeX {
  from, to {
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(-10px, 0, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(10px, 0, 0);
  }
}
.animate__shakeX {
  animation-name: shakeX;
}
@keyframes shakeY {
  from, to {
    transform: translate3d(0, 0, 0);
  }
  10%, 30%, 50%, 70%, 90% {
    transform: translate3d(0, -10px, 0);
  }
  20%, 40%, 60%, 80% {
    transform: translate3d(0, 10px, 0);
  }
}
.animate__shakeY {
  animation-name: shakeY;
}
@keyframes headShake {
  0% {
    transform: translateX(0);
  }
  6.5% {
    transform: translateX(-6px) rotateY(-9deg);
  }
  18.5% {
    transform: translateX(5px) rotateY(7deg);
  }
  31.5% {
    transform: translateX(-3px) rotateY(-5deg);
  }
  43.5% {
    transform: translateX(2px) rotateY(3deg);
  }
  50% {
    transform: translateX(0);
  }
}
.animate__headShake {
  animation-timing-function: ease-in-out;
  animation-name: headShake;
}
@keyframes swing {
  20% {
    transform: rotate3d(0, 0, 1, 15deg);
  }
  40% {
    transform: rotate3d(0, 0, 1, -10deg);
  }
  60% {
    transform: rotate3d(0, 0, 1, 5deg);
  }
  80% {
    transform: rotate3d(0, 0, 1, -5deg);
  }
  to {
    transform: rotate3d(0, 0, 1, 0deg);
  }
}
.animate__swing {
  transform-origin: top center;
  animation-name: swing;
}
@keyframes tada {
  from {
    transform: scale3d(1, 1, 1);
  }
  10%, 20% {
    transform: scale3d(0.9, 0.9, 0.9) rotate3d(0, 0, 1, -3deg);
  }
  30%, 50%, 70%, 90% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, 3deg);
  }
  40%, 60%, 80% {
    transform: scale3d(1.1, 1.1, 1.1) rotate3d(0, 0, 1, -3deg);
  }
  to {
    transform: scale3d(1, 1, 1);
  }
}
.animate__tada {
  animation-name: tada;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes wobble {
  from {
    transform: translate3d(0, 0, 0);
  }
  15% {
    transform: translate3d(-25%, 0, 0) rotate3d(0, 0, 1, -5deg);
  }
  30% {
    transform: translate3d(20%, 0, 0) rotate3d(0, 0, 1, 3deg);
  }
  45% {
    transform: translate3d(-15%, 0, 0) rotate3d(0, 0, 1, -3deg);
  }
  60% {
    transform: translate3d(10%, 0, 0) rotate3d(0, 0, 1, 2deg);
  }
  75% {
    transform: translate3d(-5%, 0, 0) rotate3d(0, 0, 1, -1deg);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__wobble {
  animation-name: wobble;
}
@keyframes jello {
  from, 11.1%, to {
    transform: translate3d(0, 0, 0);
  }
  22.2% {
    transform: skewX(-12.5deg) skewY(-12.5deg);
  }
  33.3% {
    transform: skewX(6.25deg) skewY(6.25deg);
  }
  44.4% {
    transform: skewX(-3.125deg) skewY(-3.125deg);
  }
  55.5% {
    transform: skewX(1.5625deg) skewY(1.5625deg);
  }
  66.6% {
    transform: skewX(-0.78125deg) skewY(-0.78125deg);
  }
  77.7% {
    transform: skewX(0.390625deg) skewY(0.390625deg);
  }
  88.8% {
    transform: skewX(-0.1953125deg) skewY(-0.1953125deg);
  }
}
.animate__jello {
  animation-name: jello;
  transform-origin: center;
}
@keyframes heartBeat {
  0% {
    transform: scale(1);
  }
  14% {
    transform: scale(1.3);
  }
  28% {
    transform: scale(1);
  }
  42% {
    transform: scale(1.3);
  }
  70% {
    transform: scale(1);
  }
}
.animate__heartBeat {
  animation-name: heartBeat;
  animation-duration: 1.3s;
  animation-duration: calc(var(--animate-duration) * 1.3);
  animation-timing-function: ease-in-out;
}

/* Back entrances */
@keyframes backInDown {
  0% {
    transform: translateY(-1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInDown {
  animation-name: backInDown;
}
@keyframes backInLeft {
  0% {
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInLeft {
  animation-name: backInLeft;
}
@keyframes backInRight {
  0% {
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInRight {
  animation-name: backInRight;
}
@keyframes backInUp {
  0% {
    transform: translateY(1200px) scale(0.7);
    opacity: 0.7;
  }
  80% {
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}
.animate__backInUp {
  animation-name: backInUp;
}

/* Back exits */
@keyframes backOutDown {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  20% {
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    transform: translateY(700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutDown {
  animation-name: backOutDown;
}
@keyframes backOutLeft {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  20% {
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    transform: translateX(-2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutLeft {
  animation-name: backOutLeft;
}
@keyframes backOutRight {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  20% {
    transform: translateX(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    transform: translateX(2000px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutRight {
  animation-name: backOutRight;
}
@keyframes backOutUp {
  0% {
    transform: scale(1);
    opacity: 1;
  }
  20% {
    transform: translateY(0px) scale(0.7);
    opacity: 0.7;
  }
  100% {
    transform: translateY(-700px) scale(0.7);
    opacity: 0.7;
  }
}
.animate__backOutUp {
  animation-name: backOutUp;
}

/* Bouncing entrances  */
@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  20% {
    transform: scale3d(1.1, 1.1, 1.1);
  }
  40% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }
  80% {
    transform: scale3d(0.97, 0.97, 0.97);
  }
  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}
.animate__bounceIn {
  animation-duration: 0.75s;
  animation-duration: calc(var(--animate-duration) * 0.75);
  animation-name: bounceIn;
}
@keyframes bounceInDown {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(0, -3000px, 0) scaleY(3);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, 25px, 0) scaleY(0.9);
  }
  75% {
    transform: translate3d(0, -10px, 0) scaleY(0.95);
  }
  90% {
    transform: translate3d(0, 5px, 0) scaleY(0.985);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInDown {
  animation-name: bounceInDown;
}
@keyframes bounceInLeft {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  0% {
    opacity: 0;
    transform: translate3d(-3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    transform: translate3d(25px, 0, 0) scaleX(1);
  }
  75% {
    transform: translate3d(-10px, 0, 0) scaleX(0.98);
  }
  90% {
    transform: translate3d(5px, 0, 0) scaleX(0.995);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInLeft {
  animation-name: bounceInLeft;
}
@keyframes bounceInRight {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(3000px, 0, 0) scaleX(3);
  }
  60% {
    opacity: 1;
    transform: translate3d(-25px, 0, 0) scaleX(1);
  }
  75% {
    transform: translate3d(10px, 0, 0) scaleX(0.98);
  }
  90% {
    transform: translate3d(-5px, 0, 0) scaleX(0.995);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInRight {
  animation-name: bounceInRight;
}
@keyframes bounceInUp {
  from, 60%, 75%, 90%, to {
    animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
  }
  from {
    opacity: 0;
    transform: translate3d(0, 3000px, 0) scaleY(5);
  }
  60% {
    opacity: 1;
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  75% {
    transform: translate3d(0, 10px, 0) scaleY(0.95);
  }
  90% {
    transform: translate3d(0, -5px, 0) scaleY(0.985);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__bounceInUp {
  animation-name: bounceInUp;
}

/* Bouncing exits  */
@keyframes bounceOut {
  20% {
    transform: scale3d(0.9, 0.9, 0.9);
  }
  50%, 55% {
    opacity: 1;
    transform: scale3d(1.1, 1.1, 1.1);
  }
  to {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
}
.animate__bounceOut {
  animation-duration: 0.75s;
  animation-duration: calc(var(--animate-duration) * 0.75);
  animation-name: bounceOut;
}
@keyframes bounceOutDown {
  20% {
    transform: translate3d(0, 10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, -20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0) scaleY(3);
  }
}
.animate__bounceOutDown {
  animation-name: bounceOutDown;
}
@keyframes bounceOutLeft {
  20% {
    opacity: 1;
    transform: translate3d(20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutLeft {
  animation-name: bounceOutLeft;
}
@keyframes bounceOutRight {
  20% {
    opacity: 1;
    transform: translate3d(-20px, 0, 0) scaleX(0.9);
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0) scaleX(2);
  }
}
.animate__bounceOutRight {
  animation-name: bounceOutRight;
}
@keyframes bounceOutUp {
  20% {
    transform: translate3d(0, -10px, 0) scaleY(0.985);
  }
  40%, 45% {
    opacity: 1;
    transform: translate3d(0, 20px, 0) scaleY(0.9);
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0) scaleY(3);
  }
}
.animate__bounceOutUp {
  animation-name: bounceOutUp;
}

/* Fading entrances  */
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
.animate__fadeIn {
  animation-name: fadeIn;
}
@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInDown {
  animation-name: fadeInDown;
}
@keyframes fadeInDownBig {
  from {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInDownBig {
  animation-name: fadeInDownBig;
}
@keyframes fadeInLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInLeft {
  animation-name: fadeInLeft;
}
@keyframes fadeInLeftBig {
  from {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInLeftBig {
  animation-name: fadeInLeftBig;
}
@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInRight {
  animation-name: fadeInRight;
}
@keyframes fadeInRightBig {
  from {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInRightBig {
  animation-name: fadeInRightBig;
}
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUp {
  animation-name: fadeInUp;
}
@keyframes fadeInUpBig {
  from {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInUpBig {
  animation-name: fadeInUpBig;
}
@keyframes fadeInTopLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopLeft {
  animation-name: fadeInTopLeft;
}
@keyframes fadeInTopRight {
  from {
    opacity: 0;
    transform: translate3d(100%, -100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInTopRight {
  animation-name: fadeInTopRight;
}
@keyframes fadeInBottomLeft {
  from {
    opacity: 0;
    transform: translate3d(-100%, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomLeft {
  animation-name: fadeInBottomLeft;
}
@keyframes fadeInBottomRight {
  from {
    opacity: 0;
    transform: translate3d(100%, 100%, 0);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__fadeInBottomRight {
  animation-name: fadeInBottomRight;
}

/* Fading exits */
@keyframes fadeOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.animate__fadeOut {
  animation-name: fadeOut;
}
@keyframes fadeOutDown {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 100%, 0);
  }
}
.animate__fadeOutDown {
  animation-name: fadeOutDown;
}
@keyframes fadeOutDownBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, 2000px, 0);
  }
}
.animate__fadeOutDownBig {
  animation-name: fadeOutDownBig;
}
@keyframes fadeOutLeft {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 0, 0);
  }
}
.animate__fadeOutLeft {
  animation-name: fadeOutLeft;
}
@keyframes fadeOutLeftBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(-2000px, 0, 0);
  }
}
.animate__fadeOutLeftBig {
  animation-name: fadeOutLeftBig;
}
@keyframes fadeOutRight {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0);
  }
}
.animate__fadeOutRight {
  animation-name: fadeOutRight;
}
@keyframes fadeOutRightBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(2000px, 0, 0);
  }
}
.animate__fadeOutRightBig {
  animation-name: fadeOutRightBig;
}
@keyframes fadeOutUp {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
}
.animate__fadeOutUp {
  animation-name: fadeOutUp;
}
@keyframes fadeOutUpBig {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(0, -2000px, 0);
  }
}
.animate__fadeOutUpBig {
  animation-name: fadeOutUpBig;
}
@keyframes fadeOutTopLeft {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, -100%, 0);
  }
}
.animate__fadeOutTopLeft {
  animation-name: fadeOutTopLeft;
}
@keyframes fadeOutTopRight {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(100%, -100%, 0);
  }
}
.animate__fadeOutTopRight {
  animation-name: fadeOutTopRight;
}
@keyframes fadeOutBottomRight {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 100%, 0);
  }
}
.animate__fadeOutBottomRight {
  animation-name: fadeOutBottomRight;
}
@keyframes fadeOutBottomLeft {
  from {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  to {
    opacity: 0;
    transform: translate3d(-100%, 100%, 0);
  }
}
.animate__fadeOutBottomLeft {
  animation-name: fadeOutBottomLeft;
}

/* Flippers */
@keyframes flip {
  from {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, -360deg);
    animation-timing-function: ease-out;
  }
  40% {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -190deg);
    animation-timing-function: ease-out;
  }
  50% {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 150px) rotate3d(0, 1, 0, -170deg);
    animation-timing-function: ease-in;
  }
  80% {
    transform: perspective(400px) scale3d(0.95, 0.95, 0.95) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    animation-timing-function: ease-in;
  }
  to {
    transform: perspective(400px) scale3d(1, 1, 1) translate3d(0, 0, 0) rotate3d(0, 1, 0, 0deg);
    animation-timing-function: ease-in;
  }
}
.animate__animated.animate__flip {
  backface-visibility: visible;
  animation-name: flip;
}
@keyframes flipInX {
  from {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(1, 0, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(1, 0, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.animate__flipInX {
  backface-visibility: visible !important;
  animation-name: flipInX;
}
@keyframes flipInY {
  from {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    animation-timing-function: ease-in;
    opacity: 0;
  }
  40% {
    transform: perspective(400px) rotate3d(0, 1, 0, -20deg);
    animation-timing-function: ease-in;
  }
  60% {
    transform: perspective(400px) rotate3d(0, 1, 0, 10deg);
    opacity: 1;
  }
  80% {
    transform: perspective(400px) rotate3d(0, 1, 0, -5deg);
  }
  to {
    transform: perspective(400px);
  }
}
.animate__flipInY {
  backface-visibility: visible !important;
  animation-name: flipInY;
}
@keyframes flipOutX {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(1, 0, 0, -20deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(1, 0, 0, 90deg);
    opacity: 0;
  }
}
.animate__flipOutX {
  animation-duration: 0.75s;
  animation-duration: calc(var(--animate-duration) * 0.75);
  animation-name: flipOutX;
  backface-visibility: visible !important;
}
@keyframes flipOutY {
  from {
    transform: perspective(400px);
  }
  30% {
    transform: perspective(400px) rotate3d(0, 1, 0, -15deg);
    opacity: 1;
  }
  to {
    transform: perspective(400px) rotate3d(0, 1, 0, 90deg);
    opacity: 0;
  }
}
.animate__flipOutY {
  animation-duration: 0.75s;
  animation-duration: calc(var(--animate-duration) * 0.75);
  backface-visibility: visible !important;
  animation-name: flipOutY;
}

/* Lightspeed */
@keyframes lightSpeedInRight {
  from {
    transform: translate3d(100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(-5deg);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__lightSpeedInRight {
  animation-name: lightSpeedInRight;
  animation-timing-function: ease-out;
}
@keyframes lightSpeedInLeft {
  from {
    transform: translate3d(-100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
  60% {
    transform: skewX(-20deg);
    opacity: 1;
  }
  80% {
    transform: skewX(5deg);
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__lightSpeedInLeft {
  animation-name: lightSpeedInLeft;
  animation-timing-function: ease-out;
}
@keyframes lightSpeedOutRight {
  from {
    opacity: 1;
  }
  to {
    transform: translate3d(100%, 0, 0) skewX(30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutRight {
  animation-name: lightSpeedOutRight;
  animation-timing-function: ease-in;
}
@keyframes lightSpeedOutLeft {
  from {
    opacity: 1;
  }
  to {
    transform: translate3d(-100%, 0, 0) skewX(-30deg);
    opacity: 0;
  }
}
.animate__lightSpeedOutLeft {
  animation-name: lightSpeedOutLeft;
  animation-timing-function: ease-in;
}

/* Rotating entrances */
@keyframes rotateIn {
  from {
    transform: rotate3d(0, 0, 1, -200deg);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateIn {
  animation-name: rotateIn;
  transform-origin: center;
}
@keyframes rotateInDownLeft {
  from {
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInDownLeft {
  animation-name: rotateInDownLeft;
  transform-origin: left bottom;
}
@keyframes rotateInDownRight {
  from {
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInDownRight {
  animation-name: rotateInDownRight;
  transform-origin: right bottom;
}
@keyframes rotateInUpLeft {
  from {
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInUpLeft {
  animation-name: rotateInUpLeft;
  transform-origin: left bottom;
}
@keyframes rotateInUpRight {
  from {
    transform: rotate3d(0, 0, 1, -90deg);
    opacity: 0;
  }
  to {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}
.animate__rotateInUpRight {
  animation-name: rotateInUpRight;
  transform-origin: right bottom;
}

/* Rotating exits */
@keyframes rotateOut {
  from {
    opacity: 1;
  }
  to {
    transform: rotate3d(0, 0, 1, 200deg);
    opacity: 0;
  }
}
.animate__rotateOut {
  animation-name: rotateOut;
  transform-origin: center;
}
@keyframes rotateOutDownLeft {
  from {
    opacity: 1;
  }
  to {
    transform: rotate3d(0, 0, 1, 45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownLeft {
  animation-name: rotateOutDownLeft;
  transform-origin: left bottom;
}
@keyframes rotateOutDownRight {
  from {
    opacity: 1;
  }
  to {
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.animate__rotateOutDownRight {
  animation-name: rotateOutDownRight;
  transform-origin: right bottom;
}
@keyframes rotateOutUpLeft {
  from {
    opacity: 1;
  }
  to {
    transform: rotate3d(0, 0, 1, -45deg);
    opacity: 0;
  }
}
.animate__rotateOutUpLeft {
  animation-name: rotateOutUpLeft;
  transform-origin: left bottom;
}
@keyframes rotateOutUpRight {
  from {
    opacity: 1;
  }
  to {
    transform: rotate3d(0, 0, 1, 90deg);
    opacity: 0;
  }
}
.animate__rotateOutUpRight {
  animation-name: rotateOutUpRight;
  transform-origin: right bottom;
}

/* Specials */
@keyframes hinge {
  0% {
    animation-timing-function: ease-in-out;
  }
  20%, 60% {
    transform: rotate3d(0, 0, 1, 80deg);
    animation-timing-function: ease-in-out;
  }
  40%, 80% {
    transform: rotate3d(0, 0, 1, 60deg);
    animation-timing-function: ease-in-out;
    opacity: 1;
  }
  to {
    transform: translate3d(0, 700px, 0);
    opacity: 0;
  }
}
.animate__hinge {
  animation-duration: 2s;
  animation-duration: calc(var(--animate-duration) * 2);
  animation-name: hinge;
  transform-origin: top left;
}
@keyframes jackInTheBox {
  from {
    opacity: 0;
    transform: scale(0.1) rotate(30deg);
    transform-origin: center bottom;
  }
  50% {
    transform: rotate(-10deg);
  }
  70% {
    transform: rotate(3deg);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}
.animate__jackInTheBox {
  animation-name: jackInTheBox;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollIn {
  from {
    opacity: 0;
    transform: translate3d(-100%, 0, 0) rotate3d(0, 0, 1, -120deg);
  }
  to {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
}
.animate__rollIn {
  animation-name: rollIn;
}

/* originally authored by Nick Pettit - https://github.com/nickpettit/glide */
@keyframes rollOut {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
    transform: translate3d(100%, 0, 0) rotate3d(0, 0, 1, 120deg);
  }
}
.animate__rollOut {
  animation-name: rollOut;
}

/* Zooming entrances */
@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.animate__zoomIn {
  animation-name: zoomIn;
}
@keyframes zoomInDown {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInDown {
  animation-name: zoomInDown;
}
@keyframes zoomInLeft {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(-1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInLeft {
  animation-name: zoomInLeft;
}
@keyframes zoomInRight {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(1000px, 0, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-10px, 0, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInRight {
  animation-name: zoomInRight;
}
@keyframes zoomInUp {
  from {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 1000px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  60% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomInUp {
  animation-name: zoomInUp;
}

/* Zooming exits */
@keyframes zoomOut {
  from {
    opacity: 1;
  }
  50% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  to {
    opacity: 0;
  }
}
.animate__zoomOut {
  animation-name: zoomOut;
}
@keyframes zoomOutDown {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, -60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, 2000px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutDown {
  animation-name: zoomOutDown;
  transform-origin: center bottom;
}
@keyframes zoomOutLeft {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(-2000px, 0, 0);
  }
}
.animate__zoomOutLeft {
  animation-name: zoomOutLeft;
  transform-origin: left center;
}
@keyframes zoomOutRight {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(-42px, 0, 0);
  }
  to {
    opacity: 0;
    transform: scale(0.1) translate3d(2000px, 0, 0);
  }
}
.animate__zoomOutRight {
  animation-name: zoomOutRight;
  transform-origin: right center;
}
@keyframes zoomOutUp {
  40% {
    opacity: 1;
    transform: scale3d(0.475, 0.475, 0.475) translate3d(0, 60px, 0);
    animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
  }
  to {
    opacity: 0;
    transform: scale3d(0.1, 0.1, 0.1) translate3d(0, -2000px, 0);
    animation-timing-function: cubic-bezier(0.175, 0.885, 0.32, 1);
  }
}
.animate__zoomOutUp {
  animation-name: zoomOutUp;
  transform-origin: center bottom;
}

/* Sliding entrances */
@keyframes slideInDown {
  from {
    transform: translate3d(0, -100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInDown {
  animation-name: slideInDown;
}
@keyframes slideInLeft {
  from {
    transform: translate3d(-100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInLeft {
  animation-name: slideInLeft;
}
@keyframes slideInRight {
  from {
    transform: translate3d(100%, 0, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInRight {
  animation-name: slideInRight;
}
@keyframes slideInUp {
  from {
    transform: translate3d(0, 100%, 0);
    visibility: visible;
  }
  to {
    transform: translate3d(0, 0, 0);
  }
}
.animate__slideInUp {
  animation-name: slideInUp;
}

/* Sliding exits */
@keyframes slideOutDown {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, 100%, 0);
  }
}
.animate__slideOutDown {
  animation-name: slideOutDown;
}
@keyframes slideOutLeft {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(-100%, 0, 0);
  }
}
.animate__slideOutLeft {
  animation-name: slideOutLeft;
}
@keyframes slideOutRight {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(100%, 0, 0);
  }
}
.animate__slideOutRight {
  animation-name: slideOutRight;
}
@keyframes slideOutUp {
  from {
    transform: translate3d(0, 0, 0);
  }
  to {
    visibility: hidden;
    transform: translate3d(0, -100%, 0);
  }
}
.animate__slideOutUp {
  animation-name: slideOutUp;
}

.animated-2s {
  animation-duration: 2s;
}

.animated-4s {
  animation-duration: 4s;
}

.animated-6s {
  animation-duration: 6s;
}

.delayp2 {
  animation-delay: 0.2s;
  -moz-animation-delay: 0.2s;
  -webkit-animation-delay: 0.2s;
  -o-animation-delay: 0.2s;
  transition-delay: 0.2s;
  -webkit-transition-delay: 0.2s;
  -moz-transition-delay: 0.2s;
  -o-transition-delay: 0.2s;
}

.delayp4 {
  animation-delay: 0.4s;
  -moz-animation-delay: 0.4s;
  -webkit-animation-delay: 0.4s;
  -o-animation-delay: 0.4s;
  transition-delay: 0.4s;
  -webkit-transition-delay: 0.4s;
  -moz-transition-delay: 0.4s;
  -o-transition-delay: 0.4s;
}

.delayp6 {
  animation-delay: 0.6s;
  -moz-animation-delay: 0.6s;
  -webkit-animation-delay: 0.6s;
  -o-animation-delay: 0.6s;
  transition-delay: 0.6s;
  -webkit-transition-delay: 0.6s;
  -moz-transition-delay: 0.6s;
  -o-transition-delay: 0.6s;
}

.delayp8 {
  animation-delay: 0.8s;
  -moz-animation-delay: 0.8s;
  -webkit-animation-delay: 0.8s;
  -o-animation-delay: 0.8s;
  transition-delay: 0.8s;
  -webkit-transition-delay: 0.8s;
  -moz-transition-delay: 0.8s;
  -o-transition-delay: 0.8s;
}

.delay1s {
  animation-delay: 1s;
  -moz-animation-delay: 1s;
  -webkit-animation-delay: 1s;
  -o-animation-delay: 1s;
  transition-delay: 1s;
  -webkit-transition-delay: 1s;
  -moz-transition-delay: 1s;
  -o-transition-delay: 1s;
}

:root, [data-bs-theme=light] {
  --custom-input-border-radius: 0;
}

.form-select {
  border-radius: var(--custom-input-border-radius);
}

/*---------- base css ----------*/
body {
  background: #fff;
  font-family: "Roboto", Arial, "Helvetica Neue", Helvetica, sans-serif;
  font-size: 14px;
  color: #000;
}

h1, .h1, h2, .h2, h3, .h3, h4, .h4, h5, .h5, h6, .h6 {
}

a {
  color: #007bff;
}

a:focus {
  outline: none;
}

/*---------- end base css ----------*/
/*---------- helpers css ----------*/
.h-text__underline {
  text-decoration: underline !important;
}

.h-text__none {
  text-decoration: none !important;
}

.h-text__inline-block {
  display: inline-block;
  vertical-align: top;
  width: auto;
}

.h-cursor__pointer {
  cursor: pointer !important;
}

.h-show-pc {
  display: none;
}

/*---------- end helpers css ----------*/
/*---------- base small css ----------*/
.b-maincontent {
  font-size: 14px;
  line-height: 20px;
}
.b-maincontent > :first-child {
  margin-top: 0 !important;
  text-align: justify !important;
}
.b-maincontent > :last-child {
  margin-bottom: 0 !important;
}
.b-maincontent p {
  font-size: 14px;
  margin: 15px 0;
}
.b-maincontent img {
  max-width: 100%;
  height: auto !important;
}
.b-maincontent ul, .b-maincontent ol {
  padding-left: 20px;
  margin-bottom: 10px;
}
.b-maincontent .caption, .b-maincontent p.caption {
  max-width: 100%;
  color: #333303;
  font-size: 80% !important;
  line-height: 1.3;
}
.b-maincontent .caption b, .b-maincontent .caption strong, .b-maincontent p.caption b, .b-maincontent p.caption strong {
  color: #333303;
}
.b-maincontent h1, .b-maincontent h2, .b-maincontent h3, .b-maincontent h4, .b-maincontent h5, .b-maincontent h6, .b-maincontent .h1, .b-maincontent .h2, .b-maincontent .h3, .b-maincontent .h4, .b-maincontent .h5, .b-maincontent .h6 {
  line-height: 1.618;
}
.b-maincontent h1, .b-maincontent .h1 {
  font-size: 30px;
  line-height: 1.4;
}
.b-maincontent h2, .b-maincontent .h2 {
  font-size: 1.5em;
}
.b-maincontent h3, .b-maincontent .h3 {
  font-size: 1.17em;
}
.b-maincontent h4, .b-maincontent .h4 {
  font-size: 1em;
}
.b-maincontent h5, .b-maincontent .h5 {
  font-size: 0.83em;
}
.b-maincontent h6, .b-maincontent .h6 {
  font-size: 0.67em;
}
.b-maincontent table {
  margin: 10px 0;
}
.b-maincontent table.picture {
  color: #999;
  font-family: "Roboto", Arial, "Helvetica Neue", Helvetica, sans-serif;
  line-height: 1.3;
}
.b-maincontent table.picture b, .b-maincontent table.picture strong {
  color: #333303;
}
.b-maincontent table img {
  height: auto;
}
.b-maincontent table td.pCaption {
  padding: 5px 0 0;
  font-family: "Roboto", Arial, "Helvetica Neue", Helvetica, sans-serif;
}
.b-maincontent table[align=center] {
  width: 100%;
}

.b-nodata {
  padding: 10px 0;
}

.b-table {
  width: 100%;
  display: table;
}

.b-table__row {
  display: table-row;
}

.b-table__cell {
  display: table-cell;
  vertical-align: middle;
}

.b-grid {
  margin: 0;
  padding: 0;
  min-height: 60px;
}
.b-grid .b-grid__img {
  float: left;
  width: 50px;
  height: 50px;
  overflow: hidden;
  background-color: #ececec;
  background-repeat: no-repeat;
  background-position: center center;
}
.b-grid .b-grid__img img {
  width: 100%;
  min-height: 50px;
  height: auto;
}
.b-grid .b-grid__content {
  margin-left: 60px;
}
.b-grid .b-grid__row {
  margin-bottom: 5px;
}
.b-grid .b-grid__row:last-child {
  margin-bottom: 0;
}
.b-grid .b-grid__row-right {
  text-align: right;
  margin-bottom: 5px;
}
.b-grid .b-grid__title {
  font-weight: 700;
}
.b-grid a.b-grid__title {
  cursor: pointer;
  text-decoration: none;
}
.b-grid .b-grid__small-title {
  font-weight: normal;
  margin-right: 3px;
}
.b-grid a.b-grid__small-title {
  cursor: pointer;
  text-decoration: none;
}


/*---------- end base small css ----------*/
/*---------- sprite css ----------*/
[class*=icon] {
  display: inline-block;
  vertical-align: middle;
  background-repeat: no-repeat;
  background-position: center center;
}

[class*=icon12] {
  width: 12px;
  height: 12px;
}

[class*=icon16] {
  width: 21px;
  height: 18px;
}

[class*=icon20] {
  width: 20px;
  height: 20px;
}

[class*=icon24] {
  width: 24px;
  height: 24px;
}

[class*=icon32] {
  width: 32px;
  height: 32px;
}

[class*=icon36] {
  width: 36px;
  height: 36px;
}

[class*=icon40] {
  width: 40px;
  height: 40px;
}

[class*=icon42] {
  width: 42px;
  height: 42px;
}

[class*=icon48] {
  width: 48px;
  height: 48px;
}

[class*=icon64] {
  width: 64px;
  height: 64px;
}

.icon12-close {
  background-image: url("../images/icons/icon12-close.png");
}

.icon12-link {
  background-image: url("../images/icons/icon12-link.svg");
}

.icon12-link-white {
  background-image: url("../images/icons/icon12-link-white.svg");
}

.icon12-facebook-f-white {
  background-image: url("../images/icons/icon12-facebook-f-white.svg");
}

.icon12-facebook-f-gray {
  background-image: url("../images/icons/icon12-facebook-f-gray.svg");
}

.icon12-heart-gray {
  background-image: url("../images/icons/icon12-heart-gray.svg");
}

.icon12-heart-white {
  background-image: url("../images/icons/icon12-heart-white.svg");
}

.icon16-print {
  background-image: url("../images/icons/icon16-print.svg");
}

.icon16-print-white {
  background-image: url("../images/icons/icon16-print-white.svg");
}

.icon16-copy-gray {
  background-image: url("../images/icons/icon16-copy-gray.png");
}

.icon16-copy-white {
  background-image: url("../images/icons/icon16-copy-white.png");
}

.icon12-like {
  background-image: url("../images/icons/icon12-like.png");
}

.icon16-redirect {
  background-image: url("../images/icons/icon16-redirect.svg");
}

.icon16-zalo {
  background-image: url("../images/icons/icon16-zalo.svg");
}

.icon16-zalo-gray {
  background-image: url("../images/icons/icon16-zalo-gray.svg");
}

.icon16-zalo-white {
  background-image: url("../images/icons/icon16-zalo-white.svg");
}

.icon16-facebook-f {
  background-image: url("../images/icons/icon16-facebook-f.svg");
}

.icon16-facebook-f-gray {
  background-image: url("../images/icons/icon16-facebook-f-gray.svg");
}

.icon16-facebook-white {
  background-image: url("../images/icons/icon16-facebook-white.svg");
}

.icon16-comment-gray-o {
  background-image: url("../images/icons/icon16-comment-gray-o.svg");
}

.icon16-redirect {
  background-image: url("../images/icons/icon16-redirect.svg");
}

.icon16-ad {
  background-image: url("../images/icons/icon16-ad.svg");
}

.icon20-search {
  background-image: url("../images/icons/icon20-search.svg");
}

.icon20-search-white {
  background-image: url("../images/icons/icon20-search-white.svg");
}

.icon20-zalo-white {
  background-image: url("../images/icons/icon20-zalo-white.svg");
}

.icon24-topevent {
  background-image: url("../images/icons/icon24-topevent.svg");
}

.icon24-facebook-circle-gray {
  background-image: url("../images/icons/icon24-facebook-circle-gray.svg");
}

.icon24-font-gray {
  background-image: url("../images/icons/icon24-font-gray.svg");
}

.icon24-minus-circle-gray {
  background-image: url("../images/icons/icon24-minus-circle-gray.svg");
}

.icon24-plus-circle-gray {
  background-image: url("../images/icons/icon24-plus-circle-gray.svg");
}

.icon24-comment-gray {
  background-image: url("../images/icons/icon24-comment-gray.svg");
}

.icon24-print-gray {
  background-image: url("../images/icons/icon24-print-gray.svg");
}

.icon24-facebook-circle {
  background-image: url("../images/icons/icon24-facebook-circle.svg");
}

.icon24-tiktok {
  background-image: url("../images/icons/icon24-tiktok.svg");
}

.icon24-youtube {
  background-image: url("../images/icons/icon24-youtube.svg");
}

.icon24-home-primary {
  background-image: url("../images/icons/icon24-home-primary.svg");
}

.icon24-menu-gray {
  background-image: url("../images/icons/icon24-menu-gray.svg");
}

.icon24-menu-white {
  background-image: url("../images/icons/icon24-menu-white.svg");
}

.icon24-menu-white2 {
  background-image: url("../images/icons/icon24-menu-white2.svg");
}

.icon24-close-white {
  background-image: url("../images/icons/icon24-close-white.svg");
}

.icon24-share-gray {
  background-image: url("../images/icons/icon24-share-gray.svg");
}

.icon24-left-white {
  background-image: url("../images/icons/icon24-left-white.svg");
}

.icon24-right-white {
  background-image: url("../images/icons/icon24-right-white.svg");
}

.icon12-play-white {
  background-image: url("../images/icons/icon12-play-white.svg");
}

.icon16-video-gray {
  background-image: url("../images/icons/icon16-video-gray.svg");
}

.icon16-video-white {
  background-image: url("../images/icons/icon16-video-gray.svg");
}

.icon16-e-magazine-gray {
  background-image: url("../images/icons/icon16-e-magazine-gray.svg");
}

.icon16-image-gray {
  background-image: url("../images/icons/icon16-image-gray.svg");
}

.icon16-infographic-gray {
  background-image: url("https://ktck.1cdn.vn/ktck/assets/static/images/icons/icon16-infographic-gray.svg");
}

.icon16-podcast-gray {
  background-image: url("../images/icons/icon16-podcast-gray.svg");
}

.icon12-caret-up {
  background-image: url("../images/icons/icon12-caret-up.svg");
}

.icon12-caret-down {
  background-image: url("../images/icons/icon12-caret-down.svg");
}

.icon16-search {
  background-image: url("../images/icons/icon16-search.svg");
}

.icon16-search-white {
  background-image: url("../images/icons/icon16-search-white.svg");
}

.icon16-calendar-gray {
  background-image: url("../images/icons/icon16-calendar-gray.svg");
}

.icon16-building-gray {
  background-image: url("../images/icons/icon16-building-gray.svg");
}

.icon16-place-gray {
  background-image: url("../images/icons/icon16-place-gray.svg");
}

.icon16-phone-gray {
  background-image: url("../images/icons/icon16-phone-gray.svg");
}

.icon16-envelope-gray {
  background-image: url("../images/icons/icon16-envelope-gray.svg");
}

.icon16-person-gray {
  background-image: url("../images/icons/icon16-person-gray.svg");
}

.icon16-video-secondary {
  background-image: url("../images/icons/icon16-video-secondary.svg");
}

.icon16-image-secondary {
  background-image: url("../images/icons/icon16-image-secondary.svg");
}

.icon16-infographic-secondary {
  background-image: url("../images/icons/icon16-infographic-secondary.svg");
}

.icon16-short-video-secondary {
  background-image: url("../images/icons/icon16-short-video-secondary.svg");
}

.icon16-chart-bar-secondary {
  background-image: url("../images/icons/icon16-chart-bar-secondary.svg");
}

.icon16-calendar-secondary {
  background-image: url("../images/icons/icon16-calendar-secondary.svg");
}

.icon16-chevron-up-black {
  background-image: url("../images/icons/icon16-chevron-up-black.svg");
}

.icon16-chevron-down-black {
  background-image: url("../images/icons/icon16-chevron-down-black.svg");
}

.icon16-home-white {
  background: url("../images/icons/icon16-home-white.svg");
  background-repeat: no-repeat;
  background-size: contain;
}

.icon24-home-white {
  background-image: url("../images/icons/icon24-home-white.svg");
}

.icon24-home-line-white {
  background-image: url("../images/icons/icon24-home-line-white.svg");
}

.icon24-table-price-white {
  background-image: url("../images/icons/icon24-table-price-white.svg");
}

.icon24-statistic-white {
  background-image: url("../images/icons/icon24-statistic-white.svg");
}

.icon24-build-white {
  background-image: url("../images/icons/icon24-build-white.svg");
}

.icon40-multimedia-secondary {
  background-image: url("../images/icons/icon40-multimedia-secondary.svg");
}

.icon-faq-circle-o {
  width: 16px;
  height: 16px;
  background-image: url("../images/icons/icon-faq-circle-o.svg");
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
}

/*---------- end sprite css ----------*/
/*---------- fix bootstrap css ----------*/
.row.reset-all {
  margin-left: 0;
  margin-right: 0;
}
.row.reset-all [class*=col-].reset-padding-all {
  padding-left: 0;
  padding-right: 0;
}
.row.reset-all [class*=col-].reset-padding-left {
  padding-left: 0;
}
.row.reset-all [class*=col-].reset-padding-right {
  padding-right: 0;
}

.row.reset-5 {
  margin-left: -5px;
  margin-right: -5px;
}
.row.reset-5 [class*=col-].padding-all-5 {
  padding-left: 5px;
  padding-right: 5px;
}
.row.reset-5 [class*=col-].padding-left-5 {
  padding-left: 5px;
}
.row.reset-5 [class*=col-].padding-right-5 {
  padding-right: 5px;
}

.row.reset-10 {
  margin-left: -10px;
  margin-right: -10px;
}
.row.reset-10 [class*=col-].padding-all-10 {
  padding-left: 10px;
  padding-right: 10px;
}
.row.reset-10 [class*=col-].padding-left-10 {
  padding-left: 10px;
}
.row.reset-10 [class*=col-].padding-right-10 {
  padding-right: 10px;
}


/*---------- end fix bootstrap css ----------*/
/*---------- fix owl carousel css ----------*/
.owl-carousel .owl-item img {
  transform-style: flat;
}

/*---------- end fix owl carousel css ----------*/
/*---------- fix wordpress css ----------*/
.wp-caption {
  max-width: 100%;
}

.c-yoast-breadcrumb {
  padding: 10px 0;
}
.c-yoast-breadcrumb a {
  text-decoration: none;
  color: #333303;
}
.c-yoast-breadcrumb a:hover {
  color: #016e39;
}
.c-yoast-breadcrumb a:after {
  content: "/";
  color: #999;
  margin: 0 3px;
}
.arve-wrapper {
  text-align: center;
}

.aligncenter {
  clear: both;
  display: block;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.wp-caption-text {
  margin-bottom: 10px;
  font-style: italic;
  font-size: 80%;
}

.alignleft {
  margin-top: 10px;
  margin-bottom: 10px;
}

.alignright {
  margin-top: 10px;
  margin-bottom: 10px;
}


/*---------- end fix wordpress css ----------*/
/*---------- fix acf map css ----------*/
.acf-map {
  width: 100%;
  height: 100%;
  border: 1px solid #ddd;
  margin: 0;
}

.acf-map img {
  max-width: inherit !important;
}

/*---------- end fix acf map css ----------*/
/*---------- bootstrap css rewrite css ----------*/

.c-container-wrapper.is-frame {
  background-color: #fff;
  margin: 0 auto;
  position: relative;
  z-index: 3;
}

.c-container-wrapper.is-zindex-up {
  position: relative;
  z-index: 4;
}

.btn {
  cursor: pointer;
  font-size: 14px;
}
.btn.is-circle {
  border-radius: 19px;
}
.btn .icon-left {
  margin-right: 5px;
  vertical-align: middle;
  margin-top: -2px;
}
.btn .icon-right {
  margin-left: 5px;
  vertical-align: inherit;
  margin-top: -2px;
}

.btn-group-lg > .btn, .btn-lg {
  font-size: 16px;
}

.btn-primary {
  background-color: #016e39;
  border-color: #016e39;
}
.form-control {
  font-size: 14px;
  box-shadow: none;
}
.form-control:focus {
  box-shadow: none;
}

textarea.form-control {
  height: auto;
}

input.form-control {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}

select:not([multiple]).b-select-custom {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-position: right 50% !important;
  background-repeat: no-repeat !important;
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA4AAAAMCAYAAABSgIzaAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyJpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMC1jMDYwIDYxLjEzNDc3NywgMjAxMC8wMi8xMi0xNzozMjowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENTNSBNYWNpbnRvc2giIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NDZFNDEwNjlGNzFEMTFFMkJEQ0VDRTM1N0RCMzMyMkIiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NDZFNDEwNkFGNzFEMTFFMkJEQ0VDRTM1N0RCMzMyMkIiPiA8eG1wTU06RGVyaXZlZEZyb20gc3RSZWY6aW5zdGFuY2VJRD0ieG1wLmlpZDo0NkU0MTA2N0Y3MUQxMUUyQkRDRUNFMzU3REIzMzIyQiIgc3RSZWY6ZG9jdW1lbnRJRD0ieG1wLmRpZDo0NkU0MTA2OEY3MUQxMUUyQkRDRUNFMzU3REIzMzIyQiIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PuGsgwQAAAA5SURBVHjaYvz//z8DOYCJgUxAf42MQIzTk0D/M+KzkRGPoQSdykiKJrBGpOhgJFYTWNEIiEeAAAMAzNENEOH+do8AAAAASUVORK5CYII=) !important;
  padding: 0.5em;
  padding-right: 1.5em;
}

select:not([multiple])::-ms-expand {
  display: none;
}

.b-form label {
  font-weight: normal;
}
.b-form .b-form__captcha {
  display: inline-block;
  border: 1px solid #ddd;
  margin: 0 0 5px;
  vertical-align: middle;
}
.b-form .b-form__btnnewimg {
  background: url("../images/btnnewimg.png") no-repeat;
  border: none;
  cursor: pointer;
  height: 31px;
  margin: 0 0 0 5px !important;
  text-indent: -9999px;
  vertical-align: middle !important;
  width: 30px;
  display: inline-block;
  box-shadow: none;
}
.b-form.form-horizontal .control-label {
  text-align: left;
}
.b-form.form-horizontal .control-label.text-right {
  text-align: right;
}

.b-page .page-item {
  margin: 0 5px;
}
.b-page .page-item.disabled .page-link {
  background: #fff;
  color: #999;
}
.b-page .page-item.active .page-link {
  background: #016e39;
}
.b-page .page-link {
  border: none;
  background: #fff;
  color: #333303;
  border-radius: 4px;
}

.breadcrumb {
  margin-bottom: 0;
  border-radius: 0;
  background-color: transparent;
  padding: 10px 0;
}
.breadcrumb > li {
  position: relative;
  margin-right: 25px;
  margin-bottom: 3px;
}
.breadcrumb > li:last-child {
  margin-right: 0;
}
.breadcrumb > li > a {
  text-decoration: none;
  color: #016e39;
}
.breadcrumb > li.active a {
  color: #757575;
}

.breadcrumb-item:after {
  content: "";
  width: 7px;
  height: 7px;
  border-top: 1px solid #bdbdbd;
  border-right: 1px solid #bdbdbd;
  transform: rotate(45deg);
  position: absolute;
  right: -15px;
  top: 5px;
}
.breadcrumb-item:last-child:after {
  display: none;
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: 0;
}
.breadcrumb-item + .breadcrumb-item:before {
  display: none;
}

.toast-custom {
  left: 50%;
  position: fixed;
  transform: translate(-50%, 0px);
  z-index: 9999;
  top: 50%;
  margin-top: -41px;
  min-width: 290px;
  background-color: #fff;
}

/*---------- end bootstrap css rewrite css ----------*/
/*---------- header css ----------*/
.c-nav-inner {
  position: relative;
  z-index: 101;
  left: 0;
  right: 0;
  top: 0;
  background-color: #fff;
}
.c-nav-inner__height {
  height: 0;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 1px;
}

.c-header {
  position: relative;
  z-index: 10;
}

.c-header-inner {
  height: 48px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.c-header-inner__left {
  min-width: 24px;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.c-header-inner__left > * {
  margin-right: 10px;
}
.c-header-inner__left > *:last-child {
  margin-right: 0;
}
.c-header-inner__right {
  min-width: 24px;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}

.c-logo {
  display: inline-block;
  vertical-align: middle;
  margin-bottom: 0;
}
.c-logo img {
  width: auto;
  height: 30px;
  max-width: 100%;
}

h1.c-logo, .c-logo.h1 {
  line-height: 0;
}

.c-menu-expand {
  display: inline-block;
  vertical-align: middle;
  width: 24px;
  height: 24px;
  border: none;
  background-color: transparent;
  padding: 0;
  position: relative;
  z-index: 1;
}
.c-menu-expand:focus {
  outline: none;
  border: none;
}
.c-menu-expand span {
  background-color: #666;
  font-size: 0;
  width: 18px;
  height: 2px;
  position: absolute;
  top: 11px;
  left: 3px;
  border-radius: 2px;
}
.c-menu-expand span:before, .c-menu-expand span:after {
  content: "";
  background-color: #666;
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  transition: all 0.4s ease;
  border-radius: 2px;
}
.c-menu-expand span:before {
  transform: translateY(-6px);
  width: 100%;
}
.c-menu-expand span:after {
  transform: translateY(6px);
  width: 100%;
}
.c-menu-expand.active span {
  background-color: transparent !important;
  left: 10px;
  top: 19px;
}
.c-menu-expand.active span:before, .c-menu-expand.active span:after {
  background-color: #f8fffc;
}
.c-menu-expand.active span:before {
  transform: translateY(0px) rotate(45deg);
  width: 20px;
}
.c-menu-expand.active span:after {
  transform: translateY(0px) rotate(-45deg);
  width: 20px;
}

.c-sologan {
  display: none;
  color: #333303;
  border-radius: 3px;
}
.c-sologan p {
  font-weight: 400;
  font-size: 15px;
  margin: 0;
}
.c-sologan [class*=icon] {
  margin-right: 5px;
  margin-top: -2px;
}

.c-weather {
  display: none;
}
.c-weather img {
  margin-left: 5px;
  max-width: 24px;
  max-height: 24px;
}

.c-search-expand {
  display: none;
  padding: 0;
  background-color: transparent;
  width: 42px;
  height: 42px;
  border: 1px solid #E5E5E5;
  text-align: center;
  line-height: 40px;
  border-radius: 3px;
}

.c-search-wrapper {
  background: #fff;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 45px;
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  padding: 4px 35px 0 15px;
}
.c-search-wrapper.active {
  z-index: 10;
  visibility: visible;
  opacity: 1;
}

.c-search {
  border: 1px solid #ddd;
  border-radius: 18px;
}
.c-search .c-search__inner {
  position: relative;
  z-index: 1;
  padding-left: 10px;
  padding-right: 38px;
}
.c-search .form-control {
  background-color: transparent;
  border: none;
  height: 36px;
  font-size: 14px;
  padding: 4px 0;
}
.c-search .c-search__btn {
  position: absolute;
  z-index: 2;
  top: 0;
  right: 0;
  padding: 0;
  text-align: center;
  border: none;
  width: 38px;
  height: 34px;
  line-height: 28px;
  background: transparent;
  border-radius: 18px 0 0 18px;
}
.c-search .c-search__btn:focus {
  outline: none;
}
.c-search .c-search__close {
  position: absolute;
  z-index: 2;
  top: 0;
  right: -34px;
  width: 36px;
  height: 36px;
  line-height: 34px;
  padding: 0;
  text-align: center;
  border: none;
  background: transparent;
  border-radius: 0 18px 18px 0;
}
.c-search .c-search__close:focus {
  outline: none;
}
.c-search .c-search__close .icon12-close {
  margin-top: -1px;
}

.c-header-menu > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.c-header-menu > ul > li {
  position: relative;
  z-index: 1;
}
.c-header-menu > ul > li:after {
  content: "";
  position: absolute;
  z-index: 2;
  top: 5px;
  bottom: 5px;
  right: 0;
  width: 1px;
  background-color: #ddd;
}
.c-header-menu > ul > li:last-child:after {
  display: none;
}
.c-header-menu > ul > li > a {
  text-decoration: none;
  font-weight: 600;
  font-size: 13px;
  color: #666;
  padding: 0 10px;
}

.c-header-top {
  display: none;
  background-color: #F5F5F5;
  position: relative;
  z-index: 20;
  height: 42px;
}

.c-header-top-box {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.c-header-top-box__left {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.c-header-top-box__left > * {
  margin-right: 10px;
}
.c-header-top-box__left > *:last-child {
  margin-right: 0;
}
.c-header-top-box__left #widget-weather {
  border: none;
  height: 38px;
  line-height: 36px;
}
.c-header-top-box__right {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
}
.c-header-top-box__right > * {
  margin-left: 10px;
}
.c-header-top-box__right > *:first-child {
  margin-left: 0;
}

.c-hotline {
  color: #333303;
}
.c-hotline a {
  text-decoration: none;
  color: #333303;
}


/*---------- end header css ----------*/
/*---------- menu css ----------*/
.c-dropdown-menu {
  background-color: #fff;
  position: absolute;
  border: 1px solid #ddd;
  z-index: 2;
  display: none;
  left: 0;
  top: 100%;
  width: 180px;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.c-dropdown-menu > ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.c-dropdown-menu > ul > li.c-menu-child > a {
  position: relative;
  z-index: 1;
}
.c-dropdown-menu > ul > li > a {
  display: block;
  text-decoration: none;
  color: #333303;
  font-size: 14px;
  padding: 8px 15px;
  text-align: left;
}
.c-dropdown-menu > ul > li > a .c-submenu-btn {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  width: 40px;
  height: 40px;
  padding: 0;
  text-align: center;
  line-height: 40px;
}
.c-dropdown-menu > ul > li.is-active > a, .c-dropdown-menu > ul > li.active > a {
  color: #016e39;
}
.c-dropdown-menu.is-right {
  left: auto;
  right: 0;
}

.c-menu-outer {
  z-index: 100;
  background-color: #016e39;
  display: none;
  border-bottom: 2px solid #cdcdcd;
}
.c-menu-outer .c-search-expand {
  display: none;
}

.c-menu > ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.c-menu > ul > li {
}
.c-menu > ul > li > a {
  text-decoration: none;
  display: block;
  color: #fff;
  padding: 0 10px;
  white-space: nowrap;
  height: 42px;
  font-size: 14px;
  line-height: 42px;
  font-weight: 500;
  text-transform: uppercase;
}
.c-menu > ul > li > a img {
  height: 24px;
  margin-top: -2px;
}
.c-menu > ul > li > a [class*=icon] {
  margin-top: -2px;
}
.c-menu > ul > li .c-search-expand {
  position: static;
}
.c-menu > ul > li .c-menu-expand {
  position: relative;
}
.c-menu > ul > li .c-menu-expand span {
  background-color: #fff;
}
.c-menu > ul > li .c-menu-expand span:before {
  background-color: #fff;
}
.c-menu > ul > li .c-menu-expand span:after {
  background-color: #fff;
}
.c-menu > ul > li:first-child {
  position: relative;
  margin-left: 1px;
}
.c-menu > ul > li:first-child:before {
}
.c-menu > ul > li:last-child {
  position: relative;
}
.c-menu > ul > li:last-child:after {
  top: 0;
  right: -2px;
  width: 1px;
  height: 100%;
  background-color: rgba(255, 255, 255, 0.05);
}
.c-menu > ul > li.is-home > a img {
  display: none;
}
.c-menu > ul > li.is-active > a, .c-menu > ul > li.active > a {
  color: rgba(255, 255, 255, 0.8);
}


/*---------- end menu css ----------*/
/*---------- footer css ----------*/
.l-footer {
  position: relative;
  z-index: 3;
}

.c-footer-main {
  padding-top: 20px;
  padding-bottom: 20px;
}
.c-footer-main .b-maincontent {
  line-height: 1.68;
  font-size: 13px;
  text-align: left;
  font-family: "Roboto", sans-serif;
}
.c-footer-main .b-maincontent p {
  font-size: 11px;
  color: #000;
  margin-bottom: 0;
  margin-top: 0;
}
.c-footer-main .b-maincontent p:last-child {
  margin-bottom: 0;
}
.c-footer-main .b-maincontent p [class*=icon] {
  margin-right: 5px;
  margin-top: -2px;
}
.c-footer-main .b-maincontent p.is-big {
  font-size: 12px;
}
.c-footer-main .b-maincontent a {
  color: #000;
  text-decoration: none;
}
.c-footer-main .b-maincontent a:hover {
  color: #016e39;
}
.c-footer-main .b-maincontent .c-footer-line {
  margin-top: 10px;
  margin-bottom: 10px;
}

.c-footer-col {
  margin-bottom: 15px;
  flex-grow: 1;
}
.c-footer-col:last-child {
  margin-bottom: 0;
}

.c-footer-row {
  margin-bottom: 15px;
}
.c-footer-row:last-child {
  margin-bottom: 0;
}

.c-footer-line {
  height: 1px;
  background-color: #F1F0F0;
}

.c-footer-space {
  height: 13px;
}

.c-social {
  margin-bottom: 15px;
}
.c-social label {
  text-align: center;
  font-size: 12px;
  display: block;
  margin: 0 0 10px;
  color: #666;
}
.c-social ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.c-social ul li {
  margin-left: 5px;
  margin-right: 5px;
}
.c-social ul li a {
  display: block;
  min-width: 36px;
  height: 36px;
  line-height: 34px;
  text-decoration: none;
  text-align: center;
}

.c-footer-logo {
  margin-bottom: 15px;
  text-align: center;
}
.c-footer-logo img {
  width: auto;
  height: 42px;
  max-width: 100%;
}
.c-footer-logo__text {
  font-size: 18px;
  font-weight: 700;
  color: #666;
  line-height: 1.4;
  text-align: center;
  margin-top: 10px;
  text-transform: uppercase;
}

.c-footer-menu {
  margin-bottom: 5px;
}
.c-footer-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.c-footer-menu ul li {
  margin-bottom: 10px;
  border-right: 1px solid #E5E5E5;
}
.c-footer-menu ul li:last-child {
  border-right: none;
}
.c-footer-menu ul li a {
  display: block;
  color: #333303;
  font-weight: 700;
  text-decoration: none;
  padding: 0 10px;
  line-height: 1.3;
}

.c-copyright {
  font-size: 12px;
  line-height: 1.68;
  font-family: "Roboto", sans-serif;;
  margin-top: 15px;
}
.c-copyright:first-child {
  margin-top: 0;
}


/*---------- end footer css ----------*/
/*---------- mega menu css ----------*/
.c-menu-more {
  width: 40px;
  height: 40px;
  cursor: pointer;
  position: relative;
}
.c-menu-more .dot {
  width: 4px;
  height: 4px;
  background-color: #fff;
  border-radius: 50%;
  transition: all 0.3s ease 0s;
  position: absolute;
  top: 50%;
  left: 50%;
  margin-left: -2px;
  margin-top: -2px;
}
.c-menu-more .dot:before {
  content: "";
  left: -8px;
  width: 4px;
  height: 4px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  margin-top: -2px;
  transition: all 0.3s ease;
}
.c-menu-more .dot:after {
  left: 8px;
  content: "";
  width: 4px;
  height: 4px;
  background: #fff;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  margin-top: -2px;
  transition: all 0.3s ease;
}
.c-menu-more .dot:nth-child(n+2) {
  display: none;
}
.c-menu-more.active .dot {
  background: transparent;
}
.c-menu-more.active .dot:before {
  width: 17px;
  height: 2px;
  left: -5px;
  border-radius: 0;
  transition-delay: 0.2s;
  transform: translate(-15%, 25%) rotate(135deg);
}
.c-menu-more.active .dot:after {
  height: 17px;
  width: 2px;
  border-radius: 0;
  transition-delay: 0.2s;
  transform: translate(-390%, -44%) rotate(135deg);
}
.c-menu-more.is-hamburger .dot {
  width: 16px;
  height: 2px;
  margin-left: -8px;
}
.c-menu-more.is-hamburger .dot:before {
  width: 16px;
  height: 2px;
  margin-top: -6px;
  left: 0;
}
.c-menu-more.is-hamburger .dot:after {
  width: 16px;
  height: 2px;
  margin-top: 4px;
  left: 0;
}
.c-menu-more.is-hamburger.active .dot:before {
  width: 17px;
  margin-top: -2px;
  left: 2px;
}
.c-menu-more.is-hamburger.active .dot:after {
  width: 17px;
  margin-top: -2px;
  left: auto;
  transform: translate(0, 0) rotate(-135deg);
}

.c-mega-menu {
  padding: 20px 0;
  background: #fafafa;
  z-index: -1;
  visibility: hidden;
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow-x: hidden;
  overflow-y: auto;
  transition: all 0.2s ease;
}
.c-mega-menu .c-mobile-user {
  margin-top: -20px;
  margin-bottom: 20px;
}
.c-mega-menu.active {
  opacity: 1;
  z-index: 101;
  visibility: visible;
}
.c-mega-menu__close {
  position: absolute;
  z-index: 2;
  top: 8px;
  left: 10px;
  border: none;
  background: transparent;
  width: 31px;
  height: 31px;
}
.c-mega-menu__close span {
  background-color: transparent;
  font-size: 0;
  width: 26px;
  height: 2px;
  position: absolute;
  top: 15px;
  left: 5px;
  border-radius: 2px;
}
.c-mega-menu__close span:before, .c-mega-menu__close span:after {
  content: "";
  background-color: #333303;
  position: absolute;
  left: 0;
  width: 20px;
  height: 100%;
  transition: all 0.4s ease;
  border-radius: 2px;
}
.c-mega-menu__close span:before {
  transform: translateY(0px) rotate(45deg);
}
.c-mega-menu__close span:after {
  transform: translateY(0px) rotate(-45deg);
}

.c-category-menu {
  margin: 0 0 15px;
  padding: 25px 0 0;
}
.c-category-menu:last-child {
  margin: 0;
}
.c-category-menu > ul {
  list-style: none;
  margin: 0 -10px;
  padding: 0;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  flex-wrap: wrap;
}
.c-category-menu > ul > li {
  padding-bottom: 20px;
  padding-left: 10px;
  padding-right: 10px;
  position: relative;
  z-index: 1;
  width: 50%;
  margin-bottom: 10px;
}
.c-category-menu > ul > li:after {
  content: "";
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 10px;
  right: 10px;
  height: 1px;
  background-color: #ddd;
}
.c-category-menu > ul > li > a {
  font-weight: 700;
  text-decoration: none;
  position: relative;
  z-index: 3;
  display: block;
  color: #333303;
  font-size: 16px;
  line-height: 1.3;
  text-transform: uppercase;
}
.c-category-menu > ul > li > ul {
  list-style: none;
  margin: 5px 0 0;
  padding: 0;
}
.c-category-menu > ul > li > ul > li > a {
  color: #333303;
  font-size: 14px;
  text-decoration: none;
  display: block;
  padding: 3px 0;
  line-height: 1.3;
}

.c-category-flex {
  margin-top: -20px;
}
.c-category-flex .c-search-wrapper {
  position: static;
  visibility: visible;
  opacity: 1;
  margin-left: -15px;
  margin-right: -15px;
  padding: 5px 15px 0 45px;
  border-bottom: 1px solid #ddd;
  height: 48px;
}
.c-category-flex .c-header-menu {
  display: block;
  border-bottom: 1px solid #E5E5E5;
  background-color: #ececec;
  margin-top: 0;
  margin-left: -15px;
  margin-right: -15px;
  padding: 15px 15px 0;
}
.c-category-flex .c-header-menu > ul {
  flex-wrap: wrap;
  margin: 0 -10px;
}
.c-category-flex .c-header-menu > ul > li {
  width: 50%;
  margin-right: 0;
  padding-bottom: 15px;
  padding-left: 10px;
  padding-right: 10px;
}
.c-category-flex .c-header-menu > ul > li > a {
  font-size: 12px;
}

.c-local-tags label {
  display: block;
  margin: 0 0 10px;
  font-weight: 700;
  font-size: 16px;
}
.c-local-tags ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  flex-wrap: wrap;
}
.c-local-tags ul li {
  margin-right: 7px;
  margin-bottom: 7px;
}
.c-local-tags ul li a {
  display: block;
  text-decoration: none;
  color: #666;
  background-color: #fff;
  padding: 3px 8px;
  border: 1px solid #ddd;
}

/*---------- end mega menu css ----------*/
/*---------- gotop css ----------*/
.icon24-angle-top {
  background-image: url("../images/icons/icon24-angle-top.png");
}

.c-gotop {
  cursor: pointer;
  width: 32px;
  height: 32px;
  line-height: 30px;
  background: rgba(0, 0, 0, 0.33);
  text-align: center;
  position: fixed;
  z-index: 97;
  right: 15px;
  bottom: 60px;
  display: none;
  border-radius: 100%;
  transition: all 0.2s ease;
}
.c-gotop [class*=icon24] {
  width: 16px;
  height: 16px;
  background-size: contain;
}
.c-gotop:hover {
  background-color: #016e39;
}

/*---------- end gotop css ----------*/
@font-face {
  font-family: "CSB";
  src: url("../fonts/ConthraxSb-Regular.eot");
  src: url("../fonts/ConthraxSb-Regular.eot?#iefix") format("embedded-opentype"), url("../fonts/ConthraxSb-Regular.woff") format("woff"), url("../fonts/ConthraxSb-Regular.ttf") format("truetype"), url("../fonts/ConthraxSb-Regular.svg#ConthraxSb-Regular") format("svg");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}
/*---------- copyright css ----------*/
.c-powered {
  padding: 8px 0;
  background: #ececec;
}
.c-powered p {
  text-align: center;
  color: #666;
  font-size: 11px;
  position: relative;
  z-index: 4;
  margin-bottom: 0;
}
.c-powered a {
  text-decoration: none;
  color: #666;
  font-weight: 700;
  font-family: "CSB";
}
.c-powered span {
  color: #14468f;
  font-weight: 700;
  font-family: "CSB";
}

.c-footer-link {
  margin-bottom: 8px;
}
.c-footer-link label {
  text-transform: uppercase;
  font-weight: 700;
  font-family: "Roboto", sans-serif;;
  text-align: center;
  display: block;
  margin-bottom: 5px;
}


/*---------- end copyright css ----------*/
/*---------- banner css ----------*/
.c-header-banner {
  background-color: #F5F5F5;
}

.c-banner {
  max-width: 100%;
  margin-left: auto;
  margin-right: auto;
}
.c-banner .c-banner-item:last-child {
  margin-bottom: 0;
}

.c-banner-item {
  margin-bottom: 10px;
  margin-left: auto;
  margin-right: auto;
}
.c-banner-item:last-child {
  margin-bottom: 0;
}
.c-banner-item__inner {
  position: relative;
}
.c-banner-item__box {
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.c-banner-item img {
  width: 100%;
  height: auto;
}
.c-banner-item.is-160 {
  max-width: 160px;
}
.c-banner-item.is-160x600 {
  max-width: 160px;
}
.c-banner-item.is-160x600 .c-banner-item__inner {
  padding-top: 375%;
}
.c-banner-item.is-160x600 .c-banner-item__box {
  position: absolute;
}
.c-banner-item.is-300 {
  max-width: 300px;
}
.c-banner-item.is-300x50 {
  max-width: 300px;
}
.c-banner-item.is-300x50 .c-banner-item__inner {
  padding-top: 16.6666666667%;
}
.c-banner-item.is-300x50 .c-banner-item__box {
  position: absolute;
}
.c-banner-item.is-300x60 {
  max-width: 300px;
}
.c-banner-item.is-300x60 .c-banner-item__inner {
  padding-top: 20%;
}
.c-banner-item.is-300x60 .c-banner-item__box {
  position: absolute;
}
.c-banner-item.is-300x90 {
  max-width: 300px;
}
.c-banner-item.is-300x90 .c-banner-item__inner {
  padding-top: 30%;
}
.c-banner-item.is-300x90 .c-banner-item__box {
  position: absolute;
}
.c-banner-item.is-300x100 {
  max-width: 300px;
}
.c-banner-item.is-300x100 .c-banner-item__inner {
  padding-top: 33.3333333333%;
}
.c-banner-item.is-300x100 .c-banner-item__box {
  position: absolute;
}
.c-banner-item.is-300x200 {
  max-width: 300px;
}
.c-banner-item.is-300x200 .c-banner-item__inner {
  padding-top: 66.6666666667%;
}
.c-banner-item.is-300x200 .c-banner-item__box {
  position: absolute;
}
.c-banner-item.is-300x250 {
  max-width: 300px;
}
.c-banner-item.is-300x250 .c-banner-item__inner {
  padding-top: 83.3333333333%;
}
.c-banner-item.is-300x250 .c-banner-item__box {
  position: absolute;
}
.c-banner-item.is-300x600 {
  max-width: 300px;
}
.c-banner-item.is-300x600 .c-banner-item__inner {
  padding-top: 200%;
}
.c-banner-item.is-300x600 .c-banner-item__box {
  position: absolute;
}
.c-banner-item.is-320 {
  max-width: 320px;
}
.c-banner-item.is-320x50 {
  max-width: 320px;
}
.c-banner-item.is-320x50 .c-banner-item__inner {
  padding-top: 15.625%;
}
.c-banner-item.is-320x50 .c-banner-item__box {
  position: absolute;
}
.c-banner-item.is-468 {
  max-width: 468px;
}
.c-banner-item.is-468x60 {
  max-width: 468px;
}
.c-banner-item.is-468x60 .c-banner-item__inner {
  padding-top: 12.8205128205%;
}
.c-banner-item.is-468x60 .c-banner-item__box {
  position: absolute;
}
.c-banner-item.is-468x90 {
  max-width: 468px;
}
.c-banner-item.is-468x90 .c-banner-item__inner {
  padding-top: 19.2307692308%;
}
.c-banner-item.is-468x90 .c-banner-item__box {
  position: absolute;
}
.c-banner-item.is-580 {
  max-width: 580px;
}
.c-banner-item.is-728 {
  max-width: 728px;
}
.c-banner-item.is-728x90 {
  max-width: 728px;
}
.c-banner-item.is-728x90 .c-banner-item__inner {
  padding-top: 12.3626373626%;
}
.c-banner-item.is-728x90 .c-banner-item__box {
  position: absolute;
}
.c-banner-item.is-960 {
  max-width: 960px;
}
.c-banner-item.is-960x90 {
  max-width: 960px;
}
.c-banner-item.is-960x90 .c-banner-item__inner {
  padding-top: 9.375%;
}
.c-banner-item.is-960x90 .c-banner-item__box {
  position: absolute;
}
.c-banner-item.is-970 {
  max-width: 970px;
}
.c-banner-item.is-970x90 {
  max-width: 970px;
}
.c-banner-item.is-970x90 .c-banner-item__inner {
  padding-top: 9.2783505155%;
}
.c-banner-item.is-970x90 .c-banner-item__box {
  position: absolute;
}
.c-banner-item.is-980 {
  max-width: 980px;
}
.c-banner-item.is-980x90 {
  max-width: 980px;
}
.c-banner-item.is-980x90 .c-banner-item__inner {
  padding-top: 9.1836734694%;
}
.c-banner-item.is-980x90 .c-banner-item__box {
  position: absolute;
}
.c-banner-item.is-1920x250 {
  max-width: 1920px;
}
.c-banner-item.is-1920x250 .c-banner-item__inner {
  padding-top: 13.0208333333%;
}
.c-banner-item.is-1920x250 .c-banner-item__box {
  position: absolute;
}
.c-banner-item.is-custom-size {
  text-align: center;
}
.c-banner-item.is-custom-size img {
  width: auto;
  max-width: 100%;
}

.c-banner-center > ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.c-banner-center > ul > li {
  padding-bottom: 20px;
}
.c-banner-center > ul > li:last-child {
  padding-bottom: 0;
}
.c-banner-center.is-margin-bottom {
  margin-bottom: 20px;
}
.c-banner-center.is-margin-bottom:last-child {
  margin-bottom: 0;
}


/*---------- end banner css ----------*/
/*---------- banner section css ----------*/
.c-banner-section:first-child {
  margin-top: 0 !important;
}
.c-banner-section:last-child {
  margin-bottom: 0 !important;
}
.c-banner-section__title {
  text-align: center;
  font-size: 11px;
  color: #999;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif !important;
  display: none;
  padding: 5px 0;
}
.c-banner-section__title span {
  color: #333;
  margin-right: 4px;
  line-height: 1;
  display: inline-block;
  position: relative;
  z-index: 1;
  font-weight: 700;
}
.c-banner-section__title span:before {
  content: "";
  width: 8px;
  height: 8px;
  background: #999;
  position: absolute;
  z-index: -1;
  left: -3px;
  top: -1px;
}
.c-banner-section__content {
  text-align: center;
}
.c-banner-section__content > * {
  margin-left: auto;
  margin-right: auto;
}
.c-banner-section__content .c-banner-item {
  margin-left: auto;
  margin-right: auto;
}
.c-banner-section__content a {
  display: block;
  text-align: center;
}
.c-banner-section__content img {
  max-width: 100%;
  display: inline;
}
.c-banner-section:has(img), .c-banner-section:has(iframe:not([height="0"])) {
  background-color: #F5F5F5;
  margin-bottom: 20px;
  margin-top: 20px;
}
.c-banner-section:has(img) .c-banner-section__title, .c-banner-section:has(iframe:not([height="0"])) .c-banner-section__title {
  display: block;
}
.c-banner-section:has(iframe[height="1"]) {
  background-color: transparent;
  margin-bottom: 0;
  margin-top: 0;
}
.c-banner-section:has(iframe[height="1"]) .c-banner-section__title {
  display: none;
}
.c-banner-section:has(iframe[style="height: 1px !important; max-height: 1px !important; max-width: 1px !important; width: 1px !important;"]) {
  background-color: transparent;
  margin-bottom: 0;
  margin-top: 0;
}
.c-banner-section:has(iframe[style="height: 1px !important; max-height: 1px !important; max-width: 1px !important; width: 1px !important;"]) .c-banner-section__title {
  display: none;
}

.entry:not(.longform) .c-banner-section .c-banner-section__title {
  padding: 5px 0;
}


/*---------- end banner section css ----------*/
/*---------- banner over css ----------*/
.c-banner-over {
  position: fixed;
  z-index: 10000;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
  background-color: #000;
  display: none;
}
.c-banner-over__close {
  position: absolute;
  z-index: 2;
  top: 15px;
  right: 15px;
  cursor: pointer;
  color: #fff;
  font-size: 14px;
  font-weight: 400;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  padding: 5px 10px;
  background-color: rgba(0, 0, 0, 0.4);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 4px;
}
.c-banner-over__close span {
  font-weight: 700;
  margin-right: 4px;
}
.c-banner-over__content {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.c-banner-over__content > * {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
}
.c-banner-over__content > iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.c-banner-over__content > a {
  width: 100%;
}
.c-banner-over__content a {
  display: block;
}
.c-banner-over__content img {
  width: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-banner-over:has(img), .c-banner-over:has(iframe:not([height="0"])) {
  display: block;
}

/*---------- end banner over css ----------*/
/*---------- banner bottom css ----------*/
.c-banner-bottom-fixed {
  position: fixed;
  z-index: 200;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  display: none;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  transition: all 0.2s ease;
}
.c-banner-bottom-fixed.h-show-mobile {
  display: flex;
}
.c-banner-bottom-fixed.is-mobile {
  display: flex;
}
.c-banner-bottom-fixed__inner {
  max-width: 100%;
  max-height: 100vh;
  height: auto;
  position: relative;
}
.c-banner-bottom-fixed__content {
  max-width: 100%;
}
.c-banner-bottom-fixed__content .c-banner-item {
  margin-bottom: 0;
}
.c-banner-bottom-fixed__close {
  position: absolute;
  z-index: 2;
  top: -24px;
  right: 0;
  cursor: pointer;
  color: #fff;
  font-size: 12px;
  font-weight: 400;
  font-family: Arial, "Helvetica Neue", Helvetica, sans-serif;
  padding: 0 5px;
  min-width: 24px;
  line-height: 24px;
  text-align: center;
  background-color: rgba(0, 0, 0, 0.4);
  display: none;
}
.c-banner-bottom-fixed__close span {
  font-weight: 700;
}
.c-banner-bottom-fixed:has(img) .c-banner-bottom-fixed__close, .c-banner-bottom-fixed:has(iframe:not([height="0"])) .c-banner-bottom-fixed__close {
  display: block;
}

/*---------- end banner after header css ----------*/
/*---------- banner inpage css ----------*/
.c-banner-inpage {
  height: 1px;
  overflow: hidden;
  visibility: hidden;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
}
.c-banner-inpage .oneads {
  text-align: center;
}


/*---------- end banner inpage css ----------*/
/*---------- banner background css ----------*/
.c-banner-bg {
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  display: none;
  overflow: hidden;
}
.c-banner-bg__img {
  width: 100%;
  height: 100%;
  background-position: top center;
  background-repeat: no-repeat;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.c-banner-bg__img img {
  max-width: none;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.c-banner-bg > a {
  width: 100%;
  height: 100%;
  background-position: top center;
  background-repeat: no-repeat;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}
.c-banner-bg > a img {
  max-width: none;
  -o-object-fit: cover;
     object-fit: cover;
  width: 100%;
}
.c-banner-bg iframe {
  width: 100%;
  height: 100%;
}
.c-banner-bg.is-dark {
  background-color: #000;
}
.c-banner-bg.is-frame {
  background-color: #F5F5F5;
}

/*---------- end banner background css ----------*/
/*---------- weather css ----------*/
#widget-weather {
  display: block;
  position: relative;
  height: 42px;
  line-height: 40px;
  width: auto;
  padding: 0 5px 0 15px;
  border-radius: 4px;
}

#widget-weather.expanded .current-city {
  list-style: none;
  margin: 0;
  padding: 0;
}

#widget-weather.expanded .current-city i,
#widget-weather.expanded .current-city:hover i {
  transform: rotate(180deg) scale(1);
  font-size: 13px;
  margin-left: 8px;
}

#widget-weather.expanded .filter {
  display: block;
}

#widget-weather .current-city {
  cursor: pointer;
  list-style: none;
  margin: 0;
  padding: 0;
}

#widget-weather .current-city:hover i {
  transform: scale(1);
  font-size: 13px;
  margin-left: 8px;
}

#widget-weather .current-city li {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  width: 100%;
  height: 40px;
  text-align: right;
  color: #aaa;
}

#widget-weather .current-city img {
  height: 30px;
  width: auto;
  margin-left: 5px;
}

#widget-weather .current-city em {
  font-style: normal;
  color: #000;
}

#widget-weather .current-city span {
  color: #000;
}

#widget-weather .current-city strong {
  display: inline-block;
  margin-right: 5px;
  color: #007E00;
}

#widget-weather .current-city i {
  font-size: 0;
  transition: transform 0.3s ease, font-size 0.3s ease;
  transform: scale(0);
}

#widget-weather .current-city:hover strong {
  color: #016e39;
}

#widget-weather .filter {
  display: none;
  position: absolute;
  z-index: 9;
  top: calc(100% + 7px);
  right: 0;
  border-radius: 5px;
  box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.4);
  background-color: #ffffff;
  min-width: 265px;
  max-height: 400px;
  overflow: hidden;
  animation: fadeIn 0.3s ease;
}

#widget-weather .filter ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

#widget-weather .filter input {
  background-color: #e8e8e8;
  padding: 6px 10px;
  width: 100%;
  border: none;
  font-size: 14px;
  border-top-left-radius: 5px;
  border-top-right-radius: 5px;
}
#widget-weather .filter input:focus {
  outline: none;
}

#widget-weather .filter .city-list {
  width: 100%;
  overflow-y: auto;
  max-height: 355px;
}

#widget-weather .filter .city-list .choosed-city,
#widget-weather .filter .city-list .others-city {
  padding: 11px 0;
}

#widget-weather .filter .city-list .choosed-city p,
#widget-weather .filter .city-list .others-city p {
  font-family: Arial;
  font-size: 12px;
  font-weight: bold;
  color: #797979;
  padding: 0 10px;
  margin: 0;
}

#widget-weather .filter .city-list .choosed-city ul li,
#widget-weather .filter .city-list .others-city ul li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-family: Arial;
  font-size: 12px;
  color: #000000;
  padding: 10px;
  border-bottom: 1px solid #eeeeee;
}

#widget-weather .filter .city-list .choosed-city ul li span,
#widget-weather .filter .city-list .others-city ul li span {
  display: flex;
  font-family: Arial;
  font-size: 12px;
  color: #444444;
}

#widget-weather .filter .city-list .choosed-city ul li span img,
#widget-weather .filter .city-list .others-city ul li span img {
  height: 30px;
  margin-left: 7px;
}

#widget-weather .filter .city-list .others-city ul li {
  cursor: pointer;
}

#widget-weather .filter .city-list .others-city ul li:hover {
  background-color: #e8e8e8;
}

#widget-weather .filter .city-list .others-city ul li:last-child {
  border-bottom: none;
}

#widget-weather .filter .city-list .others-city .no-result {
  font-family: Arial;
  font-size: 12px;
  color: #797979;
  padding: 10px;
  text-align: center;
  font-style: italic;
}

.ti-arrow-circle-down {
  width: 12px;
  height: 12px;
  display: inline-block;
  vertical-align: middle;
  padding: 1px;
  line-height: 0;
  border: 1px solid #ddd;
  border-radius: 50%;
}
.ti-arrow-circle-down:after {
  content: "";
  width: 8px;
  height: 8px;
  background-image: url("../images/icons/icon8-down.svg");
  background-position: center center;
  background-repeat: no-repeat;
  display: inline-block;
  vertical-align: middle;
}

.c-weather-widget {
  background-color: #F7F7F7;
  padding: 12px 0;
  position: relative;
  z-index: 1;
}
.c-weather-widget__link {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  cursor: pointer;
}
.c-weather-widget .container {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.c-weather-widget__time {
  color: #666;
  font-size: 12px;
}
.c-weather-widget__time b {
  color: #000;
}
.c-weather-widget__time p {
  margin-bottom: 0 !important;
}
.c-weather-widget__location {
  font-size: 12px;
}
.c-weather-widget__location img {
  height: 20px;
  width: auto;
  margin-left: 5px;
}
.c-weather-widget__location em {
  font-style: normal;
  color: #000;
}
.c-weather-widget__location span {
  color: #000;
}
.c-weather-widget__location strong {
  display: inline-block;
  margin-right: 5px;
  color: #000;
}

/*---------- end weather css ----------*/
/*---------- header sticky css ----------*/
.c-header-sticky {
  z-index: -1;
  position: fixed;
  top: -52px;
  left: 0;
  right: 0;
  background: #fff;
  height: 52px;
  border-bottom: 1px solid #ddd;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -moz-opacity: 0;
  -khtml-opacity: 0;
  opacity: 0;
}
.c-header-sticky .c-logo {
  height: 51px;
  line-height: 48px;
  margin: 0 30px 0 0;
  float: left;
  padding-top: 0;
}
.c-header-sticky .c-logo:after {
  display: none;
}
.c-header-sticky .c-logo img {
  max-height: 30px;
}
.c-header-sticky .c-share-scroll {
  float: right;
  position: static;
  width: auto;
  margin-left: 0;
  padding-top: 7px;
}
.c-header-sticky .c-share-scroll > ul > li {
  float: left;
  margin-bottom: 0;
  margin-left: 10px;
}
.c-header-sticky .c-share-scroll > ul > li.li-line {
  padding-left: 10px;
  position: relative;
  z-index: 1;
}
.c-header-sticky .c-share-scroll > ul > li.li-line:before {
  content: "";
  position: absolute;
  z-index: 2;
  left: 0;
  top: 9px;
  width: 1px;
  height: 15px;
  background-color: #ddd;
}
.c-header-sticky .c-share-scroll > ul > li.li-line > a {
  border: 1px solid #ddd;
  line-height: 30px;
  border-radius: 50%;
}

.c-sticky-cat {
  float: left;
  height: 50px;
  line-height: 48px;
  position: relative;
  z-index: 1;
  margin-right: 15px;
  padding-right: 15px;
}
.c-sticky-cat:after {
  content: "";
  position: absolute;
  z-index: 2;
  right: 0;
  width: 1px;
  height: 24px;
  top: 12px;
  background: #ddd;
}
.c-sticky-cat a {
  font-weight: 700;
  color: #333303;
  text-decoration: none;
  display: block;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 120px;
}

.c-sticky-title {
  float: left;
  height: 50px;
  line-height: 48px;
  font-weight: 700;
  color: #333303;
  max-width: calc(100% - 430px);
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}

.c-sticky-mobile {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  height: 52px;
}

.c-sticky-share > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.c-sticky-share > ul > li {
  margin-left: 12px;
}
.c-sticky-share > ul > li:first-child {
  margin-left: 0;
}
.c-sticky-share > ul > li > button {
  padding: 0;
  border: none;
  background-color: transparent;
}
.c-sticky-share > ul > li > button:focus {
  outline: none;
}
.c-sticky-share > ul > li > a, .c-sticky-share > ul > li > button {
  text-decoration: none;
  position: relative;
  z-index: 1;
  display: block;
}
.c-sticky-share > ul > li > a.is-font-link, .c-sticky-share > ul > li > button.is-font-link {
  background-color: #ececec;
  padding: 5px 12px;
  border-radius: 18px;
}
.c-sticky-share > ul > li > a .badge, .c-sticky-share > ul > li > button .badge {
  position: absolute;
  z-index: 2;
  top: -5px;
  right: -8px;
}
.c-sticky-share > ul > li > a .is-text, .c-sticky-share > ul > li > button .is-text {
  font-size: 12px;
  color: #666;
  margin-left: 5px;
}
.c-sticky-share > ul > li.active .c-font-box-horizontal {
  display: flex;
}

.c-font-box-horizontal {
  padding: 0 37px 0 15px;
  position: absolute;
  bottom: 51px;
  left: 0;
  right: 0;
  z-index: 200;
  flex-direction: row-reverse;
  align-items: center;
  height: 50px;
  justify-content: space-between;
  background-color: #fff;
  display: none;
  box-shadow: 0 -2px 4px rgba(0, 0, 0, 0.15);
}
.c-font-box-horizontal span {
  font-size: 12px;
  color: #666;
}
.c-font-box-horizontal span.plus, .c-font-box-horizontal span.minus, .c-font-box-horizontal span.font {
  cursor: pointer;
}
.c-font-box-horizontal__close {
  position: absolute;
  z-index: 2;
  top: 50%;
  right: 8px;
  margin-top: -12px;
  width: 24px;
  height: 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  padding: 0;
  border: none;
}
.c-font-box-horizontal__close:focus {
  outline: none;
}


/*---------- end header sticky css ----------*/
/*---------- components css ----------*/
/*box*/
.c-box {
  margin-bottom: 25px;
}
.c-box:last-child {
  margin-bottom: 0;
}
.c-box .c-box__title {
  padding-bottom: 6px;
  border-bottom: 1px solid #000;
  margin-bottom: 15px;
}
.c-box .c-box__title .c-box__title__name {
  display: inline-block;
  vertical-align: top;
  text-transform: uppercase;
  font-weight: 700;
  color: #000;
  font-size: 20px;
  line-height: 1.3;
  font-family: "Roboto", sans-serif;;
  margin-bottom: 0;
}
.c-box .c-box__title .c-box__title__name [class*=icon] {
  margin-right: 5px;
  margin-top: -2px;
}
.c-box .c-box__title .c-box__title__name a {
  text-decoration: none;
  color: #000;
}
.c-box .c-box__title .c-box__title__name.is-small {
  font-size: 16px !important;
}
.c-box .c-box__title a.c-box__title__name {
  text-decoration: none;
}
.c-box .c-box__title .c-box__title__cat {
  overflow-y: hidden;
  overflow-x: auto;
  padding-top: 12px;
  margin-right: -15px;
}
.c-box .c-box__title .c-box__title__cat ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.c-box .c-box__title .c-box__title__cat ul li {
  margin-right: 10px;
}
.c-box .c-box__title .c-box__title__cat ul li:last-child {
  margin-right: 0;
}
.c-box .c-box__title .c-box__title__cat ul li a {
  display: block;
  text-decoration: none;
  color: #666;
  font-size: 13px;
  font-family: "Roboto", sans-serif;;
  text-transform: uppercase;
  white-space: nowrap;
}
.c-box .c-box__title .c-box__title__cat ul li a [class*=icon] {
  margin-right: 5px;
  margin-top: -1px;
}
.c-box .c-box__title .c-box__title__cat.scrollbar-outer > .scroll-element {
  background-color: transparent;
}
.c-box .c-box__title .c-box__title__cat.scrollbar-outer > .scroll-element .scroll-bar {
  background-color: #016e39;
}
.c-box .c-box__title .c-box__title__cat.scrollbar-macosx > .scroll-element .scroll-bar {
  background-color: #016e39;
  height: 6px;
  top: -8px;
}
.c-box .c-box__title .c-box__title__social {
  padding-top: 10px;
  display: none;
}
.c-box .c-box__title .c-box__title__social label {
  display: block;
  margin-bottom: 10px;
}
.c-box .c-box__title .c-box__title__social a {
  display: inline-block;
  vertical-align: middle;
  margin-right: 10px;
}
.c-box .c-box__title .c-box__title__social a:last-child {
  margin-right: 0;
}
.c-box .c-box__title.is-flex {
  display: flex;
  flex-direction: row;
  align-items: center;
  overflow: hidden;
}
.c-box .c-box__title.is-flex .c-box__title__name {
  white-space: nowrap;
  margin-right: 10px;
}
.c-box .c-box__title.is-flex .c-box__title__right {
  max-width: 100%;
  overflow-x: auto;
  overflow-y: hidden;
  padding-bottom: 10px;
}
.c-box .c-box__title.is-flex .c-box__submenu {
  padding-top: 10px;
}
.c-box .c-box__submenu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.c-box .c-box__submenu ul li + li {
  border-left: 1px solid #E5E5E5;
}
.c-box .c-box__submenu ul li a {
  padding: 0 10px;
  color: #333303;
  text-decoration: none;
  white-space: nowrap;
  display: block;
  font-size: 14px;
  line-height: 1;
  text-transform: uppercase;
  font-family: "Roboto", sans-serif;;
}
.c-box.is-center .c-box__title {
  text-align: center;
}
.c-box.is-border {
  padding: 15px;
  border: 1px solid #E5E5E5;
}
.c-box.is-border-radius {
  border-radius: 10px;
}
.c-box.is-border-radius-small {
  border-radius: 4px;
}
.c-box.is-shadow {
  box-shadow: 0 3px 6px rgba(0, 0, 0, 0.075);
}
.c-box.is-margin-small {
  margin-bottom: 15px;
}
.c-box.is-margin-small:last-child {
  margin-bottom: 0;
}
.c-box.is-title-line-none .c-box__title {
  border-bottom: none;
  padding-bottom: 0;
}
.c-box.bg-primary .c-box__title {
  padding: 15px 15px 10px 15px;
  border-bottom: none;
  margin-bottom: 0;
}
.c-box.bg-primary .c-box__title .c-box__title__name {
  color: #fff;
}
.c-box.bg-primary .c-box__submenu ul li a {
  color: #fff;
}
.c-box.bg-primary .c-box__content {
  padding: 10px 15px 12px;
}

.l-sidebar .c-box .c-box__title .c-box__title__name {
  font-size: 18px;
}

.c-cat-menu {
  margin-bottom: 15px;
  margin-right: -15px;
  overflow-y: hidden;
  overflow-x: auto;
}
.c-cat-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
.c-cat-menu ul li {
  margin-right: 15px;
}
.c-cat-menu ul li a {
  display: block;
  text-decoration: none;
  color: #666;
  font-size: 14px;
  font-family: "Roboto", sans-serif;;
  text-transform: uppercase;
  white-space: nowrap;
}
.c-cat-menu.scrollbar-outer > .scroll-element {
  background-color: transparent;
}
.c-cat-menu.scrollbar-outer > .scroll-element .scroll-bar {
  background-color: #016e39;
}
.c-cat-menu.scrollbar-macosx > .scroll-element .scroll-bar {
  background-color: #016e39;
  height: 6px;
  top: -8px;
}

/*end box*/
/*more*/
.c-more {
  text-align: center;
  padding: 5px 0;
}
.c-more a {
  display: inline-block;
  min-width: 124px;
  text-decoration: none;
  border: 1px solid #E5E5E5;
  padding: 8px 15px;
  text-align: center;
  color: #666;
  border-radius: 5px;
}

/*more*/
/*tags*/
.c-widget-tags {
  padding-left: 27px;
  position: relative;
  z-index: 1;
  min-height: 20px;
}
.c-widget-tags:before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 2px;
  left: 0;
  width: 20px;
  height: 20px;
  background-image: url("../images/icons/icon20-tag.svg");
  background-position: center center;
  background-repeat: no-repeat;
}
.c-widget-tags h4, .c-widget-tags .h4 {
  margin: 0;
  line-height: 1.3;
}
.c-widget-tags a {
  text-decoration: none;
  font-size: 12px;
  display: inline-block;
  vertical-align: middle;
  line-height: 1.3;
  background-color: rgba(51, 51, 3, 0.2);
  color: rgba(51, 51, 3, 0.6);
  padding: 2px 10px;
  border-radius: 10px;
}
.c-widget-tags ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.c-widget-tags ul li {
  margin: 0 4px 5px 0;
  display: inline-block;
  vertical-align: middle;
  position: relative;
  z-index: 1;
}
.c-widget-tags ul li a {
  display: block;
}

/*end tags*/
@keyframes clockwise {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@keyframes clockwiseReverse {
  0% {
    transform: rotate(360deg);
  }
  100% {
    transform: rotate(0deg);
  }
}
.c-story-backgrounds {
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  overflow: hidden;
}
.c-story-backgrounds:before {
  content: "";
  position: absolute;
  z-index: 4;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: radial-gradient(ellipse at center, rgba(255, 255, 255, 0.5) 0%, rgba(255, 255, 255, 0.1) 60%);
}
.c-story-backgrounds figure {
  margin-bottom: 0;
  width: 100%;
  height: 100%;
}
.c-story-backgrounds figure img {
  width: 100%;
  height: auto;
  -o-object-fit: cover;
     object-fit: cover;
  position: absolute;
  z-index: 2;
  top: 50%;
  margin-top: -50%;
}
.c-story-backgrounds figure.c-story-backgrounds__clockwise-reverse img {
  animation-name: clockwiseReverse;
  animation-duration: 60s;
  animation-delay: 0s;
  animation-fill-mode: both;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
}

/*---------- end components css ----------*/
/*---------- sidebar css ----------*/
.c-news-topmore .b-grid {
  overflow: hidden;
  margin-bottom: 12px;
  border-bottom: 1px solid #ddd;
  padding-bottom: 12px;
}
.c-news-topmore .b-grid:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.c-news-topmore .b-grid .b-grid__img {
  width: 100px;
  height: 67px;
  margin-top: 2px;
  position: relative;
  z-index: 1;
}
.c-news-topmore .b-grid .b-grid__img a {
  display: block;
  padding-top: 67%;
  position: relative;
  z-index: 1;
}
.c-news-topmore .b-grid .b-grid__img img {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  min-height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
}
.c-news-topmore .b-grid .b-grid__content {
  margin-left: 110px;
  position: relative;
  z-index: 1;
}
.c-news-topmore .b-grid .b-grid__row {
  margin-bottom: 3px;
}
.c-news-topmore .b-grid .b-grid__row:last-child {
  margin-bottom: 0;
}
.c-news-topmore .b-grid .b-grid__title {
  font-weight: 700;
  margin: 0;
  font-size: 16px;
  line-height: 1.4;
  font-family: "Roboto", sans-serif;;
}
.c-news-topmore .b-grid .b-grid__title.is-normal {
  font-size: 14px;
  font-weight: 400;
}
.c-news-topmore .b-grid .b-grid__title a {
  text-decoration: none;
  color: #333303;
  display: block;
}
.c-news-topmore .b-grid .b-grid__title [class*=icon] {
  margin-right: 5px;
  margin-top: -2px;
}
.c-news-topmore .b-grid .b-grid__count {
  font-size: 12px;
  color: #fff;
  position: absolute;
  z-index: 4;
  bottom: 2px;
  right: 5px;
}
.c-news-topmore .b-grid a.b-grid__cat {
  text-decoration: none;
  font-size: 12px;
  text-transform: uppercase;
  color: #007bff;
}


/*---------- end sidebar css ----------*/
/*---------- comment css ----------*/
.c-comments {
  margin-bottom: 20px;
}
.c-comments .form-group {
  margin-bottom: 15px;
}
.c-comments .form-group:last-child {
  margin-bottom: 0;
}

.c-comment-input {
  margin-bottom: 15px;
}
.c-comment-input textarea {
  height: 65px;
  font-size: 14px;
}
.c-comment-input .btn {
  min-width: 150px;
}

.c-comment-bar {
  padding: 12px 0;
  margin-bottom: 10px;
  border-top: 1px dotted #ddd;
  border-bottom: 1px dotted #ddd;
}
.c-comment-bar__count {
  font-size: 12px;
  color: #007E00;
}
.c-comment-bar__sort {
  padding-top: 12px;
}
.c-comment-bar__sort label {
  margin: 0 4px 0 0;
  font-weight: 400;
  color: #333303;
  display: inline-block;
  vertical-align: middle;
  font-size: 12px;
}
.c-comment-bar__sort ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: inline-block;
  vertical-align: middle;
}
.c-comment-bar__sort ul li {
  display: inline-block;
  vertical-align: middle;
  font-size: 12px;
}
.c-comment-bar__sort ul li a {
  text-decoration: none;
  color: #333303;
  font-size: 12px;
}
.c-comment-bar__sort ul li + li:before {
  content: "|";
  display: inline-block;
  vertical-align: middle;
  margin: 0 3px;
}
.c-comment-bar__sort ul li.active a {
  color: #016e39;
}

.c-comment-list .b-grid {
  margin-bottom: 10px;
  padding-bottom: 10px;
  border-bottom: 1px solid #ddd;
}
.c-comment-list .b-grid .b-grid__content {
  margin-left: 0;
}
.c-comment-list .b-grid .b-grid__row {
  font-size: 12px;
  color: #333303;
}
.c-comment-list .b-grid .b-grid__title {
  color: #333303;
  font-weight: 700;
}
.c-comment-list .b-grid .b-grid__time {
  color: #999;
  font-size: 11px;
}
.c-comment-list .b-grid .b-grid__anwser {
  cursor: pointer;
  margin-right: 10px;
  text-decoration: none;
  font-size: 13px;
  color: #999;
  font-weight: 400;
}
.c-comment-list .b-grid .b-grid__like {
  cursor: pointer;
  margin-right: 10px;
  color: #999;
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
}
.c-comment-list .b-grid .b-grid__like [class*=icon12] {
  margin-right: 4px;
}
.c-comment-list .b-grid .b-grid__share {
  color: #999;
  text-decoration: none;
  font-size: 13px;
  font-weight: 400;
}
.c-comment-list .b-grid .b-grid__share [class*=icon12] {
  margin-right: 4px;
}
.c-comment-list .b-grid .b-grid__sub .b-grid {
  border-bottom: none;
  margin-left: 38px;
  padding-top: 10px;
  margin-top: 10px;
  margin-bottom: 0;
  padding-bottom: 0;
}
.c-comment-list .b-grid .c-comment-more {
  text-align: left;
  margin-left: 38px;
  padding-top: 10px;
}

.c-comment-more {
  text-align: center;
  padding-top: 5px;
}
.c-comment-more a {
  text-decoration: none;
  color: #007E00;
  display: inline-block;
  vertical-align: middle;
  font-size: 12px;
  font-weight: 700;
}

.c-comment-click {
  cursor: pointer;
  display: none;
  background: #E5E5E5;
  padding: 6px 12px;
  color: #666;
  border-radius: 4px;
}
.c-comment-click .icon16-comment-gray-o {
  margin-right: 5px;
}

/*---------- end comment css ----------*/
/*---------- ring css ----------*/
.ring-container {
  position: relative;
  width: 20px;
  height: 20px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 3px;
  margin-top: -2px;
}
.ring-container .circle {
  width: 6px;
  height: 6px;
  background-color: #ED1C24;
  border-radius: 50%;
  position: absolute;
  top: 7px;
  left: 7px;
}
.ring-container .ringring {
  border: 3px solid #ED1C24;
  -webkit-border-radius: 30px;
  height: 12px;
  width: 12px;
  position: absolute;
  left: 4px;
  top: 4px;
  -webkit-animation: pulsate 1s ease-out;
  -webkit-animation-iteration-count: infinite;
  opacity: 0;
}

.c-live-action {
  vertical-align: middle;
  display: inline-flex;
  border: 1px solid rgba(244, 51, 51, 0.7);
  padding: 2px 4px 0 1px;
  line-height: 16px;
  font-size: 10px;
  font-weight: 700;
  font-family: "Roboto", Arial, "Helvetica Neue", Helvetica, sans-serif;
  margin-right: 5px;
  flex-direction: row;
  align-items: center;
  color: #F43333;
  text-transform: uppercase;
  border-radius: 4px;
}
.c-live-action .ring-container {
  margin-top: -1px;
  margin-right: 1px;
}

@keyframes pulsate {
  0% {
    -webkit-transform: scale(0.1, 0.1);
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    -webkit-transform: scale(1.2, 1.2);
    opacity: 0;
  }
}
/*---------- end ring css ----------*/
/*---------- slider css ----------*/
.c-slider-button {
  position: relative;
  z-index: 1;
}
.c-slider-button .owl-carousel .owl-nav {
  /* position: absolute; */
  /* z-index: 3; */
  /* top: -37px; */
  /* right: 0; */
}
.c-slider-button .owl-carousel .owl-nav .owl-prev, .c-slider-button .owl-carousel .owl-nav .owl-next {
  display: inline-block;
  vertical-align: middle;
  width: 26px;
  height: 26px;
  margin-left: 5px;
  border: 1px solid #999;
  background-repeat: no-repeat;
  background-position: center center;
  background-color: #fff;
  border-radius: 50%;
  position: absolute;
  top: 41%;
  z-index: 99;
  left: 5px;
  transform: translateY(-50%);
}
.c-slider-button .owl-carousel .owl-nav .owl-prev.disabled, .c-slider-button .owl-carousel .owl-nav .owl-next.disabled {
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=40)";
  filter: alpha(opacity=40);
  -moz-opacity: 0.4;
  -khtml-opacity: 0.4;
  opacity: 0.4;
}
.c-slider-button .owl-carousel .owl-nav .owl-prev {
  background-image: url(" https://ktck.1cdn.vn/ktck/assets/static/images/slider-prev.svg");
}
.c-slider-button .owl-carousel .owl-nav .owl-next {
  background-image: url("https://ktck.1cdn.vn/ktck/assets/static/images/slider-next.svg");
  right: 5px;
  left: unset;
}

.bg-box .c-slider-button .owl-carousel .owl-nav {
  top: -58px;
  right: -15px;
}

.c-slider-dots .owl-carousel .owl-dots {
  text-align: center;
  padding-top: 15px;
}
.c-slider-dots .owl-carousel .owl-dots .owl-dot {
  display: inline-block;
  vertical-align: middle;
  width: 8px;
  height: 8px;
  border: 1px solid #999;
  margin: 0 5px 5px;
  border-radius: 50%;
}
.c-slider-dots .owl-carousel .owl-dots .owl-dot.active {
  background-color: #dc3545;
}

.c-box.is-box .c-slider-button .owl-carousel .owl-nav {
  top: -50px;
}


/*---------- end slider css ----------*/
/*---------- widget-stock css ----------*/
.c-widget-stock-box {
  width: 100%;
}
.c-widget-stock-box > ul {
  list-style: none;
  margin: 0 -10px;
  padding: 0;
  display: flex;
  flex-direction: row;
  align-items: center;
}
.c-widget-stock-box > ul > li {
  flex: 1 1 auto;
  padding-left: 10px;
  padding-right: 10px;
  border-right: 1px solid #E5E5E5;
}
.c-widget-stock-box > ul > li:last-child {
  border-right: none;
}

.c-widget-stock-item {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.c-widget-stock-item .c-widget-stock-item__icon {
  width: 24px;
  height: 24px;
  min-width: 24px;
  margin-right: 6px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border: 1px solid #E5E5E5;
  border-radius: 50%;
}
.c-widget-stock-item .c-widget-stock-item__icon.is-up {
  border-color: #0cb754;
}
.c-widget-stock-item .c-widget-stock-item__icon.is-down {
  border-color: #de3727;
}
.c-widget-stock-item a.c-widget-stock-item__icon {
  text-decoration: none;
}
.c-widget-stock-item .c-widget-stock-item__content {
  width: calc(100% - 30px);
}
.c-widget-stock-item a.c-widget-stock-item__content {
  text-decoration: none;
}
.c-widget-stock-item .c-widget-stock-item__row.is-flex {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.c-widget-stock-item .c-widget-stock-item__title {
  font-size: 13px;
  color: #666;
  margin-right: 7px;
}
.c-widget-stock-item .c-widget-stock-item__title:last-child {
  margin-right: 0;
}
.c-widget-stock-item .c-widget-stock-item__price {
  font-size: 12px;
  color: #666;
  margin-right: 7px;
}
.c-widget-stock-item .c-widget-stock-item__price:last-child {
  margin-right: 0;
}
.c-widget-stock-item .c-widget-stock-item__price-change {
  font-size: 12px;
  color: #666;
  margin-right: 7px;
}
.c-widget-stock-item .c-widget-stock-item__price-change:last-child {
  margin-right: 0;
}
.c-widget-stock-item .c-widget-stock-item__price-change.is-up {
  color: #0cb754;
}
.c-widget-stock-item .c-widget-stock-item__price-change.is-down {
  color: #de3727;
}
.c-widget-stock-item .c-widget-stock-item__image img {
  width: 95px;
  height: 38px;
}


/*---------- end widget-stock css ----------*/
/*---------- widget css ----------*/
.c-widget-stock label {
  font-weight: 400;
  font-size: 14px;
  line-height: 1.3;
  color: #666;
  display: flex;
  flex-direction: row;
  margin-bottom: 10px;
}
.c-widget-stock label:last-child {
  margin-bottom: 0;
}
.c-widget-stock__hint {
  padding-top: 10px;
  font-size: 12px;
  line-height: 1.3;
  color: #666;
}
.c-widget-stock__hint p {
  margin: 0;
  font-size: 12px;
}
.c-widget-stock__hint.is-flex {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
  justify-content: space-between;
}
.c-widget-stock__scroll {
  overflow-x: hidden;
  overflow-y: auto;
  max-height: 190px;
  margin-bottom: 15px;
}
.c-widget-stock__scroll:last-child {
  margin-bottom: 0;
}
.c-widget-stock__scroll.is-long {
  max-height: 300px;
}
.c-widget-stock__scroll.is-medium {
  max-height: 250px;
}
.c-widget-stock__search {
  margin-bottom: 10px;
}
.c-widget-stock__image img {
  width: 95px;
  height: 38px;
}
.c-widget-stock .c-widget-search {
  margin-bottom: 10px;
}
.c-widget-stock .c-widget-search:last-child {
  margin-bottom: 0;
}
.c-widget-stock table.table {
  border-top: 1px solid #E5E5E5;
  margin-bottom: 0;
}
.c-widget-stock table.table th, .c-widget-stock table.table td {
  font-size: 12px;
  padding: 7px 0;
  border-top: none;
  vertical-align: middle;
  background-color: transparent;
  color: #666;
}
.c-widget-stock table.table th.is-border-right, .c-widget-stock table.table td.is-border-right {
  border-right: 1px solid #E5E5E5;
}
.c-widget-stock table.table th.is-padding-small, .c-widget-stock table.table td.is-padding-small {
  padding-top: 3px;
  padding-bottom: 3px;
}
.c-widget-stock table.table th.is-padding-normal, .c-widget-stock table.table td.is-padding-normal {
  padding-left: 0 !important;
  padding-right: 0 !important;
}
.c-widget-stock table.table th.is-small, .c-widget-stock table.table td.is-small {
  font-size: 12px;
}
.c-widget-stock table.table th.is-medium, .c-widget-stock table.table td.is-medium {
  font-size: 13px;
}
.c-widget-stock table.table th.is-big, .c-widget-stock table.table td.is-big {
  font-size: 16px;
}
.c-widget-stock table.table th [class*=icon8], .c-widget-stock table.table td [class*=icon8] {
  margin-left: 3px;
  margin-right: 3px;
}
.c-widget-stock table.table th p, .c-widget-stock table.table td p {
  margin: 0;
}
.c-widget-stock table.table th p.is-small, .c-widget-stock table.table td p.is-small {
  font-size: 12px;
}
.c-widget-stock table.table th p.is-medium, .c-widget-stock table.table td p.is-medium {
  font-size: 13px;
}
.c-widget-stock table.table th p.is-big, .c-widget-stock table.table td p.is-big {
  font-size: 16px;
}
.c-widget-stock table.table th [class*=icon10], .c-widget-stock table.table td [class*=icon10] {
  margin-top: -2px;
}
.c-widget-stock table.table th [class*=icon12], .c-widget-stock table.table td [class*=icon12] {
  margin-top: -1px;
}
.c-widget-stock table.table th.text-center, .c-widget-stock table.table td.text-center {
  text-align: center;
}
.c-widget-stock table.table th.text-right, .c-widget-stock table.table td.text-right {
  text-align: right;
}
.c-widget-stock table.table th {
  color: #333303;
}
.c-widget-stock table.table thead th {
  border-bottom: 1px solid #E5E5E5;
  background-color: #ececec;
}
.c-widget-stock table.table tbody td {
  border-bottom: 1px solid #E5E5E5;
}
.c-widget-stock table.table tbody tr:last-child td {
  border-bottom: none;
}
.c-widget-stock table.table.is-table-bg th, .c-widget-stock table.table.is-table-bg td {
  padding: 7px 5px;
}
.c-widget-stock table.table.is-table-bg tbody td {
  border-bottom: none;
}
.c-widget-stock table.table.is-table-bg tbody tr:nth-child(2n) {
  background-color: #ececec;
}
.c-widget-stock .bg-danger {
  background-color: rgba(244, 51, 51, 0.5) !important;
}
.c-widget-stock .bg-success {
  background-color: rgba(40, 167, 69, 0.5) !important;
}
.c-widget-stock.c-template-list .b-grid .b-grid__img {
  width: 100px;
  margin-bottom: 10px;
}
.c-widget-stock.c-template-list .b-grid .b-grid__content {
  margin-left: 100px;
}
.c-widget-stock.c-template-list .b-grid .b-grid__row {
  font-size: 12px;
  color: rgba(0, 0, 0, 0.66);
}
.c-widget-stock.c-template-list .b-grid .b-grid__title {
  font-size: 12px;
}
.c-widget-stock.c-template-list .b-grid .b-grid__desc {
  display: block;
  clear: both;
  margin-left: -110px;
}
.c-widget-stock.is-minus {
  margin-left: -15px;
  margin-right: -15px;
}
.c-widget-stock.is-minus label {
  padding: 0 15px;
}
.c-widget-stock.is-minus .c-widget-stock__hint {
  padding-left: 15px;
  padding-right: 15px;
}
.c-widget-stock.is-minus .c-widget-stock__search {
  padding-left: 15px;
  padding-right: 15px;
}
.c-widget-stock.is-minus .c-widget-search {
  margin-left: 15px;
  margin-right: 15px;
}
.c-widget-stock.is-minus table.table th:first-child, .c-widget-stock.is-minus table.table td:first-child {
  padding-left: 15px;
}
.c-widget-stock.is-minus table.table th:last-child, .c-widget-stock.is-minus table.table td:last-child {
  padding-right: 15px;
}
.c-widget-stock.is-minus .c-small-tabs .c-small-tabs__title {
  padding-left: 15px;
}
.c-widget-stock.is-minus .b-nodata {
  padding-left: 15px;
  padding-right: 15px;
}
.c-widget-stock .c-small-tabs {
  margin-bottom: 15px;
}
.c-widget-stock .c-small-tabs:last-child {
  margin-bottom: 0;
}
.c-widget-stock .c-small-tabs .c-small-tabs__title ul li {
  margin-right: 7px;
}
.c-widget-stock .c-small-tabs .c-small-tabs__title ul li:last-child {
  margin-right: 0;
}
.c-widget-stock .c-small-tabs .c-small-tabs__title ul li a {
  font-size: 13px;
  text-transform: none;
  font-family: "Roboto", Arial, "Helvetica Neue", Helvetica, sans-serif;
}

.c-topic-area > ul > li .c-widget-stock.is-minus {
  margin-left: 0;
  margin-right: 0;
}
.c-topic-area > ul > li .c-widget-stock.is-minus label {
  padding: 0;
}
.c-topic-area > ul > li .c-widget-stock.is-minus .c-widget-stock__hint {
  padding-left: 0;
  padding-right: 0;
}
.c-topic-area > ul > li .c-widget-stock.is-minus .c-widget-stock__search {
  padding-left: 0;
  padding-right: 0;
}
.c-topic-area > ul > li .c-widget-stock.is-minus .c-widget-search {
  margin-left: 0;
  margin-right: 0;
}
.c-topic-area > ul > li .c-widget-stock.is-minus table.table th:first-child, .c-topic-area > ul > li .c-widget-stock.is-minus table.table td:first-child {
  padding-left: 0;
}
.c-topic-area > ul > li .c-widget-stock.is-minus table.table th:last-child, .c-topic-area > ul > li .c-widget-stock.is-minus table.table td:last-child {
  padding-right: 0;
}
.c-topic-area > ul > li .c-widget-stock.is-minus .c-small-tabs .c-small-tabs__title {
  padding-left: 0;
}
.c-topic-area > ul > li .c-widget-stock.is-minus .b-nodata {
  padding-left: 0;
  padding-right: 0;
}

.c-widget-search {
  display: flex;
  flex-direction: row;
  border: 1px solid #E5E5E5;
}
.c-widget-search .form-control {
  flex-grow: 1;
  width: auto;
  border: none;
}
.c-widget-search .c-widget-search__btn {
  background-color: transparent;
  padding: 0;
  width: 38px;
  height: 38px;
  text-align: center;
  line-height: 36px;
  border: none;
}
.c-widget-search:has(.form-select) {
  border: none;
}

.c-widget-stock-grid.is-margin-bottom {
  margin-bottom: 20px;
}
.c-widget-stock-grid.is-margin-bottom:last-child {
  margin-bottom: 0;
}
.c-widget-stock-grid > ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.c-widget-stock-grid > ul > li {
  margin-bottom: 10px;
}
.c-widget-stock-grid > ul > li:nth-child(3) .c-widget-stock__scroll {
  max-height: 220px;
}


/*---------- end widget css ----------*/
/*---------- widget iframe css ----------*/
.c-widget-iframe-grid > ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.c-widget-iframe-grid > ul > li {
  margin-bottom: 10px;
}

.c-widget-iframe {
  position: relative;
  width: 100%;
  z-index: 1;
  overflow: hidden;
  padding-top: 100%;
}
.c-widget-iframe .c-widget-iframe__inner {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.c-widget-iframe iframe {
  width: 100%;
  height: 100%;
  border: none;
}
.c-widget-iframe.is-300x250 {
  padding-top: 83.3333333333%;
}
.c-widget-iframe.is-300x200 {
  padding-top: 66.6666666667%;
}
.c-widget-iframe.is-300x600 {
  padding-top: 200%;
}
.c-widget-iframe.is-custom-size {
  padding-top: 0;
}


/*---------- end widget iframe css ----------*/
/*---------- small tabs css ----------*/
.c-small-tabs__title {
  overflow-y: hidden;
  overflow-x: auto;
  -ms-overflow-style: none; /* IE and Edge */
  scrollbar-width: none; /* Firefox */
}
.c-small-tabs__title::-webkit-scrollbar {
  display: none; /* Hide scrollbar for Chrome, Safari and Opera */
}
.c-small-tabs__title ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  align-items: stretch;
}
.c-small-tabs__title ul li {
  margin-right: 15px;
  padding-bottom: 10px;
}
.c-small-tabs__title ul li a {
  color: #666;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 16px;
  text-decoration: none;
  font-family: "Roboto", sans-serif;;
  display: block;
  text-align: left;
}
.c-small-tabs__title ul li a [class*=icon] {
  margin-right: 7px;
}
.c-small-tabs__title ul li.active a {
  color: #016e39;
}
.c-small-tabs__pane {
  display: none;
}
.c-small-tabs__pane.is-current {
  display: block;
}
.c-small-tabs__pane .c-box .c-box__title {
  display: none;
}
.c-small-tabs.is-minus-mobile {
  margin-left: -15px;
  margin-right: -15px;
}


/*---------- end small tabs css ----------*/
/*---------- menu mobile css ----------*/
.c-menu-mobile {
  background-color: #016e39;
}
.c-menu-mobile > ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: row;
  align-items: stretch;
}
.c-menu-mobile > ul > li {
  flex: 1 0 0%;
}
.c-menu-mobile > ul > li > a {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  height: 60px;
}
.c-menu-mobile > ul > li > a span {
  font-size: 12px;
  margin-top: 2px;
}
.c-menu-mobile > ul > li.li-menu {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: #fff;
  text-decoration: none;
  height: 60px;
}
.c-menu-mobile > ul > li.li-menu span {
  color: #fff;
  font-size: 12px;
  margin-top: 2px;
}
.c-menu-mobile > ul > li.li-menu .c-menu-expand {
  background-image: url("../images/icons/icon24-menu-white.svg");
}


/*---------- end menu mobile css ----------*/
/*---------- layout css ----------*/
.bg-gray-light {
  background-color: #F5F5F5;
}

.bg-gray-medium {
  background-color: #DEDEDE;
}

.bg-primary .c-box .c-box__title .c-box__title__name {
  color: #fff;
}
.bg-primary .c-box .c-box__title .c-box__title__name a {
  color: #fff;
}
.bg-primary .c-box .c-box__title a.c-box__title__name {
  color: #fff;
}
.bg-primary .c-template-grid .b-grid .b-grid__title a {
  color: #fff;
}

.bg-primary-light {
  background-color: rgba(4, 73, 115, 0.3);
}

.bg-box {
  padding: 20px 15px;
}
.bg-box.is-background-blur {
  background-color: rgba(0, 0, 0, 0.15);
}
.bg-box.is-full {
  padding: 20px 0;
}
.bg-box.is-minus {
  margin-left: -15px;
  margin-right: -15px;
}
.bg-box.is-minus-mobile {
  margin-left: -15px;
  margin-right: -15px;
}
.bg-box.is-margin-bottom {
  margin-bottom: 25px;
}
.bg-box.is-margin-bottom:last-child {
  margin-bottom: 0;
}
.bg-box.is-margin-bottom-large {
  margin-bottom: 50px;
}
.bg-box.is-margin-bottom-large:last-child {
  margin-bottom: 0;
}

.l-content {
  padding-top: 20px;
  padding-bottom: 20px;
}
.l-content.is-padding-top-none {
  padding-top: 0 !important;
}
.l-content.is-padding-bottom-none {
  padding-bottom: 0 !important;
}

.l-content-flex .l-main {
  margin-bottom: 20px;
}
.l-content-flex .l-main:last-child {
  margin-bottom: 0;
}
.l-content-flex .l-sidebar {
  margin-bottom: 20px;
}
.l-content-flex .l-sidebar:last-child {
  margin-bottom: 0;
}
.l-content-flex.is-margin-bottom {
  margin-bottom: 25px;
}
.l-content-flex.is-margin-bottom:last-child {
  margin-bottom: 0;
}


/*---------- end layout css ----------*/
/*---------- news css ----------*/
.c-template-grid .b-grid {
  min-height: 0;
}
.c-template-grid .b-grid .b-grid__video {
  margin-bottom: 10px;
}
.c-template-grid .b-grid .b-grid__video iframe {
  width: 100%;
}
.c-template-grid .b-grid .b-grid__video img {
  width: 100%;
}
.c-template-grid .b-grid .b-grid__img {
  width: auto;
  height: auto;
  float: unset;
  margin-bottom: 10px;
  border-radius: 5px;
}
.c-template-grid .b-grid .b-grid__img a {
  display: block;
  padding-top: 66.6666666667%;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.c-template-grid .b-grid .b-grid__img img {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  min-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transform: scale(1);
  border-radius: 5px;
  transition: 0.5s ease;
}
.c-template-grid .b-grid .b-grid__icon {
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: 0;
  height: 30px;
  width: 30px;
  line-height: 28px;
  background-color: #fff;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.c-template-grid .b-grid .b-grid__counttime {
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: 0;
  height: 16px;
  line-height: 14px;
  padding: 0 7px;
  color: #000;
  font-size: 12px;
  font-weight: 400;
  background-color: #fff;
}
.c-template-grid .b-grid .b-grid__counttime:has(.icon12-play-white) {
  padding: 0 7px 0 35px;
  height: 30px;
  line-height: 28px;
}
.c-template-grid .b-grid .b-grid__counttime .icon12-play-white {
  width: 30px;
  height: 30px;
  background-color: #007bff;
  position: absolute;
  z-index: 2;
  left: 0;
  top: 0;
}
.c-template-grid .b-grid .b-grid__content {
  margin-left: 0;
}
.c-template-grid .b-grid .b-grid__row {
  margin-bottom: 7px;
  line-height: 1.4;
  color: #333303;
}
.c-template-grid .b-grid .b-grid__row:last-child {
  margin-bottom: 0;
}
.c-template-grid .b-grid .b-grid__desc {
  display: none;
  font-size: 15px;
}
.c-template-grid .b-grid .b-grid__desc a {
  color: #333303;
  text-decoration: none;
  display: block;
}
.c-template-grid .b-grid .b-grid__title {
  margin-top: 7px;
  margin-bottom: 7px;
  font-size: 18px;
  font-weight: 500;
  line-height: 1.2;
  color: #000;
}
.c-template-grid .b-grid .b-grid__title:first-child {
  margin-top: 0;
}
.c-template-grid .b-grid .b-grid__title:last-child {
  margin-bottom: 0;
}
.c-template-grid .b-grid .b-grid__title a {
  display: block;
  text-decoration: none;
  color: #000;
}
.c-template-grid .b-grid .b-grid__title [class*=icon] {
  margin-right: 5px;
  margin-top: -2px;
}
.c-template-grid .b-grid .b-grid__time {
  font-size: 12px;
  display: inline-block;
  vertical-align: middle;
  color: #999;
  margin-right: 5px;
}
.c-template-grid .b-grid .b-grid__space {
  font-size: 12px;
  display: inline-block;
  vertical-align: middle;
  color: #666;
  margin-right: 5px;
}
.c-template-grid .b-grid .b-grid__cat {
  font-size: 12px;
  display: inline-block;
  vertical-align: middle;
  color: #016e39;
  margin-right: 5px;
  text-transform: uppercase;
  font-weight: 700;
}
.c-template-grid .b-grid a.b-grid__cat {
  text-decoration: none;
  color: #016e39;
}
.c-template-grid .b-grid .b-grid__area {
  font-weight: 700;
  font-size: 12px;
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
  color: #016e39;
  border: 1px solid #016e39;
  padding: 2px 5px;
  text-transform: uppercase;
}
.c-template-grid .b-grid a.b-grid__area {
  text-decoration: none;
  color: #016e39;
}
.c-template-grid .b-grid .b-grid__ad {
  font-size: 12px;
  display: inline-block;
  vertical-align: middle;
  color: #999;
  margin-right: 5px;
}
.c-template-grid .b-grid .b-grid__ad [class*=icon] {
  margin-right: 4px;
}
.c-template-grid .b-grid .h-show-pc {
  display: none;
}
.c-template-grid .b-grid.is-video .b-grid__img a:before {
  content: "";
  position: absolute;
  z-index: 3;
  width: 36px;
  height: 36px;
  background-color: #fff;
  top: 50%;
  left: 50%;
  margin-left: -18px;
  margin-top: -18px;
  border-radius: 50%;
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.2);
}
.c-template-grid .b-grid.is-video .b-grid__img a:after {
  content: "";
  width: 16px;
  height: 16px;
  position: absolute;
  z-index: 4;
  top: 50%;
  left: 50%;
  margin-left: -8px;
  margin-top: -8px;
  background-image: url("../images/icons/icon16-play-primary.svg");
  background-repeat: no-repeat;
  background-position: center center;
}
.c-template-grid > ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.c-template-grid > ul > li {
  padding-bottom: 0px;
}
.c-template-grid > ul > li:last-child {
  padding-bottom: 0;
}
.c-template-grid.is-col-2 > ul {
  margin: 0 -7px;
  display: flex;
  flex-direction: row;
  align-items: stretch;
  flex-wrap: wrap;
}
.c-template-grid.is-col-2 > ul > li {
  padding-left: 7px;
  padding-right: 7px;
  width: 50%;
}
.c-template-grid.is-border > ul > li {
  border-bottom: 1px solid #ddd;
  padding-bottom: 20px;
  margin-bottom: 20px;
}
.c-template-grid.is-border > ul > li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.c-template-grid.is-border.is-last-line > ul > li:last-child {
  padding-bottom: 20px;
}
.c-template-grid.is-border.is-last-line > ul > li:last-child .b-grid {
  border-bottom: 1px solid #ddd;
  padding-bottom: 20px;
}

.c-template-list .b-grid {
  display: flex;
  flex-direction: row;
  align-items: center;
  flex-wrap: wrap;
}
.c-template-list .b-grid .b-grid__img {
  width: 44.8275862069%;
  height: auto;
  float: unset;
  position: relative;
  z-index: 1;
}
.c-template-list .b-grid .b-grid__img a {
  display: block;
  padding-top: 66.6666666667%;
  overflow: hidden;
  position: relative;
  z-index: 1;
}
.c-template-list .b-grid .b-grid__img img {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  min-height: 100%;
  -o-object-fit: cover;
  object-fit: cover;
  transform: scale(1);
  border-radius: 5px;
  transition: 0.5s ease;
}
.c-template-list .b-grid .b-grid__img a.b-grid__topic {
  padding: 3px 10px;
  display: inline-block;
  position: absolute;
  text-decoration: none;
}
.c-template-list .b-grid .b-grid__icon {
  position: absolute;
  z-index: 3;
  bottom: 0;
  left: 0;
  height: 30px;
  width: 30px;
  line-height: 28px;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 0 6px 0 0;
}
.c-template-list .b-grid .b-grid__counttime {
  position: absolute;
  z-index: 5;
  left: 0;
  bottom: 0;
  height: 24px;
  font-size: 12px;
  color: #fff;
  font-weight: 700;
  line-height: 22px;
  padding: 0 5px 0 30px;
  background-color: rgba(0, 0, 0, 0.3);
}
.c-template-list .b-grid .b-grid__counttime .icon12-play-white {
  width: 24px;
  height: 24px;
  background-color: rgba(0, 0, 0, 0.3);
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
}
.c-template-list .b-grid .b-grid__content {
  margin-left: 0;
  padding-left: 15px;
  width: 55.1724137931%;
}
.c-template-list .b-grid .b-grid__row {
  margin-bottom: 7px;
  line-height: 1.4;
  color: #333303;
}
.c-template-list .b-grid .b-grid__row:last-child {
  margin-bottom: 0;
}
.c-template-list .b-grid > .b-grid__row {
  width: 100%;
  margin-bottom: 10px;
}
.c-template-list .b-grid .b-grid__desc {
  display: none;
  font-size: 15px;
  font-family: "Roboto", Arial, "Helvetica Neue", Helvetica, sans-serif;
}
.c-template-list .b-grid .b-grid__desc a {
  color: #333303;
  text-decoration: none;
  display: block;
}
.c-template-list .b-grid .b-grid__title {
  margin-top: 7px;
  margin-bottom: 7px;
  font-size: 16px;
  font-weight: 500;
  font-family: "Roboto", sans-serif;
  font-optical-sizing: auto;
  line-height: 1.2;
  color: #000;
}
.c-template-list .b-grid .b-grid__title:first-child {
  margin-top: 0;
}
.c-template-list .b-grid .b-grid__title:last-child {
  margin-bottom: 0;
}
.c-template-list .b-grid .b-grid__title a {
  display: block;
  text-decoration: none;
  color: #000;
}
.c-template-list .b-grid .b-grid__title [class*=icon] {
  margin-right: 5px;
  margin-top: -2px;
}
.c-template-list .b-grid .b-grid__topic {
  position: absolute;
  z-index: 4;
  bottom: 0;
  left: 0;
  max-width: 100%;
  background-color: #016e39;
  color: #fff;
  font-size: 14px;
  font-weight: 700;
  padding: 3px 10px;
  text-transform: uppercase;
}
.c-template-list .b-grid .b-grid__time {
  font-size: 12px;
  display: inline-block;
  vertical-align: middle;
  color: #666;
  margin-right: 5px;
}
.c-template-list .b-grid .b-grid__space {
  font-size: 12px;
  display: inline-block;
  vertical-align: middle;
  color: #666;
  margin-right: 5px;
}
.c-template-list .b-grid .b-grid__cat {
  font-size: 12px;
  display: inline-block;
  vertical-align: middle;
  color: #016e39;
  margin-right: 5px;
  text-transform: uppercase;
  font-weight: 700;
}
.c-template-list .b-grid a.b-grid__cat {
  text-decoration: none;
  color: #016e39;
}
.c-template-list .b-grid .b-grid__ad {
  font-size: 12px;
  display: inline-block;
  vertical-align: middle;
  color: #999;
  margin-right: 5px;
}
.c-template-list .b-grid .b-grid__ad [class*=icon] {
  margin-right: 4px;
}
.c-template-list > ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.c-template-list > ul > li {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #ddd;
}
.c-template-list > ul > li:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}
.c-template-list.is-last-line > ul > li:last-child {
  padding-bottom: 20px;
  margin-bottom: 20px;
  border-bottom: 1px solid #ddd;
}
.c-template-list.is-image-right .b-grid {
  flex-direction: row;
}
.c-template-list.is-image-right .b-grid .b-grid__content {
  padding-left: 0;
  padding-right: 15px;
}
.c-container-wrapper {
    position: relative;
}

/*---------- end news css ----------*/
/*---------- news 24h css ----------*/
.c-time-count {
  position: relative;
  z-index: 3;
  min-height: 18px;
  margin-bottom: 10px;
}
.c-time-count:before {
  content: "";
  width: 9px;
  height: 9px;
  background-color: #016e39;
  position: absolute;
  z-index: 4;
  left: -30px;
  top: 7px;
  border-radius: 50%;
}
.c-time-count span {
  color: #666;
  font-size: 14px;
}

.c-template-grid.is-timeline {
  padding-left: 30px;
  position: relative;
  z-index: 1;
}
.c-template-grid.is-timeline:before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 7px;
  left: 4px;
  width: 1px;
  bottom: 20px;
  background-color: #E5E5E5;
}
