﻿@charset "UTF-8";
/* code by ngocbich85hd 8/5/2018 */
/*------------------------------------
  Components
------------------------------------*/
/*------------------------------------
  Alerts
------------------------------------*/
/* Alert Close Button */
@import url(../hover-effects/css/component.css);
@import url(../fonts/Oswald/oswald.css);
@import "../fonts/Open-Sans/stylesheet.css";
@import "../fonts/MuliFont/stylesheet.css";
.u-alert-close--light {
  font-weight: 300;
  color: #000;
  opacity: .7;
  text-shadow: none;
  transition: color .3s;
  font-size: 18px;
  cursor: pointer; }

.u-alert-close--light:hover {
  opacity: 1; }

.u-alert-close--light:focus, .u-alert-close--light:active:focus {
  outline: 0 none;
  box-shadow: none; }

/* Alert Lists */
.u-alert-list {
  margin-left: -20px; }

/* Alert Lists with Font Awesome Icons */
.alert__icon {
  margin-left: 20px; }

.alert__icon-list {
  font-size: 12px;
  line-height: 1.5; }

/*------------------------------------
  Arrows
------------------------------------*/
.u-arrow-v1::before {
  display: inline-block;
  position: relative;
  top: 50%;
  left: 50%;
  vertical-align: top;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%); }

.u-arrow-v1[class*="abs"]::before {
  position: absolute; }

.u-arrow-custom-v1 .u-arrow-icon {
  display: block; }

.u-arrow-custom-v1 .u-arrow-text {
  position: absolute;
  top: 50%;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s; }

.u-arrow-custom-v1.js-prev .u-arrow-text {
  -webkit-transform: translateY(-50%) translateX(-100%);
  -ms-transform: translateY(-50%) translateX(-100%);
  transform: translateY(-50%) translateX(-100%); }

.u-arrow-custom-v1.js-next .u-arrow-text {
  -webkit-transform: translateY(-50%) translateX(100%);
  -ms-transform: translateY(-50%) translateX(100%);
  transform: translateY(-50%) translateX(100%); }

.u-arrow-custom-v1:hover .u-arrow-text {
  -webkit-transform: translateY(-50%) translateX(0);
  -ms-transform: translateY(-50%) translateX(0);
  transform: translateY(-50%) translateX(0); }

.u-arrow-custom-v2 {
  overflow: hidden;
  transition: background-color 0.3s; }

.u-arrow-custom-v2 .u-arrow-icon {
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s; }

.u-arrow-custom-v2 .u-arrow-img {
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, transform 0.3s;
  transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s; }

.u-arrow-custom-v2.js-prev .u-arrow-icon {
  -webkit-transform: translateY(-50%) translateX(10px);
  -ms-transform: translateY(-50%) translateX(10px);
  transform: translateY(-50%) translateX(10px); }

.u-arrow-custom-v2.js-prev .u-arrow-img {
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%); }

.u-arrow-custom-v2.js-next .u-arrow-icon {
  -webkit-transform: translateY(-50%) translateX(-10px);
  -ms-transform: translateY(-50%) translateX(-10px);
  transform: translateY(-50%) translateX(-10px); }

.u-arrow-custom-v2.js-next .u-arrow-img {
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%); }

.u-arrow-custom-v2:hover .u-arrow-icon {
  -webkit-transform: translateY(-50%) translateX(0);
  -ms-transform: translateY(-50%) translateX(0);
  transform: translateY(-50%) translateX(0); }

.u-arrow-custom-v2:hover .u-arrow-img {
  opacity: .6;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0); }

.u-arrow-custom-v3 .u-arrow-helper {
  content: "";
  opacity: 0;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
  -webkit-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9); }

.u-arrow-custom-v3 .u-arrow-icon {
  display: block; }

.u-arrow-custom-v3 .u-arrow-icon-before, .u-arrow-custom-v3 .u-arrow-icon-after {
  position: absolute;
  left: 25%;
  transition: background-color 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, background-color 0.3s;
  transition: transform 0.3s, background-color 0.3s, -webkit-transform 0.3s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.u-arrow-custom-v3 .u-arrow-icon-before {
  -webkit-transform: translateX(-50%) rotate(30deg);
  -ms-transform: translateX(-50%) rotate(30deg);
  transform: translateX(-50%) rotate(30deg);
  -webkit-transform-origin: 0 100%;
  -ms-transform-origin: 0 100%;
  transform-origin: 0 100%; }

.u-arrow-custom-v3 .u-arrow-icon-after {
  top: 50%;
  -webkit-transform: translateX(-50%) rotate(-30deg);
  -ms-transform: translateX(-50%) rotate(-30deg);
  transform: translateX(-50%) rotate(-30deg);
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0; }

.u-arrow-custom-v3.js-next .u-arrow-icon {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg); }

.u-arrow-custom-v3:hover .u-arrow-helper {
  background-color: #fff;
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1); }

.u-arrow-custom-v3:hover .u-arrow-icon-before, .u-arrow-custom-v3:hover .u-arrow-icon-after {
  background-color: #72c02c; }

.u-arrow-custom-v3:hover .u-arrow-icon-before {
  -webkit-transform: translateX(-50%) rotate(45deg);
  -ms-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg); }

.u-arrow-custom-v3:hover .u-arrow-icon-after {
  -webkit-transform: translateX(-50%) rotate(-45deg);
  -ms-transform: translateX(-50%) rotate(-45deg);
  transform: translateX(-50%) rotate(-45deg); }

.u-arrow-custom-v4 {
  width: 62px;
  height: 62px;
  transition: width 0.3s, background-color 0.3s; }

.u-arrow-custom-v4 h4 {
  opacity: 0;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: opacity 0.3s, transform 0.3s;
  transition: opacity 0.3s, transform 0.3s, -webkit-transform 0.3s; }

.u-arrow-custom-v4.js-prev h4 {
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%); }

.u-arrow-custom-v4.js-next h4 {
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%); }

.u-arrow-custom-v4:hover {
  width: 200px; }

.u-arrow-custom-v4:hover .u-arrow-icon {
  color: #72c02c; }

.u-arrow-custom-v4:hover h4 {
  opacity: 1;
  transition-delay: 0.1s;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0); }

.u-arrow-custom-v5 .u-arrow-icon::before {
  transition: -webkit-transform .3s .3s;
  transition: transform .3s .3s;
  transition: transform .3s .3s, -webkit-transform .3s .3s; }

.u-arrow-custom-v5 .u-arrow-text {
  transition: -webkit-transform .3s .3s;
  transition: transform .3s .3s;
  transition: transform .3s .3s, -webkit-transform .3s .3s;
  -webkit-perspective: 1000px;
  perspective: 1000px; }

.u-arrow-custom-v5 .u-arrow-title {
  position: absolute;
  top: 100%;
  width: 100%;
  height: 30%;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transform: rotateX(-90deg);
  transform: rotateX(-90deg);
  margin: 0; }

.u-arrow-custom-v5 .u-arrow-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

.u-arrow-custom-v5.js-prev .u-arrow-text {
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%); }

.u-arrow-custom-v5.js-next .u-arrow-text {
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%); }

.u-arrow-custom-v5:hover .u-arrow-text {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0); }

.u-arrow-custom-v5:hover .u-arrow-title {
  transition-delay: .6s;
  -webkit-transform: rotateX(0deg);
  transform: rotateX(0deg); }

.u-arrow-custom-v5:hover .u-arrow-icon::before {
  transition-delay: 0s; }

.u-arrow-custom-v5:hover.js-prev .u-arrow-icon::before {
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%); }

.u-arrow-custom-v5:hover.js-next .u-arrow-icon::before {
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%); }

.u-arrow-custom-v6 {
  overflow: hidden;
  width: 40px;
  transition: width .4s, background-color .4s, z-index .4s;
  transition-timing-function: cubic-bezier(0.7, 0, 0.3, 1); }

.u-arrow-custom-v6 .u-arrow-text {
  width: 400px; }

.u-arrow-custom-v6:hover {
  width: 400px;
  z-index: 11; }

.u-arrow-custom-v7 {
  -webkit-perspective: 1000px;
  perspective: 1000px; }

.u-arrow-custom-v7 .u-arrow-icon::before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%); }

.u-arrow-custom-v7 .u-arrow-img {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s; }

.u-arrow-custom-v7.js-prev {
  -webkit-perspective-origin: 100% 50%;
  perspective-origin: 100% 50%; }

.u-arrow-custom-v7.js-prev .u-arrow-img {
  -webkit-transform-origin: 0 50%;
  -ms-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transform: rotateY(90deg);
  transform: rotateY(90deg); }

.u-arrow-custom-v7.js-next {
  -webkit-perspective-origin: 0 50%;
  perspective-origin: 0 50%; }

.u-arrow-custom-v7.js-next .u-arrow-img {
  -webkit-transform-origin: 100% 50%;
  -ms-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
  -webkit-transform: rotateY(-90deg);
  transform: rotateY(-90deg); }

.u-arrow-custom-v7:hover .u-arrow-icon {
  color: #72c02c; }

.u-arrow-custom-v7:hover .u-arrow-img {
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg); }

.u-arrow-custom-v8 {
  -webkit-perspective: 1000px;
  perspective: 1000px; }

.u-arrow-custom-v8 .u-arrow-icon::before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%); }

.u-arrow-custom-v8 .u-arrow-title,
.u-arrow-custom-v8 .u-arrow-img {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.u-arrow-custom-v8 .u-arrow-title {
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s; }

.u-arrow-custom-v8 .u-arrow-text {
  transition: -webkit-transform 0.3s 0.3s;
  transition: transform 0.3s 0.3s;
  transition: transform 0.3s 0.3s, -webkit-transform 0.3s 0.3s;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d; }

.u-arrow-custom-v8.js-prev {
  -webkit-perspective-origin: 100% 50%;
  perspective-origin: 100% 50%; }

.u-arrow-custom-v8.js-prev .u-arrow-text,
.u-arrow-custom-v8.js-prev .u-arrow-title {
  -webkit-transform-origin: 0 50%;
  -ms-transform-origin: 0 50%;
  transform-origin: 0 50%;
  -webkit-transform: rotateY(90deg);
  transform: rotateY(90deg); }

.u-arrow-custom-v8.js-next {
  -webkit-perspective-origin: 0 50%;
  perspective-origin: 0 50%; }

.u-arrow-custom-v8.js-next .u-arrow-text,
.u-arrow-custom-v8.js-next .u-arrow-title {
  -webkit-transform-origin: 100% 50%;
  -ms-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
  -webkit-transform: rotateY(-90deg);
  transform: rotateY(-90deg); }

.u-arrow-custom-v8:hover .u-arrow-icon {
  color: #72c02c;
  transition-delay: 0s; }

.u-arrow-custom-v8:hover .u-arrow-icon::before {
  transition-delay: 0s; }

.u-arrow-custom-v8:hover .u-arrow-text,
.u-arrow-custom-v8:hover .u-arrow-title {
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg); }

.u-arrow-custom-v8:hover .u-arrow-text {
  transition-delay: 0s; }

.u-arrow-custom-v8:hover .u-arrow-title {
  transition-delay: .3s; }

.u-arrow-custom-v9 {
  width: 60px; }

.u-arrow-custom-v9 .u-arrow-icon::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 20px;
  height: 1px;
  background: #fff;
  transition: width .3s .2s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.u-arrow-custom-v9 .u-arrow-text::after {
  content: attr(data-title);
  position: absolute;
  top: 100%;
  left: 0;
  width: 100%;
  color: #fff;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.3s, -webkit-transform 0.3s;
  transition: transform 0.3s, opacity 0.3s;
  transition: transform 0.3s, opacity 0.3s, -webkit-transform 0.3s;
  margin: 20px 5px 0; }

.u-arrow-custom-v9 .u-arrow-img {
  opacity: 0;
  box-shadow: 0 1px 0 #fff, 0 -1px 0 #fff;
  transition: opacity .3s, -webkit-transform .3s;
  transition: transform .3s, opacity .3s;
  transition: transform .3s, opacity .3s, -webkit-transform .3s;
  -webkit-transform: scale(0.3);
  -ms-transform: scale(0.3);
  transform: scale(0.3); }

.u-arrow-custom-v9.js-prev .u-arrow-icon::after {
  left: calc(100% - 25px); }

.u-arrow-custom-v9.js-next .u-arrow-icon::after {
  right: calc(100% - 25px); }

.u-arrow-custom-v9.js-next .u-arrow-text::after {
  text-align: right; }

.u-arrow-custom-v9:hover {
  width: 200px; }

.u-arrow-custom-v9:hover .u-arrow-icon::after {
  width: 200px;
  transition-delay: 0s; }

.u-arrow-custom-v9:hover .u-arrow-text {
  pointer-events: auto; }

.u-arrow-custom-v9:hover .u-arrow-text::after {
  opacity: 1;
  transition-delay: .2s;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0); }

.u-arrow-custom-v9:hover .u-arrow-img {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1); }

.u-arrow-custom-v9:hover .u-arrow-img:first-child {
  transition-delay: 0.3s; }

.u-arrow-custom-v9:hover .u-arrow-img:nth-child(2) {
  transition-delay: 0.35s; }

.u-arrow-custom-v9:hover .u-arrow-img:nth-child(3) {
  transition-delay: 0.4s; }

.u-arrow-custom-v10 .u-arrow-text {
  opacity: 0;
  overflow: hidden;
  -webkit-transform: scale(0.7);
  -ms-transform: scale(0.7);
  transform: scale(0.7);
  transition: opacity .3s, background-color .1s 0s, -webkit-transform .3s;
  transition: transform .3s, opacity .3s, background-color .1s 0s;
  transition: transform .3s, opacity .3s, background-color .1s 0s, -webkit-transform .3s; }

.u-arrow-custom-v10 .u-arrow-img {
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s; }

.u-arrow-custom-v10.js-prev .u-arrow-img {
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%); }

.u-arrow-custom-v10.js-next .u-arrow-img {
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%); }

.u-arrow-custom-v10:hover .u-arrow-text {
  opacity: 1;
  background-color: transparent;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  transition: opacity .3s, background-color .1s .2s, -webkit-transform .3s;
  transition: transform .3s, opacity .3s, background-color .1s .2s;
  transition: transform .3s, opacity .3s, background-color .1s .2s, -webkit-transform .3s; }

.u-arrow-custom-v10:hover .u-arrow-img {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0); }

.u-arrow-custom-v11 .u-arrow-icon {
  border-width: 0;
  transition: border-width .3s .15s; }

.u-arrow-custom-v11 .u-arrow-text {
  opacity: 0;
  transition: opacity .3s, -webkit-transform .3s;
  transition: transform .3s, opacity .3s;
  transition: transform .3s, opacity .3s, -webkit-transform .3s; }

.u-arrow-custom-v11.js-prev .u-arrow-text {
  -webkit-transform: translateY(-50%) translateX(-100%) scale(0.75);
  -ms-transform: translateY(-50%) translateX(-100%) scale(0.75);
  transform: translateY(-50%) translateX(-100%) scale(0.75); }

.u-arrow-custom-v11.js-next .u-arrow-text {
  -webkit-transform: translateY(-50%) translateX(100%) scale(0.75);
  -ms-transform: translateY(-50%) translateX(100%) scale(0.75);
  transform: translateY(-50%) translateX(100%) scale(0.75); }

.u-arrow-custom-v11:hover .u-arrow-icon {
  border-top-width: 40px;
  border-bottom-width: 40px;
  transition-delay: 0s; }

.u-arrow-custom-v11:hover .u-arrow-text {
  opacity: 1;
  transition-delay: .3s;
  -webkit-transform: translateY(-50%) translateX(0) scale(1);
  -ms-transform: translateY(-50%) translateX(0) scale(1);
  transform: translateY(-50%) translateX(0) scale(1); }

.u-arrow-custom-v12 .u-arrow-icon {
  position: relative;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%); }

.u-arrow-custom-v12 .u-arrow-icon::before {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%); }

.u-arrow-custom-v12 .u-arrow-text {
  overflow: hidden;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: scale(0.6);
  -ms-transform: scale(0.6);
  transform: scale(0.6); }

.u-arrow-custom-v12 .u-arrow-img {
  opacity: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: opacity .3s, -webkit-transform .3s;
  transition: opacity .3s, transform .3s;
  transition: opacity .3s, transform .3s, -webkit-transform .3s; }

.u-arrow-custom-v12:hover .u-arrow-img {
  opacity: .8; }

.u-arrow-custom-v12.js-prev .u-arrow-img {
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg) scale(2);
  -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg) scale(2);
  transform: translateX(-50%) translateY(-50%) rotate(45deg) scale(2); }

.u-arrow-custom-v12.js-prev:hover .u-arrow-text {
  -webkit-transform: scale(1) rotate(-45deg);
  -ms-transform: scale(1) rotate(-45deg);
  transform: scale(1) rotate(-45deg); }

.u-arrow-custom-v12.js-prev:hover .u-arrow-img {
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(45deg) scale(1);
  -ms-transform: translateX(-50%) translateY(-50%) rotate(45deg) scale(1);
  transform: translateX(-50%) translateY(-50%) rotate(45deg) scale(1); }

.u-arrow-custom-v12.js-next .u-arrow-img {
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(-45deg) scale(2);
  -ms-transform: translateX(-50%) translateY(-50%) rotate(-45deg) scale(2);
  transform: translateX(-50%) translateY(-50%) rotate(-45deg) scale(2); }

.u-arrow-custom-v12.js-next:hover .u-arrow-text {
  -webkit-transform: scale(1) rotate(45deg);
  -ms-transform: scale(1) rotate(45deg);
  transform: scale(1) rotate(45deg); }

.u-arrow-custom-v12.js-next:hover .u-arrow-img {
  -webkit-transform: translateX(-50%) translateY(-50%) rotate(-45deg) scale(1);
  -ms-transform: translateX(-50%) translateY(-50%) rotate(-45deg) scale(1);
  transform: translateX(-50%) translateY(-50%) rotate(-45deg) scale(1); }

.u-arrow-custom-v13 .u-arrow-icon {
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.u-arrow-custom-v13 .u-arrow-icon::before {
  position: relative;
  z-index: 2; }

.u-arrow-custom-v13 .u-arrow-icon::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 110%;
  background: #fff;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: -webkit-transform .3s .3s;
  transition: transform .3s .3s;
  transition: transform .3s .3s, -webkit-transform .3s .3s; }

.u-arrow-custom-v13 .u-arrow-text {
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s; }

.u-arrow-custom-v13.js-prev .u-arrow-icon::after {
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%); }

.u-arrow-custom-v13.js-prev .u-arrow-text {
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%); }

.u-arrow-custom-v13.js-next .u-arrow-icon::after {
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%); }

.u-arrow-custom-v13.js-next .u-arrow-text {
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%); }

.u-arrow-custom-v13:hover .u-arrow-icon::after {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0);
  transition-delay: 0s; }

.u-arrow-custom-v13:hover .u-arrow-text {
  transition-delay: .3s;
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0); }

.u-arrow-custom-v14::before, .u-arrow-custom-v14::after,
.u-arrow-custom-v14 .u-arrow-icon::before,
.u-arrow-custom-v14 .u-arrow-icon::after {
  content: "";
  position: absolute;
  left: 50%;
  width: 3px;
  height: 50%;
  background: #72c02c;
  transition: -webkit-transform .3s;
  transition: transform .3s;
  transition: transform .3s, -webkit-transform .3s;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.u-arrow-custom-v14::before,
.u-arrow-custom-v14 .u-arrow-icon::before {
  top: 50%;
  -webkit-transform: translateX(-50%) rotate(-135deg);
  -ms-transform: translateX(-50%) rotate(-135deg);
  transform: translateX(-50%) rotate(-135deg);
  -webkit-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  transform-origin: 50% 0; }

.u-arrow-custom-v14::after,
.u-arrow-custom-v14 .u-arrow-icon::after {
  top: 50%;
  -webkit-transform: translateX(-50%) rotate(-45deg);
  -ms-transform: translateX(-50%) rotate(-45deg);
  transform: translateX(-50%) rotate(-45deg);
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0; }

.u-arrow-custom-v14 .u-arrow-icon::before, .u-arrow-custom-v14 .u-arrow-icon::after {
  z-index: 2;
  height: 0;
  background: #fff;
  transition: height .3s, -webkit-transform .3s;
  transition: height .3s, transform .3s;
  transition: height .3s, transform .3s, -webkit-transform .3s; }

.u-arrow-custom-v14 .u-arrow-title {
  position: absolute;
  top: 50%;
  opacity: 0;
  transition: opacity .3s, -webkit-transform .3s;
  transition: transform .3s, opacity .3s;
  transition: transform .3s, opacity .3s, -webkit-transform .3s;
  margin: 0; }

.u-arrow-custom-v14.js-prev .u-arrow-title {
  left: 100%;
  -webkit-transform: translateY(-50%) translateX(-50%);
  -ms-transform: translateY(-50%) translateX(-50%);
  transform: translateY(-50%) translateX(-50%); }

.u-arrow-custom-v14.js-next::before,
.u-arrow-custom-v14.js-next .u-arrow-icon::before {
  -webkit-transform: translateX(-50%) rotate(135deg);
  -ms-transform: translateX(-50%) rotate(135deg);
  transform: translateX(-50%) rotate(135deg);
  -webkit-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  transform-origin: 50% 0; }

.u-arrow-custom-v14.js-next::after,
.u-arrow-custom-v14.js-next .u-arrow-icon::after {
  -webkit-transform: translateX(-50%) rotate(45deg);
  -ms-transform: translateX(-50%) rotate(45deg);
  transform: translateX(-50%) rotate(45deg);
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0; }

.u-arrow-custom-v14.js-next .u-arrow-title {
  right: 100%;
  text-align: right;
  -webkit-transform: translateY(-50%) translateX(50%);
  -ms-transform: translateY(-50%) translateX(50%);
  transform: translateY(-50%) translateX(50%); }

.u-arrow-custom-v14:hover::before,
.u-arrow-custom-v14:hover .u-arrow-icon::before {
  -webkit-transform: translateX(-50%) rotate(-125deg);
  -ms-transform: translateX(-50%) rotate(-125deg);
  transform: translateX(-50%) rotate(-125deg); }

.u-arrow-custom-v14:hover::after,
.u-arrow-custom-v14:hover .u-arrow-icon::after {
  -webkit-transform: translateX(-50%) rotate(-55deg);
  -ms-transform: translateX(-50%) rotate(-55deg);
  transform: translateX(-50%) rotate(-55deg); }

.u-arrow-custom-v14:hover .u-arrow-icon::before, .u-arrow-custom-v14:hover .u-arrow-icon::after {
  height: 50%; }

.u-arrow-custom-v14:hover .u-arrow-title {
  opacity: 1;
  -webkit-transform: translateY(-50%) translateX(0);
  -ms-transform: translateY(-50%) translateX(0);
  transform: translateY(-50%) translateX(0); }

.u-arrow-custom-v14:hover.js-next::before,
.u-arrow-custom-v14:hover.js-next .u-arrow-icon::before {
  -webkit-transform: translateX(-50%) rotate(125deg);
  -ms-transform: translateX(-50%) rotate(125deg);
  transform: translateX(-50%) rotate(125deg); }

.u-arrow-custom-v14:hover.js-next::after,
.u-arrow-custom-v14:hover.js-next .u-arrow-icon::after {
  -webkit-transform: translateX(-50%) rotate(55deg);
  -ms-transform: translateX(-50%) rotate(55deg);
  transform: translateX(-50%) rotate(55deg); }

/*------------------------------------
  Badges
------------------------------------*/
[class*="u-badge"] {
  position: absolute;
  display: inline-block;
  text-align: center;
  font-size: 0.92857rem;
  color: #555;
  z-index: 3; }

[class*="u-badge"]:not([class*="--top-left"]):not([class*="--bottom-left"]):not([class*="--bottom-right"]) {
  top: 0;
  right: 0;
  -webkit-transform: translate(50%, -50%);
  -ms-transform: translate(50%, -50%);
  transform: translate(50%, -50%); }

.u-badge--top-left {
  top: 0;
  left: 0;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }

.u-badge--bottom-left {
  bottom: 0;
  left: 0;
  -webkit-transform: translate(-50%, 50%);
  -ms-transform: translate(-50%, 50%);
  transform: translate(-50%, 50%); }

.u-badge--bottom-right {
  bottom: 0;
  right: 0;
  -webkit-transform: translate(50%, 50%);
  -ms-transform: translate(50%, 50%);
  transform: translate(50%, 50%); }

/*------------------------------------
  Badges v1
------------------------------------*/
[class*="u-badge-v1"] {
  background-color: #ddd;
  box-sizing: content-box; }

.u-badge-v1 {
  min-width: 1.28571rem;
  min-height: 1.28571rem;
  line-height: 1.28571rem;
  padding: 0.21429rem; }

.u-badge-v1.g-brd-around {
  line-height: 1.14286rem; }

.u-badge-v1--xs {
  min-width: 1rem;
  min-height: 1rem;
  line-height: 1rem;
  font-size: 0.71429rem;
  padding: 0.14286rem; }

.u-badge-v1--xs.g-brd-around {
  line-height: 0.85714rem; }

.u-badge-v1--sm {
  min-width: 1.14286rem;
  min-height: 1.14286rem;
  line-height: 1.14286rem;
  font-size: 0.78571rem;
  padding: 0.14286rem; }

.u-badge-v1--sm.g-brd-around {
  line-height: 1rem; }

.u-badge-v1--md {
  min-width: 1.28571rem;
  min-height: 1.28571rem;
  line-height: 1.28571rem;
  font-size: 0.92857rem;
  padding: 0.21429rem; }

.u-badge-v1--md.g-brd-around {
  line-height: 1.14286rem; }

.u-badge-v1--lg {
  min-width: 1.42857rem;
  min-height: 1.42857rem;
  line-height: 1.42857rem;
  font-size: 1.07143rem;
  padding: 0.21429rem; }

.u-badge-v1--lg.g-brd-around {
  line-height: 1.28571rem; }

.u-badge-v1--xl {
  min-width: 1.85714rem;
  min-height: 1.85714rem;
  line-height: 1.85714rem;
  font-size: 1.21429rem;
  padding: 0.21429rem; }

.u-badge-v1--xl.g-brd-around {
  line-height: 1.71429rem; }

/*------------------------------------
  Badges v2
------------------------------------*/
[class*="u-badge-v2"] {
  background-color: #72c02c;
  border-radius: 50%; }

.u-badge-v2 {
  width: 14px;
  height: 14px; }

.u-badge-v2--xs {
  width: 8px;
  height: 8px; }

.u-badge-v2--sm {
  width: 12px;
  height: 12px; }

.u-badge-v2--md {
  width: 14px;
  height: 14px; }

.u-badge-v2--lg {
  width: 16px;
  height: 16px; }

.u-badge-v2--xl {
  width: 18px;
  height: 18px; }

/*------------------------------------
  Badges v3
------------------------------------*/
[class*="u-badge-v3"] {
  line-height: 1;
  color: #fff;
  text-shadow: 0 1px 1px #555, 0 -1px 1px #555, 1px 0 1px #555, -1px 0 1px #555; }

.u-badge-v3 {
  font-size: 1rem; }

.u-badge-v3--xs {
  font-size: 0.71429rem; }

.u-badge-v3--sm {
  font-size: 0.85714rem; }

.u-badge-v3--md {
  font-size: 1rem; }

.u-badge-v3--lg {
  font-size: 1.14286rem; }

.u-badge-v3--xl {
  font-size: 1.14286rem; }

hr {
  margin-top: 2rem;
  margin-bottom: 2rem; }

/* Solid Divider */
.u-divider-solid {
  border-top-style: solid; }

/* Dotted Divider */
.u-divider-dotted {
  border-top-style: dotted; }

/* Dashed Divider */
.u-divider-dashed {
  border-top-style: dashed; }

/* Double Solid Divider */
.u-divider-db-solid {
  height: 5px;
  border-top: 1px solid transparent;
  border-bottom: 1px solid transparent; }

/* Double Dashed Divider */
.u-divider-db-dashed {
  height: 5px;
  border-top: 1px dashed transparent;
  border-bottom: 1px dashed transparent; }

/* Double Dotted Divider */
.u-divider-db-dotted {
  height: 5px;
  border-top: 1px dotted transparent;
  border-bottom: 1px dotted transparent; }

/* Linear Gradient Divider */
.u-divider-linear-gradient {
  height: 1px;
  border: none; }

.u-divider-linear-gradient--gray-light-v2 {
  background-image: linear-gradient(to right, transparent, #ccc, transparent); }

.u-divider-linear-gradient--gray-light-v3 {
  background-image: linear-gradient(to right, transparent, #ddd, transparent); }

.u-divider {
  position: relative;
  border-top-width: 1px; }

.u-divider__icon {
  position: absolute;
  top: -1.42857rem;
  width: 2.85714rem;
  height: 2.85714rem;
  font-size: 1.28571rem;
  line-height: 2.85714rem;
  text-align: center;
  font-style: normal; }

.u-divider__icon--indented {
  box-shadow: 0 0 0 15px #fff; }

.u-divider-center {
  text-align: center; }

.u-divider-right {
  text-align: right; }

.u-divider-center .u-divider__icon {
  left: auto;
  right: auto;
  margin-left: -1.42857rem; }

.u-divider-right .u-divider__icon {
  left: auto;
  right: 0; }

/*------------------------------------
  Go To v1
------------------------------------*/
[class*="u-go-to"] {
  display: none; }

.u-go-to-v1 {
  width: 3.57143rem;
  height: 3.57143rem;
  display: block;
  background-color: rgba(255, 255, 255, 0.7);
  color: #555;
  border-radius: 50%;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.15);
  transition: .3s ease-out;
  z-index: 11; }

.u-go-to-v1 i {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }

.u-go-to-v1:hover, .u-go-to-v1:focus:hover {
  text-decoration: none;
  color: #fff;
  background-color: #72c02c; }

.u-go-to-v1:focus {
  text-decoration: none;
  color: #555;
  background-color: rgba(255, 255, 255, 0.7); }

@media (max-width: 575px) {
  .u-go-to-v1 {
    -webkit-transform: scale(0.8, 0.8);
    -ms-transform: scale(0.8, 0.8);
    transform: scale(0.8, 0.8); } }
/*------------------------------------
  Go To v2
------------------------------------*/
[class*="u-go-to"] {
  display: none; }

.u-go-to-v2 {
  display: block;
  background-color: rgba(0, 0, 0, 0.3);
  color: #fff;
  border-radius: 3px;
  transition: .3s ease-out;
  z-index: 11; }

.u-go-to-v2 i {
  width: 2.85714rem;
  height: 2.85714rem;
  display: block;
  text-align: center;
  line-height: 2.85714rem; }

.u-go-to-v2:hover, .u-go-to-v2:focus:hover {
  text-decoration: none;
  color: #fff;
  background-color: #72c02c; }

.u-go-to-v2:focus {
  text-decoration: none;
  color: #fff;
  background-color: rgba(0, 0, 0, 0.3); }

@media (max-width: 575px) {
  .u-go-to-v2 {
    -webkit-transform: scale(0.8, 0.8);
    -ms-transform: scale(0.8, 0.8);
    transform: scale(0.8, 0.8); } }
/*------------------------------------
  Go To v3
------------------------------------*/
[class*="u-go-to"] {
  display: none; }

.u-go-to-v3 {
  padding: 5px;
  display: block;
  background-color: rgba(255, 255, 255, 0.7);
  color: #555;
  border-radius: 50%;
  transition: .3s ease-out;
  z-index: 11; }

.u-go-to-v3 i {
  width: 3.57143rem;
  height: 3.57143rem;
  display: block;
  text-align: center;
  border-radius: 50%;
  font-size: 1.14286rem;
  line-height: 3.28571rem;
  border: solid 1px #555;
  transition: .3s ease-out; }

.u-go-to-v3:hover, .u-go-to-v3:focus:hover {
  text-decoration: none;
  color: #72c02c;
  background-color: white; }

.u-go-to-v3:hover i, .u-go-to-v3:focus:hover i {
  border-color: #72c02c; }

.u-go-to-v3:focus {
  text-decoration: none;
  color: #555;
  background-color: rgba(255, 255, 255, 0.7); }

.u-go-to-v3:focus i {
  border-color: #555; }

@media (max-width: 575px) {
  .u-go-to-v3 {
    -webkit-transform: scale(0.8, 0.8);
    -ms-transform: scale(0.8, 0.8);
    transform: scale(0.8, 0.8); } }
/*------------------------------------
  Go To v4
------------------------------------*/
.u-go-to-v4 {
  position: relative;
  width: 22px;
  height: 35px;
  border: 2px solid #72c02c;
  border-radius: 15px; }

.u-go-to-v4::before {
  width: 7px;
  height: 7px;
  background-color: #fff;
  border-radius: 50%;
  content: " ";
  position: absolute !important;
  left: 50% !important;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  -webkit-backface-visibility: hidden;
  -webkit-animation-duration: 2s;
  animation-duration: 2s;
  -webkit-animation-name: u-go-to-v4;
  animation-name: u-go-to-v4;
  -webkit-animation-timing-function: linear;
  animation-timing-function: linear;
  -webkit-animation-iteration-count: infinite;
  animation-iteration-count: infinite;
  -webkit-animation-direction: alternate;
  animation-direction: alternate; }

@-webkit-keyframes u-go-to-v4 {
  0% {
    top: 20%;
    bottom: 0; }
  50% {
    top: 50%;
    bottom: 0; }
  100% {
    top: 20%;
    bottom: 100%; } }
@keyframes u-go-to-v4 {
  0% {
    top: 20%;
    bottom: 0; }
  50% {
    top: 50%;
    bottom: 0; }
  100% {
    top: 20%;
    bottom: 100%; } }
/*------------------------------------
  Headers
------------------------------------*/
.u-header {
  position: relative;
  left: 0;
  right: 0;
  width: 100%;
  font-size: 0.92857rem;
  z-index: 101; }

.u-header [aria-labelledby] {
  opacity: 0; }

.u-header [aria-labelledby][role="tabpanel"] {
  opacity: 1; }

.u-header [aria-labelledby].u-dropdown--css-animation,
.u-header [aria-labelledby].u-dropdown--jquery-slide {
  opacity: 1; }

.u-header--abs-top, .u-header--abs-bottom, .u-header--abs-top-2nd-screen {
  position: absolute; }

.u-header--abs-top-2nd-screen {
  top: 100%;
  bottom: auto; }

.u-header--abs-top {
  top: 0;
  bottom: auto; }

.u-header--abs-bottom {
  top: auto;
  bottom: 0; }

.u-header--abs-bottom .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: .125rem; }

.u-header--sticky-top, .u-header--sticky-bottom {
  position: fixed; }

.u-header--sticky-top {
  bottom: auto;
  top: 0; }

.u-header--sticky-top.u-negative-top {
  bottom: 100%;
  top: auto; }

.u-header--sticky-bottom {
  top: auto;
  bottom: 0; }

.u-header--sticky-bottom .dropdown-menu {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: .125rem; }

.u-header--invisible {
  display: none; }

.u-header--moved-up {
  -webkit-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0); }

.u-header--moved-up.u-negative-top {
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0); }

.u-header--faded {
  opacity: 0;
  visibility: hidden; }

.u-header--untransitioned {
  transition: none !important; }

.u-header__section--hidden {
  position: relative; }

.u-header--floating {
  position: absolute;
  left: 0;
  right: 0; }

.u-header--floating.js-header-fix-moment {
  margin-top: 0 !important; }

.u-header--floating.js-header-fix-moment .navbar {
  padding-left: 0;
  padding-right: 0; }

.u-header[data-header-fix-effect] {
  transition: .3s ease; }

.u-header-reduced--shift.js-header-change-moment {
  padding-top: 0 !important;
  padding-bottom: 0 !important; }

.u-header.js-header-fix-moment {
  position: fixed;
  top: 0;
  bottom: auto; }

.u-header__section {
  position: relative;
  z-index: 1; }

.u-header__section:nth-child(1) {
  z-index: 5; }

.u-header__section:nth-child(2) {
  z-index: 4; }

.u-header__section:nth-child(3) {
  z-index: 3; }

.u-header__section:nth-child(4) {
  z-index: 2; }

.u-header__section:nth-child(5) {
  z-index: 1; }

.u-header__sections-container {
  position: relative;
  z-index: 2; }

.u-header__logo {
  position: relative;
  z-index: 1; }

.u-header__logo-img {
  top: 0;
  left: 0;
  /*transition: .3s ease;*/ }

.u-header__logo-img:not(.u-header__logo-img--main) {
  position: absolute;
  opacity: 0; }

.dropdown-menu.u-dropdown--reverse-position {
  left: auto;
  right: 0; }

.js-header-change-moment.g-bg-white--shift {
  background-color: #fff; }

.js-header-change-moment.g-bg-light-semi-transparent--shift {
  background-color: rgba(255, 255, 255, 0.9); }

.js-header-change-moment.g-bg-black--shift {
  background-color: #000; }

.js-header-change-moment.g-bg-dark-semi-transparent--shift {
  background-color: rgba(0, 0, 0, 0.9); }

.js-header-change-moment.g-bg-primary--shift {
  background-color: #72c02c; }

.js-header-change-moment.g-bg-primary-semi-transparent--shift {
  background-color: rgba(114, 192, 44, 0.9); }

.u-header__section--light .navbar-brand,
.u-header__section--light .navbar-toggler,
.u-header__section--light--shift.js-header-change-moment .navbar-brand,
.u-header__section--light--shift.js-header-change-moment .navbar-toggler {
  color: #555555; }

.u-header__section--light .navbar-brand:focus,
.u-header__section--light .navbar-brand:hover,
.u-header__section--light .navbar-toggler:focus,
.u-header__section--light .navbar-toggler:hover,
.u-header__section--light--shift.js-header-change-moment .navbar-brand:focus,
.u-header__section--light--shift.js-header-change-moment .navbar-brand:hover,
.u-header__section--light--shift.js-header-change-moment .navbar-toggler:focus,
.u-header__section--light--shift.js-header-change-moment .navbar-toggler:hover {
  color: #555555; }

.u-header__section--light .navbar-nav:not([class*="u-main-nav-v"]) .nav-link,
.u-header__section--light--shift.js-header-change-moment .navbar-nav:not([class*="u-main-nav-v"]) .nav-link {
  color: #555555; }

.u-header__section--light .navbar-nav:not([class*="u-main-nav-v"]) .nav-link:focus,
.u-header__section--light .navbar-nav:not([class*="u-main-nav-v"]) .nav-link:hover,
.u-header__section--light--shift.js-header-change-moment .navbar-nav:not([class*="u-main-nav-v"]) .nav-link:focus,
.u-header__section--light--shift.js-header-change-moment .navbar-nav:not([class*="u-main-nav-v"]) .nav-link:hover {
  color: #555555; }

.u-header__section--light .navbar-nav:not([class*="u-main-nav-v"]) .nav-link.disabled,
.u-header__section--light--shift.js-header-change-moment .navbar-nav:not([class*="u-main-nav-v"]) .nav-link.disabled {
  color: rgba(85, 85, 85, 0.5); }

.u-header__section--light .navbar-nav:not([class*="u-main-nav-v"]) .open > .nav-link,
.u-header__section--light .navbar-nav:not([class*="u-main-nav-v"]) .active > .nav-link,
.u-header__section--light .navbar-nav:not([class*="u-main-nav-v"]) .nav-link.open,
.u-header__section--light .navbar-nav:not([class*="u-main-nav-v"]) .nav-link.active,
.u-header__section--light--shift.js-header-change-moment .navbar-nav:not([class*="u-main-nav-v"]) .open > .nav-link,
.u-header__section--light--shift.js-header-change-moment .navbar-nav:not([class*="u-main-nav-v"]) .active > .nav-link,
.u-header__section--light--shift.js-header-change-moment .navbar-nav:not([class*="u-main-nav-v"]) .nav-link.open,
.u-header__section--light--shift.js-header-change-moment .navbar-nav:not([class*="u-main-nav-v"]) .nav-link.active {
  color: #72c02c; }

.u-header__section--light .navbar-toggler,
.u-header__section--light--shift.js-header-change-moment .navbar-toggler {
  border-color: rgba(85, 85, 85, 0.3); }

.u-header__section--light .navbar-toggler-icon,
.u-header__section--light--shift.js-header-change-moment .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba($g-color-main, .5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E"); }

.u-header__section--light .navbar-text,
.u-header__section--light--shift.js-header-change-moment .navbar-text {
  color: rgba(85, 85, 85, 0.7); }

.u-header__section--dark .navbar-brand,
.u-header__section--dark .navbar-toggler,
.u-header__section--dark--shift.js-header-change-moment .navbar-brand,
.u-header__section--dark--shift.js-header-change-moment .navbar-toggler,
.u-header__section--primary .navbar-brand,
.u-header__section--primary .navbar-toggler,
.u-header__section--primary--shift.js-header-change-moment .navbar-brand,
.u-header__section--primary--shift.js-header-change-moment .navbar-toggler {
  color: #fff; }

.u-header__section--dark .navbar-brand:focus,
.u-header__section--dark .navbar-brand:hover,
.u-header__section--dark .navbar-toggler:focus,
.u-header__section--dark .navbar-toggler:hover,
.u-header__section--dark--shift.js-header-change-moment .navbar-brand:focus,
.u-header__section--dark--shift.js-header-change-moment .navbar-brand:hover,
.u-header__section--dark--shift.js-header-change-moment .navbar-toggler:focus,
.u-header__section--dark--shift.js-header-change-moment .navbar-toggler:hover,
.u-header__section--primary .navbar-brand:focus,
.u-header__section--primary .navbar-brand:hover,
.u-header__section--primary .navbar-toggler:focus,
.u-header__section--primary .navbar-toggler:hover,
.u-header__section--primary--shift.js-header-change-moment .navbar-brand:focus,
.u-header__section--primary--shift.js-header-change-moment .navbar-brand:hover,
.u-header__section--primary--shift.js-header-change-moment .navbar-toggler:focus,
.u-header__section--primary--shift.js-header-change-moment .navbar-toggler:hover {
  color: #fff; }

.u-header__section--dark .navbar-nav:not([class*="u-main-nav-v"]) .nav-link,
.u-header__section--dark--shift.js-header-change-moment .navbar-nav:not([class*="u-main-nav-v"]) .nav-link,
.u-header__section--primary .navbar-nav:not([class*="u-main-nav-v"]) .nav-link,
.u-header__section--primary--shift.js-header-change-moment .navbar-nav:not([class*="u-main-nav-v"]) .nav-link {
  color: rgba(255, 255, 255, 0.8); }

.u-header__section--dark .navbar-nav:not([class*="u-main-nav-v"]) .nav-link:focus,
.u-header__section--dark .navbar-nav:not([class*="u-main-nav-v"]) .nav-link:hover,
.u-header__section--dark--shift.js-header-change-moment .navbar-nav:not([class*="u-main-nav-v"]) .nav-link:focus,
.u-header__section--dark--shift.js-header-change-moment .navbar-nav:not([class*="u-main-nav-v"]) .nav-link:hover,
.u-header__section--primary .navbar-nav:not([class*="u-main-nav-v"]) .nav-link:focus,
.u-header__section--primary .navbar-nav:not([class*="u-main-nav-v"]) .nav-link:hover,
.u-header__section--primary--shift.js-header-change-moment .navbar-nav:not([class*="u-main-nav-v"]) .nav-link:focus,
.u-header__section--primary--shift.js-header-change-moment .navbar-nav:not([class*="u-main-nav-v"]) .nav-link:hover {
  color: #fff; }

.u-header__section--dark .navbar-nav:not([class*="u-main-nav-v"]) .nav-link.disabled,
.u-header__section--dark--shift.js-header-change-moment .navbar-nav:not([class*="u-main-nav-v"]) .nav-link.disabled,
.u-header__section--primary .navbar-nav:not([class*="u-main-nav-v"]) .nav-link.disabled,
.u-header__section--primary--shift.js-header-change-moment .navbar-nav:not([class*="u-main-nav-v"]) .nav-link.disabled {
  color: rgba(255, 255, 255, 0.5); }

.u-header__section--dark .navbar-nav:not([class*="u-main-nav-v"]) .open > .nav-link,
.u-header__section--dark .navbar-nav:not([class*="u-main-nav-v"]) .active > .nav-link,
.u-header__section--dark .navbar-nav:not([class*="u-main-nav-v"]) .nav-link.open,
.u-header__section--dark .navbar-nav:not([class*="u-main-nav-v"]) .nav-link.active,
.u-header__section--dark--shift.js-header-change-moment .navbar-nav:not([class*="u-main-nav-v"]) .open > .nav-link,
.u-header__section--dark--shift.js-header-change-moment .navbar-nav:not([class*="u-main-nav-v"]) .active > .nav-link,
.u-header__section--dark--shift.js-header-change-moment .navbar-nav:not([class*="u-main-nav-v"]) .nav-link.open,
.u-header__section--dark--shift.js-header-change-moment .navbar-nav:not([class*="u-main-nav-v"]) .nav-link.active,
.u-header__section--primary .navbar-nav:not([class*="u-main-nav-v"]) .open > .nav-link,
.u-header__section--primary .navbar-nav:not([class*="u-main-nav-v"]) .active > .nav-link,
.u-header__section--primary .navbar-nav:not([class*="u-main-nav-v"]) .nav-link.open,
.u-header__section--primary .navbar-nav:not([class*="u-main-nav-v"]) .nav-link.active,
.u-header__section--primary--shift.js-header-change-moment .navbar-nav:not([class*="u-main-nav-v"]) .open > .nav-link,
.u-header__section--primary--shift.js-header-change-moment .navbar-nav:not([class*="u-main-nav-v"]) .active > .nav-link,
.u-header__section--primary--shift.js-header-change-moment .navbar-nav:not([class*="u-main-nav-v"]) .nav-link.open,
.u-header__section--primary--shift.js-header-change-moment .navbar-nav:not([class*="u-main-nav-v"]) .nav-link.active {
  color: #fff; }

.u-header__section--dark .navbar-toggler,
.u-header__section--dark--shift.js-header-change-moment .navbar-toggler,
.u-header__section--primary .navbar-toggler,
.u-header__section--primary--shift.js-header-change-moment .navbar-toggler {
  border-color: rgba(255, 255, 255, 0.3); }

.u-header__section--dark .navbar-toggler-icon,
.u-header__section--dark--shift.js-header-change-moment .navbar-toggler-icon,
.u-header__section--primary .navbar-toggler-icon,
.u-header__section--primary--shift.js-header-change-moment .navbar-toggler-icon {
  background-image: url("data:image/svg+xml;charset=utf8,%3Csvg viewBox='0 0 32 32' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath stroke='rgba($g-color-white, .5)' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 8h24M4 16h24M4 24h24'/%3E%3C/svg%3E"); }

.u-header__section--dark .navbar-text,
.u-header__section--dark--shift.js-header-change-moment .navbar-text,
.u-header__section--primary .navbar-text,
.u-header__section--primary--shift.js-header-change-moment .navbar-text {
  color: rgba(255, 255, 255, 0.7); }

.navbar > .container {
  position: relative; }

@media all and (min-width: 576px) {
  .u-header--abs-top--sm, .u-header--abs-bottom--sm, .u-header--abs-top-2nd-screen--sm {
    position: absolute; }

  .u-header--abs-top-2nd-screen--sm {
    top: 100%; }

  .u-header--abs-top--sm {
    bottom: auto;
    top: 0; }

  .u-header--abs-bottom--sm {
    top: auto;
    bottom: 0; }

  .u-header--sticky-top--sm, .u-header--sticky-bottom--sm {
    position: fixed; }

  .u-header--sticky-top--sm {
    bottom: auto;
    top: 0; }

  .u-header--sticky-bottom--sm {
    top: auto;
    bottom: 0; }

  .u-header--floating--sm {
    position: absolute;
    left: 0;
    right: 0; }

  .u-header--floating--sm.js-header-fix-moment {
    margin-top: 0 !important; }

  .u-header--floating--sm.js-header-fix-moment .navbar {
    padding-left: 0;
    padding-right: 0; } }
@media all and (min-width: 768px) {
  .u-header--abs-top--md, .u-header--abs-bottom--md, .u-header--abs-top-2nd-screen--md {
    position: absolute; }

  .u-header--abs-top-2nd-screen--md {
    top: 100%; }

  .u-header--abs-top--md {
    bottom: auto;
    top: 0; }

  .u-header--abs-bottom--md {
    top: auto;
    bottom: 0; }

  .u-header--sticky-top--md, .u-header--sticky-bottom--md {
    position: fixed; }

  .u-header--sticky-top--md {
    bottom: auto;
    top: 0; }

  .u-header--sticky-bottom--md {
    top: auto;
    bottom: 0; }

  .u-header--floating--md {
    position: absolute;
    left: 0;
    right: 0; }

  .u-header--floating--md.js-header-fix-moment {
    margin-top: 0 !important; }

  .u-header--floating--md.js-header-fix-moment .navbar {
    padding-left: 0;
    padding-right: 0; } }
@media all and (min-width: 992px) {
  .u-header--abs-top--lg, .u-header--abs-bottom--lg, .u-header--abs-top-2nd-screen--lg {
    position: absolute; }

  .u-header--abs-top-2nd-screen--lg {
    top: 100%; }

  .u-header--abs-top--lg {
    bottom: auto;
    top: 0; }

  .u-header--abs-bottom--lg {
    top: auto;
    bottom: 0; }

  .u-header--sticky-top--lg, .u-header--sticky-bottom--lg {
    position: fixed; }

  .u-header--sticky-top--lg {
    bottom: auto;
    top: 0; }

  .u-header--sticky-bottom--lg {
    top: auto;
    bottom: 0; }

  .u-header--floating--lg {
    position: absolute;
    left: 0;
    right: 0; }

  .u-header--floating--lg.js-header-fix-moment {
    margin-top: 0 !important; }

  .u-header--floating--lg.js-header-fix-moment .navbar {
    padding-left: 0;
    padding-right: 0; } }
@media all and (min-width: 1200px) {
  .u-header--abs-top--xl, .u-header--abs-bottom--xl, .u-header--abs-top-2nd-screen--xl {
    position: absolute; }

  .u-header--abs-top-2nd-screen--xl {
    top: 100%; }

  .u-header--abs-top--xl {
    bottom: auto;
    top: 0; }

  .u-header--abs-bottom--xl {
    top: auto;
    bottom: 0; }

  .u-header--sticky-top--xl, .u-header--sticky-bottom--xl {
    position: fixed; }

  .u-header--sticky-top--xl {
    bottom: auto;
    top: 0; }

  .u-header--sticky-bottom--xl {
    top: auto;
    bottom: 0; }

  .u-header--floating--xl {
    position: absolute;
    left: 0;
    right: 0; }

  .u-header--floating--xl.js-header-fix-moment {
    margin-top: 0 !important; }

  .u-header--floating--xl.js-header-fix-moment .navbar {
    padding-left: 0;
    padding-right: 0; } }
@media all and (max-width: 1199px) {
  .navbar-expand-xl > .container,
  .navbar-expand-xl > .container-fluid {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start; }

  .navbar-expand-xl .navbar-collapse {
    width: 100%;
    -webkit-box-ordinal-group: 11;
    -webkit-order: 10;
    -ms-flex-order: 10;
    order: 10; } }
@media all and (max-width: 991px) {
  .navbar-expand-lg > .container,
  .navbar-expand-lg > .container-fluid {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start; }

  .navbar-expand-lg .navbar-collapse {
    width: 100%;
    -webkit-box-ordinal-group: 11;
    -webkit-order: 10;
    -ms-flex-order: 10;
    order: 10; } }
@media all and (max-width: 767px) {
  .navbar-expand-md > .container,
  .navbar-expand-md > .container-fluid {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start; }

  .navbar-expand-md .navbar-collapse {
    width: 100%;
    -webkit-box-ordinal-group: 11;
    -webkit-order: 10;
    -ms-flex-order: 10;
    order: 10; } }
@media all and (max-width: 575px) {
  .navbar-expand-sm > .container,
  .navbar-expand-sm > .container-fluid {
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: flex-start; }

  .navbar-expand-sm .navbar-collapse {
    width: 100%;
    -webkit-box-ordinal-group: 11;
    -webkit-order: 10;
    -ms-flex-order: 10;
    order: 10; } }
/*------------------------------------
	Header Togglers
------------------------------------*/
.u-header-toggler {
  display: block;
  width: 5rem;
  height: 3.57143rem;
  z-index: 102;
  /* Hamburgers */ }

.u-header-toggler .hamburger {
  line-height: 1; }

/* Toggler Positioning */
@media all and (min-width: 0) {
  .u-header-toggler--top-right, .u-header-toggler--top-right.btn, .u-header-toggler--top-left, .u-header-toggler--top-left.btn, .u-header-toggler--bottom-right, .u-header-toggler--bottom-right.btn, .u-header-toggler--bottom-left, .u-header-toggler--bottom-left.btn {
    position: fixed; }

  .u-header-toggler--top-right, .u-header-toggler--top-right.btn, .u-header-toggler--top-left, .u-header-toggler--top-left.btn {
    top: 1.42857rem; }

  .u-header-toggler--bottom-right, .u-header-toggler--bottom-right.btn, .u-header-toggler--bottom-left, .u-header-toggler--bottom-left.btn {
    bottom: 1.42857rem; }

  .u-header-toggler--top-left, .u-header-toggler--bottom-left {
    left: 1.42857rem; }

  .u-header-toggler--top-right, .u-header-toggler--bottom-right {
    right: 1.42857rem; } }
/* Toggler Positioning (sm) */
@media all and (min-width: 576px) {
  .u-header-toggler--top-right--sm, .u-header-toggler--top-right--sm.btn, .u-header-toggler--top-left--sm, .u-header-toggler--top-left--sm.btn, .u-header-toggler--bottom-right--sm, .u-header-toggler--bottom-right--sm.btn, .u-header-toggler--bottom-left--sm, .u-header-toggler--bottom-left--sm.btn {
    position: fixed; }

  .u-header-toggler--top-right--sm, .u-header-toggler--top-right--sm.btn, .u-header-toggler--top-left--sm, .u-header-toggler--top-left--sm.btn {
    top: 1.42857rem; }

  .u-header-toggler--bottom-right--sm, .u-header-toggler--bottom-right--sm.btn, .u-header-toggler--bottom-left--sm, .u-header-toggler--bottom-left--sm.btn {
    bottom: 1.42857rem; }

  .u-header-toggler--top-left--sm, .u-header-toggler--bottom-left--sm {
    left: 1.42857rem; }

  .u-header-toggler--top-right--sm, .u-header-toggler--bottom-right--sm {
    right: 1.42857rem; } }
/* Toggler Positioning (md) */
@media all and (min-width: 768px) {
  .u-header-toggler--top-right--md, .u-header-toggler--top-right--md.btn, .u-header-toggler--top-left--md, .u-header-toggler--top-left--md.btn, .u-header-toggler--bottom-right--md, .u-header-toggler--bottom-right--md.btn, .u-header-toggler--bottom-left--md, .u-header-toggler--bottom-left--md.btn {
    position: fixed; }

  .u-header-toggler--top-right--md, .u-header-toggler--top-right--md.btn, .u-header-toggler--top-left--md, .u-header-toggler--top-left--md.btn {
    top: 1.42857rem; }

  .u-header-toggler--bottom-right--md, .u-header-toggler--bottom-right--md.btn, .u-header-toggler--bottom-left--md, .u-header-toggler--bottom-left--md.btn {
    bottom: 1.42857rem; }

  .u-header-toggler--top-left--md, .u-header-toggler--bottom-left--md {
    left: 1.42857rem; }

  .u-header-toggler--top-right--md, .u-header-toggler--bottom-right--md {
    right: 1.42857rem; } }
/* Toggler Positioning (lg) */
@media all and (min-width: 992px) {
  .u-header-toggler--top-right--lg, .u-header-toggler--top-right--lg.btn, .u-header-toggler--top-left--lg, .u-header-toggler--top-left--lg.btn, .u-header-toggler--bottom-right--lg, .u-header-toggler--bottom-right--lg.btn, .u-header-toggler--bottom-left--lg, .u-header-toggler--bottom-left--lg.btn {
    position: fixed; }

  .u-header-toggler--top-right--lg, .u-header-toggler--top-right--lg.btn, .u-header-toggler--top-left--lg, .u-header-toggler--top-left--lg.btn {
    top: 1.42857rem; }

  .u-header-toggler--bottom-right--lg, .u-header-toggler--bottom-right--lg.btn, .u-header-toggler--bottom-left--lg, .u-header-toggler--bottom-left--lg.btn {
    bottom: 1.42857rem; }

  .u-header-toggler--top-left--lg, .u-header-toggler--bottom-left--lg {
    left: 1.42857rem; }

  .u-header-toggler--top-right--lg, .u-header-toggler--bottom-right--lg {
    right: 1.42857rem; } }
/* Toggler Positioning (xl) */
@media all and (min-width: 1200px) {
  .u-header-toggler--top-right--xl, .u-header-toggler--top-right--xl.btn, .u-header-toggler--top-left--xl, .u-header-toggler--top-left--xl.btn, .u-header-toggler--bottom-right--xl, .u-header-toggler--bottom-right--xl.btn, .u-header-toggler--bottom-left--xl, .u-header-toggler--bottom-left--xl.btn {
    position: fixed; }

  .u-header-toggler--top-right--xl, .u-header-toggler--top-right--xl.btn, .u-header-toggler--top-left--xl, .u-header-toggler--top-left--xl.btn {
    top: 1.42857rem; }

  .u-header-toggler--bottom-right--xl, .u-header-toggler--bottom-right--xl.btn, .u-header-toggler--bottom-left--xl, .u-header-toggler--bottom-left--xl.btn {
    bottom: 1.42857rem; }

  .u-header-toggler--top-left--xl, .u-header-toggler--bottom-left--xl {
    left: 1.42857rem; }

  .u-header-toggler--top-right--xl, .u-header-toggler--bottom-right--xl {
    right: 1.42857rem; } }
/*------------------------------------
  Fullscreen Header
------------------------------------*/
[class*="u-header--fullscreen"] {
  text-align: center;
  visibility: hidden; }

[class*="u-header--fullscreen"] .u-header__sections-container {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: opacity .5s ease, visibility .5s ease; }

[class*="u-header--fullscreen"] .mCustomScrollBox {
  width: 100%;
  height: auto; }

[class*="u-header--fullscreen"] .u-header__section {
  width: 100%; }

[class*="u-header--fullscreen"] .navbar-nav[class*="u-main-nav-v"] > li > a {
  display: inline-block; }

[class*="u-header--fullscreen"] .u-header__overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: none;
  opacity: 0;
  visibility: hidden;
  border-radius: 50%;
  transition: opacity .5s ease, visibility .5s ease, -webkit-transform .5s ease;
  transition: transform .5s ease, opacity .5s ease, visibility .5s ease;
  transition: transform .5s ease, opacity .5s ease, visibility .5s ease, -webkit-transform .5s ease; }

.u-header.u-header--fullscreen--top-left, .u-header.u-header--fullscreen--top-right, .u-header.u-header--fullscreen--bottom-left, .u-header.u-header--fullscreen--bottom-right {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0; }

.u-header.u-header--fullscreen--top-left .u-header__overlay, .u-header.u-header--fullscreen--top-right .u-header__overlay, .u-header.u-header--fullscreen--bottom-left .u-header__overlay, .u-header.u-header--fullscreen--bottom-right .u-header__overlay {
  display: block; }

.u-header.u-header--fullscreen--top-left.u-header--fullscreen-showed, .u-header.u-header--fullscreen--top-right.u-header--fullscreen-showed, .u-header.u-header--fullscreen--bottom-left.u-header--fullscreen-showed, .u-header.u-header--fullscreen--bottom-right.u-header--fullscreen-showed {
  visibility: visible; }

.u-header.u-header--fullscreen--top-left.u-header--fullscreen-showed .u-header__overlay,
.u-header.u-header--fullscreen--top-left.u-header--fullscreen-showed .u-header__sections-container, .u-header.u-header--fullscreen--top-right.u-header--fullscreen-showed .u-header__overlay,
.u-header.u-header--fullscreen--top-right.u-header--fullscreen-showed .u-header__sections-container, .u-header.u-header--fullscreen--bottom-left.u-header--fullscreen-showed .u-header__overlay,
.u-header.u-header--fullscreen--bottom-left.u-header--fullscreen-showed .u-header__sections-container, .u-header.u-header--fullscreen--bottom-right.u-header--fullscreen-showed .u-header__overlay,
.u-header.u-header--fullscreen--bottom-right.u-header--fullscreen-showed .u-header__sections-container {
  opacity: 1;
  visibility: visible; }

.u-header.u-header--fullscreen--top-left.u-header--fullscreen-showed .u-header__sections-container, .u-header.u-header--fullscreen--top-right.u-header--fullscreen-showed .u-header__sections-container, .u-header.u-header--fullscreen--bottom-left.u-header--fullscreen-showed .u-header__sections-container, .u-header.u-header--fullscreen--bottom-right.u-header--fullscreen-showed .u-header__sections-container {
  transition-delay: .5s; }

.u-header.u-header--fullscreen--top-left .container, .u-header.u-header--fullscreen--top-right .container, .u-header.u-header--fullscreen--bottom-left .container, .u-header.u-header--fullscreen--bottom-right .container {
  width: 100%; }

.u-header.u-header--fullscreen--top-left .navbar, .u-header.u-header--fullscreen--top-right .navbar, .u-header.u-header--fullscreen--bottom-left .navbar, .u-header.u-header--fullscreen--bottom-right .navbar {
  min-width: 22.85714rem;
  width: 50%;
  margin-left: auto;
  margin-right: auto; }

.u-header.u-header--fullscreen--top-left .dropdown-menu, .u-header.u-header--fullscreen--top-right .dropdown-menu, .u-header.u-header--fullscreen--bottom-left .dropdown-menu, .u-header.u-header--fullscreen--bottom-right .dropdown-menu {
  text-align: inherit;
  position: static;
  width: 100%; }

.u-header.u-header--fullscreen--top-left .u-header__overlay {
  -webkit-transform-origin: 0% 0%;
  -ms-transform-origin: 0% 0%;
  transform-origin: 0% 0%;
  -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-20%, -20%, 0);
  transform: scale3d(0.1, 0.1, 0.1) translate3d(-20%, -20%, 0); }

.u-header.u-header--fullscreen--top-left.u-header--fullscreen-showed .u-header__overlay {
  -webkit-transform: scale3d(1, 1, 1) translate3d(-20%, -20%, 0);
  transform: scale3d(1, 1, 1) translate3d(-20%, -20%, 0); }

.u-header.u-header--fullscreen--top-right .u-header__overlay {
  left: auto;
  -webkit-transform-origin: 100% 0%;
  -ms-transform-origin: 100% 0%;
  transform-origin: 100% 0%;
  -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(20%, -20%, 0);
  transform: scale3d(0.1, 0.1, 0.1) translate3d(20%, -20%, 0); }

.u-header.u-header--fullscreen--top-right.u-header--fullscreen-showed .u-header__overlay {
  -webkit-transform: scale3d(1, 1, 1) translate3d(20%, -20%, 0);
  transform: scale3d(1, 1, 1) translate3d(20%, -20%, 0); }

.u-header.u-header--fullscreen--bottom-left .u-header__overlay {
  top: auto;
  -webkit-transform-origin: 0% 100%;
  -ms-transform-origin: 0% 100%;
  transform-origin: 0% 100%;
  -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(-20%, 20%, 0);
  transform: scale3d(0.1, 0.1, 0.1) translate3d(-20%, 20%, 0); }

.u-header.u-header--fullscreen--bottom-left.u-header--fullscreen-showed .u-header__overlay {
  -webkit-transform: scale3d(1, 1, 1) translate3d(-20%, 20%, 0);
  transform: scale3d(1, 1, 1) translate3d(-20%, 20%, 0); }

.u-header.u-header--fullscreen--bottom-right .u-header__overlay {
  top: auto;
  left: auto;
  -webkit-transform-origin: 100% 100%;
  -ms-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
  -webkit-transform: scale3d(0.1, 0.1, 0.1) translate3d(20%, 20%, 0);
  transform: scale3d(0.1, 0.1, 0.1) translate3d(20%, 20%, 0); }

.u-header.u-header--fullscreen--bottom-right.u-header--fullscreen-showed .u-header__overlay {
  -webkit-transform: scale3d(1, 1, 1) translate3d(20%, 20%, 0);
  transform: scale3d(1, 1, 1) translate3d(20%, 20%, 0); }

/*------------------------------------
  Side Header
------------------------------------*/
/* Common styles of Side Header */
body[class*="u-body--header-side"] .u-header.u-header--side {
  position: fixed;
  top: 0;
  height: 100%;
  width: 21.42857rem; }

body[class*="u-body--header-side"] .u-header.u-header--side .navbar {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column; }

body[class*="u-body--header-side"] .u-header.u-header--side .navbar .container {
  width: 100%;
  padding-left: 0;
  padding-right: 0;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column; }

body[class*="u-body--header-side"] .u-header.u-header--side .navbar .navbar-collapse {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column; }

body[class*="u-body--header-side"] .u-header.u-header--side .navbar .navbar-nav {
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-left: 0 !important;
  margin-right: 0 !important; }

body[class*="u-body--header-side"] .u-header.u-header--side .u-header__sections-container {
  height: 100%; }

body[class*="u-body--header-side"] .u-header.u-header--side .dropdown-menu {
  top: 0; }

body[class*="u-body--header-side"] .u-header.u-header--side .mCSB_container,
body[class*="u-body--header-side"] .u-header.u-header--side .mCustomScrollBox {
  overflow: visible; }

/* Overlay */
.u-header--side .u-header__overlay {
  position: absolute;
  top: 0;
  height: 100%;
  width: 2000%;
  opacity: 0;
  visibility: hidden; }

body[class*="u-body--header-side"].u-body--header-side-opened .u-header__overlay {
  opacity: 1;
  visibility: visible; }

.u-body--header-side-static-left .u-header--side .dropdown-menu, .u-body--header-side-overlay-left .u-header--side .dropdown-menu, .u-body--header-side-push-left .u-header--side .dropdown-menu {
  left: 100%;
  margin-left: 1.07143rem; }

.u-body--header-side-static-left .u-header--side .hs-menu-vertical .hs-mega-menu,
.u-body--header-side-static-left .u-header--side .hs-menu-vertical .hs-sub-menu, .u-body--header-side-overlay-left .u-header--side .hs-menu-vertical .hs-mega-menu,
.u-body--header-side-overlay-left .u-header--side .hs-menu-vertical .hs-sub-menu, .u-body--header-side-push-left .u-header--side .hs-menu-vertical .hs-mega-menu,
.u-body--header-side-push-left .u-header--side .hs-menu-vertical .hs-sub-menu {
  margin-left: 1.07143rem; }

.u-body--header-side-static-left .u-header--side .hs-menu-vertical .hs-mega-menu .hs-mega-menu,
.u-body--header-side-static-left .u-header--side .hs-menu-vertical .hs-mega-menu .hs-sub-menu,
.u-body--header-side-static-left .u-header--side .hs-menu-vertical .hs-sub-menu .hs-mega-menu,
.u-body--header-side-static-left .u-header--side .hs-menu-vertical .hs-sub-menu .hs-sub-menu, .u-body--header-side-overlay-left .u-header--side .hs-menu-vertical .hs-mega-menu .hs-mega-menu,
.u-body--header-side-overlay-left .u-header--side .hs-menu-vertical .hs-mega-menu .hs-sub-menu,
.u-body--header-side-overlay-left .u-header--side .hs-menu-vertical .hs-sub-menu .hs-mega-menu,
.u-body--header-side-overlay-left .u-header--side .hs-menu-vertical .hs-sub-menu .hs-sub-menu, .u-body--header-side-push-left .u-header--side .hs-menu-vertical .hs-mega-menu .hs-mega-menu,
.u-body--header-side-push-left .u-header--side .hs-menu-vertical .hs-mega-menu .hs-sub-menu,
.u-body--header-side-push-left .u-header--side .hs-menu-vertical .hs-sub-menu .hs-mega-menu,
.u-body--header-side-push-left .u-header--side .hs-menu-vertical .hs-sub-menu .hs-sub-menu {
  margin-left: 0; }

.u-body--header-side-static-left .u-header--side .hs-menu-vertical.hs-rtl .hs-mega-menu,
.u-body--header-side-static-left .u-header--side .hs-menu-vertical.hs-rtl .hs-sub-menu, .u-body--header-side-overlay-left .u-header--side .hs-menu-vertical.hs-rtl .hs-mega-menu,
.u-body--header-side-overlay-left .u-header--side .hs-menu-vertical.hs-rtl .hs-sub-menu, .u-body--header-side-push-left .u-header--side .hs-menu-vertical.hs-rtl .hs-mega-menu,
.u-body--header-side-push-left .u-header--side .hs-menu-vertical.hs-rtl .hs-sub-menu {
  margin-left: 0;
  margin-right: 1.07143rem; }

.u-body--header-side-static-left .u-header--side .hs-menu-vertical.hs-rtl .hs-mega-menu .hs-mega-menu,
.u-body--header-side-static-left .u-header--side .hs-menu-vertical.hs-rtl .hs-mega-menu .hs-sub-menu,
.u-body--header-side-static-left .u-header--side .hs-menu-vertical.hs-rtl .hs-sub-menu .hs-mega-menu,
.u-body--header-side-static-left .u-header--side .hs-menu-vertical.hs-rtl .hs-sub-menu .hs-sub-menu, .u-body--header-side-overlay-left .u-header--side .hs-menu-vertical.hs-rtl .hs-mega-menu .hs-mega-menu,
.u-body--header-side-overlay-left .u-header--side .hs-menu-vertical.hs-rtl .hs-mega-menu .hs-sub-menu,
.u-body--header-side-overlay-left .u-header--side .hs-menu-vertical.hs-rtl .hs-sub-menu .hs-mega-menu,
.u-body--header-side-overlay-left .u-header--side .hs-menu-vertical.hs-rtl .hs-sub-menu .hs-sub-menu, .u-body--header-side-push-left .u-header--side .hs-menu-vertical.hs-rtl .hs-mega-menu .hs-mega-menu,
.u-body--header-side-push-left .u-header--side .hs-menu-vertical.hs-rtl .hs-mega-menu .hs-sub-menu,
.u-body--header-side-push-left .u-header--side .hs-menu-vertical.hs-rtl .hs-sub-menu .hs-mega-menu,
.u-body--header-side-push-left .u-header--side .hs-menu-vertical.hs-rtl .hs-sub-menu .hs-sub-menu {
  margin-left: 0;
  margin-right: 0; }

.u-body--header-side-static-left {
  margin-left: 21.42857rem; }

.u-body--header-side-static-left .u-header--side {
  right: auto;
  left: 0; }

.u-body--header-side-static-right {
  margin-right: 21.42857rem; }

.u-body--header-side-static-right .u-header--side {
  left: auto;
  right: 0; }

.u-body--header-side-overlay-left .u-header--side, .u-body--header-side-push-left .u-header--side {
  right: auto;
  left: -21.42857rem; }

.u-body--header-side-overlay-left .u-header--side .u-header__overlay, .u-body--header-side-push-left .u-header--side .u-header__overlay {
  left: 100%; }

.u-body--header-side-overlay-left.u-body--header-side-opened .u-header--side, .u-body--header-side-push-left.u-body--header-side-opened .u-header--side {
  left: 0; }

.u-body--header-side-push-left.u-body--header-side-opened {
  margin-left: 21.42857rem; }

.u-body--header-side-overlay-right .u-header--side, .u-body--header-side-push-right .u-header--side {
  left: auto;
  right: -21.42857rem; }

.u-body--header-side-overlay-right .u-header--side .u-header__overlay, .u-body--header-side-push-right .u-header--side .u-header__overlay {
  right: 100%; }

.u-body--header-side-overlay-right.u-body--header-side-opened .u-header--side, .u-body--header-side-push-right.u-body--header-side-opened .u-header--side {
  right: 0; }

.u-body--header-side-push-right.u-body--header-side-opened {
  margin-right: 21.42857rem; }

.u-body--header-side-static-right .u-header--side .dropdown-menu, .u-body--header-side-overlay-right .u-header--side .dropdown-menu, .u-body--header-side-push-right .u-header--side .dropdown-menu {
  left: auto;
  right: 100%;
  margin-right: 1.07143rem; }

.u-body--header-side-static-right .u-header--side .hs-menu-vertical .hs-mega-menu,
.u-body--header-side-static-right .u-header--side .hs-menu-vertical .hs-sub-menu, .u-body--header-side-overlay-right .u-header--side .hs-menu-vertical .hs-mega-menu,
.u-body--header-side-overlay-right .u-header--side .hs-menu-vertical .hs-sub-menu, .u-body--header-side-push-right .u-header--side .hs-menu-vertical .hs-mega-menu,
.u-body--header-side-push-right .u-header--side .hs-menu-vertical .hs-sub-menu {
  left: auto;
  right: 100%;
  margin-right: 1.07143rem; }

.u-body--header-side-static-right .u-header--side .hs-menu-vertical .hs-mega-menu .hs-mega-menu,
.u-body--header-side-static-right .u-header--side .hs-menu-vertical .hs-mega-menu .hs-sub-menu,
.u-body--header-side-static-right .u-header--side .hs-menu-vertical .hs-sub-menu .hs-mega-menu,
.u-body--header-side-static-right .u-header--side .hs-menu-vertical .hs-sub-menu .hs-sub-menu, .u-body--header-side-overlay-right .u-header--side .hs-menu-vertical .hs-mega-menu .hs-mega-menu,
.u-body--header-side-overlay-right .u-header--side .hs-menu-vertical .hs-mega-menu .hs-sub-menu,
.u-body--header-side-overlay-right .u-header--side .hs-menu-vertical .hs-sub-menu .hs-mega-menu,
.u-body--header-side-overlay-right .u-header--side .hs-menu-vertical .hs-sub-menu .hs-sub-menu, .u-body--header-side-push-right .u-header--side .hs-menu-vertical .hs-mega-menu .hs-mega-menu,
.u-body--header-side-push-right .u-header--side .hs-menu-vertical .hs-mega-menu .hs-sub-menu,
.u-body--header-side-push-right .u-header--side .hs-menu-vertical .hs-sub-menu .hs-mega-menu,
.u-body--header-side-push-right .u-header--side .hs-menu-vertical .hs-sub-menu .hs-sub-menu {
  margin-right: 0; }

.u-body--header-side-static-right .u-header--side .hs-menu-vertical.hs-rtl .hs-mega-menu,
.u-body--header-side-static-right .u-header--side .hs-menu-vertical.hs-rtl .hs-sub-menu, .u-body--header-side-overlay-right .u-header--side .hs-menu-vertical.hs-rtl .hs-mega-menu,
.u-body--header-side-overlay-right .u-header--side .hs-menu-vertical.hs-rtl .hs-sub-menu, .u-body--header-side-push-right .u-header--side .hs-menu-vertical.hs-rtl .hs-mega-menu,
.u-body--header-side-push-right .u-header--side .hs-menu-vertical.hs-rtl .hs-sub-menu {
  margin-right: 0;
  margin-left: 1.07143rem; }

.u-body--header-side-static-right .u-header--side .hs-menu-vertical.hs-rtl .hs-mega-menu .hs-mega-menu,
.u-body--header-side-static-right .u-header--side .hs-menu-vertical.hs-rtl .hs-mega-menu .hs-sub-menu,
.u-body--header-side-static-right .u-header--side .hs-menu-vertical.hs-rtl .hs-sub-menu .hs-mega-menu,
.u-body--header-side-static-right .u-header--side .hs-menu-vertical.hs-rtl .hs-sub-menu .hs-sub-menu, .u-body--header-side-overlay-right .u-header--side .hs-menu-vertical.hs-rtl .hs-mega-menu .hs-mega-menu,
.u-body--header-side-overlay-right .u-header--side .hs-menu-vertical.hs-rtl .hs-mega-menu .hs-sub-menu,
.u-body--header-side-overlay-right .u-header--side .hs-menu-vertical.hs-rtl .hs-sub-menu .hs-mega-menu,
.u-body--header-side-overlay-right .u-header--side .hs-menu-vertical.hs-rtl .hs-sub-menu .hs-sub-menu, .u-body--header-side-push-right .u-header--side .hs-menu-vertical.hs-rtl .hs-mega-menu .hs-mega-menu,
.u-body--header-side-push-right .u-header--side .hs-menu-vertical.hs-rtl .hs-mega-menu .hs-sub-menu,
.u-body--header-side-push-right .u-header--side .hs-menu-vertical.hs-rtl .hs-sub-menu .hs-mega-menu,
.u-body--header-side-push-right .u-header--side .hs-menu-vertical.hs-rtl .hs-sub-menu .hs-sub-menu {
  margin-left: 0;
  margin-right: 0; }

/* Button Styles
------------------------------------*/
/* General Button Styles */
.btn {
  position: relative;
  transition: .2s ease;
  cursor: pointer; }

.btn:focus, .btn:active:focus, .btn.active:focus {
  outline: 0 none;
  box-shadow: none; }

/* Button Content
------------------------------------*/
.u-btn-content {
  white-space: normal; }

/* Buttons Only Icon (O)
------------------------------------*/
.u-btn-only-icon {
  position: relative; }

.u-btn-only-icon i {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%); }

/* Button Sizes
------------------------------------*/
/* Extra Small */
.btn-xs {
  line-height: 1.4;
  padding: 0.14286rem 0.5rem;
  font-size: 0.78571rem; }

/* Medium */
.btn-md {
  line-height: 1.4;
  padding: 0.57143rem 1.42857rem;
  font-size: 1.07143rem; }

/* Extra Large */
.btn-xl {
  line-height: 1.4;
  padding: 0.92857rem 1.85714rem;
  font-size: 1.28571rem; }

/* Extramly Large */
.btn-xxl {
  line-height: 1.4;
  padding: 1.07143rem 2.14286rem;
  font-size: 1.5rem; }

/* Button Types
------------------------------------*/
/* Inset Buttons */
.u-btn-inset {
  position: relative; }

.u-btn-inset::before {
  position: absolute;
  top: 0.14286rem;
  right: 0.14286rem;
  bottom: 0.14286rem;
  left: 0.14286rem;
  content: "";
  border: solid 1px #fff;
  border-radius: 1px; }

.u-btn-inset--rounded::before {
  border-radius: 50px; }

/* 3d Buttons */
.u-btn-3d {
  border-bottom: solid 3px rgba(0, 0, 0, 0.2); }

.u-btn-3d:hover {
  border-bottom-color: rgba(0, 0, 0, 0.3); }

/* Skew Button */
.u-btn-skew {
  -webkit-transform: skewX(-20deg);
  -ms-transform: skewX(-20deg);
  transform: skewX(-20deg); }

.u-btn-skew__inner {
  -webkit-transform: skewX(20deg);
  -ms-transform: skewX(20deg);
  transform: skewX(20deg);
  display: block; }

/* Button Hovers
------------------------------------*/
[class*="u-btn-hover"] {
  z-index: 1; }

[class*="u-btn-hover"]:hover {
  text-decoration: none; }

[class*="u-btn-hover"]:focus {
  text-decoration: none; }

[class*="u-btn-hover"]::after {
  position: absolute;
  content: "";
  z-index: -1;
  transition: all .3s; }

/* Hover v1-1 */
.u-btn-hover-v1-1::after {
  top: 0;
  left: 0;
  height: 0;
  width: 100%; }

.u-btn-hover-v1-1:hover::after {
  height: 100%; }

/* Hover v1-2 */
.u-btn-hover-v1-2::after {
  top: 0;
  right: 0;
  width: 0;
  height: 100%; }

.u-btn-hover-v1-2:hover::after {
  width: 100%; }

/* Hover v1-3 */
.u-btn-hover-v1-3::after {
  bottom: 0;
  left: 0;
  height: 0;
  width: 100%; }

.u-btn-hover-v1-3:hover::after {
  height: 100%; }

/* Hover v1-4 */
.u-btn-hover-v1-4::after {
  top: 0;
  left: 0;
  width: 0;
  height: 100%; }

.u-btn-hover-v1-4:hover::after {
  width: 100%; }

/* Hover v2-1 */
.u-btn-hover-v2-1::after {
  top: 0;
  right: 0;
  width: 0;
  height: 100%; }

.u-btn-hover-v2-1:hover::after {
  left: 0;
  width: 100%; }

/* Hover v2-2 */
.u-btn-hover-v2-2::after {
  left: 0;
  bottom: 0;
  height: 0;
  width: 100%; }

.u-btn-hover-v2-2:hover::after {
  top: 0;
  height: 100%; }

/* Button Primary */
.u-btn-primary {
  color: #fff;
  background-color: #72c02c; }

.u-btn-primary:hover, .u-btn-primary.active {
  border-color: #8cd54a;
  background-color: #8cd54a; }

.u-btn-primary:hover, .u-btn-primary:focus, .u-btn-primary.active {
  color: #fff; }

.u-btn-primary.g-btn-hover-reset:hover, .u-btn-primary.g-btn-hover-reset.active {
  background-color: #72c02c;
  border-color: #72c02c; }

.u-btn-primary.u-btn-hover-v1-1 {
  overflow: hidden; }

.u-btn-primary.u-btn-hover-v1-1::after, .u-btn-primary.u-btn-hover-v1-1:hover::after {
  background-color: #7fd135; }

.u-btn-primary.u-btn-hover-v1-1:hover {
  background-color: #72c02c;
  overflow: hidden; }

.u-btn-primary.u-btn-hover-v1-2 {
  overflow: hidden; }

.u-btn-primary.u-btn-hover-v1-2::after, .u-btn-primary.u-btn-hover-v1-2:hover::after {
  background-color: #7fd135; }

.u-btn-primary.u-btn-hover-v1-2:hover {
  background-color: #72c02c;
  overflow: hidden; }

.u-btn-primary.u-btn-hover-v1-3 {
  overflow: hidden; }

.u-btn-primary.u-btn-hover-v1-3::after, .u-btn-primary.u-btn-hover-v1-3:hover::after {
  background-color: #7fd135; }

.u-btn-primary.u-btn-hover-v1-3:hover {
  background-color: #72c02c;
  overflow: hidden; }

.u-btn-primary.u-btn-hover-v1-4 {
  overflow: hidden; }

.u-btn-primary.u-btn-hover-v1-4::after, .u-btn-primary.u-btn-hover-v1-4:hover::after {
  background-color: #7fd135; }

.u-btn-primary.u-btn-hover-v1-4:hover {
  background-color: #72c02c;
  overflow: hidden; }

.u-btn-primary.u-btn-hover-v2-1 {
  overflow: hidden; }

.u-btn-primary.u-btn-hover-v2-1::after, .u-btn-primary.u-btn-hover-v2-1:hover::after {
  background-color: #7fd135; }

.u-btn-primary.u-btn-hover-v2-1:hover {
  background-color: #72c02c;
  overflow: hidden; }

.u-btn-primary.u-btn-hover-v2-2 {
  overflow: hidden; }

.u-btn-primary.u-btn-hover-v2-2::after, .u-btn-primary.u-btn-hover-v2-2:hover::after {
  background-color: #7fd135; }

.u-btn-primary.u-btn-hover-v2-2:hover {
  background-color: #72c02c;
  overflow: hidden; }

/* Button White */
.u-btn-white {
  color: #555;
  background-color: #fff; }

.u-btn-white:hover, .u-btn-white.active {
  border-color: white;
  background-color: white; }

.u-btn-white:hover, .u-btn-white:focus, .u-btn-white.active {
  color: #555; }

.u-btn-white.g-btn-hover-reset:hover, .u-btn-white.g-btn-hover-reset.active {
  background-color: #fff;
  border-color: #fff; }

.u-btn-white.u-btn-hover-v1-1 {
  overflow: hidden; }

.u-btn-white.u-btn-hover-v1-1::after, .u-btn-white.u-btn-hover-v1-1:hover::after {
  background-color: white; }

.u-btn-white.u-btn-hover-v1-1:hover {
  background-color: #fff;
  overflow: hidden; }

.u-btn-white.u-btn-hover-v1-2 {
  overflow: hidden; }

.u-btn-white.u-btn-hover-v1-2::after, .u-btn-white.u-btn-hover-v1-2:hover::after {
  background-color: white; }

.u-btn-white.u-btn-hover-v1-2:hover {
  background-color: #fff;
  overflow: hidden; }

.u-btn-white.u-btn-hover-v1-3 {
  overflow: hidden; }

.u-btn-white.u-btn-hover-v1-3::after, .u-btn-white.u-btn-hover-v1-3:hover::after {
  background-color: white; }

.u-btn-white.u-btn-hover-v1-3:hover {
  background-color: #fff;
  overflow: hidden; }

.u-btn-white.u-btn-hover-v1-4 {
  overflow: hidden; }

.u-btn-white.u-btn-hover-v1-4::after, .u-btn-white.u-btn-hover-v1-4:hover::after {
  background-color: white; }

.u-btn-white.u-btn-hover-v1-4:hover {
  background-color: #fff;
  overflow: hidden; }

.u-btn-white.u-btn-hover-v2-1 {
  overflow: hidden; }

.u-btn-white.u-btn-hover-v2-1::after, .u-btn-white.u-btn-hover-v2-1:hover::after {
  background-color: white; }

.u-btn-white.u-btn-hover-v2-1:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-white.u-btn-hover-v2-2 {
  overflow: hidden; }

.u-btn-white.u-btn-hover-v2-2::after, .u-btn-white.u-btn-hover-v2-2:hover::after {
  background-color: white; }

.u-btn-white.u-btn-hover-v2-2:hover {
  overflow: hidden;
  background-color: transparent; }

/* Button Black */
.u-btn-black {
  color: #fff;
  background-color: #000; }

.u-btn-black:hover, .u-btn-black.active {
  border-color: #1a1a1a;
  background-color: #1a1a1a; }

.u-btn-black:hover, .u-btn-black:focus, .u-btn-black.active {
  color: #fff; }

.u-btn-black.g-btn-hover-reset:hover, .u-btn-black.g-btn-hover-reset.active {
  background-color: #000;
  border-color: #000; }

.u-btn-black.u-btn-hover-v1-1 {
  overflow: hidden; }

.u-btn-black.u-btn-hover-v1-1::after, .u-btn-black.u-btn-hover-v1-1:hover::after {
  background-color: #0d0d0d; }

.u-btn-black.u-btn-hover-v1-1:hover {
  background-color: #000;
  overflow: hidden; }

.u-btn-black.u-btn-hover-v1-2 {
  overflow: hidden; }

.u-btn-black.u-btn-hover-v1-2::after, .u-btn-black.u-btn-hover-v1-2:hover::after {
  background-color: #0d0d0d; }

.u-btn-black.u-btn-hover-v1-2:hover {
  background-color: #000;
  overflow: hidden; }

.u-btn-black.u-btn-hover-v1-3 {
  overflow: hidden; }

.u-btn-black.u-btn-hover-v1-3::after, .u-btn-black.u-btn-hover-v1-3:hover::after {
  background-color: #0d0d0d; }

.u-btn-black.u-btn-hover-v1-3:hover {
  background-color: #000;
  overflow: hidden; }

.u-btn-black.u-btn-hover-v1-4 {
  overflow: hidden; }

.u-btn-black.u-btn-hover-v1-4::after, .u-btn-black.u-btn-hover-v1-4:hover::after {
  background-color: #0d0d0d; }

.u-btn-black.u-btn-hover-v1-4:hover {
  background-color: #000;
  overflow: hidden; }

.u-btn-black.u-btn-hover-v2-1 {
  overflow: hidden; }

.u-btn-black.u-btn-hover-v2-1::after, .u-btn-black.u-btn-hover-v2-1:hover::after {
  background-color: #0d0d0d; }

.u-btn-black.u-btn-hover-v2-1:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-black.u-btn-hover-v2-2 {
  overflow: hidden; }

.u-btn-black.u-btn-hover-v2-2::after, .u-btn-black.u-btn-hover-v2-2:hover::after {
  background-color: #0d0d0d; }

.u-btn-black.u-btn-hover-v2-2:hover {
  overflow: hidden;
  background-color: transparent; }

/* Button Dark Gray */
.u-btn-darkgray {
  color: #fff;
  background-color: #333; }

.u-btn-darkgray:hover, .u-btn-darkgray.active {
  border-color: #4d4d4d;
  background-color: #4d4d4d; }

.u-btn-darkgray:hover, .u-btn-darkgray:focus, .u-btn-darkgray.active {
  color: #fff; }

.u-btn-darkgray.g-btn-hover-reset:hover, .u-btn-darkgray.g-btn-hover-reset.active {
  background-color: #333;
  border-color: #333; }

.u-btn-darkgray.u-btn-hover-v1-1 {
  overflow: hidden; }

.u-btn-darkgray.u-btn-hover-v1-1::after, .u-btn-darkgray.u-btn-hover-v1-1:hover::after {
  background-color: #404040; }

.u-btn-darkgray.u-btn-hover-v1-1:hover {
  background-color: #333;
  overflow: hidden; }

.u-btn-darkgray.u-btn-hover-v1-2 {
  overflow: hidden; }

.u-btn-darkgray.u-btn-hover-v1-2::after, .u-btn-darkgray.u-btn-hover-v1-2:hover::after {
  background-color: #404040; }

.u-btn-darkgray.u-btn-hover-v1-2:hover {
  background-color: #333;
  overflow: hidden; }

.u-btn-darkgray.u-btn-hover-v1-3 {
  overflow: hidden; }

.u-btn-darkgray.u-btn-hover-v1-3::after, .u-btn-darkgray.u-btn-hover-v1-3:hover::after {
  background-color: #404040; }

.u-btn-darkgray.u-btn-hover-v1-3:hover {
  background-color: #333;
  overflow: hidden; }

.u-btn-darkgray.u-btn-hover-v1-4 {
  overflow: hidden; }

.u-btn-darkgray.u-btn-hover-v1-4::after, .u-btn-darkgray.u-btn-hover-v1-4:hover::after {
  background-color: #404040; }

.u-btn-darkgray.u-btn-hover-v1-4:hover {
  background-color: #333;
  overflow: hidden; }

.u-btn-darkgray.u-btn-hover-v2-1 {
  overflow: hidden; }

.u-btn-darkgray.u-btn-hover-v2-1::after, .u-btn-darkgray.u-btn-hover-v2-1:hover::after {
  background-color: #404040; }

.u-btn-darkgray.u-btn-hover-v2-1:hover {
  background-color: #333;
  overflow: hidden; }

.u-btn-darkgray.u-btn-hover-v2-2 {
  overflow: hidden; }

.u-btn-darkgray.u-btn-hover-v2-2::after, .u-btn-darkgray.u-btn-hover-v2-2:hover::after {
  background-color: #404040; }

.u-btn-darkgray.u-btn-hover-v2-2:hover {
  background-color: #333;
  overflow: hidden; }

/* Button Red */
.u-btn-red {
  color: #fff;
  background-color: #f00; }

.u-btn-red:hover, .u-btn-red.active {
  border-color: #ff3333;
  background-color: #ff3333; }

.u-btn-red:hover, .u-btn-red:focus, .u-btn-red.active {
  color: #fff; }

.u-btn-red.g-btn-hover-reset:hover, .u-btn-red.g-btn-hover-reset.active {
  background-color: #f00;
  border-color: #f00; }

.u-btn-red.u-btn-hover-v1-1 {
  overflow: hidden; }

.u-btn-red.u-btn-hover-v1-1::after, .u-btn-red.u-btn-hover-v1-1:hover::after {
  background-color: #ff1a1a; }

.u-btn-red.u-btn-hover-v1-1:hover {
  background-color: #f00;
  overflow: hidden; }

.u-btn-red.u-btn-hover-v1-2 {
  overflow: hidden; }

.u-btn-red.u-btn-hover-v1-2::after, .u-btn-red.u-btn-hover-v1-2:hover::after {
  background-color: #ff1a1a; }

.u-btn-red.u-btn-hover-v1-2:hover {
  background-color: #f00;
  overflow: hidden; }

.u-btn-red.u-btn-hover-v1-3 {
  overflow: hidden; }

.u-btn-red.u-btn-hover-v1-3::after, .u-btn-red.u-btn-hover-v1-3:hover::after {
  background-color: #ff1a1a; }

.u-btn-red.u-btn-hover-v1-3:hover {
  background-color: #f00;
  overflow: hidden; }

.u-btn-red.u-btn-hover-v1-4 {
  overflow: hidden; }

.u-btn-red.u-btn-hover-v1-4::after, .u-btn-red.u-btn-hover-v1-4:hover::after {
  background-color: #ff1a1a; }

.u-btn-red.u-btn-hover-v1-4:hover {
  background-color: #f00;
  overflow: hidden; }

.u-btn-red.u-btn-hover-v2-1 {
  overflow: hidden; }

.u-btn-red.u-btn-hover-v2-1::after, .u-btn-red.u-btn-hover-v2-1:hover::after {
  background-color: #ff1a1a; }

.u-btn-red.u-btn-hover-v2-1:hover {
  background-color: #f00;
  overflow: hidden; }

.u-btn-red.u-btn-hover-v2-2 {
  overflow: hidden; }

.u-btn-red.u-btn-hover-v2-2::after, .u-btn-red.u-btn-hover-v2-2:hover::after {
  background-color: #ff1a1a; }

.u-btn-red.u-btn-hover-v2-2:hover {
  background-color: #f00;
  overflow: hidden; }

/* Button Red Tomato */
.u-btn-lightred {
  color: #fff;
  background-color: #e64b3b; }

.u-btn-lightred:hover, .u-btn-lightred.active {
  border-color: #ec7568;
  background-color: #ec7568; }

.u-btn-lightred:hover, .u-btn-lightred:focus, .u-btn-lightred.active {
  color: #fff; }

.u-btn-lightred.g-btn-hover-reset:hover, .u-btn-lightred.g-btn-hover-reset.active {
  background-color: #e64b3b;
  border-color: #e64b3b; }

.u-btn-lightred.u-btn-hover-v1-1 {
  overflow: hidden; }

.u-btn-lightred.u-btn-hover-v1-1::after, .u-btn-lightred.u-btn-hover-v1-1:hover::after {
  background-color: #e96052; }

.u-btn-lightred.u-btn-hover-v1-1:hover {
  background-color: #e64b3b;
  overflow: hidden; }

.u-btn-lightred.u-btn-hover-v1-2 {
  overflow: hidden; }

.u-btn-lightred.u-btn-hover-v1-2::after, .u-btn-lightred.u-btn-hover-v1-2:hover::after {
  background-color: #e96052; }

.u-btn-lightred.u-btn-hover-v1-2:hover {
  background-color: #e64b3b;
  overflow: hidden; }

.u-btn-lightred.u-btn-hover-v1-3 {
  overflow: hidden; }

.u-btn-lightred.u-btn-hover-v1-3::after, .u-btn-lightred.u-btn-hover-v1-3:hover::after {
  background-color: #e96052; }

.u-btn-lightred.u-btn-hover-v1-3:hover {
  background-color: #e64b3b;
  overflow: hidden; }

.u-btn-lightred.u-btn-hover-v1-4 {
  overflow: hidden; }

.u-btn-lightred.u-btn-hover-v1-4::after, .u-btn-lightred.u-btn-hover-v1-4:hover::after {
  background-color: #e96052; }

.u-btn-lightred.u-btn-hover-v1-4:hover {
  background-color: #e64b3b;
  overflow: hidden; }

.u-btn-lightred.u-btn-hover-v2-1 {
  overflow: hidden; }

.u-btn-lightred.u-btn-hover-v2-1::after, .u-btn-lightred.u-btn-hover-v2-1:hover::after {
  background-color: #e96052; }

.u-btn-lightred.u-btn-hover-v2-1:hover {
  background-color: #e64b3b;
  overflow: hidden; }

.u-btn-lightred.u-btn-hover-v2-2 {
  overflow: hidden; }

.u-btn-lightred.u-btn-hover-v2-2::after, .u-btn-lightred.u-btn-hover-v2-2:hover::after {
  background-color: #e96052; }

.u-btn-lightred.u-btn-hover-v2-2:hover {
  background-color: #e64b3b;
  overflow: hidden; }

/* Button Dark Red */
.u-btn-darkred {
  color: #fff;
  background-color: #a10f2b; }

.u-btn-darkred:hover, .u-btn-darkred.active {
  border-color: #d01337;
  background-color: #d01337; }

.u-btn-darkred:hover, .u-btn-darkred:focus, .u-btn-darkred.active {
  color: #fff; }

.u-btn-darkred.g-btn-hover-reset:hover, .u-btn-darkred.g-btn-hover-reset.active {
  background-color: #a10f2b;
  border-color: #a10f2b; }

.u-btn-darkred.u-btn-hover-v1-1 {
  overflow: hidden; }

.u-btn-darkred.u-btn-hover-v1-1::after, .u-btn-darkred.u-btn-hover-v1-1:hover::after {
  background-color: #b81131; }

.u-btn-darkred.u-btn-hover-v1-1:hover {
  background-color: #a10f2b;
  overflow: hidden; }

.u-btn-darkred.u-btn-hover-v1-2 {
  overflow: hidden; }

.u-btn-darkred.u-btn-hover-v1-2::after, .u-btn-darkred.u-btn-hover-v1-2:hover::after {
  background-color: #b81131; }

.u-btn-darkred.u-btn-hover-v1-2:hover {
  background-color: #a10f2b;
  overflow: hidden; }

.u-btn-darkred.u-btn-hover-v1-3 {
  overflow: hidden; }

.u-btn-darkred.u-btn-hover-v1-3::after, .u-btn-darkred.u-btn-hover-v1-3:hover::after {
  background-color: #b81131; }

.u-btn-darkred.u-btn-hover-v1-3:hover {
  background-color: #a10f2b;
  overflow: hidden; }

.u-btn-darkred.u-btn-hover-v1-4 {
  overflow: hidden; }

.u-btn-darkred.u-btn-hover-v1-4::after, .u-btn-darkred.u-btn-hover-v1-4:hover::after {
  background-color: #b81131; }

.u-btn-darkred.u-btn-hover-v1-4:hover {
  background-color: #a10f2b;
  overflow: hidden; }

.u-btn-darkred.u-btn-hover-v2-1 {
  overflow: hidden; }

.u-btn-darkred.u-btn-hover-v2-1::after, .u-btn-darkred.u-btn-hover-v2-1:hover::after {
  background-color: #b81131; }

.u-btn-darkred.u-btn-hover-v2-1:hover {
  background-color: #a10f2b;
  overflow: hidden; }

.u-btn-darkred.u-btn-hover-v2-2 {
  overflow: hidden; }

.u-btn-darkred.u-btn-hover-v2-2::after, .u-btn-darkred.u-btn-hover-v2-2:hover::after {
  background-color: #b81131; }

.u-btn-darkred.u-btn-hover-v2-2:hover {
  background-color: #a10f2b;
  overflow: hidden; }

/* Button Blue */
.u-btn-blue {
  color: #fff;
  background-color: #3398dc; }

.u-btn-blue:hover, .u-btn-blue.active {
  border-color: #5faee3;
  background-color: #5faee3; }

.u-btn-blue:hover, .u-btn-blue:focus, .u-btn-blue.active {
  color: #fff; }

.u-btn-blue.g-btn-hover-reset:hover, .u-btn-blue.g-btn-hover-reset.active {
  background-color: #3398dc;
  border-color: #3398dc; }

.u-btn-blue.u-btn-hover-v1-1 {
  overflow: hidden; }

.u-btn-blue.u-btn-hover-v1-1::after, .u-btn-blue.u-btn-hover-v1-1:hover::after {
  background-color: #49a3e0; }

.u-btn-blue.u-btn-hover-v1-1:hover {
  background-color: #3398dc;
  overflow: hidden; }

.u-btn-blue.u-btn-hover-v1-2 {
  overflow: hidden; }

.u-btn-blue.u-btn-hover-v1-2::after, .u-btn-blue.u-btn-hover-v1-2:hover::after {
  background-color: #49a3e0; }

.u-btn-blue.u-btn-hover-v1-2:hover {
  background-color: #3398dc;
  overflow: hidden; }

.u-btn-blue.u-btn-hover-v1-3 {
  overflow: hidden; }

.u-btn-blue.u-btn-hover-v1-3::after, .u-btn-blue.u-btn-hover-v1-3:hover::after {
  background-color: #49a3e0; }

.u-btn-blue.u-btn-hover-v1-3:hover {
  background-color: #3398dc;
  overflow: hidden; }

.u-btn-blue.u-btn-hover-v1-4 {
  overflow: hidden; }

.u-btn-blue.u-btn-hover-v1-4::after, .u-btn-blue.u-btn-hover-v1-4:hover::after {
  background-color: #49a3e0; }

.u-btn-blue.u-btn-hover-v1-4:hover {
  background-color: #3398dc;
  overflow: hidden; }

.u-btn-blue.u-btn-hover-v2-1 {
  overflow: hidden; }

.u-btn-blue.u-btn-hover-v2-1::after, .u-btn-blue.u-btn-hover-v2-1:hover::after {
  background-color: #49a3e0; }

.u-btn-blue.u-btn-hover-v2-1:hover {
  background-color: #3398dc;
  overflow: hidden; }

.u-btn-blue.u-btn-hover-v2-2 {
  overflow: hidden; }

.u-btn-blue.u-btn-hover-v2-2::after, .u-btn-blue.u-btn-hover-v2-2:hover::after {
  background-color: #49a3e0; }

.u-btn-blue.u-btn-hover-v2-2:hover {
  background-color: #3398dc;
  overflow: hidden; }

/* Button Indigo */
.u-btn-indigo {
  color: #fff;
  background-color: #4263a3; }

.u-btn-indigo:hover, .u-btn-indigo.active {
  border-color: #5b7cbd;
  background-color: #5b7cbd; }

.u-btn-indigo:hover, .u-btn-indigo:focus, .u-btn-indigo.active {
  color: #fff; }

.u-btn-indigo.g-btn-hover-reset:hover, .u-btn-indigo.g-btn-hover-reset.active {
  background-color: #4263a3;
  border-color: #4263a3; }

.u-btn-indigo.u-btn-hover-v1-1 {
  overflow: hidden; }

.u-btn-indigo.u-btn-hover-v1-1::after, .u-btn-indigo.u-btn-hover-v1-1:hover::after {
  background-color: #496eb5; }

.u-btn-indigo.u-btn-hover-v1-1:hover {
  background-color: #4263a3;
  overflow: hidden; }

.u-btn-indigo.u-btn-hover-v1-2 {
  overflow: hidden; }

.u-btn-indigo.u-btn-hover-v1-2::after, .u-btn-indigo.u-btn-hover-v1-2:hover::after {
  background-color: #496eb5; }

.u-btn-indigo.u-btn-hover-v1-2:hover {
  background-color: #4263a3;
  overflow: hidden; }

.u-btn-indigo.u-btn-hover-v1-3 {
  overflow: hidden; }

.u-btn-indigo.u-btn-hover-v1-3::after, .u-btn-indigo.u-btn-hover-v1-3:hover::after {
  background-color: #496eb5; }

.u-btn-indigo.u-btn-hover-v1-3:hover {
  background-color: #4263a3;
  overflow: hidden; }

.u-btn-indigo.u-btn-hover-v1-4 {
  overflow: hidden; }

.u-btn-indigo.u-btn-hover-v1-4::after, .u-btn-indigo.u-btn-hover-v1-4:hover::after {
  background-color: #496eb5; }

.u-btn-indigo.u-btn-hover-v1-4:hover {
  background-color: #4263a3;
  overflow: hidden; }

.u-btn-indigo.u-btn-hover-v2-1 {
  overflow: hidden; }

.u-btn-indigo.u-btn-hover-v2-1::after, .u-btn-indigo.u-btn-hover-v2-1:hover::after {
  background-color: #496eb5; }

.u-btn-indigo.u-btn-hover-v2-1:hover {
  background-color: #4263a3;
  overflow: hidden; }

.u-btn-indigo.u-btn-hover-v2-2 {
  overflow: hidden; }

.u-btn-indigo.u-btn-hover-v2-2::after, .u-btn-indigo.u-btn-hover-v2-2:hover::after {
  background-color: #496eb5; }

.u-btn-indigo.u-btn-hover-v2-2:hover {
  background-color: #4263a3;
  overflow: hidden; }

/* Button Purple */
.u-btn-purple {
  color: #fff;
  background-color: #9a69cb; }

.u-btn-purple:hover, .u-btn-purple.active {
  border-color: #b48fd8;
  background-color: #b48fd8; }

.u-btn-purple:hover, .u-btn-purple:focus, .u-btn-purple.active {
  color: #fff; }

.u-btn-purple.g-btn-hover-reset:hover, .u-btn-purple.g-btn-hover-reset.active {
  background-color: #9a69cb;
  border-color: #9a69cb; }

.u-btn-purple.u-btn-hover-v1-1 {
  overflow: hidden; }

.u-btn-purple.u-btn-hover-v1-1::after, .u-btn-purple.u-btn-hover-v1-1:hover::after {
  background-color: #a77cd2; }

.u-btn-purple.u-btn-hover-v1-1:hover {
  background-color: #9a69cb;
  overflow: hidden; }

.u-btn-purple.u-btn-hover-v1-2 {
  overflow: hidden; }

.u-btn-purple.u-btn-hover-v1-2::after, .u-btn-purple.u-btn-hover-v1-2:hover::after {
  background-color: #a77cd2; }

.u-btn-purple.u-btn-hover-v1-2:hover {
  background-color: #9a69cb;
  overflow: hidden; }

.u-btn-purple.u-btn-hover-v1-3 {
  overflow: hidden; }

.u-btn-purple.u-btn-hover-v1-3::after, .u-btn-purple.u-btn-hover-v1-3:hover::after {
  background-color: #a77cd2; }

.u-btn-purple.u-btn-hover-v1-3:hover {
  background-color: #9a69cb;
  overflow: hidden; }

.u-btn-purple.u-btn-hover-v1-4 {
  overflow: hidden; }

.u-btn-purple.u-btn-hover-v1-4::after, .u-btn-purple.u-btn-hover-v1-4:hover::after {
  background-color: #a77cd2; }

.u-btn-purple.u-btn-hover-v1-4:hover {
  background-color: #9a69cb;
  overflow: hidden; }

.u-btn-purple.u-btn-hover-v2-1 {
  overflow: hidden; }

.u-btn-purple.u-btn-hover-v2-1::after, .u-btn-purple.u-btn-hover-v2-1:hover::after {
  background-color: #a77cd2; }

.u-btn-purple.u-btn-hover-v2-1:hover {
  background-color: #9a69cb;
  overflow: hidden; }

.u-btn-purple.u-btn-hover-v2-2 {
  overflow: hidden; }

.u-btn-purple.u-btn-hover-v2-2::after, .u-btn-purple.u-btn-hover-v2-2:hover::after {
  background-color: #a77cd2; }

.u-btn-purple.u-btn-hover-v2-2:hover {
  background-color: #9a69cb;
  overflow: hidden; }

/* Button Dark Purple */
.u-btn-darkpurple {
  color: #fff;
  background-color: #6639b6; }

.u-btn-darkpurple:hover, .u-btn-darkpurple.active {
  border-color: #8157cb;
  background-color: #8157cb; }

.u-btn-darkpurple:hover, .u-btn-darkpurple:focus, .u-btn-darkpurple.active {
  color: #fff; }

.u-btn-darkpurple.g-btn-hover-reset:hover, .u-btn-darkpurple.g-btn-hover-reset.active {
  background-color: #6639b6;
  border-color: #6639b6; }

.u-btn-darkpurple.u-btn-hover-v1-1 {
  overflow: hidden; }

.u-btn-darkpurple.u-btn-hover-v1-1::after, .u-btn-darkpurple.u-btn-hover-v1-1:hover::after {
  background-color: #7244c4; }

.u-btn-darkpurple.u-btn-hover-v1-1:hover {
  background-color: #6639b6;
  overflow: hidden; }

.u-btn-darkpurple.u-btn-hover-v1-2 {
  overflow: hidden; }

.u-btn-darkpurple.u-btn-hover-v1-2::after, .u-btn-darkpurple.u-btn-hover-v1-2:hover::after {
  background-color: #7244c4; }

.u-btn-darkpurple.u-btn-hover-v1-2:hover {
  background-color: #6639b6;
  overflow: hidden; }

.u-btn-darkpurple.u-btn-hover-v1-3 {
  overflow: hidden; }

.u-btn-darkpurple.u-btn-hover-v1-3::after, .u-btn-darkpurple.u-btn-hover-v1-3:hover::after {
  background-color: #7244c4; }

.u-btn-darkpurple.u-btn-hover-v1-3:hover {
  background-color: #6639b6;
  overflow: hidden; }

.u-btn-darkpurple.u-btn-hover-v1-4 {
  overflow: hidden; }

.u-btn-darkpurple.u-btn-hover-v1-4::after, .u-btn-darkpurple.u-btn-hover-v1-4:hover::after {
  background-color: #7244c4; }

.u-btn-darkpurple.u-btn-hover-v1-4:hover {
  background-color: #6639b6;
  overflow: hidden; }

.u-btn-darkpurple.u-btn-hover-v2-1 {
  overflow: hidden; }

.u-btn-darkpurple.u-btn-hover-v2-1::after, .u-btn-darkpurple.u-btn-hover-v2-1:hover::after {
  background-color: #7244c4; }

.u-btn-darkpurple.u-btn-hover-v2-1:hover {
  background-color: #6639b6;
  overflow: hidden; }

.u-btn-darkpurple.u-btn-hover-v2-2 {
  overflow: hidden; }

.u-btn-darkpurple.u-btn-hover-v2-2::after, .u-btn-darkpurple.u-btn-hover-v2-2:hover::after {
  background-color: #7244c4; }

.u-btn-darkpurple.u-btn-hover-v2-2:hover {
  background-color: #6639b6;
  overflow: hidden; }

/* Button Pink */
.u-btn-pink {
  color: #fff;
  background-color: #e81c62; }

.u-btn-pink:hover, .u-btn-pink.active {
  border-color: #ed4a82;
  background-color: #ed4a82; }

.u-btn-pink:hover, .u-btn-pink:focus, .u-btn-pink.active {
  color: #fff; }

.u-btn-pink.g-btn-hover-reset:hover, .u-btn-pink.g-btn-hover-reset.active {
  background-color: #e81c62;
  border-color: #e81c62; }

.u-btn-pink.u-btn-hover-v1-1 {
  overflow: hidden; }

.u-btn-pink.u-btn-hover-v1-1::after, .u-btn-pink.u-btn-hover-v1-1:hover::after {
  background-color: #ea3372; }

.u-btn-pink.u-btn-hover-v1-1:hover {
  background-color: #e81c62;
  overflow: hidden; }

.u-btn-pink.u-btn-hover-v1-2 {
  overflow: hidden; }

.u-btn-pink.u-btn-hover-v1-2::after, .u-btn-pink.u-btn-hover-v1-2:hover::after {
  background-color: #ea3372; }

.u-btn-pink.u-btn-hover-v1-2:hover {
  background-color: #e81c62;
  overflow: hidden; }

.u-btn-pink.u-btn-hover-v1-3 {
  overflow: hidden; }

.u-btn-pink.u-btn-hover-v1-3::after, .u-btn-pink.u-btn-hover-v1-3:hover::after {
  background-color: #ea3372; }

.u-btn-pink.u-btn-hover-v1-3:hover {
  background-color: #e81c62;
  overflow: hidden; }

.u-btn-pink.u-btn-hover-v1-4 {
  overflow: hidden; }

.u-btn-pink.u-btn-hover-v1-4::after, .u-btn-pink.u-btn-hover-v1-4:hover::after {
  background-color: #ea3372; }

.u-btn-pink.u-btn-hover-v1-4:hover {
  background-color: #e81c62;
  overflow: hidden; }

.u-btn-pink.u-btn-hover-v2-1 {
  overflow: hidden; }

.u-btn-pink.u-btn-hover-v2-1::after, .u-btn-pink.u-btn-hover-v2-1:hover::after {
  background-color: #ea3372; }

.u-btn-pink.u-btn-hover-v2-1:hover {
  background-color: #e81c62;
  overflow: hidden; }

.u-btn-pink.u-btn-hover-v2-2 {
  overflow: hidden; }

.u-btn-pink.u-btn-hover-v2-2::after, .u-btn-pink.u-btn-hover-v2-2:hover::after {
  background-color: #ea3372; }

.u-btn-pink.u-btn-hover-v2-2:hover {
  background-color: #e81c62;
  overflow: hidden; }

/* Button Orange */
.u-btn-orange {
  color: #fff;
  background-color: #e57d20; }

.u-btn-orange:hover, .u-btn-orange.active {
  border-color: #ea984e;
  background-color: #ea984e; }

.u-btn-orange:hover, .u-btn-orange:focus, .u-btn-orange.active {
  color: #fff; }

.u-btn-orange.g-btn-hover-reset:hover, .u-btn-orange.g-btn-hover-reset.active {
  background-color: #e57d20;
  border-color: #e57d20; }

.u-btn-orange.u-btn-hover-v1-1 {
  overflow: hidden; }

.u-btn-orange.u-btn-hover-v1-1::after, .u-btn-orange.u-btn-hover-v1-1:hover::after {
  background-color: #e88a37; }

.u-btn-orange.u-btn-hover-v1-1:hover {
  background-color: #e57d20;
  overflow: hidden; }

.u-btn-orange.u-btn-hover-v1-2 {
  overflow: hidden; }

.u-btn-orange.u-btn-hover-v1-2::after, .u-btn-orange.u-btn-hover-v1-2:hover::after {
  background-color: #e88a37; }

.u-btn-orange.u-btn-hover-v1-2:hover {
  background-color: #e57d20;
  overflow: hidden; }

.u-btn-orange.u-btn-hover-v1-3 {
  overflow: hidden; }

.u-btn-orange.u-btn-hover-v1-3::after, .u-btn-orange.u-btn-hover-v1-3:hover::after {
  background-color: #e88a37; }

.u-btn-orange.u-btn-hover-v1-3:hover {
  background-color: #e57d20;
  overflow: hidden; }

.u-btn-orange.u-btn-hover-v1-4 {
  overflow: hidden; }

.u-btn-orange.u-btn-hover-v1-4::after, .u-btn-orange.u-btn-hover-v1-4:hover::after {
  background-color: #e88a37; }

.u-btn-orange.u-btn-hover-v1-4:hover {
  background-color: #e57d20;
  overflow: hidden; }

.u-btn-orange.u-btn-hover-v2-1 {
  overflow: hidden; }

.u-btn-orange.u-btn-hover-v2-1::after, .u-btn-orange.u-btn-hover-v2-1:hover::after {
  background-color: #e88a37; }

.u-btn-orange.u-btn-hover-v2-1:hover {
  background-color: #e57d20;
  overflow: hidden; }

.u-btn-orange.u-btn-hover-v2-2 {
  overflow: hidden; }

.u-btn-orange.u-btn-hover-v2-2::after, .u-btn-orange.u-btn-hover-v2-2:hover::after {
  background-color: #e88a37; }

.u-btn-orange.u-btn-hover-v2-2:hover {
  background-color: #e57d20;
  overflow: hidden; }

/* Button Deep Orange */
.u-btn-deeporange {
  color: #fff;
  background-color: #fe541e; }

.u-btn-deeporange:hover, .u-btn-deeporange.active {
  border-color: #fe7b51;
  background-color: #fe7b51; }

.u-btn-deeporange:hover, .u-btn-deeporange:focus, .u-btn-deeporange.active {
  color: #fff; }

.u-btn-deeporange.g-btn-hover-reset:hover, .u-btn-deeporange.g-btn-hover-reset.active {
  background-color: #fe541e;
  border-color: #fe541e; }

.u-btn-deeporange.u-btn-hover-v1-1 {
  overflow: hidden; }

.u-btn-deeporange.u-btn-hover-v1-1::after, .u-btn-deeporange.u-btn-hover-v1-1:hover::after {
  background-color: #fe6737; }

.u-btn-deeporange.u-btn-hover-v1-1:hover {
  background-color: #fe541e;
  overflow: hidden; }

.u-btn-deeporange.u-btn-hover-v1-2 {
  overflow: hidden; }

.u-btn-deeporange.u-btn-hover-v1-2::after, .u-btn-deeporange.u-btn-hover-v1-2:hover::after {
  background-color: #fe6737; }

.u-btn-deeporange.u-btn-hover-v1-2:hover {
  background-color: #fe541e;
  overflow: hidden; }

.u-btn-deeporange.u-btn-hover-v1-3 {
  overflow: hidden; }

.u-btn-deeporange.u-btn-hover-v1-3::after, .u-btn-deeporange.u-btn-hover-v1-3:hover::after {
  background-color: #fe6737; }

.u-btn-deeporange.u-btn-hover-v1-3:hover {
  background-color: #fe541e;
  overflow: hidden; }

.u-btn-deeporange.u-btn-hover-v1-4 {
  overflow: hidden; }

.u-btn-deeporange.u-btn-hover-v1-4::after, .u-btn-deeporange.u-btn-hover-v1-4:hover::after {
  background-color: #fe6737; }

.u-btn-deeporange.u-btn-hover-v1-4:hover {
  background-color: #fe541e;
  overflow: hidden; }

.u-btn-deeporange.u-btn-hover-v2-1 {
  overflow: hidden; }

.u-btn-deeporange.u-btn-hover-v2-1::after, .u-btn-deeporange.u-btn-hover-v2-1:hover::after {
  background-color: #fe6737; }

.u-btn-deeporange.u-btn-hover-v2-1:hover {
  background-color: #fe541e;
  overflow: hidden; }

.u-btn-deeporange.u-btn-hover-v2-2 {
  overflow: hidden; }

.u-btn-deeporange.u-btn-hover-v2-2::after, .u-btn-deeporange.u-btn-hover-v2-2:hover::after {
  background-color: #fe6737; }

.u-btn-deeporange.u-btn-hover-v2-2:hover {
  background-color: #fe541e;
  overflow: hidden; }

/* Button Yellow */
.u-btn-yellow {
  color: #fff;
  background-color: #ebc71d; }

.u-btn-yellow:hover, .u-btn-yellow.active {
  border-color: #efd34c;
  background-color: #efd34c; }

.u-btn-yellow:hover, .u-btn-yellow:focus, .u-btn-yellow.active {
  color: #fff; }

.u-btn-yellow.g-btn-hover-reset:hover, .u-btn-yellow.g-btn-hover-reset.active {
  background-color: #ebc71d;
  border-color: #ebc71d; }

.u-btn-yellow.u-btn-hover-v1-1 {
  overflow: hidden; }

.u-btn-yellow.u-btn-hover-v1-1::after, .u-btn-yellow.u-btn-hover-v1-1:hover::after {
  background-color: #edcd34; }

.u-btn-yellow.u-btn-hover-v1-1:hover {
  background-color: #ebc71d;
  overflow: hidden; }

.u-btn-yellow.u-btn-hover-v1-2 {
  overflow: hidden; }

.u-btn-yellow.u-btn-hover-v1-2::after, .u-btn-yellow.u-btn-hover-v1-2:hover::after {
  background-color: #edcd34; }

.u-btn-yellow.u-btn-hover-v1-2:hover {
  background-color: #ebc71d;
  overflow: hidden; }

.u-btn-yellow.u-btn-hover-v1-3 {
  overflow: hidden; }

.u-btn-yellow.u-btn-hover-v1-3::after, .u-btn-yellow.u-btn-hover-v1-3:hover::after {
  background-color: #edcd34; }

.u-btn-yellow.u-btn-hover-v1-3:hover {
  background-color: #ebc71d;
  overflow: hidden; }

.u-btn-yellow.u-btn-hover-v1-4 {
  overflow: hidden; }

.u-btn-yellow.u-btn-hover-v1-4::after, .u-btn-yellow.u-btn-hover-v1-4:hover::after {
  background-color: #edcd34; }

.u-btn-yellow.u-btn-hover-v1-4:hover {
  background-color: #ebc71d;
  overflow: hidden; }

.u-btn-yellow.u-btn-hover-v2-1 {
  overflow: hidden; }

.u-btn-yellow.u-btn-hover-v2-1::after, .u-btn-yellow.u-btn-hover-v2-1:hover::after {
  background-color: #edcd34; }

.u-btn-yellow.u-btn-hover-v2-1:hover {
  background-color: #ebc71d;
  overflow: hidden; }

.u-btn-yellow.u-btn-hover-v2-2 {
  overflow: hidden; }

.u-btn-yellow.u-btn-hover-v2-2::after, .u-btn-yellow.u-btn-hover-v2-2:hover::after {
  background-color: #edcd34; }

.u-btn-yellow.u-btn-hover-v2-2:hover {
  background-color: #ebc71d;
  overflow: hidden; }

/* Button Aqua */
.u-btn-aqua {
  color: #fff;
  background-color: #29d6e6; }

.u-btn-aqua:hover, .u-btn-aqua.active {
  border-color: #57dfeb;
  background-color: #57dfeb; }

.u-btn-aqua:hover, .u-btn-aqua:focus, .u-btn-aqua.active {
  color: #fff; }

.u-btn-aqua.g-btn-hover-reset:hover, .u-btn-aqua.g-btn-hover-reset.active {
  background-color: #29d6e6;
  border-color: #29d6e6; }

.u-btn-aqua.u-btn-hover-v1-1 {
  overflow: hidden; }

.u-btn-aqua.u-btn-hover-v1-1::after, .u-btn-aqua.u-btn-hover-v1-1:hover::after {
  background-color: #40dae9; }

.u-btn-aqua.u-btn-hover-v1-1:hover {
  background-color: #29d6e6;
  overflow: hidden; }

.u-btn-aqua.u-btn-hover-v1-2 {
  overflow: hidden; }

.u-btn-aqua.u-btn-hover-v1-2::after, .u-btn-aqua.u-btn-hover-v1-2:hover::after {
  background-color: #40dae9; }

.u-btn-aqua.u-btn-hover-v1-2:hover {
  background-color: #29d6e6;
  overflow: hidden; }

.u-btn-aqua.u-btn-hover-v1-3 {
  overflow: hidden; }

.u-btn-aqua.u-btn-hover-v1-3::after, .u-btn-aqua.u-btn-hover-v1-3:hover::after {
  background-color: #40dae9; }

.u-btn-aqua.u-btn-hover-v1-3:hover {
  background-color: #29d6e6;
  overflow: hidden; }

.u-btn-aqua.u-btn-hover-v1-4 {
  overflow: hidden; }

.u-btn-aqua.u-btn-hover-v1-4::after, .u-btn-aqua.u-btn-hover-v1-4:hover::after {
  background-color: #40dae9; }

.u-btn-aqua.u-btn-hover-v1-4:hover {
  background-color: #29d6e6;
  overflow: hidden; }

.u-btn-aqua.u-btn-hover-v2-1 {
  overflow: hidden; }

.u-btn-aqua.u-btn-hover-v2-1::after, .u-btn-aqua.u-btn-hover-v2-1:hover::after {
  background-color: #40dae9; }

.u-btn-aqua.u-btn-hover-v2-1:hover {
  background-color: #29d6e6;
  overflow: hidden; }

.u-btn-aqua.u-btn-hover-v2-2 {
  overflow: hidden; }

.u-btn-aqua.u-btn-hover-v2-2::after, .u-btn-aqua.u-btn-hover-v2-2:hover::after {
  background-color: #40dae9; }

.u-btn-aqua.u-btn-hover-v2-2:hover {
  background-color: #29d6e6;
  overflow: hidden; }

/* Button Cyan */
.u-btn-cyan {
  color: #fff;
  background-color: #00bed6; }

.u-btn-cyan:hover, .u-btn-cyan.active {
  border-color: #0ae4ff;
  background-color: #0ae4ff; }

.u-btn-cyan:hover, .u-btn-cyan:focus, .u-btn-cyan.active {
  color: #fff; }

.u-btn-cyan.g-btn-hover-reset:hover, .u-btn-cyan.g-btn-hover-reset.active {
  background-color: #00bed6;
  border-color: #00bed6; }

.u-btn-cyan.u-btn-hover-v1-1 {
  overflow: hidden; }

.u-btn-cyan.u-btn-hover-v1-1::after, .u-btn-cyan.u-btn-hover-v1-1:hover::after {
  background-color: #00d5f0; }

.u-btn-cyan.u-btn-hover-v1-1:hover {
  background-color: #00bed6;
  overflow: hidden; }

.u-btn-cyan.u-btn-hover-v1-2 {
  overflow: hidden; }

.u-btn-cyan.u-btn-hover-v1-2::after, .u-btn-cyan.u-btn-hover-v1-2:hover::after {
  background-color: #00d5f0; }

.u-btn-cyan.u-btn-hover-v1-2:hover {
  background-color: #00bed6;
  overflow: hidden; }

.u-btn-cyan.u-btn-hover-v1-3 {
  overflow: hidden; }

.u-btn-cyan.u-btn-hover-v1-3::after, .u-btn-cyan.u-btn-hover-v1-3:hover::after {
  background-color: #00d5f0; }

.u-btn-cyan.u-btn-hover-v1-3:hover {
  background-color: #00bed6;
  overflow: hidden; }

.u-btn-cyan.u-btn-hover-v1-4 {
  overflow: hidden; }

.u-btn-cyan.u-btn-hover-v1-4::after, .u-btn-cyan.u-btn-hover-v1-4:hover::after {
  background-color: #00d5f0; }

.u-btn-cyan.u-btn-hover-v1-4:hover {
  background-color: #00bed6;
  overflow: hidden; }

.u-btn-cyan.u-btn-hover-v2-1 {
  overflow: hidden; }

.u-btn-cyan.u-btn-hover-v2-1::after, .u-btn-cyan.u-btn-hover-v2-1:hover::after {
  background-color: #00d5f0; }

.u-btn-cyan.u-btn-hover-v2-1:hover {
  background-color: #00bed6;
  overflow: hidden; }

.u-btn-cyan.u-btn-hover-v2-2 {
  overflow: hidden; }

.u-btn-cyan.u-btn-hover-v2-2::after, .u-btn-cyan.u-btn-hover-v2-2:hover::after {
  background-color: #00d5f0; }

.u-btn-cyan.u-btn-hover-v2-2:hover {
  background-color: #00bed6;
  overflow: hidden; }

/* Button Teal */
.u-btn-teal {
  color: #fff;
  background-color: #18ba9b; }

.u-btn-teal:hover, .u-btn-teal.active {
  border-color: #22e3be;
  background-color: #22e3be; }

.u-btn-teal:hover, .u-btn-teal:focus, .u-btn-teal.active {
  color: #fff; }

.u-btn-teal.g-btn-hover-reset:hover, .u-btn-teal.g-btn-hover-reset.active {
  background-color: #18ba9b;
  border-color: #18ba9b; }

.u-btn-teal.u-btn-hover-v1-1 {
  overflow: hidden; }

.u-btn-teal.u-btn-hover-v1-1::after, .u-btn-teal.u-btn-hover-v1-1:hover::after {
  background-color: #1bd1ae; }

.u-btn-teal.u-btn-hover-v1-1:hover {
  background-color: #18ba9b;
  overflow: hidden; }

.u-btn-teal.u-btn-hover-v1-2 {
  overflow: hidden; }

.u-btn-teal.u-btn-hover-v1-2::after, .u-btn-teal.u-btn-hover-v1-2:hover::after {
  background-color: #1bd1ae; }

.u-btn-teal.u-btn-hover-v1-2:hover {
  background-color: #18ba9b;
  overflow: hidden; }

.u-btn-teal.u-btn-hover-v1-3 {
  overflow: hidden; }

.u-btn-teal.u-btn-hover-v1-3::after, .u-btn-teal.u-btn-hover-v1-3:hover::after {
  background-color: #1bd1ae; }

.u-btn-teal.u-btn-hover-v1-3:hover {
  background-color: #18ba9b;
  overflow: hidden; }

.u-btn-teal.u-btn-hover-v1-4 {
  overflow: hidden; }

.u-btn-teal.u-btn-hover-v1-4::after, .u-btn-teal.u-btn-hover-v1-4:hover::after {
  background-color: #1bd1ae; }

.u-btn-teal.u-btn-hover-v1-4:hover {
  background-color: #18ba9b;
  overflow: hidden; }

.u-btn-teal.u-btn-hover-v2-1 {
  overflow: hidden; }

.u-btn-teal.u-btn-hover-v2-1::after, .u-btn-teal.u-btn-hover-v2-1:hover::after {
  background-color: #1bd1ae; }

.u-btn-teal.u-btn-hover-v2-1:hover {
  background-color: #18ba9b;
  overflow: hidden; }

.u-btn-teal.u-btn-hover-v2-2 {
  overflow: hidden; }

.u-btn-teal.u-btn-hover-v2-2::after, .u-btn-teal.u-btn-hover-v2-2:hover::after {
  background-color: #1bd1ae; }

.u-btn-teal.u-btn-hover-v2-2:hover {
  background-color: #18ba9b;
  overflow: hidden; }

/* Button Brown */
.u-btn-brown {
  color: #fff;
  background-color: #9c8061; }

.u-btn-brown:hover, .u-btn-brown.active {
  border-color: #b09980;
  background-color: #b09980; }

.u-btn-brown:hover, .u-btn-brown:focus, .u-btn-brown.active {
  color: #fff; }

.u-btn-brown.g-btn-hover-reset:hover, .u-btn-brown.g-btn-hover-reset.active {
  background-color: #9c8061;
  border-color: #9c8061; }

.u-btn-brown.u-btn-hover-v1-1 {
  overflow: hidden; }

.u-btn-brown.u-btn-hover-v1-1::after, .u-btn-brown.u-btn-hover-v1-1:hover::after {
  background-color: #a68d70; }

.u-btn-brown.u-btn-hover-v1-1:hover {
  background-color: #9c8061;
  overflow: hidden; }

.u-btn-brown.u-btn-hover-v1-2 {
  overflow: hidden; }

.u-btn-brown.u-btn-hover-v1-2::after, .u-btn-brown.u-btn-hover-v1-2:hover::after {
  background-color: #a68d70; }

.u-btn-brown.u-btn-hover-v1-2:hover {
  background-color: #9c8061;
  overflow: hidden; }

.u-btn-brown.u-btn-hover-v1-3 {
  overflow: hidden; }

.u-btn-brown.u-btn-hover-v1-3::after, .u-btn-brown.u-btn-hover-v1-3:hover::after {
  background-color: #a68d70; }

.u-btn-brown.u-btn-hover-v1-3:hover {
  background-color: #9c8061;
  overflow: hidden; }

.u-btn-brown.u-btn-hover-v1-4 {
  overflow: hidden; }

.u-btn-brown.u-btn-hover-v1-4::after, .u-btn-brown.u-btn-hover-v1-4:hover::after {
  background-color: #a68d70; }

.u-btn-brown.u-btn-hover-v1-4:hover {
  background-color: #9c8061;
  overflow: hidden; }

.u-btn-brown.u-btn-hover-v2-1 {
  overflow: hidden; }

.u-btn-brown.u-btn-hover-v2-1::after, .u-btn-brown.u-btn-hover-v2-1:hover::after {
  background-color: #a68d70; }

.u-btn-brown.u-btn-hover-v2-1:hover {
  background-color: #9c8061;
  overflow: hidden; }

.u-btn-brown.u-btn-hover-v2-2 {
  overflow: hidden; }

.u-btn-brown.u-btn-hover-v2-2::after, .u-btn-brown.u-btn-hover-v2-2:hover::after {
  background-color: #a68d70; }

.u-btn-brown.u-btn-hover-v2-2:hover {
  background-color: #9c8061;
  overflow: hidden; }

/* Button Bluegrey */
.u-btn-bluegray {
  color: #fff;
  background-color: #585f69; }

.u-btn-bluegray:hover, .u-btn-bluegray.active {
  border-color: #6f7885;
  background-color: #6f7885; }

.u-btn-bluegray:hover, .u-btn-bluegray:focus, .u-btn-bluegray.active {
  color: #fff; }

.u-btn-bluegray.g-btn-hover-reset:hover, .u-btn-bluegray.g-btn-hover-reset.active {
  background-color: #585f69;
  border-color: #585f69; }

.u-btn-bluegray.u-btn-hover-v1-1 {
  overflow: hidden; }

.u-btn-bluegray.u-btn-hover-v1-1::after, .u-btn-bluegray.u-btn-hover-v1-1:hover::after {
  background-color: #646c77; }

.u-btn-bluegray.u-btn-hover-v1-1:hover {
  background-color: #585f69;
  overflow: hidden; }

.u-btn-bluegray.u-btn-hover-v1-2 {
  overflow: hidden; }

.u-btn-bluegray.u-btn-hover-v1-2::after, .u-btn-bluegray.u-btn-hover-v1-2:hover::after {
  background-color: #646c77; }

.u-btn-bluegray.u-btn-hover-v1-2:hover {
  background-color: #585f69;
  overflow: hidden; }

.u-btn-bluegray.u-btn-hover-v1-3 {
  overflow: hidden; }

.u-btn-bluegray.u-btn-hover-v1-3::after, .u-btn-bluegray.u-btn-hover-v1-3:hover::after {
  background-color: #646c77; }

.u-btn-bluegray.u-btn-hover-v1-3:hover {
  background-color: #585f69;
  overflow: hidden; }

.u-btn-bluegray.u-btn-hover-v1-4 {
  overflow: hidden; }

.u-btn-bluegray.u-btn-hover-v1-4::after, .u-btn-bluegray.u-btn-hover-v1-4:hover::after {
  background-color: #646c77; }

.u-btn-bluegray.u-btn-hover-v1-4:hover {
  background-color: #585f69;
  overflow: hidden; }

.u-btn-bluegray.u-btn-hover-v2-1 {
  overflow: hidden; }

.u-btn-bluegray.u-btn-hover-v2-1::after, .u-btn-bluegray.u-btn-hover-v2-1:hover::after {
  background-color: #646c77; }

.u-btn-bluegray.u-btn-hover-v2-1:hover {
  background-color: #585f69;
  overflow: hidden; }

.u-btn-bluegray.u-btn-hover-v2-2 {
  overflow: hidden; }

.u-btn-bluegray.u-btn-hover-v2-2::after, .u-btn-bluegray.u-btn-hover-v2-2:hover::after {
  background-color: #646c77; }

.u-btn-bluegray.u-btn-hover-v2-2:hover {
  background-color: #585f69;
  overflow: hidden; }

/* Button Facebook */
.u-btn-facebook {
  color: #fff;
  background-color: #3b5998; }

.u-btn-facebook:hover, .u-btn-facebook.active {
  border-color: #4c70ba;
  background-color: #4c70ba; }

.u-btn-facebook:hover, .u-btn-facebook:focus, .u-btn-facebook.active {
  color: #fff; }

.u-btn-facebook.g-btn-hover-reset:hover, .u-btn-facebook.g-btn-hover-reset.active {
  background-color: #3b5998;
  border-color: #3b5998; }

/* Button Twitter */
.u-btn-twitter {
  color: #fff;
  background-color: #00acee; }

.u-btn-twitter:hover, .u-btn-twitter.active {
  border-color: #22c2ff;
  background-color: #22c2ff; }

.u-btn-twitter:hover, .u-btn-twitter:focus, .u-btn-twitter.active {
  color: #fff; }

.u-btn-twitter.g-btn-hover-reset:hover, .u-btn-twitter.g-btn-hover-reset.active {
  background-color: #00acee;
  border-color: #00acee; }

/* Button Instagram */
.u-btn-instagram {
  color: #fff;
  background-color: #3f729b; }

.u-btn-instagram:hover, .u-btn-instagram.active {
  border-color: #548cb9;
  background-color: #548cb9; }

.u-btn-instagram:hover, .u-btn-instagram:focus, .u-btn-instagram.active {
  color: #fff; }

.u-btn-instagram.g-btn-hover-reset:hover, .u-btn-instagram.g-btn-hover-reset.active {
  background-color: #3f729b;
  border-color: #3f729b; }

/* Button VK */
.u-btn-vk {
  color: #fff;
  background-color: #2b587a; }

.u-btn-vk:hover, .u-btn-vk.active {
  border-color: #3873a0;
  background-color: #3873a0; }

.u-btn-vk:hover, .u-btn-vk:focus, .u-btn-vk.active {
  color: #fff; }

.u-btn-vk.g-btn-hover-reset:hover, .u-btn-vk.g-btn-hover-reset.active {
  background-color: #2b587a;
  border-color: #2b587a; }

/* Button Google Plus */
.u-btn-google-plus {
  color: #fff;
  background-color: #dd4b39; }

.u-btn-google-plus:hover, .u-btn-google-plus.active {
  border-color: #e47365;
  background-color: #e47365; }

.u-btn-google-plus:hover, .u-btn-google-plus:focus, .u-btn-google-plus.active {
  color: #fff; }

.u-btn-google-plus.g-btn-hover-reset:hover, .u-btn-google-plus.g-btn-hover-reset.active {
  background-color: #dd4b39;
  border-color: #dd4b39; }

/* Outline Button Primary */
.u-btn-outline-primary {
  color: #72c02c;
  border-color: #72c02c;
  background-color: transparent; }

.u-btn-outline-primary:focus, .u-btn-outline-primary.active {
  color: #fff;
  background-color: #72c02c; }

.u-btn-outline-primary:hover {
  color: #fff;
  background-color: #72c02c; }

.u-btn-outline-primary.u-btn-hover-v1-1 {
  overflow: hidden; }

.u-btn-outline-primary.u-btn-hover-v1-1::after, .u-btn-outline-primary.u-btn-hover-v1-1:hover::after {
  background-color: #7fd135; }

.u-btn-outline-primary.u-btn-hover-v1-1:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-primary.u-btn-hover-v1-2 {
  overflow: hidden; }

.u-btn-outline-primary.u-btn-hover-v1-2::after, .u-btn-outline-primary.u-btn-hover-v1-2:hover::after {
  background-color: #7fd135; }

.u-btn-outline-primary.u-btn-hover-v1-2:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-primary.u-btn-hover-v1-3 {
  overflow: hidden; }

.u-btn-outline-primary.u-btn-hover-v1-3::after, .u-btn-outline-primary.u-btn-hover-v1-3:hover::after {
  background-color: #7fd135; }

.u-btn-outline-primary.u-btn-hover-v1-3:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-primary.u-btn-hover-v1-4 {
  overflow: hidden; }

.u-btn-outline-primary.u-btn-hover-v1-4::after, .u-btn-outline-primary.u-btn-hover-v1-4:hover::after {
  background-color: #7fd135; }

.u-btn-outline-primary.u-btn-hover-v1-4:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-primary.u-btn-hover-v2-1 {
  overflow: hidden; }

.u-btn-outline-primary.u-btn-hover-v2-1::after, .u-btn-outline-primary.u-btn-hover-v2-1:hover::after {
  background-color: #7fd135; }

.u-btn-outline-primary.u-btn-hover-v2-1:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-primary.u-btn-hover-v2-2 {
  overflow: hidden; }

.u-btn-outline-primary.u-btn-hover-v2-2::after, .u-btn-outline-primary.u-btn-hover-v2-2:hover::after {
  background-color: #7fd135; }

.u-btn-outline-primary.u-btn-hover-v2-2:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-primary.u-btn-hover-v3-1 {
  overflow: hidden; }

.u-btn-outline-primary.u-btn-hover-v3-1::after, .u-btn-outline-primary.u-btn-hover-v3-1:hover::after {
  background-color: #7fd135; }

.u-btn-outline-primary.u-btn-hover-v3-1:hover {
  overflow: hidden;
  background-color: transparent; }

/* Outline Button White */
.u-btn-outline-white {
  color: #fff;
  border-color: #fff;
  background-color: transparent; }

.u-btn-outline-white:focus, .u-btn-outline-white.active {
  color: #555;
  background-color: #fff; }

.u-btn-outline-white:hover {
  color: #555;
  background-color: #fff; }

.u-btn-outline-white.u-btn-hover-v1-1 {
  overflow: hidden; }

.u-btn-outline-white.u-btn-hover-v1-1::after, .u-btn-outline-white.u-btn-hover-v1-1:hover::after {
  background-color: white; }

.u-btn-outline-white.u-btn-hover-v1-1:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-white.u-btn-hover-v1-2 {
  overflow: hidden; }

.u-btn-outline-white.u-btn-hover-v1-2::after, .u-btn-outline-white.u-btn-hover-v1-2:hover::after {
  background-color: white; }

.u-btn-outline-white.u-btn-hover-v1-2:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-white.u-btn-hover-v1-3 {
  overflow: hidden; }

.u-btn-outline-white.u-btn-hover-v1-3::after, .u-btn-outline-white.u-btn-hover-v1-3:hover::after {
  background-color: white; }

.u-btn-outline-white.u-btn-hover-v1-3:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-white.u-btn-hover-v1-4 {
  overflow: hidden; }

.u-btn-outline-white.u-btn-hover-v1-4::after, .u-btn-outline-white.u-btn-hover-v1-4:hover::after {
  background-color: white; }

.u-btn-outline-white.u-btn-hover-v1-4:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-white.u-btn-hover-v2-1 {
  overflow: hidden; }

.u-btn-outline-white.u-btn-hover-v2-1::after, .u-btn-outline-white.u-btn-hover-v2-1:hover::after {
  background-color: white; }

.u-btn-outline-white.u-btn-hover-v2-1:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-white.u-btn-hover-v2-2 {
  overflow: hidden; }

.u-btn-outline-white.u-btn-hover-v2-2::after, .u-btn-outline-white.u-btn-hover-v2-2:hover::after {
  background-color: white; }

.u-btn-outline-white.u-btn-hover-v2-2:hover {
  overflow: hidden;
  background-color: transparent; }

/* Outline Button Black */
.u-btn-outline-black {
  color: #000;
  border-color: #000;
  background-color: transparent; }

.u-btn-outline-black:focus, .u-btn-outline-black.active {
  color: #fff;
  background-color: #000; }

.u-btn-outline-black:hover {
  color: #fff;
  background-color: #000; }

.u-btn-outline-black.u-btn-hover-v1-1 {
  overflow: hidden; }

.u-btn-outline-black.u-btn-hover-v1-1::after, .u-btn-outline-black.u-btn-hover-v1-1:hover::after {
  background-color: #0d0d0d; }

.u-btn-outline-black.u-btn-hover-v1-1:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-black.u-btn-hover-v1-2 {
  overflow: hidden; }

.u-btn-outline-black.u-btn-hover-v1-2::after, .u-btn-outline-black.u-btn-hover-v1-2:hover::after {
  background-color: #0d0d0d; }

.u-btn-outline-black.u-btn-hover-v1-2:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-black.u-btn-hover-v1-3 {
  overflow: hidden; }

.u-btn-outline-black.u-btn-hover-v1-3::after, .u-btn-outline-black.u-btn-hover-v1-3:hover::after {
  background-color: #0d0d0d; }

.u-btn-outline-black.u-btn-hover-v1-3:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-black.u-btn-hover-v1-4 {
  overflow: hidden; }

.u-btn-outline-black.u-btn-hover-v1-4::after, .u-btn-outline-black.u-btn-hover-v1-4:hover::after {
  background-color: #0d0d0d; }

.u-btn-outline-black.u-btn-hover-v1-4:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-black.u-btn-hover-v2-1 {
  overflow: hidden; }

.u-btn-outline-black.u-btn-hover-v2-1::after, .u-btn-outline-black.u-btn-hover-v2-1:hover::after {
  background-color: #0d0d0d; }

.u-btn-outline-black.u-btn-hover-v2-1:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-black.u-btn-hover-v2-2 {
  overflow: hidden; }

.u-btn-outline-black.u-btn-hover-v2-2::after, .u-btn-outline-black.u-btn-hover-v2-2:hover::after {
  background-color: #0d0d0d; }

.u-btn-outline-black.u-btn-hover-v2-2:hover {
  overflow: hidden;
  background-color: transparent; }

/* Outline Button Dark Gray */
.u-btn-outline-darkgray {
  color: #333;
  border-color: #333;
  background-color: transparent; }

.u-btn-outline-darkgray:focus, .u-btn-outline-darkgray.active {
  color: #fff;
  background-color: #333; }

.u-btn-outline-darkgray:hover {
  color: #fff;
  background-color: #333; }

.u-btn-outline-darkgray.u-btn-hover-v1-1 {
  overflow: hidden; }

.u-btn-outline-darkgray.u-btn-hover-v1-1::after, .u-btn-outline-darkgray.u-btn-hover-v1-1:hover::after {
  background-color: #404040; }

.u-btn-outline-darkgray.u-btn-hover-v1-1:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-darkgray.u-btn-hover-v1-2 {
  overflow: hidden; }

.u-btn-outline-darkgray.u-btn-hover-v1-2::after, .u-btn-outline-darkgray.u-btn-hover-v1-2:hover::after {
  background-color: #404040; }

.u-btn-outline-darkgray.u-btn-hover-v1-2:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-darkgray.u-btn-hover-v1-3 {
  overflow: hidden; }

.u-btn-outline-darkgray.u-btn-hover-v1-3::after, .u-btn-outline-darkgray.u-btn-hover-v1-3:hover::after {
  background-color: #404040; }

.u-btn-outline-darkgray.u-btn-hover-v1-3:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-darkgray.u-btn-hover-v1-4 {
  overflow: hidden; }

.u-btn-outline-darkgray.u-btn-hover-v1-4::after, .u-btn-outline-darkgray.u-btn-hover-v1-4:hover::after {
  background-color: #404040; }

.u-btn-outline-darkgray.u-btn-hover-v1-4:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-darkgray.u-btn-hover-v2-1 {
  overflow: hidden; }

.u-btn-outline-darkgray.u-btn-hover-v2-1::after, .u-btn-outline-darkgray.u-btn-hover-v2-1:hover::after {
  background-color: #404040; }

.u-btn-outline-darkgray.u-btn-hover-v2-1:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-darkgray.u-btn-hover-v2-2 {
  overflow: hidden; }

.u-btn-outline-darkgray.u-btn-hover-v2-2::after, .u-btn-outline-darkgray.u-btn-hover-v2-2:hover::after {
  background-color: #404040; }

.u-btn-outline-darkgray.u-btn-hover-v2-2:hover {
  overflow: hidden;
  background-color: transparent; }

/* Outline Button Light Gray */
.u-btn-outline-lightgray {
  color: #555;
  border-color: #eee;
  background-color: transparent; }

.u-btn-outline-lightgray:focus, .u-btn-outline-lightgray.active {
  color: #555;
  background-color: #eee; }

.u-btn-outline-lightgray:hover {
  color: #555;
  background-color: #eee; }

.u-btn-outline-lightgray.u-btn-hover-v1-1 {
  overflow: hidden; }

.u-btn-outline-lightgray.u-btn-hover-v1-1::after, .u-btn-outline-lightgray.u-btn-hover-v1-1:hover::after {
  background-color: #fbfbfb; }

.u-btn-outline-lightgray.u-btn-hover-v1-1:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-lightgray.u-btn-hover-v1-2 {
  overflow: hidden; }

.u-btn-outline-lightgray.u-btn-hover-v1-2::after, .u-btn-outline-lightgray.u-btn-hover-v1-2:hover::after {
  background-color: #fbfbfb; }

.u-btn-outline-lightgray.u-btn-hover-v1-2:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-lightgray.u-btn-hover-v1-3 {
  overflow: hidden; }

.u-btn-outline-lightgray.u-btn-hover-v1-3::after, .u-btn-outline-lightgray.u-btn-hover-v1-3:hover::after {
  background-color: #fbfbfb; }

.u-btn-outline-lightgray.u-btn-hover-v1-3:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-lightgray.u-btn-hover-v1-4 {
  overflow: hidden; }

.u-btn-outline-lightgray.u-btn-hover-v1-4::after, .u-btn-outline-lightgray.u-btn-hover-v1-4:hover::after {
  background-color: #fbfbfb; }

.u-btn-outline-lightgray.u-btn-hover-v1-4:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-lightgray.u-btn-hover-v2-1 {
  overflow: hidden; }

.u-btn-outline-lightgray.u-btn-hover-v2-1::after, .u-btn-outline-lightgray.u-btn-hover-v2-1:hover::after {
  background-color: #fbfbfb; }

.u-btn-outline-lightgray.u-btn-hover-v2-1:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-lightgray.u-btn-hover-v2-2 {
  overflow: hidden; }

.u-btn-outline-lightgray.u-btn-hover-v2-2::after, .u-btn-outline-lightgray.u-btn-hover-v2-2:hover::after {
  background-color: #fbfbfb; }

.u-btn-outline-lightgray.u-btn-hover-v2-2:hover {
  overflow: hidden;
  background-color: transparent; }

/* Button Outline Red */
.u-btn-outline-red {
  color: #f00;
  border-color: #f00;
  background-color: transparent; }

.u-btn-outline-red:focus, .u-btn-outline-red.active {
  color: #fff;
  background-color: #f00; }

.u-btn-outline-red:hover {
  color: #fff;
  background-color: #f00; }

.u-btn-outline-red.u-btn-hover-v1-1 {
  overflow: hidden; }

.u-btn-outline-red.u-btn-hover-v1-1::after, .u-btn-outline-red.u-btn-hover-v1-1:hover::after {
  background-color: #ff1a1a; }

.u-btn-outline-red.u-btn-hover-v1-1:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-red.u-btn-hover-v1-2 {
  overflow: hidden; }

.u-btn-outline-red.u-btn-hover-v1-2::after, .u-btn-outline-red.u-btn-hover-v1-2:hover::after {
  background-color: #ff1a1a; }

.u-btn-outline-red.u-btn-hover-v1-2:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-red.u-btn-hover-v1-3 {
  overflow: hidden; }

.u-btn-outline-red.u-btn-hover-v1-3::after, .u-btn-outline-red.u-btn-hover-v1-3:hover::after {
  background-color: #ff1a1a; }

.u-btn-outline-red.u-btn-hover-v1-3:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-red.u-btn-hover-v1-4 {
  overflow: hidden; }

.u-btn-outline-red.u-btn-hover-v1-4::after, .u-btn-outline-red.u-btn-hover-v1-4:hover::after {
  background-color: #ff1a1a; }

.u-btn-outline-red.u-btn-hover-v1-4:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-red.u-btn-hover-v2-1 {
  overflow: hidden; }

.u-btn-outline-red.u-btn-hover-v2-1::after, .u-btn-outline-red.u-btn-hover-v2-1:hover::after {
  background-color: #ff1a1a; }

.u-btn-outline-red.u-btn-hover-v2-1:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-red.u-btn-hover-v2-2 {
  overflow: hidden; }

.u-btn-outline-red.u-btn-hover-v2-2::after, .u-btn-outline-red.u-btn-hover-v2-2:hover::after {
  background-color: #ff1a1a; }

.u-btn-outline-red.u-btn-hover-v2-2:hover {
  overflow: hidden;
  background-color: transparent; }

/* Button Outline Red Tomato */
.u-btn-outline-lightred {
  color: #e64b3b;
  border-color: #e64b3b;
  background-color: transparent; }

.u-btn-outline-lightred:focus, .u-btn-outline-lightred.active {
  color: #fff;
  background-color: #e64b3b; }

.u-btn-outline-lightred:hover {
  color: #fff;
  background-color: #e64b3b; }

.u-btn-outline-lightred.u-btn-hover-v1-1 {
  overflow: hidden; }

.u-btn-outline-lightred.u-btn-hover-v1-1::after, .u-btn-outline-lightred.u-btn-hover-v1-1:hover::after {
  background-color: #e96052; }

.u-btn-outline-lightred.u-btn-hover-v1-1:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-lightred.u-btn-hover-v1-2 {
  overflow: hidden; }

.u-btn-outline-lightred.u-btn-hover-v1-2::after, .u-btn-outline-lightred.u-btn-hover-v1-2:hover::after {
  background-color: #e96052; }

.u-btn-outline-lightred.u-btn-hover-v1-2:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-lightred.u-btn-hover-v1-3 {
  overflow: hidden; }

.u-btn-outline-lightred.u-btn-hover-v1-3::after, .u-btn-outline-lightred.u-btn-hover-v1-3:hover::after {
  background-color: #e96052; }

.u-btn-outline-lightred.u-btn-hover-v1-3:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-lightred.u-btn-hover-v1-4 {
  overflow: hidden; }

.u-btn-outline-lightred.u-btn-hover-v1-4::after, .u-btn-outline-lightred.u-btn-hover-v1-4:hover::after {
  background-color: #e96052; }

.u-btn-outline-lightred.u-btn-hover-v1-4:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-lightred.u-btn-hover-v2-1 {
  overflow: hidden; }

.u-btn-outline-lightred.u-btn-hover-v2-1::after, .u-btn-outline-lightred.u-btn-hover-v2-1:hover::after {
  background-color: #e96052; }

.u-btn-outline-lightred.u-btn-hover-v2-1:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-lightred.u-btn-hover-v2-2 {
  overflow: hidden; }

.u-btn-outline-lightred.u-btn-hover-v2-2::after, .u-btn-outline-lightred.u-btn-hover-v2-2:hover::after {
  background-color: #e96052; }

.u-btn-outline-lightred.u-btn-hover-v2-2:hover {
  overflow: hidden;
  background-color: transparent; }

/* Outline Button Dark Red */
.u-btn-outline-darkred {
  color: #a10f2b;
  border-color: #a10f2b;
  background-color: transparent; }

.u-btn-outline-darkred:focus, .u-btn-outline-darkred.active {
  color: #fff;
  background-color: #a10f2b; }

.u-btn-outline-darkred:hover {
  color: #fff;
  background-color: #a10f2b; }

.u-btn-outline-darkred.u-btn-hover-v1-1 {
  overflow: hidden; }

.u-btn-outline-darkred.u-btn-hover-v1-1::after, .u-btn-outline-darkred.u-btn-hover-v1-1:hover::after {
  background-color: #b81131; }

.u-btn-outline-darkred.u-btn-hover-v1-1:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-darkred.u-btn-hover-v1-2 {
  overflow: hidden; }

.u-btn-outline-darkred.u-btn-hover-v1-2::after, .u-btn-outline-darkred.u-btn-hover-v1-2:hover::after {
  background-color: #b81131; }

.u-btn-outline-darkred.u-btn-hover-v1-2:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-darkred.u-btn-hover-v1-3 {
  overflow: hidden; }

.u-btn-outline-darkred.u-btn-hover-v1-3::after, .u-btn-outline-darkred.u-btn-hover-v1-3:hover::after {
  background-color: #b81131; }

.u-btn-outline-darkred.u-btn-hover-v1-3:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-darkred.u-btn-hover-v1-4 {
  overflow: hidden; }

.u-btn-outline-darkred.u-btn-hover-v1-4::after, .u-btn-outline-darkred.u-btn-hover-v1-4:hover::after {
  background-color: #b81131; }

.u-btn-outline-darkred.u-btn-hover-v1-4:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-darkred.u-btn-hover-v2-1 {
  overflow: hidden; }

.u-btn-outline-darkred.u-btn-hover-v2-1::after, .u-btn-outline-darkred.u-btn-hover-v2-1:hover::after {
  background-color: #b81131; }

.u-btn-outline-darkred.u-btn-hover-v2-1:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-darkred.u-btn-hover-v2-2 {
  overflow: hidden; }

.u-btn-outline-darkred.u-btn-hover-v2-2::after, .u-btn-outline-darkred.u-btn-hover-v2-2:hover::after {
  background-color: #b81131; }

.u-btn-outline-darkred.u-btn-hover-v2-2:hover {
  overflow: hidden;
  background-color: transparent; }

/* Outline Button Blue */
.u-btn-outline-blue {
  color: #3398dc;
  border-color: #3398dc;
  background-color: transparent; }

.u-btn-outline-blue:focus, .u-btn-outline-blue.active {
  color: #fff;
  background-color: #3398dc; }

.u-btn-outline-blue:hover {
  color: #fff;
  background-color: #3398dc; }

.u-btn-outline-blue.u-btn-hover-v1-1 {
  overflow: hidden; }

.u-btn-outline-blue.u-btn-hover-v1-1::after, .u-btn-outline-blue.u-btn-hover-v1-1:hover::after {
  background-color: #49a3e0; }

.u-btn-outline-blue.u-btn-hover-v1-1:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-blue.u-btn-hover-v1-2 {
  overflow: hidden; }

.u-btn-outline-blue.u-btn-hover-v1-2::after, .u-btn-outline-blue.u-btn-hover-v1-2:hover::after {
  background-color: #49a3e0; }

.u-btn-outline-blue.u-btn-hover-v1-2:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-blue.u-btn-hover-v1-3 {
  overflow: hidden; }

.u-btn-outline-blue.u-btn-hover-v1-3::after, .u-btn-outline-blue.u-btn-hover-v1-3:hover::after {
  background-color: #49a3e0; }

.u-btn-outline-blue.u-btn-hover-v1-3:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-blue.u-btn-hover-v1-4 {
  overflow: hidden; }

.u-btn-outline-blue.u-btn-hover-v1-4::after, .u-btn-outline-blue.u-btn-hover-v1-4:hover::after {
  background-color: #49a3e0; }

.u-btn-outline-blue.u-btn-hover-v1-4:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-blue.u-btn-hover-v2-1 {
  overflow: hidden; }

.u-btn-outline-blue.u-btn-hover-v2-1::after, .u-btn-outline-blue.u-btn-hover-v2-1:hover::after {
  background-color: #49a3e0; }

.u-btn-outline-blue.u-btn-hover-v2-1:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-blue.u-btn-hover-v2-2 {
  overflow: hidden; }

.u-btn-outline-blue.u-btn-hover-v2-2::after, .u-btn-outline-blue.u-btn-hover-v2-2:hover::after {
  background-color: #49a3e0; }

.u-btn-outline-blue.u-btn-hover-v2-2:hover {
  overflow: hidden;
  background-color: transparent; }

/* Outline Button Indigo */
.u-btn-outline-indigo {
  color: #4263a3;
  border-color: #4263a3;
  background-color: transparent; }

.u-btn-outline-indigo:focus, .u-btn-outline-indigo.active {
  color: #fff;
  background-color: #4263a3; }

.u-btn-outline-indigo:hover {
  color: #fff;
  background-color: #4263a3; }

.u-btn-outline-indigo.u-btn-hover-v1-1 {
  overflow: hidden; }

.u-btn-outline-indigo.u-btn-hover-v1-1::after, .u-btn-outline-indigo.u-btn-hover-v1-1:hover::after {
  background-color: #496eb5; }

.u-btn-outline-indigo.u-btn-hover-v1-1:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-indigo.u-btn-hover-v1-2 {
  overflow: hidden; }

.u-btn-outline-indigo.u-btn-hover-v1-2::after, .u-btn-outline-indigo.u-btn-hover-v1-2:hover::after {
  background-color: #496eb5; }

.u-btn-outline-indigo.u-btn-hover-v1-2:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-indigo.u-btn-hover-v1-3 {
  overflow: hidden; }

.u-btn-outline-indigo.u-btn-hover-v1-3::after, .u-btn-outline-indigo.u-btn-hover-v1-3:hover::after {
  background-color: #496eb5; }

.u-btn-outline-indigo.u-btn-hover-v1-3:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-indigo.u-btn-hover-v1-4 {
  overflow: hidden; }

.u-btn-outline-indigo.u-btn-hover-v1-4::after, .u-btn-outline-indigo.u-btn-hover-v1-4:hover::after {
  background-color: #496eb5; }

.u-btn-outline-indigo.u-btn-hover-v1-4:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-indigo.u-btn-hover-v2-1 {
  overflow: hidden; }

.u-btn-outline-indigo.u-btn-hover-v2-1::after, .u-btn-outline-indigo.u-btn-hover-v2-1:hover::after {
  background-color: #496eb5; }

.u-btn-outline-indigo.u-btn-hover-v2-1:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-indigo.u-btn-hover-v2-2 {
  overflow: hidden; }

.u-btn-outline-indigo.u-btn-hover-v2-2::after, .u-btn-outline-indigo.u-btn-hover-v2-2:hover::after {
  background-color: #496eb5; }

.u-btn-outline-indigo.u-btn-hover-v2-2:hover {
  overflow: hidden;
  background-color: transparent; }

/* Outline Button Purple */
.u-btn-outline-purple {
  color: #9a69cb;
  border-color: #9a69cb;
  background-color: transparent; }

.u-btn-outline-purple:focus, .u-btn-outline-purple.active {
  color: #fff;
  background-color: #9a69cb; }

.u-btn-outline-purple:hover {
  color: #fff;
  background-color: #9a69cb; }

.u-btn-outline-purple.u-btn-hover-v1-1 {
  overflow: hidden; }

.u-btn-outline-purple.u-btn-hover-v1-1::after, .u-btn-outline-purple.u-btn-hover-v1-1:hover::after {
  background-color: #a77cd2; }

.u-btn-outline-purple.u-btn-hover-v1-1:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-purple.u-btn-hover-v1-2 {
  overflow: hidden; }

.u-btn-outline-purple.u-btn-hover-v1-2::after, .u-btn-outline-purple.u-btn-hover-v1-2:hover::after {
  background-color: #a77cd2; }

.u-btn-outline-purple.u-btn-hover-v1-2:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-purple.u-btn-hover-v1-3 {
  overflow: hidden; }

.u-btn-outline-purple.u-btn-hover-v1-3::after, .u-btn-outline-purple.u-btn-hover-v1-3:hover::after {
  background-color: #a77cd2; }

.u-btn-outline-purple.u-btn-hover-v1-3:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-purple.u-btn-hover-v1-4 {
  overflow: hidden; }

.u-btn-outline-purple.u-btn-hover-v1-4::after, .u-btn-outline-purple.u-btn-hover-v1-4:hover::after {
  background-color: #a77cd2; }

.u-btn-outline-purple.u-btn-hover-v1-4:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-purple.u-btn-hover-v2-1 {
  overflow: hidden; }

.u-btn-outline-purple.u-btn-hover-v2-1::after, .u-btn-outline-purple.u-btn-hover-v2-1:hover::after {
  background-color: #a77cd2; }

.u-btn-outline-purple.u-btn-hover-v2-1:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-purple.u-btn-hover-v2-2 {
  overflow: hidden; }

.u-btn-outline-purple.u-btn-hover-v2-2::after, .u-btn-outline-purple.u-btn-hover-v2-2:hover::after {
  background-color: #a77cd2; }

.u-btn-outline-purple.u-btn-hover-v2-2:hover {
  overflow: hidden;
  background-color: transparent; }

/* Outline Button Dark Purple */
.u-btn-outline-darkpurple {
  color: #6639b6;
  border-color: #6639b6;
  background-color: transparent; }

.u-btn-outline-darkpurple:focus, .u-btn-outline-darkpurple.active {
  color: #fff;
  background-color: #6639b6; }

.u-btn-outline-darkpurple:hover {
  color: #fff;
  background-color: #6639b6; }

.u-btn-outline-darkpurple.u-btn-hover-v1-1 {
  overflow: hidden; }

.u-btn-outline-darkpurple.u-btn-hover-v1-1::after, .u-btn-outline-darkpurple.u-btn-hover-v1-1:hover::after {
  background-color: #7244c4; }

.u-btn-outline-darkpurple.u-btn-hover-v1-1:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-darkpurple.u-btn-hover-v1-2 {
  overflow: hidden; }

.u-btn-outline-darkpurple.u-btn-hover-v1-2::after, .u-btn-outline-darkpurple.u-btn-hover-v1-2:hover::after {
  background-color: #7244c4; }

.u-btn-outline-darkpurple.u-btn-hover-v1-2:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-darkpurple.u-btn-hover-v1-3 {
  overflow: hidden; }

.u-btn-outline-darkpurple.u-btn-hover-v1-3::after, .u-btn-outline-darkpurple.u-btn-hover-v1-3:hover::after {
  background-color: #7244c4; }

.u-btn-outline-darkpurple.u-btn-hover-v1-3:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-darkpurple.u-btn-hover-v1-4 {
  overflow: hidden; }

.u-btn-outline-darkpurple.u-btn-hover-v1-4::after, .u-btn-outline-darkpurple.u-btn-hover-v1-4:hover::after {
  background-color: #7244c4; }

.u-btn-outline-darkpurple.u-btn-hover-v1-4:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-darkpurple.u-btn-hover-v2-1 {
  overflow: hidden; }

.u-btn-outline-darkpurple.u-btn-hover-v2-1::after, .u-btn-outline-darkpurple.u-btn-hover-v2-1:hover::after {
  background-color: #7244c4; }

.u-btn-outline-darkpurple.u-btn-hover-v2-1:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-darkpurple.u-btn-hover-v2-2 {
  overflow: hidden; }

.u-btn-outline-darkpurple.u-btn-hover-v2-2::after, .u-btn-outline-darkpurple.u-btn-hover-v2-2:hover::after {
  background-color: #7244c4; }

.u-btn-outline-darkpurple.u-btn-hover-v2-2:hover {
  overflow: hidden;
  background-color: transparent; }

/* Outline Button Pink */
.u-btn-outline-pink {
  color: #e81c62;
  border-color: #e81c62;
  background-color: transparent; }

.u-btn-outline-pink:focus, .u-btn-outline-pink.active {
  color: #fff;
  background-color: #e81c62; }

.u-btn-outline-pink:hover {
  color: #fff;
  background-color: #e81c62; }

.u-btn-outline-pink.u-btn-hover-v1-1 {
  overflow: hidden; }

.u-btn-outline-pink.u-btn-hover-v1-1::after, .u-btn-outline-pink.u-btn-hover-v1-1:hover::after {
  background-color: #ea3372; }

.u-btn-outline-pink.u-btn-hover-v1-1:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-pink.u-btn-hover-v1-2 {
  overflow: hidden; }

.u-btn-outline-pink.u-btn-hover-v1-2::after, .u-btn-outline-pink.u-btn-hover-v1-2:hover::after {
  background-color: #ea3372; }

.u-btn-outline-pink.u-btn-hover-v1-2:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-pink.u-btn-hover-v1-3 {
  overflow: hidden; }

.u-btn-outline-pink.u-btn-hover-v1-3::after, .u-btn-outline-pink.u-btn-hover-v1-3:hover::after {
  background-color: #ea3372; }

.u-btn-outline-pink.u-btn-hover-v1-3:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-pink.u-btn-hover-v1-4 {
  overflow: hidden; }

.u-btn-outline-pink.u-btn-hover-v1-4::after, .u-btn-outline-pink.u-btn-hover-v1-4:hover::after {
  background-color: #ea3372; }

.u-btn-outline-pink.u-btn-hover-v1-4:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-pink.u-btn-hover-v2-1 {
  overflow: hidden; }

.u-btn-outline-pink.u-btn-hover-v2-1::after, .u-btn-outline-pink.u-btn-hover-v2-1:hover::after {
  background-color: #ea3372; }

.u-btn-outline-pink.u-btn-hover-v2-1:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-pink.u-btn-hover-v2-2 {
  overflow: hidden; }

.u-btn-outline-pink.u-btn-hover-v2-2::after, .u-btn-outline-pink.u-btn-hover-v2-2:hover::after {
  background-color: #ea3372; }

.u-btn-outline-pink.u-btn-hover-v2-2:hover {
  overflow: hidden;
  background-color: transparent; }

/* Outline Button Orange */
.u-btn-outline-orange {
  color: #e57d20;
  border-color: #e57d20;
  background-color: transparent; }

.u-btn-outline-orange:focus, .u-btn-outline-orange.active {
  color: #fff;
  background-color: #e57d20; }

.u-btn-outline-orange:hover {
  color: #fff;
  background-color: #e57d20; }

.u-btn-outline-orange.u-btn-hover-v1-1 {
  overflow: hidden; }

.u-btn-outline-orange.u-btn-hover-v1-1::after, .u-btn-outline-orange.u-btn-hover-v1-1:hover::after {
  background-color: #e88a37; }

.u-btn-outline-orange.u-btn-hover-v1-1:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-orange.u-btn-hover-v1-2 {
  overflow: hidden; }

.u-btn-outline-orange.u-btn-hover-v1-2::after, .u-btn-outline-orange.u-btn-hover-v1-2:hover::after {
  background-color: #e88a37; }

.u-btn-outline-orange.u-btn-hover-v1-2:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-orange.u-btn-hover-v1-3 {
  overflow: hidden; }

.u-btn-outline-orange.u-btn-hover-v1-3::after, .u-btn-outline-orange.u-btn-hover-v1-3:hover::after {
  background-color: #e88a37; }

.u-btn-outline-orange.u-btn-hover-v1-3:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-orange.u-btn-hover-v1-4 {
  overflow: hidden; }

.u-btn-outline-orange.u-btn-hover-v1-4::after, .u-btn-outline-orange.u-btn-hover-v1-4:hover::after {
  background-color: #e88a37; }

.u-btn-outline-orange.u-btn-hover-v1-4:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-orange.u-btn-hover-v2-1 {
  overflow: hidden; }

.u-btn-outline-orange.u-btn-hover-v2-1::after, .u-btn-outline-orange.u-btn-hover-v2-1:hover::after {
  background-color: #e88a37; }

.u-btn-outline-orange.u-btn-hover-v2-1:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-orange.u-btn-hover-v2-2 {
  overflow: hidden; }

.u-btn-outline-orange.u-btn-hover-v2-2::after, .u-btn-outline-orange.u-btn-hover-v2-2:hover::after {
  background-color: #e88a37; }

.u-btn-outline-orange.u-btn-hover-v2-2:hover {
  overflow: hidden;
  background-color: transparent; }

/* Outline Button Deep Orange */
.u-btn-outline-deeporange {
  color: #fe541e;
  border-color: #fe541e;
  background-color: transparent; }

.u-btn-outline-deeporange:focus, .u-btn-outline-deeporange.active {
  color: #fff;
  background-color: #fe541e; }

.u-btn-outline-deeporange:hover {
  color: #fff;
  background-color: #fe541e; }

.u-btn-outline-deeporange.u-btn-hover-v1-1 {
  overflow: hidden; }

.u-btn-outline-deeporange.u-btn-hover-v1-1::after, .u-btn-outline-deeporange.u-btn-hover-v1-1:hover::after {
  background-color: #fe6737; }

.u-btn-outline-deeporange.u-btn-hover-v1-1:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-deeporange.u-btn-hover-v1-2 {
  overflow: hidden; }

.u-btn-outline-deeporange.u-btn-hover-v1-2::after, .u-btn-outline-deeporange.u-btn-hover-v1-2:hover::after {
  background-color: #fe6737; }

.u-btn-outline-deeporange.u-btn-hover-v1-2:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-deeporange.u-btn-hover-v1-3 {
  overflow: hidden; }

.u-btn-outline-deeporange.u-btn-hover-v1-3::after, .u-btn-outline-deeporange.u-btn-hover-v1-3:hover::after {
  background-color: #fe6737; }

.u-btn-outline-deeporange.u-btn-hover-v1-3:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-deeporange.u-btn-hover-v1-4 {
  overflow: hidden; }

.u-btn-outline-deeporange.u-btn-hover-v1-4::after, .u-btn-outline-deeporange.u-btn-hover-v1-4:hover::after {
  background-color: #fe6737; }

.u-btn-outline-deeporange.u-btn-hover-v1-4:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-deeporange.u-btn-hover-v2-1 {
  overflow: hidden; }

.u-btn-outline-deeporange.u-btn-hover-v2-1::after, .u-btn-outline-deeporange.u-btn-hover-v2-1:hover::after {
  background-color: #fe6737; }

.u-btn-outline-deeporange.u-btn-hover-v2-1:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-deeporange.u-btn-hover-v2-2 {
  overflow: hidden; }

.u-btn-outline-deeporange.u-btn-hover-v2-2::after, .u-btn-outline-deeporange.u-btn-hover-v2-2:hover::after {
  background-color: #fe6737; }

.u-btn-outline-deeporange.u-btn-hover-v2-2:hover {
  overflow: hidden;
  background-color: transparent; }

/* Outline Button Yellow */
.u-btn-outline-yellow {
  color: #555;
  border-color: #ebc71d;
  background-color: transparent; }

.u-btn-outline-yellow:focus, .u-btn-outline-yellow.active {
  color: #555;
  background-color: #ebc71d; }

.u-btn-outline-yellow:hover {
  color: #555;
  background-color: #ebc71d; }

.u-btn-outline-yellow.u-btn-hover-v1-1 {
  overflow: hidden; }

.u-btn-outline-yellow.u-btn-hover-v1-1::after, .u-btn-outline-yellow.u-btn-hover-v1-1:hover::after {
  background-color: #edcd34; }

.u-btn-outline-yellow.u-btn-hover-v1-1:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-yellow.u-btn-hover-v1-2 {
  overflow: hidden; }

.u-btn-outline-yellow.u-btn-hover-v1-2::after, .u-btn-outline-yellow.u-btn-hover-v1-2:hover::after {
  background-color: #edcd34; }

.u-btn-outline-yellow.u-btn-hover-v1-2:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-yellow.u-btn-hover-v1-3 {
  overflow: hidden; }

.u-btn-outline-yellow.u-btn-hover-v1-3::after, .u-btn-outline-yellow.u-btn-hover-v1-3:hover::after {
  background-color: #edcd34; }

.u-btn-outline-yellow.u-btn-hover-v1-3:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-yellow.u-btn-hover-v1-4 {
  overflow: hidden; }

.u-btn-outline-yellow.u-btn-hover-v1-4::after, .u-btn-outline-yellow.u-btn-hover-v1-4:hover::after {
  background-color: #edcd34; }

.u-btn-outline-yellow.u-btn-hover-v1-4:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-yellow.u-btn-hover-v2-1 {
  overflow: hidden; }

.u-btn-outline-yellow.u-btn-hover-v2-1::after, .u-btn-outline-yellow.u-btn-hover-v2-1:hover::after {
  background-color: #edcd34; }

.u-btn-outline-yellow.u-btn-hover-v2-1:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-yellow.u-btn-hover-v2-2 {
  overflow: hidden; }

.u-btn-outline-yellow.u-btn-hover-v2-2::after, .u-btn-outline-yellow.u-btn-hover-v2-2:hover::after {
  background-color: #edcd34; }

.u-btn-outline-yellow.u-btn-hover-v2-2:hover {
  overflow: hidden;
  background-color: transparent; }

/* Outline Button Aqua */
.u-btn-outline-aqua {
  color: #29d6e6;
  border-color: #29d6e6;
  background-color: transparent; }

.u-btn-outline-aqua:focus, .u-btn-outline-aqua.active {
  color: #fff;
  background-color: #29d6e6; }

.u-btn-outline-aqua:hover {
  color: #fff;
  background-color: #29d6e6; }

.u-btn-outline-aqua.u-btn-hover-v1-1 {
  overflow: hidden; }

.u-btn-outline-aqua.u-btn-hover-v1-1::after, .u-btn-outline-aqua.u-btn-hover-v1-1:hover::after {
  background-color: #40dae9; }

.u-btn-outline-aqua.u-btn-hover-v1-1:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-aqua.u-btn-hover-v1-2 {
  overflow: hidden; }

.u-btn-outline-aqua.u-btn-hover-v1-2::after, .u-btn-outline-aqua.u-btn-hover-v1-2:hover::after {
  background-color: #40dae9; }

.u-btn-outline-aqua.u-btn-hover-v1-2:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-aqua.u-btn-hover-v1-3 {
  overflow: hidden; }

.u-btn-outline-aqua.u-btn-hover-v1-3::after, .u-btn-outline-aqua.u-btn-hover-v1-3:hover::after {
  background-color: #40dae9; }

.u-btn-outline-aqua.u-btn-hover-v1-3:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-aqua.u-btn-hover-v1-4 {
  overflow: hidden; }

.u-btn-outline-aqua.u-btn-hover-v1-4::after, .u-btn-outline-aqua.u-btn-hover-v1-4:hover::after {
  background-color: #40dae9; }

.u-btn-outline-aqua.u-btn-hover-v1-4:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-aqua.u-btn-hover-v2-1 {
  overflow: hidden; }

.u-btn-outline-aqua.u-btn-hover-v2-1::after, .u-btn-outline-aqua.u-btn-hover-v2-1:hover::after {
  background-color: #40dae9; }

.u-btn-outline-aqua.u-btn-hover-v2-1:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-aqua.u-btn-hover-v2-2 {
  overflow: hidden; }

.u-btn-outline-aqua.u-btn-hover-v2-2::after, .u-btn-outline-aqua.u-btn-hover-v2-2:hover::after {
  background-color: #40dae9; }

.u-btn-outline-aqua.u-btn-hover-v2-2:hover {
  overflow: hidden;
  background-color: transparent; }

/* Outline Button Cyan */
.u-btn-outline-cyan {
  color: #00bed6;
  border-color: #00bed6;
  background-color: transparent; }

.u-btn-outline-cyan:focus, .u-btn-outline-cyan.active {
  color: #fff;
  background-color: #00bed6; }

.u-btn-outline-cyan:hover {
  color: #fff;
  background-color: #00bed6; }

.u-btn-outline-cyan.u-btn-hover-v1-1 {
  overflow: hidden; }

.u-btn-outline-cyan.u-btn-hover-v1-1::after, .u-btn-outline-cyan.u-btn-hover-v1-1:hover::after {
  background-color: #00d5f0; }

.u-btn-outline-cyan.u-btn-hover-v1-1:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-cyan.u-btn-hover-v1-2 {
  overflow: hidden; }

.u-btn-outline-cyan.u-btn-hover-v1-2::after, .u-btn-outline-cyan.u-btn-hover-v1-2:hover::after {
  background-color: #00d5f0; }

.u-btn-outline-cyan.u-btn-hover-v1-2:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-cyan.u-btn-hover-v1-3 {
  overflow: hidden; }

.u-btn-outline-cyan.u-btn-hover-v1-3::after, .u-btn-outline-cyan.u-btn-hover-v1-3:hover::after {
  background-color: #00d5f0; }

.u-btn-outline-cyan.u-btn-hover-v1-3:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-cyan.u-btn-hover-v1-4 {
  overflow: hidden; }

.u-btn-outline-cyan.u-btn-hover-v1-4::after, .u-btn-outline-cyan.u-btn-hover-v1-4:hover::after {
  background-color: #00d5f0; }

.u-btn-outline-cyan.u-btn-hover-v1-4:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-cyan.u-btn-hover-v2-1 {
  overflow: hidden; }

.u-btn-outline-cyan.u-btn-hover-v2-1::after, .u-btn-outline-cyan.u-btn-hover-v2-1:hover::after {
  background-color: #00d5f0; }

.u-btn-outline-cyan.u-btn-hover-v2-1:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-cyan.u-btn-hover-v2-2 {
  overflow: hidden; }

.u-btn-outline-cyan.u-btn-hover-v2-2::after, .u-btn-outline-cyan.u-btn-hover-v2-2:hover::after {
  background-color: #00d5f0; }

.u-btn-outline-cyan.u-btn-hover-v2-2:hover {
  overflow: hidden;
  background-color: transparent; }

/* Outline Button Teal */
.u-btn-outline-teal {
  color: #18ba9b;
  border-color: #18ba9b;
  background-color: transparent; }

.u-btn-outline-teal:focus, .u-btn-outline-teal.active {
  color: #fff;
  background-color: #18ba9b; }

.u-btn-outline-teal:hover {
  color: #fff;
  background-color: #18ba9b; }

.u-btn-outline-teal.u-btn-hover-v1-1 {
  overflow: hidden; }

.u-btn-outline-teal.u-btn-hover-v1-1::after, .u-btn-outline-teal.u-btn-hover-v1-1:hover::after {
  background-color: #1bd1ae; }

.u-btn-outline-teal.u-btn-hover-v1-1:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-teal.u-btn-hover-v1-2 {
  overflow: hidden; }

.u-btn-outline-teal.u-btn-hover-v1-2::after, .u-btn-outline-teal.u-btn-hover-v1-2:hover::after {
  background-color: #1bd1ae; }

.u-btn-outline-teal.u-btn-hover-v1-2:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-teal.u-btn-hover-v1-3 {
  overflow: hidden; }

.u-btn-outline-teal.u-btn-hover-v1-3::after, .u-btn-outline-teal.u-btn-hover-v1-3:hover::after {
  background-color: #1bd1ae; }

.u-btn-outline-teal.u-btn-hover-v1-3:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-teal.u-btn-hover-v1-4 {
  overflow: hidden; }

.u-btn-outline-teal.u-btn-hover-v1-4::after, .u-btn-outline-teal.u-btn-hover-v1-4:hover::after {
  background-color: #1bd1ae; }

.u-btn-outline-teal.u-btn-hover-v1-4:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-teal.u-btn-hover-v2-1 {
  overflow: hidden; }

.u-btn-outline-teal.u-btn-hover-v2-1::after, .u-btn-outline-teal.u-btn-hover-v2-1:hover::after {
  background-color: #1bd1ae; }

.u-btn-outline-teal.u-btn-hover-v2-1:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-teal.u-btn-hover-v2-2 {
  overflow: hidden; }

.u-btn-outline-teal.u-btn-hover-v2-2::after, .u-btn-outline-teal.u-btn-hover-v2-2:hover::after {
  background-color: #1bd1ae; }

.u-btn-outline-teal.u-btn-hover-v2-2:hover {
  overflow: hidden;
  background-color: transparent; }

/* Outline Button Brown */
.u-btn-outline-brown {
  color: #9c8061;
  border-color: #9c8061;
  background-color: transparent; }

.u-btn-outline-brown:focus, .u-btn-outline-brown.active {
  color: #fff;
  background-color: #9c8061; }

.u-btn-outline-brown:hover {
  color: #fff;
  background-color: #9c8061; }

.u-btn-outline-brown.u-btn-hover-v1-1 {
  overflow: hidden; }

.u-btn-outline-brown.u-btn-hover-v1-1::after, .u-btn-outline-brown.u-btn-hover-v1-1:hover::after {
  background-color: #a68d70; }

.u-btn-outline-brown.u-btn-hover-v1-1:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-brown.u-btn-hover-v1-2 {
  overflow: hidden; }

.u-btn-outline-brown.u-btn-hover-v1-2::after, .u-btn-outline-brown.u-btn-hover-v1-2:hover::after {
  background-color: #a68d70; }

.u-btn-outline-brown.u-btn-hover-v1-2:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-brown.u-btn-hover-v1-3 {
  overflow: hidden; }

.u-btn-outline-brown.u-btn-hover-v1-3::after, .u-btn-outline-brown.u-btn-hover-v1-3:hover::after {
  background-color: #a68d70; }

.u-btn-outline-brown.u-btn-hover-v1-3:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-brown.u-btn-hover-v1-4 {
  overflow: hidden; }

.u-btn-outline-brown.u-btn-hover-v1-4::after, .u-btn-outline-brown.u-btn-hover-v1-4:hover::after {
  background-color: #a68d70; }

.u-btn-outline-brown.u-btn-hover-v1-4:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-brown.u-btn-hover-v2-1 {
  overflow: hidden; }

.u-btn-outline-brown.u-btn-hover-v2-1::after, .u-btn-outline-brown.u-btn-hover-v2-1:hover::after {
  background-color: #a68d70; }

.u-btn-outline-brown.u-btn-hover-v2-1:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-brown.u-btn-hover-v2-2 {
  overflow: hidden; }

.u-btn-outline-brown.u-btn-hover-v2-2::after, .u-btn-outline-brown.u-btn-hover-v2-2:hover::after {
  background-color: #a68d70; }

.u-btn-outline-brown.u-btn-hover-v2-2:hover {
  overflow: hidden;
  background-color: transparent; }

/* Outline Button Bluegrey */
.u-btn-outline-bluegray {
  color: #585f69;
  border-color: #585f69;
  background-color: transparent; }

.u-btn-outline-bluegray:focus, .u-btn-outline-bluegray.active {
  color: #fff;
  background-color: #585f69; }

.u-btn-outline-bluegray:hover {
  color: #fff;
  background-color: #585f69; }

.u-btn-outline-bluegray.u-btn-hover-v1-1 {
  overflow: hidden; }

.u-btn-outline-bluegray.u-btn-hover-v1-1::after, .u-btn-outline-bluegray.u-btn-hover-v1-1:hover::after {
  background-color: #646c77; }

.u-btn-outline-bluegray.u-btn-hover-v1-1:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-bluegray.u-btn-hover-v1-2 {
  overflow: hidden; }

.u-btn-outline-bluegray.u-btn-hover-v1-2::after, .u-btn-outline-bluegray.u-btn-hover-v1-2:hover::after {
  background-color: #646c77; }

.u-btn-outline-bluegray.u-btn-hover-v1-2:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-bluegray.u-btn-hover-v1-3 {
  overflow: hidden; }

.u-btn-outline-bluegray.u-btn-hover-v1-3::after, .u-btn-outline-bluegray.u-btn-hover-v1-3:hover::after {
  background-color: #646c77; }

.u-btn-outline-bluegray.u-btn-hover-v1-3:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-bluegray.u-btn-hover-v1-4 {
  overflow: hidden; }

.u-btn-outline-bluegray.u-btn-hover-v1-4::after, .u-btn-outline-bluegray.u-btn-hover-v1-4:hover::after {
  background-color: #646c77; }

.u-btn-outline-bluegray.u-btn-hover-v1-4:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-bluegray.u-btn-hover-v2-1 {
  overflow: hidden; }

.u-btn-outline-bluegray.u-btn-hover-v2-1::after, .u-btn-outline-bluegray.u-btn-hover-v2-1:hover::after {
  background-color: #646c77; }

.u-btn-outline-bluegray.u-btn-hover-v2-1:hover {
  overflow: hidden;
  background-color: transparent; }

.u-btn-outline-bluegray.u-btn-hover-v2-2 {
  overflow: hidden; }

.u-btn-outline-bluegray.u-btn-hover-v2-2::after, .u-btn-outline-bluegray.u-btn-hover-v2-2:hover::after {
  background-color: #646c77; }

.u-btn-outline-bluegray.u-btn-hover-v2-2:hover {
  overflow: hidden;
  background-color: transparent; }

/* Button Facebook */
.u-btn-outline-facebook {
  color: #3b5998;
  border-color: #3b5998;
  background-color: transparent; }

.u-btn-outline-facebook:focus, .u-btn-outline-facebook.active {
  color: #fff;
  background-color: #3b5998; }

.u-btn-outline-facebook:hover {
  color: #fff;
  background-color: #3b5998; }

/* Button Twitter */
.u-btn-outline-twitter {
  color: #00acee;
  border-color: #00acee;
  background-color: transparent; }

.u-btn-outline-twitter:focus, .u-btn-outline-twitter.active {
  color: #fff;
  background-color: #00acee; }

.u-btn-outline-twitter:hover {
  color: #fff;
  background-color: #00acee; }

/* Button Dribbble */
.u-btn-outline-dribbble {
  color: #ea4c89;
  border-color: #ea4c89;
  background-color: transparent; }

.u-btn-outline-dribbble:focus, .u-btn-outline-dribbble.active {
  color: #fff;
  background-color: #ea4c89; }

.u-btn-outline-dribbble:hover {
  color: #fff;
  background-color: #ea4c89; }

/* Gradient Style v1 */
.u-btn-gradient-v1 {
  color: #fff;
  background: linear-gradient(to right, #4776E6 0%, #8E54E9 100%) !important;
  -o-border-image: linear-gradient(to right, #4776E6 0%, #8E54E9 100%);
  border-image: linear-gradient(to right, #4776E6 0%, #8E54E9 100%);
  border-image-slice: 1; }

.u-btn-gradient-v1:hover, .u-btn-gradient-v1:focus, .u-btn-gradient-v1.active {
  opacity: .9;
  color: #fff; }

/* Gradient Style v2 */
.u-btn-gradient-v2 {
  color: #fff;
  background: linear-gradient(to right, #E040FB 0%, #00BCD4 100%) !important;
  -o-border-image: linear-gradient(to right, #E040FB 0%, #00BCD4 100%);
  border-image: linear-gradient(to right, #E040FB 0%, #00BCD4 100%);
  border-image-slice: 1; }

.u-btn-gradient-v2:hover, .u-btn-gradient-v2:focus, .u-btn-gradient-v2.active {
  opacity: .9;
  color: #fff; }

/* Gradient Style v1 */
.u-btn-outline-gradient-v1 {
  color: #555;
  background: transparent;
  -o-border-image: linear-gradient(to right, #4776E6 0%, #8E54E9 100%);
  border-image: linear-gradient(to right, #4776E6 0%, #8E54E9 100%);
  border-image-slice: 1; }

.u-btn-outline-gradient-v1:hover, .u-btn-outline-gradient-v1:focus, .u-btn-outline-gradient-v1.active {
  background: linear-gradient(to right, #4776E6 0%, #8E54E9 100%);
  color: #fff; }

/* Gradient Style v2 */
.u-btn-outline-gradient-v2 {
  color: #555;
  background: transparent;
  -o-border-image: linear-gradient(to right, #E040FB 0%, #00BCD4 100%);
  border-image: linear-gradient(to right, #E040FB 0%, #00BCD4 100%);
  border-image-slice: 1; }

.u-btn-outline-gradient-v2:hover, .u-btn-outline-gradient-v2:focus, .u-btn-outline-gradient-v2.active {
  background: linear-gradient(to right, #E040FB 0%, #00BCD4 100%);
  color: #fff; }

/* Material Styles
------------------------------------*/
.u-btn-raised,
.u-btn-raised:active:focus,
.u-btn-raised:focus {
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12); }

/*------------------------------------
  Material: Floating
------------------------------------*/
.u-btn-floating {
  width: 2.85714rem;
  height: 2.85714rem;
  padding: 0;
  border-radius: 50%;
  vertical-align: middle;
  overflow: hidden;
  line-height: 2.85714rem; }

.u-btn-floating i {
  font-size: 1.6rem;
  line-height: 2.71429rem; }

.u-btn-floating.u-halfway-fab {
  position: absolute;
  right: 1.71429rem;
  bottom: -1.42857rem; }

.u-btn-floating.u-halfway-fab--left {
  right: auto;
  left: 1.71429rem; }

.u-btn-floating--large {
  width: 4rem;
  height: 4rem;
  line-height: 4rem; }

.u-btn-floating--large i {
  font-size: 1.6rem;
  line-height: 3.85714rem; }

.u-btn-floating--large.u-halfway-fab {
  bottom: -2rem; }

button.u-btn-floating {
  border: none; }

/*------------------------------------
  Material: Flat
------------------------------------*/
.u-btn-flat {
  color: #555;
  background-color: transparent; }

.u-btn-flat:hover {
  background-color: rgba(221, 221, 221, 0.4); }

.u-btn-flat:hover, .u-btn-flat:focus {
  color: #555; }

/*------------------------------------
  Icons Styles
------------------------------------*/
.u-icon-v1,
.u-icon-v2,
.u-icon-v3,
.u-icon-v4 {
  position: relative;
  display: inline-block;
  text-align: center;
  transition: all .2s ease-in-out; }

.u-icon-v1:hover,
.u-icon-v2:hover,
.u-icon-v3:hover,
.u-icon-v4:hover {
  text-decoration: none; }

.u-icon-v1::before,
.u-icon-v2::before,
.u-icon-v3::before {
  display: block; }

.u-icon-v1 > i,
.u-icon-v2 > i,
.u-icon-v3 > i,
.u-icon-v4 > span > i {
  position: relative;
  top: 50%;
  display: block;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  z-index: 2; }

[class*="u-icon-v"] .u-line-icon-pro {
  -webkit-transform: translateY(-45%);
  -ms-transform: translateY(-45%);
  transform: translateY(-45%); }

.u-icon-rotation {
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg); }

.u-icon-rotation .u-icon__elem {
  -webkit-transform: rotate(-45deg) translate(15%, -30%);
  -ms-transform: rotate(-45deg) translate(15%, -30%);
  transform: rotate(-45deg) translate(15%, -30%); }

.u-icon-rotation .u-line-icon-pro {
  -webkit-transform: rotate(-45deg) translate(25%, -30%);
  -ms-transform: rotate(-45deg) translate(25%, -30%);
  transform: rotate(-45deg) translate(25%, -30%); }

/*------------------------------------
  Icon-v1
------------------------------------*/
.u-icon-v1,
.u-icon-v1 .u-icon__elem-regular,
.u-icon-v1 .u-icon__elem-hover {
  width: 2.57143rem;
  height: 2.57143rem;
  font-size: 1.42857rem; }

.u-icon-v1.u-icon-size--xs,
.u-icon-v1.u-icon-size--xs .u-icon__elem-regular,
.u-icon-v1.u-icon-size--xs .u-icon__elem-hover {
  width: 1.64286rem;
  height: 1.64286rem;
  font-size: 0.92857rem; }

.u-icon-v1.u-icon-size--sm,
.u-icon-v1.u-icon-size--sm .u-icon__elem-regular,
.u-icon-v1.u-icon-size--sm .u-icon__elem-hover {
  width: 2.28571rem;
  height: 2.28571rem;
  font-size: 1.28571rem; }

.u-icon-v1.u-icon-size--lg,
.u-icon-v1.u-icon-size--lg .u-icon__elem-regular,
.u-icon-v1.u-icon-size--lg .u-icon__elem-hover {
  width: 4.5rem;
  height: 4.5rem;
  font-size: 2.5rem; }

.u-icon-v1.u-icon-size--xl,
.u-icon-v1.u-icon-size--xl .u-icon__elem-regular,
.u-icon-v1.u-icon-size--xl .u-icon__elem-hover {
  width: 5.14286rem;
  height: 5.14286rem;
  font-size: 2.85714rem; }

.u-icon-v1.u-icon-size--2xl,
.u-icon-v1.u-icon-size--2xl .u-icon__elem-regular,
.u-icon-v1.u-icon-size--2xl .u-icon__elem-hover {
  width: 5.85714rem;
  height: 5.85714rem;
  font-size: 3.57143rem; }

.u-icon-v1.u-icon-size--3xl,
.u-icon-v1.u-icon-size--3xl .u-icon__elem-regular,
.u-icon-v1.u-icon-size--3xl .u-icon__elem-hover {
  width: 8rem;
  height: 8rem;
  font-size: 5.71429rem; }

/*------------------------------------
  Icon-v2
------------------------------------*/
.u-icon-v2, .u-icon-v2 .u-icon__elem-regular,
.u-icon-v2 .u-icon__elem-hover, .u-icon-v3, .u-icon-v3 .u-icon__elem-regular,
.u-icon-v3 .u-icon__elem-hover, .u-icon-v4 .u-icon-v4-inner, .u-icon-v4 .u-icon__elem-regular,
.u-icon-v4 .u-icon__elem-hover, .u-icon-v5 {
  width: 3.92857rem;
  height: 3.92857rem;
  font-size: 1.57143rem; }

.u-icon-v2.u-icon-size--xs,
.u-icon-v2.u-icon-size--xs .u-icon__elem-regular,
.u-icon-v2.u-icon-size--xs .u-icon__elem-hover, .u-icon-v3.u-icon-size--xs,
.u-icon-v3.u-icon-size--xs .u-icon__elem-regular,
.u-icon-v3.u-icon-size--xs .u-icon__elem-hover, .u-icon-v4.u-icon-size--xs .u-icon-v4-inner,
.u-icon-v4.u-icon-size--xs .u-icon__elem-regular,
.u-icon-v4.u-icon-size--xs .u-icon__elem-hover, .u-icon-v5.u-icon-size--xs {
  width: 2.14286rem;
  height: 2.14286rem;
  font-size: 0.92857rem; }

.u-icon-v2.u-icon-size--sm,
.u-icon-v2.u-icon-size--sm .u-icon__elem-regular,
.u-icon-v2.u-icon-size--sm .u-icon__elem-hover, .u-icon-v3.u-icon-size--sm,
.u-icon-v3.u-icon-size--sm .u-icon__elem-regular,
.u-icon-v3.u-icon-size--sm .u-icon__elem-hover, .u-icon-v4.u-icon-size--sm .u-icon-v4-inner,
.u-icon-v4.u-icon-size--sm .u-icon__elem-regular,
.u-icon-v4.u-icon-size--sm .u-icon__elem-hover, .u-icon-v5.u-icon-size--sm {
  width: 2.85714rem;
  height: 2.85714rem;
  font-size: 1.28571rem; }

.u-icon-v2.u-icon-size--lg,
.u-icon-v2.u-icon-size--lg .u-icon__elem-regular,
.u-icon-v2.u-icon-size--lg .u-icon__elem-hover, .u-icon-v3.u-icon-size--lg,
.u-icon-v3.u-icon-size--lg .u-icon__elem-regular,
.u-icon-v3.u-icon-size--lg .u-icon__elem-hover, .u-icon-v4.u-icon-size--lg .u-icon-v4-inner,
.u-icon-v4.u-icon-size--lg .u-icon__elem-regular,
.u-icon-v4.u-icon-size--lg .u-icon__elem-hover, .u-icon-v5.u-icon-size--lg {
  width: 5rem;
  height: 5rem;
  font-size: 2.14286rem; }

.u-icon-v2.u-icon-size--xl,
.u-icon-v2.u-icon-size--xl .u-icon__elem-regular,
.u-icon-v2.u-icon-size--xl .u-icon__elem-hover, .u-icon-v3.u-icon-size--xl,
.u-icon-v3.u-icon-size--xl .u-icon__elem-regular,
.u-icon-v3.u-icon-size--xl .u-icon__elem-hover, .u-icon-v4.u-icon-size--xl .u-icon-v4-inner,
.u-icon-v4.u-icon-size--xl .u-icon__elem-regular,
.u-icon-v4.u-icon-size--xl .u-icon__elem-hover, .u-icon-v5.u-icon-size--xl {
  width: 6.42857rem;
  height: 6.42857rem;
  font-size: 2.85714rem; }

.u-icon-v2.u-icon-size--2xl,
.u-icon-v2.u-icon-size--2xl .u-icon__elem-regular,
.u-icon-v2.u-icon-size--2xl .u-icon__elem-hover, .u-icon-v3.u-icon-size--2xl,
.u-icon-v3.u-icon-size--2xl .u-icon__elem-regular,
.u-icon-v3.u-icon-size--2xl .u-icon__elem-hover, .u-icon-v4.u-icon-size--2xl .u-icon-v4-inner,
.u-icon-v4.u-icon-size--2xl .u-icon__elem-regular,
.u-icon-v4.u-icon-size--2xl .u-icon__elem-hover, .u-icon-v5.u-icon-size--2xl {
  width: 7.14286rem;
  height: 7.14286rem;
  font-size: 3.21429rem; }

.u-icon-v2.u-icon-size--3xl,
.u-icon-v2.u-icon-size--3xl .u-icon__elem-regular,
.u-icon-v2.u-icon-size--3xl .u-icon__elem-hover, .u-icon-v3.u-icon-size--3xl,
.u-icon-v3.u-icon-size--3xl .u-icon__elem-regular,
.u-icon-v3.u-icon-size--3xl .u-icon__elem-hover, .u-icon-v4.u-icon-size--3xl .u-icon-v4-inner,
.u-icon-v4.u-icon-size--3xl .u-icon__elem-regular,
.u-icon-v4.u-icon-size--3xl .u-icon__elem-hover, .u-icon-v5.u-icon-size--3xl {
  width: 9.28571rem;
  height: 9.28571rem;
  font-size: 3.57143rem; }

.u-icon-v2 {
  border-width: 1px;
  border-style: solid; }

.u-icon-v2.u-icon-size--2xl,
.u-icon-v2.u-icon-size--2xl .u-icon__elem-regular,
.u-icon-v2.u-icon-size--2xl .u-icon__elem-hover {
  border-width: 1.5px; }

.u-icon-v2.u-icon-size--3xl,
.u-icon-v2.u-icon-size--3xl .u-icon__elem-regular,
.u-icon-v2.u-icon-size--3xl .u-icon__elem-hover {
  border-width: 1.5px; }

/*------------------------------------
  Icon-v3
------------------------------------*/
.u-icon-v2, .u-icon-v2 .u-icon__elem-regular,
.u-icon-v2 .u-icon__elem-hover, .u-icon-v3, .u-icon-v3 .u-icon__elem-regular,
.u-icon-v3 .u-icon__elem-hover, .u-icon-v4 .u-icon-v4-inner, .u-icon-v4 .u-icon__elem-regular,
.u-icon-v4 .u-icon__elem-hover, .u-icon-v5 {
  width: 3.92857rem;
  height: 3.92857rem;
  font-size: 1.57143rem; }

.u-icon-v2.u-icon-size--xs,
.u-icon-v2.u-icon-size--xs .u-icon__elem-regular,
.u-icon-v2.u-icon-size--xs .u-icon__elem-hover, .u-icon-v3.u-icon-size--xs,
.u-icon-v3.u-icon-size--xs .u-icon__elem-regular,
.u-icon-v3.u-icon-size--xs .u-icon__elem-hover, .u-icon-v4.u-icon-size--xs .u-icon-v4-inner,
.u-icon-v4.u-icon-size--xs .u-icon__elem-regular,
.u-icon-v4.u-icon-size--xs .u-icon__elem-hover, .u-icon-v5.u-icon-size--xs {
  width: 2.14286rem;
  height: 2.14286rem;
  font-size: 0.92857rem; }

.u-icon-v2.u-icon-size--sm,
.u-icon-v2.u-icon-size--sm .u-icon__elem-regular,
.u-icon-v2.u-icon-size--sm .u-icon__elem-hover, .u-icon-v3.u-icon-size--sm,
.u-icon-v3.u-icon-size--sm .u-icon__elem-regular,
.u-icon-v3.u-icon-size--sm .u-icon__elem-hover, .u-icon-v4.u-icon-size--sm .u-icon-v4-inner,
.u-icon-v4.u-icon-size--sm .u-icon__elem-regular,
.u-icon-v4.u-icon-size--sm .u-icon__elem-hover, .u-icon-v5.u-icon-size--sm {
  width: 2.85714rem;
  height: 2.85714rem;
  font-size: 1.28571rem; }

.u-icon-v2.u-icon-size--lg,
.u-icon-v2.u-icon-size--lg .u-icon__elem-regular,
.u-icon-v2.u-icon-size--lg .u-icon__elem-hover, .u-icon-v3.u-icon-size--lg,
.u-icon-v3.u-icon-size--lg .u-icon__elem-regular,
.u-icon-v3.u-icon-size--lg .u-icon__elem-hover, .u-icon-v4.u-icon-size--lg .u-icon-v4-inner,
.u-icon-v4.u-icon-size--lg .u-icon__elem-regular,
.u-icon-v4.u-icon-size--lg .u-icon__elem-hover, .u-icon-v5.u-icon-size--lg {
  width: 5rem;
  height: 5rem;
  font-size: 2.14286rem; }

.u-icon-v2.u-icon-size--xl,
.u-icon-v2.u-icon-size--xl .u-icon__elem-regular,
.u-icon-v2.u-icon-size--xl .u-icon__elem-hover, .u-icon-v3.u-icon-size--xl,
.u-icon-v3.u-icon-size--xl .u-icon__elem-regular,
.u-icon-v3.u-icon-size--xl .u-icon__elem-hover, .u-icon-v4.u-icon-size--xl .u-icon-v4-inner,
.u-icon-v4.u-icon-size--xl .u-icon__elem-regular,
.u-icon-v4.u-icon-size--xl .u-icon__elem-hover, .u-icon-v5.u-icon-size--xl {
  width: 6.42857rem;
  height: 6.42857rem;
  font-size: 2.85714rem; }

.u-icon-v2.u-icon-size--2xl,
.u-icon-v2.u-icon-size--2xl .u-icon__elem-regular,
.u-icon-v2.u-icon-size--2xl .u-icon__elem-hover, .u-icon-v3.u-icon-size--2xl,
.u-icon-v3.u-icon-size--2xl .u-icon__elem-regular,
.u-icon-v3.u-icon-size--2xl .u-icon__elem-hover, .u-icon-v4.u-icon-size--2xl .u-icon-v4-inner,
.u-icon-v4.u-icon-size--2xl .u-icon__elem-regular,
.u-icon-v4.u-icon-size--2xl .u-icon__elem-hover, .u-icon-v5.u-icon-size--2xl {
  width: 7.14286rem;
  height: 7.14286rem;
  font-size: 3.21429rem; }

.u-icon-v2.u-icon-size--3xl,
.u-icon-v2.u-icon-size--3xl .u-icon__elem-regular,
.u-icon-v2.u-icon-size--3xl .u-icon__elem-hover, .u-icon-v3.u-icon-size--3xl,
.u-icon-v3.u-icon-size--3xl .u-icon__elem-regular,
.u-icon-v3.u-icon-size--3xl .u-icon__elem-hover, .u-icon-v4.u-icon-size--3xl .u-icon-v4-inner,
.u-icon-v4.u-icon-size--3xl .u-icon__elem-regular,
.u-icon-v4.u-icon-size--3xl .u-icon__elem-hover, .u-icon-v5.u-icon-size--3xl {
  width: 9.28571rem;
  height: 9.28571rem;
  font-size: 3.57143rem; }

.u-icon-v3 {
  background-color: #eee; }

/*------------------------------------
  Icon-v4
------------------------------------*/
.u-icon-v2, .u-icon-v2 .u-icon__elem-regular,
.u-icon-v2 .u-icon__elem-hover, .u-icon-v3, .u-icon-v3 .u-icon__elem-regular,
.u-icon-v3 .u-icon__elem-hover, .u-icon-v4 .u-icon-v4-inner, .u-icon-v4 .u-icon__elem-regular,
.u-icon-v4 .u-icon__elem-hover, .u-icon-v5 {
  width: 3.92857rem;
  height: 3.92857rem;
  font-size: 1.57143rem; }

.u-icon-v2.u-icon-size--xs,
.u-icon-v2.u-icon-size--xs .u-icon__elem-regular,
.u-icon-v2.u-icon-size--xs .u-icon__elem-hover, .u-icon-v3.u-icon-size--xs,
.u-icon-v3.u-icon-size--xs .u-icon__elem-regular,
.u-icon-v3.u-icon-size--xs .u-icon__elem-hover, .u-icon-v4.u-icon-size--xs .u-icon-v4-inner,
.u-icon-v4.u-icon-size--xs .u-icon__elem-regular,
.u-icon-v4.u-icon-size--xs .u-icon__elem-hover, .u-icon-v5.u-icon-size--xs {
  width: 2.14286rem;
  height: 2.14286rem;
  font-size: 0.92857rem; }

.u-icon-v2.u-icon-size--sm,
.u-icon-v2.u-icon-size--sm .u-icon__elem-regular,
.u-icon-v2.u-icon-size--sm .u-icon__elem-hover, .u-icon-v3.u-icon-size--sm,
.u-icon-v3.u-icon-size--sm .u-icon__elem-regular,
.u-icon-v3.u-icon-size--sm .u-icon__elem-hover, .u-icon-v4.u-icon-size--sm .u-icon-v4-inner,
.u-icon-v4.u-icon-size--sm .u-icon__elem-regular,
.u-icon-v4.u-icon-size--sm .u-icon__elem-hover, .u-icon-v5.u-icon-size--sm {
  width: 2.85714rem;
  height: 2.85714rem;
  font-size: 1.28571rem; }

.u-icon-v2.u-icon-size--lg,
.u-icon-v2.u-icon-size--lg .u-icon__elem-regular,
.u-icon-v2.u-icon-size--lg .u-icon__elem-hover, .u-icon-v3.u-icon-size--lg,
.u-icon-v3.u-icon-size--lg .u-icon__elem-regular,
.u-icon-v3.u-icon-size--lg .u-icon__elem-hover, .u-icon-v4.u-icon-size--lg .u-icon-v4-inner,
.u-icon-v4.u-icon-size--lg .u-icon__elem-regular,
.u-icon-v4.u-icon-size--lg .u-icon__elem-hover, .u-icon-v5.u-icon-size--lg {
  width: 5rem;
  height: 5rem;
  font-size: 2.14286rem; }

.u-icon-v2.u-icon-size--xl,
.u-icon-v2.u-icon-size--xl .u-icon__elem-regular,
.u-icon-v2.u-icon-size--xl .u-icon__elem-hover, .u-icon-v3.u-icon-size--xl,
.u-icon-v3.u-icon-size--xl .u-icon__elem-regular,
.u-icon-v3.u-icon-size--xl .u-icon__elem-hover, .u-icon-v4.u-icon-size--xl .u-icon-v4-inner,
.u-icon-v4.u-icon-size--xl .u-icon__elem-regular,
.u-icon-v4.u-icon-size--xl .u-icon__elem-hover, .u-icon-v5.u-icon-size--xl {
  width: 6.42857rem;
  height: 6.42857rem;
  font-size: 2.85714rem; }

.u-icon-v2.u-icon-size--2xl,
.u-icon-v2.u-icon-size--2xl .u-icon__elem-regular,
.u-icon-v2.u-icon-size--2xl .u-icon__elem-hover, .u-icon-v3.u-icon-size--2xl,
.u-icon-v3.u-icon-size--2xl .u-icon__elem-regular,
.u-icon-v3.u-icon-size--2xl .u-icon__elem-hover, .u-icon-v4.u-icon-size--2xl .u-icon-v4-inner,
.u-icon-v4.u-icon-size--2xl .u-icon__elem-regular,
.u-icon-v4.u-icon-size--2xl .u-icon__elem-hover, .u-icon-v5.u-icon-size--2xl {
  width: 7.14286rem;
  height: 7.14286rem;
  font-size: 3.21429rem; }

.u-icon-v2.u-icon-size--3xl,
.u-icon-v2.u-icon-size--3xl .u-icon__elem-regular,
.u-icon-v2.u-icon-size--3xl .u-icon__elem-hover, .u-icon-v3.u-icon-size--3xl,
.u-icon-v3.u-icon-size--3xl .u-icon__elem-regular,
.u-icon-v3.u-icon-size--3xl .u-icon__elem-hover, .u-icon-v4.u-icon-size--3xl .u-icon-v4-inner,
.u-icon-v4.u-icon-size--3xl .u-icon__elem-regular,
.u-icon-v4.u-icon-size--3xl .u-icon__elem-hover, .u-icon-v5.u-icon-size--3xl {
  width: 9.28571rem;
  height: 9.28571rem;
  font-size: 3.57143rem; }

.u-icon-v4 {
  padding: 0.57143rem;
  background: transparent !important;
  border: solid 1px #eee;
  transition: all .1s ease-in-out; }

.u-icon-v4-inner {
  position: relative;
  display: block;
  overflow: hidden;
  background-color: #eee; }

.u-icon-v4 .u-icon-v4-inner {
  z-index: 1;
  transition: all .2s ease-in-out; }

.u-icon-v4-rounded-3,
.u-icon-v4-rounded-3 .u-icon-v4-inner {
  border-radius: 3px; }

.u-icon-v4-rounded-7,
.u-icon-v4-rounded-7 .u-icon-v4-inner {
  border-radius: 7px; }

.u-icon-v4-rounded-10,
.u-icon-v4-rounded-10 .u-icon-v4-inner {
  border-radius: 10px; }

.u-icon-v4-rounded-50x,
.u-icon-v4-rounded-50x .u-icon-v4-inner {
  border-radius: 50%; }

.u-icon-v4-bg-primary {
  border-color: #72c02c; }

.u-icon-v4-bg-primary .u-icon-v4-inner {
  background: #72c02c; }

.u-icon-v4-bg-white {
  border-color: #fff; }

.u-icon-v4-bg-white .u-icon-v4-inner {
  background: #fff; }

.u-icon-v4-bg-gray-light-v3 {
  border-color: #ddd; }

.u-icon-v4-bg-gray-light-v3 .u-icon-v4-inner {
  background: #ddd; }

.u-icon-v4-bg-gray-dark-v3 {
  border-color: #555; }

.u-icon-v4-bg-gray-dark-v3 .u-icon-v4-inner {
  background: #555; }

.u-icon-v4-bg-black {
  border-color: #000; }

.u-icon-v4-bg-black .u-icon-v4-inner {
  background: #000; }

.u-icon-v4-bg-primary--hover:hover,
.u-icon-block--hover:hover .u-icon-v4-bg-primary--hover {
  border-color: #72c02c; }

.u-icon-v4-bg-primary--hover:hover .u-icon-v4-inner,
.u-icon-block--hover:hover .u-icon-v4-bg-primary--hover .u-icon-v4-inner {
  background: #72c02c; }

.u-icon-v4-bg-white--hover:hover,
.u-icon-block--hover:hover .u-icon-v4-bg-white--hover {
  border-color: #fff; }

.u-icon-v4-bg-white--hover:hover .u-icon-v4-inner,
.u-icon-block--hover:hover .u-icon-v4-bg-white--hover .u-icon-v4-inner {
  background: #fff; }

.u-icon-v4-bg-gray-light-v3--hover:hover,
.u-icon-block--hover:hover .u-icon-v4-bg-gray-light-v3--hover {
  border-color: #ddd; }

.u-icon-v4-bg-gray-light-v3--hover:hover .u-icon-v4-inner,
.u-icon-block--hover:hover .u-icon-v4-bg-gray-light-v3--hover .u-icon-v4-inner {
  background: #ddd; }

.u-icon-v4-bg-gray-dark-v3--hover:hover,
.u-icon-block--hover:hover .u-icon-v4-bg-gray-dark-v3--hover {
  border-color: #555; }

.u-icon-v4-bg-gray-dark-v3--hover:hover .u-icon-v4-inner,
.u-icon-block--hover:hover .u-icon-v4-bg-gray-dark-v3--hover .u-icon-v4-inner {
  background: #555; }

.u-icon-v4-bg-black--hover:hover,
.u-icon-block--hover:hover .u-icon-v4-bg-black--hover {
  border-color: #000; }

.u-icon-v4-bg-black--hover:hover .u-icon-v4-inner,
.u-icon-block--hover:hover .u-icon-v4-bg-black--hover .u-icon-v4-inner {
  background: #000; }

/*------------------------------------
  Icon-v4 Additional BG colors
------------------------------------*/
.u-icon-v4-bg-red {
  border-color: #f00; }

.u-icon-v4-bg-red .u-icon-v4-inner {
  background: #f00; }

.u-icon-v4-bg-lightred {
  border-color: #e64b3b; }

.u-icon-v4-bg-lightred .u-icon-v4-inner {
  background: #e64b3b; }

.u-icon-v4-bg-darkred {
  border-color: #a10f2b; }

.u-icon-v4-bg-darkred .u-icon-v4-inner {
  background: #a10f2b; }

.u-icon-v4-bg-blue {
  border-color: #3398dc; }

.u-icon-v4-bg-blue .u-icon-v4-inner {
  background: #3398dc; }

.u-icon-v4-bg-indigo {
  border-color: #4263a3; }

.u-icon-v4-bg-indigo .u-icon-v4-inner {
  background: #4263a3; }

.u-icon-v4-bg-purple {
  border-color: #9a69cb; }

.u-icon-v4-bg-purple .u-icon-v4-inner {
  background: #9a69cb; }

.u-icon-v4-bg-darkpurple {
  border-color: #6639b6; }

.u-icon-v4-bg-darkpurple .u-icon-v4-inner {
  background: #6639b6; }

.u-icon-v4-bg-pink {
  border-color: #e81c62; }

.u-icon-v4-bg-pink .u-icon-v4-inner {
  background: #e81c62; }

.u-icon-v4-bg-orange {
  border-color: #e57d20; }

.u-icon-v4-bg-orange .u-icon-v4-inner {
  background: #e57d20; }

.u-icon-v4-bg-deeporange {
  border-color: #fe541e; }

.u-icon-v4-bg-deeporange .u-icon-v4-inner {
  background: #fe541e; }

.u-icon-v4-bg-aqua {
  border-color: #29d6e6; }

.u-icon-v4-bg-aqua .u-icon-v4-inner {
  background: #29d6e6; }

.u-icon-v4-bg-yellow {
  border-color: #ebc71d; }

.u-icon-v4-bg-yellow .u-icon-v4-inner {
  background: #ebc71d; }

.u-icon-v4-bg-cyan {
  border-color: #00bed6; }

.u-icon-v4-bg-cyan .u-icon-v4-inner {
  background: #00bed6; }

.u-icon-v4-bg-teal {
  border-color: #18ba9b; }

.u-icon-v4-bg-teal .u-icon-v4-inner {
  background: #18ba9b; }

.u-icon-v4-bg-brown {
  border-color: #9c8061; }

.u-icon-v4-bg-brown .u-icon-v4-inner {
  background: #9c8061; }

.u-icon-v4-bg-bluegray {
  border-color: #585f69; }

.u-icon-v4-bg-bluegray .u-icon-v4-inner {
  background: #585f69; }

.u-icon-v4-bg-red--hover:hover,
.u-icon-block--hover:hover .u-icon-v4-bg-red--hover {
  border-color: #f00; }

.u-icon-v4-bg-red--hover:hover .u-icon-v4-inner,
.u-icon-block--hover:hover .u-icon-v4-bg-red--hover .u-icon-v4-inner {
  background: #f00; }

.u-icon-v4-bg-lightred--hover:hover,
.u-icon-block--hover:hover .u-icon-v4-bg-lightred--hover {
  border-color: #e64b3b; }

.u-icon-v4-bg-lightred--hover:hover .u-icon-v4-inner,
.u-icon-block--hover:hover .u-icon-v4-bg-lightred--hover .u-icon-v4-inner {
  background: #e64b3b; }

.u-icon-v4-bg-darkred--hover:hover,
.u-icon-block--hover:hover .u-icon-v4-bg-darkred--hover {
  border-color: #a10f2b; }

.u-icon-v4-bg-darkred--hover:hover .u-icon-v4-inner,
.u-icon-block--hover:hover .u-icon-v4-bg-darkred--hover .u-icon-v4-inner {
  background: #a10f2b; }

.u-icon-v4-bg-blue--hover:hover,
.u-icon-block--hover:hover .u-icon-v4-bg-blue--hover {
  border-color: #3398dc; }

.u-icon-v4-bg-blue--hover:hover .u-icon-v4-inner,
.u-icon-block--hover:hover .u-icon-v4-bg-blue--hover .u-icon-v4-inner {
  background: #3398dc; }

.u-icon-v4-bg-indigo--hover:hover,
.u-icon-block--hover:hover .u-icon-v4-bg-indigo--hover {
  border-color: #4263a3; }

.u-icon-v4-bg-indigo--hover:hover .u-icon-v4-inner,
.u-icon-block--hover:hover .u-icon-v4-bg-indigo--hover .u-icon-v4-inner {
  background: #4263a3; }

.u-icon-v4-bg-purple--hover:hover,
.u-icon-block--hover:hover .u-icon-v4-bg-purple--hover {
  border-color: #9a69cb; }

.u-icon-v4-bg-purple--hover:hover .u-icon-v4-inner,
.u-icon-block--hover:hover .u-icon-v4-bg-purple--hover .u-icon-v4-inner {
  background: #9a69cb; }

.u-icon-v4-bg-darkpurple--hover:hover,
.u-icon-block--hover:hover .u-icon-v4-bg-darkpurple--hover {
  border-color: #6639b6; }

.u-icon-v4-bg-darkpurple--hover:hover .u-icon-v4-inner,
.u-icon-block--hover:hover .u-icon-v4-bg-darkpurple--hover .u-icon-v4-inner {
  background: #6639b6; }

.u-icon-v4-bg-pink--hover:hover,
.u-icon-block--hover:hover .u-icon-v4-bg-pink--hover {
  border-color: #e81c62; }

.u-icon-v4-bg-pink--hover:hover .u-icon-v4-inner,
.u-icon-block--hover:hover .u-icon-v4-bg-pink--hover .u-icon-v4-inner {
  background: #e81c62; }

.u-icon-v4-bg-orange--hover:hover,
.u-icon-block--hover:hover .u-icon-v4-bg-orange--hover {
  border-color: #e57d20; }

.u-icon-v4-bg-orange--hover:hover .u-icon-v4-inner,
.u-icon-block--hover:hover .u-icon-v4-bg-orange--hover .u-icon-v4-inner {
  background: #e57d20; }

.u-icon-v4-bg-deeporange--hover:hover,
.u-icon-block--hover:hover .u-icon-v4-bg-deeporange--hover {
  border-color: #fe541e; }

.u-icon-v4-bg-deeporange--hover:hover .u-icon-v4-inner,
.u-icon-block--hover:hover .u-icon-v4-bg-deeporange--hover .u-icon-v4-inner {
  background: #fe541e; }

.u-icon-v4-bg-aqua--hover:hover,
.u-icon-block--hover:hover .u-icon-v4-bg-aqua--hover {
  border-color: #29d6e6; }

.u-icon-v4-bg-aqua--hover:hover .u-icon-v4-inner,
.u-icon-block--hover:hover .u-icon-v4-bg-aqua--hover .u-icon-v4-inner {
  background: #29d6e6; }

.u-icon-v4-bg-yellow--hover:hover,
.u-icon-block--hover:hover .u-icon-v4-bg-yellow--hover {
  border-color: #ebc71d; }

.u-icon-v4-bg-yellow--hover:hover .u-icon-v4-inner,
.u-icon-block--hover:hover .u-icon-v4-bg-yellow--hover .u-icon-v4-inner {
  background: #ebc71d; }

.u-icon-v4-bg-cyan--hover:hover,
.u-icon-block--hover:hover .u-icon-v4-bg-cyan--hover {
  border-color: #00bed6; }

.u-icon-v4-bg-cyan--hover:hover .u-icon-v4-inner,
.u-icon-block--hover:hover .u-icon-v4-bg-cyan--hover .u-icon-v4-inner {
  background: #00bed6; }

.u-icon-v4-bg-teal--hover:hover,
.u-icon-block--hover:hover .u-icon-v4-bg-teal--hover {
  border-color: #18ba9b; }

.u-icon-v4-bg-teal--hover:hover .u-icon-v4-inner,
.u-icon-block--hover:hover .u-icon-v4-bg-teal--hover .u-icon-v4-inner {
  background: #18ba9b; }

.u-icon-v4-bg-brown--hover:hover,
.u-icon-block--hover:hover .u-icon-v4-bg-brown--hover {
  border-color: #9c8061; }

.u-icon-v4-bg-brown--hover:hover .u-icon-v4-inner,
.u-icon-block--hover:hover .u-icon-v4-bg-brown--hover .u-icon-v4-inner {
  background: #9c8061; }

.u-icon-v4-bg-bluegray--hover:hover,
.u-icon-block--hover:hover .u-icon-v4-bg-bluegray--hover {
  border-color: #585f69; }

.u-icon-v4-bg-bluegray--hover:hover .u-icon-v4-inner,
.u-icon-block--hover:hover .u-icon-v4-bg-bluegray--hover .u-icon-v4-inner {
  background: #585f69; }

/*------------------------------------
  Icon-v4 Social BG colors
------------------------------------*/
.u-icon-v4-bg-facebook {
  border-color: #3b5998; }

.u-icon-v4-bg-facebook .u-icon-v4-inner {
  background-color: #3b5998; }

.u-icon-v4-bg-twitter {
  border-color: #00acee; }

.u-icon-v4-bg-twitter .u-icon-v4-inner {
  background-color: #00acee; }

.u-icon-v4-bg-google-plus {
  border-color: #dd4b39; }

.u-icon-v4-bg-google-plus .u-icon-v4-inner {
  background-color: #dd4b39; }

.u-icon-v4-bg-vk {
  border-color: #2b587a; }

.u-icon-v4-bg-vk .u-icon-v4-inner {
  background-color: #2b587a; }

.u-icon-v4-bg-linkedin {
  border-color: #0e76a8; }

.u-icon-v4-bg-linkedin .u-icon-v4-inner {
  background-color: #0e76a8; }

.u-icon-v4-bg-instagram {
  border-color: #3f729b; }

.u-icon-v4-bg-instagram .u-icon-v4-inner {
  background-color: #3f729b; }

.u-icon-v4-bg-pinterest {
  border-color: #c8232c; }

.u-icon-v4-bg-pinterest .u-icon-v4-inner {
  background-color: #c8232c; }

.u-icon-v4-bg-vine {
  border-color: #00bf8f; }

.u-icon-v4-bg-vine .u-icon-v4-inner {
  background-color: #00bf8f; }

.u-icon-v4-bg-youtube {
  border-color: #c4302b; }

.u-icon-v4-bg-youtube .u-icon-v4-inner {
  background-color: #c4302b; }

.u-icon-v4-bg-skype {
  border-color: #00aff0; }

.u-icon-v4-bg-skype .u-icon-v4-inner {
  background-color: #00aff0; }

.u-icon-v4-bg-dribbble {
  border-color: #ea4c89; }

.u-icon-v4-bg-dribbble .u-icon-v4-inner {
  background-color: #ea4c89; }

.u-icon-v4-bg-facebook--hover:hover,
.u-icon-block--hover:hover .u-icon-v4-bg-facebook--hover {
  border-color: #3b5998; }

.u-icon-v4-bg-facebook--hover:hover .u-icon-v4-inner,
.u-icon-block--hover:hover .u-icon-v4-bg-facebook--hover .u-icon-v4-inner {
  background: #3b5998; }

.u-icon-v4-bg-twitter--hover:hover,
.u-icon-block--hover:hover .u-icon-v4-bg-twitter--hover {
  border-color: #00acee; }

.u-icon-v4-bg-twitter--hover:hover .u-icon-v4-inner,
.u-icon-block--hover:hover .u-icon-v4-bg-twitter--hover .u-icon-v4-inner {
  background: #00acee; }

.u-icon-v4-bg-google-plus--hover:hover,
.u-icon-block--hover:hover .u-icon-v4-bg-google-plus--hover {
  border-color: #dd4b39; }

.u-icon-v4-bg-google-plus--hover:hover .u-icon-v4-inner,
.u-icon-block--hover:hover .u-icon-v4-bg-google-plus--hover .u-icon-v4-inner {
  background: #dd4b39; }

.u-icon-v4-bg-vk--hover:hover,
.u-icon-block--hover:hover .u-icon-v4-bg-vk--hover {
  border-color: #2b587a; }

.u-icon-v4-bg-vk--hover:hover .u-icon-v4-inner,
.u-icon-block--hover:hover .u-icon-v4-bg-vk--hover .u-icon-v4-inner {
  background: #2b587a; }

.u-icon-v4-bg-linkedin--hover:hover,
.u-icon-block--hover:hover .u-icon-v4-bg-linkedin--hover {
  border-color: #0e76a8; }

.u-icon-v4-bg-linkedin--hover:hover .u-icon-v4-inner,
.u-icon-block--hover:hover .u-icon-v4-bg-linkedin--hover .u-icon-v4-inner {
  background: #0e76a8; }

.u-icon-v4-bg-instagram--hover:hover,
.u-icon-block--hover:hover .u-icon-v4-bg-instagram--hover {
  border-color: #3f729b; }

.u-icon-v4-bg-instagram--hover:hover .u-icon-v4-inner,
.u-icon-block--hover:hover .u-icon-v4-bg-instagram--hover .u-icon-v4-inner {
  background: #3f729b; }

.u-icon-v4-bg-pinterest--hover:hover,
.u-icon-block--hover:hover .u-icon-v4-bg-pinterest--hover {
  border-color: #c8232c; }

.u-icon-v4-bg-pinterest--hover:hover .u-icon-v4-inner,
.u-icon-block--hover:hover .u-icon-v4-bg-pinterest--hover .u-icon-v4-inner {
  background: #c8232c; }

/*------------------------------------
  Icon-v4 Gradient BG colors
------------------------------------*/
.u-icon-v4-bg-lightblue-radialgradient-ellipse {
  border-color: #d6e2ee; }

.u-icon-v4-bg-lightblue-radialgradient-ellipse .u-icon-v4-inner {
  background: radial-gradient(ellipse at center center, #fff 22%, #d6e2ee 100%) repeat; }

.u-icon-v4-bg-gray-radialgradient-ellipse {
  border-color: #bbb; }

.u-icon-v4-bg-gray-radialgradient-ellipse .u-icon-v4-inner {
  background: radial-gradient(ellipse at center center, #ddd 22%, #bbb 100%) repeat; }

.u-icon-v4-bg-blue-radialgradient-circle {
  border-color: #275296; }

.u-icon-v4-bg-blue-radialgradient-circle .u-icon-v4-inner {
  background: radial-gradient(circle farthest-side at 100% 0, #2294d7, #275296) no-repeat; }

.u-icon-v4-bg-darkgray-radialgradient-circle {
  border-color: #31353e; }

.u-icon-v4-bg-darkgray-radialgradient-circle .u-icon-v4-inner {
  background: radial-gradient(circle farthest-side at 110% 0, #596070, #31353e) no-repeat; }

/*------------------------------------
  Icon-v5
------------------------------------*/
.u-icon-v2, .u-icon-v2 .u-icon__elem-regular,
.u-icon-v2 .u-icon__elem-hover, .u-icon-v3, .u-icon-v3 .u-icon__elem-regular,
.u-icon-v3 .u-icon__elem-hover, .u-icon-v4 .u-icon-v4-inner, .u-icon-v4 .u-icon__elem-regular,
.u-icon-v4 .u-icon__elem-hover, .u-icon-v5 {
  width: 3.92857rem;
  height: 3.92857rem;
  font-size: 1.57143rem; }

.u-icon-v2.u-icon-size--xs,
.u-icon-v2.u-icon-size--xs .u-icon__elem-regular,
.u-icon-v2.u-icon-size--xs .u-icon__elem-hover, .u-icon-v3.u-icon-size--xs,
.u-icon-v3.u-icon-size--xs .u-icon__elem-regular,
.u-icon-v3.u-icon-size--xs .u-icon__elem-hover, .u-icon-v4.u-icon-size--xs .u-icon-v4-inner,
.u-icon-v4.u-icon-size--xs .u-icon__elem-regular,
.u-icon-v4.u-icon-size--xs .u-icon__elem-hover, .u-icon-v5.u-icon-size--xs {
  width: 2.14286rem;
  height: 2.14286rem;
  font-size: 0.92857rem; }

.u-icon-v2.u-icon-size--sm,
.u-icon-v2.u-icon-size--sm .u-icon__elem-regular,
.u-icon-v2.u-icon-size--sm .u-icon__elem-hover, .u-icon-v3.u-icon-size--sm,
.u-icon-v3.u-icon-size--sm .u-icon__elem-regular,
.u-icon-v3.u-icon-size--sm .u-icon__elem-hover, .u-icon-v4.u-icon-size--sm .u-icon-v4-inner,
.u-icon-v4.u-icon-size--sm .u-icon__elem-regular,
.u-icon-v4.u-icon-size--sm .u-icon__elem-hover, .u-icon-v5.u-icon-size--sm {
  width: 2.85714rem;
  height: 2.85714rem;
  font-size: 1.28571rem; }

.u-icon-v2.u-icon-size--lg,
.u-icon-v2.u-icon-size--lg .u-icon__elem-regular,
.u-icon-v2.u-icon-size--lg .u-icon__elem-hover, .u-icon-v3.u-icon-size--lg,
.u-icon-v3.u-icon-size--lg .u-icon__elem-regular,
.u-icon-v3.u-icon-size--lg .u-icon__elem-hover, .u-icon-v4.u-icon-size--lg .u-icon-v4-inner,
.u-icon-v4.u-icon-size--lg .u-icon__elem-regular,
.u-icon-v4.u-icon-size--lg .u-icon__elem-hover, .u-icon-v5.u-icon-size--lg {
  width: 5rem;
  height: 5rem;
  font-size: 2.14286rem; }

.u-icon-v2.u-icon-size--xl,
.u-icon-v2.u-icon-size--xl .u-icon__elem-regular,
.u-icon-v2.u-icon-size--xl .u-icon__elem-hover, .u-icon-v3.u-icon-size--xl,
.u-icon-v3.u-icon-size--xl .u-icon__elem-regular,
.u-icon-v3.u-icon-size--xl .u-icon__elem-hover, .u-icon-v4.u-icon-size--xl .u-icon-v4-inner,
.u-icon-v4.u-icon-size--xl .u-icon__elem-regular,
.u-icon-v4.u-icon-size--xl .u-icon__elem-hover, .u-icon-v5.u-icon-size--xl {
  width: 6.42857rem;
  height: 6.42857rem;
  font-size: 2.85714rem; }

.u-icon-v2.u-icon-size--2xl,
.u-icon-v2.u-icon-size--2xl .u-icon__elem-regular,
.u-icon-v2.u-icon-size--2xl .u-icon__elem-hover, .u-icon-v3.u-icon-size--2xl,
.u-icon-v3.u-icon-size--2xl .u-icon__elem-regular,
.u-icon-v3.u-icon-size--2xl .u-icon__elem-hover, .u-icon-v4.u-icon-size--2xl .u-icon-v4-inner,
.u-icon-v4.u-icon-size--2xl .u-icon__elem-regular,
.u-icon-v4.u-icon-size--2xl .u-icon__elem-hover, .u-icon-v5.u-icon-size--2xl {
  width: 7.14286rem;
  height: 7.14286rem;
  font-size: 3.21429rem; }

.u-icon-v2.u-icon-size--3xl,
.u-icon-v2.u-icon-size--3xl .u-icon__elem-regular,
.u-icon-v2.u-icon-size--3xl .u-icon__elem-hover, .u-icon-v3.u-icon-size--3xl,
.u-icon-v3.u-icon-size--3xl .u-icon__elem-regular,
.u-icon-v3.u-icon-size--3xl .u-icon__elem-hover, .u-icon-v4.u-icon-size--3xl .u-icon-v4-inner,
.u-icon-v4.u-icon-size--3xl .u-icon__elem-regular,
.u-icon-v4.u-icon-size--3xl .u-icon__elem-hover, .u-icon-v5.u-icon-size--3xl {
  width: 9.28571rem;
  height: 9.28571rem;
  font-size: 3.57143rem; }

.u-icon-v5 {
  position: relative; }

body .u-icon-v5 {
  background: transparent !important; }

.u-icon-v5::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  margin: -.45em 0 0 -.4em;
  width: .8em;
  height: .8em;
  background-color: #eee;
  border-radius: 50%;
  opacity: .7; }

.u-icon-v5 i {
  position: relative;
  z-index: 2; }

.u-icon-v5.g-bg-main::after {
  background-color: #555; }

.u-icon-v5.g-bg-primary::after {
  background-color: #72c02c; }

.u-icon-v5.g-bg-black::after {
  background-color: #000; }

.u-icon-v5.g-bg-white::after {
  background-color: #fff; }

.u-icon-v5.g-bg-gray-light-v1::after {
  background-color: #bbb; }

.u-icon-v5.g-bg-gray-light-v2::after {
  background-color: #ccc; }

.u-icon-v5.g-bg-gray-light-v3::after {
  background-color: #ddd; }

.u-icon-v5.g-bg-gray-light-v4::after {
  background-color: #eee; }

.u-icon-v5.g-bg-gray-light-v5::after {
  background-color: #f7f7f7; }

.u-icon-v5.g-bg-gray-dark-v1::after {
  background-color: #111; }

.u-icon-v5.g-bg-gray-dark-v2::after {
  background-color: #333; }

.u-icon-v5.g-bg-gray-dark-v3::after {
  background-color: #555; }

.u-icon-v5.g-bg-gray-dark-v4::after {
  background-color: #777; }

.u-icon-v5.g-bg-gray-dark-v5::after {
  background-color: #999; }

.u-icon-v5.g-bg-green::after {
  background-color: #72c02c; }

.u-icon-v5.g-bg-blue::after {
  background-color: #3398dc; }

.u-icon-v5.g-bg-lightblue::after {
  background-color: #edf2f8; }

.u-icon-v5.g-bg-lightblue-v1::after {
  background-color: #d6e2ee; }

.u-icon-v5.g-bg-darkblue::after {
  background-color: #009; }

.u-icon-v5.g-bg-indigo::after {
  background-color: #4263a3; }

.u-icon-v5.g-bg-red::after {
  background-color: #f00; }

.u-icon-v5.g-bg-lightred::after {
  background-color: #e64b3b; }

.u-icon-v5.g-bg-darkred::after {
  background-color: #a10f2b; }

.u-icon-v5.g-bg-purple::after {
  background-color: #9a69cb; }

.u-icon-v5.g-bg-darkpurple::after {
  background-color: #6639b6; }

.u-icon-v5.g-bg-pink::after {
  background-color: #e81c62; }

.u-icon-v5.g-bg-orange::after {
  background-color: #e57d20; }

.u-icon-v5.g-bg-deeporange::after {
  background-color: #fe541e; }

.u-icon-v5.g-bg-yellow::after {
  background-color: #ebc71d; }

.u-icon-v5.g-bg-aqua::after {
  background-color: #29d6e6; }

.u-icon-v5.g-bg-cyan::after {
  background-color: #00bed6; }

.u-icon-v5.g-bg-teal::after {
  background-color: #18ba9b; }

.u-icon-v5.g-bg-brown::after {
  background-color: #9c8061; }

.u-icon-v5.g-bg-bluegray::after {
  background-color: #585f69; }

/*------------------------------------
  Image Icons
------------------------------------*/
.u-image-icon-size-xs,
.u-image-icon-size-sm,
.u-image-icon-size-md,
.u-image-icon-size-lg,
.u-image-icon-size-xl {
  height: auto; }

.u-image-icon-size-xs {
  width: 2.14286rem; }

.u-image-icon-size-sm {
  width: 2.85714rem; }

.u-image-icon-size-md {
  width: 3.92857rem; }

.u-image-icon-size-lg {
  width: 5rem; }

.u-image-icon-size-xl {
  width: 6.42857rem; }

.u-image-icon-size-2xl {
  width: 7.14286rem; }

/*------------------------------------
  Hover Effect of Icon on Block Hover
------------------------------------*/
.u-icon-block--hover:hover .g-opacity-0_5--hover {
  opacity: .5; }

.u-icon-block--hover:hover .g-color-primary--hover {
  color: #72c02c; }

.u-icon-block--hover:hover .g-brd-primary--hover {
  border-color: #72c02c; }

.u-icon-block--hover:hover .g-bg-primary--hover {
  background: #72c02c; }

.u-icon-block--hover:hover .g-color-white--hover {
  color: #fff; }

.u-icon-block--hover:hover .g-brd-white--hover {
  border-color: #fff; }

.u-icon-block--hover:hover .g-bg-white--hover {
  background: #fff; }

.u-icon-block--hover:hover .g-color-black--hover {
  color: #000; }

.u-icon-block--hover:hover .g-brd-black--hover {
  border-color: #000; }

.u-icon-block--hover:hover .g-bg-black--hover {
  background: #000; }

.u-icon-block--hover:hover .g-color-gray-dark-v4--hover {
  color: #777; }

.u-icon-block--hover:hover .g-brd-gray-dark-v4--hover {
  border-color: #777; }

.u-icon-block--hover:hover .g-bg-gray-dark-v4--hover {
  background: #777; }

.u-icon-block-hover:hover .g-color-facebook--hover {
  color: #3b5998; }

.u-icon-block-hover:hover .g-brd-facebook--hover {
  border-color: #3b5998; }

.u-icon-block-hover:hover .g-bg-facebook--hover {
  background: #3b5998; }

.u-icon-block-hover:hover .g-color-twitter--hover {
  color: #00acee; }

.u-icon-block-hover:hover .g-brd-twitter--hover {
  border-color: #00acee; }

.u-icon-block-hover:hover .g-bg-twitter--hover {
  background: #00acee; }

.u-icon-block-hover:hover .g-color-google-plus--hover {
  color: #dd4b39; }

.u-icon-block-hover:hover .g-brd-google-plus--hover {
  border-color: #dd4b39; }

.u-icon-block-hover:hover .g-bg-google-plus--hover {
  background: #dd4b39; }

.u-icon-block-hover:hover .g-color-vk--hover {
  color: #2b587a; }

.u-icon-block-hover:hover .g-brd-vk--hover {
  border-color: #2b587a; }

.u-icon-block-hover:hover .g-bg-vk--hover {
  background: #2b587a; }

.u-icon-block-hover:hover .g-color-linkedin--hover {
  color: #0e76a8; }

.u-icon-block-hover:hover .g-brd-linkedin--hover {
  border-color: #0e76a8; }

.u-icon-block-hover:hover .g-bg-linkedin--hover {
  background: #0e76a8; }

.u-icon-block-hover:hover .g-color-instagram--hover {
  color: #3f729b; }

.u-icon-block-hover:hover .g-brd-instagram--hover {
  border-color: #3f729b; }

.u-icon-block-hover:hover .g-bg-instagram--hover {
  background: #3f729b; }

.u-icon-block-hover:hover .g-color-pinterest--hover {
  color: #c8232c; }

.u-icon-block-hover:hover .g-brd-pinterest--hover {
  border-color: #c8232c; }

.u-icon-block-hover:hover .g-bg-pinterest--hover {
  background: #c8232c; }

/*------------------------------------
  Scale Effect
------------------------------------*/
.u-icon-scale-1_2--hover:hover {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2); }

/*------------------------------------
  Shadow Effect
------------------------------------*/
.u-icon-shadow--hover:hover,
.u-icon-block--hover:hover .u-icon-shadow--hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.3); }

/*------------------------------------
  Slide Effect v1
------------------------------------*/
.u-icon-sliding--hover i::before {
  display: block; }

.u-icon-sliding--hover:hover i::before,
.u-icon-block--hover:hover .u-icon-sliding--hover i::before {
  -webkit-animation: toTopFromBottom .3s forwards;
  animation: toTopFromBottom .3s forwards; }

@-webkit-keyframes toTopFromBottom {
  49% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%); }
  50% {
    opacity: 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%); }
  51% {
    opacity: 1; } }
@keyframes toTopFromBottom {
  49% {
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%); }
  50% {
    opacity: 0;
    -webkit-transform: translateY(100%);
    transform: translateY(100%); }
  51% {
    opacity: 1; } }
/*------------------------------------
  Slide Effect v2
------------------------------------*/
.u-icon__elem-regular,
.u-icon__elem-hover {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  transition: all .3s ease-in-out; }

.u-icon__elem-hover {
  position: absolute !important; }

.u-icon-slide-up--hover,
.u-icon-slide-down--hover,
.u-icon-slide-left--hover,
.u-icon-slide-right--hover {
  overflow: hidden; }

.u-icon-slide-up--hover .u-icon__elem-regular {
  -webkit-transform: translateY(-20%);
  -ms-transform: translateY(-20%);
  transform: translateY(-20%); }

.u-icon-slide-up--hover .u-icon__elem-regular.u-line-icon-pro {
  -webkit-transform: translateY(-30%);
  -ms-transform: translateY(-30%);
  transform: translateY(-30%); }

.u-icon-slide-up--hover .u-icon__elem-hover {
  -webkit-transform: translateY(110%);
  -ms-transform: translateY(110%);
  transform: translateY(110%); }

.u-icon-slide-up--hover .u-icon__elem-hover.u-line-icon-pro {
  -webkit-transform: translateY(120%);
  -ms-transform: translateY(120%);
  transform: translateY(120%); }

.u-icon-slide-up--hover:hover .u-icon__elem-regular,
.u-icon-block--hover:hover .u-icon-slide-up--hover .u-icon__elem-regular {
  -webkit-transform: translateY(-110%);
  -ms-transform: translateY(-110%);
  transform: translateY(-110%); }

.u-icon-slide-up--hover:hover .u-icon__elem-regular.u-line-icon-pro,
.u-icon-block--hover:hover .u-icon-slide-up--hover .u-icon__elem-regular.u-line-icon-pro {
  -webkit-transform: translateY(-120%);
  -ms-transform: translateY(-120%);
  transform: translateY(-120%); }

.u-icon-slide-up--hover:hover .u-icon__elem-hover,
.u-icon-block--hover:hover .u-icon-slide-up--hover .u-icon__elem-hover {
  -webkit-transform: translateY(-20%);
  -ms-transform: translateY(-20%);
  transform: translateY(-20%); }

.u-icon-slide-up--hover:hover .u-icon__elem-hover.u-line-icon-pro,
.u-icon-block--hover:hover .u-icon-slide-up--hover .u-icon__elem-hover.u-line-icon-pro {
  -webkit-transform: translateY(-30%);
  -ms-transform: translateY(-30%);
  transform: translateY(-30%); }

.u-icon-slide-down--hover .u-icon__elem-regular {
  -webkit-transform: translateY(-110%);
  -ms-transform: translateY(-110%);
  transform: translateY(-110%); }

.u-icon-slide-down--hover .u-icon__elem-regular.u-line-icon-pro {
  -webkit-transform: translateY(-120%);
  -ms-transform: translateY(-120%);
  transform: translateY(-120%); }

.u-icon-slide-down--hover .u-icon__elem-hover {
  -webkit-transform: translateY(-20%);
  -ms-transform: translateY(-20%);
  transform: translateY(-20%); }

.u-icon-slide-down--hover .u-icon__elem-hover.u-line-icon-pro {
  -webkit-transform: translateY(-30%);
  -ms-transform: translateY(-30%);
  transform: translateY(-30%); }

.u-icon-slide-down--hover:hover .u-icon__elem-regular,
.u-icon-block--hover:hover .u-icon-slide-down--hover .u-icon__elem-regular {
  -webkit-transform: translateY(-20%);
  -ms-transform: translateY(-20%);
  transform: translateY(-20%); }

.u-icon-slide-down--hover:hover .u-icon__elem-regular.u-line-icon-pro,
.u-icon-block--hover:hover .u-icon-slide-down--hover .u-icon__elem-regular.u-line-icon-pro {
  -webkit-transform: translateY(-30%);
  -ms-transform: translateY(-30%);
  transform: translateY(-30%); }

.u-icon-slide-down--hover:hover .u-icon__elem-hover,
.u-icon-block--hover:hover .u-icon-slide-down--hover .u-icon__elem-hover {
  -webkit-transform: translateY(80%);
  -ms-transform: translateY(80%);
  transform: translateY(80%); }

.u-icon-slide-down--hover:hover .u-icon__elem-hover.u-line-icon-pro,
.u-icon-block--hover:hover .u-icon-slide-down--hover .u-icon__elem-hover.u-line-icon-pro {
  -webkit-transform: translateY(90%);
  -ms-transform: translateY(90%);
  transform: translateY(90%); }

.u-icon-slide-left--hover .u-icon__elem-regular {
  -webkit-transform: translate(0, -20%);
  -ms-transform: translate(0, -20%);
  transform: translate(0, -20%); }

.u-icon-slide-left--hover .u-icon__elem-regular.u-line-icon-pro {
  -webkit-transform: translate(0, -30%);
  -ms-transform: translate(0, -30%);
  transform: translate(0, -30%); }

.u-icon-slide-left--hover .u-icon__elem-hover {
  -webkit-transform: translate(110%, -20%);
  -ms-transform: translate(110%, -20%);
  transform: translate(110%, -20%); }

.u-icon-slide-left--hover .u-icon__elem-hover.u-line-icon-pro {
  -webkit-transform: translate(110%, -30%);
  -ms-transform: translate(110%, -30%);
  transform: translate(110%, -30%); }

.u-icon-slide-left--hover:hover .u-icon__elem-regular,
.u-icon-block--hover:hover .u-icon-slide-left--hover .u-icon__elem-regular {
  -webkit-transform: translate(-110%, -20%);
  -ms-transform: translate(-110%, -20%);
  transform: translate(-110%, -20%); }

.u-icon-slide-left--hover:hover .u-icon__elem-regular.u-line-icon-pro,
.u-icon-block--hover:hover .u-icon-slide-left--hover .u-icon__elem-regular.u-line-icon-pro {
  -webkit-transform: translate(-110%, -30%);
  -ms-transform: translate(-110%, -30%);
  transform: translate(-110%, -30%); }

.u-icon-slide-left--hover:hover .u-icon__elem-hover,
.u-icon-block--hover:hover .u-icon-slide-left--hover .u-icon__elem-hover {
  -webkit-transform: translate(0, -20%);
  -ms-transform: translate(0, -20%);
  transform: translate(0, -20%); }

.u-icon-slide-left--hover:hover .u-icon__elem-hover.u-line-icon-pro,
.u-icon-block--hover:hover .u-icon-slide-left--hover .u-icon__elem-hover.u-line-icon-pro {
  -webkit-transform: translate(0, -30%);
  -ms-transform: translate(0, -30%);
  transform: translate(0, -30%); }

.u-icon-slide-right--hover .u-icon__elem-regular {
  -webkit-transform: translate(-110%, -20%);
  -ms-transform: translate(-110%, -20%);
  transform: translate(-110%, -20%); }

.u-icon-slide-right--hover .u-icon__elem-regular.u-line-icon-pro {
  -webkit-transform: translate(-110%, -30%);
  -ms-transform: translate(-110%, -30%);
  transform: translate(-110%, -30%); }

.u-icon-slide-right--hover .u-icon__elem-hover {
  -webkit-transform: translate(0, -20%);
  -ms-transform: translate(0, -20%);
  transform: translate(0, -20%); }

.u-icon-slide-right--hover .u-icon__elem-hover.u-line-icon-pro {
  -webkit-transform: translate(0, -30%);
  -ms-transform: translate(0, -30%);
  transform: translate(0, -30%); }

.u-icon-slide-right--hover:hover .u-icon__elem-regular,
.u-icon-block--hover:hover .u-icon-slide-right--hover .u-icon__elem-regular {
  -webkit-transform: translate(0, -20%);
  -ms-transform: translate(0, -20%);
  transform: translate(0, -20%); }

.u-icon-slide-right--hover:hover .u-icon__elem-regular.u-line-icon-pro,
.u-icon-block--hover:hover .u-icon-slide-right--hover .u-icon__elem-regular.u-line-icon-pro {
  -webkit-transform: translate(0, -30%);
  -ms-transform: translate(0, -30%);
  transform: translate(0, -30%); }

.u-icon-slide-right--hover:hover .u-icon__elem-hover,
.u-icon-block--hover:hover .u-icon-slide-right--hover .u-icon__elem-hover {
  -webkit-transform: translate(110%, -20%);
  -ms-transform: translate(110%, -20%);
  transform: translate(110%, -20%); }

.u-icon-slide-right--hover:hover .u-icon__elem-hover.u-line-icon-pro,
.u-icon-block--hover:hover .u-icon-slide-right--hover .u-icon__elem-hover.u-line-icon-pro {
  -webkit-transform: translate(110%, -30%);
  -ms-transform: translate(110%, -30%);
  transform: translate(110%, -30%); }

/*------------------------------------
  Zoom Effect v1
------------------------------------*/
.u-icon-block--hover:hover .u-icon-scale-1_2--hover {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2); }

.u-icon-rotation.u-icon-scale-1_2--hover:hover,
.u-icon-block--hover:hover .u-icon-rotation.u-icon-scale-1_2--hover {
  -webkit-transform: scale(1.2) rotate(45deg);
  -ms-transform: scale(1.2) rotate(45deg);
  transform: scale(1.2) rotate(45deg); }

/*------------------------------------
  Changing a shape Effect
------------------------------------*/
.u-icon-square--hover:hover,
.u-icon-v4.u-icon-square--hover:hover .u-icon-v4-inner,
.u-icon-block--hover:hover .u-icon-square--hover,
.u-icon-block--hover:hover .u-icon-v4.u-icon-square--hover .u-icon-v4-inner {
  border-radius: 0; }

.u-icon-rounded-3--hover:hover,
.u-icon-v4.u-icon-rounded-3--hover:hover .u-icon-v4-inner,
.u-icon-block--hover:hover .u-icon-rounded-3--hover,
.u-icon-block--hover:hover .u-icon-v4.u-icon-rounded-3--hover .u-icon-v4-inner {
  border-radius: 3px; }

.u-icon-rounded-10--hover:hover,
.u-icon-v4.u-icon-rounded-10--hover:hover .u-icon-v4-inner,
.u-icon-block--hover:hover .u-icon-rounded-10--hover,
.u-icon-block--hover:hover .u-icon-v4.u-icon-rounded-10--hover .u-icon-v4-inner {
  border-radius: 10px; }

.u-icon-rounded-50x--hover:hover,
.u-icon-v4.u-icon-rounded-50x--hover:hover .u-icon-v4-inner,
.u-icon-block--hover:hover .u-icon-rounded-50x--hover,
.u-icon-block--hover:hover .u-icon-v4.u-icon-rounded-50x--hover .u-icon-v4-inner {
  border-radius: 50%; }

/*------------------------------------
  Effect v1
------------------------------------*/
.u-icon-effect-v1-1--hover::after,
.u-icon-effect-v1-2--hover::after, .u-icon-effect-v2--hover::after, .u-icon-effect-v4--hover::after, .u-icon-effect-v5--hover:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  box-sizing: content-box;
  pointer-events: none; }

.u-icon-effect-v1-1--hover,
.u-icon-effect-v1-2--hover {
  position: relative;
  overflow: inherit; }

.u-icon-effect-v1-1--hover::after,
.u-icon-effect-v1-2--hover::after {
  top: -0.5rem;
  left: -0.5rem;
  padding: 0.5rem;
  box-shadow: 0 0 0 1px #72c02c;
  transition: all .2s ease-in-out;
  opacity: 0; }

.u-icon-effect-v1-1--hover:hover,
.u-icon-effect-v1-2--hover:hover,
.u-icon-v4.u-icon-effect-v1-1--hover:hover .u-icon-v4-inner,
.u-icon-v4.u-icon-effect-v1-2--hover:hover .u-icon-v4-inner,
.u-icon-block--hover:hover .u-icon-effect-v1-1--hover,
.u-icon-block--hover:hover .u-icon-effect-v1-2--hover,
.u-icon-block--hover:hover .u-icon-v4.u-icon-effect-v1-1--hover .u-icon-v4-inner,
.u-icon-block--hover:hover .u-icon-v4.u-icon-effect-v1-2--hover .u-icon-v4-inner {
  color: #fff;
  border-color: #72c02c;
  background: #72c02c !important; }

.u-icon-v4.u-icon-effect-v1-1--hover:hover,
.u-icon-v4.u-icon-effect-v1-2--hover:hover,
.u-icon-block--hover:hover .u-icon-v4.u-icon-effect-v1-1--hover,
.u-icon-block--hover:hover .u-icon-v4.u-icon-effect-v1-2--hover {
  border-color: transparent; }

.u-icon-effect-v1-1--hover::after {
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8); }

.u-icon-effect-v1-1--hover:hover::after,
.u-icon-block--hover:hover .u-icon-effect-v1-1--hover::after {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1; }

.u-icon-effect-v1-2--hover::after {
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2); }

.u-icon-effect-v1-2--hover:hover::after,
.u-icon-block--hover:hover .u-icon-effect-v1-2--hover::after {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1; }

.u-icon-v4.u-icon-effect-v1-2--hover:hover::after,
.u-icon-block--hover:hover .u-icon-v4.u-icon-effect-v1-2--hover::after {
  -webkit-transform: scale(0.8);
  -ms-transform: scale(0.8);
  transform: scale(0.8); }

/*------------------------------------
  Effect v2
------------------------------------*/
.u-icon-effect-v1-1--hover::after,
.u-icon-effect-v1-2--hover::after, .u-icon-effect-v2--hover::after, .u-icon-effect-v4--hover::after, .u-icon-effect-v5--hover:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  box-sizing: content-box;
  pointer-events: none; }

.u-icon-effect-v2--hover {
  transition: all .5s;
  overflow: inherit; }

.u-icon-effect-v2--hover::after {
  top: -4px;
  left: -4px;
  padding: 4px;
  z-index: -1;
  transition: all .5s; }

.u-icon-effect-v2--hover:hover,
.u-icon-effect-v2--hover:hover::after {
  background: #72c02c; }

.u-icon-effect-v2--hover:hover::after,
.u-icon-block--hover:hover .u-icon-effect-v2--hover::after {
  opacity: 0;
  -webkit-transform: scale(1.5);
  -ms-transform: scale(1.5);
  transform: scale(1.5); }

/*------------------------------------
  Effect v3
------------------------------------*/
@-webkit-keyframes spinAround {
  from {
    -webkit-transform: translateY(-50%) rotate(0deg);
    transform: translateY(-50%) rotate(0deg); }
  to {
    -webkit-transform: translateY(-50%) rotate(360deg);
    transform: translateY(-50%) rotate(360deg); } }
@keyframes spinAround {
  from {
    -webkit-transform: translateY(-50%) rotate(0deg);
    transform: translateY(-50%) rotate(0deg); }
  to {
    -webkit-transform: translateY(-50%) rotate(360deg);
    transform: translateY(-50%) rotate(360deg); } }
.u-icon-effect-v3--hover:hover i,
.u-icon-block--hover:hover .u-icon-effect-v3--hover i {
  -webkit-animation: spinAround 1s linear infinite;
  animation: spinAround 1s linear infinite; }

/*------------------------------------
  Effect v4
------------------------------------*/
.u-icon-effect-v1-1--hover::after,
.u-icon-effect-v1-2--hover::after, .u-icon-effect-v2--hover::after, .u-icon-effect-v4--hover::after, .u-icon-effect-v5--hover:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  box-sizing: content-box;
  pointer-events: none; }

.u-icon-effect-v4--hover {
  transition: background .2s, -webkit-transform ease-out .1s;
  transition: transform ease-out .1s, background .2s;
  transition: transform ease-out .1s, background .2s, -webkit-transform ease-out .1s;
  overflow: inherit; }

.u-icon-effect-v4--hover::after {
  top: 0;
  left: 0;
  padding: 0;
  box-shadow: 0 0 0 2px rgba(0, 0, 0, 0.1);
  opacity: 0;
  z-index: -1;
  -webkit-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9); }

.u-icon-effect-v4--hover:hover,
.u-icon-block--hover:hover .u-icon-effect-v4--hover {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1); }

.u-icon-rotation.u-icon-effect-v4--hover:hover,
.u-icon-block--hover:hover .u-icon-rotation.u-icon-effect-v4--hover {
  -webkit-transform: scale(1.1) rotate(45deg);
  -ms-transform: scale(1.1) rotate(45deg);
  transform: scale(1.1) rotate(45deg); }

.u-icon-effect-v4--hover:hover::after {
  -webkit-animation: sonarEffect-default 1.3s ease-out 75ms;
  animation: sonarEffect-default 1.3s ease-out 75ms; }

.u-icon-effect-v4--hover.g-bg-primary:hover::after,
.u-icon-v2.u-icon-effect-v4--hover.g-color-primary:hover::after,
.u-icon-block--hover:hover .u-icon-effect-v4--hover.g-bg-primary::after,
.u-icon-block--hover:hover .u-icon-v2.u-icon-effect-v4--hover.g-color-primary::after {
  -webkit-animation: sonarEffect-primary 1.3s ease-out 75ms;
  animation: sonarEffect-primary 1.3s ease-out 75ms; }

@-webkit-keyframes sonarEffect-default {
  0% {
    opacity: .3; }
  40% {
    opacity: .5;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #ddd, 0 0 0 10px rgba(255, 255, 255, 0.5); }
  100% {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #ddd, 0 0 0 10px rgba(255, 255, 255, 0.5);
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0; } }
@keyframes sonarEffect-default {
  0% {
    opacity: .3; }
  40% {
    opacity: .5;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #ddd, 0 0 0 10px rgba(255, 255, 255, 0.5); }
  100% {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #ddd, 0 0 0 10px rgba(255, 255, 255, 0.5);
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0; } }
@-webkit-keyframes sonarEffect-primary {
  0% {
    opacity: .3; }
  40% {
    opacity: .5;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #72c02c, 0 0 0 10px rgba(255, 255, 255, 0.5); }
  100% {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #72c02c, 0 0 0 10px rgba(255, 255, 255, 0.5);
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0; } }
@keyframes sonarEffect-primary {
  0% {
    opacity: .3; }
  40% {
    opacity: .5;
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #72c02c, 0 0 0 10px rgba(255, 255, 255, 0.5); }
  100% {
    box-shadow: 0 0 0 2px rgba(255, 255, 255, 0.1), 0 0 10px 10px #72c02c, 0 0 0 10px rgba(255, 255, 255, 0.5);
    -webkit-transform: scale(1.5);
    transform: scale(1.5);
    opacity: 0; } }
/*------------------------------------
  Effect v5
------------------------------------*/
.u-icon-effect-v1-1--hover::after,
.u-icon-effect-v1-2--hover::after, .u-icon-effect-v2--hover::after, .u-icon-effect-v4--hover::after, .u-icon-effect-v5--hover:after {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: inherit;
  box-sizing: content-box;
  pointer-events: none; }

.u-icon-effect-v5--hover {
  transition: box-shadow .2s;
  overflow: inherit; }

.u-icon-effect-v5--hover:after {
  top: 0;
  left: 0;
  padding: 0;
  transition: opacity .2s, -webkit-transform .2s;
  transition: transform .2s, opacity .2s;
  transition: transform .2s, opacity .2s, -webkit-transform .2s; }

.u-icon-v3.u-icon-effect-v5--hover:after {
  box-shadow: 0 0 0 3px #fff; }

.u-icon-effect-v5--hover:hover:after,
.u-icon-block--hover:hover .u-icon-effect-v5--hover:after {
  -webkit-transform: scale(0.85);
  -ms-transform: scale(0.85);
  transform: scale(0.85);
  opacity: .5; }

.u-icon-effect-v5--hover:hover,
.u-icon-block--hover:hover .u-icon-effect-v5--hover {
  box-shadow: 0 0 10px 10px #ddd; }

.u-icon-effect-v5--hover.g-bg-primary:hover,
.u-icon-block--hover:hover .u-icon-effect-v5--hover.g-bg-primary,
.u-icon-effect-v5--hover.g-color-primary:hover,
.u-icon-block--hover:hover .u-icon-effect-v5--hover.g-color-primary {
  box-shadow: 0 0 10px 10px #72c02c; }

/*------------------------------------
  Box-shadows Styles
------------------------------------*/
.u-shadow-none {
  box-shadow: none !important; }

.u-shadow-none--focus:focus {
  box-shadow: none !important; }

.g-parent:hover .u-shadow-none--parent-hover {
  box-shadow: none !important; }

/*------------------------------------
  Box-shadows-v1
------------------------------------*/
.u-shadow-v1-1 {
  box-shadow: 0 0 5px #999; }

.u-shadow-v1-2 {
  box-shadow: 0 0 10px #999; }

.u-shadow-v1-2--hover:hover {
  box-shadow: 0 0 10px #999; }

.g-parent:hover .u-shadow-v1-2--hover-parent {
  box-shadow: 0 0 10px #999; }

.u-shadow-v1-3 {
  box-shadow: 0 0 5px #ddd; }

.u-shadow-v1-4 {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.1); }

.u-shadow-v1-5 {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2); }

.u-shadow-v1-5--hover:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2); }

*:hover > .u-shadow-v1-5--hover-parent {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2); }

.u-shadow-v1-6 {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); }

.u-shadow-v1-6--hover:hover {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); }

*:hover > .u-shadow-v1-6--hover-parent {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); }

.u-shadow-v1-7 {
  box-shadow: 0 0 8px #eee; }

.u-shadow-v1-7--hover:hover {
  box-shadow: 0 0 8px #eee; }

*:hover > .u-shadow-v1-7--hover-parent {
  box-shadow: 0 0 8px #eee; }

/*------------------------------------
  Box-shadows-v2
------------------------------------*/
.u-shadow-v2 {
  box-shadow: 0 10px 6px -6px rgba(0, 0, 0, 0.2); }

/*------------------------------------
  Box-shadows-v3-v4-v5
------------------------------------*/
.u-shadow-v3,
.u-shadow-v4,
.u-shadow-v5 {
  position: relative; }

.u-shadow-v3::after,
.u-shadow-v3::before,
.u-shadow-v4::before,
.u-shadow-v5::after {
  content: "";
  position: absolute;
  top: 80%;
  left: 0.35714rem;
  bottom: 1.07143rem;
  width: 50%;
  max-width: 21.42857rem;
  background: rgba(0, 0, 0, 0.2);
  z-index: -1; }

.u-shadow-v3::after,
.u-shadow-v3::before,
.u-shadow-v4::before,
.u-shadow-v5::after {
  box-shadow: 0 15px 10px rgba(0, 0, 0, 0.2);
  -webkit-transform: rotate(-3deg);
  -ms-transform: rotate(-3deg);
  transform: rotate(-3deg); }

.u-shadow-v3::after,
.u-shadow-v5::after {
  left: auto;
  right: 0.35714rem;
  -webkit-transform: rotate(3deg);
  -ms-transform: rotate(3deg);
  transform: rotate(3deg); }

/*------------------------------------
  Box-shadows-v6
------------------------------------*/
.u-shadow-v6 {
  box-shadow: 0 8px 6px -6px #555; }

/*------------------------------------
  Box-shadows-v7
------------------------------------*/
.u-shadow-v7 {
  box-shadow: 1px 1px 1px rgba(0, 0, 0, 0.2); }

/*------------------------------------
  Box-shadows-v8
------------------------------------*/
.u-shadow-v8 {
  box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.05); }

.u-shadow-v8--hover:hover {
  box-shadow: 2px 2px 1px rgba(0, 0, 0, 0.05); }

.u-shadow-v8-1 {
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05); }

/*------------------------------------
  Box-shadows-v9
------------------------------------*/
.u-shadow-v9 {
  box-shadow: 1px 1px 1px #eee; }

/*------------------------------------
  Box-shadows-v10
------------------------------------*/
.u-shadow-v10 {
  box-shadow: 2px 2px 2px #eee; }

/*------------------------------------
  Box-shadows-v11
------------------------------------*/
.u-shadow-v11 {
  box-shadow: 0 0 2px #ccc; }

/*------------------------------------
  Box-shadows-v12
------------------------------------*/
.u-shadow-v12 {
  box-shadow: inset 2px 2px 2px 0 #ccc; }

/*------------------------------------
  Box-shadows-v13
------------------------------------*/
.u-shadow-v13 {
  box-shadow: inset 2px 2px 2px 0 #72c02c; }

/*------------------------------------
  Box-shadows-v14
------------------------------------*/
.u-shadow-v14 {
  box-shadow: 2px 2px 2px 0 #eee; }

/*------------------------------------
  Box-shadows-v15
------------------------------------*/
.u-shadow-v15 {
  box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.3); }

/*------------------------------------
  Box-shadows-v16
------------------------------------*/
.u-shadow-v16 {
  box-shadow: inset 5px 5px 5px 0 rgba(17, 17, 17, 0.5); }

/*------------------------------------
  Box-shadows-v17
------------------------------------*/
.u-shadow-v17 {
  box-shadow: 3px 2px 8px 2px rgba(0, 0, 0, 0.17); }

/*------------------------------------
  Box-shadows-v18
------------------------------------*/
.u-shadow-v18 {
  box-shadow: 0 5px 10px -6px rgba(0, 0, 0, 0.15); }

/*------------------------------------
  Box-shadows-v19
------------------------------------*/
.u-shadow-v19 {
  box-shadow: 0 5px 10px -6px rgba(0, 0, 0, 0.1); }

.u-shadow-v19--lightblue {
  box-shadow: 0 5px 10px -6px rgba(51, 152, 220, 0.15); }

/*------------------------------------
  Box-shadows-v20
------------------------------------*/
.u-shadow-v20 {
  box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.05); }

.u-shadow-v20--hover:hover {
  box-shadow: 0 10px 10px 0 rgba(0, 0, 0, 0.05); }

/*------------------------------------
  Box-shadows-v21
------------------------------------*/
.u-shadow-v21 {
  box-shadow: 0 20px 25px -12px rgba(0, 0, 0, 0.09);
  transition-property: all;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-duration: .3s; }

.u-shadow-v21--hover:hover {
  box-shadow: 0 20px 25px -12px rgba(0, 0, 0, 0.15); }

/*------------------------------------
  Box-shadows-v22
------------------------------------*/
.u-shadow-v22 {
  box-shadow: 0 2px 5px #eee; }

/*------------------------------------
  Box-shadows-v23
------------------------------------*/
.u-shadow-v23 {
  box-shadow: 0 15px 20px 0 rgba(0, 0, 0, 0.2); }

/*------------------------------------
  Box-shadows-v24
------------------------------------*/
.u-shadow-v24 {
  box-shadow: 0 15px 20px 0 rgba(0, 0, 0, 0.06); }

.g-parent.active .u-shadow-v24--active {
  box-shadow: 0 15px 20px 0 rgba(0, 0, 0, 0.06); }

/*------------------------------------
  Box-shadows-v25
------------------------------------*/
.u-shadow-v25 {
  box-shadow: 0 5px 20px 0 rgba(0, 0, 0, 0.07); }

/*------------------------------------
  Box-shadows-v26
------------------------------------*/
.u-shadow-v26 {
  box-shadow: inset 5px 0 10px rgba(0, 0, 0, 0.2); }

/*------------------------------------
  Box-shadows-v27
------------------------------------*/
.u-shadow-v27 {
  box-shadow: 0 0 3px #b5b5b5; }

/*------------------------------------
  Box-shadows-v28
------------------------------------*/
.u-shadow-v28 {
  box-shadow: 0 10px 45px -5px rgba(0, 0, 0, 0.04); }

/*------------------------------------
  Box-shadows-v29
------------------------------------*/
.u-shadow-v29 {
  box-shadow: 0 15px 50px 0 rgba(0, 0, 0, 0.1); }

.u-shadow-v29--lightblue {
  box-shadow: 0 10px 30px 0 rgba(51, 152, 220, 0.075); }

/*------------------------------------
  Box-shadows-v30
------------------------------------*/
.u-shadow-v30 {
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12); }

/*------------------------------------
  Box-shadows-v31
------------------------------------*/
.u-shadow-v31 {
  box-shadow: 0 5px 5px 0 rgba(0, 0, 0, 0.075); }

/*------------------------------------
  Box-shadows-v32
------------------------------------*/
.u-shadow-v32 {
  box-shadow: 0 6px 15px -6px rgba(0, 0, 0, 0.1); }

/*------------------------------------
  Box-shadows-v33
------------------------------------*/
.u-shadow-v33 {
  box-shadow: 0 6px 15px -6px rgba(114, 192, 44, 0.3); }

/*------------------------------------
  Box-shadows-v34
------------------------------------*/
.u-shadow-v34 {
  box-shadow: 0 3px 30px 0 rgba(0, 0, 0, 0.1); }

/*------------------------------------
  Box-shadows-v35
------------------------------------*/
.u-shadow-v35 {
  box-shadow: 0 4px 7px 0 rgba(0, 0, 0, 0.045); }

.u-shadow-v35--active.active {
  box-shadow: 0 4px 7px 0 rgba(0, 0, 0, 0.045);
  transition-duration: .2s; }

.u-shadow-v35.g-bg-teal-opacity-0_1 {
  box-shadow: 0 4px 7px 0 rgba(24, 186, 155, 0.175); }

.u-shadow-v35.g-bg-purple-opacity-0_1 {
  box-shadow: 0 4px 7px 0 rgba(154, 105, 203, 0.175); }

.u-shadow-v35.g-bg-blue-opacity-0_1 {
  box-shadow: 0 4px 7px 0 rgba(51, 152, 220, 0.175); }

/*------------------------------------
  Box-shadows-v36
------------------------------------*/
.u-shadow-v36 {
  box-shadow: 0 10px 15px 0 rgba(0, 0, 0, 0.14); }

/*------------------------------------
  Box-shadows-v37
------------------------------------*/
.u-shadow-v37 {
  box-shadow: 0 13px 25px 0 rgba(235, 237, 242, 0.7); }

.u-shadow-v37--hover:hover {
  box-shadow: 0 13px 25px 0 rgba(235, 237, 242, 0.7);
  transition-duration: .2s; }

/*------------------------------------
  Box-shadows-v38
------------------------------------*/
.u-shadow-v38 {
  box-shadow: 0 2px 35px 0 rgba(235, 237, 242, 0.7); }

/*------------------------------------
  Box-shadows-v39
------------------------------------*/
.u-shadow-v39 {
  box-shadow: 0 8px 20px 0 rgba(0, 0, 0, 0.1); }

/*------------------------------------
  Box-shadows-v40
------------------------------------*/
.u-shadow-v40 {
  box-shadow: -9px -9px 20px -9px rgba(0, 0, 0, 0.1); }

/*------------------------------------
  Box-shadows-v41
------------------------------------*/
.u-shadow-v41 {
  box-shadow: 10px 40px 120px rgba(0, 0, 0, 0.1); }

/*------------------------------------
  Form Elements
------------------------------------*/
.u-form-control {
  padding: .8rem 1rem .6rem; }

.u-form-control::-webkit-input-placeholder {
  color: inherit;
  opacity: .3; }

.u-form-control::-moz-placeholder {
  color: inherit;
  opacity: .3; }

.u-form-control:-ms-input-placeholder {
  color: inherit;
  opacity: .3; }

.u-form-control::placeholder {
  color: inherit;
  opacity: .3; }

.u-form-control::-moz-placeholder {
  color: inherit;
  opacity: .3; }

.u-form-control::-webkit-input-placeholder {
  color: inherit;
  opacity: .3; }

.u-form-control-sm {
  padding: .4rem .5rem .1rem;
  font-size: .875rem; }

.u-form-control-lg {
  padding: .75rem 1.5rem .55rem;
  font-size: 1.25rem; }

.u-form-control-shadow--focus:focus {
  box-shadow: 0 0 5px rgba(0, 0, 0, 0.3); }

.u-textarea-expandable {
  max-height: 42px;
  transition-property: max-height;
  transition-duration: .2s;
  transition-timing-function: ease-in; }

.u-textarea-expandable:focus {
  max-height: 90px; }

/*------------------------------------
  States
------------------------------------*/
/*------------------------------------
  Success states
------------------------------------*/
/*------------------------------------
  Success state v1-1
------------------------------------*/
.u-has-success-v1-1 .form-control,
.u-has-success-v1-1 [class*="input-group-"],
.u-has-success-v1-1 [class*="u-select"] {
  background-color: #f0fff0;
  border-color: #72c02c; }

.u-has-success-v1-1 .form-control[readonly],
.u-has-success-v1-1 [class*="input-group-"][readonly],
.u-has-success-v1-1 [class*="u-select"][readonly] {
  background-color: #f0fff0; }

.u-has-success-v1-1 .form-control-feedback {
  color: #72c02c; }

.u-has-success-v1-1 [class*="u-check-icon"] {
  color: #f0fff0;
  background-color: #f0fff0; }

.u-has-success-v1-1 [class*="u-check-icon"] i {
  color: rgba(114, 192, 44, 0.2); }

.u-has-success-v1-1 [class*="input-group-"],
.u-has-success-v1-1 [class*="input-group-"]:last-child,
.u-has-success-v1-1 .chosen-single div b {
  color: #72c02c; }

/*------------------------------------
  Success state v1-2
------------------------------------*/
.u-has-success-v1-2 {
  position: relative; }

.u-has-success-v1-2 .form-control,
.u-has-success-v1-2 [class*="input-group-"],
.u-has-success-v1-2 [class*="u-select"] {
  background-color: #f0fff0;
  border-color: #72c02c; }

.u-has-success-v1-2 .form-control[readonly],
.u-has-success-v1-2 [class*="input-group-"][readonly],
.u-has-success-v1-2 [class*="u-select"][readonly] {
  background-color: #f0fff0; }

.u-has-success-v1-2 .form-control-feedback {
  color: #72c02c; }

.u-has-success-v1-2 [class*="u-check-icon"] {
  color: #f0fff0;
  background-color: #f0fff0;
  border-radius: 50%; }

.u-has-success-v1-2 [class*="u-check-icon"] i {
  color: rgba(114, 192, 44, 0.2); }

.u-has-success-v1-2 [class*="input-group-"],
.u-has-success-v1-2 [class*="input-group-"]:last-child,
.u-has-success-v1-2 .chosen-single div b {
  color: #72c02c; }

.u-has-success-v1-2 [class*="input-group-"],
.u-has-success-v1-2 [class*="input-group-"]:last-child {
  color: #fff;
  background-color: #72c02c; }

.u-has-success-v1-2 .form-control-feedback::before {
  content: "";
  position: absolute;
  bottom: -3px;
  right: 18px;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3px 3px 0 3px;
  border-color: #72c02c transparent transparent transparent; }

/*------------------------------------
  Error states
------------------------------------*/
/*------------------------------------
  Error state v1
------------------------------------*/
.u-has-error-v1 .form-control,
.u-has-error-v1 [class*="input-group-"],
.u-has-error-v1 [class*="u-select"] {
  background-color: #fff0f0; }

.u-has-error-v1 .form-control[readonly],
.u-has-error-v1 [class*="input-group-"][readonly],
.u-has-error-v1 [class*="u-select"][readonly] {
  background-color: #fff0f0; }

.u-has-error-v1 .form-control-feedback {
  color: #f00; }

.u-has-error-v1 [class*="u-check-icon"] {
  background-color: #fff0f0; }

/*------------------------------------
  Error state v1-2
------------------------------------*/
.u-has-error-v1-2 .form-control,
.u-has-error-v1-2 [class*="input-group-"],
.u-has-error-v1-2 [class*="u-select"] {
  background-color: #fff0f0;
  border-color: #f00; }

.u-has-error-v1-2 .form-control[readonly],
.u-has-error-v1-2 [class*="input-group-"][readonly],
.u-has-error-v1-2 [class*="u-select"][readonly] {
  background-color: #fff0f0; }

.u-has-error-v1-2 .form-control-feedback {
  color: #f00; }

.u-has-error-v1-2 [class*="u-check-icon"] {
  background-color: #fff0f0; }

.u-has-error-v1-2 [class*="input-group-"]:last-child,
.u-has-error-v1-2 .chosen-single div b {
  color: #f00; }

.u-has-error-v1-2 .error {
  display: block; }

/*------------------------------------
  Error state v1-3
------------------------------------*/
.u-has-error-v1-3 {
  position: relative; }

.u-has-error-v1-3 .form-control,
.u-has-error-v1-3 [class*="input-group-"],
.u-has-error-v1-3 [class*="u-select"] {
  background-color: #fff0f0;
  border-color: #f00; }

.u-has-error-v1-3 .form-control[readonly],
.u-has-error-v1-3 [class*="input-group-"][readonly],
.u-has-error-v1-3 [class*="u-select"][readonly] {
  background-color: #fff0f0; }

.u-has-error-v1-3 .form-control-feedback {
  color: #f00; }

.u-has-error-v1-3 .form-control-feedback::before {
  content: "";
  position: absolute;
  bottom: -3px;
  right: 18px;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 3px 3px 0 3px;
  border-color: #f00 transparent transparent transparent; }

.u-has-error-v1-3 [class*="u-check-icon"] {
  background-color: #fff0f0; }

.u-has-error-v1-3 [class*="input-group-"]:last-child,
.u-has-error-v1-3 .chosen-single div b {
  color: #f00; }

.u-has-error-v1-3 .error {
  display: block; }

.u-has-error-v1-3 [class*="input-group-"],
.u-has-error-v1-3 [class*="input-group-"]:last-child {
  color: #fff;
  background-color: #f00; }

/*------------------------------------
  Error state v2
------------------------------------*/
.u-has-error-v2:after {
  content: '\f00d';
  position: absolute;
  top: 50%;
  right: 15px;
  font-family: 'FontAwesome', sans-serif;
  color: #f00;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%); }

.u-has-error-v2 input:not([type="checkbox"]):not([type="radio"]),
.u-has-error-v2 textarea {
  border-color: #f00; }

/*------------------------------------
  Disabled states
------------------------------------*/
/*------------------------------------
  Disabled state v1
------------------------------------*/
.u-has-disabled-v1 label,
.u-has-disabled-v1 .form-control,
.u-has-disabled-v1 [class*="input-group-"],
.u-has-disabled-v1 [class*="u-select"] {
  background-color: #fff;
  opacity: .5; }

.u-has-disabled-v1 label:disabled,
.u-has-disabled-v1 .form-control:disabled,
.u-has-disabled-v1 [class*="input-group-"]:disabled,
.u-has-disabled-v1 [class*="u-select"]:disabled {
  background-color: #fff;
  opacity: .5; }

/*------------------------------------
  Checked state colors
------------------------------------*/
/* White Colors */
input[type="checkbox"]:checked + .g-color-white--checked,
input[type="radio"]:checked + .g-color-white--checked,
input[type="checkbox"]:checked + * .g-color-white--checked,
input[type="radio"]:checked + * .g-color-white--checked {
  color: #fff !important; }

.g-color-white--checked.g-checked,
.g-checked .g-color-white--checked {
  color: #fff !important; }

/*------------------------------------
  Focus state color
------------------------------------*/
/* Primary Colors */
.g-color-primary:focus {
  color: #72c02c; }

/* Black Colors */
.g-color-black--focus:focus {
  color: #000; }

/* White Colors */
.g-color-white--focus:focus {
  color: #fff !important; }

/* Gray Colors */
.g-color-gray-light-v4:focus {
  color: #eee !important; }

/*------------------------------------
  Checked state background
------------------------------------*/
/* Primary Colors */
input[type="checkbox"]:checked + .g-bg-primary--checked,
input[type="radio"]:checked + .g-bg-primary--checked,
input[type="checkbox"]:checked + * .g-bg-primary--checked,
input[type="radio"]:checked + * .g-bg-primary--checked {
  background-color: #72c02c !important; }

.g-bg-primary--checked.g-checked,
.g-checked .g-bg-primary--checked {
  background-color: #72c02c !important; }

/* Black Colors */
input[type="checkbox"]:checked + .g-bg-black--checked,
input[type="radio"]:checked + .g-bg-black--checked,
input[type="checkbox"]:checked + * .g-bg-black--checked,
input[type="radio"]:checked + * .g-bg-black--checked {
  background-color: #000 !important; }

.g-bg-black--checked.g-checked,
.g-checked .g-bg-black--checked {
  background-color: #000 !important; }

/* White Colors */
input[type="checkbox"]:checked + .g-bg-white--checked,
input[type="radio"]:checked + .g-bg-white--checked,
input[type="checkbox"]:checked + * .g-bg-white--checked,
input[type="radio"]:checked + * .g-bg-white--checked {
  background-color: #fff !important; }

.g-bg-white--checked.g-checked,
.g-checked .g-bg-white--checked {
  background-color: #fff !important; }

/* Gray Colors */
input[type="checkbox"]:checked + .g-bg-dark-dark-v1--checked,
input[type="radio"]:checked + .g-bg-dark-dark-v1--checked,
input[type="checkbox"]:checked + * .g-bg-dark-dark-v1--checked,
input[type="radio"]:checked + * .g-bg-dark-dark-v1--checked {
  background-color: #111 !important; }

.g-bg-dark-dark-v1--checked.g-checked,
.g-checked .g-bg-dark-dark-v1--checked {
  background-color: #111 !important; }

input[type="checkbox"]:checked + .g-bg-dark-dark-v2--checked,
input[type="radio"]:checked + .g-bg-dark-dark-v2--checked,
input[type="checkbox"]:checked + * .g-bg-dark-dark-v2--checked,
input[type="radio"]:checked + * .g-bg-dark-dark-v2--checked {
  background-color: #333 !important; }

.g-bg-dark-dark-v2--checked.g-checked,
.g-checked .g-bg-dark-dark-v2--checked {
  background-color: #333 !important; }

input[type="checkbox"]:checked + .g-bg-dark-dark-v3--checked,
input[type="radio"]:checked + .g-bg-dark-dark-v3--checked,
input[type="checkbox"]:checked + * .g-bg-dark-dark-v3--checked,
input[type="radio"]:checked + * .g-bg-dark-dark-v3--checked {
  background-color: #555 !important; }

.g-bg-dark-dark-v3--checked.g-checked,
.g-checked .g-bg-dark-dark-v3--checked {
  background-color: #555 !important; }

input[type="checkbox"]:checked + .g-bg-dark-dark-v4--checked,
input[type="radio"]:checked + .g-bg-dark-dark-v4--checked,
input[type="checkbox"]:checked + * .g-bg-dark-dark-v4--checked,
input[type="radio"]:checked + * .g-bg-dark-dark-v4--checked {
  background-color: #777 !important; }

.g-bg-dark-dark-v4--checked.g-checked,
.g-checked .g-bg-dark-dark-v4--checked {
  background-color: #777 !important; }

input[type="checkbox"]:checked + .g-bg-dark-dark-v5--checked,
input[type="radio"]:checked + .g-bg-dark-dark-v5--checked,
input[type="checkbox"]:checked + * .g-bg-dark-dark-v5--checked,
input[type="radio"]:checked + * .g-bg-dark-dark-v5--checked {
  background-color: #999 !important; }

.g-bg-dark-dark-v5--checked.g-checked,
.g-checked .g-bg-dark-dark-v5--checked {
  background-color: #999 !important; }

input[type="checkbox"]:checked + .g-bg-dark-light-v1--checked,
input[type="radio"]:checked + .g-bg-dark-light-v1--checked,
input[type="checkbox"]:checked + * .g-bg-dark-light-v1--checked,
input[type="radio"]:checked + * .g-bg-dark-light-v1--checked {
  background-color: #bbb !important; }

.g-bg-dark-light-v1--checked.g-checked,
.g-checked .g-bg-dark-light-v1--checked {
  background-color: #bbb !important; }

input[type="checkbox"]:checked + .g-bg-dark-light-v2--checked,
input[type="radio"]:checked + .g-bg-dark-light-v2--checked,
input[type="checkbox"]:checked + * .g-bg-dark-light-v2--checked,
input[type="radio"]:checked + * .g-bg-dark-light-v2--checked {
  background-color: #ccc !important; }

.g-bg-dark-light-v2--checked.g-checked,
.g-checked .g-bg-dark-light-v2--checked {
  background-color: #ccc !important; }

input[type="checkbox"]:checked + .g-bg-dark-light-v3--checked,
input[type="radio"]:checked + .g-bg-dark-light-v3--checked,
input[type="checkbox"]:checked + * .g-bg-dark-light-v3--checked,
input[type="radio"]:checked + * .g-bg-dark-light-v3--checked {
  background-color: #ddd !important; }

.g-bg-dark-light-v3--checked.g-checked,
.g-checked .g-bg-dark-light-v3--checked {
  background-color: #ddd !important; }

input[type="checkbox"]:checked + .g-bg-dark-light-v4--checked,
input[type="radio"]:checked + .g-bg-dark-light-v4--checked,
input[type="checkbox"]:checked + * .g-bg-dark-light-v4--checked,
input[type="radio"]:checked + * .g-bg-dark-light-v4--checked {
  background-color: #eee !important; }

.g-bg-dark-light-v4--checked.g-checked,
.g-checked .g-bg-dark-light-v4--checked {
  background-color: #eee !important; }

input[type="checkbox"]:checked + .g-bg-dark-light-v5--checked,
input[type="radio"]:checked + .g-bg-dark-light-v5--checked,
input[type="checkbox"]:checked + * .g-bg-dark-light-v5--checked,
input[type="radio"]:checked + * .g-bg-dark-light-v5--checked {
  background-color: #f7f7f7 !important; }

.g-bg-dark-light-v5--checked.g-checked,
.g-checked .g-bg-dark-light-v5--checked {
  background-color: #f7f7f7 !important; }

/* Transparent */
input[type="checkbox"]:checked + .g-bg-transparent--checked,
input[type="radio"]:checked + .g-bg-transparent--checked,
input[type="checkbox"]:checked + * .g-bg-transparent--checked,
input[type="radio"]:checked + * .g-bg-transparent--checked {
  background-color: transparent !important; }

.g-bg-transparent--checked.g-checked,
.g-checked .g-bg-transparent--checked {
  background-color: transparent !important; }

/* Color Red */
input[type="checkbox"]:checked + .g-bg-red--checked,
input[type="radio"]:checked + .g-bg-red--checked,
input[type="checkbox"]:checked + * .g-bg-red--checked,
input[type="radio"]:checked + * .g-bg-red--checked {
  background-color: #f00 !important; }

.g-bg-red--checked.g-checked,
.g-checked .g-bg-red--checked {
  background-color: #f00 !important; }

/*------------------------------------
  Checked state Colors
------------------------------------*/
/* Primary Colors */
input[type="checkbox"]:checked + .g-color-primary--checked,
input[type="radio"]:checked + .g-color-primary--checked,
input[type="checkbox"]:checked + * .g-color-primary--checked,
input[type="radio"]:checked + * .g-color-primary--checked {
  color: #72c02c !important; }

.g-color-primary--checked.g-checked,
.g-checked .g-color-primary--checked {
  color: #72c02c !important; }

/*------------------------------------
  Focus state background
------------------------------------*/
/* Black Colors */
.g-bg-black--focus:focus {
  background-color: #000 !important; }

.g-bg-black-opacity-0_2--focus:focus {
  background-color: rgba(0, 0, 0, 0.2) !important; }

.g-bg-black-opacity-0_4--focus:focus {
  background-color: rgba(0, 0, 0, 0.4) !important; }

/* Gray Colors */
.g-bg-gray-dark-v1--focus:focus {
  background-color: #111 !important; }

.g-bg-gray-dark-v2--focus:focus {
  background-color: #333 !important; }

.g-bg-gray-dark-v3--focus:focus {
  background-color: #555 !important; }

.g-bg-gray-light-v4--focus:focus {
  background-color: #eee !important; }

.g-bg-gray-light-v5--focus:focus {
  background-color: #f7f7f7 !important; }

/* Transparent */
.g-bg-transparent--focus:focus {
  background-color: transparent; }

/*------------------------------------
  Checked state border
------------------------------------*/
/* Primary Colors */
input[type="checkbox"]:checked + .g-brd-primary--checked,
input[type="radio"]:checked + .g-brd-primary--checked,
input[type="checkbox"]:checked + * .g-brd-primary--checked,
input[type="radio"]:checked + * .g-brd-primary--checked {
  border-color: #72c02c !important; }

.g-brd-primary--checked.g-checked,
.g-checked .g-brd-primary--checked {
  border-color: #72c02c !important; }

/* Black Colors */
input[type="checkbox"]:checked + .g-brd-black--checked,
input[type="radio"]:checked + .g-brd-black--checked,
input[type="checkbox"]:checked + * .g-brd-black--checked,
input[type="radio"]:checked + * .g-brd-black--checked {
  border-color: #000 !important; }

.g-brd-black--checked.g-checked,
.g-checked .g-brd-black--checked {
  border-color: #000 !important; }

/* White */
input[type="checkbox"]:checked + .g-brd-white--checked,
input[type="radio"]:checked + .g-brd-white--checked,
input[type="checkbox"]:checked + * .g-brd-white--checked,
input[type="radio"]:checked + * .g-brd-white--checked {
  border-color: #fff !important; }

.g-brd-white--checked.g-checked,
.g-checked .g-brd-white--checked {
  border-color: #fff !important; }

/* Gray Colors */
input[type="checkbox"]:checked + .g-brd-gray-dark-v1--checked,
input[type="radio"]:checked + .g-brd-gray-dark-v1--checked,
input[type="checkbox"]:checked + * .g-brd-gray-dark-v1--checked,
input[type="radio"]:checked + * .g-brd-gray-dark-v1--checked {
  border-color: #111 !important; }

.g-brd-gray-dark-v1--checked.g-checked,
.g-checked .g-brd-gray-dark-v1--checked {
  border-color: #111 !important; }

input[type="checkbox"]:checked + .g-brd-gray-dark-v2--checked,
input[type="radio"]:checked + .g-brd-gray-dark-v2--checked,
input[type="checkbox"]:checked + * .g-brd-gray-dark-v2--checked,
input[type="radio"]:checked + * .g-brd-gray-dark-v2--checked {
  border-color: #333 !important; }

.g-brd-gray-dark-v2--checked.g-checked,
.g-checked .g-brd-gray-dark-v2--checked {
  border-color: #333 !important; }

input[type="checkbox"]:checked + .g-brd-gray-dark-v3--checked,
input[type="radio"]:checked + .g-brd-gray-dark-v3--checked,
input[type="checkbox"]:checked + * .g-brd-gray-dark-v3--checked,
input[type="radio"]:checked + * .g-brd-gray-dark-v3--checked {
  border-color: #555 !important; }

.g-brd-gray-dark-v3--checked.g-checked,
.g-checked .g-brd-gray-dark-v3--checked {
  border-color: #555 !important; }

input[type="checkbox"]:checked + .g-brd-gray-dark-v4--checked,
input[type="radio"]:checked + .g-brd-gray-dark-v4--checked,
input[type="checkbox"]:checked + * .g-brd-gray-dark-v4--checked,
input[type="radio"]:checked + * .g-brd-gray-dark-v4--checked {
  border-color: #777 !important; }

.g-brd-gray-dark-v4--checked.g-checked,
.g-checked .g-brd-gray-dark-v4--checked {
  border-color: #777 !important; }

input[type="checkbox"]:checked + .g-brd-gray-dark-v5--checked,
input[type="radio"]:checked + .g-brd-gray-dark-v5--checked,
input[type="checkbox"]:checked + * .g-brd-gray-dark-v5--checked,
input[type="radio"]:checked + * .g-brd-gray-dark-v5--checked {
  border-color: #999 !important; }

.g-brd-gray-dark-v5--checked.g-checked,
.g-checked .g-brd-gray-dark-v5--checked {
  border-color: #999 !important; }

input[type="checkbox"]:checked + .g-brd-gray-light-v1--checked,
input[type="radio"]:checked + .g-brd-gray-light-v1--checked,
input[type="checkbox"]:checked + * .g-brd-gray-light-v1--checked,
input[type="radio"]:checked + * .g-brd-gray-light-v1--checked {
  border-color: #bbb !important; }

.g-brd-gray-light-v1--checked.g-checked,
.g-checked .g-brd-gray-light-v1--checked {
  border-color: #bbb !important; }

input[type="checkbox"]:checked + .g-brd-gray-light-v2--checked,
input[type="radio"]:checked + .g-brd-gray-light-v2--checked,
input[type="checkbox"]:checked + * .g-brd-gray-light-v2--checked,
input[type="radio"]:checked + * .g-brd-gray-light-v2--checked {
  border-color: #ccc !important; }

.g-brd-gray-light-v2--checked.g-checked,
.g-checked .g-brd-gray-light-v2--checked {
  border-color: #ccc !important; }

input[type="checkbox"]:checked + .g-brd-gray-light-v3--checked,
input[type="radio"]:checked + .g-brd-gray-light-v3--checked,
input[type="checkbox"]:checked + * .g-brd-gray-light-v3--checked,
input[type="radio"]:checked + * .g-brd-gray-light-v3--checked {
  border-color: #ddd !important; }

.g-brd-gray-light-v3--checked.g-checked,
.g-checked .g-brd-gray-light-v3--checked {
  border-color: #ddd !important; }

input[type="checkbox"]:checked + .g-brd-gray-light-v4--checked,
input[type="radio"]:checked + .g-brd-gray-light-v4--checked,
input[type="checkbox"]:checked + * .g-brd-gray-light-v4--checked,
input[type="radio"]:checked + * .g-brd-gray-light-v4--checked {
  border-color: #eee !important; }

.g-brd-gray-light-v4--checked.g-checked,
.g-checked .g-brd-gray-light-v4--checked {
  border-color: #eee !important; }

input[type="checkbox"]:checked + .g-brd-gray-light-v5--checked,
input[type="radio"]:checked + .g-brd-gray-light-v5--checked,
input[type="checkbox"]:checked + * .g-brd-gray-light-v5--checked,
input[type="radio"]:checked + * .g-brd-gray-light-v5--checked {
  border-color: #f7f7f7 !important; }

.g-brd-gray-light-v5--checked.g-checked,
.g-checked .g-brd-gray-light-v5--checked {
  border-color: #f7f7f7 !important; }

/* Transparent */
input[type="checkbox"]:checked + .g-brd-transparent--checked,
input[type="radio"]:checked + .g-brd-transparent--checked,
input[type="checkbox"]:checked + * .g-brd-transparent--checked,
input[type="radio"]:checked + * .g-brd-transparent--checked {
  border-color: transparent !important; }

.g-brd-transparent--checked.g-checked,
.g-checked .g-brd-transparent--checked {
  border-color: transparent !important; }

/* Color Red */
input[type="checkbox"]:checked + .g-brd-red--checked,
input[type="radio"]:checked + .g-brd-red--checked,
input[type="checkbox"]:checked + * .g-brd-red--checked,
input[type="radio"]:checked + * .g-brd-red--checked {
  border-color: #f00 !important; }

.g-brd-red--checked.g-checked,
.g-checked .g-brd-red--checked {
  border-color: #f00 !important; }

/*------------------------------------
  Focus state border
------------------------------------*/
/* Primary Colors */
.g-brd-primary--focus:focus,
.g-brd-primary--focus.g-state-focus *,
.g-brd-primary--focus.g-state-focus *:focus {
  border-color: #72c02c !important; }

/* Black Colors */
.g-brd-black--focus:focus,
.g-brd-black--focus.g-state-focus *,
.g-brd-black--focus.g-state-focus *:focus {
  border-color: #000 !important; }

/* White */
.g-brd-white--focus:focus,
.g-brd-white--focus.g-state-focus *,
.g-brd-white--focus.g-state-focus *:focus {
  border-color: #fff !important; }

/* Gray Colors */
.g-brd-gray-dark-v1--focus:focus,
.g-brd-gray-dark-v1--focus.g-state-focus *,
.g-brd-gray-dark-v1--focus.g-state-focus *:focus {
  border-color: #111 !important; }

.g-brd-gray-dark-v2--focus:focus,
.g-brd-gray-dark-v2--focus.g-state-focus *,
.g-brd-gray-dark-v2--focus.g-state-focus *:focus {
  border-color: #333 !important; }

.g-brd-gray-dark-v3--focus:focus,
.g-brd-gray-dark-v3--focus.g-state-focus *,
.g-brd-gray-dark-v3--focus.g-state-focus *:focus {
  border-color: #555 !important; }

.g-brd-gray-dark-v4--focus:focus,
.g-brd-gray-dark-v4--focus.g-state-focus *,
.g-brd-gray-dark-v4--focus.g-state-focus *:focus {
  border-color: #777 !important; }

.g-brd-gray-dark-v5--focus:focus,
.g-brd-gray-dark-v5--focus.g-state-focus *,
.g-brd-gray-dark-v5--focus.g-state-focus *:focus {
  border-color: #999 !important; }

.g-brd-gray-dark-light-v1--focus:focus,
.g-brd-gray-dark-light-v1--focus.g-state-focus *,
.g-brd-gray-dark-light-v1--focus.g-state-focus *:focus {
  border-color: #bbb !important; }

.g-brd-gray-dark-light-v2--focus:focus,
.g-brd-gray-dark-light-v2--focus.g-state-focus *,
.g-brd-gray-dark-light-v2--focus.g-state-focus *:focus {
  border-color: #ccc !important; }

.g-brd-gray-dark-light-v3--focus:focus,
.g-brd-gray-dark-light-v3--focus.g-state-focus *,
.g-brd-gray-dark-light-v3--focus.g-state-focus *:focus {
  border-color: #ddd !important; }

.g-brd-gray-dark-light-v4--focus:focus,
.g-brd-gray-dark-light-v4--focus.g-state-focus *,
.g-brd-gray-dark-light-v4--focus.g-state-focus *:focus {
  border-color: #eee !important; }

.g-brd-gray-dark-light-v5--focus:focus,
.g-brd-gray-dark-light-v5--focus.g-state-focus *,
.g-brd-gray-dark-light-v5--focus.g-state-focus *:focus {
  border-color: #f7f7f7 !important; }

/* Transparent */
.g-brd-transparent--focus:focus,
.g-brd-transparent--focus.g-state-focus *,
.g-brd-transparent--focus.g-state-focus *:focus {
  border-color: transparent !important; }

/* Color Red */
.g-brd-red--focus:focus,
.g-brd-red--focus.g-state-focus *,
.g-brd-red--focus.g-state-focus *:focus {
  border-color: #f00 !important; }

/*------------------------------------
  Checked state box shadow
------------------------------------*/
input[type="checkbox"]:checked + .u-shadow-v1-5--checked,
input[type="radio"]:checked + .u-shadow-v1-5--checked,
input[type="checkbox"]:checked + * .u-shadow-v1-5--checked,
input[type="radio"]:checked + * .u-shadow-v1-5--checked {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2); }

.u-shadow-v1-5--checked.g-checked,
.g-checked .u-shadow-v1-5--checked {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.2); }

input[type="checkbox"]:checked + .u-shadow-v1-v6--checked,
input[type="radio"]:checked + .u-shadow-v1-v6--checked,
input[type="checkbox"]:checked + * .u-shadow-v1-v6--checked,
input[type="radio"]:checked + * .u-shadow-v1-v6--checked {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); }

.u-shadow-v1-v6--checked.g-checked,
.g-checked .u-shadow-v1-v6--checked {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); }

/*------------------------------------
  Checked state opacity
------------------------------------*/
input[type="checkbox"]:checked + .g-opacity-1--checked,
input[type="radio"]:checked + .g-opacity-1--checked,
input[type="checkbox"]:checked + * .g-opacity-1--checked,
input[type="radio"]:checked + * .g-opacity-1--checked {
  opacity: 1; }

.g-opacity-1--checked.g-checked,
.g-checked .g-opacity-1--checked {
  opacity: 1; }

/*------------------------------------
  Checked state overlay
------------------------------------*/
input[type="checkbox"]:checked + .g-overlay-black-0_5--checked::after,
input[type="radio"]:checked + .g-overlay-black-0_5--checked::after,
input[type="checkbox"]:checked + * > .g-overlay-black-0_5--checked::after,
input[type="radio"]:checked + * > .g-overlay-black-0_5--checked::after {
  background-color: rgba(0, 0, 0, 0.5); }

input[type="checkbox"]:checked + .g-overlay-black-0_7--checked::after,
input[type="radio"]:checked + .g-overlay-black-0_7--checked::after,
input[type="checkbox"]:checked + * > .g-overlay-black-0_7--checked::after,
input[type="radio"]:checked + * > .g-overlay-black-0_7--checked::after {
  background-color: rgba(0, 0, 0, 0.7); }

input[type="checkbox"]:checked + .g-overlay-black-gradient-v1--checked::after,
input[type="radio"]:checked + .g-overlay-black-gradient-v1--checked::after,
input[type="checkbox"]:checked + * > .g-overlay-black-gradient-v1--checked::after,
input[type="radio"]:checked + * > .g-overlay-black-gradient-v1--checked::after {
  background-image: linear-gradient(to bottom, transparent 40%, #000 100%); }

input[type="checkbox"]:checked + .g-overlay-primary-0_5--checked::after,
input[type="radio"]:checked + .g-overlay-primary-0_5--checked::after,
input[type="checkbox"]:checked + * .g-overlay-primary-0_5--checked::after,
input[type="radio"]:checked + * .g-overlay-primary-0_5--checked::after {
  background-color: rgba(114, 192, 44, 0.5); }

.g-overlay-primary-0_5--checked.g-checked::after,
.g-checked .g-overlay-primary-0_5--checked::after {
  background-color: rgba(114, 192, 44, 0.5); }

input[type="checkbox"]:checked + .g-overlay-primary-0_9--checked::after,
input[type="radio"]:checked + .g-overlay-primary-0_9--checked::after,
input[type="checkbox"]:checked + * .g-overlay-primary-0_9--checked::after,
input[type="radio"]:checked + * .g-overlay-primary-0_9--checked::after {
  background-color: rgba(114, 192, 44, 0.9); }

.g-overlay-primary-0_9--checked.g-checked::after,
.g-checked .g-overlay-primary-0_9--checked::after {
  background-color: rgba(114, 192, 44, 0.9); }

/*------------------------------------
  Fields
------------------------------------*/
[data-capitalize] {
  text-transform: uppercase; }

label.error {
  color: #d9534f;
  margin-top: .25rem;
  margin-bottom: 0; }

input:not([type="checkbox"]):not([type="radio"]).error,
textarea.error,
select.error {
  border-color: #d9534f !important; }

.js-autocomplete--ajax {
  position: relative;
  z-index: 10; }

/*------------------------------------
  Fields Group v1
------------------------------------*/
.u-input-group-v1 {
  position: relative; }

.u-input-group-v1 input:not([type="checkbox"]):not([type="radio"]),
.u-input-group-v1 textarea,
.u-input-group-v1 [class*="u-select"] {
  line-height: 1.75rem;
  padding: 40px 15px 10px; }

.u-input-group-v1 input:not([type="checkbox"]):not([type="radio"]):focus + label, .u-input-group-v1 input:not([type="checkbox"]):not([type="radio"])[value] + label, .u-input-group-v1 input:not([type="checkbox"]):not([type="radio"])[placeholder] + label, .u-input-group-v1 input:not([type="checkbox"]):not([type="radio"]).g-state-not-empty + label,
.u-input-group-v1 textarea:focus + label,
.u-input-group-v1 textarea[value] + label,
.u-input-group-v1 textarea[placeholder] + label,
.u-input-group-v1 textarea.g-state-not-empty + label,
.u-input-group-v1 [class*="u-select"]:focus + label,
.u-input-group-v1 [class*="u-select"][value] + label,
.u-input-group-v1 [class*="u-select"][placeholder] + label,
.u-input-group-v1 [class*="u-select"].g-state-not-empty + label {
  top: 20px;
  font-size: 90%; }

.u-input-group-v1 label {
  position: absolute;
  top: 50%;
  left: 15px;
  transition-property: top, font-size;
  transition-duration: .2s;
  transition-timing-function: ease;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  margin-bottom: 0; }

/*------------------------------------
  Fields Group v2
------------------------------------*/
.u-input-group-v2 {
  position: relative; }

.u-input-group-v2 input:not([type="checkbox"]):not([type="radio"]),
.u-input-group-v2 textarea,
.u-input-group-v2 [class*="u-select"] {
  line-height: 1.75rem;
  padding: 10px 15px; }

.u-input-group-v2 input:not([type="checkbox"]):not([type="radio"]):focus + label, .u-input-group-v2 input:not([type="checkbox"]):not([type="radio"])[value] + label, .u-input-group-v2 input:not([type="checkbox"]):not([type="radio"])[placeholder] + label, .u-input-group-v2 input:not([type="checkbox"]):not([type="radio"]).g-state-not-empty + label,
.u-input-group-v2 textarea:focus + label,
.u-input-group-v2 textarea[value] + label,
.u-input-group-v2 textarea[placeholder] + label,
.u-input-group-v2 textarea.g-state-not-empty + label,
.u-input-group-v2 [class*="u-select"]:focus + label,
.u-input-group-v2 [class*="u-select"][value] + label,
.u-input-group-v2 [class*="u-select"][placeholder] + label,
.u-input-group-v2 [class*="u-select"].g-state-not-empty + label {
  top: 0;
  font-size: 90%; }

.u-input-group-v2 label {
  position: absolute;
  top: 50%;
  left: 10px;
  background-color: #fff;
  padding: 0 5px;
  margin-bottom: 0;
  transition-property: top, font-size;
  transition-duration: .2s;
  transition-timing-function: ease;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%); }

.u-input-group-v2 textarea + label {
  top: 20px; }

/*------------------------------------
  Fields Group v3
------------------------------------*/
.u-input-group-v3 input:not([type="checkbox"]):not([type="radio"]),
.u-input-group-v3 textarea,
.u-input-group-v3 [class*="u-select"] {
  margin-top: -5px;
  border-color: rgba(204, 204, 204, 0.5);
  border-style: solid;
  border-width: 0 0 1px;
  transition: all .3s ease 0s; }

.u-input-group-v3 input:not([type="checkbox"]):not([type="radio"]):focus,
.u-input-group-v3 textarea:focus,
.u-input-group-v3 [class*="u-select"]:focus {
  border-color: rgba(114, 192, 44, 0.5);
  box-shadow: 0 1px 0 0 #72c02c; }

.u-input-group-v3 label {
  margin-bottom: 0; }

/*------------------------------------
  Fields Group v4
------------------------------------*/
.u-input-group-v4 {
  position: relative; }

.u-input-group-v4 input:not([type="checkbox"]):not([type="radio"]),
.u-input-group-v4 textarea,
.u-input-group-v4 [class*="u-select"] {
  background-color: transparent;
  border-color: rgba(204, 204, 204, 0.5);
  border-style: solid;
  border-width: 0 0 1px; }

.u-input-group-v4 input:not([type="checkbox"]):not([type="radio"]):focus, .u-input-group-v4 input:not([type="checkbox"]):not([type="radio"])[value], .u-input-group-v4 input:not([type="checkbox"]):not([type="radio"])[placeholder], .u-input-group-v4 input:not([type="checkbox"]):not([type="radio"]).g-state-not-empty,
.u-input-group-v4 textarea:focus,
.u-input-group-v4 textarea[value],
.u-input-group-v4 textarea[placeholder],
.u-input-group-v4 textarea.g-state-not-empty,
.u-input-group-v4 [class*="u-select"]:focus,
.u-input-group-v4 [class*="u-select"][value],
.u-input-group-v4 [class*="u-select"][placeholder],
.u-input-group-v4 [class*="u-select"].g-state-not-empty {
  background-color: transparent;
  border-color: rgba(114, 192, 44, 0.5);
  box-shadow: 0 1px 0 0 #72c02c; }

.u-input-group-v4 input:not([type="checkbox"]):not([type="radio"]):focus + label, .u-input-group-v4 input:not([type="checkbox"]):not([type="radio"])[value] + label, .u-input-group-v4 input:not([type="checkbox"]):not([type="radio"])[placeholder] + label, .u-input-group-v4 input:not([type="checkbox"]):not([type="radio"]).g-state-not-empty + label,
.u-input-group-v4 textarea:focus + label,
.u-input-group-v4 textarea[value] + label,
.u-input-group-v4 textarea[placeholder] + label,
.u-input-group-v4 textarea.g-state-not-empty + label,
.u-input-group-v4 [class*="u-select"]:focus + label,
.u-input-group-v4 [class*="u-select"][value] + label,
.u-input-group-v4 [class*="u-select"][placeholder] + label,
.u-input-group-v4 [class*="u-select"].g-state-not-empty + label {
  top: 0;
  font-size: 90%; }

.u-input-group-v4 label {
  position: absolute;
  top: 50%;
  left: 0;
  margin-bottom: 0;
  background-color: transparent;
  color: #999;
  transition-property: top, font-size;
  transition-duration: .2s;
  transition-timing-function: ease;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%); }

.u-input-group-v4 textarea + label {
  top: 20px; }

/*------------------------------------
  Checkboxes
------------------------------------*/
.u-check {
  position: relative;
  cursor: pointer; }

.u-check-icon-font {
  display: inline-block;
  font-size: 0;
  padding-left: 1px;
  padding-right: 1px; }

.u-check-icon-font i {
  font-size: 22px;
  color: #ccc; }

.u-check-icon-font i::before {
  content: attr(data-uncheck-icon); }

.u-check-icon-checkbox, .u-check-icon-radio {
  display: inline-block; }

.u-check input[type="checkbox"]:checked + .u-check-icon-font i,
.u-check input[type="checkbox"]:checked + * .u-check-icon-font i,
.u-check input[type="radio"]:checked + .u-check-icon-font i,
.u-check input[type="radio"]:checked + * .u-check-icon-font i {
  color: #72c02c; }

.u-check input[type="checkbox"]:checked + .u-check-icon-font i::before,
.u-check input[type="checkbox"]:checked + * .u-check-icon-font i::before,
.u-check input[type="radio"]:checked + .u-check-icon-font i::before,
.u-check input[type="radio"]:checked + * .u-check-icon-font i::before {
  content: attr(data-check-icon); }

.g-hide-check {
  display: block !important; }

.g-checked > * .g-hide-check,
input[type="checkbox"]:checked + .g-hide-check,
input[type="radio"]:checked + .g-hide-check,
input[type="checkbox"]:checked + * .g-hide-check,
input[type="radio"]:checked + * .g-hide-check {
  display: none !important; }

.g-show-check {
  display: none !important; }

.g-checked > * .g-show-check,
input[type="checkbox"]:checked + .g-show-check,
input[type="radio"]:checked + .g-show-check,
input[type="checkbox"]:checked + * .g-show-check,
input[type="radio"]:checked + * .g-show-check {
  display: block !important; }

/*------------------------------------
  Checkboxes v1
------------------------------------*/
.u-check-icon-checkbox-v1, .u-check-icon-radio-v1 {
  background-color: #fff;
  border: solid 1px #ccc; }

.u-check-icon-checkbox-v1 {
  border-radius: 1px; }

.u-check-icon-radio-v1 {
  border-radius: 50%; }

.u-check input[type="checkbox"]:checked + .u-check-icon-checkbox-v1,
.u-check input[type="checkbox"]:checked + * .u-check-icon-checkbox-v1,
.u-check input[type="radio"]:checked + .u-check-icon-checkbox-v1,
.u-check input[type="radio"]:checked + * .u-check-icon-checkbox-v1 {
  color: #fff;
  background-color: #72c02c;
  border-color: #72c02c; }

.u-check input[type="checkbox"]:checked + .u-check-icon-checkbox-v1::before,
.u-check input[type="checkbox"]:checked + * .u-check-icon-checkbox-v1::before,
.u-check input[type="radio"]:checked + .u-check-icon-checkbox-v1::before,
.u-check input[type="radio"]:checked + * .u-check-icon-checkbox-v1::before {
  content: attr(data-check-icon);
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 12px;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }

.u-check input[type="checkbox"]:checked + .u-check-icon-radio-v1,
.u-check input[type="checkbox"]:checked + * .u-check-icon-radio-v1,
.u-check input[type="radio"]:checked + .u-check-icon-radio-v1,
.u-check input[type="radio"]:checked + * .u-check-icon-radio-v1 {
  border-width: 4px;
  border-color: #72c02c; }

/*------------------------------------
  Checkboxes v2
------------------------------------*/
.u-check-icon-checkbox-v2, .u-check-icon-radio-v2 {
  width: 20px;
  height: 20px;
  border: solid 1px #72c02c; }

.u-check-icon-checkbox-v2 {
  border-radius: 1px; }

.u-check-icon-radio-v2 {
  border-radius: 50%; }

/*------------------------------------
  Checkboxes v3
------------------------------------*/
.u-check-icon-checkbox-v3, .u-check-icon-radio-v3 {
  width: 40px;
  height: 40px;
  border: solid 1px #72c02c;
  border-radius: 50%; }

/*------------------------------------
  Checkboxes v4
------------------------------------*/
.u-check-icon-checkbox-v4, .u-check-icon-radio-v4 {
  width: 18px;
  height: 18px;
  font-size: 12px;
  border: solid 1px #ccc; }

.u-check-icon-checkbox-v4 i::before, .u-check-icon-radio-v4 i::before {
  content: attr(data-uncheck-icon);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }

.u-check-icon-radio-v4 {
  border-radius: 50%; }

.u-check-icon-radio-v4 i {
  border-radius: 50%; }

.u-check input[type="checkbox"]:checked + .u-check-icon-checkbox-v4,
.u-check input[type="checkbox"]:checked + .u-check-icon-radio-v4,
.u-check input[type="checkbox"]:checked + * .u-check-icon-checkbox-v4,
.u-check input[type="checkbox"]:checked + * .u-check-icon-radio-v4,
.u-check input[type="radio"]:checked + .u-check-icon-checkbox-v4,
.u-check input[type="radio"]:checked + .u-check-icon-radio-v4,
.u-check input[type="radio"]:checked + * .u-check-icon-checkbox-v4,
.u-check input[type="radio"]:checked + * .u-check-icon-radio-v4 {
  color: #72c02c;
  border-color: #72c02c; }

.u-check input[type="checkbox"]:checked + .u-check-icon-checkbox-v4 i::before,
.u-check input[type="checkbox"]:checked + .u-check-icon-radio-v4 i::before,
.u-check input[type="checkbox"]:checked + * .u-check-icon-checkbox-v4 i::before,
.u-check input[type="checkbox"]:checked + * .u-check-icon-radio-v4 i::before,
.u-check input[type="radio"]:checked + .u-check-icon-checkbox-v4 i::before,
.u-check input[type="radio"]:checked + .u-check-icon-radio-v4 i::before,
.u-check input[type="radio"]:checked + * .u-check-icon-checkbox-v4 i::before,
.u-check input[type="radio"]:checked + * .u-check-icon-radio-v4 i::before {
  content: attr(data-check-icon); }

/*------------------------------------
  Checkboxes v5
------------------------------------*/
.u-check-icon-checkbox-v5, .u-check-icon-radio-v5 {
  width: 18px;
  height: 18px; }

.u-check-icon-checkbox-v5 i, .u-check-icon-radio-v5 i {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  height: 100%;
  background-color: #fff;
  border: solid 1px #ccc;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }

.u-check-icon-checkbox-v5 {
  border-radius: 1px; }

.u-check-icon-radio-v5 {
  border-radius: 50%; }

.u-check-icon-radio-v5 i {
  border-radius: 50%; }

.u-check input[type="checkbox"]:checked + .u-check-icon-checkbox-v5 i,
.u-check input[type="checkbox"]:checked + .u-check-icon-radio-v5 i,
.u-check input[type="checkbox"]:checked + * .u-check-icon-checkbox-v5 i,
.u-check input[type="checkbox"]:checked + * .u-check-icon-radio-v5 i,
.u-check input[type="radio"]:checked + .u-check-icon-checkbox-v5 i,
.u-check input[type="radio"]:checked + .u-check-icon-radio-v5 i,
.u-check input[type="radio"]:checked + * .u-check-icon-checkbox-v5 i,
.u-check input[type="radio"]:checked + * .u-check-icon-radio-v5 i {
  border-width: 4px;
  border-color: #72c02c; }

/*------------------------------------
  Checkboxes v6
------------------------------------*/
.u-check-icon-checkbox-v6, .u-check-icon-radio-v6 {
  width: 18px;
  height: 18px;
  font-size: 12px; }

.u-check-icon-checkbox-v6 i, .u-check-icon-radio-v6 i {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 100%;
  height: 100%;
  border: solid 1px #ccc;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }

.u-check-icon-checkbox-v6 i::before, .u-check-icon-radio-v6 i::before {
  content: attr(data-uncheck-icon);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }

.u-check-icon-radio-v6 {
  border-radius: 50%; }

.u-check-icon-radio-v6 i {
  border-radius: 50%; }

.u-check input[type="checkbox"]:checked + .u-check-icon-checkbox-v6 i,
.u-check input[type="checkbox"]:checked + .u-check-icon-radio-v6 i,
.u-check input[type="checkbox"]:checked + * .u-check-icon-checkbox-v6 i,
.u-check input[type="checkbox"]:checked + * .u-check-icon-radio-v6 i,
.u-check input[type="radio"]:checked + .u-check-icon-checkbox-v6 i,
.u-check input[type="radio"]:checked + .u-check-icon-radio-v6 i,
.u-check input[type="radio"]:checked + * .u-check-icon-checkbox-v6 i,
.u-check input[type="radio"]:checked + * .u-check-icon-radio-v6 i {
  color: #fff;
  background-color: #72c02c;
  border-color: #72c02c; }

.u-check input[type="checkbox"]:checked + .u-check-icon-checkbox-v6 i::before,
.u-check input[type="checkbox"]:checked + .u-check-icon-radio-v6 i::before,
.u-check input[type="checkbox"]:checked + * .u-check-icon-checkbox-v6 i::before,
.u-check input[type="checkbox"]:checked + * .u-check-icon-radio-v6 i::before,
.u-check input[type="radio"]:checked + .u-check-icon-checkbox-v6 i::before,
.u-check input[type="radio"]:checked + .u-check-icon-radio-v6 i::before,
.u-check input[type="radio"]:checked + * .u-check-icon-checkbox-v6 i::before,
.u-check input[type="radio"]:checked + * .u-check-icon-radio-v6 i::before {
  content: attr(data-check-icon); }

/*------------------------------------
  Checkboxes v7
------------------------------------*/
.u-check-icon-checkbox-v7, .u-check-icon-radio-v7 {
  cursor: pointer;
  display: block;
  width: 43px;
  height: 22px;
  font-style: normal;
  font-weight: 700;
  font-size: 9px;
  color: #ddd;
  border: solid 1px #ddd;
  border-radius: 12px; }

.u-check-icon-checkbox-v7 i::before, .u-check-icon-checkbox-v7 i::after, .u-check-icon-radio-v7 i::before, .u-check-icon-radio-v7 i::after {
  content: "";
  display: block;
  position: absolute; }

.u-check-icon-checkbox-v7 i::before, .u-check-icon-radio-v7 i::before {
  content: attr(data-uncheck-icon);
  top: 0;
  left: 0;
  width: 100%;
  height: 22px;
  line-height: 18px;
  text-transform: uppercase;
  text-align: right;
  padding: 2px 7px; }

.u-check-icon-checkbox-v7 i::after, .u-check-icon-radio-v7 i::after {
  top: 50%;
  left: 4px;
  width: 16px;
  height: 16px;
  background-color: #ddd;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  transition-property: left;
  transition-duration: .1s;
  transition-timing-function: ease-in; }

.u-check input[type="checkbox"]:checked + .u-check-icon-checkbox-v7,
.u-check input[type="checkbox"]:checked + .u-check-icon-radio-v7,
.u-check input[type="checkbox"]:checked + * .u-check-icon-checkbox-v7,
.u-check input[type="checkbox"]:checked + * .u-check-icon-radio-v7,
.u-check input[type="radio"]:checked + .u-check-icon-checkbox-v7,
.u-check input[type="radio"]:checked + .u-check-icon-radio-v7,
.u-check input[type="radio"]:checked + * .u-check-icon-checkbox-v7,
.u-check input[type="radio"]:checked + * .u-check-icon-radio-v7 {
  color: #fff;
  background-color: #72c02c;
  border-color: #72c02c; }

.u-check input[type="checkbox"]:checked + .u-check-icon-checkbox-v7 i:before,
.u-check input[type="checkbox"]:checked + .u-check-icon-radio-v7 i:before,
.u-check input[type="checkbox"]:checked + * .u-check-icon-checkbox-v7 i:before,
.u-check input[type="checkbox"]:checked + * .u-check-icon-radio-v7 i:before,
.u-check input[type="radio"]:checked + .u-check-icon-checkbox-v7 i:before,
.u-check input[type="radio"]:checked + .u-check-icon-radio-v7 i:before,
.u-check input[type="radio"]:checked + * .u-check-icon-checkbox-v7 i:before,
.u-check input[type="radio"]:checked + * .u-check-icon-radio-v7 i:before {
  content: attr(data-check-icon);
  text-align: left; }

.u-check input[type="checkbox"]:checked + .u-check-icon-checkbox-v7 i::after,
.u-check input[type="checkbox"]:checked + .u-check-icon-radio-v7 i::after,
.u-check input[type="checkbox"]:checked + * .u-check-icon-checkbox-v7 i::after,
.u-check input[type="checkbox"]:checked + * .u-check-icon-radio-v7 i::after,
.u-check input[type="radio"]:checked + .u-check-icon-checkbox-v7 i::after,
.u-check input[type="radio"]:checked + .u-check-icon-radio-v7 i::after,
.u-check input[type="radio"]:checked + * .u-check-icon-checkbox-v7 i::after,
.u-check input[type="radio"]:checked + * .u-check-icon-radio-v7 i::after {
  left: calc(100% - 19px);
  background-color: #fff; }

/*------------------------------------
  Checkboxes v7
------------------------------------*/
.u-check-icon-checkbox-v8, .u-check-icon-radio-v8 {
  cursor: pointer;
  display: block;
  width: 43px;
  height: 22px;
  font-style: normal;
  font-weight: 700;
  font-size: 9px;
  color: #ddd;
  border: solid 1px #ddd;
  border-radius: 12px; }

.u-check-icon-checkbox-v8 i::before, .u-check-icon-checkbox-v8 i::after, .u-check-icon-radio-v8 i::before, .u-check-icon-radio-v8 i::after {
  content: "";
  display: block;
  position: absolute; }

.u-check-icon-checkbox-v8 i::before, .u-check-icon-radio-v8 i::before {
  content: attr(data-uncheck-icon);
  top: 0;
  left: 0;
  width: 100%;
  height: 22px;
  line-height: 18px;
  text-transform: uppercase;
  text-align: right;
  padding: 2px 7px; }

.u-check-icon-checkbox-v8 i::after, .u-check-icon-radio-v8 i::after {
  top: 50%;
  left: 4px;
  width: 16px;
  height: 16px;
  background-color: #ddd;
  border-radius: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  transition-property: left;
  transition-duration: .1s;
  transition-timing-function: ease-in; }

.u-check input[type="checkbox"]:checked + .u-check-icon-checkbox-v8,
.u-check input[type="checkbox"]:checked + .u-check-icon-radio-v8,
.u-check input[type="checkbox"]:checked + * .u-check-icon-checkbox-v8,
.u-check input[type="checkbox"]:checked + * .u-check-icon-radio-v8,
.u-check input[type="radio"]:checked + .u-check-icon-checkbox-v8,
.u-check input[type="radio"]:checked + .u-check-icon-radio-v8,
.u-check input[type="radio"]:checked + * .u-check-icon-checkbox-v8,
.u-check input[type="radio"]:checked + * .u-check-icon-radio-v8 {
  color: #72c02c;
  border-color: #72c02c; }

.u-check input[type="checkbox"]:checked + .u-check-icon-checkbox-v8 i:before,
.u-check input[type="checkbox"]:checked + .u-check-icon-radio-v8 i:before,
.u-check input[type="checkbox"]:checked + * .u-check-icon-checkbox-v8 i:before,
.u-check input[type="checkbox"]:checked + * .u-check-icon-radio-v8 i:before,
.u-check input[type="radio"]:checked + .u-check-icon-checkbox-v8 i:before,
.u-check input[type="radio"]:checked + .u-check-icon-radio-v8 i:before,
.u-check input[type="radio"]:checked + * .u-check-icon-checkbox-v8 i:before,
.u-check input[type="radio"]:checked + * .u-check-icon-radio-v8 i:before {
  content: attr(data-check-icon);
  text-align: left; }

.u-check input[type="checkbox"]:checked + .u-check-icon-checkbox-v8 i::after,
.u-check input[type="checkbox"]:checked + .u-check-icon-radio-v8 i::after,
.u-check input[type="checkbox"]:checked + * .u-check-icon-checkbox-v8 i::after,
.u-check input[type="checkbox"]:checked + * .u-check-icon-radio-v8 i::after,
.u-check input[type="radio"]:checked + .u-check-icon-checkbox-v8 i::after,
.u-check input[type="radio"]:checked + .u-check-icon-radio-v8 i::after,
.u-check input[type="radio"]:checked + * .u-check-icon-checkbox-v8 i::after,
.u-check input[type="radio"]:checked + * .u-check-icon-radio-v8 i::after {
  left: calc(100% - 19px);
  background-color: #72c02c; }

/* P */
[class*="u-checkbox-v1"] {
  display: none; }

[class*="u-checkbox-v1"] + label {
  cursor: pointer; }

.u-checkbox-v1--checked-color-primary:checked + label {
  color: #72c02c !important; }

.u-checkbox-v1--checked-brd-primary:checked + label {
  border-color: #72c02c !important; }

/*------------------------------------
  File Attachments
------------------------------------*/
/*------------------------------------
  File Attachments v1
------------------------------------*/
.u-file-attach-v1 {
  position: relative;
  overflow: hidden;
  cursor: pointer; }

.u-file-attach-v1 input[type="file"] {
  position: absolute;
  top: -25%;
  left: -25%;
  z-index: 10;
  width: 150%;
  height: 150%;
  opacity: 0;
  cursor: pointer; }

.u-file-attach-v1 input[readonly] {
  background-color: transparent; }

/*------------------------------------
  File Attachments v2
------------------------------------*/
.u-file-attach-v2 {
  position: relative;
  overflow: hidden;
  cursor: pointer; }

.u-file-attach-v2 input[type="file"] {
  position: absolute;
  top: -25%;
  left: -25%;
  z-index: 10;
  width: 150%;
  height: 150%;
  opacity: 0;
  cursor: pointer; }

/*------------------------------------
  File Attachments v2
------------------------------------*/
.u-file-attach-v3 {
  cursor: pointer;
  position: relative;
  text-align: center;
  background-color: #f7f7f7;
  overflow: hidden;
  border: 1px dashed #ccc;
  padding: 60px;
  transition-property: background-color;
  transition-duration: .2s;
  transition-timing-function: ease-in; }

.u-file-attach-v3 input[type="file"] {
  position: absolute;
  top: -25%;
  left: -25%;
  z-index: 10;
  width: 150%;
  height: 150%;
  opacity: 0;
  cursor: pointer; }

.u-file-attach-v3:hover {
  background-color: #eee; }

/*------------------------------------
  Selects
------------------------------------*/
.input-group select {
  -webkit-appearance: none; }

/*------------------------------------
  Selects v1
------------------------------------*/
.u-select-v1 {
  position: relative;
  max-width: 100%;
  font-size: 1rem;
  color: rgba(85, 85, 85, 0.3);
  cursor: pointer;
  border-width: 1px;
  border-style: solid;
  border-color: #ccc;
  padding: .4rem 1rem; }

.u-select-v1 .chosen-single {
  position: static;
  height: auto;
  color: inherit;
  background-image: none;
  background-color: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  line-height: inherit; }

.u-select-v1 .chosen-single span {
  margin-right: 0; }

.u-select-v1 .chosen-single span img {
  position: relative;
  top: -2px;
  margin-right: 4px; }

.u-select-v1 .chosen-single div {
  width: 40px; }

.u-select-v1 .chosen-single div b {
  background: none !important; }

.u-select-v1 .chosen-single div b i {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }

.u-select-v1 .chosen-single div b i:first-child {
  display: inline-block; }

.u-select-v1 .chosen-single div b i:last-child {
  display: none; }

.u-select-v1 .chosen-single:focus {
  outline: 0 none; }

.u-select-v1 .chosen-drop {
  width: calc(100% + 2px);
  box-sizing: border-box;
  border-width: 1px;
  border-style: solid;
  border-color: inherit;
  border-radius: 0;
  border-top-width: 1px;
  margin-left: -1px; }

.u-select-v1 .chosen-results {
  padding: 0;
  margin: 0; }

.u-select-v1 .chosen-results > li {
  position: relative;
  font-size: inherit;
  color: #999;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #ccc;
  padding: 12px 16px; }

.u-select-v1 .chosen-results > li img {
  position: relative;
  top: -2px;
  margin-right: 4px; }

.u-select-v1 .chosen-results > li div {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 100%; }

.u-select-v1 .chosen-results > li div b {
  display: block;
  width: 100%;
  height: 100%; }

.u-select-v1 .chosen-results > li div b i {
  position: absolute;
  top: 50%;
  left: 50%;
  display: none;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }

.u-select-v1 .chosen-results > li:last-child {
  border-bottom-width: 0; }

.u-select-v1 .chosen-results > li.highlighted {
  color: #999;
  background-image: none;
  background-color: rgba(114, 192, 44, 0.2);
  border-bottom-color: rgba(114, 192, 44, 0.2); }

.u-select-v1 .chosen-results > li.highlighted.g-color-white--active {
  color: #fff !important; }

.u-select-v1 .chosen-results > li.highlighted.g-bg-primary--active {
  background-color: #72c02c !important; }

.u-select-v1 .chosen-results > li.result-selected {
  color: #999;
  background-color: rgba(114, 192, 44, 0.2);
  border-bottom-color: rgba(114, 192, 44, 0.2); }

.u-select-v1 .chosen-results > li.result-selected div b i {
  display: inline-block; }

.u-select-v1.chosen-container-active .chosen-single {
  background-image: none;
  box-shadow: none; }

.u-select-v1.chosen-with-drop .chosen-single {
  border: none;
  border-radius: 0; }

.u-select-v1.chosen-with-drop .chosen-single div b i:first-child {
  display: none; }

.u-select-v1.chosen-with-drop .chosen-single div b i:last-child {
  display: inline-block; }

.u-select-v1.chosen-container-multi:not(.u-select-multiple-custom) .chosen-choices {
  background-image: none;
  border: none;
  box-shadow: none;
  padding: 0; }

.u-select-v1.chosen-container-multi:not(.u-select-multiple-custom) .chosen-choices .search-choice {
  font-size: 12px;
  color: #999;
  background-image: none;
  background-color: #fff;
  border-color: #ccc;
  border-radius: 0;
  padding: 5px 20px 5px 5px; }

.u-select-v1.chosen-container-multi:not(.u-select-multiple-custom) .chosen-choices .search-choice-close {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%); }

.u-select-v1.chosen-container-multi:not(.u-select-multiple-custom) .chosen-choices .search-field {
  height: 22px; }

.u-select-v1.chosen-container-multi:not(.u-select-multiple-custom) .chosen-choices .search-field input[type="text"] {
  height: 22px;
  margin: 0; }

.u-select-v1.u-select-multiple-custom .chosen-choices {
  display: none; }

.u-select-v1.u-select-multiple-custom .chosen-drop {
  width: 100%;
  position: static;
  top: auto;
  left: auto;
  z-index: 3;
  border: none;
  box-shadow: none;
  margin-left: 0; }

.u-select-v1.u-dropdown-sm {
  padding: .1rem .5rem;
  font-size: .875rem; }

.u-select-v1.u-dropdown-sm .chosen-results > li {
  padding: 6px 8px; }

.u-select-v1.u-dropdown-lg {
  padding: .55rem 1.5rem;
  font-size: 1.25rem; }

.u-select-v1.u-dropdown-lg .chosen-results > li {
  padding: 14px 18px; }

/*------------------------------------
  Selects v2
------------------------------------*/
.u-select-v2 {
  position: relative;
  max-width: 100%;
  font-size: 1rem;
  color: rgba(85, 85, 85, 0.3);
  cursor: pointer;
  border-width: 1px;
  border-style: solid;
  border-color: #ccc;
  padding: .4rem 1rem; }

.u-select-v2 .chosen-single {
  position: static;
  height: auto;
  color: inherit;
  background-image: none;
  background-color: transparent;
  border: none;
  border-radius: 0;
  box-shadow: none;
  padding: 0;
  line-height: inherit; }

.u-select-v2 .chosen-single span {
  margin-right: 0; }

.u-select-v2 .chosen-single span img {
  position: relative;
  top: -2px;
  margin-right: 4px; }

.u-select-v2 .chosen-single div {
  width: 50px; }

.u-select-v2 .chosen-single div b {
  background: none !important; }

.u-select-v2 .chosen-single div b i {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }

.u-select-v2 .chosen-single div b i:first-child {
  display: inline-block; }

.u-select-v2 .chosen-single div b i:last-child {
  display: none; }

.u-select-v2 .chosen-single:focus {
  outline: 0 none; }

.u-select-v2 .chosen-drop,
.u-select-v2 .chosen-results {
  border-radius: 3px; }

.u-select-v2 .chosen-drop {
  width: calc(100% + 2px);
  box-sizing: border-box;
  border: none;
  box-shadow: 0 6px 15px -6px rgba(0, 0, 0, 0.1);
  margin-left: -1px;
  margin-top: 7px; }

.u-select-v2 .chosen-results {
  padding: 0;
  margin: 0; }

.u-select-v2 .chosen-results > li {
  position: relative;
  font-size: inherit;
  color: #999;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #ccc;
  padding: 12px 16px; }

.u-select-v2 .chosen-results > li img {
  position: relative;
  top: -2px;
  margin-right: 4px; }

.u-select-v2 .chosen-results > li div {
  position: absolute;
  top: 0;
  right: 0;
  width: 40px;
  height: 100%; }

.u-select-v2 .chosen-results > li div b {
  display: block;
  width: 100%;
  height: 100%; }

.u-select-v2 .chosen-results > li div b i {
  position: absolute;
  top: 50%;
  left: 50%;
  display: none;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }

.u-select-v2 .chosen-results > li:last-child {
  border-bottom-width: 0; }

.u-select-v2 .chosen-results > li.highlighted {
  color: #999;
  background-image: none;
  background-color: rgba(114, 192, 44, 0.2);
  border-bottom-color: rgba(114, 192, 44, 0.2); }

.u-select-v2 .chosen-results > li.highlighted.g-color-white--active {
  color: #fff !important; }

.u-select-v2 .chosen-results > li.highlighted.g-bg-primary--active {
  background-color: #72c02c !important; }

.u-select-v2 .chosen-results > li.result-selected {
  color: #999;
  background-color: rgba(114, 192, 44, 0.2);
  border-bottom-color: rgba(114, 192, 44, 0.2); }

.u-select-v2 .chosen-results > li.result-selected div b i {
  display: inline-block; }

.u-select-v2.chosen-container-active .chosen-single {
  background-image: none;
  box-shadow: none; }

.u-select-v2.chosen-with-drop .chosen-single {
  border: none;
  border-radius: 0; }

.u-select-v2.chosen-with-drop .chosen-single div b i:first-child {
  display: none; }

.u-select-v2.chosen-with-drop .chosen-single div b i:last-child {
  display: inline-block; }

.u-select-v2.chosen-container-multi:not(.u-select-multiple-custom) .chosen-choices {
  background-image: none;
  border: none;
  box-shadow: none;
  padding: 0; }

.u-select-v2.chosen-container-multi:not(.u-select-multiple-custom) .chosen-choices .search-choice {
  font-size: 12px;
  color: #999;
  background-image: none;
  background-color: #fff;
  border-color: #ccc;
  border-radius: 0;
  padding: 5px 20px 5px 5px; }

.u-select-v2.chosen-container-multi:not(.u-select-multiple-custom) .chosen-choices .search-choice-close {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%); }

.u-select-v2.chosen-container-multi:not(.u-select-multiple-custom) .chosen-choices .search-field {
  height: 22px; }

.u-select-v2.chosen-container-multi:not(.u-select-multiple-custom) .chosen-choices .search-field input[type="text"] {
  height: 22px;
  margin: 0; }

.u-select-v2.u-select-multiple-custom .chosen-choices {
  display: none; }

.u-select-v2.u-select-multiple-custom .chosen-drop {
  width: 100%;
  position: static;
  top: auto;
  left: auto;
  z-index: 3;
  border: none;
  box-shadow: none;
  margin-left: 0; }

.u-select-v2.u-dropdown-sm {
  padding: .1rem .5rem;
  font-size: .875rem; }

.u-select-v2.u-dropdown-sm .chosen-results > li {
  padding: 6px 8px; }

.u-select-v2.u-dropdown-lg {
  padding: .55rem 1.5rem;
  font-size: 1.25rem; }

.u-select-v2.u-dropdown-lg .chosen-results > li {
  padding: 14px 18px; }

/*------------------------------------
  Sliders
------------------------------------*/
/*------------------------------------
  Sliders v1
------------------------------------*/
.u-slider-v1.ui-slider, .u-slider-v1-2.ui-slider, .u-slider-v1-3.ui-slider {
  position: relative;
  background: #eee;
  border: none;
  border-radius: 0;
  margin-top: 12px;
  margin-left: 6px;
  margin-right: 6px; }

.u-slider-v1.ui-slider .ui-slider-range, .u-slider-v1-2.ui-slider .ui-slider-range, .u-slider-v1-3.ui-slider .ui-slider-range {
  height: 100%; }

.u-slider-v1.ui-slider .ui-slider-handle, .u-slider-v1-2.ui-slider .ui-slider-handle, .u-slider-v1-3.ui-slider .ui-slider-handle {
  position: absolute;
  top: 50%;
  border-style: solid;
  outline: none;
  background: #fff;
  border-radius: 0;
  cursor: pointer;
  transition-property: border-color;
  transition-duration: .3s;
  transition-timing-function: ease; }

.u-slider-v1.ui-slider.ui-slider-content, .u-slider-v1-2.ui-slider.ui-slider-content, .u-slider-v1-3.ui-slider.ui-slider-content {
  border-color: #eee; }

.u-slider-v1.ui-slider {
  height: 2px; }

.u-slider-v1.ui-slider .ui-slider-range {
  background: #72c02c; }

.u-slider-v1.ui-slider .ui-slider-handle {
  width: 20px;
  height: 20px;
  margin-top: -10px;
  margin-left: -10px;
  border-width: 2px;
  border-color: #72c02c; }

.u-slider-v1-2.ui-slider, .u-slider-v1-3.ui-slider {
  height: 4px; }

.u-slider-v1-2.ui-slider .ui-slider-range, .u-slider-v1-3.ui-slider .ui-slider-range {
  background: #ddd; }

.u-slider-v1-2.ui-slider .ui-slider-handle, .u-slider-v1-3.ui-slider .ui-slider-handle {
  width: 15px;
  height: 15px;
  margin-top: -8px;
  margin-left: -8px;
  border-width: 2px;
  border-color: #72c02c; }

.u-slider-v1-3.ui-slider .ui-slider-handle {
  border-radius: 50%; }

/*------------------------------------
  Sliders v2
------------------------------------*/
.u-slider-v2.ui-slider, .u-slider-v2-2.ui-slider, .u-slider-v2-3.ui-slider {
  position: relative;
  background: rgba(114, 192, 44, 0.5);
  border: none;
  border-radius: 0;
  margin-top: 12px;
  margin-left: 6px;
  margin-right: 6px; }

.u-slider-v2.ui-slider .ui-slider-range, .u-slider-v2-2.ui-slider .ui-slider-range, .u-slider-v2-3.ui-slider .ui-slider-range {
  height: 100%; }

.u-slider-v2.ui-slider .ui-slider-handle, .u-slider-v2-2.ui-slider .ui-slider-handle, .u-slider-v2-3.ui-slider .ui-slider-handle {
  position: absolute;
  top: 50%;
  border-style: solid;
  outline: none;
  background: #72c02c;
  border-radius: 0;
  cursor: pointer;
  transition-property: border-color, -webkit-transform;
  transition-property: border-color, transform;
  transition-property: border-color, transform, -webkit-transform;
  transition-duration: .3s;
  transition-timing-function: ease; }

.u-slider-v2.ui-slider .ui-slider-handle.ui-state-active, .u-slider-v2-2.ui-slider .ui-slider-handle.ui-state-active, .u-slider-v2-3.ui-slider .ui-slider-handle.ui-state-active {
  -webkit-transform: scale(1.5);
  -ms-transform: scale(1.5);
  transform: scale(1.5); }

.u-slider-v2.ui-slider {
  height: 2px; }

.u-slider-v2.ui-slider .ui-slider-range {
  background: #72c02c; }

.u-slider-v2.ui-slider .ui-slider-handle {
  width: 20px;
  height: 20px;
  margin-top: -10px;
  margin-left: -10px;
  border-width: 2px;
  border-color: #72c02c; }

.u-slider-v2-2.ui-slider, .u-slider-v2-3.ui-slider {
  height: 4px; }

.u-slider-v2-2.ui-slider .ui-slider-range, .u-slider-v2-3.ui-slider .ui-slider-range {
  background: #72c02c; }

.u-slider-v2-2.ui-slider .ui-slider-handle, .u-slider-v2-3.ui-slider .ui-slider-handle {
  width: 15px;
  height: 15px;
  margin-top: -8px;
  margin-left: -8px;
  border-width: 2px;
  border-color: #72c02c; }

.u-slider-v2-3.ui-slider .ui-slider-handle {
  border-radius: 50%; }

/*------------------------------------
  Datepickers
------------------------------------*/
.u-has-dropdowns-in-popup .ui-autocomplete,
.u-has-dropdowns-in-popup .ui-datepicker {
  z-index: 100000 !important; }

/*------------------------------------
  Datepickers v1
------------------------------------*/
.u-datepicker-v1 {
  border-width: 1px;
  border-style: solid;
  border-radius: 0;
  z-index: 2 !important; }

.u-datepicker-v1.ui-datepicker-inline {
  width: 100%; }

.u-datepicker-v1.ui-datepicker {
  width: initial;
  padding: initial; }

.u-datepicker-v1 .ui-datepicker {
  width: 100%;
  padding: 0;
  border: none; }

.u-datepicker-v1 .ui-datepicker-header {
  background-color: transparent;
  border: none;
  border-radius: 0;
  border-bottom-width: 1px;
  border-bottom-style: solid;
  border-bottom-color: #ccc;
  padding: 0; }

.u-datepicker-v1 .ui-datepicker-title {
  height: 45px;
  line-height: 45px;
  font-size: 16px;
  font-weight: 400;
  color: #555;
  margin-left: 45px;
  margin-right: 45px; }

.u-datepicker-v1 .ui-datepicker-prev, .u-datepicker-v1 .ui-datepicker-next {
  width: 45px;
  height: 45px;
  line-height: 45px;
  top: 0;
  text-align: center;
  border-radius: 0;
  cursor: pointer; }

.u-datepicker-v1 .ui-datepicker-prev > span, .u-datepicker-v1 .ui-datepicker-next > span {
  position: static;
  top: 0;
  left: 0;
  display: inline-block;
  width: auto;
  height: auto;
  font-size: 18px;
  color: #555;
  background-image: none;
  text-indent: 0;
  margin-top: 0;
  margin-left: 0; }

.u-datepicker-v1 .ui-datepicker-prev-hover, .u-datepicker-v1 .ui-datepicker-next-hover {
  top: 0;
  background-color: transparent; }

.u-datepicker-v1 .ui-datepicker-prev.ui-state-hover, .u-datepicker-v1 .ui-datepicker-next.ui-state-hover {
  border: none; }

.u-datepicker-v1 .ui-datepicker-prev {
  left: 0;
  border-right-width: 1px;
  border-right-style: solid;
  border-right-color: #ccc; }

.u-datepicker-v1 .ui-datepicker-prev-hover {
  left: 0; }

.u-datepicker-v1 .ui-datepicker-prev.ui-state-hover {
  border-right-width: 1px;
  border-right-style: solid;
  border-right-color: #ccc; }

.u-datepicker-v1 .ui-datepicker-next {
  right: 0;
  border-left-width: 1px;
  border-left-style: solid;
  border-left-color: #ccc; }

.u-datepicker-v1 .ui-datepicker-next-hover {
  right: 0; }

.u-datepicker-v1 .ui-datepicker-next.ui-state-hover {
  border-left-width: 1px;
  border-left-style: solid;
  border-left-color: #ccc; }

.u-datepicker-v1 .ui-datepicker-calendar {
  margin-bottom: 0; }

.u-datepicker-v1 .ui-datepicker-calendar th,
.u-datepicker-v1 .ui-datepicker-calendar td {
  text-align: center;
  padding: 3px; }

.u-datepicker-v1 .ui-datepicker-calendar th span,
.u-datepicker-v1 .ui-datepicker-calendar th a,
.u-datepicker-v1 .ui-datepicker-calendar td span,
.u-datepicker-v1 .ui-datepicker-calendar td a {
  display: inline-block;
  width: 35px;
  height: 35px;
  line-height: 35px;
  text-align: center;
  color: #555;
  background-color: transparent;
  border-width: 1px;
  border-style: solid;
  border-color: transparent;
  padding: 0; }

.u-datepicker-v1 .ui-datepicker-calendar th a,
.u-datepicker-v1 .ui-datepicker-calendar td a {
  border-radius: 50%;
  transition: all .2s; }

.u-datepicker-v1 .ui-datepicker-calendar th a:hover, .u-datepicker-v1 .ui-datepicker-calendar th a.ui-state-active,
.u-datepicker-v1 .ui-datepicker-calendar td a:hover,
.u-datepicker-v1 .ui-datepicker-calendar td a.ui-state-active {
  color: #fff;
  background-color: #72c02c;
  border-color: #72c02c;
  transition: all .2s; }

.u-datepicker-v1 .ui-datepicker-calendar th span,
.u-datepicker-v1 .ui-datepicker-calendar th a {
  font-size: 12px;
  font-weight: 400;
  color: #bbb;
  text-transform: uppercase; }

.u-datepicker-v1 .ui-datepicker-calendar td span,
.u-datepicker-v1 .ui-datepicker-calendar td a {
  font-size: 14px; }

@media (min-width: 768px) {
  .u-datepicker-v1 .ui-datepicker-title {
    height: 50px;
    line-height: 50px;
    margin-left: 50px;
    margin-right: 50px; }

  .u-datepicker-v1 .ui-datepicker-prev, .u-datepicker-v1 .ui-datepicker-next {
    width: 50px;
    height: 50px;
    line-height: 50px; }

  .u-datepicker-v1 .ui-datepicker-calendar {
    border-collapse: separate;
    border-spacing: 4px; }

  .u-datepicker-v1 .ui-datepicker-calendar th,
  .u-datepicker-v1 .ui-datepicker-calendar td {
    padding: 5px; }

  .u-datepicker-v1 .ui-datepicker-calendar th span,
  .u-datepicker-v1 .ui-datepicker-calendar th a,
  .u-datepicker-v1 .ui-datepicker-calendar td span,
  .u-datepicker-v1 .ui-datepicker-calendar td a {
    font-size: 14px; } }
/*------------------------------------
  Quantity
------------------------------------*/
.u-quantity-v1 input:not([type="checkbox"]):not([type="radio"]) {
  background-color: #fff; }

.js-plus,
.js-minus {
  cursor: pointer; }

/*------------------------------------
  Carousel indicators
------------------------------------*/
[class*="u-carousel-indicators"] {
  display: block;
  position: absolute;
  padding-left: 0;
  margin-bottom: 0; }

[class*="u-carousel-indicators"] li {
  list-style: none; }

[class*="u-carousel-indicators"] span {
  display: block;
  cursor: pointer; }

/*------------------------------------
  Carousel indicators v1
------------------------------------*/
.u-carousel-indicators-v1,
.u-carousel-indicators-v1--white {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important; }

.u-carousel-indicators-v1 li,
.u-carousel-indicators-v1--white li {
  margin: 0 5px; }

.u-carousel-indicators-v1 li.slick-active span,
.u-carousel-indicators-v1--white li.slick-active span {
  background-color: #72c02c; }

.u-carousel-indicators-v1 span,
.u-carousel-indicators-v1--white span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #777;
  opacity: 1; }

.u-carousel-indicators-v1 span {
  background-color: #777; }

.u-carousel-indicators-v1--white li.slick-active span {
  background-color: #fff; }

/*------------------------------------
  Carousel indicators v2
------------------------------------*/
.u-carousel-indicators-v2 li {
  margin: 0 5px; }

.u-carousel-indicators-v2 li.slick-active span {
  opacity: 1; }

.u-carousel-indicators-v2 span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #fff;
  opacity: .3; }

/*------------------------------------
  Carousel indicators v3
------------------------------------*/
.u-carousel-indicators-v3 li {
  margin: 0 3px; }

.u-carousel-indicators-v3 li.slick-active span {
  width: 12px;
  height: 12px;
  background-color: #fff; }

.u-carousel-indicators-v3 span {
  width: 10px;
  height: 10px;
  border: 1px solid #fff;
  border-radius: 50%;
  background-color: transparent; }

/*------------------------------------
  Carousel indicators v4
------------------------------------*/
.u-carousel-indicators-v4 li {
  margin: 0 7px; }

.u-carousel-indicators-v4 li.slick-active span {
  background-color: #72c02c; }

.u-carousel-indicators-v4 span {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background-color: #ccc; }

/*------------------------------------
  Carousel indicators v5
------------------------------------*/
.u-carousel-indicators-v5 {
  bottom: auto;
  left: auto;
  right: 15px;
  top: 15px;
  width: auto; }

.u-carousel-indicators-v5 li {
  margin: 0 3px; }

.u-carousel-indicators-v5 li.slick-active span {
  width: 9px;
  height: 9px;
  background-color: #fff; }

.u-carousel-indicators-v5 span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  border: 1px solid #fff;
  opacity: 1;
  position: relative; }

/*------------------------------------
  Carousel indicators v6
------------------------------------*/
.u-carousel-indicators-v6 {
  display: block;
  left: 50%;
  right: auto;
  bottom: 0;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%); }

.u-carousel-indicators-v6::before {
  content: "";
  position: absolute;
  top: 7px;
  left: 50%;
  right: 50%;
  display: none;
  width: calc(100% - 130px);
  height: 0;
  border-bottom: 1px solid #111;
  -webkit-transform: translate(-50%, 0px);
  -ms-transform: translate(-50%, 0px);
  transform: translate(-50%, 0px); }

.u-carousel-indicators-v6 span {
  position: relative;
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 10px;
  border: 1px solid #111;
  background-color: #fff;
  opacity: 1;
  margin: 4px auto 0; }

.u-carousel-indicators-v6 li {
  display: table-cell;
  width: 1%;
  font-weight: 600;
  text-transform: uppercase;
  font-size: 11px;
  color: #111;
  vertical-align: top;
  cursor: pointer;
  float: none; }

.u-carousel-indicators-v6 li.slick-active {
  color: #72c02c; }

.u-carousel-indicators-v6 li.slick-active span {
  display: block;
  width: 17px;
  height: 17px;
  border: 3px solid #72c02c;
  border-radius: 10px;
  margin: 0 auto; }

.u-carousel-indicators-v6 .u-dot-title {
  display: none; }

@media (min-width: 768px) {
  .u-carousel-indicators-v6 {
    top: 0;
    bottom: auto; }

  .u-carousel-indicators-v6::before {
    display: block; }

  .u-carousel-indicators-v6 span {
    margin: 3px auto 19px; }

  .u-carousel-indicators-v6 li.slick-active span {
    margin: 0 auto 15px; }

  .u-carousel-indicators-v6 .u-dot-title {
    display: block; } }
/*------------------------------------
  Carousel indicators v7
------------------------------------*/
.u-carousel-indicators-v7 {
  position: absolute;
  left: 0;
  top: 50%;
  bottom: auto;
  display: block;
  width: 7px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%); }

.u-carousel-indicators-v7 span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #fff;
  opacity: .3; }

.u-carousel-indicators-v7 li {
  display: block;
  margin: 15px 0;
  float: none; }

.u-carousel-indicators-v7 li.slick-active span {
  opacity: 1; }

/*------------------------------------
  Carousel indicators v8
------------------------------------*/
.u-carousel-indicators-v8 {
  position: absolute;
  left: 0;
  top: 50%;
  bottom: auto;
  display: block;
  width: 7px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%); }

.u-carousel-indicators-v8 span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #fff; }

.u-carousel-indicators-v8 li {
  display: block;
  margin: 15px 0; }

.u-carousel-indicators-v8 li.slick-active span {
  background-color: #72c02c; }

/*------------------------------------
  Carousel indicators v9
------------------------------------*/
.u-carousel-indicators-v9 {
  padding-left: 0; }

.u-carousel-indicators-v9 li {
  display: block;
  color: #000;
  text-transform: uppercase;
  background-color: #bbb;
  border-top-width: 0;
  border-top-style: solid;
  border-top-color: #fff;
  vertical-align: top;
  cursor: pointer;
  padding: 10px; }

.u-carousel-indicators-v9 li + li {
  border-top-width: 1px; }

.u-carousel-indicators-v9 li.slick-active {
  color: #fff;
  background-color: #72c02c; }

@media (min-width: 576px) {
  .u-carousel-indicators-v9 li {
    display: table-cell;
    width: 1%;
    border-width: 1px;
    border-style: solid;
    border-color: #fff;
    border-left-width: 0;
    border-right-width: 0;
    float: none;
    vertical-align: top;
    cursor: pointer;
    padding: 10px; }

  .u-carousel-indicators-v9 li + li {
    border-left-width: 1px; } }
/*------------------------------------
  Carousel indicators v10
------------------------------------*/
.u-carousel-indicators-v10 {
  padding-left: 0; }

.u-carousel-indicators-v10 li {
  display: block;
  color: #000;
  text-transform: uppercase;
  background-color: #bbb;
  border-top-width: 0;
  border-top-style: solid;
  border-top-color: #fff;
  vertical-align: top;
  cursor: pointer;
  padding: 10px; }

.u-carousel-indicators-v10 li + li {
  border-top-width: 1px; }

.u-carousel-indicators-v10 li.slick-active {
  color: #fff;
  background-color: #72c02c; }

@media (min-width: 576px) {
  .u-carousel-indicators-v10 {
    position: absolute;
    top: 0;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column; }

  .u-carousel-indicators-v10 li {
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center; } }
/*------------------------------------
  Carousel indicators v11
------------------------------------*/
.u-carousel-indicators-v11 span {
  display: block;
  width: 12px;
  height: 12px;
  border: 1px solid #bbb;
  border-radius: 50%;
  background-color: transparent; }

.u-carousel-indicators-v11 li {
  margin: 0 3px; }

.u-carousel-indicators-v11 li.slick-active span {
  background-color: #bbb; }

/*------------------------------------
  Carousel indicators v12
------------------------------------*/
.u-carousel-indicators-v12,
.u-carousel-indicators-v12--white {
  white-space: nowrap; }

.u-carousel-indicators-v12 li,
.u-carousel-indicators-v12--white li {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: 0 5px; }

.u-carousel-indicators-v12 li span,
.u-carousel-indicators-v12--white li span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  overflow: hidden;
  background-color: transparent;
  border-radius: 50%;
  text-indent: -9999px;
  transition: background .3s ease; }

.u-carousel-indicators-v12 li span::before, .u-carousel-indicators-v12 li span::after,
.u-carousel-indicators-v12--white li span::before,
.u-carousel-indicators-v12--white li span::after {
  content: "";
  display: none; }

.u-carousel-indicators-v12 li span::before,
.u-carousel-indicators-v12--white li span::before {
  display: block;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  transition: height .3s ease; }

.u-carousel-indicators-v12 li span:hover, .u-carousel-indicators-v12 li span:focus,
.u-carousel-indicators-v12--white li span:hover,
.u-carousel-indicators-v12--white li span:focus {
  background-color: rgba(0, 0, 0, 0.2); }

.u-carousel-indicators-v12 li.slick-active span::before,
.u-carousel-indicators-v12--white li.slick-active span::before {
  height: 100%; }

.u-carousel-indicators-v12--white li span {
  box-shadow: inset 0 0 0 2px #fff; }

.u-carousel-indicators-v12--white li span::before {
  background-color: #fff;
  box-shadow: 0 0 1px #fff; }

/*------------------------------------
  Carousel indicators v13
------------------------------------*/
.u-carousel-indicators-v13,
.u-carousel-indicators-v13--white {
  white-space: nowrap; }

.u-carousel-indicators-v13 li,
.u-carousel-indicators-v13--white li {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: 0 5px; }

.u-carousel-indicators-v13 li span,
.u-carousel-indicators-v13--white li span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  text-indent: -9999px;
  transition: background-color .3s ease, -webkit-transform .3s ease;
  transition: transform .3s ease, background-color .3s ease;
  transition: transform .3s ease, background-color .3s ease, -webkit-transform .3s ease; }

.u-carousel-indicators-v13 li span::before, .u-carousel-indicators-v13 li span::after,
.u-carousel-indicators-v13--white li span::before,
.u-carousel-indicators-v13--white li span::after {
  content: "";
  display: none; }

.u-carousel-indicators-v13 li.slick-active span,
.u-carousel-indicators-v13--white li.slick-active span {
  -webkit-transform: scale(1.5);
  -ms-transform: scale(1.5);
  transform: scale(1.5); }

.u-carousel-indicators-v13--white li span {
  background: rgba(255, 255, 255, 0.5); }

.u-carousel-indicators-v13--white li span:hover, .u-carousel-indicators-v13--white li span:focus {
  background-color: #fff; }

.u-carousel-indicators-v13--white li.slick-active span {
  background-color: #fff; }

/*------------------------------------
  Carousel indicators v14
------------------------------------*/
.u-carousel-indicators-v14,
.u-carousel-indicators-v14--white {
  white-space: nowrap; }

.u-carousel-indicators-v14 li,
.u-carousel-indicators-v14--white li {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: 0 5px; }

.u-carousel-indicators-v14 li span,
.u-carousel-indicators-v14--white li span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  text-indent: -9999px;
  transition: box-shadow .3s ease, background-color .3s ease; }

.u-carousel-indicators-v14 li span::before, .u-carousel-indicators-v14 li span::after,
.u-carousel-indicators-v14--white li span::before,
.u-carousel-indicators-v14--white li span::after {
  content: "";
  display: none; }

.u-carousel-indicators-v14--white li span {
  background: rgba(255, 255, 255, 0.5); }

.u-carousel-indicators-v14--white li span:hover, .u-carousel-indicators-v14--white li span:focus {
  background-color: #fff; }

.u-carousel-indicators-v14--white li.slick-active span {
  background-color: transparent;
  box-shadow: 0 0 0 2px #fff; }

/*------------------------------------
  Carousel indicators v15
------------------------------------*/
.u-carousel-indicators-v15,
.u-carousel-indicators-v15--white {
  white-space: nowrap; }

.u-carousel-indicators-v15 li,
.u-carousel-indicators-v15--white li {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: 0 5px; }

.u-carousel-indicators-v15 li span,
.u-carousel-indicators-v15--white li span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  border-radius: 50%;
  text-indent: -9999px;
  transition: box-shadow .3s ease; }

.u-carousel-indicators-v15 li span::before, .u-carousel-indicators-v15 li span::after,
.u-carousel-indicators-v15--white li span::before,
.u-carousel-indicators-v15--white li span::after {
  content: "";
  display: none; }

.u-carousel-indicators-v15--white li span {
  box-shadow: inset 0 0 0 2px #fff; }

.u-carousel-indicators-v15--white li span:hover, .u-carousel-indicators-v15--white li span:focus {
  box-shadow: inset 0 0 0 2px rgba(255, 255, 255, 0.6); }

.u-carousel-indicators-v15--white li.slick-active span {
  box-shadow: inset 0 0 0 8px #fff; }

/*------------------------------------
  Carousel indicators v16
------------------------------------*/
.u-carousel-indicators-v16,
.u-carousel-indicators-v16--white {
  white-space: nowrap; }

.u-carousel-indicators-v16 li,
.u-carousel-indicators-v16--white li {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: 0 5px; }

.u-carousel-indicators-v16 li span,
.u-carousel-indicators-v16--white li span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  border-radius: 50%;
  overflow: hidden;
  text-indent: -9999px;
  transition: opacity .3s ease; }

.u-carousel-indicators-v16 li span::before, .u-carousel-indicators-v16 li span::after,
.u-carousel-indicators-v16--white li span::before,
.u-carousel-indicators-v16--white li span::after {
  content: "";
  display: none; }

.u-carousel-indicators-v16 li span::before,
.u-carousel-indicators-v16--white li span::before {
  display: block;
  position: absolute;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease; }

.u-carousel-indicators-v16 li span:hover, .u-carousel-indicators-v16 li span:focus,
.u-carousel-indicators-v16--white li span:hover,
.u-carousel-indicators-v16--white li span:focus {
  opacity: .7; }

.u-carousel-indicators-v16 li.slick-active span::before,
.u-carousel-indicators-v16--white li.slick-active span::before {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1); }

.u-carousel-indicators-v16--white li span {
  box-shadow: inset 0 0 0 2px #fff; }

.u-carousel-indicators-v16--white li span::before {
  background-color: #fff; }

.u-carousel-indicators-v16--sm li {
  width: 8px;
  height: 8px; }

.u-carousel-indicators-v16--sm li span {
  box-shadow: inset 0 0 0 1px #fff; }

/*------------------------------------
  Carousel indicators v17
------------------------------------*/
.u-carousel-indicators-v17,
.u-carousel-indicators-v17--white {
  white-space: nowrap; }

.u-carousel-indicators-v17 li,
.u-carousel-indicators-v17--white li {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: 0 5px; }

.u-carousel-indicators-v17 li span,
.u-carousel-indicators-v17--white li span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  text-indent: -9999px;
  transition: box-shadow 0.3s ease; }

.u-carousel-indicators-v17 li span::before, .u-carousel-indicators-v17 li span::after,
.u-carousel-indicators-v17--white li span::before,
.u-carousel-indicators-v17--white li span::after {
  content: "";
  display: none; }

.u-carousel-indicators-v17--white li span {
  box-shadow: inset 0 0 0 8px rgba(255, 255, 255, 0.5); }

.u-carousel-indicators-v17--white li span:hover, .u-carousel-indicators-v17--white li span:focus {
  box-shadow: inset 0 0 0 8px #fff; }

.u-carousel-indicators-v17--white li.slick-active span {
  box-shadow: inset 0 0 0 2px #fff; }

/*------------------------------------
  Carousel indicators v18
------------------------------------*/
.u-carousel-indicators-v18,
.u-carousel-indicators-v18--white {
  white-space: nowrap; }

.u-carousel-indicators-v18 li,
.u-carousel-indicators-v18--white li {
  position: relative;
  display: inline-block;
  width: 18px;
  height: 18px;
  margin: 0 5px; }

.u-carousel-indicators-v18 li span,
.u-carousel-indicators-v18--white li span {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  text-indent: -9999px;
  transition: opacity .3s ease; }

.u-carousel-indicators-v18 li span::before, .u-carousel-indicators-v18 li span::after,
.u-carousel-indicators-v18--white li span::before,
.u-carousel-indicators-v18--white li span::after {
  content: "";
  display: none; }

.u-carousel-indicators-v18 li span:hover, .u-carousel-indicators-v18 li span:focus,
.u-carousel-indicators-v18--white li span:hover,
.u-carousel-indicators-v18--white li span:focus {
  opacity: .5; }

.u-carousel-indicators-v18 li svg,
.u-carousel-indicators-v18 li i,
.u-carousel-indicators-v18--white li svg,
.u-carousel-indicators-v18--white li i {
  z-index: 10;
  width: 100%;
  height: 100%; }

.u-carousel-indicators-v18 li svg circle,
.u-carousel-indicators-v18 li svg path,
.u-carousel-indicators-v18 li svg polygon,
.u-carousel-indicators-v18 li i circle,
.u-carousel-indicators-v18 li i path,
.u-carousel-indicators-v18 li i polygon,
.u-carousel-indicators-v18--white li svg circle,
.u-carousel-indicators-v18--white li svg path,
.u-carousel-indicators-v18--white li svg polygon,
.u-carousel-indicators-v18--white li i circle,
.u-carousel-indicators-v18--white li i path,
.u-carousel-indicators-v18--white li i polygon {
  opacity: 0;
  fill: none;
  stroke-width: 3;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-dasharray: 39 39;
  stroke-dashoffset: 39;
  transition: stroke-dashoffset .3s, opacity .3s; }

.u-carousel-indicators-v18 li.slick-active span,
.u-carousel-indicators-v18--white li.slick-active span {
  opacity: .5; }

.u-carousel-indicators-v18 li.slick-active svg circle,
.u-carousel-indicators-v18 li.slick-active svg path,
.u-carousel-indicators-v18 li.slick-active svg polygon,
.u-carousel-indicators-v18 li.slick-active i circle,
.u-carousel-indicators-v18 li.slick-active i path,
.u-carousel-indicators-v18 li.slick-active i polygon,
.u-carousel-indicators-v18--white li.slick-active svg circle,
.u-carousel-indicators-v18--white li.slick-active svg path,
.u-carousel-indicators-v18--white li.slick-active svg polygon,
.u-carousel-indicators-v18--white li.slick-active i circle,
.u-carousel-indicators-v18--white li.slick-active i path,
.u-carousel-indicators-v18--white li.slick-active i polygon {
  opacity: 1;
  stroke-dashoffset: 0;
  transition: stroke-dashoffset .3s, opacity .15s; }

.u-carousel-indicators-v18--white li span {
  background-color: #72c02c; }

.u-carousel-indicators-v18--white li svg circle,
.u-carousel-indicators-v18--white li svg path,
.u-carousel-indicators-v18--white li svg polygon,
.u-carousel-indicators-v18--white li i circle,
.u-carousel-indicators-v18--white li i path,
.u-carousel-indicators-v18--white li i polygon {
  stroke: #fff; }

/*------------------------------------
  Carousel indicators v19
------------------------------------*/
.u-carousel-indicators-v19,
.u-carousel-indicators-v19--white {
  white-space: nowrap; }

.u-carousel-indicators-v19 li,
.u-carousel-indicators-v19--white li {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  margin: 0 5px;
  transition: box-shadow .3s ease; }

.u-carousel-indicators-v19 li span,
.u-carousel-indicators-v19--white li span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  text-indent: -9999px;
  transition: background-color .3s ease, -webkit-transform .3s ease;
  transition: background-color .3s ease, transform .3s ease;
  transition: background-color .3s ease, transform .3s ease, -webkit-transform .3s ease; }

.u-carousel-indicators-v19 li span::before, .u-carousel-indicators-v19 li span::after,
.u-carousel-indicators-v19--white li span::before,
.u-carousel-indicators-v19--white li span::after {
  content: "";
  display: none; }

.u-carousel-indicators-v19 li.slick-active span,
.u-carousel-indicators-v19--white li.slick-active span {
  background-color: #fff;
  -webkit-transform: scale(0.4);
  -ms-transform: scale(0.4);
  transform: scale(0.4); }

.u-carousel-indicators-v19--white li {
  box-shadow: 0 0 0 2px rgba(255, 255, 255, 0); }

.u-carousel-indicators-v19--white li span {
  background-color: rgba(255, 255, 255, 0.7); }

.u-carousel-indicators-v19--white li span:hover, .u-carousel-indicators-v19--white li span:focus {
  background-color: #fff; }

.u-carousel-indicators-v19--white li.slick-active {
  box-shadow: 0 0 0 2px #fff; }

/*------------------------------------
  Carousel indicators v20
------------------------------------*/
.u-carousel-indicators-v20,
.u-carousel-indicators-v20--white {
  white-space: nowrap; }

.u-carousel-indicators-v20 li,
.u-carousel-indicators-v20--white li {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: 0 5px; }

.u-carousel-indicators-v20 li span,
.u-carousel-indicators-v20--white li span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  text-indent: -9999px;
  transition: border-color .3s ease; }

.u-carousel-indicators-v20 li span::before, .u-carousel-indicators-v20 li span::after,
.u-carousel-indicators-v20--white li span::before,
.u-carousel-indicators-v20--white li span::after {
  content: "";
  display: none; }

.u-carousel-indicators-v20 li span::before,
.u-carousel-indicators-v20--white li span::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  visibility: hidden;
  opacity: 0;
  -webkit-transform: scale(3);
  -ms-transform: scale(3);
  transform: scale(3);
  transition: opacity .3s ease, visibility 0s .3s, -webkit-transform .3s ease;
  transition: opacity .3s ease, transform .3s ease, visibility 0s .3s;
  transition: opacity .3s ease, transform .3s ease, visibility 0s .3s, -webkit-transform .3s ease; }

.u-carousel-indicators-v20 li span:hover, .u-carousel-indicators-v20 li span:focus,
.u-carousel-indicators-v20--white li span:hover,
.u-carousel-indicators-v20--white li span:focus {
  border-color: #72c02c; }

.u-carousel-indicators-v20 li.slick-active span,
.u-carousel-indicators-v20--white li.slick-active span {
  border-color: #72c02c; }

.u-carousel-indicators-v20 li.slick-active span::before,
.u-carousel-indicators-v20--white li.slick-active span::before {
  visibility: visible;
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  transition: opacity .3s ease, -webkit-transform .3s ease;
  transition: opacity .3s ease, transform .3s ease;
  transition: opacity .3s ease, transform .3s ease, -webkit-transform .3s ease; }

.u-carousel-indicators-v20--white li span {
  border: 2px solid #fff; }

.u-carousel-indicators-v20--white li span::before {
  background: #72c02c;
  box-shadow: 0 0 1px #72c02c; }

/*------------------------------------
  Carousel indicators v21
------------------------------------*/
.u-carousel-indicators-v21,
.u-carousel-indicators-v21--white {
  white-space: nowrap; }

.u-carousel-indicators-v21 li,
.u-carousel-indicators-v21--white li {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: 0 5px;
  -webkit-perspective: 1000px;
  perspective: 1000px; }

.u-carousel-indicators-v21 li span,
.u-carousel-indicators-v21--white li span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: transparent;
  border-radius: 50%;
  text-indent: -9999px;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
  transition: opacity .3s ease, -webkit-transform .3s ease;
  transition: transform .3s ease, opacity .3s ease;
  transition: transform .3s ease, opacity .3s ease, -webkit-transform .3s ease; }

.u-carousel-indicators-v21 li span::before, .u-carousel-indicators-v21 li span::after,
.u-carousel-indicators-v21--white li span::before,
.u-carousel-indicators-v21--white li span::after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  text-indent: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

.u-carousel-indicators-v21 li span::after,
.u-carousel-indicators-v21--white li span::after {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg); }

.u-carousel-indicators-v21 li span:hover,
.u-carousel-indicators-v21--white li span:hover {
  opacity: .8; }

.u-carousel-indicators-v21 li.slick-active span,
.u-carousel-indicators-v21--white li.slick-active span {
  -webkit-transform: rotateY(180deg);
  transform: rotateY(180deg); }

.u-carousel-indicators-v21--white li span::before {
  background-color: #fff; }

.u-carousel-indicators-v21--white li span::after {
  background-color: #72c02c; }

/*------------------------------------
  Carousel indicators v22
------------------------------------*/
.u-carousel-indicators-v22,
.u-carousel-indicators-v22--white {
  white-space: nowrap; }

.u-carousel-indicators-v22 li,
.u-carousel-indicators-v22--white li {
  position: relative;
  display: inline-block;
  z-index: 1;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  cursor: pointer;
  margin: 0 5px;
  transition: border-color .3s ease; }

.u-carousel-indicators-v22 li span,
.u-carousel-indicators-v22--white li span {
  position: absolute;
  bottom: 250%;
  left: 50%;
  width: auto;
  height: auto;
  line-height: 2;
  opacity: 0;
  white-space: nowrap;
  visibility: hidden;
  border-radius: 0;
  padding: 0 10px;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  transition: opacity .3s ease, visibility 0s .3s ease, -webkit-transform .3s ease;
  transition: transform .3s ease, opacity .3s ease, visibility 0s .3s ease;
  transition: transform .3s ease, opacity .3s ease, visibility 0s .3s ease, -webkit-transform .3s ease; }

.u-carousel-indicators-v22 li span::before, .u-carousel-indicators-v22 li span::after,
.u-carousel-indicators-v22--white li span::before,
.u-carousel-indicators-v22--white li span::after {
  content: "";
  display: none; }

.u-carousel-indicators-v22 li span::before,
.u-carousel-indicators-v22--white li span::before {
  display: block;
  position: absolute;
  top: 99%;
  left: 50%;
  width: 0;
  height: 0;
  margin-left: -10px;
  border: 10px solid transparent;
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  transition: opacity .3s ease; }

.u-carousel-indicators-v22 li span:hover,
.u-carousel-indicators-v22--white li span:hover {
  z-index: 11;
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateX(-50%) translateY(0%);
  -ms-transform: translateX(-50%) translateY(0%);
  transform: translateX(-50%) translateY(0%);
  transition: opacity .3s ease, -webkit-transform .3s ease;
  transition: transform .3s ease, opacity .3s ease;
  transition: transform .3s ease, opacity .3s ease, -webkit-transform .3s ease; }

.u-carousel-indicators-v22 li.slick-active span,
.u-carousel-indicators-v22--white li.slick-active span {
  z-index: 100;
  visibility: visible;
  opacity: 1;
  -webkit-transform: translateX(-50%) translateY(0%);
  -ms-transform: translateX(-50%) translateY(0%);
  transform: translateX(-50%) translateY(0%);
  transition: opacity .3s ease, -webkit-transform .3s ease;
  transition: transform .3s ease, opacity .3s ease;
  transition: transform .3s ease, opacity .3s ease, -webkit-transform .3s ease; }

.u-carousel-indicators-v22 li.slick-active:hover span,
.u-carousel-indicators-v22--white li.slick-active:hover span {
  opacity: 1 !important; }

.u-carousel-indicators-v22 li:hover,
.u-carousel-indicators-v22--white li:hover {
  z-index: 11; }

.u-carousel-indicators-v22:hover li.slick-active span,
.u-carousel-indicators-v22--white:hover li.slick-active span {
  opacity: .2; }

.u-carousel-indicators-v22--white li {
  border: 2px solid #fff; }

.u-carousel-indicators-v22--white li span {
  color: #fff;
  background-color: #72c02c; }

.u-carousel-indicators-v22--white li span::before {
  border-top-color: #72c02c; }

.u-carousel-indicators-v22--white li.slick-active {
  border-color: #72c02c; }

/*------------------------------------
  Carousel indicators v23
------------------------------------*/
.u-carousel-indicators-v23,
.u-carousel-indicators-v23--white {
  white-space: nowrap; }

.u-carousel-indicators-v23 li,
.u-carousel-indicators-v23--white li {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: 0 5px; }

.u-carousel-indicators-v23 li span,
.u-carousel-indicators-v23--white li span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  text-indent: -9999px;
  transition: background-color .3s ease; }

.u-carousel-indicators-v23 li span::before, .u-carousel-indicators-v23 li span::after,
.u-carousel-indicators-v23--white li span::before,
.u-carousel-indicators-v23--white li span::after {
  content: "";
  display: none; }

.u-carousel-indicators-v23 li.slick-active:first-child ~ .u-dots-helper,
.u-carousel-indicators-v23--white li.slick-active:first-child ~ .u-dots-helper {
  -webkit-transform: translateX(0);
  -ms-transform: translateX(0);
  transform: translateX(0); }

.u-carousel-indicators-v23 li.slick-active:nth-child(2) ~ .u-dots-helper,
.u-carousel-indicators-v23--white li.slick-active:nth-child(2) ~ .u-dots-helper {
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%); }

.u-carousel-indicators-v23 li.slick-active:nth-child(3) ~ .u-dots-helper,
.u-carousel-indicators-v23--white li.slick-active:nth-child(3) ~ .u-dots-helper {
  -webkit-transform: translateX(200%);
  -ms-transform: translateX(200%);
  transform: translateX(200%); }

.u-carousel-indicators-v23 li.slick-active:nth-child(4) ~ .u-dots-helper,
.u-carousel-indicators-v23--white li.slick-active:nth-child(4) ~ .u-dots-helper {
  -webkit-transform: translateX(300%);
  -ms-transform: translateX(300%);
  transform: translateX(300%); }

.u-carousel-indicators-v23 li.slick-active:nth-child(5) ~ .u-dots-helper,
.u-carousel-indicators-v23--white li.slick-active:nth-child(5) ~ .u-dots-helper {
  -webkit-transform: translateX(400%);
  -ms-transform: translateX(400%);
  transform: translateX(400%); }

.u-carousel-indicators-v23 li.slick-active:nth-child(6) ~ .u-dots-helper,
.u-carousel-indicators-v23--white li.slick-active:nth-child(6) ~ .u-dots-helper {
  -webkit-transform: translateX(500%);
  -ms-transform: translateX(500%);
  transform: translateX(500%); }

.u-carousel-indicators-v23 li.slick-active:nth-child(7) ~ .u-dots-helper,
.u-carousel-indicators-v23--white li.slick-active:nth-child(7) ~ .u-dots-helper {
  -webkit-transform: translateX(600%);
  -ms-transform: translateX(600%);
  transform: translateX(600%); }

.u-carousel-indicators-v23 li.slick-active:nth-child(8) ~ .u-dots-helper,
.u-carousel-indicators-v23--white li.slick-active:nth-child(8) ~ .u-dots-helper {
  -webkit-transform: translateX(700%);
  -ms-transform: translateX(700%);
  transform: translateX(700%); }

.u-carousel-indicators-v23 li.slick-active:nth-child(9) ~ .u-dots-helper,
.u-carousel-indicators-v23--white li.slick-active:nth-child(9) ~ .u-dots-helper {
  -webkit-transform: translateX(800%);
  -ms-transform: translateX(800%);
  transform: translateX(800%); }

.u-carousel-indicators-v23 li.slick-active:nth-child(10) ~ .u-dots-helper,
.u-carousel-indicators-v23--white li.slick-active:nth-child(10) ~ .u-dots-helper {
  -webkit-transform: translateX(900%);
  -ms-transform: translateX(900%);
  transform: translateX(900%); }

.u-carousel-indicators-v23 li.slick-active:nth-child(11) ~ .u-dots-helper,
.u-carousel-indicators-v23--white li.slick-active:nth-child(11) ~ .u-dots-helper {
  -webkit-transform: translateX(1000%);
  -ms-transform: translateX(1000%);
  transform: translateX(1000%); }

.u-carousel-indicators-v23 li.slick-active:nth-child(12) ~ .u-dots-helper,
.u-carousel-indicators-v23--white li.slick-active:nth-child(12) ~ .u-dots-helper {
  -webkit-transform: translateX(1100%);
  -ms-transform: translateX(1100%);
  transform: translateX(1100%); }

.u-carousel-indicators-v23 li.slick-active:nth-child(13) ~ .u-dots-helper,
.u-carousel-indicators-v23--white li.slick-active:nth-child(13) ~ .u-dots-helper {
  -webkit-transform: translateX(1200%);
  -ms-transform: translateX(1200%);
  transform: translateX(1200%); }

.u-carousel-indicators-v23 li.slick-active:nth-child(14) ~ .u-dots-helper,
.u-carousel-indicators-v23--white li.slick-active:nth-child(14) ~ .u-dots-helper {
  -webkit-transform: translateX(1300%);
  -ms-transform: translateX(1300%);
  transform: translateX(1300%); }

.u-carousel-indicators-v23 li.slick-active:nth-child(15) ~ .u-dots-helper,
.u-carousel-indicators-v23--white li.slick-active:nth-child(15) ~ .u-dots-helper {
  -webkit-transform: translateX(1400%);
  -ms-transform: translateX(1400%);
  transform: translateX(1400%); }

.u-carousel-indicators-v23 li.slick-active:nth-child(16) ~ .u-dots-helper,
.u-carousel-indicators-v23--white li.slick-active:nth-child(16) ~ .u-dots-helper {
  -webkit-transform: translateX(1500%);
  -ms-transform: translateX(1500%);
  transform: translateX(1500%); }

.u-carousel-indicators-v23 li.slick-active:nth-child(17) ~ .u-dots-helper,
.u-carousel-indicators-v23--white li.slick-active:nth-child(17) ~ .u-dots-helper {
  -webkit-transform: translateX(1600%);
  -ms-transform: translateX(1600%);
  transform: translateX(1600%); }

.u-carousel-indicators-v23 li.slick-active:nth-child(18) ~ .u-dots-helper,
.u-carousel-indicators-v23--white li.slick-active:nth-child(18) ~ .u-dots-helper {
  -webkit-transform: translateX(1700%);
  -ms-transform: translateX(1700%);
  transform: translateX(1700%); }

.u-carousel-indicators-v23 li.slick-active:nth-child(19) ~ .u-dots-helper,
.u-carousel-indicators-v23--white li.slick-active:nth-child(19) ~ .u-dots-helper {
  -webkit-transform: translateX(1800%);
  -ms-transform: translateX(1800%);
  transform: translateX(1800%); }

.u-carousel-indicators-v23 li.slick-active:nth-child(20) ~ .u-dots-helper,
.u-carousel-indicators-v23--white li.slick-active:nth-child(20) ~ .u-dots-helper {
  -webkit-transform: translateX(1900%);
  -ms-transform: translateX(1900%);
  transform: translateX(1900%); }

.u-carousel-indicators-v23 li.slick-active:nth-child(21) ~ .u-dots-helper,
.u-carousel-indicators-v23--white li.slick-active:nth-child(21) ~ .u-dots-helper {
  -webkit-transform: translateX(2000%);
  -ms-transform: translateX(2000%);
  transform: translateX(2000%); }

.u-carousel-indicators-v23 li.slick-active:nth-child(22) ~ .u-dots-helper,
.u-carousel-indicators-v23--white li.slick-active:nth-child(22) ~ .u-dots-helper {
  -webkit-transform: translateX(2100%);
  -ms-transform: translateX(2100%);
  transform: translateX(2100%); }

.u-carousel-indicators-v23 li.slick-active:nth-child(23) ~ .u-dots-helper,
.u-carousel-indicators-v23--white li.slick-active:nth-child(23) ~ .u-dots-helper {
  -webkit-transform: translateX(2200%);
  -ms-transform: translateX(2200%);
  transform: translateX(2200%); }

.u-carousel-indicators-v23 li.slick-active:nth-child(24) ~ .u-dots-helper,
.u-carousel-indicators-v23--white li.slick-active:nth-child(24) ~ .u-dots-helper {
  -webkit-transform: translateX(2300%);
  -ms-transform: translateX(2300%);
  transform: translateX(2300%); }

.u-carousel-indicators-v23 li.slick-active:nth-child(25) ~ .u-dots-helper,
.u-carousel-indicators-v23--white li.slick-active:nth-child(25) ~ .u-dots-helper {
  -webkit-transform: translateX(2400%);
  -ms-transform: translateX(2400%);
  transform: translateX(2400%); }

.u-carousel-indicators-v23 li.slick-active:nth-child(26) ~ .u-dots-helper,
.u-carousel-indicators-v23--white li.slick-active:nth-child(26) ~ .u-dots-helper {
  -webkit-transform: translateX(2500%);
  -ms-transform: translateX(2500%);
  transform: translateX(2500%); }

.u-carousel-indicators-v23 li.slick-active:nth-child(27) ~ .u-dots-helper,
.u-carousel-indicators-v23--white li.slick-active:nth-child(27) ~ .u-dots-helper {
  -webkit-transform: translateX(2600%);
  -ms-transform: translateX(2600%);
  transform: translateX(2600%); }

.u-carousel-indicators-v23 li.slick-active:nth-child(28) ~ .u-dots-helper,
.u-carousel-indicators-v23--white li.slick-active:nth-child(28) ~ .u-dots-helper {
  -webkit-transform: translateX(2700%);
  -ms-transform: translateX(2700%);
  transform: translateX(2700%); }

.u-carousel-indicators-v23 li.slick-active:nth-child(29) ~ .u-dots-helper,
.u-carousel-indicators-v23--white li.slick-active:nth-child(29) ~ .u-dots-helper {
  -webkit-transform: translateX(2800%);
  -ms-transform: translateX(2800%);
  transform: translateX(2800%); }

.u-carousel-indicators-v23 .u-dots-helper,
.u-carousel-indicators-v23--white .u-dots-helper {
  position: absolute;
  left: 0;
  top: 0;
  width: 26px;
  transition: -webkit-transform .3s ease;
  transition: transform .3s ease;
  transition: transform .3s ease, -webkit-transform .3s ease; }

.u-carousel-indicators-v23 .u-dots-helper::before,
.u-carousel-indicators-v23--white .u-dots-helper::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 0;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%); }

.u-carousel-indicators-v23--white li span {
  background: rgba(255, 255, 255, 0.5); }

.u-carousel-indicators-v23--white li span:hover, .u-carousel-indicators-v23--white li span:focus {
  background-color: #fff; }

.u-carousel-indicators-v23--white .u-dots-helper::before {
  background: #72c02c; }

/*------------------------------------
  Carousel indicators v24
------------------------------------*/
.u-carousel-indicators-v24,
.u-carousel-indicators-v24--white {
  white-space: nowrap; }

.u-carousel-indicators-v24 li,
.u-carousel-indicators-v24--white li {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: 0 5px; }

.u-carousel-indicators-v24 li span,
.u-carousel-indicators-v24--white li span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: transparent;
  border-radius: 50%;
  text-indent: -9999px; }

.u-carousel-indicators-v24 li span::before, .u-carousel-indicators-v24 li span::after,
.u-carousel-indicators-v24--white li span::before,
.u-carousel-indicators-v24--white li span::after {
  content: "";
  display: none; }

.u-carousel-indicators-v24 li span::before,
.u-carousel-indicators-v24--white li span::before {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  transition: opacity .3s ease, visibility 0s .3s ease, -webkit-transform .3s ease .3s;
  transition: transform .3s ease .3s, opacity .3s ease, visibility 0s .3s ease;
  transition: transform .3s ease .3s, opacity .3s ease, visibility 0s .3s ease, -webkit-transform .3s ease .3s;
  -webkit-transform-origin: -200% 50%;
  -ms-transform-origin: -200% 50%;
  transform-origin: -200% 50%;
  -webkit-transform: rotate(-100deg);
  -ms-transform: rotate(-100deg);
  transform: rotate(-100deg); }

.u-carousel-indicators-v24 li.slick-active-right span::before,
.u-carousel-indicators-v24--white li.slick-active-right span::before {
  transition: none;
  -webkit-transform-origin: 300% 50%;
  -ms-transform-origin: 300% 50%;
  transform-origin: 300% 50%;
  -webkit-transform: rotate(100deg);
  -ms-transform: rotate(100deg);
  transform: rotate(100deg); }

.u-carousel-indicators-v24 li.slick-current span::before,
.u-carousel-indicators-v24--white li.slick-current span::before {
  visibility: visible;
  opacity: 1;
  transition: opacity .3s ease, -webkit-transform .3s ease;
  transition: transform .3s ease, opacity .3s ease;
  transition: transform .3s ease, opacity .3s ease, -webkit-transform .3s ease;
  -webkit-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  transform: rotate(0deg); }

.u-carousel-indicators-v24--white li span {
  border: 2px solid #72c02c; }

.u-carousel-indicators-v24--white li span::before {
  background: #fff; }

.u-carousel-indicators-v24--white li span:focus {
  background: rgba(255, 255, 255, 0.2); }

/*------------------------------------
  Carousel indicators v25
------------------------------------*/
.u-carousel-indicators-v25,
.u-carousel-indicators-v25--white {
  white-space: nowrap; }

.u-carousel-indicators-v25 li,
.u-carousel-indicators-v25--white li {
  position: relative;
  display: inline-block;
  width: 16px;
  height: 16px;
  margin: 0 5px; }

.u-carousel-indicators-v25 li::before,
.u-carousel-indicators-v25--white li::before {
  content: "";
  position: absolute;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: translateY(-200%);
  -ms-transform: translateY(-200%);
  transform: translateY(-200%);
  transition: opacity .3s ease, visibility 0s .3s, -webkit-transform .3s ease;
  transition: transform .3s ease, opacity .3s ease, visibility 0s .3s;
  transition: transform .3s ease, opacity .3s ease, visibility 0s .3s, -webkit-transform .3s ease; }

.u-carousel-indicators-v25 li span,
.u-carousel-indicators-v25--white li span {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 50%;
  text-indent: -9999px;
  transition: opacity .3s ease, background-color .3s ease, -webkit-transform .3s ease;
  transition: transform .3s ease, opacity .3s ease, background-color .3s ease;
  transition: transform .3s ease, opacity .3s ease, background-color .3s ease, -webkit-transform .3s ease; }

.u-carousel-indicators-v25 li span::before, .u-carousel-indicators-v25 li span::after,
.u-carousel-indicators-v25--white li span::before,
.u-carousel-indicators-v25--white li span::after {
  content: "";
  display: none; }

.u-carousel-indicators-v25 li.slick-active::before,
.u-carousel-indicators-v25--white li.slick-active::before {
  opacity: 1;
  visibility: visible;
  transition: opacity .3s ease, -webkit-transform .3s ease;
  transition: transform .3s ease, opacity .3s ease;
  transition: transform .3s ease, opacity .3s ease, -webkit-transform .3s ease;
  -webkit-transform: translateY(0);
  -ms-transform: translateY(0);
  transform: translateY(0); }

.u-carousel-indicators-v25 li.slick-active span,
.u-carousel-indicators-v25--white li.slick-active span {
  opacity: 0;
  -webkit-transform: translateY(200%);
  -ms-transform: translateY(200%);
  transform: translateY(200%); }

.u-carousel-indicators-v25--white li::before {
  background-color: #72c02c; }

.u-carousel-indicators-v25--white li span {
  background: rgba(255, 255, 255, 0.5); }

.u-carousel-indicators-v25--white li span::before {
  background-color: #72c02c; }

.u-carousel-indicators-v25--white li span:focus {
  background-color: #72c02c; }

.u-carousel-indicators-v25--white li:hover span {
  background-color: #fff; }

.u-carousel-indicators-v25--white li.slick-active span {
  background-color: #72c02c; }

/*------------------------------------
  Carousel indicators v26
------------------------------------*/
.u-carousel-indicators-v26 li,
.u-carousel-indicators-v26--white li,
.u-carousel-indicators-v26--vertical li,
.u-carousel-indicators-v26--vertical--white li {
  position: relative;
  width: 20px;
  height: 20px;
  float: left;
  margin-right: 40px; }

.u-carousel-indicators-v26 li::before,
.u-carousel-indicators-v26--white li::before,
.u-carousel-indicators-v26--vertical li::before,
.u-carousel-indicators-v26--vertical--white li::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  width: 16px;
  height: 16px;
  border: 2px solid;
  border-radius: 50%;
  transition: width .3s, height .3s, border-color .3s, border-width .3s, background .3s;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -ms-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%); }

.u-carousel-indicators-v26 li::after,
.u-carousel-indicators-v26--white li::after,
.u-carousel-indicators-v26--vertical li::after,
.u-carousel-indicators-v26--vertical--white li::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  z-index: -1;
  display: block;
  width: 44px;
  height: 0;
  border-top: 2px solid;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  margin-left: -2px; }

.u-carousel-indicators-v26 li span,
.u-carousel-indicators-v26--white li span,
.u-carousel-indicators-v26--vertical li span,
.u-carousel-indicators-v26--vertical--white li span {
  display: block;
  position: absolute;
  bottom: 100%;
  left: 50%;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  opacity: .3;
  transition: opacity .3s, color .3s;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  padding: 0 0 15px 0; }

.u-carousel-indicators-v26 li.slick-active::before,
.u-carousel-indicators-v26--white li.slick-active::before,
.u-carousel-indicators-v26--vertical li.slick-active::before,
.u-carousel-indicators-v26--vertical--white li.slick-active::before {
  width: 20px;
  height: 20px; }

.u-carousel-indicators-v26 li.slick-active span,
.u-carousel-indicators-v26--white li.slick-active span,
.u-carousel-indicators-v26--vertical li.slick-active span,
.u-carousel-indicators-v26--vertical--white li.slick-active span {
  opacity: 1; }

.u-carousel-indicators-v26 li:last-child,
.u-carousel-indicators-v26--white li:last-child,
.u-carousel-indicators-v26--vertical li:last-child,
.u-carousel-indicators-v26--vertical--white li:last-child {
  margin-bottom: 0;
  margin-right: 0; }

.u-carousel-indicators-v26 li:last-child::after,
.u-carousel-indicators-v26--white li:last-child::after,
.u-carousel-indicators-v26--vertical li:last-child::after,
.u-carousel-indicators-v26--vertical--white li:last-child::after {
  display: none; }

.u-carousel-indicators-v26--vertical,
.u-carousel-indicators-v26--vertical--white {
  width: 20px; }

.u-carousel-indicators-v26--vertical li,
.u-carousel-indicators-v26--vertical--white li {
  display: block;
  float: none;
  margin-bottom: 15px;
  margin-right: 0; }

.u-carousel-indicators-v26--vertical li::after,
.u-carousel-indicators-v26--vertical--white li::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  z-index: -1;
  display: block;
  width: 0;
  height: 19px;
  border-left: 2px solid;
  -webkit-transform: translateX(-50%) translateY(0);
  -ms-transform: translateX(-50%) translateY(0);
  transform: translateX(-50%) translateY(0);
  margin-top: -2px;
  margin-left: 0; }

.u-carousel-indicators-v26--vertical li span,
.u-carousel-indicators-v26--vertical--white li span {
  display: block;
  position: absolute;
  top: 50%;
  bottom: auto;
  left: 100%;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  white-space: nowrap;
  opacity: .3;
  transition: opacity .3s, color .3s;
  -webkit-transform: translateX(0) translateY(-50%);
  -ms-transform: translateX(0) translateY(-50%);
  transform: translateX(0) translateY(-50%);
  padding: 0 0 0 15px; }

.u-carousel-indicators-v26--white li::before,
.u-carousel-indicators-v26--vertical--white li::before {
  border-color: #72c02c; }

.u-carousel-indicators-v26--white li::after,
.u-carousel-indicators-v26--vertical--white li::after {
  border-color: #72c02c; }

.u-carousel-indicators-v26--white li span,
.u-carousel-indicators-v26--vertical--white li span {
  color: #fff; }

.u-carousel-indicators-v26--white li:not(.slick-active):hover::before,
.u-carousel-indicators-v26--vertical--white li:not(.slick-active):hover::before {
  border-color: #fff;
  background-color: #fff; }

.u-carousel-indicators-v26--white li.slick-active::before,
.u-carousel-indicators-v26--vertical--white li.slick-active::before {
  border-color: #fff; }

.u-carousel-indicators-v26--white li.slick-active span,
.u-carousel-indicators-v26--vertical--white li.slick-active span {
  color: #fff; }

/*------------------------------------
  Carousel indicators v27
------------------------------------*/
.u-carousel-indicators-v27 li,
.u-carousel-indicators-v27--white li,
.u-carousel-indicators-v27--vertical li,
.u-carousel-indicators-v27--vertical--white li {
  position: relative;
  width: 40px;
  height: 4px;
  float: left;
  margin: 0 5px; }

.u-carousel-indicators-v27 li span,
.u-carousel-indicators-v27--white li span,
.u-carousel-indicators-v27--vertical li span,
.u-carousel-indicators-v27--vertical--white li span {
  position: relative;
  display: block;
  width: 100%;
  height: 4px;
  opacity: .7;
  overflow: hidden;
  transition: opacity .3s; }

.u-carousel-indicators-v27 li span::before,
.u-carousel-indicators-v27--white li span::before,
.u-carousel-indicators-v27--vertical li span::before,
.u-carousel-indicators-v27--vertical--white li span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  transition: -webkit-transform .5s;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s;
  transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1); }

.u-carousel-indicators-v27 li strong,
.u-carousel-indicators-v27--white li strong,
.u-carousel-indicators-v27--vertical li strong,
.u-carousel-indicators-v27--vertical--white li strong {
  position: absolute;
  bottom: 105%;
  left: 0;
  display: block;
  width: 40px;
  font-weight: 700;
  font-size: 20px;
  opacity: 0;
  -webkit-transform: translate3d(1em, 0, 0);
  transform: translate3d(1em, 0, 0);
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  transition: opacity .5s, -webkit-transform .5s;
  transition: transform .5s, opacity .5s;
  transition: transform .5s, opacity .5s, -webkit-transform .5s;
  transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1); }

.u-carousel-indicators-v27 li:not(.slick-active):hover span, .u-carousel-indicators-v27 li:not(.slick-active):focus span,
.u-carousel-indicators-v27--white li:not(.slick-active):hover span,
.u-carousel-indicators-v27--white li:not(.slick-active):focus span,
.u-carousel-indicators-v27--vertical li:not(.slick-active):hover span,
.u-carousel-indicators-v27--vertical li:not(.slick-active):focus span,
.u-carousel-indicators-v27--vertical--white li:not(.slick-active):hover span,
.u-carousel-indicators-v27--vertical--white li:not(.slick-active):focus span {
  opacity: 1; }

.u-carousel-indicators-v27 li.slick-active span::before,
.u-carousel-indicators-v27--white li.slick-active span::before,
.u-carousel-indicators-v27--vertical li.slick-active span::before,
.u-carousel-indicators-v27--vertical--white li.slick-active span::before {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.u-carousel-indicators-v27 li.slick-active strong,
.u-carousel-indicators-v27--white li.slick-active strong,
.u-carousel-indicators-v27--vertical li.slick-active strong,
.u-carousel-indicators-v27--vertical--white li.slick-active strong {
  opacity: 1;
  -webkit-transform: rotate3d(0, 0, 1, 0deg);
  transform: rotate3d(0, 0, 1, 0deg); }

.u-carousel-indicators-v27--vertical li,
.u-carousel-indicators-v27--vertical--white li {
  display: block;
  width: 40px;
  height: 40px;
  float: none;
  margin: 15px 0; }

.u-carousel-indicators-v27--vertical li span,
.u-carousel-indicators-v27--vertical--white li span {
  position: relative;
  display: block;
  width: 4px;
  height: 100%;
  opacity: .7;
  overflow: hidden;
  transition: opacity .3s; }

.u-carousel-indicators-v27--vertical li span::before,
.u-carousel-indicators-v27--vertical--white li span::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100%;
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  transition: -webkit-transform .5s;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s;
  transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1); }

.u-carousel-indicators-v27--vertical li strong,
.u-carousel-indicators-v27--vertical--white li strong {
  position: absolute;
  top: 0;
  bottom: auto;
  left: 105%;
  display: block;
  width: 40px;
  font-weight: 700;
  font-size: 20px;
  opacity: 0;
  -webkit-transform: rotate3d(0, 0, 1, 90deg) translate3d(1em, 0, 0);
  transform: rotate3d(0, 0, 1, 90deg) translate3d(1em, 0, 0);
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  transition: opacity .5s, -webkit-transform .5s;
  transition: transform .5s, opacity .5s;
  transition: transform .5s, opacity .5s, -webkit-transform .5s;
  transition-timing-function: cubic-bezier(0.2, 1, 0.3, 1); }

.u-carousel-indicators-v27--vertical li.slick-active span::before,
.u-carousel-indicators-v27--vertical--white li.slick-active span::before {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.u-carousel-indicators-v27--vertical li.slick-active strong,
.u-carousel-indicators-v27--vertical--white li.slick-active strong {
  opacity: 1;
  -webkit-transform: rotate3d(0, 0, 1, 90deg);
  transform: rotate3d(0, 0, 1, 90deg); }

.u-carousel-indicators-v27--white li span,
.u-carousel-indicators-v27--vertical--white li span {
  background: #fff; }

.u-carousel-indicators-v27--white li span::before,
.u-carousel-indicators-v27--vertical--white li span::before {
  background: #72c02c; }

.u-carousel-indicators-v27--white li strong,
.u-carousel-indicators-v27--vertical--white li strong {
  color: #fff; }

/*------------------------------------
  Carousel indicators v28
------------------------------------*/
.u-carousel-indicators-v28 {
  position: absolute;
  left: 0;
  top: 50%;
  bottom: auto;
  display: block;
  width: 7px;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%); }

.u-carousel-indicators-v28 li {
  display: block;
  margin: 15px 0;
  float: none; }

.u-carousel-indicators-v28 li.slick-active span {
  background-color: #72c02c;
  opacity: 1; }

.u-carousel-indicators-v28 span {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background-color: #777;
  opacity: .3; }

/*------------------------------------
  Carousel indicators v29
------------------------------------*/
.u-carousel-indicators-v29 {
  position: absolute;
  white-space: nowrap;
  text-align: center; }

.u-carousel-indicators-v29 li {
  display: inline-block;
  min-width: 30px;
  cursor: pointer;
  float: none;
  border-top: 3px solid #fff;
  margin: -2px 20px 0; }

.u-carousel-indicators-v29 li.slick-active {
  color: #72c02c;
  border-top-color: #72c02c; }

.u-carousel-indicators-v29 .u-dot-title {
  display: none; }

@media (min-width: 576px) {
  .u-carousel-indicators-v29 {
    border-top: 1px solid; }

  .u-carousel-indicators-v29 li {
    border-top: 3px solid transparent;
    padding-top: 10px;
    margin: -2px 20px 0; }

  .u-carousel-indicators-v29 .u-dot-title {
    display: block; } }
/*------------------------------------
  Carousel indicators v30
------------------------------------*/
.u-carousel-indicators-v30 {
  display: block;
  width: 100%; }

.u-carousel-indicators-v30 > li {
  display: table-cell;
  width: 1%;
  text-align: center;
  float: none; }

.u-carousel-indicators-v30 span {
  display: inline-block; }

@media (min-width: 576px) {
  .u-carousel-indicators-v30 {
    display: block;
    width: 100%; }

  .u-carousel-indicators-v30 > li {
    display: table-cell;
    width: 1%;
    text-align: center;
    float: none; }

  .u-carousel-indicators-v30 span {
    display: inline-block; } }
/*------------------------------------
  Carousel indicators v31
------------------------------------*/
.u-carousel-indicators-v31,
.u-carousel-indicators-v31--white {
  display: -webkit-box !important;
  display: -webkit-flex !important;
  display: -ms-flexbox !important;
  display: flex !important; }

.u-carousel-indicators-v31 li,
.u-carousel-indicators-v31--white li {
  margin: 0 5px; }

.u-carousel-indicators-v31 li.slick-active span,
.u-carousel-indicators-v31--white li.slick-active span {
  position: relative;
  top: 1px;
  width: 13px;
  height: 13px;
  background-color: #72c02c;
  transition-property: all;
  transition-timing-function: ease;
  transition-duration: .4s; }

.u-carousel-indicators-v31 span,
.u-carousel-indicators-v31--white span {
  position: relative;
  top: 2px;
  width: 11px;
  height: 11px;
  border: 2px solid #fff;
  border-radius: 50%;
  opacity: 1;
  transition-property: all;
  transition-timing-function: ease;
  transition-duration: .4s;
  background-color: #ddd; }

/*------------------------------------
  Carousel Indicators v32
------------------------------------*/
.u-carousel-indicators-v32 .slick-slide {
  -webkit-box-align: center !important;
  -webkit-align-items: center !important;
  -ms-flex-align: center !important;
  align-items: center !important;
  transition-property: all;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-duration: .5s; }

.u-carousel-indicators-v32 .slick-slide .u-carousel-indicators-v32-img {
  box-shadow: 0 5px 25px 0 transparent; }

.u-carousel-indicators-v32 .slick-center {
  width: 70px;
  height: 70px;
  -webkit-transform: scale(1.35); }

.u-carousel-indicators-v32 .slick-center .u-carousel-indicators-v32-img {
  box-shadow: 0 5px 25px 0 rgba(0, 0, 0, 0.1);
  border-color: #fff; }

/*------------------------------------
  Carousel indicators v33
------------------------------------*/
.u-carousel-indicators-v33 {
  position: relative;
  padding-top: 15px;
  padding-left: 0; }

.u-carousel-indicators-v33 li {
  display: block;
  color: #eee;
  cursor: pointer;
  padding: 10px 0; }

.u-carousel-indicators-v33 li:hover {
  color: rgba(114, 192, 44, 0.5); }

.u-carousel-indicators-v33 li.slick-active {
  color: #72c02c; }

.u-carousel-indicators-v33 li span {
  display: none; }

/*------------------------------------
  Carousel indicators v34
------------------------------------*/
.u-carousel-indicators-v34 li {
  display: block;
  margin: 10px 0; }

.u-carousel-indicators-v34 li.slick-active span {
  background-color: #72c02c;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1); }

.u-carousel-indicators-v34 span {
  width: 13px;
  height: 13px;
  border: 2px solid #fff;
  border-radius: 50%;
  -webkit-transform: scale(0.7);
  -ms-transform: scale(0.7);
  transform: scale(0.7);
  transition: all .3s ease; }

/*------------------------------------
  Carousel indicators v35
------------------------------------*/
.u-carousel-indicators-v35 li,
.u-carousel-indicators-v35--white li,
.u-carousel-indicators-v35--main li {
  display: inline-block;
  margin: 0 5px; }

.u-carousel-indicators-v35 li.slick-active span,
.u-carousel-indicators-v35--white li.slick-active span,
.u-carousel-indicators-v35--main li.slick-active span {
  opacity: 1; }

.u-carousel-indicators-v35 span,
.u-carousel-indicators-v35--white span,
.u-carousel-indicators-v35--main span {
  width: 13px;
  height: 13px;
  background-color: #72c02c;
  border: 2px solid transparent;
  opacity: .7;
  border-radius: 50%;
  -webkit-transform: scale(0.6);
  -ms-transform: scale(0.6);
  transform: scale(0.6);
  transition: all .3s ease; }

.u-carousel-indicators-v35 li.slick-active span,
.u-carousel-indicators-v35--white li.slick-active span,
.u-carousel-indicators-v35--main li.slick-active span {
  background-color: transparent;
  border-color: #72c02c;
  opacity: .5;
  -webkit-transform: scale(0.9);
  -ms-transform: scale(0.9);
  transform: scale(0.9); }

.u-carousel-indicators-v35--white li span {
  background-color: #fff; }

.u-carousel-indicators-v35--white li.slick-active span {
  border-color: #fff; }

.u-carousel-indicators-v35--main li span {
  background-color: #000; }

.u-carousel-indicators-v35--main li.slick-active span {
  border-color: #000; }

/*------------------------------------
  Breadcrumbs v1
------------------------------------*/
.u-breadcrumbs-v1 {
  padding-left: 0;
  margin-bottom: 0; }

.u-breadcrumbs-v1 > * {
  display: inline-block;
  vertical-align: middle; }

.u-breadcrumbs-v1 a:hover {
  text-decoration: none; }

/*------------------------------------
  Breadcrumbs v2
------------------------------------*/
.u-breadcrumbs-v2 {
  padding-left: 0;
  margin-bottom: 0; }

.u-breadcrumbs-v2 > * {
  display: inline-block;
  vertical-align: middle; }

.u-breadcrumbs-v2 > * > * {
  display: block;
  border-radius: 3px; }

.u-breadcrumbs-v2 a:hover {
  text-decoration: none; }

.u-breadcrumbs-v2 [class*="u-triangle"]:not([class*="__front"]):not([class*="__back"]) {
  display: none; }

@media (min-width: 768px) {
  .u-breadcrumbs-v2 > * {
    position: relative;
    background-color: #fff; }

  .u-breadcrumbs-v2 > * > * {
    border-radius: 0; }

  .u-breadcrumbs-v2 > *:first-child > * {
    border-radius: 5px 0 0 5px; }

  .u-breadcrumbs-v2 > *:last-child > * {
    border-radius: 0 5px 5px 0; }

  .u-breadcrumbs-v2 [class*="u-triangle"]:not([class*="__front"]):not([class*="__back"]) {
    top: 0;
    z-index: 2;
    display: block;
    width: 20px;
    height: 100%;
    margin-left: -0.05em; } }
/*------------------------------------
  Dot line v1
------------------------------------*/
.u-dot-line-v1,
.u-dot-line-v1-2 {
  position: relative;
  display: block;
  width: 100%;
  font-size: 0; }

.u-dot-line-v1::before, .u-dot-line-v1::after,
.u-dot-line-v1-2::before,
.u-dot-line-v1-2::after {
  content: "";
  position: absolute;
  top: 50%;
  display: block;
  width: calc(50% + 30px);
  border-top-width: 1px;
  border-top-style: solid;
  margin-top: -1px; }

.u-dot-line-v1::before,
.u-dot-line-v1-2::before {
  left: -30px; }

li:first-child .u-dot-line-v1::before, li:first-child
.u-dot-line-v1-2::before {
  display: none; }

.u-dot-line-v1::after,
.u-dot-line-v1-2::after {
  right: -30px; }

li:last-child .u-dot-line-v1::after, li:last-child
.u-dot-line-v1-2::after {
  display: none; }

.u-dot-line-v1__inner,
.u-dot-line-v1-2__inner {
  position: relative;
  z-index: 2;
  display: inline-block;
  width: 30px;
  height: 30px;
  border-width: 1px;
  border-style: solid;
  border-radius: 50%; }

.u-dot-line-v1__inner::before,
.u-dot-line-v1-2__inner::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 12px;
  height: 12px;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 50%; }

.u-dot-line-v1-2::before, .u-dot-line-v1-2::after,
.u-dot-line-v1-2-2::before,
.u-dot-line-v1-2-2::after {
  display: none; }

@media (min-width: 992px) {
  .u-dot-line-v1-2::before, .u-dot-line-v1-2::after {
    display: block; } }
/*------------------------------------
  Dot line v2
------------------------------------*/
.u-dot-line-v2,
.u-dot-line-v2-2 {
  position: relative;
  display: block;
  width: 100%;
  font-size: 0; }

.u-dot-line-v2::before, .u-dot-line-v2::after,
.u-dot-line-v2-2::before,
.u-dot-line-v2-2::after {
  content: "";
  position: absolute;
  top: 50%;
  display: block;
  width: calc(50% + 30px);
  border-top-width: 1px;
  border-top-style: solid;
  margin-top: -1px; }

.u-dot-line-v2::before,
.u-dot-line-v2-2::before {
  left: -30px; }

li:first-child .u-dot-line-v2::before, li:first-child
.u-dot-line-v2-2::before {
  display: none; }

.u-dot-line-v2::after,
.u-dot-line-v2-2::after {
  right: -30px; }

li:last-child .u-dot-line-v2::after, li:last-child
.u-dot-line-v2-2::after {
  display: none; }

.u-dot-line-v2__inner,
.u-dot-line-v2-2__inner {
  position: relative;
  z-index: 2;
  display: inline-block;
  width: 20px;
  height: 20px; }

.u-dot-line-v2__inner::before,
.u-dot-line-v2-2__inner::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 10px;
  height: 10px;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-width: 1px;
  border-style: solid;
  border-radius: 50%; }

.u-dot-line-v2-2::before, .u-dot-line-v2-2::after,
.u-dot-line-v2-2-2::before,
.u-dot-line-v2-2-2::after {
  display: none; }

@media (min-width: 992px) {
  .u-dot-line-v2-2::before, .u-dot-line-v2-2::after {
    display: block; } }
/*------------------------------------
  Heading-v1
------------------------------------*/
[class*="u-heading-v1-"] {
  position: relative; }

[class*="u-heading-v1-"]::before, [class*="u-heading-v1-"]::after {
  content: "";
  position: absolute;
  left: auto;
  right: 0;
  width: 100%;
  height: 0;
  border-top-width: 1px;
  border-color: inherit; }

[class*="u-heading-v1-"].text-center::before, [class*="u-heading-v1-"].text-center::after {
  left: 0;
  right: 0; }

[class*="u-heading-v1-"].text-right::before, [class*="u-heading-v1-"].text-right::after {
  left: 0;
  right: auto; }

.u-heading-v1__title {
  position: relative;
  display: inline-block;
  margin-bottom: 0;
  padding-right: 1.07143rem;
  background-color: inherit;
  z-index: 2; }

.text-right .u-heading-v1__title {
  padding-left: 1.07143rem;
  padding-right: 0; }

.text-center .u-heading-v1__title {
  padding-left: 1.07143rem;
  padding-right: 1.07143rem; }

/*------------------------------------
  Heading-v1-1
------------------------------------*/
.u-heading-v1-1::before {
  top: 48%;
  border-top-style: solid; }

.u-heading-v1-1::after {
  top: 58%;
  border-top-style: solid; }

/*------------------------------------
  Heading-v1-2
------------------------------------*/
.u-heading-v1-2::before {
  top: 48%;
  border-top-style: dashed; }

.u-heading-v1-2::after {
  top: 58%;
  border-top-style: dashed; }

/*------------------------------------
  Heading-v1-3
------------------------------------*/
.u-heading-v1-3::before {
  top: 48%;
  border-top-style: dotted; }

.u-heading-v1-3::after {
  top: 58%;
  border-top-style: dotted; }

/*------------------------------------
  Heading-v1-4
------------------------------------*/
.u-heading-v1-4::before {
  top: 50%;
  border-top-style: solid; }

/*------------------------------------
  Heading-v1-5
------------------------------------*/
.u-heading-v1-5::before {
  top: 50%;
  border-top-style: dashed; }

/*------------------------------------
  Heading-v1-6
------------------------------------*/
.u-heading-v1-6::before {
  top: 50%;
  border-top-style: dotted; }

/*------------------------------------
  Heading-v1-7
------------------------------------*/
.u-heading-v1-7 {
  background: url('data:image/svg+xml,<svg version="1.1" xmlns="http://www.w3.org/2000/svg" width="9px" height="6px"><polygon opacity="0.2" points="4.5,4.5 0,0 0,1.208 4.5,5.708 9,1.208 9,0 "/></svg>') 0 50% repeat-x; }

/*------------------------------------
  Heading-v2
------------------------------------*/
.u-heading-v2-1--bottom::after, .u-heading-v2-1--top::before, .u-heading-v2-2--bottom::after, .u-heading-v2-2--top::before, .u-heading-v2-3--bottom::after, .u-heading-v2-3--top::before, .u-heading-v2-4--bottom::after, .u-heading-v2-4--top::before, .u-heading-v2-5--bottom::after, .u-heading-v2-5--top::before, .u-heading-v2-6--bottom::after, .u-heading-v2-6--top::before, .u-heading-v2-7--bottom::after, .u-heading-v2-7--top::before {
  content: "";
  display: inline-block;
  border-top-style: solid;
  border-color: inherit; }

/*------------------------------------
  Heading-v2-1
------------------------------------*/
.u-heading-v2-1--bottom::after, .u-heading-v2-1--top::before {
  width: 3.14286rem;
  border-top-width: 2px; }

.u-heading-v2-1--bottom::after {
  margin-top: 1.78571rem; }

.u-heading-v2-1--top::before {
  margin-bottom: 1.78571rem; }

/*------------------------------------
  Heading-v2-2
------------------------------------*/
.u-heading-v2-2--bottom::after, .u-heading-v2-2--top::before {
  width: 2.71429rem;
  border-top-width: 5px; }

.u-heading-v2-2--bottom::after {
  margin-top: 1.78571rem; }

.u-heading-v2-2--top::before {
  margin-bottom: 1.78571rem; }

/*------------------------------------
  Heading-v2-3
------------------------------------*/
.u-heading-v2-3--bottom::after, .u-heading-v2-3--top::before {
  width: 5rem;
  border-top-width: 1px; }

.u-heading-v2-3--bottom::after {
  margin-top: 1.07143rem; }

.u-heading-v2-3--top::before {
  margin-bottom: 1.07143rem; }

/*------------------------------------
  Heading-v2-4
------------------------------------*/
.u-heading-v2-4--bottom::after, .u-heading-v2-4--top::before {
  width: 5rem;
  border-top-width: 10px; }

.u-heading-v2-4--bottom::after {
  margin-top: 2.14286rem; }

.u-heading-v2-4--top::before {
  margin-bottom: 2.14286rem; }

/*------------------------------------
  Heading-v2-5
------------------------------------*/
.u-heading-v2-5--bottom::after, .u-heading-v2-5--top::before {
  width: 5rem;
  border-top-width: 2px; }

.u-heading-v2-5--bottom::after {
  margin-top: 1.42857rem; }

.u-heading-v2-5--top::before {
  margin-bottom: 1.42857rem; }

/*------------------------------------
  Heading-v2-6
------------------------------------*/
.u-heading-v2-6--bottom::after, .u-heading-v2-6--top::before {
  width: 2.14286rem;
  border-top-width: 1px; }

.u-heading-v2-6--bottom::after {
  margin-top: 0.71429rem; }

.u-heading-v2-6--top::before {
  margin-bottom: 0.71429rem; }

/*------------------------------------
  Heading-v2-7
------------------------------------*/
.u-heading-v2-7--bottom::after, .u-heading-v2-7--top::before {
  width: 12rem;
  border-top-width: 10px; }

.u-heading-v2-7--bottom::after {
  margin-top: 2.85714rem; }

.u-heading-v2-7--top::before {
  margin-bottom: 2.85714rem; }

/*------------------------------------
  Heading-v3
------------------------------------*/
[class*="u-heading-v3-"] {
  border-bottom: 1px dotted #ccc; }

.u-heading-v3__title {
  position: relative;
  top: 1px;
  display: inline-block;
  margin: 0;
  padding-bottom: 0.71429rem;
  border-bottom: 1px solid #555; }

/*------------------------------------
  Heading-v4
------------------------------------*/
[class*="u-heading-v4-"] {
  padding: 0.14286rem 0 0.21429rem 1.42857rem;
  border-left-width: 4px;
  border-left-style: solid;
  border-color: inherit; }

[class*="u-heading-v4-"].text-right {
  padding: 0.14286rem 1.42857rem 0.21429rem 0;
  border-left-width: 0;
  border-right-width: 4px;
  border-right-style: solid; }

/*------------------------------------
  Heading-v5
------------------------------------*/
.u-heading-v5__title {
  position: relative;
  display: inline-block;
  line-height: 1; }

.u-heading-v5__title::before {
  content: "";
  position: absolute;
  display: inline-block;
  width: 0.85714rem;
  height: 0.85714rem;
  background: #555; }

.u-heading-v5-color-primary .u-heading-v5__title::before {
  background: #72c02c; }

.u-heading-v5-color-gray-light-v2 .u-heading-v5__title::before {
  background: #ccc; }

.u-heading-v5-color-white .u-heading-v5__title::before {
  background: #fff; }

.u-heading-v5-rounded-50x .u-heading-v5__title::before {
  border-radius: 50%; }

/*------------------------------------
  Heading-v5-1
------------------------------------*/
.u-heading-v5-1 .u-heading-v5__title {
  padding-top: 1.78571rem; }

.u-heading-v5-1 .u-heading-v5__title::before {
  top: 0;
  left: 2px; }

.u-heading-v5-1.text-center .u-heading-v5__title::before {
  left: 50%;
  margin-left: -6px; }

.u-heading-v5-1.text-right .u-heading-v5__title::before {
  left: auto;
  right: 2px; }

/*------------------------------------
  Heading-v5-2
------------------------------------*/
.u-heading-v5-2 .u-heading-v5__title::before {
  left: 0;
  bottom: 3px; }

.u-heading-v5-2.text-right .u-heading-v5__title::before {
  left: auto;
  right: 0; }

.u-heading-v5-2 .u-heading-v5__title {
  padding-left: 1.78571rem; }

.u-heading-v5-2.text-right .u-heading-v5__title {
  padding-right: 1.78571rem; }

/*------------------------------------
  Heading-v5-3
------------------------------------*/
.u-heading-v5-3 .u-heading-v5__title::before {
  left: 2px;
  bottom: 0; }

.u-heading-v5-3.text-center .u-heading-v5__title::before {
  left: 50%;
  margin-left: -6px; }

.u-heading-v5-3.text-right .u-heading-v5__title::before {
  left: auto;
  right: 2px; }

.u-heading-v5-3 .u-heading-v5__title {
  padding-bottom: 1.78571rem; }

/*------------------------------------
  Heading-v6
------------------------------------*/
.u-heading-v6__title {
  display: inline-block;
  position: relative; }

.u-heading-v6-1 .u-heading-v6__title::after, .u-heading-v6-1.text-center .u-heading-v6__title::before, .u-heading-v6-1.text-right .u-heading-v6__title::before, .u-heading-v6-2 .u-heading-v6__title::after, .u-heading-v6-2.text-center .u-heading-v6__title::before, .u-heading-v6-2.text-right .u-heading-v6__title::before {
  content: "";
  position: absolute;
  top: 50%;
  display: inline-block;
  width: 5rem;
  border-top-width: 1px;
  border-top-style: solid;
  border-color: inherit; }

/*------------------------------------
  Heading-v6-1
------------------------------------*/
.u-heading-v6-1 .u-heading-v6__title,
.u-heading-v6-1 .u-heading-v6__subtitle {
  padding-right: 6.42857rem; }

.u-heading-v6-1.text-center .u-heading-v6__title,
.u-heading-v6-1.text-right .u-heading-v6__title,
.u-heading-v6-1.text-center .u-heading-v6__subtitle,
.u-heading-v6-1.text-right .u-heading-v6__subtitle {
  padding-left: 6.42857rem; }

.u-heading-v6-1.text-right .u-heading-v6__title,
.u-heading-v6-1.text-right .u-heading-v6__subtitle {
  padding-right: 0; }

.u-heading-v6-1 .u-heading-v6__title::after {
  right: 0; }

.u-heading-v6-1.text-center .u-heading-v6__title::before {
  left: 0; }

.u-heading-v6-1.text-right .u-heading-v6__title::before {
  left: 0; }

.u-heading-v6-1.text-right .u-heading-v6__title::after {
  display: none; }

/*------------------------------------
  Heading-v6-1
------------------------------------*/
.u-heading-v6-2 .u-heading-v6__title,
.u-heading-v6-2 .u-heading-v6__subtitle {
  padding-left: 6.42857rem; }

.u-heading-v6-2.text-center .u-heading-v6__title,
.u-heading-v6-2.text-right .u-heading-v6__title,
.u-heading-v6-2.text-center .u-heading-v6__subtitle,
.u-heading-v6-2.text-right .u-heading-v6__subtitle {
  padding-right: 6.42857rem; }

.u-heading-v6-2.text-right .u-heading-v6__title,
.u-heading-v6-2.text-right .u-heading-v6__subtitle {
  padding-left: 0; }

.u-heading-v6-2 .u-heading-v6__title::after {
  left: 0; }

.u-heading-v6-2.text-center .u-heading-v6__title::before {
  right: 0; }

.u-heading-v6-2.text-right .u-heading-v6__title::before {
  right: 0; }

.u-heading-v6-2.text-right .u-heading-v6__title::after {
  display: none; }

/*------------------------------------
  Heading-v7
------------------------------------*/
.u-heading-v7-divider::after, .text-center .u-heading-v7-divider::before, .text-right .u-heading-v7-divider::before {
  content: "";
  position: absolute;
  top: 52%;
  display: inline-block;
  width: 2.85714rem;
  border-top-width: 1px;
  border-top-style: solid;
  border-color: inherit; }

.u-heading-v7-divider {
  position: relative;
  display: inline-block; }

.u-heading-v7-divider::after {
  right: -3.92857rem; }

.text-center .u-heading-v7-divider::before {
  left: -3.92857rem; }

.text-right .u-heading-v7-divider::before {
  left: -3.92857rem; }

.text-right .u-heading-v7-divider::after {
  display: none; }

.u-heading-v7-divider__icon {
  display: inline-block;
  font-size: 1.4rem; }

/*------------------------------------
  Heading-v7-1
------------------------------------*/
.u-heading-v7-1 .u-heading-v7-divider__icon {
  font-size: .6rem; }

/*------------------------------------
  Heading-v7-3
------------------------------------*/
.u-heading-v7-3 .u-heading-v7-divider::after,
.u-heading-v7-3 .u-heading-v7-divider::before {
  display: none; }

/*------------------------------------
  Heading-v8
------------------------------------*/
.u-heading-v8-1 .u-heading-v8__title strong, .u-heading-v8-2 .u-heading-v8__title strong {
  display: inline-block;
  font-weight: inherit; }

/*------------------------------------
  Heading-v8-1
------------------------------------*/
.u-heading-v8-1 .u-heading-v8__title strong {
  padding: 0.07143rem 0.5rem; }

/*------------------------------------
  Heading-v8-2
------------------------------------*/
.u-heading-v8-2 .u-heading-v8__title strong {
  padding: 0.71429rem 1.07143rem; }

/*------------------------------------
  Heading-v9
------------------------------------*/
.u-heading-v9 {
  position: relative;
  text-align: center; }

.u-heading-v9::before {
  content: "";
  position: absolute;
  left: 50%;
  display: block;
  margin-left: -35px;
  width: 70px;
  height: 96px;
  border: 2px solid #72c02c; }

.u-heading-v9--left {
  padding-left: 35px;
  text-align: left; }

.u-heading-v9--left::before {
  left: 0;
  margin-left: 0; }

.u-heading-v9--right {
  padding-right: 35px;
  text-align: right; }

.u-heading-v9--right::before {
  left: auto;
  right: 0;
  margin-left: 0; }

.u-heading-v9 * {
  position: relative;
  z-index: 3; }

/*------------------------------------
  Heading-v10
------------------------------------*/
.u-heading-v10 {
  position: relative;
  text-align: center; }

.u-heading-v10__downer {
  font-size: 115px;
  line-height: 1;
  opacity: .04; }

.u-heading-v10__upper {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  font-size: 34px;
  color: #72c02c; }

/*------------------------------------
  Headings
------------------------------------*/
/* Massive Underline */
.u-heading-massive-underline {
  position: relative; }

.u-heading-massive-underline::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: .2em;
  height: .3em;
  background-color: rgba(114, 192, 44, 0.8);
  z-index: -1; }

/* Heading With Dot */
.u-header-title-dot::after {
  content: ".";
  color: #72c02c;
  display: inline-block;
  font-size: 35px; }

/*------------------------------------
  Nonstandart BG's
------------------------------------*/
.u-triangle-v1, .u-triangle-v1-2, .u-triangle-v2, .u-triangle-v3, .u-triangle-v4, .u-triangle-v5, .u-triangle-v6 {
  position: relative; }

.u-triangle-v1::before, .u-triangle-v1-2::before, .u-triangle-v2::before, .u-triangle-v3::before, .u-triangle-v4::before, .u-triangle-v5::before, .u-triangle-v6::before {
  content: "";
  position: absolute;
  display: block;
  z-index: 10; }

.u-triangle-v1::before, .u-triangle-v1-2::before, .u-triangle-v2::before, .u-triangle-v5::before, .u-triangle-v6::before {
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent; }

.u-triangle-v1.u-triangle-top.g-bg-primary::before, .u-triangle-v1.u-triangle-left.g-bg-primary::before, .u-triangle-v1-2.u-triangle-top.g-bg-primary::before, .u-triangle-v1-2.u-triangle-left.g-bg-primary::before, .u-triangle-v2.u-triangle-top.g-bg-primary::before, .u-triangle-v2.u-triangle-left.g-bg-primary::before, .u-triangle-v5.u-triangle-top.g-bg-primary::before, .u-triangle-v5.u-triangle-left.g-bg-primary::before, .u-triangle-v6.u-triangle-top.g-bg-primary::before, .u-triangle-v6.u-triangle-left.g-bg-primary::before {
  border-bottom-color: #72c02c; }

.u-triangle-v1.u-triangle-top.g-bg-white::before, .u-triangle-v1.u-triangle-left.g-bg-white::before, .u-triangle-v1-2.u-triangle-top.g-bg-white::before, .u-triangle-v1-2.u-triangle-left.g-bg-white::before, .u-triangle-v2.u-triangle-top.g-bg-white::before, .u-triangle-v2.u-triangle-left.g-bg-white::before, .u-triangle-v5.u-triangle-top.g-bg-white::before, .u-triangle-v5.u-triangle-left.g-bg-white::before, .u-triangle-v6.u-triangle-top.g-bg-white::before, .u-triangle-v6.u-triangle-left.g-bg-white::before {
  border-bottom-color: #fff; }

.u-triangle-v1.u-triangle-top.g-bg-gray-light-v9::before, .u-triangle-v1.u-triangle-left.g-bg-gray-light-v9::before, .u-triangle-v1-2.u-triangle-top.g-bg-gray-light-v9::before, .u-triangle-v1-2.u-triangle-left.g-bg-gray-light-v9::before, .u-triangle-v2.u-triangle-top.g-bg-gray-light-v9::before, .u-triangle-v2.u-triangle-left.g-bg-gray-light-v9::before, .u-triangle-v5.u-triangle-top.g-bg-gray-light-v9::before, .u-triangle-v5.u-triangle-left.g-bg-gray-light-v9::before, .u-triangle-v6.u-triangle-top.g-bg-gray-light-v9::before, .u-triangle-v6.u-triangle-left.g-bg-gray-light-v9::before {
  border-bottom-color: #f7f7f7; }

.u-triangle-v1.u-triangle-top.g-bg-black::before, .u-triangle-v1.u-triangle-left.g-bg-black::before, .u-triangle-v1-2.u-triangle-top.g-bg-black::before, .u-triangle-v1-2.u-triangle-left.g-bg-black::before, .u-triangle-v2.u-triangle-top.g-bg-black::before, .u-triangle-v2.u-triangle-left.g-bg-black::before, .u-triangle-v5.u-triangle-top.g-bg-black::before, .u-triangle-v5.u-triangle-left.g-bg-black::before, .u-triangle-v6.u-triangle-top.g-bg-black::before, .u-triangle-v6.u-triangle-left.g-bg-black::before {
  border-bottom-color: #000; }

.u-triangle-v1.u-triangle-bottom.g-bg-primary::before, .u-triangle-v1.u-triangle-right.g-bg-primary::before, .u-triangle-v1-2.u-triangle-bottom.g-bg-primary::before, .u-triangle-v1-2.u-triangle-right.g-bg-primary::before, .u-triangle-v2.u-triangle-bottom.g-bg-primary::before, .u-triangle-v2.u-triangle-right.g-bg-primary::before, .u-triangle-v5.u-triangle-bottom.g-bg-primary::before, .u-triangle-v5.u-triangle-right.g-bg-primary::before, .u-triangle-v6.u-triangle-bottom.g-bg-primary::before, .u-triangle-v6.u-triangle-right.g-bg-primary::before {
  border-top-color: #72c02c; }

.u-triangle-v1.u-triangle-bottom.g-bg-white::before, .u-triangle-v1.u-triangle-right.g-bg-white::before, .u-triangle-v1-2.u-triangle-bottom.g-bg-white::before, .u-triangle-v1-2.u-triangle-right.g-bg-white::before, .u-triangle-v2.u-triangle-bottom.g-bg-white::before, .u-triangle-v2.u-triangle-right.g-bg-white::before, .u-triangle-v5.u-triangle-bottom.g-bg-white::before, .u-triangle-v5.u-triangle-right.g-bg-white::before, .u-triangle-v6.u-triangle-bottom.g-bg-white::before, .u-triangle-v6.u-triangle-right.g-bg-white::before {
  border-top-color: #fff; }

.u-triangle-v1.u-triangle-bottom.g-bg-gray-light-v9::before, .u-triangle-v1.u-triangle-right.g-bg-gray-light-v9::before, .u-triangle-v1-2.u-triangle-bottom.g-bg-gray-light-v9::before, .u-triangle-v1-2.u-triangle-right.g-bg-gray-light-v9::before, .u-triangle-v2.u-triangle-bottom.g-bg-gray-light-v9::before, .u-triangle-v2.u-triangle-right.g-bg-gray-light-v9::before, .u-triangle-v5.u-triangle-bottom.g-bg-gray-light-v9::before, .u-triangle-v5.u-triangle-right.g-bg-gray-light-v9::before, .u-triangle-v6.u-triangle-bottom.g-bg-gray-light-v9::before, .u-triangle-v6.u-triangle-right.g-bg-gray-light-v9::before {
  border-top-color: #f7f7f7; }

.u-triangle-v1.u-triangle-bottom.g-bg-black::before, .u-triangle-v1.u-triangle-right.g-bg-black::before, .u-triangle-v1-2.u-triangle-bottom.g-bg-black::before, .u-triangle-v1-2.u-triangle-right.g-bg-black::before, .u-triangle-v2.u-triangle-bottom.g-bg-black::before, .u-triangle-v2.u-triangle-right.g-bg-black::before, .u-triangle-v5.u-triangle-bottom.g-bg-black::before, .u-triangle-v5.u-triangle-right.g-bg-black::before, .u-triangle-v6.u-triangle-bottom.g-bg-black::before, .u-triangle-v6.u-triangle-right.g-bg-black::before {
  border-top-color: #000; }

.u-triangle-v1.u-triangle-top::before, .u-triangle-v1.u-triangle-bottom::before, .u-triangle-v1.u-triangle-left::before, .u-triangle-v1.u-triangle-right::before {
  left: 50%;
  margin-left: -20px; }

.u-triangle-v1.u-triangle-top::before, .u-triangle-v1.u-triangle-left::before {
  top: -25px;
  border-width: 0 20px 25px 20px; }

.u-triangle-v1.u-triangle-bottom::before, .u-triangle-v1.u-triangle-right::before {
  bottom: -25px;
  border-width: 25px 20px 0 20px; }

.u-triangle-v1-2.u-triangle-left.g-bg-primary::before, .u-triangle-v1-2.u-triangle-left.g-bg-white::before, .u-triangle-v1-2.u-triangle-left.g-bg-gray-light-v9::before, .u-triangle-v1-2.u-triangle-left.g-bg-black::before, .u-triangle-v1-2.u-triangle-right.g-bg-primary::before, .u-triangle-v1-2.u-triangle-right.g-bg-white::before, .u-triangle-v1-2.u-triangle-right.g-bg-gray-light-v9::before, .u-triangle-v1-2.u-triangle-right.g-bg-black::before {
  border-bottom-color: transparent;
  border-top-color: transparent; }

.u-triangle-v1-2.u-triangle-left::before, .u-triangle-v1-2.u-triangle-right::before {
  top: 50%;
  bottom: auto;
  left: auto;
  margin-top: -5px;
  margin-left: 0; }

.u-triangle-v1-2.u-triangle-left::before {
  left: -5px;
  border-width: 5px 5px 5px 0; }

.u-triangle-v1-2.u-triangle-left.g-bg-primary::before {
  border-right-color: #72c02c; }

.u-triangle-v1-2.u-triangle-left.g-bg-white::before {
  border-right-color: #fff; }

.u-triangle-v1-2.u-triangle-left.g-bg-gray-light-v9::before {
  border-right-color: #f7f7f7; }

.u-triangle-v1-2.u-triangle-left.g-bg-black::before {
  border-right-color: #000; }

.u-triangle-v1-2.u-triangle-right::before {
  right: -5px;
  border-width: 5px 0 5px 5px; }

.u-triangle-v1-2.u-triangle-right.g-bg-primary::before {
  border-left-color: #72c02c; }

.u-triangle-v1-2.u-triangle-right.g-bg-white::before {
  border-left-color: #fff; }

.u-triangle-v1-2.u-triangle-right.g-bg-gray-light-v9::before {
  border-left-color: #f7f7f7; }

.u-triangle-v1-2.u-triangle-right.g-bg-black::before {
  border-left-color: #000; }

.u-triangle-v2.u-triangle-top::before, .u-triangle-v2.u-triangle-bottom::before {
  left: 45px; }

.u-triangle-v2.u-triangle-left::before, .u-triangle-v2.u-triangle-right::before {
  top: 23px; }

.u-triangle-v2.u-triangle-top::before {
  top: -15px;
  border-width: 0 17px 15px 17px; }

.u-triangle-v2.u-triangle-bottom::before {
  bottom: -15px;
  border-width: 15px 17px 0 17px; }

.u-triangle-v2.u-triangle-left::before {
  left: -15px;
  border-width: 17px 15px 17px 0; }

.u-triangle-v2.u-triangle-right::before {
  right: -15px;
  border-width: 17px 0 17px 15px; }

.u-triangle-v3::before, .u-triangle-v4::before {
  background-repeat: no-repeat; }

.u-triangle-v3.u-triangle-top::before, .u-triangle-v3.u-triangle-bottom::before, .u-triangle-v3.u-triangle-left::before, .u-triangle-v3.u-triangle-right::before, .u-triangle-v4.u-triangle-top::before, .u-triangle-v4.u-triangle-bottom::before, .u-triangle-v4.u-triangle-left::before, .u-triangle-v4.u-triangle-right::before {
  height: 50px;
  left: 0; }

.u-triangle-v3.u-triangle-top::before, .u-triangle-v3.u-triangle-left::before, .u-triangle-v4.u-triangle-top::before, .u-triangle-v4.u-triangle-left::before {
  top: -50px; }

.u-triangle-v3.u-triangle-bottom::before, .u-triangle-v3.u-triangle-right::before, .u-triangle-v4.u-triangle-bottom::before, .u-triangle-v4.u-triangle-right::before {
  bottom: -50px; }

.u-triangle-v3.u-triangle-top::before, .u-triangle-v3.u-triangle-left::before {
  width: 100%;
  background-size: 100%;
  background-position: top right; }

.u-triangle-v3.u-triangle-top.g-bg-primary::before, .u-triangle-v3.u-triangle-left.g-bg-primary::before {
  background-image: linear-gradient(to bottom right, transparent 49.6%, #72c02c 50%); }

.u-triangle-v3.u-triangle-top.g-bg-white::before, .u-triangle-v3.u-triangle-left.g-bg-white::before {
  background-image: linear-gradient(to bottom right, transparent 49.6%, #fff 50%); }

.u-triangle-v3.u-triangle-top.g-bg-gray-light-v9::before, .u-triangle-v3.u-triangle-left.g-bg-gray-light-v9::before {
  background-image: linear-gradient(to bottom right, transparent 49.6%, #f7f7f7 50%); }

.u-triangle-v3.u-triangle-top.g-bg-black::before, .u-triangle-v3.u-triangle-left.g-bg-black::before {
  background-image: linear-gradient(to bottom right, transparent 49.6%, #000 50%); }

.u-triangle-v3.u-triangle-bottom::before, .u-triangle-v3.u-triangle-right::before {
  width: 100%;
  background-size: 100%;
  background-position: top right; }

.u-triangle-v3.u-triangle-bottom.g-bg-primary::before, .u-triangle-v3.u-triangle-right.g-bg-primary::before {
  background-image: linear-gradient(to top right, transparent 49.6%, #72c02c 50%); }

.u-triangle-v3.u-triangle-bottom.g-bg-white::before, .u-triangle-v3.u-triangle-right.g-bg-white::before {
  background-image: linear-gradient(to top right, transparent 49.6%, #fff 50%); }

.u-triangle-v3.u-triangle-bottom.g-bg-gray-light-v9::before, .u-triangle-v3.u-triangle-right.g-bg-gray-light-v9::before {
  background-image: linear-gradient(to top right, transparent 49.6%, #f7f7f7 50%); }

.u-triangle-v3.u-triangle-bottom.g-bg-black::before, .u-triangle-v3.u-triangle-right.g-bg-black::before {
  background-image: linear-gradient(to top right, transparent 49.6%, #000 50%); }

.u-triangle-v4.u-triangle-top::before, .u-triangle-v4.u-triangle-left::before {
  width: 100%;
  background-size: 50.2% 100%;
  background-position: top left, top right; }

.u-triangle-v4.u-triangle-top.g-bg-primary::before, .u-triangle-v4.u-triangle-left.g-bg-primary::before {
  background-image: linear-gradient(to bottom right, transparent 49.6%, #72c02c 50%), linear-gradient(to bottom left, transparent 49.6%, #72c02c 50%); }

.u-triangle-v4.u-triangle-top.g-bg-white::before, .u-triangle-v4.u-triangle-left.g-bg-white::before {
  background-image: linear-gradient(to bottom right, transparent 49.6%, #fff 50%), linear-gradient(to bottom left, transparent 49.6%, #fff 50%); }

.u-triangle-v4.u-triangle-top.g-bg-gray-light-v9::before, .u-triangle-v4.u-triangle-left.g-bg-gray-light-v9::before {
  background-image: linear-gradient(to bottom right, transparent 49.6%, #f7f7f7 50%), linear-gradient(to bottom left, transparent 49.6%, #f7f7f7 50%); }

.u-triangle-v4.u-triangle-top.g-bg-black::before, .u-triangle-v4.u-triangle-left.g-bg-black::before {
  background-image: linear-gradient(to bottom right, transparent 49.6%, #000 50%), linear-gradient(to bottom left, transparent 49.6%, #000 50%); }

.u-triangle-v4.u-triangle-bottom::before, .u-triangle-v4.u-triangle-right::before {
  width: 100%;
  background-size: 50.2% 100%;
  background-position: top left, top right; }

.u-triangle-v4.u-triangle-bottom.g-bg-primary::before, .u-triangle-v4.u-triangle-right.g-bg-primary::before {
  background-image: linear-gradient(to top right, transparent 49.6%, #72c02c 50%), linear-gradient(to top left, transparent 49.6%, #72c02c 50%); }

.u-triangle-v4.u-triangle-bottom.g-bg-white::before, .u-triangle-v4.u-triangle-right.g-bg-white::before {
  background-image: linear-gradient(to top right, transparent 49.6%, #fff 50%), linear-gradient(to top left, transparent 49.6%, #fff 50%); }

.u-triangle-v4.u-triangle-bottom.g-bg-gray-light-v9::before, .u-triangle-v4.u-triangle-right.g-bg-gray-light-v9::before {
  background-image: linear-gradient(to top right, transparent 49.6%, #f7f7f7 50%), linear-gradient(to top left, transparent 49.6%, #f7f7f7 50%); }

.u-triangle-v4.u-triangle-bottom.g-bg-black::before, .u-triangle-v4.u-triangle-right.g-bg-black::before {
  background-image: linear-gradient(to top right, transparent 49.6%, #000 50%), linear-gradient(to top left, transparent 49.6%, #000 50%); }

.u-triangle-v5.u-triangle-top::before, .u-triangle-v5.u-triangle-bottom::before {
  left: 80px; }

.u-triangle-v5.u-triangle-left::before, .u-triangle-v5.u-triangle-right::before {
  top: 23px; }

.u-triangle-v5.u-triangle-top::before {
  top: -22px;
  border-width: 22px 0 0 22px; }

.u-triangle-v5.u-triangle-bottom::before {
  bottom: -22px;
  border-width: 22px 22px 0 0; }

.u-triangle-v5.u-triangle-left::before {
  left: -22px;
  border-width: 0 22px 22px 0; }

.u-triangle-v5.u-triangle-right::before {
  right: -22px;
  border-width: 22px 22px 0 0; }

.u-triangle-v6.u-triangle-top::before, .u-triangle-v6.u-triangle-bottom::before {
  left: 8%; }

.u-triangle-v6.u-triangle-left::before, .u-triangle-v6.u-triangle-right::before {
  top: 8%; }

.u-triangle-v6.u-triangle-top::before {
  top: -22px;
  border-width: 22px 22px 0 0; }

.u-triangle-v6.u-triangle-bottom::before {
  bottom: -22px;
  border-width: 22px 0 0 22px; }

.u-triangle-v6.u-triangle-left::before {
  left: -22px;
  border-width: 22px 22px 0 0; }

.u-triangle-v6.u-triangle-right::before {
  right: -22px;
  border-width: 0 22px 22px 0; }

[class*="u-triangle-inclusive-v1"]:not([class*="__front"]):not([class*="__back"]),
[class*="u-triangle-inclusive-v2"]:not([class*="__front"]):not([class*="__back"]) {
  position: absolute; }

.u-triangle-inclusive-v1--left {
  right: -14px; }

.u-triangle-inclusive-v1--left__front {
  position: absolute;
  top: 1px;
  left: 0; }

.u-triangle-inclusive-v1--left__front {
  border-width: 14px 0 14px 14px;
  border-style: solid;
  border-color: transparent; }

.u-triangle-inclusive-v1--left__back {
  border-width: 15px 0 15px 15px;
  border-style: solid;
  border-color: transparent; }

.u-triangle-inclusive-v1--right {
  left: -14px; }

.u-triangle-inclusive-v1--right__front {
  position: absolute;
  top: 1px;
  right: 0; }

.u-triangle-inclusive-v1--right__front {
  border-width: 14px 14px 14px 0;
  border-style: solid;
  border-color: transparent; }

.u-triangle-inclusive-v1--right__back {
  border-width: 15px 15px 15px 0;
  border-style: solid;
  border-color: transparent; }

.u-triangle-inclusive-v1--top {
  top: -14px; }

.u-triangle-inclusive-v1--top__front {
  position: absolute;
  left: 1px;
  bottom: 0; }

.u-triangle-inclusive-v1--top__front {
  border-width: 0 14px 14px 14px;
  border-style: solid;
  border-color: transparent; }

.u-triangle-inclusive-v1--top__back {
  border-width: 0 15px 15px 15px;
  border-style: solid;
  border-color: transparent; }

.u-triangle-inclusive-v1--bottom {
  bottom: -14px; }

.u-triangle-inclusive-v1--bottom__front {
  position: absolute;
  left: 1px;
  bottom: 1px; }

.u-triangle-inclusive-v1--bottom__front {
  border-width: 14px 14px 0 14px;
  border-style: solid;
  border-color: transparent; }

.u-triangle-inclusive-v1--bottom__back {
  border-width: 15px 15px 0 15px;
  border-style: solid;
  border-color: transparent; }

.u-triangle-inclusive-v2--left {
  left: 100%; }

.u-triangle-inclusive-v2--left__front, .u-triangle-inclusive-v2--left__back {
  position: absolute;
  left: 0;
  height: 100%; }

.u-triangle-inclusive-v2--left__front svg, .u-triangle-inclusive-v2--left__back svg {
  height: 100%;
  vertical-align: middle; }

.u-triangle-inclusive-v2--left__front {
  z-index: 2; }

.u-triangle-inclusive-v2--left__front svg polygon {
  fill: #eee; }

.u-triangle-inclusive-v2--left__back {
  z-index: 1; }

.u-triangle-inclusive-v2--left__back svg polygon {
  fill: #fff; }

.u-triangle-inclusive-v2--right {
  right: 100%; }

.u-triangle-inclusive-v2--right__front, .u-triangle-inclusive-v2--right__back {
  position: absolute;
  right: 0;
  height: 100%; }

.u-triangle-inclusive-v2--right__front svg, .u-triangle-inclusive-v2--right__back svg {
  height: 100%;
  vertical-align: middle; }

.u-triangle-inclusive-v2--right__front {
  z-index: 2; }

.u-triangle-inclusive-v2--right__front svg polygon {
  fill: #eee; }

.u-triangle-inclusive-v2--right__back {
  z-index: 1; }

.u-triangle-inclusive-v2--right__back svg polygon {
  fill: #fff; }

.u-triangle-inclusive-v2--top {
  bottom: 100%; }

.u-triangle-inclusive-v2--top__front, .u-triangle-inclusive-v2--top__back {
  position: absolute;
  bottom: 0;
  width: 100%; }

.u-triangle-inclusive-v2--top__front svg, .u-triangle-inclusive-v2--top__back svg {
  width: 100%;
  vertical-align: bottom; }

.u-triangle-inclusive-v2--top__front {
  z-index: 2; }

.u-triangle-inclusive-v2--top__front svg polygon {
  fill: #eee; }

.u-triangle-inclusive-v2--top__back {
  z-index: 1; }

.u-triangle-inclusive-v2--top__back svg polygon {
  fill: #fff; }

.u-triangle-inclusive-v2--bottom {
  top: 100%; }

.u-triangle-inclusive-v2--bottom__front, .u-triangle-inclusive-v2--bottom__back {
  position: absolute;
  top: 0;
  width: 100%; }

.u-triangle-inclusive-v2--bottom__front svg, .u-triangle-inclusive-v2--bottom__back svg {
  width: 100%;
  vertical-align: top; }

.u-triangle-inclusive-v2--bottom__front {
  z-index: 2; }

.u-triangle-inclusive-v2--bottom__front svg polygon {
  fill: #eee; }

.u-triangle-inclusive-v2--bottom__back {
  z-index: 1; }

.u-triangle-inclusive-v2--bottom__back svg polygon {
  fill: #fff; }

.u-semicircle-v1 {
  position: relative;
  z-index: 10; }

.u-semicircle-v1::before {
  content: "";
  position: absolute;
  z-index: -1;
  display: block;
  width: 150%;
  height: 150%;
  border-radius: 50%; }

.u-semicircle-v1.g-bg-primary::before {
  background: #72c02c; }

.u-semicircle-v1.g-bg-white::before {
  background: #fff; }

.u-semicircle-v1.g-bg-gray-light-v9::before {
  background: #f7f7f7; }

.u-semicircle-v1.g-bg-black::before {
  background: #000; }

.u-semicircle-top::before, .u-semicircle-right::before {
  top: -20%;
  left: -25%; }

.u-semicircle-bottom::before, .u-semicircle-left::before {
  bottom: -20%;
  left: -25%; }

@media (max-width: 575px) {
  .u-triangle-none--xs::before,
  .u-semicircle-none--xs::before {
    display: none; } }
@media (min-width: 576px) {
  .u-triangle-v3.u-triangle-top::before, .u-triangle-v3.u-triangle-bottom::before, .u-triangle-v4.u-triangle-top::before, .u-triangle-v4.u-triangle-bottom::before {
    height: 75px; }

  .u-triangle-v3.u-triangle-left::before, .u-triangle-v3.u-triangle-right::before, .u-triangle-v4.u-triangle-left::before, .u-triangle-v4.u-triangle-right::before {
    width: 75px; }

  .u-triangle-v3.u-triangle-top::before, .u-triangle-v4.u-triangle-top::before {
    top: -75px; }

  .u-triangle-v3.u-triangle-bottom::before, .u-triangle-v4.u-triangle-bottom::before {
    bottom: -75px; }

  .u-triangle-v3.u-triangle-left::before, .u-triangle-v4.u-triangle-left::before {
    left: -75px; }

  .u-triangle-v3.u-triangle-right::before, .u-triangle-v4.u-triangle-right::before {
    right: -75px; } }
@media (max-width: 767px) {
  .u-triangle-none--sm::before,
  .u-semicircle-none--sm::before {
    display: none; } }
@media (min-width: 768px) {
  .u-triangle-v1.u-triangle-left.g-bg-primary::before, .u-triangle-v1.u-triangle-left.g-bg-white::before, .u-triangle-v1.u-triangle-left.g-bg-gray-light-v9::before, .u-triangle-v1.u-triangle-left.g-bg-black::before, .u-triangle-v1.u-triangle-right.g-bg-primary::before, .u-triangle-v1.u-triangle-right.g-bg-white::before, .u-triangle-v1.u-triangle-right.g-bg-gray-light-v9::before, .u-triangle-v1.u-triangle-right.g-bg-black::before {
    border-bottom-color: transparent;
    border-top-color: transparent; }

  .u-triangle-v1.u-triangle-left::before, .u-triangle-v1.u-triangle-right::before {
    top: 50%;
    bottom: auto;
    left: auto;
    margin-top: -20px;
    margin-left: 0; }

  .u-triangle-v1.u-triangle-left::before {
    left: -25px;
    border-width: 20px 25px 20px 0; }

  .u-triangle-v1.u-triangle-left.g-bg-primary::before {
    border-right-color: #72c02c; }

  .u-triangle-v1.u-triangle-left.g-bg-white::before {
    border-right-color: #fff; }

  .u-triangle-v1.u-triangle-left.g-bg-gray-light-v9::before {
    border-right-color: #f7f7f7; }

  .u-triangle-v1.u-triangle-left.g-bg-black::before {
    border-right-color: #000; }

  .u-triangle-v1.u-triangle-right::before {
    right: -25px;
    border-width: 20px 0 20px 25px; }

  .u-triangle-v1.u-triangle-right.g-bg-primary::before {
    border-left-color: #72c02c; }

  .u-triangle-v1.u-triangle-right.g-bg-white::before {
    border-left-color: #fff; }

  .u-triangle-v1.u-triangle-right.g-bg-gray-light-v9::before {
    border-left-color: #f7f7f7; }

  .u-triangle-v1.u-triangle-right.g-bg-black::before {
    border-left-color: #000; }

  .u-triangle-v3.u-triangle-left::before, .u-triangle-v3.u-triangle-right::before, .u-triangle-v4.u-triangle-left::before, .u-triangle-v4.u-triangle-right::before {
    height: 100%;
    left: auto; }

  .u-triangle-v3.u-triangle-left::before, .u-triangle-v4.u-triangle-left::before {
    top: 0; }

  .u-triangle-v3.u-triangle-right::before, .u-triangle-v4.u-triangle-right::before {
    top: 0;
    bottom: auto; }

  .u-triangle-v3.u-triangle-top::before, .u-triangle-v3.u-triangle-bottom::before, .u-triangle-v4.u-triangle-top::before, .u-triangle-v4.u-triangle-bottom::before {
    height: 100px; }

  .u-triangle-v3.u-triangle-left::before, .u-triangle-v3.u-triangle-right::before, .u-triangle-v4.u-triangle-left::before, .u-triangle-v4.u-triangle-right::before {
    width: 100px; }

  .u-triangle-v3.u-triangle-top::before, .u-triangle-v4.u-triangle-top::before {
    top: -100px; }

  .u-triangle-v3.u-triangle-bottom::before, .u-triangle-v4.u-triangle-bottom::before {
    bottom: -100px; }

  .u-triangle-v3.u-triangle-left::before, .u-triangle-v4.u-triangle-left::before {
    left: -100px; }

  .u-triangle-v3.u-triangle-right::before, .u-triangle-v4.u-triangle-right::before {
    right: -100px; }

  .u-triangle-v3.u-triangle-left.g-bg-primary::before {
    background-image: linear-gradient(to bottom right, transparent 49.6%, #72c02c 50%); }

  .u-triangle-v3.u-triangle-left.g-bg-white::before {
    background-image: linear-gradient(to bottom right, transparent 49.6%, #fff 50%); }

  .u-triangle-v3.u-triangle-left.g-bg-gray-light-v9::before {
    background-image: linear-gradient(to bottom right, transparent 49.6%, #f7f7f7 50%); }

  .u-triangle-v3.u-triangle-left.g-bg-black::before {
    background-image: linear-gradient(to bottom right, transparent 49.6%, #000 50%); }

  .u-triangle-v3.u-triangle-right.g-bg-primary::before {
    background-image: linear-gradient(to bottom left, transparent 49.6%, #72c02c 50%); }

  .u-triangle-v3.u-triangle-right.g-bg-white::before {
    background-image: linear-gradient(to bottom left, transparent 49.6%, #fff 50%); }

  .u-triangle-v3.u-triangle-right.g-bg-gray-light-v9::before {
    background-image: linear-gradient(to bottom left, transparent 49.6%, #f7f7f7 50%); }

  .u-triangle-v3.u-triangle-right.g-bg-black::before {
    background-image: linear-gradient(to bottom left, transparent 49.6%, #000 50%); }

  .u-triangle-v4.u-triangle-left::before {
    height: 100%;
    background-size: 100% 50.2%;
    background-position: top right, bottom left; }

  .u-triangle-v4.u-triangle-left.g-bg-primary::before {
    background-image: linear-gradient(to bottom right, transparent 49.6%, #72c02c 50%), linear-gradient(to top right, transparent 49.6%, #72c02c 50%); }

  .u-triangle-v4.u-triangle-left.g-bg-white::before {
    background-image: linear-gradient(to bottom right, transparent 49.6%, #fff 50%), linear-gradient(to top right, transparent 49.6%, #fff 50%); }

  .u-triangle-v4.u-triangle-left.g-bg-gray-light-v9::before {
    background-image: linear-gradient(to bottom right, transparent 49.6%, #f7f7f7 50%), linear-gradient(to top right, transparent 49.6%, #f7f7f7 50%); }

  .u-triangle-v4.u-triangle-left.g-bg-black::before {
    background-image: linear-gradient(to bottom right, transparent 49.6%, #000 50%), linear-gradient(to top right, transparent 49.6%, #000 50%); }

  .u-triangle-v4.u-triangle-right::before {
    height: 100%;
    background-size: 100% 50.2%;
    background-position: top right, bottom left; }

  .u-triangle-v4.u-triangle-right.g-bg-primary::before {
    background-image: linear-gradient(to bottom left, transparent 49.6%, #72c02c 50%), linear-gradient(to top left, transparent 49.6%, #72c02c 50%); }

  .u-triangle-v4.u-triangle-right.g-bg-white::before {
    background-image: linear-gradient(to bottom left, transparent 49.6%, #fff 50%), linear-gradient(to top left, transparent 49.6%, #fff 50%); }

  .u-triangle-v4.u-triangle-right.g-bg-gray-light-v9::before {
    background-image: linear-gradient(to bottom left, transparent 49.6%, #f7f7f7 50%), linear-gradient(to top left, transparent 49.6%, #f7f7f7 50%); }

  .u-triangle-v4.u-triangle-right.g-bg-black::before {
    background-image: linear-gradient(to bottom left, transparent 49.6%, #000 50%), linear-gradient(to top left, transparent 49.6%, #000 50%); }

  .u-semicircle-left::before {
    top: -25%;
    left: -20%; }

  .u-semicircle-right::before {
    top: -25%;
    bottom: auto;
    left: auto;
    right: -20%; } }
@media (max-width: 991px) {
  .u-triangle-none--md::before,
  .u-semicircle-none--md::before {
    display: none; } }
@media (min-width: 992px) {
  .u-triangle-v3.u-triangle-top::before, .u-triangle-v3.u-triangle-bottom::before, .u-triangle-v4.u-triangle-top::before, .u-triangle-v4.u-triangle-bottom::before {
    height: 150px; }

  .u-triangle-v3.u-triangle-left::before, .u-triangle-v3.u-triangle-right::before, .u-triangle-v4.u-triangle-left::before, .u-triangle-v4.u-triangle-right::before {
    width: 150px; }

  .u-triangle-v3.u-triangle-top::before, .u-triangle-v4.u-triangle-top::before {
    top: -150px; }

  .u-triangle-v3.u-triangle-bottom::before, .u-triangle-v4.u-triangle-bottom::before {
    bottom: -150px; }

  .u-triangle-v3.u-triangle-left::before, .u-triangle-v4.u-triangle-left::before {
    left: -150px; }

  .u-triangle-v3.u-triangle-right::before, .u-triangle-v4.u-triangle-right::before {
    right: -150px; } }
@media (max-width: 1200px) {
  .u-triangle-none--lg::before,
  .u-semicircle-none--lg::before {
    display: none; } }
@media (min-width: 1200px) {
  .u-triangle-v3.u-triangle-top::before, .u-triangle-v3.u-triangle-bottom::before, .u-triangle-v4.u-triangle-top::before, .u-triangle-v4.u-triangle-bottom::before {
    height: 200px; }

  .u-triangle-v3.u-triangle-left::before, .u-triangle-v3.u-triangle-right::before, .u-triangle-v4.u-triangle-left::before, .u-triangle-v4.u-triangle-right::before {
    width: 200px; }

  .u-triangle-v3.u-triangle-top::before, .u-triangle-v4.u-triangle-top::before {
    top: -200px; }

  .u-triangle-v3.u-triangle-bottom::before, .u-triangle-v4.u-triangle-bottom::before {
    bottom: -200px; }

  .u-triangle-v3.u-triangle-left::before, .u-triangle-v4.u-triangle-left::before {
    left: -200px; }

  .u-triangle-v3.u-triangle-right::before, .u-triangle-v4.u-triangle-right::before {
    right: -200px; } }
.u-triangle-none--xl::before,
.u-semicircle-none--xl::before {
  display: none; }

.u-zigzag-top {
  position: relative;
  background: #f7f7f7;
  z-index: 1; }

.u-zigzag-top::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  display: block;
  height: 20px;
  background: -webkit-linear-gradient(-225deg, #f7f7f7 10px, transparent 0) 0 10px, -webkit-linear-gradient(-315deg, #f7f7f7 10px, transparent 0) 0 10px;
  background-position: top left;
  background-repear: repeat-x;
  background-size: 20px 20px; }

.u-zigzag-bottom {
  position: relative;
  background: #f7f7f7;
  z-index: 1; }

.u-zigzag-bottom::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  display: block;
  height: 20px;
  background: -webkit-linear-gradient(225deg, #f7f7f7 10px, transparent 0) 0 10px, -webkit-linear-gradient(315deg, #f7f7f7 10px, transparent 0) 0 10px;
  background-position: top left;
  background-repear: repeat-x;
  background-size: 20px 20px; }

.u-zigzag-top-white {
  position: relative;
  background: #fff;
  z-index: 1; }

.u-zigzag-top-white::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  display: block;
  height: 20px;
  background: -webkit-linear-gradient(-225deg, #fff 10px, transparent 0) 0 10px, -webkit-linear-gradient(-315deg, #fff 10px, transparent 0) 0 10px;
  background-position: top left;
  background-repear: repeat-x;
  background-size: 20px 20px; }

.u-zigzag-top-primary {
  position: relative;
  background: #72c02c;
  z-index: 1; }

.u-zigzag-top-primary::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  display: block;
  height: 20px;
  background: -webkit-linear-gradient(-225deg, #72c02c 10px, transparent 0) 0 10px, -webkit-linear-gradient(-315deg, #72c02c 10px, transparent 0) 0 10px;
  background-position: top left;
  background-repear: repeat-x;
  background-size: 20px 20px; }

.u-zigzag-top-black {
  position: relative;
  background: #000;
  z-index: 1; }

.u-zigzag-top-black::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  display: block;
  height: 20px;
  background: -webkit-linear-gradient(-225deg, #000 10px, transparent 0) 0 10px, -webkit-linear-gradient(-315deg, #000 10px, transparent 0) 0 10px;
  background-position: top left;
  background-repear: repeat-x;
  background-size: 20px 20px; }

.u-zigzag-top-gray-dark-v1 {
  position: relative;
  background: #111;
  z-index: 1; }

.u-zigzag-top-gray-dark-v1::before {
  content: "";
  position: absolute;
  bottom: 100%;
  left: 0;
  right: 0;
  display: block;
  height: 20px;
  background: -webkit-linear-gradient(-225deg, #111 10px, transparent 0) 0 10px, -webkit-linear-gradient(-315deg, #111 10px, transparent 0) 0 10px;
  background-position: top left;
  background-repear: repeat-x;
  background-size: 20px 20px; }

/*------------------------------------
  Nonstandard-bg
------------------------------------*/
[class*="u-ns-bg-v"] {
  position: relative; }

[class*="u-ns-bg-v"]::before {
  content: "";
  position: absolute;
  display: block;
  z-index: 3; }

/*------------------------------------
  Nonstandard Background v1
------------------------------------*/
[class*="u-ns-bg-v1"] {
  position: relative; }

[class*="u-ns-bg-v1"]::before {
  content: "";
  position: absolute;
  z-index: 3;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent; }

.u-ns-bg-v1-top::before, .u-ns-bg-v1-bottom::before {
  left: 50%;
  margin-left: -20px; }

.u-ns-bg-v1-left::before, .u-ns-bg-v1-right::before {
  top: 50%;
  margin-top: -20px; }

.u-ns-bg-v1-top::before {
  top: -25px;
  border-width: 0 20px 25px 20px; }

.u-ns-bg-v1-top.g-bg-primary::before,
.g-parent.g-bg-primary .u-ns-bg-v1-top::before {
  border-bottom-color: #72c02c; }

.u-ns-bg-v1-top.g-bg-white::before,
.g-parent.g-bg-white .u-ns-bg-v1-top::before {
  border-bottom-color: #fff; }

.u-ns-bg-v1-top.g-bg-gray-light-v2::before,
.g-parent.g-bg-gray-light-v2 .u-ns-bg-v1-top::before {
  border-bottom-color: #ccc; }

.u-ns-bg-v1-top.g-bg-black::before,
.g-parent.g-bg-black .u-ns-bg-v1-top::before {
  border-bottom-color: #000; }

.u-ns-bg-v1-bottom::before {
  bottom: -25px;
  border-width: 25px 20px 0 20px; }

.u-ns-bg-v1-bottom.g-bg-primary::before,
.g-parent.g-bg-primary .u-ns-bg-v1-bottom::before {
  border-top-color: #72c02c; }

.u-ns-bg-v1-bottom.g-bg-white::before,
.g-parent.g-bg-white .u-ns-bg-v1-bottom::before {
  border-top-color: #fff; }

.u-ns-bg-v1-bottom.g-bg-gray-light-v2::before,
.g-parent.g-bg-gray-light-v2 .u-ns-bg-v1-bottom::before {
  border-top-color: #ccc; }

.u-ns-bg-v1-bottom.g-bg-black::before,
.g-parent.g-bg-black .u-ns-bg-v1-bottom::before {
  border-top-color: #000; }

.u-ns-bg-v1-left::before {
  left: -25px;
  border-width: 20px 25px 20px 0; }

.u-ns-bg-v1-left.g-bg-primary::before,
.g-parent.g-bg-primary .u-ns-bg-v1-left::before {
  border-right-color: #72c02c; }

.u-ns-bg-v1-left.g-bg-white::before,
.g-parent.g-bg-white .u-ns-bg-v1-left::before {
  border-right-color: #fff; }

.u-ns-bg-v1-left.g-bg-gray-light-v2::before,
.g-parent.g-bg-gray-light-v2 .u-ns-bg-v1-left::before {
  border-right-color: #ccc; }

.u-ns-bg-v1-left.g-bg-black::before,
.g-parent.g-bg-black .u-ns-bg-v1-left::before {
  border-right-color: #000; }

.u-ns-bg-v1-right::before {
  right: -25px;
  border-width: 20px 0 20px 25px; }

.u-ns-bg-v1-right.g-bg-primary::before,
.g-parent.g-bg-primary .u-ns-bg-v1-right::before {
  border-left-color: #72c02c; }

.u-ns-bg-v1-right.g-bg-white::before,
.g-parent.g-bg-white .u-ns-bg-v1-right::before {
  border-left-color: #fff; }

.u-ns-bg-v1-right.g-bg-gray-light-v2::before,
.g-parent.g-bg-gray-light-v2 .u-ns-bg-v1-right::before {
  border-left-color: #ccc; }

.u-ns-bg-v1-right.g-bg-black::before,
.g-parent.g-bg-black .u-ns-bg-v1-right::before {
  border-left-color: #000; }

@media (min-width: 768px) {
  .u-ns-bg-v1-top--md::before, .u-ns-bg-v1-bottom--md::before, .u-ns-bg-v1-left--md::before, .u-ns-bg-v1-right--md::before {
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0; }

  .u-ns-bg-v1-top--md.g-bg-primary::before, .u-ns-bg-v1-top--md.g-bg-white::before, .u-ns-bg-v1-top--md.g-bg-gray-light-v2::before, .u-ns-bg-v1-top--md.g-bg-black::before, .u-ns-bg-v1-bottom--md.g-bg-primary::before, .u-ns-bg-v1-bottom--md.g-bg-white::before, .u-ns-bg-v1-bottom--md.g-bg-gray-light-v2::before, .u-ns-bg-v1-bottom--md.g-bg-black::before, .u-ns-bg-v1-left--md.g-bg-primary::before, .u-ns-bg-v1-left--md.g-bg-white::before, .u-ns-bg-v1-left--md.g-bg-gray-light-v2::before, .u-ns-bg-v1-left--md.g-bg-black::before, .u-ns-bg-v1-right--md.g-bg-primary::before, .u-ns-bg-v1-right--md.g-bg-white::before, .u-ns-bg-v1-right--md.g-bg-gray-light-v2::before, .u-ns-bg-v1-right--md.g-bg-black::before {
    border-top-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
    border-right-color: transparent; }

  .u-ns-bg-v1-top--md::before, .u-ns-bg-v1-bottom--md::before {
    left: 50%;
    margin-left: -20px; }

  .u-ns-bg-v1-left--md::before, .u-ns-bg-v1-right--md::before {
    top: 50%;
    margin-top: -20px; }

  .u-ns-bg-v1-top--md::before {
    top: -25px;
    border-width: 0 20px 25px 20px; }

  .u-ns-bg-v1-top--md.g-bg-primary::before {
    border-bottom-color: #72c02c; }

  .u-ns-bg-v1-top--md.g-bg-white::before {
    border-bottom-color: #fff; }

  .u-ns-bg-v1-top--md.g-bg-gray-light-v2::before {
    border-bottom-color: #ccc; }

  .u-ns-bg-v1-top--md.g-bg-black::before {
    border-bottom-color: #000; }

  .u-ns-bg-v1-bottom--md::before {
    bottom: -25px;
    border-width: 25px 20px 0 20px; }

  .u-ns-bg-v1-bottom--md.g-bg-primary::before {
    border-top-color: #72c02c; }

  .u-ns-bg-v1-bottom--md.g-bg-white::before {
    border-top-color: #fff; }

  .u-ns-bg-v1-bottom--md.g-bg-gray-light-v2::before {
    border-top-color: #ccc; }

  .u-ns-bg-v1-bottom--md.g-bg-black::before {
    border-top-color: #000; }

  .u-ns-bg-v1-left--md::before {
    left: -25px;
    border-width: 20px 25px 20px 0; }

  .u-ns-bg-v1-left--md.g-bg-primary::before {
    border-right-color: #72c02c; }

  .u-ns-bg-v1-left--md.g-bg-white::before {
    border-right-color: #fff; }

  .u-ns-bg-v1-left--md.g-bg-gray-light-v2::before {
    border-right-color: #ccc; }

  .u-ns-bg-v1-left--md.g-bg-black::before {
    border-right-color: #000; }

  .u-ns-bg-v1-right--md::before {
    right: -25px;
    border-width: 20px 0 20px 25px; }

  .u-ns-bg-v1-right--md.g-bg-primary::before {
    border-left-color: #72c02c; }

  .u-ns-bg-v1-right--md.g-bg-white::before {
    border-left-color: #fff; }

  .u-ns-bg-v1-right--md.g-bg-gray-light-v2::before {
    border-left-color: #ccc; }

  .u-ns-bg-v1-right--md.g-bg-black::before {
    border-left-color: #000; } }
/*------------------------------------
  Nonstandard Background v2
------------------------------------*/
[class*="u-ns-bg-v2"] {
  position: relative; }

[class*="u-ns-bg-v2"]::before {
  content: "";
  position: absolute;
  z-index: 3;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent; }

.u-ns-bg-v2-top::before, .u-ns-bg-v2-bottom::before,
.u-ns-bg-v2-2-top::before,
.u-ns-bg-v2-2-bottom::before {
  left: 45px; }

.u-ns-bg-v2-left::before, .u-ns-bg-v2-right::before,
.u-ns-bg-v2-2-left::before,
.u-ns-bg-v2-2-right::before {
  top: 23px; }

.u-ns-bg-v2-top::before,
.u-ns-bg-v2-2-top::before {
  top: -15px;
  border-width: 0 17px 15px 17px; }

.u-ns-bg-v2-top.g-bg-primary::before,
.u-ns-bg-v2-2-top.g-bg-primary::before {
  border-bottom-color: #72c02c; }

.u-ns-bg-v2-top.g-bg-white::before,
.u-ns-bg-v2-2-top.g-bg-white::before {
  border-bottom-color: #fff; }

.u-ns-bg-v2-top.g-bg-gray-light-v2::before,
.u-ns-bg-v2-2-top.g-bg-gray-light-v2::before {
  border-bottom-color: #ccc; }

.u-ns-bg-v2-top.g-bg-gray-light-v5::before,
.u-ns-bg-v2-2-top.g-bg-gray-light-v5::before {
  border-bottom-color: #f7f7f7; }

.u-ns-bg-v2-top.g-bg-black::before,
.u-ns-bg-v2-2-top.g-bg-black::before {
  border-bottom-color: #000; }

.u-ns-bg-v2-bottom::before,
.u-ns-bg-v2-2-bottom::before {
  bottom: -15px;
  border-width: 15px 17px 0 17px; }

.u-ns-bg-v2-bottom.g-bg-primary::before,
.u-ns-bg-v2-2-bottom.g-bg-primary::before {
  border-top-color: #72c02c; }

.u-ns-bg-v2-bottom.g-bg-white::before,
.u-ns-bg-v2-2-bottom.g-bg-white::before {
  border-top-color: #fff; }

.u-ns-bg-v2-bottom.g-bg-gray-light-v2::before,
.u-ns-bg-v2-2-bottom.g-bg-gray-light-v2::before {
  border-top-color: #ccc; }

.u-ns-bg-v2-bottom.g-bg-black::before,
.u-ns-bg-v2-2-bottom.g-bg-black::before {
  border-top-color: #000; }

.u-ns-bg-v2-left::before,
.u-ns-bg-v2-2-left::before {
  left: -15px;
  border-width: 17px 15px 17px 0; }

.u-ns-bg-v2-left.g-bg-primary::before,
.u-ns-bg-v2-2-left.g-bg-primary::before {
  border-right-color: #72c02c; }

.u-ns-bg-v2-left.g-bg-white::before,
.u-ns-bg-v2-2-left.g-bg-white::before {
  border-right-color: #fff; }

.u-ns-bg-v2-left.g-bg-gray-light-v2::before,
.u-ns-bg-v2-2-left.g-bg-gray-light-v2::before {
  border-right-color: #ccc; }

.u-ns-bg-v2-left.g-bg-black::before,
.u-ns-bg-v2-2-left.g-bg-black::before {
  border-right-color: #000; }

.u-ns-bg-v2-right::before,
.u-ns-bg-v2-2-right::before {
  right: -15px;
  border-width: 17px 0 17px 15px; }

.u-ns-bg-v2-right.g-bg-primary::before,
.u-ns-bg-v2-2-right.g-bg-primary::before {
  border-left-color: #72c02c; }

.u-ns-bg-v2-right.g-bg-white::before,
.u-ns-bg-v2-2-right.g-bg-white::before {
  border-left-color: #fff; }

.u-ns-bg-v2-right.g-bg-gray-light-v2::before,
.u-ns-bg-v2-2-right.g-bg-gray-light-v2::before {
  border-left-color: #ccc; }

.u-ns-bg-v2-right.g-bg-black::before,
.u-ns-bg-v2-2-right.g-bg-black::before {
  border-left-color: #000; }

.u-ns-bg-v2-2-top::before, .u-ns-bg-v2-2-bottom::before,
.u-ns-bg-v2-2-2-top::before,
.u-ns-bg-v2-2-2-bottom::before {
  left: 20px; }

.u-ns-bg-v2-2-left::before, .u-ns-bg-v2-2-right::before,
.u-ns-bg-v2-2-2-left::before,
.u-ns-bg-v2-2-2-right::before {
  top: 30px; }

.u-ns-bg-v2-2-top::before,
.u-ns-bg-v2-2-2-top::before {
  border-width: 0 15px 15px 15px; }

.u-ns-bg-v2-2-bottom::before,
.u-ns-bg-v2-2-2-bottom::before {
  border-width: 15px 15px 0 15px; }

.u-ns-bg-v2-2-left::before,
.u-ns-bg-v2-2-2-left::before {
  border-width: 15px 15px 15px 0; }

.u-ns-bg-v2-2-right::before,
.u-ns-bg-v2-2-2-right::before {
  border-width: 15px 0 15px 15px; }

@media (min-width: 768px) {
  .u-ns-bg-v2-top--md::before, .u-ns-bg-v2-bottom--md::before, .u-ns-bg-v2-left--md::before, .u-ns-bg-v2-right--md::before,
  .u-ns-bg-v2-2-top--md::before,
  .u-ns-bg-v2-2-bottom--md::before,
  .u-ns-bg-v2-2-left--md::before,
  .u-ns-bg-v2-2-right--md::before {
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    margin-top: 0;
    margin-bottom: 0;
    margin-left: 0;
    margin-right: 0; }

  .u-ns-bg-v2-top--md.g-bg-primary::before, .u-ns-bg-v2-top--md.g-bg-white::before, .u-ns-bg-v2-top--md.g-bg-gray-light-v2::before, .u-ns-bg-v2-top--md.g-bg-black::before, .u-ns-bg-v2-bottom--md.g-bg-primary::before, .u-ns-bg-v2-bottom--md.g-bg-white::before, .u-ns-bg-v2-bottom--md.g-bg-gray-light-v2::before, .u-ns-bg-v2-bottom--md.g-bg-black::before, .u-ns-bg-v2-left--md.g-bg-primary::before, .u-ns-bg-v2-left--md.g-bg-white::before, .u-ns-bg-v2-left--md.g-bg-gray-light-v2::before, .u-ns-bg-v2-left--md.g-bg-black::before, .u-ns-bg-v2-right--md.g-bg-primary::before, .u-ns-bg-v2-right--md.g-bg-white::before, .u-ns-bg-v2-right--md.g-bg-gray-light-v2::before, .u-ns-bg-v2-right--md.g-bg-black::before,
  .u-ns-bg-v2-2-top--md.g-bg-primary::before,
  .u-ns-bg-v2-2-top--md.g-bg-white::before,
  .u-ns-bg-v2-2-top--md.g-bg-gray-light-v2::before,
  .u-ns-bg-v2-2-top--md.g-bg-black::before,
  .u-ns-bg-v2-2-bottom--md.g-bg-primary::before,
  .u-ns-bg-v2-2-bottom--md.g-bg-white::before,
  .u-ns-bg-v2-2-bottom--md.g-bg-gray-light-v2::before,
  .u-ns-bg-v2-2-bottom--md.g-bg-black::before,
  .u-ns-bg-v2-2-left--md.g-bg-primary::before,
  .u-ns-bg-v2-2-left--md.g-bg-white::before,
  .u-ns-bg-v2-2-left--md.g-bg-gray-light-v2::before,
  .u-ns-bg-v2-2-left--md.g-bg-black::before,
  .u-ns-bg-v2-2-right--md.g-bg-primary::before,
  .u-ns-bg-v2-2-right--md.g-bg-white::before,
  .u-ns-bg-v2-2-right--md.g-bg-gray-light-v2::before,
  .u-ns-bg-v2-2-right--md.g-bg-black::before {
    border-top-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
    border-right-color: transparent; }

  .u-ns-bg-v2-top--md::before,
  .u-ns-bg-v2-2-top--md::before {
    top: -15px;
    border-width: 0 17px 15px 17px; }

  .u-ns-bg-v2-top--md.g-bg-primary::before,
  .u-ns-bg-v2-2-top--md.g-bg-primary::before {
    border-bottom-color: #72c02c; }

  .u-ns-bg-v2-top--md.g-bg-white::before,
  .u-ns-bg-v2-2-top--md.g-bg-white::before {
    border-bottom-color: #fff; }

  .u-ns-bg-v2-top--md.g-bg-gray-light-v2::before,
  .u-ns-bg-v2-2-top--md.g-bg-gray-light-v2::before {
    border-bottom-color: #ccc; }

  .u-ns-bg-v2-top--md.g-bg-black::before,
  .u-ns-bg-v2-2-top--md.g-bg-black::before {
    border-bottom-color: #000; }

  .u-ns-bg-v2-bottom--md::before,
  .u-ns-bg-v2-2-bottom--md::before {
    bottom: -15px;
    border-width: 15px 17px 0 17px; }

  .u-ns-bg-v2-bottom--md.g-bg-primary::before,
  .u-ns-bg-v2-2-bottom--md.g-bg-primary::before {
    border-top-color: #72c02c; }

  .u-ns-bg-v2-bottom--md.g-bg-white::before,
  .u-ns-bg-v2-2-bottom--md.g-bg-white::before {
    border-top-color: #fff; }

  .u-ns-bg-v2-bottom--md.g-bg-gray-light-v2::before,
  .u-ns-bg-v2-2-bottom--md.g-bg-gray-light-v2::before {
    border-top-color: #ccc; }

  .u-ns-bg-v2-bottom--md.g-bg-black::before,
  .u-ns-bg-v2-2-bottom--md.g-bg-black::before {
    border-top-color: #000; }

  .u-ns-bg-v2-left--md::before,
  .u-ns-bg-v2-2-left--md::before {
    left: -15px;
    border-width: 17px 15px 17px 0; }

  .u-ns-bg-v2-left--md.g-bg-primary::before,
  .u-ns-bg-v2-2-left--md.g-bg-primary::before {
    border-right-color: #72c02c; }

  .u-ns-bg-v2-left--md.g-bg-white::before,
  .u-ns-bg-v2-2-left--md.g-bg-white::before {
    border-right-color: #fff; }

  .u-ns-bg-v2-left--md.g-bg-gray-light-v2::before,
  .u-ns-bg-v2-2-left--md.g-bg-gray-light-v2::before {
    border-right-color: #ccc; }

  .u-ns-bg-v2-left--md.g-bg-black::before,
  .u-ns-bg-v2-2-left--md.g-bg-black::before {
    border-right-color: #000; }

  .u-ns-bg-v2-right--md::before,
  .u-ns-bg-v2-2-right--md::before {
    right: -15px;
    border-width: 17px 0 17px 15px; }

  .u-ns-bg-v2-right--md.g-bg-primary::before,
  .u-ns-bg-v2-2-right--md.g-bg-primary::before {
    border-left-color: #72c02c; }

  .u-ns-bg-v2-right--md.g-bg-white::before,
  .u-ns-bg-v2-2-right--md.g-bg-white::before {
    border-left-color: #fff; }

  .u-ns-bg-v2-right--md.g-bg-gray-light-v2::before,
  .u-ns-bg-v2-2-right--md.g-bg-gray-light-v2::before {
    border-left-color: #ccc; }

  .u-ns-bg-v2-right--md.g-bg-black::before,
  .u-ns-bg-v2-2-right--md.g-bg-black::before {
    border-left-color: #000; }

  .u-ns-bg-v2-2-top--md::before, .u-ns-bg-v2-2-bottom--md::before,
  .u-ns-bg-v2-2-2-top--md::before,
  .u-ns-bg-v2-2-2-bottom--md::before {
    left: 20px; }

  .u-ns-bg-v2-2-left--md::before, .u-ns-bg-v2-2-right--md::before,
  .u-ns-bg-v2-2-2-left--md::before,
  .u-ns-bg-v2-2-2-right--md::before {
    top: 30px; }

  .u-ns-bg-v2-2-top--md::before,
  .u-ns-bg-v2-2-2-top--md::before {
    border-width: 0 15px 15px 15px; }

  .u-ns-bg-v2-2-bottom--md::before,
  .u-ns-bg-v2-2-2-bottom--md::before {
    border-width: 15px 15px 0 15px; }

  .u-ns-bg-v2-2-left--md::before,
  .u-ns-bg-v2-2-2-left--md::before {
    border-width: 15px 15px 15px 0; }

  .u-ns-bg-v2-2-right--md::before,
  .u-ns-bg-v2-2-2-right--md::before {
    border-width: 15px 0 15px 15px; } }
/*------------------------------------
  Nonstandard Background v3
------------------------------------*/
[class*="u-ns-bg-v3"] {
  position: relative; }

[class*="u-ns-bg-v3"]::before {
  content: "";
  position: absolute;
  z-index: 3;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent; }

.u-ns-bg-v3-top::before, .u-ns-bg-v3-bottom::before {
  left: 80px; }

.u-ns-bg-v3-left::before, .u-ns-bg-v3-right::before {
  top: 23px; }

.u-ns-bg-v3-top.g-bg-primary::before, .u-ns-bg-v3-left.g-bg-primary::before {
  border-bottom-color: #72c02c; }

.u-ns-bg-v3-top.g-bg-white::before, .u-ns-bg-v3-left.g-bg-white::before {
  border-bottom-color: #fff; }

.u-ns-bg-v3-top.g-bg-gray-light-v2::before, .u-ns-bg-v3-left.g-bg-gray-light-v2::before {
  border-bottom-color: #ccc; }

.u-ns-bg-v3-top.g-bg-black::before, .u-ns-bg-v3-left.g-bg-black::before {
  border-bottom-color: #000; }

.u-ns-bg-v3-top.g-bg-facebook::before, .u-ns-bg-v3-left.g-bg-facebook::before {
  border-bottom-color: #3b5998; }

.u-ns-bg-v3-bottom.g-bg-primary::before, .u-ns-bg-v3-right.g-bg-primary::before {
  border-top-color: #72c02c; }

.u-ns-bg-v3-bottom.g-bg-white::before, .u-ns-bg-v3-right.g-bg-white::before {
  border-top-color: #fff; }

.u-ns-bg-v3-bottom.g-bg-gray-light-v2::before, .u-ns-bg-v3-right.g-bg-gray-light-v2::before {
  border-top-color: #ccc; }

.u-ns-bg-v3-bottom.g-bg-black::before, .u-ns-bg-v3-right.g-bg-black::before {
  border-top-color: #000; }

.u-ns-bg-v3-bottom.g-bg-lightred::before, .u-ns-bg-v3-right.g-bg-lightred::before {
  border-top-color: #e64b3b; }

.u-ns-bg-v3-bottom.g-bg-blue::before, .u-ns-bg-v3-right.g-bg-blue::before {
  border-top-color: #3398dc; }

.u-ns-bg-v3-bottom.g-bg-purple::before, .u-ns-bg-v3-right.g-bg-purple::before {
  border-top-color: #9a69cb; }

.u-ns-bg-v3-bottom.g-bg-cyan::before, .u-ns-bg-v3-right.g-bg-cyan::before {
  border-top-color: #00bed6; }

.u-ns-bg-v3-bottom.g-bg-teal::before, .u-ns-bg-v3-right.g-bg-teal::before {
  border-top-color: #18ba9b; }

.u-ns-bg-v3-bottom.g-bg-pink::before, .u-ns-bg-v3-right.g-bg-pink::before {
  border-top-color: #e81c62; }

.u-ns-bg-v3-bottom.g-bg-red::before, .u-ns-bg-v3-right.g-bg-red::before {
  border-top-color: #f00; }

.u-ns-bg-v3-bottom.g-bg-facebook::before, .u-ns-bg-v3-right.g-bg-facebook::before {
  border-top-color: #3b5998; }

.u-ns-bg-v3-top::before {
  top: -22px;
  border-width: 22px 0 0 22px; }

.u-ns-bg-v3-bottom::before {
  bottom: -22px;
  border-width: 22px 22px 0 0; }

.u-ns-bg-v3-left::before {
  left: -22px;
  border-width: 0 22px 22px 0; }

.u-ns-bg-v3-right::before {
  right: -22px;
  border-width: 22px 22px 0 0; }

/*------------------------------------
  Nonstandard Background v4
------------------------------------*/
[class*="u-ns-bg-v4"] {
  position: relative; }

[class*="u-ns-bg-v4"]::before {
  content: "";
  position: absolute;
  z-index: 3;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent; }

.u-ns-bg-v4-top::before, .u-ns-bg-v4-bottom::before {
  left: 8%; }

.u-ns-bg-v4-left::before, .u-ns-bg-v4-right::before {
  top: 8%; }

.u-ns-bg-v4-top.g-bg-primary::before, .u-ns-bg-v4-left.g-bg-primary::before {
  border-bottom-color: #72c02c; }

.u-ns-bg-v4-top.g-bg-white::before, .u-ns-bg-v4-left.g-bg-white::before {
  border-bottom-color: #fff; }

.u-ns-bg-v4-top.g-bg-gray-light-v2::before, .u-ns-bg-v4-left.g-bg-gray-light-v2::before {
  border-bottom-color: #ccc; }

.u-ns-bg-v4-top.g-bg-black::before, .u-ns-bg-v4-left.g-bg-black::before {
  border-bottom-color: #000; }

.u-ns-bg-v4-bottom.g-bg-primary::before, .u-ns-bg-v4-right.g-bg-primary::before {
  border-top-color: #72c02c; }

.u-ns-bg-v4-bottom.g-bg-white::before, .u-ns-bg-v4-right.g-bg-white::before {
  border-top-color: #fff; }

.u-ns-bg-v4-bottom.g-bg-gray-light-v2::before, .u-ns-bg-v4-right.g-bg-gray-light-v2::before {
  border-top-color: #ccc; }

.u-ns-bg-v4-bottom.g-bg-black::before, .u-ns-bg-v4-right.g-bg-black::before {
  border-top-color: #000; }

.u-ns-bg-v4-top::before {
  top: -22px;
  border-width: 22px 22px 0 0; }

.u-ns-bg-v4-bottom::before {
  bottom: -22px;
  border-width: 22px 0 0 22px; }

.u-ns-bg-v4-left::before {
  left: -22px;
  border-width: 22px 22px 0 0; }

.u-ns-bg-v4-right::before {
  right: -22px;
  border-width: 0 22px 22px 0; }

/*------------------------------------
  Nonstandard Background v5
------------------------------------*/
[class*="u-ns-bg-v5"] {
  position: relative; }

[class*="u-ns-bg-v5"] .u-ns-bg-before {
  position: absolute;
  z-index: 2; }

[class*="u-ns-bg-v5"].g-bg-primary svg polygon,
[class*="u-ns-bg-v5"].g-bg-primary svg path {
  fill: #72c02c; }

[class*="u-ns-bg-v5"].g-bg-white svg polygon,
[class*="u-ns-bg-v5"].g-bg-white svg path {
  fill: #fff; }

[class*="u-ns-bg-v5"].g-bg-gray-light-v2 svg polygon,
[class*="u-ns-bg-v5"].g-bg-gray-light-v2 svg path {
  fill: #ccc; }

[class*="u-ns-bg-v5"].g-bg-black svg polygon,
[class*="u-ns-bg-v5"].g-bg-black svg path {
  fill: #000; }

.u-ns-bg-v5-top .u-ns-bg-before, .u-ns-bg-v5-bottom .u-ns-bg-before {
  width: 100%; }

.u-ns-bg-v5-top svg, .u-ns-bg-v5-bottom svg {
  width: 100%; }

.u-ns-bg-v5-left .u-ns-bg-before, .u-ns-bg-v5-right .u-ns-bg-before {
  height: 100%; }

.u-ns-bg-v5-left svg, .u-ns-bg-v5-right svg {
  height: 100%;
  vertical-align: middle; }

.u-ns-bg-v5-top .u-ns-bg-before {
  bottom: 100%; }

.u-ns-bg-v5-top svg {
  vertical-align: bottom; }

.u-ns-bg-v5-bottom .u-ns-bg-before {
  top: 100%; }

.u-ns-bg-v5-bottom svg {
  vertical-align: top; }

.u-ns-bg-v5-left .u-ns-bg-before {
  left: 100%; }

.u-ns-bg-v5-right .u-ns-bg-before {
  right: 100%; }

@media (min-width: 768px) {
  .u-ns-bg-v5-top--md .u-ns-bg-before, .u-ns-bg-v5-bottom--md .u-ns-bg-before, .u-ns-bg-v5-left--md .u-ns-bg-before, .u-ns-bg-v5-right--md .u-ns-bg-before {
    top: auto;
    bottom: auto;
    left: auto;
    right: auto;
    width: auto;
    height: auto; }

  .u-ns-bg-v5-top--md svg, .u-ns-bg-v5-bottom--md svg, .u-ns-bg-v5-left--md svg, .u-ns-bg-v5-right--md svg {
    width: auto;
    height: auto; }

  .u-ns-bg-v5-top--md .u-ns-bg-before, .u-ns-bg-v5-bottom--md .u-ns-bg-before {
    width: 100%; }

  .u-ns-bg-v5-top--md svg, .u-ns-bg-v5-bottom--md svg {
    width: 100%; }

  .u-ns-bg-v5-left--md .u-ns-bg-before, .u-ns-bg-v5-right--md .u-ns-bg-before {
    height: 100%; }

  .u-ns-bg-v5-left--md svg, .u-ns-bg-v5-right--md svg {
    height: 100%;
    vertical-align: middle; }

  .u-ns-bg-v5-top--md .u-ns-bg-before {
    bottom: 100%; }

  .u-ns-bg-v5-top--md svg {
    vertical-align: bottom; }

  .u-ns-bg-v5-bottom--md .u-ns-bg-before {
    top: 100%; }

  .u-ns-bg-v5-bottom--md svg {
    vertical-align: top; }

  .u-ns-bg-v5-left--md .u-ns-bg-before {
    left: 100%; }

  .u-ns-bg-v5-right--md .u-ns-bg-before {
    right: 100%; } }
/*------------------------------------
  Nonstandard Background v6
------------------------------------*/
[class*="u-ns-bg-v6"] {
  position: relative; }

[class*="u-ns-bg-v6"] .u-ns-bg-before {
  position: absolute;
  z-index: 2; }

.u-ns-bg-v6-top .u-ns-bg-before::before, .u-ns-bg-v6-top .u-ns-bg-before::after, .u-ns-bg-v6-bottom .u-ns-bg-before::before, .u-ns-bg-v6-bottom .u-ns-bg-before::after, .u-ns-bg-v6-left .u-ns-bg-before::before, .u-ns-bg-v6-left .u-ns-bg-before::after, .u-ns-bg-v6-right .u-ns-bg-before::before, .u-ns-bg-v6-right .u-ns-bg-before::after {
  content: "";
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent; }

.u-ns-bg-v6-top .u-ns-bg-before::after, .u-ns-bg-v6-bottom .u-ns-bg-before::after, .u-ns-bg-v6-left .u-ns-bg-before::after, .u-ns-bg-v6-right .u-ns-bg-before::after {
  position: absolute; }

.u-ns-bg-v6-top .u-ns-bg-before, .u-ns-bg-v6-bottom .u-ns-bg-before {
  left: 20px; }

.u-ns-bg-v6-left .u-ns-bg-before, .u-ns-bg-v6-right .u-ns-bg-before {
  top: 30px; }

.u-ns-bg-v6-top .u-ns-bg-before {
  top: -15px; }

.u-ns-bg-v6-top .u-ns-bg-before::before {
  border-width: 0 15px 15px 15px; }

.u-ns-bg-v6-top .u-ns-bg-before::after {
  bottom: 0;
  left: 1px;
  border-width: 0 14px 14px 14px; }

.u-ns-bg-v6-top.g-brd-primary .u-ns-bg-before::before {
  border-bottom-color: #72c02c; }

.u-ns-bg-v6-top.g-brd-primary .u-ns-bg-before::after {
  border-bottom-color: #fff; }

.u-ns-bg-v6-top.g-brd-gray-light-v2 .u-ns-bg-before::before {
  border-bottom-color: #ccc; }

.u-ns-bg-v6-top.g-brd-gray-light-v2 .u-ns-bg-before::after {
  border-bottom-color: #fff; }

.u-ns-bg-v6-top.g-brd-black .u-ns-bg-before::before {
  border-bottom-color: #000; }

.u-ns-bg-v6-top.g-brd-black .u-ns-bg-before::after {
  border-bottom-color: #fff; }

.u-ns-bg-v6-bottom .u-ns-bg-before {
  bottom: -15px; }

.u-ns-bg-v6-bottom .u-ns-bg-before::before {
  border-width: 15px 15px 0 15px; }

.u-ns-bg-v6-bottom .u-ns-bg-before::after {
  bottom: 1px;
  left: 1px;
  border-width: 14px 14px 0 14px; }

.u-ns-bg-v6-bottom.g-brd-primary .u-ns-bg-before::before {
  border-top-color: #72c02c; }

.u-ns-bg-v6-bottom.g-brd-primary .u-ns-bg-before::after {
  border-top-color: #fff; }

.u-ns-bg-v6-bottom.g-brd-gray-light-v2 .u-ns-bg-before::before {
  border-top-color: #ccc; }

.u-ns-bg-v6-bottom.g-brd-gray-light-v2 .u-ns-bg-before::after {
  border-top-color: #fff; }

.u-ns-bg-v6-bottom.g-brd-black .u-ns-bg-before::before {
  border-top-color: #000; }

.u-ns-bg-v6-bottom.g-brd-black .u-ns-bg-before::after {
  border-top-color: #fff; }

.u-ns-bg-v6-left .u-ns-bg-before {
  left: -15px; }

.u-ns-bg-v6-left .u-ns-bg-before::before {
  border-width: 15px 15px 15px 0; }

.u-ns-bg-v6-left .u-ns-bg-before::after {
  top: 1px;
  right: 0;
  border-width: 14px 14px 14px 0; }

.u-ns-bg-v6-left.g-brd-primary .u-ns-bg-before::before {
  border-right-color: #72c02c; }

.u-ns-bg-v6-left.g-brd-primary .u-ns-bg-before::after {
  border-right-color: #fff; }

.u-ns-bg-v6-left.g-brd-gray-light-v2 .u-ns-bg-before::before {
  border-right-color: #ccc; }

.u-ns-bg-v6-left.g-brd-gray-light-v2 .u-ns-bg-before::after {
  border-right-color: #fff; }

.u-ns-bg-v6-left.g-brd-black .u-ns-bg-before::before {
  border-right-color: #000; }

.u-ns-bg-v6-left.g-brd-black .u-ns-bg-before::after {
  border-right-color: #fff; }

.u-ns-bg-v6-right .u-ns-bg-before {
  right: -15px; }

.u-ns-bg-v6-right .u-ns-bg-before::before {
  border-width: 15px 0 15px 15px; }

.u-ns-bg-v6-right .u-ns-bg-before::after {
  top: 1px;
  left: 0;
  border-width: 14px 0 14px 14px; }

.u-ns-bg-v6-right.g-brd-primary .u-ns-bg-before::before {
  border-left-color: #ccc; }

.u-ns-bg-v6-right.g-brd-primary .u-ns-bg-before::after {
  border-left-color: #fff; }

.u-ns-bg-v6-right.g-brd-gray-light-v2 .u-ns-bg-before::before {
  border-left-color: #ccc; }

.u-ns-bg-v6-right.g-brd-gray-light-v2 .u-ns-bg-before::after {
  border-left-color: #fff; }

.u-ns-bg-v6-right.g-brd-black .u-ns-bg-before::before {
  border-left-color: #ccc; }

.u-ns-bg-v6-right.g-brd-black .u-ns-bg-before::after {
  border-left-color: #fff; }

@media (min-width: 768px) {
  .u-ns-bg-v6-top--md.g-brd-primary .u-ns-bg-before::before, .u-ns-bg-v6-top--md.g-brd-gray-light-v2 .u-ns-bg-before::before, .u-ns-bg-v6-top--md.g-brd-black .u-ns-bg-before::before, .u-ns-bg-v6-bottom--md.g-brd-primary .u-ns-bg-before::before, .u-ns-bg-v6-bottom--md.g-brd-gray-light-v2 .u-ns-bg-before::before, .u-ns-bg-v6-bottom--md.g-brd-black .u-ns-bg-before::before, .u-ns-bg-v6-left--md.g-brd-primary .u-ns-bg-before::before, .u-ns-bg-v6-left--md.g-brd-gray-light-v2 .u-ns-bg-before::before, .u-ns-bg-v6-left--md.g-brd-black .u-ns-bg-before::before, .u-ns-bg-v6-right--md.g-brd-primary .u-ns-bg-before::before, .u-ns-bg-v6-right--md.g-brd-gray-light-v2 .u-ns-bg-before::before, .u-ns-bg-v6-right--md.g-brd-black .u-ns-bg-before::before {
    border-top-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
    border-right-color: transparent; }

  .u-ns-bg-v6-top--md.g-brd-primary .u-ns-bg-before::after, .u-ns-bg-v6-top--md.g-brd-gray-light-v2 .u-ns-bg-before::after, .u-ns-bg-v6-top--md.g-brd-black .u-ns-bg-before::after, .u-ns-bg-v6-bottom--md.g-brd-primary .u-ns-bg-before::after, .u-ns-bg-v6-bottom--md.g-brd-gray-light-v2 .u-ns-bg-before::after, .u-ns-bg-v6-bottom--md.g-brd-black .u-ns-bg-before::after, .u-ns-bg-v6-left--md.g-brd-primary .u-ns-bg-before::after, .u-ns-bg-v6-left--md.g-brd-gray-light-v2 .u-ns-bg-before::after, .u-ns-bg-v6-left--md.g-brd-black .u-ns-bg-before::after, .u-ns-bg-v6-right--md.g-brd-primary .u-ns-bg-before::after, .u-ns-bg-v6-right--md.g-brd-gray-light-v2 .u-ns-bg-before::after, .u-ns-bg-v6-right--md.g-brd-black .u-ns-bg-before::after {
    border-top-color: transparent;
    border-bottom-color: transparent;
    border-left-color: transparent;
    border-right-color: transparent; }

  .u-ns-bg-v6-top--md .u-ns-bg-before, .u-ns-bg-v6-bottom--md .u-ns-bg-before {
    left: 20px; }

  .u-ns-bg-v6-left--md .u-ns-bg-before, .u-ns-bg-v6-right--md .u-ns-bg-before {
    top: 30px; }

  .u-ns-bg-v6-top--md .u-ns-bg-before {
    bottom: auto;
    top: -15px; }

  .u-ns-bg-v6-top--md .u-ns-bg-before::before {
    border-width: 0 15px 15px 15px; }

  .u-ns-bg-v6-top--md .u-ns-bg-before::after {
    top: auto;
    bottom: 0;
    left: 1px;
    border-width: 0 14px 14px 14px; }

  .u-ns-bg-v6-top--md.g-brd-primary .u-ns-bg-before::before {
    border-bottom-color: #72c02c; }

  .u-ns-bg-v6-top--md.g-brd-primary .u-ns-bg-before::after {
    border-bottom-color: #fff; }

  .u-ns-bg-v6-top--md.g-brd-gray-light-v2 .u-ns-bg-before::before {
    border-bottom-color: #ccc; }

  .u-ns-bg-v6-top--md.g-brd-gray-light-v2 .u-ns-bg-before::after {
    border-bottom-color: #fff; }

  .u-ns-bg-v6-top--md.g-brd-black .u-ns-bg-before::before {
    border-bottom-color: #000; }

  .u-ns-bg-v6-top--md.g-brd-black .u-ns-bg-before::after {
    border-bottom-color: #fff; }

  .u-ns-bg-v6-bottom--md .u-ns-bg-before {
    top: auto;
    bottom: -15px; }

  .u-ns-bg-v6-bottom--md .u-ns-bg-before::before {
    border-width: 15px 15px 0 15px; }

  .u-ns-bg-v6-bottom--md .u-ns-bg-before::after {
    top: auto;
    bottom: 1px;
    left: 1px;
    border-width: 14px 14px 0 14px; }

  .u-ns-bg-v6-bottom--md.g-brd-primary .u-ns-bg-before::before {
    border-top-color: #72c02c; }

  .u-ns-bg-v6-bottom--md.g-brd-primary .u-ns-bg-before::after {
    border-top-color: #fff; }

  .u-ns-bg-v6-bottom--md.g-brd-gray-light-v2 .u-ns-bg-before::before {
    border-top-color: #ccc; }

  .u-ns-bg-v6-bottom--md.g-brd-gray-light-v2 .u-ns-bg-before::after {
    border-top-color: #fff; }

  .u-ns-bg-v6-bottom--md.g-brd-black .u-ns-bg-before::before {
    border-top-color: #000; }

  .u-ns-bg-v6-bottom--md.g-brd-black .u-ns-bg-before::after {
    border-top-color: #fff; }

  .u-ns-bg-v6-left--md .u-ns-bg-before {
    left: -15px;
    right: auto; }

  .u-ns-bg-v6-left--md .u-ns-bg-before::before {
    border-width: 15px 15px 15px 0; }

  .u-ns-bg-v6-left--md .u-ns-bg-before::after {
    top: 1px;
    bottom: auto;
    right: 0;
    border-width: 14px 14px 14px 0; }

  .u-ns-bg-v6-left--md.g-brd-primary .u-ns-bg-before::before {
    border-right-color: #72c02c; }

  .u-ns-bg-v6-left--md.g-brd-primary .u-ns-bg-before::after {
    border-right-color: #fff; }

  .u-ns-bg-v6-left--md.g-brd-gray-light-v2 .u-ns-bg-before::before {
    border-right-color: #ccc; }

  .u-ns-bg-v6-left--md.g-brd-gray-light-v2 .u-ns-bg-before::after {
    border-right-color: #fff; }

  .u-ns-bg-v6-left--md.g-brd-black .u-ns-bg-before::before {
    border-right-color: #000; }

  .u-ns-bg-v6-left--md.g-brd-black .u-ns-bg-before::after {
    border-right-color: #fff; }

  .u-ns-bg-v6-right--md .u-ns-bg-before {
    left: auto;
    right: -15px; }

  .u-ns-bg-v6-right--md .u-ns-bg-before::before {
    border-width: 15px 0 15px 15px; }

  .u-ns-bg-v6-right--md .u-ns-bg-before::after {
    top: 1px;
    bottom: auto;
    left: 0;
    border-width: 14px 0 14px 14px; }

  .u-ns-bg-v6-right--md.g-brd-primary .u-ns-bg-before::before {
    border-left-color: #72c02c; }

  .u-ns-bg-v6-right--md.g-brd-primary .u-ns-bg-before::after {
    border-left-color: #fff; }

  .u-ns-bg-v6-right--md.g-brd-gray-light-v2 .u-ns-bg-before::before {
    border-left-color: #ccc; }

  .u-ns-bg-v6-right--md.g-brd-gray-light-v2 .u-ns-bg-before::after {
    border-left-color: #fff; }

  .u-ns-bg-v6-right--md.g-brd-black .u-ns-bg-before::before {
    border-left-color: #000; }

  .u-ns-bg-v6-right--md.g-brd-black .u-ns-bg-before::after {
    border-left-color: #fff; } }
/*------------------------------------
  Nonstandard Background v7
------------------------------------*/
[class*="u-ns-bg-v7"] {
  position: relative; }

[class*="u-ns-bg-v7"]::before {
  content: "";
  position: absolute;
  z-index: 3;
  width: 0;
  height: 0;
  border-style: solid;
  border-color: transparent; }

.u-ns-bg-v7-top::before, .u-ns-bg-v7-bottom::before {
  left: 50%;
  margin-left: -5px; }

.u-ns-bg-v7-left::before, .u-ns-bg-v7-right::before {
  top: 50%;
  margin-top: -5px; }

.u-ns-bg-v7-top::before {
  top: -5px;
  border-width: 0 5px 5px 5px; }

.u-ns-bg-v7-top.g-bg-primary::before {
  border-bottom-color: #72c02c; }

.u-ns-bg-v7-top.g-bg-white::before {
  border-bottom-color: #fff; }

.u-ns-bg-v7-top.g-bg-gray-light-v2::before {
  border-bottom-color: #ccc; }

.u-ns-bg-v7-top.g-bg-black::before {
  border-bottom-color: #000; }

.u-ns-bg-v7-bottom::before {
  bottom: -5px;
  border-width: 5px 5px 0 5px; }

.u-ns-bg-v7-bottom.g-bg-primary::before {
  border-top-color: #72c02c; }

.u-ns-bg-v7-bottom.g-bg-white::before {
  border-top-color: #fff; }

.u-ns-bg-v7-bottom.g-bg-gray-light-v2::before {
  border-top-color: #ccc; }

.u-ns-bg-v7-bottom.g-bg-black::before {
  border-top-color: #000; }

.u-ns-bg-v7-left::before {
  left: -5px;
  border-width: 5px 5px 5px 0; }

.u-ns-bg-v7-left.g-bg-primary::before {
  border-right-color: #72c02c; }

.u-ns-bg-v7-left.g-bg-white::before {
  border-right-color: #fff; }

.u-ns-bg-v7-left.g-bg-gray-light-v2::before {
  border-right-color: #ccc; }

.u-ns-bg-v7-left.g-bg-black::before {
  border-right-color: #000; }

.u-ns-bg-v7-right::before {
  right: -5px;
  border-width: 5px 0 5px 5px; }

.u-ns-bg-v7-right.g-bg-primary::before {
  border-left-color: #72c02c; }

.u-ns-bg-v7-right.g-bg-white::before {
  border-left-color: #fff; }

.u-ns-bg-v7-right.g-bg-gray-light-v2::before {
  border-left-color: #ccc; }

.u-ns-bg-v7-right.g-bg-black::before {
  border-left-color: #000; }

/*------------------------------------
  Progress Bars
------------------------------------*/
.progress-bar {
  min-height: 0 !important; }

.u-progress__pointer-v1 {
  position: absolute;
  top: 50%;
  right: 0;
  width: 42px;
  height: 42px;
  margin: -21px -21px 0 0;
  background-color: transparent;
  line-height: 42px;
  z-index: 1; }

.u-progress__pointer-v2 {
  position: absolute;
  bottom: 100%;
  right: 0;
  min-width: 46px;
  white-space: nowrap;
  padding-left: 5px;
  padding-right: 5px;
  -webkit-transform: translateX(50%);
  -ms-transform: translateX(50%);
  transform: translateX(50%);
  margin-bottom: 5px;
  background-color: transparent;
  z-index: 1; }

.u-progress__pointer-v2::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -5px;
  margin-left: -5px;
  border-style: solid;
  border-color: #72c02c transparent;
  border-width: 5px 5px 0; }

.u-progress__pointer-v3 {
  position: relative;
  float: right;
  white-space: nowrap; }

.u-progress__pointer-v3::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  margin-top: -10px;
  margin-right: -5px;
  border-style: solid;
  border-color: #72c02c transparent;
  border-width: 5px 5px 0; }

[class*="u-progress-bar-vertical"] {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-flow: column nowrap;
  -ms-flex-flow: column nowrap;
  flex-flow: column nowrap;
  -webkit-box-pack: end;
  -webkit-justify-content: flex-end;
  -ms-flex-pack: end;
  justify-content: flex-end; }

.u-progress-bar-vertical-v1 {
  height: 200px; }

/*------------------------------------
  Progress Bars Sizes
------------------------------------*/
.u-progress-bar--2xs {
  min-height: 1px !important; }

.u-progress-bar--xs {
  min-height: 3px !important; }

.u-progress-bar--sm {
  min-height: 7px !important; }

.u-progress-bar--lg {
  min-height: 18px !important; }

.u-progress-bar--xl {
  min-height: 22px !important; }

.u-progress-bar--2xl {
  min-height: 33px !important; }

/*------------------------------------
  Rating v1
------------------------------------*/
.u-rating-v1 {
  display: inline-block;
  padding-left: 0;
  margin-bottom: 0; }

.u-rating-v1 > * {
  float: left;
  list-style: none;
  cursor: pointer;
  transition-property: color;
  transition-duration: .2s;
  transition-timing-function: ease; }

.u-rating-v1 > * + * {
  padding-left: 6px; }

/*------------------------------------
  Searchform v1
------------------------------------*/
.u-searchform-v1,
.u-searchform-v1--align-left {
  min-width: initial;
  width: 21.42857rem;
  position: absolute;
  right: -1.07143rem;
  top: 100%;
  box-shadow: 0 1px 3px #ddd; }

.u-searchform-v1 .form-control,
.u-searchform-v1--align-left .form-control {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 0.85714rem; }

.u-searchform-v1--align-left,
.u-searchform-v1--align-left--align-left {
  position: absolute;
  left: -1.07143rem; }

.u-searchform-v1 .input-group-addon,
.u-searchform-v1--align-left .input-group-addon {
  border: 0; }

.u-searchform-v1 .input-group-addon button[type="submit"],
.u-searchform-v1--align-left .input-group-addon button[type="submit"] {
  height: 100%;
  padding-bottom: 0.28571rem; }

/*------------------------------------
  Searchform v2
------------------------------------*/
.u-searchform-v2 .form-control {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-weight: 600;
  font-size: 0.85714rem;
  color: rgba(255, 255, 255, 0.85);
  text-transform: uppercase;
  height: 4.71429rem;
  padding: 0.85714rem 0;
  background-color: transparent;
  border: none; }

.u-searchform-v2 .form-control::-webkit-input-placeholder {
  color: g-color-white;
  opacity: .85; }

.u-searchform-v2 .form-control::-moz-placeholder {
  color: g-color-white;
  opacity: .85; }

.u-searchform-v2 .form-control:-ms-input-placeholder {
  color: g-color-white;
  opacity: .85; }

.u-searchform-v2 .form-control::placeholder {
  color: g-color-white;
  opacity: .85; }

.u-searchform-v2 .form-control::-webkit-input-placeholder {
  color: g-color-white;
  opacity: .85; }

.u-searchform-v2 .form-control::-moz-placeholder {
  color: g-color-white;
  opacity: .85; }

.u-searchform-v2 .input-group-addon {
  border: 0; }

.u-searchform-v2 .input-group-addon button {
  cursor: pointer;
  height: 100%;
  border: none;
  outline: none;
  background-color: transparent; }

/*------------------------------------
  Searchform v3
------------------------------------*/
.u-searchform-v3 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 3; }

.u-searchform-v3 .container {
  height: 100%; }

.u-searchform-v3 .input-group {
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%; }

.u-searchform-v3 .form-control {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-weight: 300;
  font-size: inherit;
  color: inherit;
  text-transform: uppercase;
  height: 4.71429rem;
  padding: 0.85714rem 0;
  background-color: transparent;
  border: none; }

.u-searchform-v3 .form-control::-webkit-input-placeholder {
  /*color: g-color-white;*/
  opacity: .85; }

.u-searchform-v3 .form-control::-moz-placeholder {
  /*color: g-color-white;*/
  opacity: .85; }

.u-searchform-v3 .form-control:-ms-input-placeholder {
  /*color: g-color-white;*/
  opacity: .85; }

.u-searchform-v3 .form-control::placeholder {
  /*color: g-color-white;*/
  opacity: .85; }

.u-searchform-v3 .form-control::-webkit-input-placeholder {
  /*color: g-color-white;*/
  opacity: .85; }

.u-searchform-v3 .form-control::-moz-placeholder {
  /*color: g-color-white;*/
  opacity: .85; }

.u-searchform-v3 .input-group-addon {
  border: 0; }

.u-searchform-v3 .input-group-addon button {
  cursor: pointer;
  height: 100%;
  border: none;
  outline: none;
  background-color: transparent; }

/*------------------------------------
  Searchform v4
------------------------------------*/
.u-searchform-v4 .form-control {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 0.85714rem;
  width: 20rem;
  padding: 0.71429rem 2.85714rem 0.71429rem 0.71429rem; }

.u-searchform-v4 .form-control::-webkit-input-placeholder {
  /*color: g-color-gray-dark-v4;*/
  opacity: 1; }

.u-searchform-v4 .form-control::-moz-placeholder {
  /*color: g-color-gray-dark-v4;*/
  opacity: 1; }

.u-searchform-v4 .form-control:-ms-input-placeholder {
  /*color: g-color-gray-dark-v4;*/
  opacity: 1; }

.u-searchform-v4 .form-control::placeholder {
  /*color: g-color-gray-dark-v4;*/
  opacity: 1; }

.u-searchform-v4 .form-control::-webkit-input-placeholder {
  /*color: g-color-gray-dark-v4;*/
  opacity: 1; }

.u-searchform-v4 .form-control::-moz-placeholder {
  /*color: g-color-gray-dark-v4;*/
  opacity: 1; }

.u-searchform-v4 .form-control:not(:last-child) {
  border-right: none; }

.u-searchform-v4 .input-group-addon {
  border-left: none;
  position: absolute;
  top: 0;
  right: 0;
  height: 100%;
  z-index: 2; }

.u-searchform-v4 .input-group-addon button[type="submit"] {
  height: 100%;
  cursor: pointer;
  outline: none;
  border: none;
  background-color: transparent; }

/*------------------------------------
  Searchform v5
------------------------------------*/
.u-searchform-v5 .input-group {
  border: solid 1px #eee; }

.u-searchform-v5 .form-control {
  font-family: "Open Sans", Helvetica, Arial, sans-serif;
  font-size: 0.85714rem;
  text-transform: uppercase;
  color: #777;
  height: 3.07143rem;
  padding: 0.35714rem 0.35714rem 0.35714rem 2rem;
  border-color: transparent; }

.u-searchform-v5 .form-control::-webkit-input-placeholder {
  color: g-color-gray-dark-v4;
  opacity: 1; }

.u-searchform-v5 .form-control::-moz-placeholder {
  color: g-color-gray-dark-v4;
  opacity: 1; }

.u-searchform-v5 .form-control:-ms-input-placeholder {
  color: g-color-gray-dark-v4;
  opacity: 1; }

.u-searchform-v5 .form-control::placeholder {
  color: g-color-gray-dark-v4;
  opacity: 1; }

.u-searchform-v5 .form-control::-webkit-input-placeholder {
  color: g-color-gray-dark-v4;
  opacity: 1; }

.u-searchform-v5 .form-control::-moz-placeholder {
  color: g-color-gray-dark-v4;
  opacity: 1; }

.u-searchform-v5 .form-control:focus {
  border-color: transparent; }

.u-searchform-v5 .input-group-addon {
  border-color: transparent; }

.u-searchform-v5 .input-group-addon button[type="submit"] {
  font-size: 1.35714rem;
  height: 100%;
  cursor: pointer;
  outline: none;
  border: none;
  background-color: transparent; }

/*------------------------------------
  Steps v1
------------------------------------*/
.u-steps-v1 {
  padding: .75rem 1rem;
  margin-bottom: 1rem;
  list-style: none;
  background-color: #eee;
  border-radius: .25rem; }

.u-steps-v1::after {
  content: "";
  display: table;
  width: 100%; }

.u-steps-v1 > * {
  display: inline-block;
  vertical-align: middle; }

.u-steps-v1__item {
  float: left;
  margin-right: 15px; }

.u-steps-v1__item a:hover {
  text-decoration: none; }

@media (min-width: 768px) {
  .u-steps-v1 {
    padding: 0;
    margin-bottom: 0;
    background-color: transparent;
    border-radius: 0; }

  .u-steps-v1__item {
    list-style: none;
    margin-right: 40px; }

  .u-steps-v1__item a,
  .u-steps-v1__item span {
    position: relative;
    display: inline-block;
    padding: 10px 15px;
    border-radius: 5px;
    transition-property: background-color;
    transition-duration: .2s;
    transition-timing-function: ease-in; }

  .u-steps-v1__item a::before,
  .u-steps-v1__item span::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 100%;
    display: block;
    width: 70px;
    height: 4px;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%); }

  .u-steps-v1__item a {
    color: #fff;
    background-color: #72c02c; }

  .u-steps-v1__item a::before {
    background-color: #72c02c; }

  .u-steps-v1__item a:hover {
    background-color: #333; }

  .u-steps-v1__item span {
    background-color: #eee; }

  .u-steps-v1__item span::before {
    background-color: #eee; }

  .u-steps-v1__item > i {
    font-size: 10px; }

  .u-steps-v1__item:last-child {
    margin-right: 0; }

  .u-steps-v1__item:last-child a::before,
  .u-steps-v1__item:last-child span::before {
    display: none; }

  .u-steps-v1__item + .u-breadcrumb-v1__item::before {
    display: none; }

  .u-steps-v1__item.active a,
  .u-steps-v1__item.active span {
    color: #fff;
    background-color: #72c02c; }

  .u-steps-v1 a:hover {
    text-decoration: none; } }
/*------------------------------------
  Steps v2
------------------------------------*/
.u-steps-v2 {
  padding: .75rem 1rem;
  margin-bottom: 1rem;
  list-style: none;
  background-color: #eee;
  border-radius: .25rem; }

.u-steps-v2::after {
  content: "";
  display: table;
  width: 100%; }

.u-steps-v2 > * {
  display: inline-block;
  vertical-align: middle; }

.u-steps-v2__item {
  float: left;
  margin-right: 15px; }

.u-steps-v2__item a:hover {
  text-decoration: none; }

@media (min-width: 768px) {
  .u-steps-v2 {
    padding: 0;
    margin-bottom: 0;
    background-color: transparent;
    border-radius: 0; }

  .u-steps-v2__indicator {
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #72c02c;
    box-shadow: 0;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    transition-property: box-shadow;
    transition-duration: .2s;
    transition-timing-function: ease-in; }

  .u-steps-v2__item {
    text-align: center;
    list-style: none;
    margin-right: 40px; }

  .u-steps-v2__item a,
  .u-steps-v2__item span {
    position: relative;
    display: block;
    color: #333;
    padding-bottom: 20px;
    transition-property: color;
    transition-duration: .2s;
    transition-timing-function: ease-in; }

  .u-steps-v2__item a::before,
  .u-steps-v2__item span::before {
    content: "";
    position: absolute;
    bottom: 4px;
    left: 50%;
    display: block;
    width: 120px;
    height: 4px;
    margin-left: 6px; }

  .u-steps-v2__item a::before {
    background-color: #72c02c; }

  .u-steps-v2__item a .u-steps-v2__indicator {
    background-color: #72c02c; }

  .u-steps-v2__item a:hover {
    text-decoration: none; }

  .u-steps-v2__item span::before {
    background-color: #eee; }

  .u-steps-v2__item span .u-steps-v2__indicator {
    background-color: #eee; }

  .u-steps-v2__item:last-child a::before,
  .u-steps-v2__item:last-child span::before {
    display: none; }

  .u-steps-v2__item:hover a {
    color: #72c02c; }

  .u-steps-v2__item:hover a .u-steps-v2__indicator {
    box-shadow: 0 0 0 3px rgba(114, 192, 44, 0.3); }

  .u-steps-v2__item.active a .u-steps-v2__indicator,
  .u-steps-v2__item.active span .u-steps-v2__indicator {
    background-color: #72c02c; } }
/*------------------------------------
  Steps v3
------------------------------------*/
.u-steps-v3 {
  padding: .75rem 1rem;
  margin-bottom: 1rem;
  list-style: none;
  background-color: #eee;
  border-radius: .25rem; }

.u-steps-v3::after {
  content: "";
  display: table;
  width: 100%; }

.u-steps-v3 > * {
  display: inline-block;
  vertical-align: middle; }

.u-steps-v3__item {
  float: left;
  margin-right: 15px; }

.u-steps-v3__item a:hover {
  text-decoration: none; }

.u-steps-v3__indicator {
  font-style: normal; }

.u-steps-v3__indicator::after {
  content: " - "; }

@media (min-width: 768px) {
  .u-steps-v3 {
    padding: 0;
    margin-bottom: 0;
    background-color: transparent;
    border-radius: 0; }

  .u-steps-v3__indicator {
    position: absolute;
    top: 0;
    left: 50%;
    width: 26px;
    height: 26px;
    line-height: 26px;
    text-align: center;
    background-color: #72c02c;
    box-shadow: 0;
    border-radius: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%);
    transition-property: box-shadow;
    transition-duration: .2s;
    transition-timing-function: ease-in; }

  .u-steps-v3__indicator::after {
    display: none; }

  .u-steps-v3__item {
    text-align: center;
    float: left;
    list-style: none;
    margin-right: 40px; }

  .u-steps-v3__item a,
  .u-steps-v3__item span {
    position: relative;
    display: block;
    color: #333;
    padding-top: 40px;
    transition-property: color;
    transition-duration: .2s;
    transition-timing-function: ease-in; }

  .u-steps-v3__item a::before,
  .u-steps-v3__item span::before {
    content: "";
    position: absolute;
    top: 11px;
    left: 50%;
    display: block;
    width: 120px;
    height: 4px;
    margin-left: 13px; }

  .u-steps-v3__item a::before {
    background-color: #72c02c; }

  .u-steps-v3__item a .u-steps-v3__indicator {
    color: #fff;
    background-color: #72c02c; }

  .u-steps-v3__item a:hover {
    text-decoration: none; }

  .u-steps-v3__item span::before {
    background-color: #eee; }

  .u-steps-v3__item span .u-steps-v3__indicator {
    color: #333;
    background-color: #eee; }

  .u-steps-v3__item:last-child a::before,
  .u-steps-v3__item:last-child span::before {
    display: none; }

  .u-steps-v3__item:hover a {
    color: #72c02c; }

  .u-steps-v3__item:hover a .u-steps-v3__indicator {
    box-shadow: 0 0 0 3px rgba(114, 192, 44, 0.3); }

  .u-steps-v3__item.active a .u-steps-v3__indicator,
  .u-steps-v3__item.active span .u-steps-v3__indicator {
    color: #fff;
    background-color: #72c02c; } }
/*------------------------------------
  Time Lines
------------------------------------*/
[class*="u-timeline-v1-wrap"],
[class*="u-timeline-v2-wrap"],
[class*="u-timeline-v3-wrap"] {
  position: relative; }

[class*="u-timeline-v1-wrap"]::before,
[class*="u-timeline-v2-wrap"]::before,
[class*="u-timeline-v3-wrap"]::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  display: block; }

/*------------------------------------
  Time Lines v1
------------------------------------*/
.u-timeline-v1 {
  position: relative;
  border-width: 1px;
  border-style: solid;
  border-color: #eee; }

.u-timeline-v1-wrap::before {
  left: 0;
  width: 1px;
  height: 100%;
  background-color: #f7f7f7;
  margin-left: 20px; }

.u-timeline-v1__icon {
  position: absolute;
  top: 30px;
  font-size: 20px;
  z-index: 3; }

.g-orientation-bottom .u-timeline-v1__icon,
.g-orientation-right .u-timeline-v1__icon,
.g-orientation-left .u-timeline-v1__icon {
  left: 0; }

@media (min-width: 768px) {
  .u-timeline-v1-wrap:not([class*="--horizontal"])::before {
    left: 50%;
    margin-left: -2px; }

  .u-timeline-v1-wrap--horizontal::before {
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 3px;
    margin-left: 0;
    margin-top: -2px; }

  .g-orientation-bottom .u-timeline-v1__icon {
    top: 100%;
    left: 0;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%); }

  .g-orientation-left .u-timeline-v1__icon {
    right: 100%;
    left: auto; }

  .g-orientation-right .u-timeline-v1__icon {
    right: auto;
    left: 100%; } }
/*------------------------------------
  Time Lines v2
------------------------------------*/
@media (min-width: 768px) {
  .u-timeline-v2-wrap::before {
    left: 25%;
    width: 3px;
    height: 100%;
    margin-left: -1px;
    background-color: #f7f7f7; }

  .u-timeline-v2__icon {
    font-size: 16px;
    position: absolute; }

  .g-orientation-right .u-timeline-v2__icon {
    left: 100%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%); }

  .g-orientation-left .u-timeline-v2__icon {
    right: 100%;
    -webkit-transform: translateX(50%);
    -ms-transform: translateX(50%);
    transform: translateX(50%); }

  .g-orientation-bottom .u-timeline-v2__icon {
    top: 100%;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%); } }
/*------------------------------------
  Time Lines v3
------------------------------------*/
.u-timeline-v3-wrap::before {
  left: 21%;
  width: 1px;
  height: 100%;
  display: none;
  background-color: #eee; }

.u-timeline-v3 {
  position: relative; }

.u-timeline-v3__icon {
  left: 21%; }

@media (min-width: 768px) {
  .u-timeline-v3-wrap::before {
    display: block; } }
@media (min-width: 992px) {
  .u-timeline-v3-wrap::before {
    left: 18%; }

  .u-timeline-v3__icon {
    left: 18%; } }
/*------------------------------------
  Background Colors
------------------------------------*/
.u-label {
  display: inline-block;
  padding: .35rem .58rem;
  font-size: .9rem;
  line-height: 1;
  text-align: center;
  white-space: nowrap;
  color: #fff;
  /* Label Size
  ------------------------------------*/
  /* Label Styles
  ------------------------------------*/
  /* Label Num
  ------------------------------------*/ }

.u-label:empty {
  display: none; }

.btn .u-label {
  position: relative;
  top: -1px; }

.u-label-default {
  background-color: #777; }

.u-label-default[href]:hover, .u-label-default[href]:focus {
  background-color: #555; }

.u-label-primary {
  background-color: #5cb85c; }

.u-label-primary[href]:hover, .u-label-primary[href]:focus {
  background-color: #55b555; }

.u-label-success {
  background-color: #5cb85c; }

.u-label-success[href]:hover, .u-label-success[href]:focus {
  background-color: #55b555; }

.u-label-info {
  background-color: #5bc0de; }

.u-label-info[href]:hover, .u-label-info[href]:focus {
  background-color: #53bddc; }

.u-label-warning {
  background-color: #f0ad4e; }

.u-label-warning[href]:hover, .u-label-warning[href]:focus {
  background-color: #efa945; }

.u-label-danger {
  background-color: #d9534f; }

.u-label-danger[href]:hover, .u-label-danger[href]:focus {
  background-color: #d74b47; }

.u-label.g-rounded-10 {
  padding: .35rem .7rem; }

.u-label--sm {
  font-size: .8rem; }

.u-label--lg {
  font-size: 1.1rem; }

.u-label.u-label-with-icon {
  padding: .5rem .85rem; }

.u-label.u-label-with-icon i {
  margin-right: .5rem; }

.u-label-num {
  min-width: 2rem;
  height: 2rem;
  padding: 0 .35rem;
  line-height: 2rem; }

.u-label-num.u-label--sm {
  min-width: 1.6rem;
  height: 1.6rem;
  line-height: 1.6rem; }

.u-label-num.u-label--lg {
  min-width: 2.2rem;
  height: 2.2rem;
  line-height: 2.2rem; }

/*------------------------------------
  Link Styles
------------------------------------*/
.u-link-v1 {
  border-bottom: solid 1px; }

.u-link-v1:hover, .u-link-v1:focus {
  border-bottom: none;
  text-decoration: none; }

.u-link-v2 {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  text-indent: -100%;
  white-space: nowrap;
  overflow: hidden;
  z-index: 2; }

.u-link-v3 {
  text-decoration: underline; }

.u-link-v3:hover {
  text-decoration: none; }

.u-link-v4 {
  transition: all .3s; }

.u-link-v4:hover {
  opacity: .8; }

.u-link-v5 {
  text-decoration: none;
  transition: all .2s; }

.u-link-v5:hover, .u-link-v5:focus {
  text-decoration: none; }

.u-link-v6 {
  display: block;
  overflow: hidden; }

.u-link-v6-arrow {
  margin-left: -50px;
  visibility: hidden;
  opacity: 0;
  transition: all .4s; }

.u-link .u-block-hover:hover-v6-arrow, .u-link-v6:hover-v6-arrow {
  margin-left: 5px;
  visibility: visible;
  opacity: 1; }

.u-link-v7 {
  margin-right: 30px;
  transition: all .4s; }

.u-link-v7-arrow {
  margin-left: -50px;
  visibility: hidden;
  opacity: 0;
  transition: all .4s; }

.u-link .u-block-hover:hover, .u-link-v7:hover {
  margin-right: 0; }

.u-link .u-block-hover:hover-v7-arrow, .u-link-v7:hover-v7-arrow {
  margin-left: 10px;
  visibility: visible;
  opacity: 1; }

/*------------------------------------
  List Styles
------------------------------------*/
.u-list-inline {
  padding-left: 0;
  margin-bottom: 0;
  list-style: none; }

.img-bordered {
  border: solid 6px #777; }

.g-order-1 {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 1;
  -ms-flex-order: 1;
  order: 1; }

.g-order-2 {
  -webkit-box-ordinal-group: 3;
  -webkit-order: 2;
  -ms-flex-order: 2;
  order: 2; }

@media (min-width: 576px) {
  .g-order-1--sm {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1; }

  .g-order-2--sm {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2; } }
@media (min-width: 768px) {
  .g-order-1--md {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1; }

  .g-order-2--md {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2; } }
@media (min-width: 992px) {
  .g-order-1--lg {
    -webkit-box-ordinal-group: 2;
    -webkit-order: 1;
    -ms-flex-order: 1;
    order: 1; }

  .g-order-2--lg {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2; } }
/*------------------------------------
  Paginations
------------------------------------*/
/* Pagination v1 */
.u-pagination-v1__item {
  display: inline-block;
  text-align: center;
  text-decoration: none;
  border: solid 1px transparent;
  transition: all .3s ease; }

.u-pagination-v1__item--active, .u-pagination-v1__item:hover, .u-pagination-v1__item:focus {
  text-decoration: none;
  cursor: pointer; }

.u-pagination-v1__item-info {
  display: inline-block;
  text-align: center;
  text-decoration: none; }

.u-pagination-v1__item--disabled {
  opacity: .5;
  pointer-events: none; }

/* Pagination Style v1 */
.u-pagination-v1-1 {
  color: #999;
  border-color: #999; }

.u-pagination-v1-1--active, .u-pagination-v1-1:hover, .u-pagination-v1-1:focus {
  background-color: #72c02c;
  color: #fff;
  border-color: #72c02c; }

/* Pagination Style v2 */
.u-pagination-v1-2 {
  color: #555;
  border-color: #555; }

.u-pagination-v1-2:hover, .u-pagination-v1-2:focus {
  color: #72c02c;
  border-color: #72c02c; }

.u-pagination-v1-2--active, .u-pagination-v1-2--nav {
  background-color: #72c02c;
  color: #fff;
  border-color: #72c02c; }

.u-pagination-v1-2--active:hover, .u-pagination-v1-2--active:focus, .u-pagination-v1-2--nav:hover, .u-pagination-v1-2--nav:focus {
  color: #fff; }

.u-pagination-v1-2--nav:hover {
  background-color: rgba(114, 192, 44, 0.8); }

/* Pagination Style v3 */
.u-pagination-v1-3 {
  color: #333;
  border-color: #333; }

.u-pagination-v1-3--active, .u-pagination-v1-3:hover, .u-pagination-v1-3:focus {
  background-color: #333;
  color: #fff;
  border-color: #333; }

/* Pagination Style v4 */
.u-pagination-v1-4 {
  color: #333;
  border-color: transparent; }

.u-pagination-v1-4:hover, .u-pagination-v1-4:focus {
  color: #72c02c;
  border-color: #72c02c; }

.u-pagination-v1-4--active {
  color: #fff;
  background-color: #72c02c;
  border-color: #72c02c; }

.u-pagination-v1-4--active:hover, .u-pagination-v1-4--active:focus {
  color: #fff; }

/* Pagination Style v5 */
.u-pagination-v1-5 {
  color: #999;
  border-color: #ccc; }

.u-pagination-v1-5--active, .u-pagination-v1-5:hover, .u-pagination-v1-5:focus {
  background-color: #72c02c;
  color: #fff;
  border-color: #72c02c; }

/*------------------------------------
  Ribbons
------------------------------------*/
.u-ribbon-v1, .u-ribbon-v2 {
  position: absolute;
  font-size: .9rem; }

.u-ribbon-center {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%); }

.u-ribbon--sm {
  font-size: .7rem; }

.u-ribbon--lg {
  font-size: 1.1rem; }

/* Ribbon Style Type 1
------------------------------------*/
.u-ribbon-v1 {
  display: inline-block;
  padding: .35rem .7rem;
  /* Ribbon Type 1 With icon */ }

.u-ribbon-v1.u-ribbon-with-icon {
  padding: .5rem .85rem; }

.u-ribbon-v1 .u-ribbon-icon--left {
  margin-right: .5rem; }

.u-ribbon-v1 .u-ribbon-icon--right {
  margin-left: .5rem; }

/* Ribbon Style Type 2
------------------------------------*/
.u-ribbon-v2 {
  display: inline-block;
  padding: 1rem 1.1rem; }

.u-ribbon-v2.u-ribbon--sm {
  padding: 1rem 1.2rem; }

.u-ribbon-v2.u-ribbon--lg {
  padding: 1.2rem 1.1rem; }

/* Bookmarked Ribbon
------------------------------------*/
.u-ribbon-bookmark::after {
  content: "";
  position: absolute;
  bottom: -1.1rem;
  left: 0;
  width: 100%;
  height: 0;
  border-style: solid;
  border-left-width: 1.5rem;
  border-right-width: 1.5rem;
  border-bottom: 1rem solid transparent !important; }

.u-ribbon--lg.u-ribbon-bookmark::after {
  border-right-width: 1.4rem; }

/* Ribbon Colors
------------------------------------*/
.u-ribbon-bookmark.g-bg-primary::after {
  border-color: #72c02c; }

.u-ribbon-bookmark.g-bg-black::after {
  border-color: #000; }

.u-ribbon-bookmark.g-bg-white::after {
  border-color: #fff; }

.u-ribbon-bookmark.g-bg-light-opacity::after {
  border-color: rgba(255, 255, 255, 0.7); }

.u-ribbon-bookmark.g-bg-dark-opacity::after {
  border-color: rgba(30, 30, 30, 0.7); }

.u-ribbon-bookmark.g-color-gray-light-v3::after {
  border-color: #ddd; }

.u-ribbon-bookmark.g-color-gray-light-v4::after {
  border-color: #eee; }

.u-ribbon-bookmark.g-color-gray-dark-v5::after {
  border-color: #999; }

.u-ribbon-bookmark.g-bg-green::after {
  border-color: #72c02c; }

.u-ribbon-bookmark.g-bg-blue::after {
  border-color: #3398dc; }

.u-ribbon-bookmark.g-bg-lightblue::after {
  border-color: #edf2f8; }

.u-ribbon-bookmark.g-bg-lightblue-v1::after {
  border-color: #d6e2ee; }

.u-ribbon-bookmark.g-bg-darkblue::after {
  border-color: #009; }

.u-ribbon-bookmark.g-bg-indigo::after {
  border-color: #4263a3; }

.u-ribbon-bookmark.g-bg-red::after {
  border-color: #f00; }

.u-ribbon-bookmark.g-bg-lightred::after {
  border-color: #e64b3b; }

.u-ribbon-bookmark.g-bg-darkred::after {
  border-color: #a10f2b; }

.u-ribbon-bookmark.g-bg-purple::after {
  border-color: #9a69cb; }

.u-ribbon-bookmark.g-bg-darkpurple::after {
  border-color: #6639b6; }

.u-ribbon-bookmark.g-bg-pink::after {
  border-color: #e81c62; }

.u-ribbon-bookmark.g-bg-orange::after {
  border-color: #a10f2b; }

.u-ribbon-bookmark.g-bg-deeporange::after {
  border-color: #fe541e; }

.u-ribbon-bookmark.g-bg-yellow::after {
  border-color: #a10f2b; }

.u-ribbon-bookmark.g-bg-aqua::after {
  border-color: #29d6e6; }

.u-ribbon-bookmark.g-bg-cyan::after {
  border-color: #00bed6; }

.u-ribbon-bookmark.g-bg-teal::after {
  border-color: #18ba9b; }

.u-ribbon-bookmark.g-bg-brown::after {
  border-color: #a10f2b; }

.u-ribbon-bookmark.g-bg-bluegray::after {
  border-color: #585f69; }

/* Clipped-v1 Ribbon
------------------------------------*/
.u-ribbon-clip-v1::before,
.u-ribbon-clip-v2::before {
  content: "";
  position: absolute;
  bottom: -0.71429rem;
  border-style: solid; }

.u-ribbon--left.u-ribbon-clip-v1::before,
.u-ribbon--left.u-ribbon-clip-v2::before {
  left: 0;
  border-width: 0 0.71429rem 0.71429rem 0;
  border-right-color: #999; }

.u-ribbon--right.u-ribbon-clip-v1::before,
.u-ribbon--right.u-ribbon-clip-v2::before {
  right: 0;
  border-width: 0 0 0.71429rem 0.71429rem;
  border-left-color: #999; }

/* Clipped-v2 Ribbon
------------------------------------*/
.u-ribbon-clip-v2 {
  padding: .35rem 1.35rem;
  -webkit-transform: skewX(-10deg) translateZ(1px);
  transform: skewX(-10deg) translateZ(1px); }

.u-ribbon-clip-v2.u-ribbon-with-icon {
  padding: .5rem 1.35rem; }

.u-ribbon-clip-v2__inner {
  display: inline-block;
  -webkit-transform: skewX(10deg) translateZ(1px);
  transform: skewX(10deg) translateZ(1px); }

.u-ribbon-clip-v2::before {
  -webkit-transform: skewX(10deg);
  -ms-transform: skewX(10deg);
  transform: skewX(10deg); }

.u-ribbon--left.u-ribbon-clip-v2::before {
  left: 0.07143rem; }

.u-ribbon--right.u-ribbon-clip-v2::before {
  right: -0.07143rem; }

/* Clipped-v3 Ribbon
------------------------------------*/
.u-ribbon-clip-v3 {
  width: calc(100% + 20px);
  text-align: center; }

.u-ribbon-clip-v3::before,
.u-ribbon-clip-v3::after {
  content: "";
  position: absolute; }

.u-ribbon-clip-v3::before {
  left: 0;
  bottom: -0.71429rem;
  width: 0;
  height: 0;
  border-top: 10px solid #999;
  border-left: 10px solid transparent; }

.u-ribbon-clip-v3::after {
  right: 0;
  bottom: -0.71429rem;
  width: 0;
  height: 0;
  border-top: 10px solid #999;
  border-right: 10px solid transparent; }

/* Clipped-v4 Ribbon
------------------------------------*/
.u-ribbon-clip-v4 {
  width: 100%;
  height: 100%;
  overflow: hidden; }

.u-ribbon-clip-v4::before,
.u-ribbon-clip-v4::after {
  content: "";
  position: absolute; }

.u-ribbon-clip-v4::before {
  top: 0;
  width: 2.85714rem;
  height: 0.42857rem;
  background: #999;
  border-radius: 0.57143rem 0.57143rem 0 0; }

.u-ribbon-clip-v4.u-ribbon--left::before {
  left: 7.14286rem; }

.u-ribbon-clip-v4.u-ribbon--right::before {
  right: 7.14286rem; }

.u-ribbon-clip-v4::after {
  top: 7.14286rem;
  width: 0.42857rem;
  height: 2.85714rem;
  background: #999; }

.u-ribbon-clip-v4.u-ribbon--left::after {
  left: 0;
  border-radius: 0.57143rem 0 0 0.57143rem; }

.u-ribbon-clip-v4.u-ribbon--right::after {
  right: 0;
  border-radius: 0 0.57143rem 0.57143rem 0; }

.u-ribbon-clip-v4__inner {
  position: absolute;
  top: 2.14286rem;
  width: 14.28571rem;
  height: 2.85714rem;
  line-height: 2.85714rem;
  overflow: hidden;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  text-align: center;
  z-index: 2; }

.u-ribbon--left .u-ribbon-clip-v4__inner {
  left: -3.57143rem;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg); }

.u-ribbon--right .u-ribbon-clip-v4__inner {
  right: -3.57143rem;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg); }

.u-ribbon-clip-v4__inner--bordered {
  border: 1px dashed rgba(255, 255, 255, 0.7); }

.u-ribbon-clip-v4__inner.g-bg-primary {
  box-shadow: 0 0 0 3px #72c02c, 0 21px 5px -18px rgba(0, 0, 0, 0.6); }

.u-ribbon-clip-v4__inner.g-bg-black {
  box-shadow: 0 0 0 3px #000, 0 21px 5px -18px rgba(0, 0, 0, 0.6); }

.u-ribbon-clip-v4__inner.g-bg-white {
  box-shadow: 0 0 0 3px #fff, 0 21px 5px -18px rgba(0, 0, 0, 0.6); }

.u-ribbon-clip-v4__inner.g-bg-light-opacity {
  box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.7), 0 21px 5px -18px rgba(0, 0, 0, 0.6); }

.u-ribbon-clip-v4__inner.g-bg-dark-opacity {
  box-shadow: 0 0 0 3px rgba(30, 30, 30, 0.7), 0 21px 5px -18px rgba(0, 0, 0, 0.6); }

.u-ribbon-clip-v4__inner.g-color-gray-light-v3 {
  box-shadow: 0 0 0 3px #ddd, 0 21px 5px -18px rgba(0, 0, 0, 0.6); }

.u-ribbon-clip-v4__inner.g-color-gray-light-v4 {
  box-shadow: 0 0 0 3px #eee, 0 21px 5px -18px rgba(0, 0, 0, 0.6); }

.u-ribbon-clip-v4__inner.g-color-gray-dark-v5 {
  box-shadow: 0 0 0 3px #999, 0 21px 5px -18px rgba(0, 0, 0, 0.6); }

.u-ribbon-clip-v4__inner.g-bg-green {
  box-shadow: 0 0 0 3px #72c02c, 0 21px 5px -18px rgba(0, 0, 0, 0.6); }

.u-ribbon-clip-v4__inner.g-bg-blue {
  box-shadow: 0 0 0 3px #3398dc, 0 21px 5px -18px rgba(0, 0, 0, 0.6); }

.u-ribbon-clip-v4__inner.g-bg-lightblue {
  box-shadow: 0 0 0 3px #edf2f8, 0 21px 5px -18px rgba(0, 0, 0, 0.6); }

.u-ribbon-clip-v4__inner.g-bg-lightblue-v1 {
  box-shadow: 0 0 0 3px #d6e2ee, 0 21px 5px -18px rgba(0, 0, 0, 0.6); }

.u-ribbon-clip-v4__inner.g-bg-darkblue {
  box-shadow: 0 0 0 3px #009, 0 21px 5px -18px rgba(0, 0, 0, 0.6); }

.u-ribbon-clip-v4__inner.g-bg-indigo {
  box-shadow: 0 0 0 3px #4263a3, 0 21px 5px -18px rgba(0, 0, 0, 0.6); }

.u-ribbon-clip-v4__inner.g-bg-red {
  box-shadow: 0 0 0 3px #f00, 0 21px 5px -18px rgba(0, 0, 0, 0.6); }

.u-ribbon-clip-v4__inner.g-bg-lightred {
  box-shadow: 0 0 0 3px #e64b3b, 0 21px 5px -18px rgba(0, 0, 0, 0.6); }

.u-ribbon-clip-v4__inner.g-bg-darkred {
  box-shadow: 0 0 0 3px #a10f2b, 0 21px 5px -18px rgba(0, 0, 0, 0.6); }

.u-ribbon-clip-v4__inner.g-bg-purple {
  box-shadow: 0 0 0 3px #9a69cb, 0 21px 5px -18px rgba(0, 0, 0, 0.6); }

.u-ribbon-clip-v4__inner.g-bg-darkpurple {
  box-shadow: 0 0 0 3px #6639b6, 0 21px 5px -18px rgba(0, 0, 0, 0.6); }

.u-ribbon-clip-v4__inner.g-bg-pink {
  box-shadow: 0 0 0 3px #e81c62, 0 21px 5px -18px rgba(0, 0, 0, 0.6); }

.u-ribbon-clip-v4__inner.g-bg-orange {
  box-shadow: 0 0 0 3px #a10f2b, 0 21px 5px -18px rgba(0, 0, 0, 0.6); }

.u-ribbon-clip-v4__inner.g-bg-deeporange {
  box-shadow: 0 0 0 3px #fe541e, 0 21px 5px -18px rgba(0, 0, 0, 0.6); }

.u-ribbon-clip-v4__inner.g-bg-yellow {
  box-shadow: 0 0 0 3px #a10f2b, 0 21px 5px -18px rgba(0, 0, 0, 0.6); }

.u-ribbon-clip-v4__inner.g-bg-aqua {
  box-shadow: 0 0 0 3px #29d6e6, 0 21px 5px -18px rgba(0, 0, 0, 0.6); }

.u-ribbon-clip-v4__inner.g-bg-cyan {
  box-shadow: 0 0 0 3px #00bed6, 0 21px 5px -18px rgba(0, 0, 0, 0.6); }

.u-ribbon-clip-v4__inner.g-bg-teal {
  box-shadow: 0 0 0 3px #18ba9b, 0 21px 5px -18px rgba(0, 0, 0, 0.6); }

.u-ribbon-clip-v4__inner.g-bg-brown {
  box-shadow: 0 0 0 3px #a10f2b, 0 21px 5px -18px rgba(0, 0, 0, 0.6); }

.u-ribbon-clip-v4__inner.g-bg-bluegray {
  box-shadow: 0 0 0 3px #585f69, 0 21px 5px -18px rgba(0, 0, 0, 0.6); }

/*------------------------------------
  Animation on the scroll
------------------------------------*/
[data-animation]:not(.u-in-viewport) {
  visibility: hidden; }

[data-animation].js-carousel {
  visibility: visible; }

.u-in-viewport {
  visibility: visible; }

/*------------------------------------
  Stickers
------------------------------------*/
.u-sticker {
  position: absolute; }

/* Sticker Position
------------------------------------*/
.u-sticker-center {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%); }

/*------------------------------------
  Sticky blocks
------------------------------------*/
[class*="sticky-block"] {
  max-width: 100%; }

/*------------------------------------
  Tables
------------------------------------*/
[class*="text"][class*="center"] td,
[class*="text"][class*="center"] th {
  text-align: center; }

.u-table--v1 td,
.u-table--v1 th {
  padding: 8px; }

.u-table--v1 thead th {
  border-bottom-width: 1px; }

.u-table--v2 td,
.u-table--v2 th {
  padding: 15px; }

.u-table--v2 thead th {
  background-color: inherit;
  border-bottom-width: 1px; }

.g-col-border-top-0 td,
.g-col-border-top-0 th {
  border-top-width: 0; }

.g-col-border-side-0 td,
.g-col-border-side-0 th {
  border-left-width: 0;
  border-right-width: 0; }

/*------------------------------------
  Tabs
------------------------------------*/
/* Colors
------------------------------------*/
.g-color-primary--active.active {
  color: #72c02c; }

.g-color-black--active.active {
  color: #000; }

.g-color-gray-dark-v2--active.active {
  color: #333; }

.g-color-white--active.active {
  color: #fff; }

/* Style for Icons
------------------------------------*/
.u-tab-line-icon-pro {
  position: relative;
  top: 2px; }

/* HZ
------------------------------------*/
.nav-item > a,
.nav-item > .nav-link,
[class*="u-tab-link"]:not([class*="-icon"]) {
  transition-property: color, background-color, border-color;
  transition-duration: .2s;
  transition-timing-function: ease-in; }

[role="tablist"]:not([data-tabs-mobile-type="slide-up-down"]):not([data-tabs-mobile-type="accordion"]):not([data-scroll]) {
  display: block; }

[role="tablist"]:not([data-tabs-mobile-type="slide-up-down"]):not([data-tabs-mobile-type="accordion"]):not([data-scroll]) .nav-item {
  display: inline-block; }

[role="tablist"]:not([data-tabs-mobile-type="slide-up-down"]):not([data-tabs-mobile-type="accordion"]):not([data-scroll]) .js-tabs-mobile {
  position: relative;
  display: none; }

[role="tablist"]:not([data-tabs-mobile-type="slide-up-down"]):not([data-tabs-mobile-type="accordion"]):not([data-scroll]) .js-tabs-mobile-control {
  position: relative;
  display: block; }

[role="tablist"]:not([data-tabs-mobile-type="slide-up-down"]):not([data-tabs-mobile-type="accordion"]):not([data-scroll]) .js-tabs-mobile-control::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  display: block;
  width: 0;
  height: 0;
  border-width: 5px 3.5px 0 3.5px;
  border-style: solid;
  border-color: #777 transparent transparent transparent;
  margin-top: -1px; }

[role="tablist"]:not([data-tabs-mobile-type="slide-up-down"]):not([data-tabs-mobile-type="accordion"]):not([data-scroll]) .js-tabs-mobile .nav-inner {
  position: absolute;
  top: calc(100% + 1px);
  right: 0;
  display: none;
  background-color: #fff;
  border: 1px solid;
  padding-left: 0; }

[role="tablist"]:not([data-tabs-mobile-type="slide-up-down"]):not([data-tabs-mobile-type="accordion"]):not([data-scroll]) .js-tabs-mobile .nav-inner .nav-item {
  display: block;
  white-space: nowrap; }

[data-scroll]:not([data-tabs-mobile-type="slide-up-down"]):not([data-tabs-mobile-type="accordion"]) {
  width: 100%;
  white-space: nowrap;
  overflow-x: scroll;
  overflow-y: hidden; }

[data-scroll]:not([data-tabs-mobile-type="slide-up-down"]):not([data-tabs-mobile-type="accordion"])::-webkit-scrollbar {
  display: none; }

@-moz-document url-prefix() {
  [data-scroll]:not([data-tabs-mobile-type="slide-up-down"]):not([data-tabs-mobile-type="accordion"]) {
    padding-bottom: 15px; } }
@media (min-width: 768px) {
  [data-scroll] {
    width: 100%;
    white-space: nowrap;
    overflow-x: scroll;
    overflow-y: hidden;
    -webkit-flex-wrap: nowrap;
    -ms-flex-wrap: nowrap;
    flex-wrap: nowrap; }

  [data-scroll]::-webkit-scrollbar {
    display: none; }

  @-moz-document url-prefix() {
    [data-scroll] {
      padding-bottom: 15px; } } }
/*------------------------------------
  Tabs v1
------------------------------------*/
/* Tabs v1
------------------------------------*/
@media (min-width: 768px) {
  [class*="u-nav-v1"].u-nav-rounded-3 .nav-link {
    border-radius: 3px; }

  [class*="u-nav-v1"].u-nav-rounded-5 .nav-link {
    border-radius: 5px; }

  [class*="u-nav-v1"].u-nav-rounded-7 .nav-link {
    border-radius: 7px; }

  [class*="u-nav-v1"].u-nav-rounded-10 .nav-link {
    border-radius: 10px; }

  .u-nav-v1-1 .nav-link.active {
    background-color: #eee; }

  .u-nav-v1-1.u-nav-primary .nav-link.active {
    color: #fff;
    background-color: #72c02c; }

  .u-nav-v1-1.u-nav-dark .nav-link.active {
    color: #fff;
    background-color: #333; }

  .u-nav-v1-1.u-nav-light .nav-link {
    color: #fff; }

  .u-nav-v1-1.u-nav-light .nav-link.active {
    color: #333;
    background-color: #fff; }

  .u-nav-v1-2 .nav-link {
    border: solid 1px transparent; }

  .u-nav-v1-2 .nav-link.active {
    border-color: #eee; }

  .u-nav-v1-2.u-nav-primary .nav-link.active {
    border-color: #72c02c; }

  .u-nav-v1-2.u-nav-dark .nav-link.active {
    border-color: #333; }

  .u-nav-v1-2.u-nav-light .nav-link {
    color: #fff; }

  .u-nav-v1-2.u-nav-light .nav-link.active {
    border-color: #fff; } }
/*------------------------------------
  Tabs v2
------------------------------------*/
@media (min-width: 768px) {
  [class*="u-nav-v2"] .nav-link {
    border-style: solid;
    border-color: #eee;
    border-width: 1px;
    margin-left: -1px; }

  [class*="u-nav-v2"] .nav-item:first-child .nav-link {
    margin-left: 0; }

  [class*="u-nav-v2"].flex-column .nav-link {
    margin: -1px 0 0; }

  [class*="u-nav-v2"].flex-column .nav-item:first-child .nav-link {
    margin-top: 0; }

  [class*="u-nav-v2"].u-nav-primary .nav-link {
    border-color: #72c02c; }

  [class*="u-nav-v2"].u-nav-primary .nav-link.active,
  [class*="u-nav-v2"].u-nav-primary .cbp-filter-item-active .nav-link {
    border-color: #72c02c !important; }

  [class*="u-nav-v2"].u-nav-dark .nav-link {
    border-color: #333; }

  [class*="u-nav-v2"].u-nav-dark .nav-link.active,
  [class*="u-nav-v2"].u-nav-dark .cbp-filter-item-active .nav-link {
    border-color: #333 !important; }

  [class*="u-nav-v2"].u-nav-light .nav-link {
    color: #fff;
    border-color: #fff; }

  [class*="u-nav-v2"].u-nav-light .nav-link.active,
  [class*="u-nav-v2"].u-nav-light .cbp-filter-item-active .nav-link {
    border-color: #fff !important; }

  [class*="u-nav-v2"].u-nav-rounded-3 .nav-item:first-child .nav-link {
    border-radius: 3px 0 0 3px; }

  [class*="u-nav-v2"].u-nav-rounded-3 .nav-item:last-child .nav-link {
    border-radius: 0 3px 3px 0; }

  [class*="u-nav-v2"].u-nav-rounded-3.flex-column .nav-item:first-child .nav-link {
    border-radius: 3px 3px 0 0; }

  [class*="u-nav-v2"].u-nav-rounded-3.flex-column .nav-item:last-child .nav-link {
    border-radius: 0 0 3px 3px; }

  [class*="u-nav-v2"].u-nav-rounded-5 .nav-item:first-child .nav-link {
    border-radius: 5px 0 0 5px; }

  [class*="u-nav-v2"].u-nav-rounded-5 .nav-item:last-child .nav-link {
    border-radius: 0 5px 5px 0; }

  [class*="u-nav-v2"].u-nav-rounded-5.flex-column .nav-item:first-child .nav-link {
    border-radius: 5px 5px 0 0; }

  [class*="u-nav-v2"].u-nav-rounded-5.flex-column .nav-item:last-child .nav-link {
    border-radius: 0 0 5px 5px; }

  [class*="u-nav-v2"].u-nav-rounded-7 .nav-item:first-child .nav-link {
    border-radius: 7px 0 0 7px; }

  [class*="u-nav-v2"].u-nav-rounded-7 .nav-item:last-child .nav-link {
    border-radius: 0 7px 7px 0; }

  [class*="u-nav-v2"].u-nav-rounded-7.flex-column .nav-item:first-child .nav-link {
    border-radius: 7px 7px 0 0; }

  [class*="u-nav-v2"].u-nav-rounded-7.flex-column .nav-item:last-child .nav-link {
    border-radius: 0 0 7px 7px; }

  [class*="u-nav-v2"].u-nav-rounded-10 .nav-item:first-child .nav-link {
    border-radius: 10px 0 0 10px; }

  [class*="u-nav-v2"].u-nav-rounded-10 .nav-item:last-child .nav-link {
    border-radius: 0 10px 10px 0; }

  [class*="u-nav-v2"].u-nav-rounded-10.flex-column .nav-item:first-child .nav-link {
    border-radius: 10px 10px 0 0; }

  [class*="u-nav-v2"].u-nav-rounded-10.flex-column .nav-item:last-child .nav-link {
    border-radius: 0 0 10px 10px; }

  .u-nav-v2-1 .nav-link.active,
  .u-nav-v2-1 .cbp-filter-item-active .nav-link {
    background-color: #eee; }

  .u-nav-v2-1.u-nav-primary .nav-link.active,
  .u-nav-v2-1.u-nav-primary .cbp-filter-item-active .nav-link {
    color: #fff;
    background-color: #72c02c; }

  .u-nav-v2-1.u-nav-dark .nav-link.active,
  .u-nav-v2-1.u-nav-dark .nav-link.cbp-filter-item-active {
    color: #fff;
    background-color: #333; }

  .u-nav-v2-1.u-nav-light .nav-link.active,
  .u-nav-v2-1.u-nav-light .nav-link.cbp-filter-item-active {
    color: #333;
    background-color: #fff; }

  .u-nav-v2-2 .nav-link.active,
  .u-nav-v2-2 .cbp-filter-item-active .nav-link {
    color: #72c02c; } }
/*------------------------------------
  Tabs v3
------------------------------------*/
@media (min-width: 768px) {
  [class*="u-nav-v3"] .nav-link {
    border-style: solid;
    border-width: 1px 0;
    border-color: #eee; }

  [class*="u-nav-v3"].flex-column .nav-link {
    margin: -1px 0 0; }

  [class*="u-nav-v3"].flex-column .nav-item:first-child .nav-link {
    margin-top: 0; }

  [class*="u-nav-v3"] .nav-link.active {
    color: #72c02c; }

  [class*="u-nav-v3"].u-nav-light .nav-link {
    color: #fff;
    border-color: #fff; }

  [class*="u-nav-v3"].u-nav-light .nav-link.active {
    color: #72c02c;
    border-color: #fff !important; }

  .u-nav-v3-2 .nav-link {
    z-index: 1; }

  .u-nav-v3-2 .nav-link.active {
    border-color: #72c02c;
    z-index: 2;
    position: relative; } }
/*------------------------------------
  Tabs v4
------------------------------------*/
@media (min-width: 768px) {
  .u-nav-v4-1 {
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-bottom-color: #eee; }

  .u-nav-v4-1 .nav-item {
    margin-bottom: -1px; }

  .u-nav-v4-1 .nav-link {
    border-style: solid;
    border-width: 2px 1px 1px;
    border-color: transparent; }

  .u-nav-v4-1 .nav-link.active {
    border-color: #ccc #eee #fff; }

  .u-nav-v4-1.u-nav-light .nav-link {
    color: #fff; }

  .u-nav-v4-1.u-nav-light .nav-link.active {
    color: #fff;
    border-color: #ccc #eee transparent;
    background-color: #333; }

  .u-nav-v4-1.u-nav-light.flex-column .nav-link.active {
    border-color: #ccc transparent #ccc #eee;
    border-width: 1px 0 1px 1px;
    background-color: #333; }

  .u-nav-v4-1.u-nav-primary .nav-link.active {
    border-color: #72c02c #eee #fff; }

  .u-nav-v4-1.u-nav-dark .nav-link.active {
    border-color: #333 #eee #fff; } }
@media (min-width: 768px) and (min-width: 768px) {
  .u-nav-v4-1-column {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex; }

  .u-nav-v4-1-column .u-nav-v4-1 {
    border-bottom: none; }

  .u-nav-v4-1-column .u-nav-v4-1 .nav-item {
    margin: 0 -1px 0 0;
    z-index: 2; }

  .u-nav-v4-1-column .u-nav-v4-1 .nav-link {
    border-style: solid;
    border-width: 1px 1px 1px 2px;
    border-color: transparent; }

  .u-nav-v4-1-column .u-nav-v4-1 .nav-link.active {
    border-color: #eee #fff #eee #ccc; }

  .u-nav-v4-1-column .u-nav-v4-1.u-nav-primary .nav-link.active {
    border-color: #eee #fff #eee #72c02c; }

  .u-nav-v4-1-column .u-nav-v4-1.u-nav-dark .nav-link.active {
    border-color: #eee #fff #eee #333; }

  .u-nav-v4-1-column .nav {
    width: 30%; }

  .u-nav-v4-1-column .tab-content {
    width: 70%; } }
/*------------------------------------
  Tabs v5
------------------------------------*/
@media (min-width: 768px) {
  [class*="u-nav-v5"] .nav-item {
    margin-bottom: -1px; }

  [class*="u-nav-v5"] .nav-link {
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-bottom-color: transparent; }

  [class*="u-nav-v5"] .nav-link.active {
    border-color: #ccc; }

  [class*="u-nav-v5"].u-nav-primary .nav-link.active {
    border-color: #72c02c;
    color: #72c02c; }

  [class*="u-nav-v5"].u-nav-dark .nav-link.active {
    border-color: #333;
    color: #333; }

  [class*="u-nav-v5"].u-nav-light .nav-link {
    color: #fff; }

  [class*="u-nav-v5"].u-nav-light .nav-link.active {
    color: #fff;
    border-color: #fff; }

  .u-nav-v5-2 .nav-link {
    border-bottom-width: 2px; }

  .u-nav-v5-3 .nav-link {
    border-bottom-width: 5px; } }
/*------------------------------------
  Tabs v6
------------------------------------*/
@media (min-width: 768px) {
  [class*="u-nav-v6"] .nav-link {
    position: relative;
    border-bottom-style: solid;
    border-bottom-width: 2px;
    border-bottom-color: transparent;
    transition: none; }

  [class*="u-nav-v6"] .nav-link:after, [class*="u-nav-v6"] .nav-link:before {
    top: 100%;
    left: 50%;
    border: solid transparent;
    content: "";
    height: 0;
    width: 0;
    position: absolute;
    pointer-events: none; }

  [class*="u-nav-v6"] .nav-link:after {
    border-top-color: #fff;
    border-width: 4px;
    margin-left: -4px; }

  [class*="u-nav-v6"] .nav-link:before {
    border-width: 6px;
    margin-left: -6px; }

  [class*="u-nav-v6"] .nav-link.active {
    border-color: #72c02c; }

  [class*="u-nav-v6"] .nav-link.active::after, [class*="u-nav-v6"] .nav-link.active::before {
    opacity: 1; }

  [class*="u-nav-v6"] .nav-link.active::before {
    border-top-color: #72c02c; }

  [class*="u-nav-v6"].u-nav-light .nav-link {
    color: #fff; }

  [class*="u-nav-v6"].u-nav-light .nav-link::after {
    border-top-color: #333; }

  [class*="u-nav-v6"].u-nav-light .nav-link.active {
    color: #fff;
    border-color: #fff; }

  [class*="u-nav-v6"].u-nav-light .nav-link.active:before {
    border-top-color: #fff; }

  [class*="u-nav-v6"].u-nav-light .nav-link.active::after {
    border-top-color: #333; }

  [class*="u-nav-v6"].flex-column .nav-link {
    border-bottom: none;
    border-right-style: solid;
    border-right-width: 2px;
    border-right-color: transparent; }

  [class*="u-nav-v6"].flex-column .nav-link:after, [class*="u-nav-v6"].flex-column .nav-link:before {
    top: 50%;
    left: auto; }

  [class*="u-nav-v6"].flex-column .nav-link:after {
    border-top-color: transparent;
    border-left-color: #fff;
    border-width: 4px;
    margin-left: 0;
    margin-top: -5px;
    right: -8px; }

  [class*="u-nav-v6"].flex-column .nav-link:before {
    border-top-color: transparent;
    border-left-color: #fff;
    border-width: 6px;
    margin-left: 0;
    margin-top: -7px;
    right: -13px; }

  [class*="u-nav-v6"].flex-column .nav-link.active {
    border-color: #72c02c; }

  [class*="u-nav-v6"].flex-column .nav-link.active::before {
    border-left-color: #72c02c; } }
/*------------------------------------
  Tabs v7
------------------------------------*/
@media (min-width: 768px) {
  [class*="u-nav-v7"] .nav-item {
    position: relative; }

  [class*="u-nav-v7"] .nav-item::after {
    content: "";
    position: absolute;
    top: 50%;
    right: 0;
    display: block;
    width: 0;
    height: 35%;
    border-right-style: solid;
    border-right-width: 1px;
    border-right-color: #ccc;
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%); }

  [class*="u-nav-v7"] .nav-item:last-child::after {
    border-right-color: transparent; }

  [class*="u-nav-v7"] .nav-link.active {
    color: #72c02c; }

  [class*="u-nav-v7"].u-nav-dark .nav-link.active {
    color: #333; }

  [class*="u-nav-v7"].u-nav-light .nav-link {
    color: #fff; }

  [class*="u-nav-v7"].u-nav-light .nav-link.active {
    color: #fff;
    opacity: .5; }

  [class*="u-nav-v7"].flex-column .nav-item::after {
    top: 100%;
    left: 0;
    right: auto;
    width: 35%;
    height: 0;
    border-right: none;
    border-bottom-style: solid;
    border-bottom-width: 1px;
    border-bottom-color: #ccc;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0); }

  [class*="u-nav-v7"].flex-column .nav-item:last-child::after {
    border-bottom-color: transparent; }

  [class*="u-nav-v7"].flex-column .nav-link {
    padding-left: 0;
    padding-right: 0; }

  [class*="u-nav-v7"].flex-column.text-center .nav-item::after {
    left: 50%;
    -webkit-transform: translateX(-50%);
    -ms-transform: translateX(-50%);
    transform: translateX(-50%); } }
/*------------------------------------
  Tabs v8
------------------------------------*/
[class*="u-nav-v8"] .nav-link {
  position: relative;
  min-height: 100%;
  padding: 10px 20px;
  background-color: #333;
  color: #fff;
  transition: none; }

[class*="u-nav-v8"] .nav-link::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100%;
  background-image: linear-gradient(to left, #333 0%, rgba(17, 17, 17, 0.2) 100%);
  background-repeat: repeat-y;
  z-index: 1; }

[class*="u-nav-v8"] .nav-link.active {
  background-color: #72c02c; }

[class*="u-nav-v8"] .nav-link.active::after {
  display: none; }

[class*="u-nav-v8"] .nav-link.active .u-nav-v8__icon {
  background-color: #72c02c; }

[class*="u-nav-v8"] .nav-link.active .u-nav-v8__description {
  color: rgba(255, 255, 255, 0.7); }

[class*="u-nav-v8"].u-nav-light .nav-link {
  color: #333; }

[class*="u-nav-v8"].u-nav-light .nav-link.active {
  color: #555;
  background-color: #fff; }

[class*="u-nav-v8"].u-nav-light .nav-link.active .u-nav-v8__icon {
  color: #fff;
  background-color: #72c02c; }

[class*="u-nav-v8"].u-nav-light .nav-link.active .u-nav-v8__title, [class*="u-nav-v8"].u-nav-light .nav-link.active .u-nav-v8__description {
  color: #555; }

[class*="u-nav-v8"].u-nav-light .u-nav-v8__icon {
  background-color: #fff;
  color: #fff; }

[class*="u-nav-v8"].u-nav-light .u-nav-v8__title, [class*="u-nav-v8"].u-nav-light .u-nav-v8__description {
  color: #fff; }

.u-nav-v8__icon, .u-nav-v8__title, .u-nav-v8__description {
  position: relative;
  z-index: 3; }

.u-nav-v8__icon {
  display: none;
  background-color: #333;
  color: #fff;
  -webkit-transform: translateY(-51%);
  -ms-transform: translateY(-51%);
  transform: translateY(-51%);
  transition: none; }

.u-nav-v8__title {
  display: block; }

.u-nav-v8__description {
  color: inherit;
  font-style: normal; }

@media (min-width: 768px) {
  [class*="u-nav-v8"] .nav-link {
    padding: 0 20px 25px; }

  [class*="u-nav-v8"].u-nav-light .nav-link {
    background-color: #fff; }

  [class*="u-nav-v8"].u-nav-light .nav-link::before {
    background-image: linear-gradient(to bottom left, transparent 49.6%, #fff 50%), linear-gradient(to top left, transparent 49.6%, #fff 50%); }

  [class*="u-nav-v8"].u-nav-light .nav-link::after {
    background-image: linear-gradient(to left, #fff 0%, rgba(204, 204, 204, 0.2) 100%); }

  [class*="u-nav-v8"].u-nav-light .nav-link.active {
    color: #fff;
    background-color: #72c02c; }

  [class*="u-nav-v8"].u-nav-light .nav-link.active::before {
    background-image: linear-gradient(to bottom left, transparent 49.6%, #72c02c 50%), linear-gradient(to top left, transparent 49.6%, #72c02c 50%); }

  [class*="u-nav-v8"].u-nav-light .nav-link.active .u-nav-v8__title {
    color: #fff; }

  [class*="u-nav-v8"].u-nav-light .nav-link.active .u-nav-v8__description {
    color: rgba(255, 255, 255, 0.7); }

  [class*="u-nav-v8"].u-nav-light .u-nav-v8__icon, [class*="u-nav-v8"].u-nav-light .u-nav-v8__title, [class*="u-nav-v8"].u-nav-light .u-nav-v8__description {
    color: #555; }

  [class*="u-nav-v8"].justify-content-end .nav-item:first-child .nav-link::before, [class*="u-nav-v8"].text-right .nav-item:first-child .nav-link::before {
    display: none; }

  [class*="u-nav-v8"].justify-content-end .nav-item:last-child .nav-link, [class*="u-nav-v8"].text-right .nav-item:last-child .nav-link {
    padding: 0 20px 25px; }

  [class*="u-nav-v8"].justify-content-end .nav-item:last-child .nav-link::before, [class*="u-nav-v8"].text-right .nav-item:last-child .nav-link::before {
    display: block; }

  [class*="u-nav-v8"].justify-content-end .nav-link::before, [class*="u-nav-v8"].text-right .nav-link::before {
    left: -26px;
    right: auto;
    background-position: top right, bottom left;
    background-image: linear-gradient(to bottom right, transparent 49.6%, #333 50%), linear-gradient(to top right, transparent 49.6%, #333 50%); }

  [class*="u-nav-v8"].justify-content-end .nav-link::after, [class*="u-nav-v8"].text-right .nav-link::after {
    left: auto;
    right: 0;
    background-image: linear-gradient(to right, #333 0%, rgba(17, 17, 17, 0.2) 100%); }

  [class*="u-nav-v8"].justify-content-end .nav-link.active::before, [class*="u-nav-v8"].text-right .nav-link.active::before {
    background-image: linear-gradient(to bottom right, transparent 49.6%, #72c02c 50%), linear-gradient(to top right, transparent 49.6%, #72c02c 50%); }

  [class*="u-nav-v8"].flex-column .nav-item {
    margin-bottom: 1px; }

  [class*="u-nav-v8"].flex-column .nav-item:first-child .nav-link {
    padding: 20px 20px 20px 50px; }

  [class*="u-nav-v8"].flex-column .nav-item:last-child .nav-link::before {
    display: block; }

  [class*="u-nav-v8"].flex-column .nav-link {
    padding: 20px 20px 20px 50px; }

  [class*="u-nav-v8"].flex-column .nav-link::before {
    opacity: 0; }

  [class*="u-nav-v8"].flex-column .nav-link.active::before {
    opacity: 1; }

  [class*="u-nav-v8"].flex-column .u-nav-v8__icon {
    position: absolute;
    top: 50%;
    left: 0;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -ms-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%); }

  .u-nav-v8__icon {
    display: inline-block; }

  .u-nav-v8__description {
    color: rgba(255, 255, 255, 0.5); }

  .u-nav-v8-2 .nav-item:first-child .nav-link {
    padding: 0 20px 25px; }

  .u-nav-v8-2 .nav-item:last-child .nav-link::before {
    display: none; }

  .u-nav-v8-2 .nav-link {
    padding: 0 20px 25px 50px; }

  .u-nav-v8-2 .nav-link::before {
    content: "";
    position: absolute;
    top: 0;
    right: -26px;
    display: block;
    width: 26px;
    height: 100%;
    background-repeat: no-repeat;
    background-size: 100% 50.8%;
    background-position: top right, bottom left;
    background-image: linear-gradient(to bottom left, transparent 49.6%, #333 50%), linear-gradient(to top left, transparent 49.6%, #333 50%);
    z-index: 2; }

  .u-nav-v8-2 .nav-link.active::before {
    background-image: linear-gradient(to bottom left, transparent 49.6%, #72c02c 50%), linear-gradient(to top left, transparent 49.6%, #72c02c 50%); }

  .u-nav-v8-2.justify-content-end .nav-item:first-child .nav-link, .u-nav-v8-2.text-right .nav-item:first-child .nav-link {
    padding: 0 50px 25px 20px; }

  .u-nav-v8-2.justify-content-end .nav-link, .u-nav-v8-2.text-right .nav-link {
    padding: 0 50px 25px 20px; } }
@media (max-width: 767px) {
  [data-tabs-mobile-type="slide-up-down"],
  [data-tabs-mobile-type="accordion"] {
    display: none; }

  [data-tabs-mobile-type="accordion"] {
    display: none; }

  [role="tablist"]:not([data-tabs-mobile-type="slide-up-down"]):not([data-tabs-mobile-type="accordion"]) {
    border-color: #72c02c; }

  [role="tablist"]:not([data-tabs-mobile-type="slide-up-down"]):not([data-tabs-mobile-type="accordion"]) .nav-item > a,
  [role="tablist"]:not([data-tabs-mobile-type="slide-up-down"]):not([data-tabs-mobile-type="accordion"]) .nav-item > .nav-link,
  [role="tablist"]:not([data-tabs-mobile-type="slide-up-down"]):not([data-tabs-mobile-type="accordion"]) [class*="u-tab-link"]:not([class*="-icon"]) {
    white-space: nowrap;
    padding: 5px 10px; }

  [role="tablist"]:not([data-tabs-mobile-type="slide-up-down"]):not([data-tabs-mobile-type="accordion"]) .nav-item > a,
  [role="tablist"]:not([data-tabs-mobile-type="slide-up-down"]):not([data-tabs-mobile-type="accordion"]) .nav-item > .nav-link,
  [role="tablist"]:not([data-tabs-mobile-type="slide-up-down"]):not([data-tabs-mobile-type="accordion"]) [class*="u-tab-link"]:not([class*="-icon"]):not([class*="js-tabs-mobile-control"]) {
    display: block; }

  [data-tabs-mobile-type="slide-up-down"] {
    width: 100%;
    padding-top: 10px;
    border-bottom: none !important; }

  [data-tabs-mobile-type="slide-up-down"] .nav-item {
    margin: 0; }

  [data-tabs-mobile-type="slide-up-down"] .nav-link {
    text-align: center;
    border-style: solid !important;
    border-color: #eee !important;
    border-width: 1px !important;
    border-radius: 0 !important;
    margin: -1px 0 0; }

  [data-tabs-mobile-type="slide-up-down"] .nav-item:first-child .nav-link {
    margin-top: 0; }

  [data-tabs-mobile-type="slide-up-down"].u-nav-primary .nav-link, [data-tabs-mobile-type="slide-up-down"].nav-pills .nav-link {
    border-color: #72c02c !important; }

  [data-tabs-mobile-type="slide-up-down"].u-nav-primary .nav-link.active,
  [data-tabs-mobile-type="slide-up-down"].u-nav-primary .nav-item.show .nav-link, [data-tabs-mobile-type="slide-up-down"].nav-pills .nav-link.active,
  [data-tabs-mobile-type="slide-up-down"].nav-pills .nav-item.show .nav-link {
    border-color: #72c02c !important; }

  [data-tabs-mobile-type="slide-up-down"].u-nav-dark .nav-link {
    border-color: #333 !important; }

  [data-tabs-mobile-type="slide-up-down"].u-nav-dark .nav-link.active,
  [data-tabs-mobile-type="slide-up-down"].u-nav-dark .nav-item.show .nav-link {
    border-color: #333 !important; }

  [data-tabs-mobile-type="slide-up-down"].u-nav-light .nav-item.show .nav-link {
    border-color: #fff; }

  [data-tabs-mobile-type="slide-up-down"].u-nav-light .nav-link {
    color: #fff;
    border-color: #fff; }

  [data-tabs-mobile-type="slide-up-down"].u-nav-light .nav-link.active {
    color: #555;
    background-color: #fff;
    border-color: #fff; }

  [data-tabs-mobile-type="slide-up-down"].u-nav-rounded-3 .nav-item:first-child .nav-link,
  [data-tabs-mobile-type="slide-up-down"].nav-tabs .nav-item:first-child .nav-link,
  [data-tabs-mobile-type="slide-up-down"].nav-pills .nav-item:first-child .nav-link {
    border-radius: 3px 3px 0 0 !important; }

  [data-tabs-mobile-type="slide-up-down"].u-nav-rounded-3 .nav-item:last-child .nav-link,
  [data-tabs-mobile-type="slide-up-down"].nav-tabs .nav-item:last-child .nav-link,
  [data-tabs-mobile-type="slide-up-down"].nav-pills .nav-item:last-child .nav-link {
    border-radius: 0 0 3px 3px !important; }

  [data-tabs-mobile-type="slide-up-down"].u-nav-rounded-5 .nav-item:first-child .nav-link {
    border-radius: 5px 5px 0 0 !important; }

  [data-tabs-mobile-type="slide-up-down"].u-nav-rounded-5 .nav-item:last-child .nav-link {
    border-radius: 0 0 5px 5px !important; }

  [data-tabs-mobile-type="slide-up-down"].u-nav-rounded-7 .nav-item:first-child .nav-link {
    border-radius: 7px 7px 0 0 !important; }

  [data-tabs-mobile-type="slide-up-down"].u-nav-rounded-7 .nav-item:last-child .nav-link {
    border-radius: 0 0 7px 7px !important; }

  [data-tabs-mobile-type="slide-up-down"].u-nav-rounded-10 .nav-item:first-child .nav-link {
    border-radius: 10px 10px 0 0 !important; }

  [data-tabs-mobile-type="slide-up-down"].u-nav-rounded-10 .nav-item:last-child .nav-link {
    border-radius: 0 0 10px 10px !important; }

  .tab-content {
    -webkit-box-ordinal-group: 3;
    -webkit-order: 2;
    -ms-flex-order: 2;
    order: 2; } }
/*------------------------------------
  Tags
------------------------------------*/
/* Pagination v1 */
.u-tags-v1 {
  display: inline-block;
  text-decoration: none;
  transition: all .3s ease; }

.u-tags-v1:hover, .u-tags-v1:focus {
  text-decoration: none;
  cursor: pointer; }

.u-tags-v1:focus {
  color: inherit; }

/*------------------------------------
  Text Animation Slideshow
------------------------------------*/
.u-text-slideshow {
  position: relative;
  overflow: visible !important;
  vertical-align: inherit; }

.u-text-slideshow__slide {
  position: relative;
  z-index: 1;
  display: inline-block;
  opacity: 0;
  transition: .3s ease; }

.u-text-slideshow__slide:not(:first-child) {
  position: absolute;
  top: 0;
  left: 0; }

.u-text-slideshow__slide--current {
  z-index: 2;
  opacity: 1; }

.u-text-slideshow__slide-target {
  -webkit-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap; }

/*------------------------------------
  Text-shadow
------------------------------------*/
.u-txt-shadow-v1 {
  text-shadow: 1px 1px rgba(67, 70, 72, 0.05), 2px 2px rgba(147, 150, 152, 0.07), 3px 3px rgba(178, 182, 183, 0.086), 4px 4px rgba(195, 199, 200, 0.106), 5px 5px rgba(206, 210, 211, 0.125), 6px 6px rgba(213, 217, 218, 0.145), 7px 7px rgba(218, 222, 223, 0.165), 8px 8px rgba(222, 226, 227, 0.184), 9px 9px rgba(226, 230, 231, 0.204), 10px 10px rgba(228, 232, 233, 0.22), 11px 11px rgba(230, 234, 235, 0.24), 12px 12px rgba(232, 236, 237, 0.26), 13px 13px rgba(233, 237, 238, 0.28), 14px 14px rgba(235, 239, 240, 0.298), 15px 15px rgba(236, 240, 241, 0.318), 16px 16px rgba(237, 241, 242, 0.333), 17px 17px rgba(238, 242, 243, 0.353), 18px 18px rgba(238, 242, 243, 0.373), 19px 19px rgba(239, 243, 244, 0.392), 20px 20px rgba(240, 244, 245, 0.41), 21px 21px rgba(240, 244, 245, 0.43), 22px 22px rgba(241, 245, 246, 0.447), 23px 23px rgba(241, 245, 246, 0.467), 24px 24px rgba(242, 246, 247, 0.486), 25px 25px rgba(242, 246, 247, 0.506), 26px 26px rgba(242, 246, 247, 0.525), 27px 27px rgba(243, 247, 248, 0.545), 28px 28px rgba(243, 247, 248, 0.565), 29px 29px rgba(243, 247, 248, 0.58), 30px 30px rgba(244, 248, 249, 0.6), 31px 31px rgba(244, 248, 249, 0.62), 32px 32px rgba(244, 248, 249, 0.64), 33px 33px rgba(244, 248, 249, 0.66), 34px 34px rgba(245, 249, 250, 0.68), 35px 35px rgba(245, 249, 250, 0.694), 36px 36px rgba(245, 249, 250, 0.714), 37px 37px rgba(245, 249, 250, 0.733), 38px 38px rgba(245, 249, 250, 0.753), 39px 39px rgba(246, 250, 251, 0.773), 40px 40px rgba(246, 250, 251, 0.792), 41px 41px rgba(246, 250, 251, 0.81), 42px 42px rgba(246, 250, 251, 0.827), 43px 43px rgba(246, 250, 251, 0.847), 44px 44px rgba(246, 250, 251, 0.867), 45px 45px rgba(246, 250, 251, 0.886), 46px 46px rgba(246, 250, 251, 0.906), 47px 47px rgba(247, 251, 252, 0.925), 48px 48px rgba(247, 251, 252, 0.94), 49px 49px rgba(247, 251, 252, 0.96), 50px 50px rgba(247, 251, 252, 0.98); }

.u-txt-shadow-v2 {
  text-shadow: 0 6px 55px #999; }

/*------------------------------------
  Marker-bg
------------------------------------*/
.u-marker-bg-primary, .u-marker-bg-green, .u-marker-bg-black, .u-marker-bg-white, .u-marker-bg-red, .u-marker-bg-yellow {
  display: inline-block;
  background-repeat: no-repeat;
  background-position: 0 50%;
  background-size: 100% 70%;
  white-space: nowrap; }

.u-marker-bg-primary {
  background-image: url(../img/bg/marker/marker-bg-primary.png); }

.u-marker-bg-green {
  background-image: url(../img/bg/marker/marker-bg-green.png); }

.u-marker-bg-black {
  background-image: url(../img/bg/marker/marker-bg-black.png); }

.u-marker-bg-white {
  background-image: url(../img/bg/marker/marker-bg-white.png); }

.u-marker-bg-red {
  background-image: url(../img/bg/marker/marker-bg-red.png); }

.u-marker-bg-yellow {
  background-image: url(../img/bg/marker/marker-bg-yellow.png); }

/*------------------------------------
  Tooltips
------------------------------------*/
.u-tooltip--v1 {
  color: #fff;
  background-color: #000;
  padding: 2px 8px 3px; }

.u-tooltip--v1:after {
  content: "";
  position: absolute;
  display: block; }

.u-tooltip--v1.tooltip-top-left, .u-tooltip--v1.tooltip-top-right {
  bottom: 100%;
  margin-bottom: 5px; }

.u-tooltip--v1.tooltip-top-left:after, .u-tooltip--v1.tooltip-top-right:after {
  top: 100%;
  border-top: 4px solid rgba(0, 0, 0, 0.9);
  border-right: 4px solid transparent;
  border-left: 4px solid transparent; }

.u-tooltip--v1.tooltip-bottom-left, .u-tooltip--v1.tooltip-bottom-right {
  top: 100%;
  margin-top: 5px; }

.u-tooltip--v1.tooltip-bottom-left:after, .u-tooltip--v1.tooltip-bottom-right:after {
  bottom: 100%;
  border-bottom: 4px solid rgba(0, 0, 0, 0.9);
  border-right: 4px solid transparent;
  border-left: 4px solid transparent; }

.u-tooltip--v1.tooltip-top-left, .u-tooltip--v1.tooltip-bottom-left {
  left: 0; }

.u-tooltip--v1.tooltip-top-left:after, .u-tooltip--v1.tooltip-bottom-left:after {
  left: 16px; }

.u-tooltip--v1.tooltip-top-right, .u-tooltip--v1.tooltip-bottom-right {
  right: 0; }

.u-tooltip--v1.tooltip-top-right:after, .u-tooltip--v1.tooltip-bottom-right:after {
  right: 16px; }

.u-tooltip--v1.tooltip-left, .u-tooltip--v1.tooltip-right {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%); }

.u-tooltip--v1.tooltip-left:after, .u-tooltip--v1.tooltip-right:after {
  top: 50%;
  border-top: 4px solid transparent;
  border-bottom: 4px solid transparent;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%); }

.u-tooltip--v1.tooltip-left {
  right: 100%;
  margin-right: 5px; }

.u-tooltip--v1.tooltip-left:after {
  right: -4px;
  border-left: 4px solid rgba(0, 0, 0, 0.9); }

.u-tooltip--v1.tooltip-right {
  left: 100%;
  margin-left: 5px; }

.u-tooltip--v1.tooltip-right:after {
  left: -4px;
  border-right: 4px solid rgba(0, 0, 0, 0.9); }

input:focus + .u-tooltip--v1,
textarea:focus + .u-tooltip--v1 {
  opacity: 1; }

/*------------------------------------
  Typography
------------------------------------*/
.popovers--no-title .popover-title {
  display: none; }

.g-nowrap {
  white-space: nowrap; }

audio:not([controls]) {
  display: none;
  height: 0; }

video {
  max-width: 100%; }

.u-video-v1 {
  margin-bottom: 15px; }

.u-video-v1-info {
  display: none;
  padding-left: 0; }

.u-video-v1-info__item {
  display: inline-block;
  list-style: none; }

.u-audio-v1 {
  margin-bottom: 15px; }

.u-audio-v1-info {
  display: none;
  padding-left: 0; }

.u-audio-v1-info__item {
  display: inline-block;
  list-style: none; }

.u-audio-v2 .plyr__controls {
  background-color: transparent;
  border: none; }

.u-audio-v2 .plyr__controls button {
  color: #fff; }

/*------------------------------------
  Navigation
------------------------------------*/
/* Base Abstractions */
.navbar .u-main-nav-v1 .nav-link, .navbar .u-main-nav-v2 .nav-link, .navbar .u-main-nav-v3 .nav-link, .navbar .u-main-nav-v4 .nav-link, .navbar .u-main-nav-v5 .nav-link, .navbar .u-main-nav-v6 .nav-link, .navbar .u-main-nav-v7 .nav-link, .navbar .u-main-nav-v8 .nav-link, .navbar .u-main-nav-v9 .nav-link {
  display: block; }

.navbar .u-main-nav-v1 .nav-item.hs-has-sub-menu > a, .navbar .u-main-nav-v1 .nav-item.hs-has-mega-menu > a, .navbar .u-main-nav-v1 .nav-item.dropdown > a, .navbar .u-main-nav-v2 .nav-item.hs-has-sub-menu > a, .navbar .u-main-nav-v2 .nav-item.hs-has-mega-menu > a, .navbar .u-main-nav-v2 .nav-item.dropdown > a, .navbar .u-main-nav-v3 .nav-item.hs-has-sub-menu > a, .navbar .u-main-nav-v3 .nav-item.hs-has-mega-menu > a, .navbar .u-main-nav-v3 .nav-item.dropdown > a, .navbar .u-main-nav-v4 .nav-item.hs-has-sub-menu > a, .navbar .u-main-nav-v4 .nav-item.hs-has-mega-menu > a, .navbar .u-main-nav-v4 .nav-item.dropdown > a, .navbar .u-main-nav-v5 .nav-item.hs-has-sub-menu > a, .navbar .u-main-nav-v5 .nav-item.hs-has-mega-menu > a, .navbar .u-main-nav-v5 .nav-item.dropdown > a, .navbar .u-main-nav-v6 .nav-item.hs-has-sub-menu > a, .navbar .u-main-nav-v6 .nav-item.hs-has-mega-menu > a, .navbar .u-main-nav-v6 .nav-item.dropdown > a, .navbar .u-main-nav-v7 .nav-item.hs-has-sub-menu > a, .navbar .u-main-nav-v7 .nav-item.hs-has-mega-menu > a, .navbar .u-main-nav-v7 .nav-item.dropdown > a, .navbar .u-main-nav-v8 .nav-item.hs-has-sub-menu > a, .navbar .u-main-nav-v8 .nav-item.hs-has-mega-menu > a, .navbar .u-main-nav-v8 .nav-item.dropdown > a, .navbar .u-main-nav-v9 .nav-item.hs-has-sub-menu > a, .navbar .u-main-nav-v9 .nav-item.hs-has-mega-menu > a {
  position: relative;
  z-index: 1;
  padding-right: 1.42857rem; }

.navbar .u-main-nav-v1 .nav-item.hs-has-sub-menu > a::after, .navbar .u-main-nav-v1 .nav-item.hs-has-mega-menu > a::after, .navbar .u-main-nav-v1 .nav-item.dropdown > a::after, .navbar .u-main-nav-v2 .nav-item.hs-has-sub-menu > a::after, .navbar .u-main-nav-v2 .nav-item.hs-has-mega-menu > a::after, .navbar .u-main-nav-v2 .nav-item.dropdown > a::after, .navbar .u-main-nav-v3 .nav-item.hs-has-sub-menu > a::after, .navbar .u-main-nav-v3 .nav-item.hs-has-mega-menu > a::after, .navbar .u-main-nav-v3 .nav-item.dropdown > a::after, .navbar .u-main-nav-v4 .nav-item.hs-has-sub-menu > a::after, .navbar .u-main-nav-v4 .nav-item.hs-has-mega-menu > a::after, .navbar .u-main-nav-v4 .nav-item.dropdown > a::after, .navbar .u-main-nav-v5 .nav-item.hs-has-sub-menu > a::after, .navbar .u-main-nav-v5 .nav-item.hs-has-mega-menu > a::after, .navbar .u-main-nav-v5 .nav-item.dropdown > a::after, .navbar .u-main-nav-v6 .nav-item.hs-has-sub-menu > a::after, .navbar .u-main-nav-v6 .nav-item.hs-has-mega-menu > a::after, .navbar .u-main-nav-v6 .nav-item.dropdown > a::after, .navbar .u-main-nav-v7 .nav-item.hs-has-sub-menu > a::after, .navbar .u-main-nav-v7 .nav-item.hs-has-mega-menu > a::after, .navbar .u-main-nav-v7 .nav-item.dropdown > a::after, .navbar .u-main-nav-v8 .nav-item.hs-has-sub-menu > a::after, .navbar .u-main-nav-v8 .nav-item.hs-has-mega-menu > a::after, .navbar .u-main-nav-v8 .nav-item.dropdown > a::after, .navbar .u-main-nav-v9 .nav-item.hs-has-sub-menu > a::after, .navbar .u-main-nav-v9 .nav-item.hs-has-mega-menu > a::after {
  content: "\e900";
  font-family: "hs-icons";
  font-weight: inherit;
  line-height: 1;
  position: absolute;
  top: 50%;
  right: 1.07143rem;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0); }

/* Base stylesheets */
.u-header__section--dark .navbar [class*="u-main-nav-v"] .nav-link {
  color: #fff; }

.u-header__section--dark .navbar [class*="u-main-nav-v"] .nav-item.active > .nav-link,
.u-header__section--dark .navbar [class*="u-main-nav-v"] .nav-item:hover > .nav-link,
.u-header__section--dark .navbar [class*="u-main-nav-v"] .nav-item:focus > .nav-link,
.u-header__section--dark .navbar [class*="u-main-nav-v"] .nav-item.show > .nav-link,
.u-header__section--dark .navbar [class*="u-main-nav-v"] .nav-item.hs-sub-menu-opened > .nav-link,
.u-header__section--dark .navbar [class*="u-main-nav-v"] .nav-item .nav-link:focus {
  color: #fff; }

/* Import */
/* Main navigation styles */
/*------------------------------------
  Navigation Style v1
------------------------------------*/
.navbar .u-main-nav-v1 .nav-link {
  color: #333;
  padding: 0.78571rem 2.14286rem;
  border-radius: 1.57143rem; }

.navbar .u-main-nav-v1 .nav-item.hs-has-sub-menu > a, .navbar .u-main-nav-v1 .nav-item.hs-has-mega-menu > a, .navbar .u-main-nav-v1 .nav-item.dropdown > a {
  padding-right: 3.21429rem; }

.navbar .u-main-nav-v1 .nav-item.hs-has-sub-menu > a::after, .navbar .u-main-nav-v1 .nav-item.hs-has-mega-menu > a::after, .navbar .u-main-nav-v1 .nav-item.dropdown > a::after {
  right: 1.78571rem; }

.navbar .u-main-nav-v1 .nav-item.active > .nav-link,
.navbar .u-main-nav-v1 .nav-item:hover > .nav-link,
.navbar .u-main-nav-v1 .nav-item:focus > .nav-link,
.navbar .u-main-nav-v1 .nav-item.show > .nav-link,
.navbar .u-main-nav-v1 .nav-item.hs-sub-menu-opened > .nav-link,
.navbar .u-main-nav-v1 .nav-item .nav-link:focus {
  color: #fff;
  background-color: #72c02c; }

@media all and (max-width: 1199px) {
  .navbar .u-main-nav-v1 .nav-link {
    padding: 0.64286rem 1.42857rem; }

  .navbar .u-main-nav-v1 .nav-item.hs-has-sub-menu > a, .navbar .u-main-nav-v1 .nav-item.hs-has-mega-menu > a, .navbar .u-main-nav-v1 .nav-item.dropdown > a {
    padding-right: 2.5rem; }

  .navbar .u-main-nav-v1 .nav-item.hs-has-sub-menu > a::after, .navbar .u-main-nav-v1 .nav-item.hs-has-mega-menu > a::after, .navbar .u-main-nav-v1 .nav-item.dropdown > a::after {
    right: 1.07143rem; } }
/*------------------------------------
  Navigation Style v2
------------------------------------*/
.navbar .u-main-nav-v2 .nav-link {
  color: #333;
  padding: 0.64286rem 2.14286rem;
  border-radius: 1.57143rem;
  border: 2px solid transparent; }

.navbar .u-main-nav-v2 .nav-item.hs-has-sub-menu > a, .navbar .u-main-nav-v2 .nav-item.hs-has-mega-menu > a, .navbar .u-main-nav-v2 .nav-item.dropdown > a {
  padding-right: 3.21429rem; }

.navbar .u-main-nav-v2 .nav-item.hs-has-sub-menu > a::after, .navbar .u-main-nav-v2 .nav-item.hs-has-mega-menu > a::after, .navbar .u-main-nav-v2 .nav-item.dropdown > a::after {
  right: 1.78571rem; }

.navbar .u-main-nav-v2 .nav-item.active > .nav-link,
.navbar .u-main-nav-v2 .nav-item:hover > .nav-link,
.navbar .u-main-nav-v2 .nav-item:focus > .nav-link,
.navbar .u-main-nav-v2 .nav-item.show > .nav-link,
.navbar .u-main-nav-v2 .nav-item.hs-sub-menu-opened > .nav-link,
.navbar .u-main-nav-v2 .nav-item .nav-link:focus {
  color: #333;
  border-color: #72c02c;
  background-color: transparent; }

@media all and (max-width: 1199px) {
  .navbar .u-main-nav-v2 .nav-link {
    padding: 0.5rem 1.42857rem; }

  .navbar .u-main-nav-v2 .nav-item.hs-has-sub-menu > a, .navbar .u-main-nav-v2 .nav-item.hs-has-mega-menu > a, .navbar .u-main-nav-v2 .nav-item.dropdown > a {
    padding-right: 2.5rem; }

  .navbar .u-main-nav-v2 .nav-item.hs-has-sub-menu > a::after, .navbar .u-main-nav-v2 .nav-item.hs-has-mega-menu > a::after, .navbar .u-main-nav-v2 .nav-item.dropdown > a::after {
    right: 1.07143rem; } }
/*------------------------------------
  Navigation Style v3
------------------------------------*/
.navbar .u-main-nav-v3 .nav-link {
  color: #333;
  padding: 2.85714rem 2.57143rem 2.57143rem;
  border-bottom: 4px solid transparent; }

.navbar .u-main-nav-v3 .nav-item.hs-has-sub-menu > a::after, .navbar .u-main-nav-v3 .nav-item.hs-has-mega-menu > a::after, .navbar .u-main-nav-v3 .nav-item.dropdown > a::after {
  position: static;
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.71429rem;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none; }

.navbar .u-main-nav-v3 .nav-item.active > .nav-link,
.navbar .u-main-nav-v3 .nav-item:hover > .nav-link,
.navbar .u-main-nav-v3 .nav-item:focus > .nav-link,
.navbar .u-main-nav-v3 .nav-item.show > .nav-link,
.navbar .u-main-nav-v3 .nav-item.hs-sub-menu-opened > .nav-link,
.navbar .u-main-nav-v3 .nav-item .nav-link:focus {
  border-color: #72c02c; }

@media all and (max-width: 1199px) {
  .navbar .u-main-nav-v3 .nav-link {
    padding: 2.14286rem 1.78571rem; } }
@media all and (max-width: 991px) {
  .navbar .u-main-nav-v3 .nav-link {
    padding: 0.71429rem 1.42857rem; } }
/*------------------------------------
  Navigation Style v4
------------------------------------*/
.navbar .u-main-nav-v4 .nav-link {
  color: #333;
  padding: 2.57143rem 2.57143rem 2.85714rem;
  border-top: 4px solid transparent; }

.navbar .u-main-nav-v4 .nav-item.hs-has-sub-menu > a::after, .navbar .u-main-nav-v4 .nav-item.hs-has-mega-menu > a::after, .navbar .u-main-nav-v4 .nav-item.dropdown > a::after {
  position: static;
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.71429rem;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none; }

.navbar .u-main-nav-v4 .nav-item.active > .nav-link,
.navbar .u-main-nav-v4 .nav-item:hover > .nav-link,
.navbar .u-main-nav-v4 .nav-item:focus > .nav-link,
.navbar .u-main-nav-v4 .nav-item.show > .nav-link,
.navbar .u-main-nav-v4 .nav-item.hs-sub-menu-opened > .nav-link,
.navbar .u-main-nav-v4 .nav-item .nav-link:focus {
  border-color: #72c02c; }

@media all and (max-width: 1199px) {
  .navbar .u-main-nav-v4 .nav-link {
    padding: 2.14286rem 1.78571rem; } }
@media all and (max-width: 991px) {
  .navbar .u-main-nav-v4 .nav-link {
    padding: 0.71429rem 1.42857rem; } }
/*------------------------------------
  Navigation Style v5
------------------------------------*/
.navbar .u-main-nav-v5 .nav-link {
  color: #333;
  padding: 0.28571rem 0;
  border-bottom: 2px solid transparent; }

.navbar .u-main-nav-v5 .nav-item.hs-has-sub-menu > a, .navbar .u-main-nav-v5 .nav-item.hs-has-mega-menu > a, .navbar .u-main-nav-v5 .nav-item.dropdown > a {
  padding-right: 1.42857rem; }

.navbar .u-main-nav-v5 .nav-item.hs-has-sub-menu > a::after, .navbar .u-main-nav-v5 .nav-item.hs-has-mega-menu > a::after, .navbar .u-main-nav-v5 .nav-item.dropdown > a::after {
  right: 0; }

.navbar .u-main-nav-v5 .nav-item.active > .nav-link,
.navbar .u-main-nav-v5 .nav-item:hover > .nav-link,
.navbar .u-main-nav-v5 .nav-item:focus > .nav-link,
.navbar .u-main-nav-v5 .nav-item.show > .nav-link,
.navbar .u-main-nav-v5 .nav-item.hs-sub-menu-opened > .nav-link,
.navbar .u-main-nav-v5 .nav-item .nav-link:focus {
  border-color: #72c02c; }

/*------------------------------------
  Navigation Style v6
------------------------------------*/
.navbar .u-main-nav-v6 .nav-link {
  color: #333;
  height: 100%;
  padding: 2.85714rem 2.71429rem; }

.navbar .u-main-nav-v6 .nav-item.hs-has-sub-menu > a, .navbar .u-main-nav-v6 .nav-item.hs-has-mega-menu > a, .navbar .u-main-nav-v6 .nav-item.dropdown > a {
  padding-right: 2.71429rem; }

.navbar .u-main-nav-v6 .nav-item.hs-has-sub-menu > a::after, .navbar .u-main-nav-v6 .nav-item.hs-has-mega-menu > a::after, .navbar .u-main-nav-v6 .nav-item.dropdown > a::after {
  position: static;
  display: inline-block;
  vertical-align: middle;
  margin-left: 0.71429rem;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none; }

.navbar .u-main-nav-v6 .nav-item.active > .nav-link,
.navbar .u-main-nav-v6 .nav-item:hover > .nav-link,
.navbar .u-main-nav-v6 .nav-item:focus > .nav-link,
.navbar .u-main-nav-v6 .nav-item.show > .nav-link,
.navbar .u-main-nav-v6 .nav-item.hs-sub-menu-opened > .nav-link,
.navbar .u-main-nav-v6 .nav-item .nav-link:focus {
  color: #fff;
  background-color: #72c02c; }

@media all and (max-width: 1199px) {
  .navbar .u-main-nav-v6 .nav-link {
    padding: 2.14286rem 1.42857rem; }

  .navbar .u-main-nav-v6 .nav-item.hs-has-sub-menu > a, .navbar .u-main-nav-v6 .nav-item.hs-has-mega-menu > a, .navbar .u-main-nav-v6 .nav-item.dropdown > a {
    padding-right: 1.42857rem; } }
/*------------------------------------
  Navigation Style v7
------------------------------------*/
.navbar .u-main-nav-v7 .nav-link {
  color: #333;
  padding: 0.71429rem 2.14286rem;
  border: 2px solid transparent; }

.navbar .u-main-nav-v7 .nav-item.hs-has-sub-menu > a, .navbar .u-main-nav-v7 .nav-item.hs-has-mega-menu > a, .navbar .u-main-nav-v7 .nav-item.dropdown > a {
  padding-right: 3.21429rem; }

.navbar .u-main-nav-v7 .nav-item.hs-has-sub-menu > a::after, .navbar .u-main-nav-v7 .nav-item.hs-has-mega-menu > a::after, .navbar .u-main-nav-v7 .nav-item.dropdown > a::after {
  right: 1.78571rem; }

.navbar .u-main-nav-v7 .nav-item.active > .nav-link,
.navbar .u-main-nav-v7 .nav-item:hover > .nav-link,
.navbar .u-main-nav-v7 .nav-item:focus > .nav-link,
.navbar .u-main-nav-v7 .nav-item.show > .nav-link,
.navbar .u-main-nav-v7 .nav-item.hs-sub-menu-opened > .nav-link,
.navbar .u-main-nav-v7 .nav-item .nav-link:focus {
  border-color: #72c02c; }

@media all and (max-width: 1199px) {
  .navbar .u-main-nav-v7 .nav-link {
    padding: 0.64286rem 1.42857rem; }

  .navbar .u-main-nav-v7 .nav-item.hs-has-sub-menu > a, .navbar .u-main-nav-v7 .nav-item.hs-has-mega-menu > a, .navbar .u-main-nav-v7 .nav-item.dropdown > a {
    padding-right: 2.14286rem; }

  .navbar .u-main-nav-v7 .nav-item.hs-has-sub-menu > a::after, .navbar .u-main-nav-v7 .nav-item.hs-has-mega-menu > a::after, .navbar .u-main-nav-v7 .nav-item.dropdown > a::after {
    right: 1.07143rem; } }
/*------------------------------------
  Navigation Style v8
------------------------------------*/
.navbar .u-main-nav-v8 .nav-link {
  color: #333;
  padding: 0.78571rem 2.14286rem; }

.navbar .u-main-nav-v8 .nav-item.hs-has-sub-menu > a, .navbar .u-main-nav-v8 .nav-item.hs-has-mega-menu > a, .navbar .u-main-nav-v8 .nav-item.dropdown > a {
  padding-right: 3.21429rem; }

.navbar .u-main-nav-v8 .nav-item.hs-has-sub-menu > a::after, .navbar .u-main-nav-v8 .nav-item.hs-has-mega-menu > a::after, .navbar .u-main-nav-v8 .nav-item.dropdown > a::after {
  right: 1.78571rem; }

.navbar .u-main-nav-v8 .nav-item.active > .nav-link,
.navbar .u-main-nav-v8 .nav-item:hover > .nav-link,
.navbar .u-main-nav-v8 .nav-item:focus > .nav-link,
.navbar .u-main-nav-v8 .nav-item.show > .nav-link,
.navbar .u-main-nav-v8 .nav-item.hs-sub-menu-opened > .nav-link,
.navbar .u-main-nav-v8 .nav-item .nav-link:focus {
  color: #fff;
  background-color: #72c02c; }

@media all and (max-width: 1199px) {
  .navbar .u-main-nav-v8 .nav-link {
    padding: 0.64286rem 1.42857rem; }

  .navbar .u-main-nav-v8 .nav-item.hs-has-sub-menu > a, .navbar .u-main-nav-v8 .nav-item.hs-has-mega-menu > a, .navbar .u-main-nav-v8 .nav-item.dropdown > a {
    padding-right: 2.14286rem; }

  .navbar .u-main-nav-v8 .nav-item.hs-has-sub-menu > a::after, .navbar .u-main-nav-v8 .nav-item.hs-has-mega-menu > a::after, .navbar .u-main-nav-v8 .nav-item.dropdown > a::after {
    right: 1.07143rem; } }
/*------------------------------------
  Navigation Style v9
------------------------------------*/
.navbar .u-main-nav-v9 .nav-link {
  color: #777;
  padding: 0 1.42857rem 0 0; }

.navbar .u-main-nav-v9 .nav-item > a {
  padding: 1.42857rem 0; }

.navbar .u-main-nav-v9 .nav-item.hs-has-sub-menu > a::after, .navbar .u-main-nav-v9 .nav-item.hs-has-mega-menu > a::after {
  font-size: 1.28571rem;
  right: 0; }

.navbar .u-main-nav-v9 .nav-item.active > .nav-link,
.navbar .u-main-nav-v9 .nav-item:hover > .nav-link,
.navbar .u-main-nav-v9 .nav-item:focus > .nav-link,
.navbar .u-main-nav-v9 .nav-item .nav-link:focus {
  color: #000; }

.navbar .u-main-nav-v9 .nav-item.active > .nav-link::after,
.navbar .u-main-nav-v9 .nav-item:hover > .nav-link::after,
.navbar .u-main-nav-v9 .nav-item:focus > .nav-link::after,
.navbar .u-main-nav-v9 .nav-item .nav-link:focus::after {
  color: #72c02c; }

/* Dropdown navigation styles */
/*------------------------------------
  Navigation Dropdown Style v1
------------------------------------*/
.navbar .u-sub-menu-v1 .hs-has-sub-menu .hs-has-sub-menu.active > a,
.navbar .u-sub-menu-v1 .hs-has-sub-menu .hs-has-sub-menu:active > a,
.navbar .u-sub-menu-v1 .hs-has-sub-menu .hs-has-sub-menu:focus > a,
.navbar .u-sub-menu-v1 .hs-has-sub-menu .hs-has-sub-menu:hover > a, .navbar .u-sub-menu-v1 .hs-sub-menu .dropdown-item.active > a, .navbar .u-sub-menu-v1 .hs-sub-menu .dropdown-item:active > a, .navbar .u-sub-menu-v1 .hs-sub-menu .dropdown-item:focus > a, .navbar .u-sub-menu-v1 .hs-sub-menu .dropdown-item:hover > a,
.navbar .u-sub-menu-v1 .dropdown-menu .dropdown-item.active > a,
.navbar .u-sub-menu-v1 .dropdown-menu .dropdown-item:active > a,
.navbar .u-sub-menu-v1 .dropdown-menu .dropdown-item:focus > a,
.navbar .u-sub-menu-v1 .dropdown-menu .dropdown-item:hover > a, .navbar .u-sub-menu-v1 .hs-sub-menu a:active, .navbar .u-sub-menu-v1 .hs-sub-menu a:focus, .navbar .u-sub-menu-v1 .hs-sub-menu a:hover,
.navbar .u-sub-menu-v1 .dropdown-menu a:active,
.navbar .u-sub-menu-v1 .dropdown-menu a:focus,
.navbar .u-sub-menu-v1 .dropdown-menu a:hover {
  color: #72c02c !important;
  background-color: transparent;
  border: none; }

.navbar .u-sub-menu-v1 .hs-has-sub-menu .hs-has-sub-menu > a::after {
  content: "\e902";
  font-family: "hs-icons";
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0); }

.navbar .u-sub-menu-v1 .hs-has-mega-menu .hs-has-sub-menu > a::after {
  content: "\e902"; }

.navbar .u-sub-menu-v1 .hs-sub-menu,
.navbar .u-sub-menu-v1 .dropdown-menu {
  font-size: 0.92857rem;
  min-width: 16.42857rem;
  padding: 0.71429rem 0; }

.navbar .u-sub-menu-v1 .hs-sub-menu .dropdown-item,
.navbar .u-sub-menu-v1 .dropdown-menu .dropdown-item {
  font-weight: inherit;
  color: inherit;
  padding: 0; }

.navbar .u-sub-menu-v1 .hs-sub-menu .dropdown-item.active, .navbar .u-sub-menu-v1 .hs-sub-menu .dropdown-item:active, .navbar .u-sub-menu-v1 .hs-sub-menu .dropdown-item:focus, .navbar .u-sub-menu-v1 .hs-sub-menu .dropdown-item:hover,
.navbar .u-sub-menu-v1 .dropdown-menu .dropdown-item.active,
.navbar .u-sub-menu-v1 .dropdown-menu .dropdown-item:active,
.navbar .u-sub-menu-v1 .dropdown-menu .dropdown-item:focus,
.navbar .u-sub-menu-v1 .dropdown-menu .dropdown-item:hover {
  border: none;
  background-color: transparent; }

.navbar .u-sub-menu-v1 .hs-sub-menu a,
.navbar .u-sub-menu-v1 .dropdown-menu a {
  color: #777;
  text-decoration: none !important;
  display: block;
  padding: 0.42857rem 1.78571rem; }

.navbar .u-sub-menu-v1 .hs-sub-menu,
.navbar .u-sub-menu-v1 .hs-mega-menu,
.navbar .u-sub-menu-v1 .dropdown-menu {
  font-weight: normal;
  text-transform: none;
  margin-top: 0;
  color: inherit;
  background-color: #fff;
  background-clip: border-box;
  border-width: 3px 0 0 0;
  border-style: solid;
  border-color: #72c02c;
  border-radius: 0;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); }

.navbar .u-sub-menu-v1 .hs-sub-menu .hs-sub-menu,
.navbar .u-sub-menu-v1 .hs-mega-menu .hs-sub-menu,
.navbar .u-sub-menu-v1 .dropdown-menu .hs-sub-menu {
  margin-top: -1.07143rem; }

.navbar .u-sub-menu-v1.hs-mobile-state .hs-sub-menu {
  width: auto; }

.navbar .u-sub-menu-v1.hs-mobile-state .hs-sub-menu .hs-sub-menu,
.navbar .u-sub-menu-v1.hs-mobile-state .hs-sub-menu .hs-mega-menu,
.navbar .u-sub-menu-v1.hs-mobile-state .hs-sub-menu .hs-sub-menu.hs-reversed,
.navbar .u-sub-menu-v1.hs-mobile-state .hs-sub-menu .hs-mega-menu.hs-reversed,
.navbar .u-sub-menu-v1.hs-mobile-state .hs-mega-menu .hs-sub-menu,
.navbar .u-sub-menu-v1.hs-mobile-state .hs-mega-menu .hs-mega-menu,
.navbar .u-sub-menu-v1.hs-mobile-state .hs-mega-menu .hs-sub-menu.hs-reversed,
.navbar .u-sub-menu-v1.hs-mobile-state .hs-mega-menu .hs-mega-menu.hs-reversed {
  margin: 0.21429rem; }

.navbar .hs-mobile-state .u-sub-menu-v1 .hs-sub-menu {
  width: auto; }

.navbar .hs-mobile-state .u-sub-menu-v1 .hs-sub-menu .hs-sub-menu,
.navbar .hs-mobile-state .u-sub-menu-v1 .hs-sub-menu .hs-mega-menu,
.navbar .hs-mobile-state .u-sub-menu-v1 .hs-sub-menu .hs-sub-menu.hs-reversed,
.navbar .hs-mobile-state .u-sub-menu-v1 .hs-sub-menu .hs-mega-menu.hs-reversed,
.navbar .hs-mobile-state .u-sub-menu-v1 .hs-mega-menu .hs-sub-menu,
.navbar .hs-mobile-state .u-sub-menu-v1 .hs-mega-menu .hs-mega-menu,
.navbar .hs-mobile-state .u-sub-menu-v1 .hs-mega-menu .hs-sub-menu.hs-reversed,
.navbar .hs-mobile-state .u-sub-menu-v1 .hs-mega-menu .hs-mega-menu.hs-reversed {
  margin: 0.21429rem; }

/*------------------------------------
  Navigation Dropdown Style v2
------------------------------------*/
.navbar .u-sub-menu-v2 .hs-has-sub-menu .hs-has-sub-menu.active > a,
.navbar .u-sub-menu-v2 .hs-has-sub-menu .hs-has-sub-menu:active > a,
.navbar .u-sub-menu-v2 .hs-has-sub-menu .hs-has-sub-menu:focus > a,
.navbar .u-sub-menu-v2 .hs-has-sub-menu .hs-has-sub-menu:hover > a, .navbar .u-sub-menu-v2 .hs-sub-menu .dropdown-item.active > a, .navbar .u-sub-menu-v2 .hs-sub-menu .dropdown-item:active > a, .navbar .u-sub-menu-v2 .hs-sub-menu .dropdown-item:focus > a, .navbar .u-sub-menu-v2 .hs-sub-menu .dropdown-item:hover > a,
.navbar .u-sub-menu-v2 .dropdown-menu .dropdown-item.active > a,
.navbar .u-sub-menu-v2 .dropdown-menu .dropdown-item:active > a,
.navbar .u-sub-menu-v2 .dropdown-menu .dropdown-item:focus > a,
.navbar .u-sub-menu-v2 .dropdown-menu .dropdown-item:hover > a, .navbar .u-sub-menu-v2 .hs-sub-menu a:active, .navbar .u-sub-menu-v2 .hs-sub-menu a:focus, .navbar .u-sub-menu-v2 .hs-sub-menu a:hover,
.navbar .u-sub-menu-v2 .dropdown-menu a:active,
.navbar .u-sub-menu-v2 .dropdown-menu a:focus,
.navbar .u-sub-menu-v2 .dropdown-menu a:hover {
  color: #777 !important;
  background-color: #eee;
  border: none; }

.navbar .u-sub-menu-v2 .hs-has-sub-menu .hs-has-sub-menu > a::after {
  content: "\e902";
  font-family: "hs-icons";
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0); }

.navbar .u-sub-menu-v2 .hs-has-mega-menu .hs-has-sub-menu > a::after {
  content: "\e902"; }

.navbar .u-sub-menu-v2 .hs-sub-menu,
.navbar .u-sub-menu-v2 .dropdown-menu {
  font-size: 0.92857rem;
  min-width: 16.42857rem;
  padding: 0.71429rem 0; }

.navbar .u-sub-menu-v2 .hs-sub-menu .dropdown-item,
.navbar .u-sub-menu-v2 .dropdown-menu .dropdown-item {
  font-weight: inherit;
  color: inherit;
  padding: 0; }

.navbar .u-sub-menu-v2 .hs-sub-menu .dropdown-item.active, .navbar .u-sub-menu-v2 .hs-sub-menu .dropdown-item:active, .navbar .u-sub-menu-v2 .hs-sub-menu .dropdown-item:focus, .navbar .u-sub-menu-v2 .hs-sub-menu .dropdown-item:hover,
.navbar .u-sub-menu-v2 .dropdown-menu .dropdown-item.active,
.navbar .u-sub-menu-v2 .dropdown-menu .dropdown-item:active,
.navbar .u-sub-menu-v2 .dropdown-menu .dropdown-item:focus,
.navbar .u-sub-menu-v2 .dropdown-menu .dropdown-item:hover {
  border-color: #eee;
  background-color: transparent; }

.navbar .u-sub-menu-v2 .hs-sub-menu a,
.navbar .u-sub-menu-v2 .dropdown-menu a {
  color: #777;
  text-decoration: none !important;
  display: block;
  padding: 0.42857rem 1.78571rem; }

.navbar .u-sub-menu-v2 .hs-sub-menu > li:not(:last-child),
.navbar .u-sub-menu-v2 .dropdown-menu > li:not(:last-child) {
  border-bottom: 1px solid #eee; }

.navbar .u-sub-menu-v2 .hs-sub-menu,
.navbar .u-sub-menu-v2 .hs-mega-menu,
.navbar .u-sub-menu-v2 .dropdown-menu {
  font-weight: normal;
  text-transform: none;
  min-width: 14.28571rem;
  margin-top: 0;
  padding: 0;
  color: inherit;
  background-color: #fff;
  background-clip: border-box;
  border-width: 2px 0 2px 0;
  border-style: solid;
  border-top-color: #72c02c;
  border-bottom-color: #777;
  border-radius: 0;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); }

.navbar .u-sub-menu-v2 .hs-sub-menu .hs-sub-menu,
.navbar .u-sub-menu-v2 .hs-mega-menu .hs-sub-menu,
.navbar .u-sub-menu-v2 .dropdown-menu .hs-sub-menu {
  margin-top: -1.07143rem; }

.navbar .u-sub-menu-v2.hs-mobile-state .hs-sub-menu {
  width: auto; }

.navbar .u-sub-menu-v2.hs-mobile-state .hs-sub-menu .hs-sub-menu,
.navbar .u-sub-menu-v2.hs-mobile-state .hs-sub-menu .hs-mega-menu,
.navbar .u-sub-menu-v2.hs-mobile-state .hs-sub-menu .hs-sub-menu.hs-reversed,
.navbar .u-sub-menu-v2.hs-mobile-state .hs-sub-menu .hs-mega-menu.hs-reversed,
.navbar .u-sub-menu-v2.hs-mobile-state .hs-mega-menu .hs-sub-menu,
.navbar .u-sub-menu-v2.hs-mobile-state .hs-mega-menu .hs-mega-menu,
.navbar .u-sub-menu-v2.hs-mobile-state .hs-mega-menu .hs-sub-menu.hs-reversed,
.navbar .u-sub-menu-v2.hs-mobile-state .hs-mega-menu .hs-mega-menu.hs-reversed {
  margin: 0.21429rem; }

.navbar .hs-mobile-state .u-sub-menu-v2 .hs-sub-menu {
  width: auto; }

.navbar .hs-mobile-state .u-sub-menu-v2 .hs-sub-menu .hs-sub-menu,
.navbar .hs-mobile-state .u-sub-menu-v2 .hs-sub-menu .hs-mega-menu,
.navbar .hs-mobile-state .u-sub-menu-v2 .hs-sub-menu .hs-sub-menu.hs-reversed,
.navbar .hs-mobile-state .u-sub-menu-v2 .hs-sub-menu .hs-mega-menu.hs-reversed,
.navbar .hs-mobile-state .u-sub-menu-v2 .hs-mega-menu .hs-sub-menu,
.navbar .hs-mobile-state .u-sub-menu-v2 .hs-mega-menu .hs-mega-menu,
.navbar .hs-mobile-state .u-sub-menu-v2 .hs-mega-menu .hs-sub-menu.hs-reversed,
.navbar .hs-mobile-state .u-sub-menu-v2 .hs-mega-menu .hs-mega-menu.hs-reversed {
  margin: 0.21429rem; }

/*------------------------------------
  Navigation Dropdown Style v3
------------------------------------*/
.navbar .u-sub-menu-v3 .hs-has-sub-menu .hs-has-sub-menu.active > a,
.navbar .u-sub-menu-v3 .hs-has-sub-menu .hs-has-sub-menu:active > a,
.navbar .u-sub-menu-v3 .hs-has-sub-menu .hs-has-sub-menu:focus > a,
.navbar .u-sub-menu-v3 .hs-has-sub-menu .hs-has-sub-menu:hover > a, .navbar .u-sub-menu-v3 .hs-sub-menu .dropdown-item.active > a, .navbar .u-sub-menu-v3 .hs-sub-menu .dropdown-item:active > a, .navbar .u-sub-menu-v3 .hs-sub-menu .dropdown-item:focus > a, .navbar .u-sub-menu-v3 .hs-sub-menu .dropdown-item:hover > a,
.navbar .u-sub-menu-v3 .dropdown-menu .dropdown-item.active > a,
.navbar .u-sub-menu-v3 .dropdown-menu .dropdown-item:active > a,
.navbar .u-sub-menu-v3 .dropdown-menu .dropdown-item:focus > a,
.navbar .u-sub-menu-v3 .dropdown-menu .dropdown-item:hover > a, .navbar .u-sub-menu-v3 .hs-sub-menu a:active, .navbar .u-sub-menu-v3 .hs-sub-menu a:focus, .navbar .u-sub-menu-v3 .hs-sub-menu a:hover,
.navbar .u-sub-menu-v3 .dropdown-menu a:active,
.navbar .u-sub-menu-v3 .dropdown-menu a:focus,
.navbar .u-sub-menu-v3 .dropdown-menu a:hover {
  color: #fff !important;
  background-color: #72c02c;
  border: none; }

.navbar .u-sub-menu-v3 .hs-has-sub-menu .hs-has-sub-menu > a::after {
  content: "\e902";
  font-family: "hs-icons";
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0); }

.navbar .u-sub-menu-v3 .hs-has-mega-menu .hs-has-sub-menu > a::after {
  content: "\e902"; }

.navbar .u-sub-menu-v3 .hs-sub-menu,
.navbar .u-sub-menu-v3 .dropdown-menu {
  font-size: 0.92857rem;
  min-width: 16.42857rem;
  padding: 0.71429rem 0; }

.navbar .u-sub-menu-v3 .hs-sub-menu .dropdown-item,
.navbar .u-sub-menu-v3 .dropdown-menu .dropdown-item {
  font-weight: inherit;
  color: inherit;
  padding: 0; }

.navbar .u-sub-menu-v3 .hs-sub-menu .dropdown-item.active, .navbar .u-sub-menu-v3 .hs-sub-menu .dropdown-item:active, .navbar .u-sub-menu-v3 .hs-sub-menu .dropdown-item:focus, .navbar .u-sub-menu-v3 .hs-sub-menu .dropdown-item:hover,
.navbar .u-sub-menu-v3 .dropdown-menu .dropdown-item.active,
.navbar .u-sub-menu-v3 .dropdown-menu .dropdown-item:active,
.navbar .u-sub-menu-v3 .dropdown-menu .dropdown-item:focus,
.navbar .u-sub-menu-v3 .dropdown-menu .dropdown-item:hover {
  border-color: #eee;
  background-color: transparent; }

.navbar .u-sub-menu-v3 .hs-sub-menu a,
.navbar .u-sub-menu-v3 .dropdown-menu a {
  color: #777;
  text-decoration: none !important;
  display: block;
  padding: 0.42857rem 1.78571rem; }

.navbar .u-sub-menu-v3 .hs-sub-menu > li:not(:last-child),
.navbar .u-sub-menu-v3 .dropdown-menu > li:not(:last-child) {
  border-bottom: 1px solid #eee; }

.navbar .u-sub-menu-v3 .hs-sub-menu,
.navbar .u-sub-menu-v3 .hs-mega-menu,
.navbar .u-sub-menu-v3 .dropdown-menu {
  font-weight: normal;
  text-transform: none;
  min-width: 14.28571rem;
  margin-top: 0;
  padding: 0;
  color: inherit;
  background-color: #fff;
  background-clip: border-box;
  border-width: 2px 0 2px 0;
  border-style: solid;
  border-top-color: #72c02c;
  border-bottom-color: #777;
  border-radius: 0;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); }

.navbar .u-sub-menu-v3 .hs-sub-menu .hs-sub-menu,
.navbar .u-sub-menu-v3 .hs-mega-menu .hs-sub-menu,
.navbar .u-sub-menu-v3 .dropdown-menu .hs-sub-menu {
  margin-top: -1.07143rem; }

.navbar .u-sub-menu-v3.hs-mobile-state .hs-sub-menu {
  width: auto; }

.navbar .u-sub-menu-v3.hs-mobile-state .hs-sub-menu .hs-sub-menu,
.navbar .u-sub-menu-v3.hs-mobile-state .hs-sub-menu .hs-mega-menu,
.navbar .u-sub-menu-v3.hs-mobile-state .hs-sub-menu .hs-sub-menu.hs-reversed,
.navbar .u-sub-menu-v3.hs-mobile-state .hs-sub-menu .hs-mega-menu.hs-reversed,
.navbar .u-sub-menu-v3.hs-mobile-state .hs-mega-menu .hs-sub-menu,
.navbar .u-sub-menu-v3.hs-mobile-state .hs-mega-menu .hs-mega-menu,
.navbar .u-sub-menu-v3.hs-mobile-state .hs-mega-menu .hs-sub-menu.hs-reversed,
.navbar .u-sub-menu-v3.hs-mobile-state .hs-mega-menu .hs-mega-menu.hs-reversed {
  margin: 0.21429rem; }

.navbar .hs-mobile-state .u-sub-menu-v3 .hs-sub-menu {
  width: auto; }

.navbar .hs-mobile-state .u-sub-menu-v3 .hs-sub-menu .hs-sub-menu,
.navbar .hs-mobile-state .u-sub-menu-v3 .hs-sub-menu .hs-mega-menu,
.navbar .hs-mobile-state .u-sub-menu-v3 .hs-sub-menu .hs-sub-menu.hs-reversed,
.navbar .hs-mobile-state .u-sub-menu-v3 .hs-sub-menu .hs-mega-menu.hs-reversed,
.navbar .hs-mobile-state .u-sub-menu-v3 .hs-mega-menu .hs-sub-menu,
.navbar .hs-mobile-state .u-sub-menu-v3 .hs-mega-menu .hs-mega-menu,
.navbar .hs-mobile-state .u-sub-menu-v3 .hs-mega-menu .hs-sub-menu.hs-reversed,
.navbar .hs-mobile-state .u-sub-menu-v3 .hs-mega-menu .hs-mega-menu.hs-reversed {
  margin: 0.21429rem; }

/*------------------------------------
  Navigation Dropdown Style v4
------------------------------------*/
.navbar .u-sub-menu-v4 .hs-has-sub-menu .hs-has-sub-menu.active > a,
.navbar .u-sub-menu-v4 .hs-has-sub-menu .hs-has-sub-menu:active > a,
.navbar .u-sub-menu-v4 .hs-has-sub-menu .hs-has-sub-menu:focus > a,
.navbar .u-sub-menu-v4 .hs-has-sub-menu .hs-has-sub-menu:hover > a, .navbar .u-sub-menu-v4 .hs-sub-menu .dropdown-item.active > a, .navbar .u-sub-menu-v4 .hs-sub-menu .dropdown-item:active > a, .navbar .u-sub-menu-v4 .hs-sub-menu .dropdown-item:focus > a, .navbar .u-sub-menu-v4 .hs-sub-menu .dropdown-item:hover > a,
.navbar .u-sub-menu-v4 .dropdown-menu .dropdown-item.active > a,
.navbar .u-sub-menu-v4 .dropdown-menu .dropdown-item:active > a,
.navbar .u-sub-menu-v4 .dropdown-menu .dropdown-item:focus > a,
.navbar .u-sub-menu-v4 .dropdown-menu .dropdown-item:hover > a, .navbar .u-sub-menu-v4 .hs-sub-menu a:active, .navbar .u-sub-menu-v4 .hs-sub-menu a:focus, .navbar .u-sub-menu-v4 .hs-sub-menu a:hover,
.navbar .u-sub-menu-v4 .dropdown-menu a:active,
.navbar .u-sub-menu-v4 .dropdown-menu a:focus,
.navbar .u-sub-menu-v4 .dropdown-menu a:hover {
  color: #fff !important;
  background-color: #72c02c;
  border: none; }

.navbar .u-sub-menu-v4 .hs-has-sub-menu .hs-has-sub-menu > a::after {
  content: "\e902";
  font-family: "hs-icons";
  position: absolute;
  top: 50%;
  right: 15px;
  -webkit-transform: translate3d(0, -50%, 0);
  transform: translate3d(0, -50%, 0); }

.navbar .u-sub-menu-v4 .hs-has-mega-menu .hs-has-sub-menu > a::after {
  content: "\e902"; }

.navbar .u-sub-menu-v4 .hs-sub-menu,
.navbar .u-sub-menu-v4 .dropdown-menu {
  font-size: 0.92857rem;
  min-width: 16.42857rem;
  padding: 0.71429rem 0; }

.navbar .u-sub-menu-v4 .hs-sub-menu .dropdown-item,
.navbar .u-sub-menu-v4 .dropdown-menu .dropdown-item {
  font-weight: inherit;
  color: inherit;
  padding: 0; }

.navbar .u-sub-menu-v4 .hs-sub-menu .dropdown-item.active, .navbar .u-sub-menu-v4 .hs-sub-menu .dropdown-item:active, .navbar .u-sub-menu-v4 .hs-sub-menu .dropdown-item:focus, .navbar .u-sub-menu-v4 .hs-sub-menu .dropdown-item:hover,
.navbar .u-sub-menu-v4 .dropdown-menu .dropdown-item.active,
.navbar .u-sub-menu-v4 .dropdown-menu .dropdown-item:active,
.navbar .u-sub-menu-v4 .dropdown-menu .dropdown-item:focus,
.navbar .u-sub-menu-v4 .dropdown-menu .dropdown-item:hover {
  border: none;
  background-color: transparent; }

.navbar .u-sub-menu-v4 .hs-sub-menu a,
.navbar .u-sub-menu-v4 .dropdown-menu a {
  color: #777;
  text-decoration: none !important;
  display: block;
  padding: 0.42857rem 1.78571rem; }

.navbar .u-sub-menu-v4 .hs-sub-menu > li:not(:last-child),
.navbar .u-sub-menu-v4 .dropdown-menu > li:not(:last-child) {
  border-bottom: 1px solid #eee; }

.navbar .u-sub-menu-v4 .hs-sub-menu,
.navbar .u-sub-menu-v4 .hs-mega-menu,
.navbar .u-sub-menu-v4 .dropdown-menu {
  font-weight: normal;
  text-transform: none;
  min-width: 14.28571rem;
  margin-top: 0;
  padding: 0;
  color: inherit;
  background-color: #fff;
  background-clip: border-box;
  border-width: 2px 0 2px 0;
  border-style: solid;
  border-top-color: #72c02c;
  border-bottom-color: #777;
  border-radius: 0;
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175); }

.navbar .u-sub-menu-v4 .hs-sub-menu .hs-sub-menu,
.navbar .u-sub-menu-v4 .hs-mega-menu .hs-sub-menu,
.navbar .u-sub-menu-v4 .dropdown-menu .hs-sub-menu {
  margin-top: -1.07143rem; }

.navbar .u-sub-menu-v4.hs-mobile-state .hs-sub-menu {
  width: auto; }

.navbar .u-sub-menu-v4.hs-mobile-state .hs-sub-menu .hs-sub-menu,
.navbar .u-sub-menu-v4.hs-mobile-state .hs-sub-menu .hs-mega-menu,
.navbar .u-sub-menu-v4.hs-mobile-state .hs-sub-menu .hs-sub-menu.hs-reversed,
.navbar .u-sub-menu-v4.hs-mobile-state .hs-sub-menu .hs-mega-menu.hs-reversed,
.navbar .u-sub-menu-v4.hs-mobile-state .hs-mega-menu .hs-sub-menu,
.navbar .u-sub-menu-v4.hs-mobile-state .hs-mega-menu .hs-mega-menu,
.navbar .u-sub-menu-v4.hs-mobile-state .hs-mega-menu .hs-sub-menu.hs-reversed,
.navbar .u-sub-menu-v4.hs-mobile-state .hs-mega-menu .hs-mega-menu.hs-reversed {
  margin: 0.21429rem; }

.navbar .hs-mobile-state .u-sub-menu-v4 .hs-sub-menu {
  width: auto; }

.navbar .hs-mobile-state .u-sub-menu-v4 .hs-sub-menu .hs-sub-menu,
.navbar .hs-mobile-state .u-sub-menu-v4 .hs-sub-menu .hs-mega-menu,
.navbar .hs-mobile-state .u-sub-menu-v4 .hs-sub-menu .hs-sub-menu.hs-reversed,
.navbar .hs-mobile-state .u-sub-menu-v4 .hs-sub-menu .hs-mega-menu.hs-reversed,
.navbar .hs-mobile-state .u-sub-menu-v4 .hs-mega-menu .hs-sub-menu,
.navbar .hs-mobile-state .u-sub-menu-v4 .hs-mega-menu .hs-mega-menu,
.navbar .hs-mobile-state .u-sub-menu-v4 .hs-mega-menu .hs-sub-menu.hs-reversed,
.navbar .hs-mobile-state .u-sub-menu-v4 .hs-mega-menu .hs-mega-menu.hs-reversed {
  margin: 0.21429rem; }

/*------------------------------------
  Navigation Dropdown Style v5
------------------------------------*/
.u-dropdown-v5 {
  display: block;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transition: opacity .3s, max-height .3s; }

.u-dropdown-v5.show {
  max-height: 200px;
  opacity: 1; }

/*------------------------------------
  Navigation Dropdown Style Inline
------------------------------------*/
.u-navbar--inline-submenu .dropdown-menu {
  white-space: nowrap;
  top: 98%;
  left: 50%;
  border-radius: 0;
  overflow: visible !important;
  border-left: none;
  border-right: none;
  -webkit-transform: translate3d(-50%, 0, 0);
  transform: translate3d(-50%, 0, 0); }

.u-navbar--inline-submenu .dropdown-menu::after, .u-navbar--inline-submenu .dropdown-menu::before {
  content: "";
  position: absolute;
  top: -1px;
  bottom: 0;
  width: 2000%;
  border-top: inherit;
  border-bottom: inherit;
  background-color: inherit; }

.u-navbar--inline-submenu .dropdown-menu::after {
  left: 100%; }

.u-navbar--inline-submenu .dropdown-menu::before {
  right: 100%; }

.u-navbar--inline-submenu .dropdown-menu > li {
  display: inline-block; }

.u-navbar--inline-submenu.u-navbar--overflow .dropdown,
.u-navbar--inline-submenu.u-navbar--overflow .container {
  position: static; }

.u-navbar--inline-submenu.u-navbar--overflow .dropdown-menu {
  white-space: normal;
  left: 0;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  margin-top: 0; }

@media all and (min-width: 1200px) {
  .u-navbar--inline-submenu--xl .dropdown-menu {
    white-space: nowrap;
    top: 98%;
    left: 50%;
    border-radius: 0;
    overflow: visible !important;
    border-left: none;
    border-right: none;
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0); }

  .u-navbar--inline-submenu--xl .dropdown-menu::after, .u-navbar--inline-submenu--xl .dropdown-menu::before {
    content: "";
    position: absolute;
    top: -1px;
    bottom: 0;
    width: 2000%;
    border-top: inherit;
    border-bottom: inherit;
    background-color: inherit; }

  .u-navbar--inline-submenu--xl .dropdown-menu::after {
    left: 100%; }

  .u-navbar--inline-submenu--xl .dropdown-menu::before {
    right: 100%; }

  .u-navbar--inline-submenu--xl .dropdown-menu > li {
    display: inline-block; }

  .u-navbar--inline-submenu--xl.u-navbar--overflow .dropdown,
  .u-navbar--inline-submenu--xl.u-navbar--overflow .container {
    position: static; }

  .u-navbar--inline-submenu--xl.u-navbar--overflow .dropdown-menu {
    white-space: normal;
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    margin-top: 0; } }
@media all and (min-width: 992px) {
  .u-navbar--inline-submenu--lg .dropdown-menu {
    white-space: nowrap;
    top: 98%;
    left: 50%;
    border-radius: 0;
    overflow: visible !important;
    border-left: none;
    border-right: none;
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0); }

  .u-navbar--inline-submenu--lg .dropdown-menu::after, .u-navbar--inline-submenu--lg .dropdown-menu::before {
    content: "";
    position: absolute;
    top: -1px;
    bottom: 0;
    width: 2000%;
    border-top: inherit;
    border-bottom: inherit;
    background-color: inherit; }

  .u-navbar--inline-submenu--lg .dropdown-menu::after {
    left: 100%; }

  .u-navbar--inline-submenu--lg .dropdown-menu::before {
    right: 100%; }

  .u-navbar--inline-submenu--lg .dropdown-menu > li {
    display: inline-block; }

  .u-navbar--inline-submenu--lg.u-navbar--overflow .dropdown,
  .u-navbar--inline-submenu--lg.u-navbar--overflow .container {
    position: static; }

  .u-navbar--inline-submenu--lg.u-navbar--overflow .dropdown-menu {
    white-space: normal;
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    margin-top: 0; } }
@media all and (min-width: 768px) {
  .u-navbar--inline-submenu--md .dropdown-menu {
    white-space: nowrap;
    top: 98%;
    left: 50%;
    border-radius: 0;
    overflow: visible !important;
    border-left: none;
    border-right: none;
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0); }

  .u-navbar--inline-submenu--md .dropdown-menu::after, .u-navbar--inline-submenu--md .dropdown-menu::before {
    content: "";
    position: absolute;
    top: -1px;
    bottom: 0;
    width: 2000%;
    border-top: inherit;
    border-bottom: inherit;
    background-color: inherit; }

  .u-navbar--inline-submenu--md .dropdown-menu::after {
    left: 100%; }

  .u-navbar--inline-submenu--md .dropdown-menu::before {
    right: 100%; }

  .u-navbar--inline-submenu--md .dropdown-menu > li {
    display: inline-block; }

  .u-navbar--inline-submenu--md.u-navbar--overflow .dropdown,
  .u-navbar--inline-submenu--md.u-navbar--overflow .container {
    position: static; }

  .u-navbar--inline-submenu--md.u-navbar--overflow .dropdown-menu {
    white-space: normal;
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    margin-top: 0; } }
@media all and (min-width: 576px) {
  .u-navbar--inline-submenu--sm .dropdown-menu {
    white-space: nowrap;
    top: 98%;
    left: 50%;
    border-radius: 0;
    overflow: visible !important;
    border-left: none;
    border-right: none;
    -webkit-transform: translate3d(-50%, 0, 0);
    transform: translate3d(-50%, 0, 0); }

  .u-navbar--inline-submenu--sm .dropdown-menu::after, .u-navbar--inline-submenu--sm .dropdown-menu::before {
    content: "";
    position: absolute;
    top: -1px;
    bottom: 0;
    width: 2000%;
    border-top: inherit;
    border-bottom: inherit;
    background-color: inherit; }

  .u-navbar--inline-submenu--sm .dropdown-menu::after {
    left: 100%; }

  .u-navbar--inline-submenu--sm .dropdown-menu::before {
    right: 100%; }

  .u-navbar--inline-submenu--sm .dropdown-menu > li {
    display: inline-block; }

  .u-navbar--inline-submenu--sm.u-navbar--overflow .dropdown,
  .u-navbar--inline-submenu--sm.u-navbar--overflow .container {
    position: static; }

  .u-navbar--inline-submenu--sm.u-navbar--overflow .dropdown-menu {
    white-space: normal;
    left: 0;
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    margin-top: 0; } }
/*------------------------------------
  Navigation Dropdown With Columns
------------------------------------*/
@media (min-width: 992px) {
  [class*="u-dropdown-col-"] {
    -webkit-column-gap: 1px;
    -moz-column-gap: 1px;
    column-gap: 1px;
    -webkit-column-rule: 1px solid #f7f7f7;
    -moz-column-rule: 1px solid #f7f7f7;
    column-rule: 1px solid #f7f7f7; }

  [class*="u-dropdown-col-"] > * {
    min-width: 200px;
    -webkit-column-break-inside: avoid;
    column-break-inside: avoid; }

  .u-dropdown-col-2 {
    -webkit-columns: 2;
    -moz-columns: 2;
    columns: 2; }

  .u-dropdown-col-3 {
    -webkit-columns: 3;
    -moz-columns: 3;
    columns: 3; } }
/*------------------------------------
  Navigation Dropdown Static
------------------------------------*/
.u-dropdown-static {
  position: static !important;
  display: block;
  max-height: 0;
  margin: 0 1.07143rem;
  padding: 0.35714rem 0;
  -webkit-transform: translate3d(0, 0, 0) !important;
  transform: translate3d(0, 0, 0) !important;
  border: none;
  background-color: transparent;
  overflow: hidden;
  opacity: 0;
  transition: opacity .3s, max-height .3s; }

.u-dropdown-static.show {
  max-height: 100%;
  opacity: 1; }

/* Main navigation behaviors */
/*------------------------------------
  Navigation Behavior (Overlay)
------------------------------------*/
body.u-main-nav--overlay-left .u-main-nav__overlay, body.u-main-nav--overlay-right .u-main-nav__overlay {
  overflow: hidden; }

body.u-main-nav--overlay-right .u-main-nav--overlay {
  right: -21.42857rem; }

body.u-main-nav--overlay-right .u-main-nav__overlay {
  right: 100%; }

body.u-main-nav--overlay-right.u-main-nav--overlay-opened .u-main-nav--overlay {
  right: 0; }

body.u-main-nav--overlay-right.u-main-nav--overlay-opened .u-main-nav__overlay {
  opacity: 1;
  visibility: visible; }

body.u-main-nav--overlay-left .u-main-nav--overlay {
  left: -21.42857rem; }

body.u-main-nav--overlay-left .u-main-nav__overlay {
  left: 100%; }

body.u-main-nav--overlay-left.u-main-nav--overlay-opened .u-main-nav--overlay {
  left: 0; }

body.u-main-nav--overlay-left.u-main-nav--overlay-opened .u-main-nav__overlay {
  opacity: 1;
  visibility: visible; }

.navbar-collapse.u-main-nav--overlay {
  position: fixed;
  top: 0;
  height: 100%;
  z-index: 5;
  margin: 0 !important;
  width: 21.42857rem;
  -webkit-box-align: start !important;
  -webkit-align-items: flex-start !important;
  -ms-flex-align: start !important;
  align-items: flex-start !important; }

.navbar-collapse.u-main-nav--overlay .navbar-nav {
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-left: 0 !important;
  margin-right: 0 !important; }

.navbar-collapse.u-main-nav--overlay .dropdown-menu {
  position: static;
  width: 100%; }

.navbar-collapse.u-main-nav--overlay .u-main-nav__list-wrapper {
  margin-left: 0;
  margin-right: 0;
  padding: 2.14286rem 0.71429rem;
  width: 100%;
  height: 100%; }

.navbar-collapse.u-main-nav--overlay .u-main-nav__list-wrapper .navbar-nav {
  padding: 0.71429rem; }

/*------------------------------------
  Navigation Behavior (Push)
------------------------------------*/
body.u-main-nav--push-left, body.u-main-nav--push-right {
  width: 100%; }

body.u-main-nav--push-left .u-main-nav__push, body.u-main-nav--push-right .u-main-nav__push {
  overflow: hidden; }

body.u-main-nav--push-right .u-main-nav--push {
  right: -21.42857rem; }

body.u-main-nav--push-right .u-main-nav__overlay {
  right: 100%; }

body.u-main-nav--push-right.u-main-nav--overlay-opened {
  margin-right: 21.42857rem; }

body.u-main-nav--push-right.u-main-nav--overlay-opened .u-main-nav--push {
  right: 0; }

body.u-main-nav--push-right.u-main-nav--overlay-opened .u-main-nav__overlay {
  opacity: 1;
  visibility: visible; }

body.u-main-nav--push-left .u-main-nav--push {
  left: -21.42857rem; }

body.u-main-nav--push-left .u-main-nav__overlay {
  left: 100%; }

body.u-main-nav--push-left.u-main-nav--overlay-opened {
  margin-left: 21.42857rem; }

body.u-main-nav--push-left.u-main-nav--overlay-opened .u-main-nav--push {
  left: 0; }

body.u-main-nav--push-left.u-main-nav--overlay-opened .u-main-nav__overlay {
  opacity: 1;
  visibility: visible; }

.navbar-collapse.u-main-nav--push {
  position: fixed;
  top: 0;
  height: 100%;
  z-index: 5;
  margin: 0 !important;
  width: 21.42857rem;
  max-width: 85%;
  -webkit-box-align: start !important;
  -webkit-align-items: flex-start !important;
  -ms-flex-align: start !important;
  align-items: flex-start !important; }

.navbar-collapse.u-main-nav--push .navbar-nav {
  width: 100%;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
  margin-left: 0 !important;
  margin-right: 0 !important; }

.navbar-collapse.u-main-nav--push .dropdown-menu {
  position: static;
  width: 100%; }

.navbar-collapse.u-main-nav--push .u-main-nav__list-wrapper {
  margin-left: 0;
  margin-right: 0;
  padding: 2.14286rem 0.71429rem;
  width: 100%;
  height: 100%; }

.navbar-collapse.u-main-nav--push .u-main-nav__list-wrapper .navbar-nav {
  padding: 0.71429rem; }

/*------------------------------------
  Navigation Behavior (Smart)
------------------------------------*/
.u-smart-nav {
  position: fixed;
  z-index: 2;
  opacity: 0;
  visibility: hidden;
  -webkit-transform: scale3d(0.2, 0.2, 0.2);
  transform: scale3d(0.2, 0.2, 0.2); }

.u-smart-nav .navbar {
  position: absolute;
  width: 21.42857rem;
  opacity: 0;
  visibility: hidden; }

.u-smart-nav .navbar .dropdown {
  z-index: 1; }

.u-smart-nav .navbar .dropdown-menu {
  position: relative;
  width: 100%; }

.u-smart-nav .navbar li {
  -webkit-transform: translate3d(30px, 0, 0);
  transform: translate3d(30px, 0, 0);
  transition: all .3s ease; }

.u-smart-nav .navbar li:nth-child(1) {
  transition-delay: 60ms; }

.u-smart-nav .navbar li:nth-child(2) {
  transition-delay: 90ms; }

.u-smart-nav .navbar li:nth-child(3) {
  transition-delay: 120ms; }

.u-smart-nav .navbar li:nth-child(4) {
  transition-delay: 150ms; }

.u-smart-nav .navbar li:nth-child(5) {
  transition-delay: 180ms; }

.u-smart-nav .navbar li:nth-child(6) {
  transition-delay: 210ms; }

.u-smart-nav .navbar li:nth-child(7) {
  transition-delay: 240ms; }

.u-smart-nav .navbar li:nth-child(8) {
  transition-delay: 270ms; }

.u-smart-nav .navbar li:nth-child(9) {
  transition-delay: 300ms; }

.u-smart-nav .navbar li:nth-child(10) {
  transition-delay: 330ms; }

.u-smart-nav .navbar li:nth-child(11) {
  transition-delay: 360ms; }

.u-smart-nav .navbar li:nth-child(12) {
  transition-delay: 390ms; }

.u-smart-nav .navbar li:nth-child(13) {
  transition-delay: 420ms; }

.u-smart-nav .navbar li:nth-child(14) {
  transition-delay: 450ms; }

.u-smart-nav .navbar li:nth-child(15) {
  transition-delay: 480ms; }

.u-smart-nav .navbar li:nth-child(16) {
  transition-delay: 510ms; }

.u-smart-nav .navbar li:nth-child(17) {
  transition-delay: 540ms; }

.u-smart-nav .navbar li:nth-child(18) {
  transition-delay: 570ms; }

.u-smart-nav .navbar li:nth-child(19) {
  transition-delay: 600ms; }

.u-smart-nav__toggler {
  position: relative;
  z-index: 1; }

.u-smart-nav--opened .navbar {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale3d(1, 1, 1) !important;
  transform: scale3d(1, 1, 1) !important; }

.u-smart-nav--opened .navbar li {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.u-smart-nav--shown {
  opacity: 1;
  visibility: visible;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1); }

.u-smart-nav--bottom-right {
  right: 0.71429rem;
  bottom: 0.71429rem; }

.u-smart-nav--bottom-right .navbar {
  bottom: 0;
  right: 0;
  -webkit-transform: scale3d(0.1, 0.1, 0.1);
  transform: scale3d(0.1, 0.1, 0.1);
  -webkit-transform-origin: 100% 100%;
  -ms-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
  padding-right: 5.71429rem; }

.u-smart-nav--bottom-left {
  left: 0.71429rem;
  bottom: 0.71429rem; }

.u-smart-nav--bottom-left .navbar {
  text-align: right;
  bottom: 0;
  left: 0;
  -webkit-transform: scale3d(0.1, 0.1, 0.1);
  transform: scale3d(0.1, 0.1, 0.1);
  -webkit-transform-origin: 0% 100%;
  -ms-transform-origin: 0% 100%;
  transform-origin: 0% 100%;
  padding-left: 5.71429rem; }

.u-smart-nav--top-left {
  left: 0.71429rem;
  top: 0.71429rem; }

.u-smart-nav--top-left .navbar {
  text-align: right;
  top: 0;
  left: 0;
  -webkit-transform: scale3d(0.1, 0.1, 0.1);
  transform: scale3d(0.1, 0.1, 0.1);
  -webkit-transform-origin: 0% 0%;
  -ms-transform-origin: 0% 0%;
  transform-origin: 0% 0%;
  padding-left: 5.71429rem; }

.u-smart-nav--top-right {
  right: 0.71429rem;
  top: 0.71429rem; }

.u-smart-nav--top-right .navbar {
  top: 0;
  right: 0;
  -webkit-transform: scale3d(0.1, 0.1, 0.1);
  transform: scale3d(0.1, 0.1, 0.1);
  -webkit-transform-origin: 100% 0%;
  -ms-transform-origin: 100% 0%;
  transform-origin: 100% 0%;
  padding-right: 5.71429rem; }

/* Secondary navigation styles */
/*------------------------------------
  Secondary Navigation
------------------------------------*/
.u-secondary-navigation {
  z-index: 3; }

.u-secondary-navigation .active a {
  color: #72c02c; }

/* Sidebar shortcode navigation styles */
/*------------------------------------
  Sidebar Navigation
------------------------------------*/
@media all and (min-width: 992px) {
  .u-sidebar-navigation {
    position: fixed;
    top: 0;
    left: -21.42857rem;
    width: 300px; } }
.u-sidebar-navigation-inner {
  background-color: #1c2434;
  color: #fff;
  padding: 20px 0; }

.u-sidebar-navigation__search-input {
  border-radius: 3px;
  border: none; }

.u-sidebar-navigation .nav-link {
  color: #fff;
  padding: 0.5rem 1.42857rem; }

.u-sidebar-navigation .nav-link:hover {
  background-color: rgba(255, 255, 255, 0.15); }

.u-sidebar-navigation .nav-link.active {
  background-color: rgba(255, 255, 255, 0.1); }

.u-sidebar-navigation__toggler {
  position: fixed;
  top: 120px;
  left: 0;
  width: 53px;
  height: 53px;
  background-color: #1c2434;
  color: #fff;
  border-radius: 0 3px 3px 0;
  font-size: 22px;
  z-index: 2; }

.u-sidebar-navigation__toggler:hover, .u-sidebar-navigation__toggler:focus {
  color: #fff; }

.u-sidebar-navigation__closer {
  position: absolute;
  top: 22px;
  right: 15px;
  width: 25px;
  height: 25px;
  padding: 0;
  color: #fff;
  background-color: transparent;
  z-index: 3; }

.u-sidebar-navigation__closer:hover, .u-sidebar-navigation__closer:focus {
  color: #fff; }

@media all and (max-width: 991px) {
  .u-sidebar-navigation-list {
    display: block;
    -webkit-columns: 4;
    -moz-columns: 4;
    columns: 4; }

  .u-sidebar-navigation-list .dropdown-toggle {
    display: none; }

  .u-sidebar-navigation-list .dropdown-menu {
    display: block;
    max-height: 100%;
    margin: 0;
    float: none;
    opacity: 1; } }
@media all and (max-width: 767px) {
  .u-sidebar-navigation-list {
    -webkit-columns: 3;
    -moz-columns: 3;
    columns: 3; } }
@media all and (max-width: 575px) {
  .u-sidebar-navigation-list {
    -webkit-columns: 1;
    -moz-columns: 1;
    columns: 1; } }
.u-has-sidebar-navigation .u-header__overlay {
  display: none; }

/* Override vendor stylesheets */
.hamburger-inner::before,
.hamburger-inner::after {
  background-color: inherit; }

[class*="u-main-nav-"] .dropdown-toggle::after {
  width: auto;
  height: auto;
  vertical-align: inherit;
  border: none; }

/* Overlay */
.u-main-nav__overlay {
  position: absolute;
  top: 0;
  height: 100%;
  width: 2000%;
  opacity: 0;
  visibility: hidden; }

/* Override necessary navigation styles in side-header pages */
body.u-body--header-side-static-left .navbar [class*="u-main-nav-"] .dropdown-toggle::after,
body.u-body--header-side-static-left .navbar [class*="u-main-nav-"] > .hs-has-sub-menu > a::after,
body.u-body--header-side-static-left .navbar [class*="u-main-nav-"] > .hs-has-mega-menu > a::after {
  content: "\e900"; }

body.u-body--header-side-static-right .navbar [class*="u-main-nav-"] .dropdown-toggle::after,
body.u-body--header-side-static-right .navbar [class*="u-main-nav-"] > .hs-has-sub-menu > a::after,
body.u-body--header-side-static-right .navbar [class*="u-main-nav-"] > .hs-has-mega-menu > a::after {
  content: "\e901"; }

/* Scroll on mobile devices */
@media (max-width: 991px) {
  .u-nav-mobile-scroll {
    overflow-y: auto; } }
/*------------------------------------
  Basket Bar
------------------------------------*/
/* Container */
.u-basket {
  position: relative;
  z-index: 1; }

/* Bar */
.u-basket__bar {
  position: absolute;
  right: 0;
  top: 100%;
  text-align: left;
  width: 21.42857rem;
  background-color: #fff;
  box-shadow: 0 5px 5px 0px rgba(90, 90, 90, 0.075); }

/* Product */
.u-basket__product {
  position: relative;
  z-index: 1;
  overflow: hidden;
  padding: 0.71429rem;
  border-bottom: solid 1px #eee; }

/* Product Image */
.u-basket__product-img {
  width: 7.14286rem; }

.u-basket__product-img img {
  width: 100%; }

/* Product Remove Button */
.u-basket__product-remove {
  position: absolute;
  top: 1.42857rem;
  right: 1.42857rem;
  padding: 0;
  margin: 0;
  font-size: 1.5rem;
  font-family: inherit;
  font-weight: 700;
  color: #000;
  border: none;
  background-color: transparent;
  cursor: pointer;
  opacity: .2; }

.u-basket__product-remove:hover, .u-basket__product-remove:focus {
  opacity: 1; }

/*------------------------------------
	Dropdowns
------------------------------------*/
[class*="u-dropdown--"] [class*="u-dropdown--"] {
  left: 100%;
  top: 0; }

[class*="u-dropdown--"] [class*="u-dropdown--"].u-dropdown--reverse-x {
  left: auto;
  right: 100%; }

.u-dropdown--simple.u-dropdown--reverse-y,
.u-dropdown--jquery-slide.u-dropdown--reverse-y,
.u-dropdown--css-animation.u-dropdown--reverse-y {
  top: auto;
  bottom: 100%;
  margin-top: 0 !important;
  margin-bottom: 1.42857rem; }

/* Simple Dropdown */
.u-dropdown--simple.u-dropdown--hidden {
  display: none; }

/* CSS Animation Dropdown */
.u-dropdown--css-animation {
  -webkit-animation-duration: 1s;
  animation-duration: 1s; }

.u-dropdown--css-animation.u-dropdown--hidden {
  opacity: 0;
  visibility: hidden; }

/* jQuery Slide */
.u-dropdown--jquery-slide.u-dropdown--hidden {
  opacity: 0;
  visibility: hidden; }

.u-dropdown--hidden:not(.hs-sub-menu-opened) * {
  transition: none !important; }

.u-dropdown--hidden:not(.hs-sub-menu-opened) *::before, .u-dropdown--hidden:not(.hs-sub-menu-opened) *::after {
  transition: none !important; }

/*------------------------------------
  Compressed Form
------------------------------------*/
.u-compressed-form {
  display: inline-block;
  overflow: hidden;
  width: 20rem;
  transition: all .35s ease; }

.u-compressed-form--hidden {
  width: 5.71429rem; }

.u-compressed-form .input-group {
  display: block;
  float: right; }

/*------------------------------------
  Dropcaps
------------------------------------*/
.u-dropcap, .u-dropcap-underline, .u-dropcap-bg, .u-dropcap-bordered {
  float: left;
  font-size: 3.57rem;
  line-height: 1; }

.u-dropcap-underline {
  padding-bottom: 0.35714rem;
  border-bottom: 2px solid; }

.u-dropcap-bg {
  width: 5rem;
  height: 5rem;
  margin-top: 0.35714rem;
  text-align: center;
  line-height: 4.78rem; }

.u-dropcap-bordered {
  width: 5rem;
  height: 5rem;
  margin-top: 0.35714rem;
  text-align: center;
  line-height: 4.35rem;
  border: 3px solid; }

/*------------------------------------
  BG Angles
------------------------------------*/
.u-angle-v1--top-left--bg-light,
.u-angle-v1--top-right--bg-light,
.u-angle-v1--bottom-left--bg-light,
.u-angle-v1--bottom-right--bg-light,
.u-angle-v1--top-left--bg-dark,
.u-angle-v1--top-right--bg-dark,
.u-angle-v1--bottom-left--bg-dark,
.u-angle-v1--bottom-right--bg-dark,
.u-angle-v2--top-left--bg-light,
.u-angle-v2--top-right--bg-light,
.u-angle-v2--bottom-left--bg-light,
.u-angle-v2--bottom-right--bg-light,
.u-angle-v2--top-left--bg-dark,
.u-angle-v2--top-right--bg-dark,
.u-angle-v2--bottom-left--bg-dark,
.u-angle-v2--bottom-right--bg-dark {
  position: relative;
  overflow: hidden; }

/* V-1
------------------------------------*/
/* Light */
.u-angle-v1--top-left--bg-light::after {
  content: "";
  position: absolute;
  top: -10px;
  left: -100px;
  -webkit-transform: rotate(-55deg);
  -ms-transform: rotate(-55deg);
  transform: rotate(-55deg);
  width: 250px;
  height: 120px;
  background-color: rgba(255, 255, 255, 0.1); }

.u-angle-v1--top-right--bg-light::after {
  content: "";
  position: absolute;
  top: -10px;
  right: -100px;
  -webkit-transform: rotate(55deg);
  -ms-transform: rotate(55deg);
  transform: rotate(55deg);
  width: 250px;
  height: 120px;
  background-color: rgba(255, 255, 255, 0.1); }

.u-angle-v1--bottom-left--bg-light::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: -100px;
  -webkit-transform: rotate(55deg);
  -ms-transform: rotate(55deg);
  transform: rotate(55deg);
  width: 250px;
  height: 120px;
  background-color: rgba(255, 255, 255, 0.1); }

.u-angle-v1--bottom-right--bg-light::after {
  content: "";
  position: absolute;
  bottom: -10px;
  right: -100px;
  -webkit-transform: rotate(-55deg);
  -ms-transform: rotate(-55deg);
  transform: rotate(-55deg);
  width: 250px;
  height: 120px;
  background-color: rgba(255, 255, 255, 0.1); }

/* Dark */
.u-angle-v1--top-left--bg-dark::after {
  content: "";
  position: absolute;
  top: -10px;
  left: -100px;
  -webkit-transform: rotate(-55deg);
  -ms-transform: rotate(-55deg);
  transform: rotate(-55deg);
  width: 250px;
  height: 120px;
  background-color: rgba(0, 0, 0, 0.1); }

.u-angle-v1--top-right--bg-dark::after {
  content: "";
  position: absolute;
  top: -10px;
  right: -100px;
  -webkit-transform: rotate(55deg);
  -ms-transform: rotate(55deg);
  transform: rotate(55deg);
  width: 250px;
  height: 120px;
  background-color: rgba(0, 0, 0, 0.1); }

.u-angle-v1--bottom-left--bg-dark::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: -100px;
  -webkit-transform: rotate(55deg);
  -ms-transform: rotate(55deg);
  transform: rotate(55deg);
  width: 250px;
  height: 120px;
  background-color: rgba(0, 0, 0, 0.1); }

.u-angle-v1--bottom-right--bg-dark::after {
  content: "";
  position: absolute;
  bottom: -10px;
  right: -100px;
  -webkit-transform: rotate(-55deg);
  -ms-transform: rotate(-55deg);
  transform: rotate(-55deg);
  width: 250px;
  height: 120px;
  background-color: rgba(0, 0, 0, 0.1); }

/* V-2
------------------------------------*/
/* Light */
.u-angle-v2--top-left--bg-light::after {
  content: "";
  position: absolute;
  top: -10px;
  left: -100px;
  -webkit-transform: rotate(-55deg);
  -ms-transform: rotate(-55deg);
  transform: rotate(-55deg);
  width: 250px;
  height: 120px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%; }

.u-angle-v2--top-right--bg-light::after {
  content: "";
  position: absolute;
  top: -10px;
  right: -100px;
  -webkit-transform: rotate(55deg);
  -ms-transform: rotate(55deg);
  transform: rotate(55deg);
  width: 250px;
  height: 120px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%; }

.u-angle-v2--bottom-left--bg-light::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: -100px;
  -webkit-transform: rotate(55deg);
  -ms-transform: rotate(55deg);
  transform: rotate(55deg);
  width: 250px;
  height: 120px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%; }

.u-angle-v2--bottom-right--bg-light::after {
  content: "";
  position: absolute;
  bottom: -10px;
  right: -100px;
  -webkit-transform: rotate(-55deg);
  -ms-transform: rotate(-55deg);
  transform: rotate(-55deg);
  width: 250px;
  height: 120px;
  background-color: rgba(255, 255, 255, 0.1);
  border-radius: 50%; }

/* Dark */
.u-angle-v2--top-left--bg-dark::after {
  content: "";
  position: absolute;
  top: -10px;
  left: -100px;
  -webkit-transform: rotate(-55deg);
  -ms-transform: rotate(-55deg);
  transform: rotate(-55deg);
  width: 250px;
  height: 120px;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 50%; }

.u-angle-v2--top-right--bg-dark::after {
  content: "";
  position: absolute;
  top: -10px;
  right: -100px;
  -webkit-transform: rotate(55deg);
  -ms-transform: rotate(55deg);
  transform: rotate(55deg);
  width: 250px;
  height: 120px;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 50%; }

.u-angle-v2--bottom-left--bg-dark::after {
  content: "";
  position: absolute;
  bottom: -10px;
  left: -100px;
  -webkit-transform: rotate(55deg);
  -ms-transform: rotate(55deg);
  transform: rotate(55deg);
  width: 250px;
  height: 120px;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 50%; }

.u-angle-v2--bottom-right--bg-dark::after {
  content: "";
  position: absolute;
  bottom: -10px;
  right: -100px;
  -webkit-transform: rotate(-55deg);
  -ms-transform: rotate(-55deg);
  transform: rotate(-55deg);
  width: 250px;
  height: 120px;
  background-color: rgba(0, 0, 0, 0.1);
  border-radius: 50%; }

/*------------------------------------
  Block Hovers
------------------------------------*/
[class*="u-block-hover"] {
  position: relative;
  max-width: 100%;
  margin: 0;
  overflow: hidden;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translateZ(0);
  transform: translateZ(0); }

[class*="u-block-hover"], [class*="u-block-hover"]::before, [class*="u-block-hover"]::after {
  transition: all .3s ease; }

.u-block-hover--uncroped {
  overflow: visible; }

.u-block-hover--uncroped:hover {
  z-index: 2; }

.u-block-hover__img {
  max-width: 100%;
  vertical-align: top; }

.u-block-hover__block {
  min-height: 100%; }

[class*="u-block-hover__additional"] {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0; }

[class*="u-block-hover__additional--v1"] {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 15px;
  opacity: 0; }

.u-block-hover:hover .u-block-hover__additional--v1 {
  opacity: 1; }

.u-block-hover--shadow:hover,
.u-block-hover--shadow:hover .u-block-hover__additional-shadow {
  box-shadow: 0 0 10px #777; }

.u-block-hover--shadow-v2:hover,
.u-block-hover--shadow-v2:hover .u-block-hover__additional-shadow {
  box-shadow: 0 0 15px #ddd; }

.u-block-hover--shadow-v3:hover,
.u-block-hover--shadow-v3:hover .u-block-hover__additional-shadow {
  box-shadow: 0 0 3px #ddd; }

.u-block-hover--scale:hover,
.u-block-hover--scale-img:hover .u-block-hover__img {
  -webkit-transform: scale3d(1.1, 1.1, 1.1);
  transform: scale3d(1.1, 1.1, 1.1); }

.u-block-hover__additional-scale {
  z-index: -1;
  max-width: initial; }

.u-block-hover:hover .u-block-hover__additional-scale {
  top: -20px;
  right: -20px;
  bottom: -20px;
  left: -20px; }

.u-block-hover--scale-down:hover,
.u-block-hover--scale-down-img:hover .u-block-hover__img {
  -webkit-transform: scale3d(0.9, 0.9, 0.9);
  transform: scale3d(0.9, 0.9, 0.9); }

.u-block-hover__additional-scale-down {
  z-index: -1;
  max-width: initial; }

.u-block-hover:hover .u-block-hover__additional-scale-down {
  top: 20px;
  right: 20px;
  bottom: 20px;
  left: 20px; }

.u-block-hover__main--zoom-v1,
.u-block-hover__main--zoom-v2 {
  -webkit-transform: scale(1.01); }

.u-block-hover:hover .u-block-hover__main--zoom-v1 {
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1); }

.u-block-hover:hover .u-block-hover__main--zoom-v2 {
  -webkit-transform: scale(1.04);
  -ms-transform: scale(1.04);
  transform: scale(1.04); }

.u-block-hover [class*="icon-"] {
  padding: 1px; }

.u-block-hover__main--grayscale {
  filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0.3333 0.3333 0.3333 0 0 0 0 0 1 0'/></filter></svg>#grayscale");
  /* Firefox 10+, Firefox on Android */
  filter: gray;
  -webkit-filter: grayscale(100%); }

.u-block-hover:hover .u-block-hover__main--grayscale {
  filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0'/></filter></svg>#grayscale");
  -webkit-filter: grayscale(0%); }

.u-block-hover__main--white {
  -webkit-filter: brightness(0) invert(1);
  filter: brightness(0) invert(1); }

.u-block-hover__additional--blur {
  opacity: 0; }

.u-block-hover:hover .u-block-hover__additional--blur {
  opacity: 1;
  transition-delay: .11s; }

.u-block-hover:hover .u-block-hover__main--blur {
  -webkit-filter: blur(30px);
  filter: blur(30px);
  -webkit-transform: scale(1.2);
  -ms-transform: scale(1.2);
  transform: scale(1.2);
  opacity: 0; }

[class*="u-block-hover-image-overlay"]::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  opacity: 0;
  transition: all .35s ease; }

.u-block-hover:hover .u-block-hover-image-overlay::after {
  opacity: 1; }

.u-block-hover__additional--fade {
  opacity: 0; }

.u-block-hover:hover .u-block-hover__additional--fade {
  opacity: 1;
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0); }

.u-block-hover__additional--fade-up {
  -webkit-transform: translate(0, 15%);
  -ms-transform: translate(0, 15%);
  transform: translate(0, 15%); }

.u-block-hover__additional--fade-down {
  -webkit-transform: translate(0, -15%);
  -ms-transform: translate(0, -15%);
  transform: translate(0, -15%); }

.u-block-hover__additional--fade-left {
  -webkit-transform: translate(-15%, 0);
  -ms-transform: translate(-15%, 0);
  transform: translate(-15%, 0); }

.u-block-hover__additional--fade-right {
  -webkit-transform: translate(15%, 0);
  -ms-transform: translate(15%, 0);
  transform: translate(15%, 0); }

.u-block-hover:hover [class*="u-block-hover__additional--push"] {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0); }

.u-block-hover:hover .u-block-hover__main--push-up {
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%); }

.u-block-hover__additional--push-up {
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%); }

.u-block-hover:hover .u-block-hover__main--push-down {
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%); }

.u-block-hover__additional--push-down {
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%); }

.u-block-hover:hover .u-block-hover__main--push-left {
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%); }

.u-block-hover__additional--push-left {
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%); }

.u-block-hover:hover .u-block-hover__main--push-right {
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%); }

.u-block-hover__additional--push-right {
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%); }

.u-block-hover:hover [class*="u-block-hover__additional--slide"],
.u-block-hover:hover [class*="u-block-hover__additional--partially-slide"] {
  -webkit-transform: translate(0, 0);
  -ms-transform: translate(0, 0);
  transform: translate(0, 0); }

.u-block-hover__additional--slide-up {
  -webkit-transform: translateY(100%);
  -ms-transform: translateY(100%);
  transform: translateY(100%); }

.u-block-hover__additional--slide-down {
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  transform: translateY(-100%); }

.u-block-hover__additional--slide-left {
  -webkit-transform: translateX(100%);
  -ms-transform: translateX(100%);
  transform: translateX(100%); }

.u-block-hover__additional--slide-right {
  -webkit-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  transform: translateX(-100%); }

.u-block-hover__additional--slide-bottom-right {
  -webkit-transform: translate(-100%, -100%);
  -ms-transform: translate(-100%, -100%);
  transform: translate(-100%, -100%); }

.u-block-hover__additional--slide-bottom-left {
  -webkit-transform: translate(100%, -100%);
  -ms-transform: translate(100%, -100%);
  transform: translate(100%, -100%); }

.u-block-hover__additional--slide-top-right {
  -webkit-transform: translate(-100%, 100%);
  -ms-transform: translate(-100%, 100%);
  transform: translate(-100%, 100%); }

.u-block-hover__additional--slide-top-left {
  -webkit-transform: translate(100%, 100%);
  -ms-transform: translate(100%, 100%);
  transform: translate(100%, 100%); }

.u-block-hover__additional--partially-slide-up {
  top: auto;
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0);
  overflow: visible; }

.u-block-hover__additional--partially-slide-up .u-block-hover__visible {
  position: absolute;
  bottom: 100%;
  margin-bottom: -1px;
  left: 0;
  right: 0;
  padding-left: inherit;
  padding-right: inherit;
  background: inherit; }

.u-block-hover__additional--partially-slide-down {
  bottom: auto;
  -webkit-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0);
  overflow: visible; }

.u-block-hover__additional--partially-slide-down .u-block-hover__visible {
  position: absolute;
  top: 100%;
  margin-top: -1px;
  left: 0;
  right: 0;
  padding-left: inherit;
  padding-right: inherit;
  background: inherit; }

.u-block-hover--cot {
  -webkit-perspective: 50em;
  perspective: 50em; }

[class*="u-block-hover__additional--cot"] {
  opacity: 0;
  z-index: 1; }

.u-block-hover--cot:hover [class*="u-block-hover__main--cot"] {
  opacity: 0; }

.u-block-hover--cot:hover [class*="u-block-hover__additional--cot"] {
  opacity: 1;
  transition-delay: 0.21s; }

.u-block-hover__main--cot-up {
  -webkit-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  transform-origin: 50% 0; }

.u-block-hover__additional--cot-up {
  -webkit-transform: rotateX(90deg);
  transform: rotateX(90deg);
  -webkit-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  transform-origin: 50% 100%; }

.u-block-hover--cot:hover .u-block-hover__main--cot-up {
  -webkit-transform: rotateX(-90deg);
  transform: rotateX(-90deg); }

.u-block-hover--cot:hover .u-block-hover__additional--cot-up {
  -webkit-transform: rotateX(0deg);
  transform: rotateX(0deg); }

.u-block-hover__main--cot-down {
  -webkit-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  transform-origin: 50% 100%; }

.u-block-hover__additional--cot-down {
  -webkit-transform: rotateX(-90deg);
  transform: rotateX(-90deg);
  -webkit-transform-origin: 50% -50%;
  -ms-transform-origin: 50% -50%;
  transform-origin: 50% -50%; }

.u-block-hover--cot:hover .u-block-hover__main--cot-down {
  -webkit-transform: rotateX(90deg);
  transform: rotateX(90deg);
  opacity: 0; }

.u-block-hover--cot:hover .u-block-hover__additional--cot-down {
  -webkit-transform: rotateX(0deg);
  transform: rotateX(0deg); }

.u-block-hover__main--cot-left {
  -webkit-transform-origin: 0% 50%;
  -ms-transform-origin: 0% 50%;
  transform-origin: 0% 50%; }

.u-block-hover__additional--cot-left {
  -webkit-transform: rotateY(-90deg);
  transform: rotateY(-90deg);
  -webkit-transform-origin: 100% 50%;
  -ms-transform-origin: 100% 50%;
  transform-origin: 100% 50%; }

.u-block-hover--cot:hover .u-block-hover__main--cot-left {
  -webkit-transform: rotateY(90deg);
  transform: rotateY(90deg); }

.u-block-hover--cot:hover .u-block-hover__additional--cot-left {
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg); }

.u-block-hover__main--cot-right {
  -webkit-transform-origin: 100% 50%;
  -ms-transform-origin: 100% 50%;
  transform-origin: 100% 50%; }

.u-block-hover__additional--cot-right {
  -webkit-transform: rotateY(90deg);
  transform: rotateY(90deg);
  -webkit-transform-origin: 0 50%;
  -ms-transform-origin: 0 50%;
  transform-origin: 0 50%; }

.u-block-hover--cot:hover .u-block-hover__main--cot-right {
  -webkit-transform: rotateY(-90deg);
  transform: rotateY(-90deg); }

.u-block-hover--cot:hover .u-block-hover__additional--cot-right {
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg); }

.u-block-hover--flip {
  -webkit-perspective: 50em;
  perspective: 50em; }

[class*="u-block-hover__main--flip"] {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden; }

[class*="u-block-hover__additional--flip"] {
  opacity: 0; }

.u-block-hover--flip:hover [class*="u-block-hover__main--flip"] {
  opacity: 0; }

.u-block-hover--flip:hover [class*="u-block-hover__additional--flip"] {
  opacity: 1;
  transition-delay: 0.13999999999999999s; }

.u-block-hover__additional--flip-horiz {
  -webkit-transform: rotateX(90deg);
  transform: rotateX(90deg);
  -webkit-transform-origin: 0 50%;
  -ms-transform-origin: 0 50%;
  transform-origin: 0 50%; }

.u-block-hover--flip:hover .u-block-hover__main--flip-horiz {
  -webkit-transform: rotateX(-180deg);
  transform: rotateX(-180deg); }

.u-block-hover--flip:hover .u-block-hover__additional--flip-horiz {
  -webkit-transform: rotateX(0deg);
  transform: rotateX(0deg); }

.u-block-hover__additional--flip-vert {
  -webkit-transform: rotateY(90deg);
  transform: rotateY(90deg);
  -webkit-transform-origin: 50% 0%;
  -ms-transform-origin: 50% 0%;
  transform-origin: 50% 0%; }

.u-block-hover--flip:hover .u-block-hover__main--flip-vert {
  -webkit-transform: rotateY(-180deg);
  transform: rotateY(-180deg); }

.u-block-hover--flip:hover .u-block-hover__additional--flip-vert {
  -webkit-transform: rotateY(0deg);
  transform: rotateY(0deg); }

.u-block-hover__additional--flip-diag-1 {
  -webkit-transform: rotate3d(1, 1, 0, 100deg);
  transform: rotate3d(1, 1, 0, 100deg); }

.u-block-hover--flip:hover .u-block-hover__main--flip-diag-1 {
  -webkit-transform: rotate3d(-1, -1, 0, 100deg);
  transform: rotate3d(-1, -1, 0, 100deg); }

.u-block-hover--flip:hover .u-block-hover__additional--flip-diag-1 {
  -webkit-transform: rotate3d(0, 0, 0, 0deg);
  transform: rotate3d(0, 0, 0, 0deg); }

.u-block-hover__additional--flip-diag-2 {
  -webkit-transform: rotate3d(1, -1, 0, 100deg);
  transform: rotate3d(1, -1, 0, 100deg); }

.u-block-hover--flip:hover .u-block-hover__main--flip-diag-2 {
  -webkit-transform: rotate3d(-1, 1, 0, 100deg);
  transform: rotate3d(-1, 1, 0, 100deg); }

.u-block-hover--flip:hover .u-block-hover__additional--flip-diag-2 {
  -webkit-transform: rotate3d(0, 0, 0, 0deg);
  transform: rotate3d(0, 0, 0, 0deg); }

.u-block-hover--fold {
  -webkit-perspective: 50em;
  perspective: 50em; }

[class*="u-block-hover__main--fold"] {
  -webkit-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  transform-origin: 50% 0; }

[class*="u-block-hover__additional--fold"] {
  z-index: 1;
  opacity: 0; }

.u-block-hover--fold:hover [class*="u-block-hover__main--fold"] {
  opacity: 0;
  transition-delay: 0; }

.u-block-hover--fold:hover [class*="u-block-hover__additional--fold"] {
  -webkit-transform: rotateX(0deg) translate3d(0, 0, 0) scale(1);
  transform: rotateX(0deg) translate3d(0, 0, 0) scale(1);
  opacity: 1;
  transition-delay: .21s; }

.u-block-hover__main--fold-up {
  -webkit-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  transform-origin: 50% 0; }

.u-block-hover__additional--fold-up {
  -webkit-transform: rotateX(-90deg) translate3d(0, -50%, 0) scale(0.6);
  transform: rotateX(-90deg) translate3d(0, -50%, 0) scale(0.6);
  -webkit-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  transform-origin: 50% 100%; }

.u-block-hover--fold:hover .u-block-hover__main--fold-up {
  -webkit-transform: rotateX(90deg) scale(0.6) translateY(50%);
  transform: rotateX(90deg) scale(0.6) translateY(50%); }

.u-block-hover__main--fold-down {
  -webkit-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  transform-origin: 50% 100%; }

.u-block-hover__additional--fold-down {
  -webkit-transform: rotateX(90deg) translate3d(0, 50%, 0) scale(0.6);
  transform: rotateX(90deg) translate3d(0, 50%, 0) scale(0.6);
  -webkit-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  transform-origin: 50% 0; }

.u-block-hover--fold:hover .u-block-hover__main--fold-down {
  -webkit-transform: rotateX(-90deg) scale(0.6) translateY(-50%);
  transform: rotateX(-90deg) scale(0.6) translateY(-50%); }

.u-block-hover__main--fold-left {
  -webkit-transform-origin: 0 50%;
  -ms-transform-origin: 0 50%;
  transform-origin: 0 50%; }

.u-block-hover__additional--fold-left {
  -webkit-transform: rotateY(90deg) translate3d(-50%, 0, 0) scale(0.6);
  transform: rotateY(90deg) translate3d(-50%, 0, 0) scale(0.6);
  -webkit-transform-origin: 100% 50%;
  -ms-transform-origin: 100% 50%;
  transform-origin: 100% 50%; }

.u-block-hover--fold:hover .u-block-hover__main--fold-left {
  -webkit-transform: rotateY(-90deg) scale(0.6) translateX(50%);
  transform: rotateY(-90deg) scale(0.6) translateX(50%); }

.u-block-hover__main--fold-right {
  -webkit-transform-origin: 100% 50%;
  -ms-transform-origin: 100% 50%;
  transform-origin: 100% 50%; }

.u-block-hover__additional--fold-right {
  -webkit-transform: rotateY(-90deg) translate3d(50%, 0, 0) scale(0.6);
  transform: rotateY(-90deg) translate3d(50%, 0, 0) scale(0.6);
  -webkit-transform-origin: 0 50%;
  -ms-transform-origin: 0 50%;
  transform-origin: 0 50%; }

.u-block-hover--fold:hover .u-block-hover__main--fold-right {
  -webkit-transform: rotateY(90deg) scale(0.6) translateX(-50%);
  transform: rotateY(90deg) scale(0.6) translateX(-50%); }

.u-block-hover__additional--zoom-in {
  opacity: 0;
  -webkit-transform: scale(0.5);
  -ms-transform: scale(0.5);
  transform: scale(0.5); }

.u-block-hover:hover .u-block-hover__additional--zoom-in {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1; }

.u-block-hover__additional--zoom-out {
  -webkit-transform: scale(0.5);
  -ms-transform: scale(0.5);
  transform: scale(0.5);
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  opacity: 0; }

.u-block-hover:hover .u-block-hover__main--zoom-out {
  -webkit-transform: scale(0.5);
  -ms-transform: scale(0.5);
  transform: scale(0.5);
  opacity: 0; }

.u-block-hover:hover .u-block-hover__additional--zoom-out {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1;
  transition-delay: .35s; }

[class*="u-block-hover--shutter-out"]::after {
  content: "";
  position: absolute;
  transition-delay: .105s;
  z-index: 1; }

.u-block-hover__additional--shutter-out {
  opacity: 0;
  transition-delay: 0s;
  z-index: 2; }

[class*="u-block-hover--shutter-out"]:hover::after {
  transition-delay: 0s; }

[class*="u-block-hover--shutter-out"]:hover .u-block-hover__additional--shutter-out {
  opacity: 1;
  transition-delay: .105s; }

.u-block-hover--shutter-out-horiz::after {
  left: 50%;
  right: 50%;
  top: 0;
  bottom: 0; }

.u-block-hover--shutter-out-horiz:hover::after {
  left: 0;
  right: 0; }

.u-block-hover--shutter-out-vert::after {
  top: 50%;
  bottom: 50%;
  left: 0;
  right: 0; }

.u-block-hover--shutter-out-vert:hover::after {
  top: 0;
  bottom: 0; }

.u-block-hover--shutter-out-diag-1::after {
  top: 50%;
  bottom: 50%;
  left: -35%;
  right: -35%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg); }

.u-block-hover--shutter-out-diag-1:hover::after {
  top: -35%;
  bottom: -35%; }

.u-block-hover--shutter-out-diag-2::after {
  top: 50%;
  bottom: 50%;
  left: -35%;
  right: -35%;
  -webkit-transform: rotate(-45deg);
  -ms-transform: rotate(-45deg);
  transform: rotate(-45deg); }

.u-block-hover--shutter-out-diag-2:hover::after {
  top: -35%;
  bottom: -35%; }

[class*="u-block-hover--shutter-in"]::after,
[class*="u-block-hover--shutter-in"]::before {
  content: "";
  position: absolute;
  z-index: 1; }

[class*="u-block-hover--shutter-in"]::after {
  top: 0;
  left: 0; }

[class*="u-block-hover--shutter-in"]::before {
  right: 0;
  bottom: 0; }

.u-block-hover__additional--shutter-in {
  opacity: 0;
  z-index: 2; }

[class*="u-block-hover--shutter-in"]:hover .u-block-hover__additional--shutter-in {
  opacity: 1;
  transition-delay: .21s; }

.u-block-hover--shutter-in-horiz::after,
.u-block-hover--shutter-in-horiz::before {
  width: 0;
  height: 100%; }

.u-block-hover--shutter-in-horiz:hover::after,
.u-block-hover--shutter-in-horiz:hover::before {
  width: 100%; }

.u-block-hover--shutter-in-vert::after,
.u-block-hover--shutter-in-vert::before {
  height: 0;
  width: 100%; }

.u-block-hover--shutter-in-vert:hover::after,
.u-block-hover--shutter-in-vert:hover::before {
  height: 100%; }

.u-block-hover--shutter-in-diag-1::after,
.u-block-hover--shutter-in-diag-1::before {
  width: 200%;
  height: 200%;
  transition: all .6s ease; }

.u-block-hover--shutter-in-diag-1::after {
  -webkit-transform: skew(-45deg) translateX(-150%);
  -ms-transform: skew(-45deg) translateX(-150%);
  transform: skew(-45deg) translateX(-150%); }

.u-block-hover--shutter-in-diag-1::before {
  -webkit-transform: skew(-45deg) translateX(150%);
  -ms-transform: skew(-45deg) translateX(150%);
  transform: skew(-45deg) translateX(150%); }

.u-block-hover--shutter-in-diag-1:hover::after {
  -webkit-transform: skew(-45deg) translateX(-50%);
  -ms-transform: skew(-45deg) translateX(-50%);
  transform: skew(-45deg) translateX(-50%); }

.u-block-hover--shutter-in-diag-1:hover::before {
  -webkit-transform: skew(-45deg) translateX(50%);
  -ms-transform: skew(-45deg) translateX(50%);
  transform: skew(-45deg) translateX(50%); }

.u-block-hover--shutter-in-diag-2::after,
.u-block-hover--shutter-in-diag-2::before {
  width: 200%;
  height: 200%;
  transition: all .6s ease; }

.u-block-hover--shutter-in-diag-2::after {
  -webkit-transform: skew(45deg) translateX(-100%);
  -ms-transform: skew(45deg) translateX(-100%);
  transform: skew(45deg) translateX(-100%); }

.u-block-hover--shutter-in-diag-2::before {
  -webkit-transform: skew(45deg) translateX(100%);
  -ms-transform: skew(45deg) translateX(100%);
  transform: skew(45deg) translateX(100%); }

.u-block-hover--shutter-in-diag-2:hover::after {
  -webkit-transform: skew(45deg) translateX(0);
  -ms-transform: skew(45deg) translateX(0);
  transform: skew(45deg) translateX(0); }

.u-block-hover--shutter-in-diag-2:hover::before {
  -webkit-transform: skew(45deg) translateX(0);
  -ms-transform: skew(45deg) translateX(0);
  transform: skew(45deg) translateX(0); }

[class*="u-block-hover--shutter-in-out"]::after,
[class*="u-block-hover--shutter-in-out"]::before {
  content: "";
  position: absolute;
  z-index: 1; }

[class*="u-block-hover--shutter-in-out"]::after {
  top: 0;
  left: 0; }

[class*="u-block-hover--shutter-in-out"]::before {
  right: 0;
  bottom: 0; }

.u-block-hover__additional--shutter-in-out {
  opacity: 0;
  z-index: 2; }

[class*="u-block-hover--shutter-in-out"]:hover .u-block-hover__additional--shutter-in-out {
  opacity: 1;
  transition-delay: .21s; }

.u-block-hover--shutter-in-out-horiz::after,
.u-block-hover--shutter-in-out-horiz::before {
  width: 0;
  height: 100%; }

.u-block-hover--shutter-in-out-horiz:hover::after,
.u-block-hover--shutter-in-out-horiz:hover::before {
  width: 100%;
  opacity: .75; }

.u-block-hover--shutter-in-out-vert::after,
.u-block-hover--shutter-in-out-vert::before {
  height: 0;
  width: 100%; }

.u-block-hover--shutter-in-out-vert:hover::after,
.u-block-hover--shutter-in-out-vert:hover::before {
  height: 100%;
  opacity: .75; }

.u-block-hover--shutter-in-out-diag-1::after,
.u-block-hover--shutter-in-out-diag-1::before {
  width: 200%;
  height: 200%;
  transition: all .6s ease;
  opacity: .75; }

.u-block-hover--shutter-in-out-diag-1::after {
  -webkit-transform: skew(-45deg) translateX(-150%);
  -ms-transform: skew(-45deg) translateX(-150%);
  transform: skew(-45deg) translateX(-150%); }

.u-block-hover--shutter-in-out-diag-1::before {
  -webkit-transform: skew(-45deg) translateX(150%);
  -ms-transform: skew(-45deg) translateX(150%);
  transform: skew(-45deg) translateX(150%); }

.u-block-hover--shutter-in-out-diag-1:hover::after {
  -webkit-transform: skew(-45deg) translateX(-50%);
  -ms-transform: skew(-45deg) translateX(-50%);
  transform: skew(-45deg) translateX(-50%); }

.u-block-hover--shutter-in-out-diag-1:hover::before {
  -webkit-transform: skew(-45deg) translateX(50%);
  -ms-transform: skew(-45deg) translateX(50%);
  transform: skew(-45deg) translateX(50%); }

.u-block-hover--shutter-in-out-diag-2::after,
.u-block-hover--shutter-in-out-diag-2::before {
  width: 200%;
  height: 200%;
  transition: all .6s ease;
  opacity: .75; }

.u-block-hover--shutter-in-out-diag-2::after {
  -webkit-transform: skew(45deg) translateX(-100%);
  -ms-transform: skew(45deg) translateX(-100%);
  transform: skew(45deg) translateX(-100%); }

.u-block-hover--shutter-in-out-diag-2::before {
  -webkit-transform: skew(45deg) translateX(100%);
  -ms-transform: skew(45deg) translateX(100%);
  transform: skew(45deg) translateX(100%); }

.u-block-hover--shutter-in-out-diag-2:hover::after {
  -webkit-transform: skew(45deg) translateX(0);
  -ms-transform: skew(45deg) translateX(0);
  transform: skew(45deg) translateX(0); }

.u-block-hover--shutter-in-out-diag-2:hover::before {
  -webkit-transform: skew(45deg) translateX(0);
  -ms-transform: skew(45deg) translateX(0);
  transform: skew(45deg) translateX(0); }

.u-block-hover--strip-shutter::before,
.u-block-hover--strip-shutter::after,
.u-block-hover__additional--strip-shutter::before,
.u-block-hover__additional--strip-shutter::after {
  content: "";
  position: absolute;
  top: 0;
  width: 25%;
  height: 100%;
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0);
  opacity: 0; }

.u-block-hover--strip-shutter::before,
.u-block-hover--strip-shutter::after {
  z-index: 1; }

.u-block-hover--strip-shutter::before {
  left: 0;
  transition-delay: 0s; }

.u-block-hover--strip-shutter::after {
  left: 25%;
  transition-delay: .105s; }

.u-block-hover__additional--strip-shutter {
  z-index: 3; }

.u-block-hover__additional--strip-shutter::before,
.u-block-hover__additional--strip-shutter::after {
  z-index: -1; }

.u-block-hover__additional--strip-shutter::before {
  left: 50%;
  transition-delay: .21s; }

.u-block-hover__additional--strip-shutter::after {
  left: 75%;
  transition-delay: .35s; }

.u-block-hover--strip-shutter:hover::before,
.u-block-hover--strip-shutter:hover::after,
.u-block-hover--strip-shutter:hover .u-block-hover__additional--strip-shutter::before,
.u-block-hover--strip-shutter:hover .u-block-hover__additional--strip-shutter::after {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1; }

.u-block-hover__additional--strip-shutter__inner {
  opacity: 0; }

.u-block-hover--strip-shutter:hover .u-block-hover__additional--strip-shutter__inner {
  opacity: 1;
  transition-delay: .35s; }

.u-block-hover--tile::before,
.u-block-hover--tile::after,
.u-block-hover__additional--tile::before,
.u-block-hover__additional--tile::after {
  content: "";
  position: absolute;
  width: 50%;
  height: 50%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  opacity: 0; }

.u-block-hover--tile::before,
.u-block-hover--tile::after {
  z-index: 1; }

.u-block-hover--tile::before {
  top: 0;
  left: 0;
  transition-delay: 0s; }

.u-block-hover--tile::after {
  top: 0;
  left: 50%;
  transition-delay: .105s; }

.u-block-hover__additional--tile {
  z-index: 3; }

.u-block-hover__additional--tile::before,
.u-block-hover__additional--tile::after {
  z-index: -1; }

.u-block-hover__additional--tile::before {
  top: 50%;
  left: 0;
  transition-delay: .21s; }

.u-block-hover__additional--tile::after {
  top: 50%;
  left: 50%;
  transition-delay: .35s; }

.u-block-hover--tile:hover::before,
.u-block-hover--tile:hover::after,
.u-block-hover--tile:hover .u-block-hover__additional--tile::before,
.u-block-hover--tile:hover .u-block-hover__additional--tile::after {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  opacity: 1; }

.u-block-hover__additional--tile__inner {
  opacity: 0; }

.u-block-hover--tile:hover .u-block-hover__additional--tile__inner {
  opacity: 1;
  transition-delay: .35s; }

.u-block-hover--cube {
  overflow: visible;
  background-color: transparent;
  -webkit-perspective: 50em;
  perspective: 50em;
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d; }

[class*="u-block-hover__main--cube"] {
  transition-delay: .05s; }

[class*="u-block-hover__additional--cube"] {
  opacity: 0;
  transition-delay: 0s; }

.u-block-hover--cube:hover [class*="u-block-hover__main--cube"] {
  opacity: 0;
  transition-delay: 0s; }

.u-block-hover--cube:hover [class*="u-block-hover__additional--cube"] {
  opacity: 1;
  -webkit-transform: translateY(0%) rotateX(0deg);
  transform: translateY(0%) rotateX(0deg);
  transition-delay: .05s; }

.u-block-hover__additional--cube-up {
  -webkit-transform: translateY(50%) rotateX(-90deg);
  transform: translateY(50%) rotateX(-90deg); }

.u-block-hover--cube:hover .u-block-hover__main--cube-up {
  -webkit-transform: translateY(-50%) rotateX(90deg);
  transform: translateY(-50%) rotateX(90deg); }

.u-block-hover__additional--cube-down {
  -webkit-transform: translateY(-50%) rotateX(90deg);
  transform: translateY(-50%) rotateX(90deg); }

.u-block-hover--cube:hover .u-block-hover__main--cube-down {
  -webkit-transform: translateY(50%) rotateX(-90deg);
  transform: translateY(50%) rotateX(-90deg); }

.u-block-hover__additional--cube-left {
  -webkit-transform: translateX(-50%) rotateY(-90deg);
  transform: translateX(-50%) rotateY(-90deg); }

.u-block-hover--cube:hover .u-block-hover__main--cube-left {
  -webkit-transform: translateX(50%) rotateY(90deg);
  transform: translateX(50%) rotateY(90deg); }

.u-block-hover__additional--cube-right {
  -webkit-transform: translateX(50%) rotateY(90deg);
  transform: translateX(50%) rotateY(90deg); }

.u-block-hover--cube:hover .u-block-hover__main--cube-right {
  -webkit-transform: translateX(-50%) rotateY(-90deg);
  transform: translateX(-50%) rotateY(-90deg); }

.u-block-hover--border-reveal::before,
.u-block-hover--border-reveal::after,
.u-block-hover__additional--border-reveal::before,
.u-block-hover__additional--border-reveal::after {
  content: "";
  position: absolute;
  background-color: #fff;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0; }

.u-block-hover--border-reveal::before,
.u-block-hover--border-reveal::after {
  left: 5px;
  right: 5px;
  height: 4px;
  z-index: 1;
  -webkit-transform: scaleX(0);
  -ms-transform: scaleX(0);
  transform: scaleX(0); }

.u-block-hover--border-reveal::before {
  top: 5px;
  transition-delay: .28s; }

.u-block-hover--border-reveal:hover::before {
  transition-delay: 0s; }

.u-block-hover--border-reveal::after {
  bottom: 5px;
  transition-delay: 0s; }

.u-block-hover--border-reveal:hover::after {
  transition-delay: .28s; }

.u-block-hover__additional--border-reveal {
  background-color: transparent;
  z-index: 3; }

.u-block-hover__additional--border-reveal__inner {
  opacity: 0; }

.u-block-hover__additional--border-reveal::before,
.u-block-hover__additional--border-reveal::after {
  top: 5px;
  bottom: 5px;
  width: 4px;
  z-index: -1;
  -webkit-transform: scaleY(0);
  -ms-transform: scaleY(0);
  transform: scaleY(0); }

.u-block-hover__additional--border-reveal::before {
  left: 5px;
  transition-delay: .28s; }

.u-block-hover--border-reveal:hover .u-block-hover__additional--border-reveal::before {
  transition-delay: 0s; }

.u-block-hover__additional--border-reveal::after {
  right: 5px;
  transition-delay: 0s; }

.u-block-hover--border-reveal:hover .u-block-hover__additional--border-reveal::after {
  transition-delay: .28s; }

.u-block-hover--border-reveal:hover .u-block-hover__main--border-reveal {
  opacity: 0; }

.u-block-hover--border-reveal:hover::before,
.u-block-hover--border-reveal:hover::after,
.u-block-hover--border-reveal:hover .u-block-hover__additional--border-reveal::before,
.u-block-hover--border-reveal:hover .u-block-hover__additional--border-reveal::after {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1); }

.u-block-hover--border-reveal:hover .u-block-hover__additional--border-reveal__inner {
  opacity: 1;
  transition-delay: .35s; }

.u-block-hover:hover img[class*="u-block-hover__main--mover-"],
.u-block-hover:hover [class*="u-block-hover__additional--mover-"] {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0) scale3d(1, 1, 1);
  transform: translate3d(0, 0, 0) scale3d(1, 1, 1); }

img[class*="u-block-hover__main--mover-"] {
  max-width: initial;
  width: calc(100% + 60px);
  transition-duration: 0.5s;
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%; }

[class*="u-block-hover__additional--mover-"] {
  opacity: 0;
  transition-duration: 0.5s; }

img.u-block-hover__main--mover-left {
  -webkit-transform: translate3d(-60px, 0, 0);
  transform: translate3d(-60px, 0, 0); }

.u-block-hover__additional--mover-left {
  -webkit-transform: translate3d(10px, 0, 0);
  transform: translate3d(10px, 0, 0); }

img.u-block-hover__main--mover-right {
  -webkit-transform: translate3d(-60px, 0, 0);
  transform: translate3d(-60px, 0, 0); }

.u-block-hover__additional--mover-right {
  -webkit-transform: translate3d(-10px, 0, 0);
  transform: translate3d(-10px, 0, 0); }

img.u-block-hover__main--mover-up {
  -webkit-transform: translate3d(0, 20px, 0) scale3d(1.1, 1.1, 1.1);
  transform: translate3d(0, 20px, 0) scale3d(1.1, 1.1, 1.1); }

.u-block-hover__additional--mover-up {
  -webkit-transform: translate3d(0, 10px, 0);
  transform: translate3d(0, 10px, 0); }

img.u-block-hover__main--mover-down {
  -webkit-transform: translate3d(0, -20px, 0) scale3d(1.1, 1.1, 1.1);
  transform: translate3d(0, -20px, 0) scale3d(1.1, 1.1, 1.1); }

.u-block-hover__additional--mover-down {
  -webkit-transform: translate3d(0, -10px, 0);
  transform: translate3d(0, -10px, 0); }

.u-block-hover__additional--focuser-element {
  top: 30px;
  right: 30px;
  bottom: 30px;
  left: 30px;
  opacity: .3;
  box-shadow: 0 0 0 31px rgba(0, 0, 0, 0.5);
  -webkit-transform: scale3d(1.4, 1.4, 1.4);
  transform: scale3d(1.4, 1.4, 1.4);
  transition-duration: .5s; }

.u-block-hover__additional--focuser-target {
  position: static;
  opacity: 0;
  -webkit-transform: scale3d(1.4, 1.4, 1.4);
  transform: scale3d(1.4, 1.4, 1.4);
  transition-duration: .5s; }

.u-block-hover:hover .u-block-hover__additional--focuser-target,
.u-block-hover:hover .u-block-hover__additional--focuser-element {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1);
  transition-duration: .3s; }

img[class*="u-block-hover__main--magnifier"] {
  max-width: initial;
  width: calc(100% + 10px);
  margin: -10px 0; }

[class*="u-block-hover__additional--magnifier-element"] {
  width: 400px;
  height: 400px;
  border-radius: 50%;
  box-shadow: 0 0 0 4000px rgba(255, 255, 255, 0.3);
  z-index: 2;
  opacity: 0;
  -webkit-transform: scale3d(0.7, 0.7, 0.7);
  transform: scale3d(0.7, 0.7, 0.7);
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%; }

.u-block-hover:hover [class*="u-block-hover__additional--magnifier-element"] {
  opacity: 1;
  -webkit-transform: scale3d(1, 1, 1);
  transform: scale3d(1, 1, 1); }

[class*="u-block-hover__additional--magnifier-description"] {
  max-width: 115px;
  z-index: 3;
  opacity: 0; }

.u-block-hover:hover [class*="u-block-hover__additional--magnifier-description"] {
  opacity: 1;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.u-block-hover__additional--magnifier-element-bottom-right {
  top: auto;
  left: auto;
  bottom: -180px;
  right: -180px; }

.u-block-hover__additional--magnifier-description-bottom-right {
  top: auto;
  right: 30px;
  bottom: 30px;
  left: auto;
  -webkit-transform: translate3d(20px, 20px, 0);
  transform: translate3d(20px, 20px, 0); }

.u-block-hover:hover img.u-block-hover__main--magnifier-bottom-right {
  -webkit-transform: translate3d(-10px, -10px, 0);
  transform: translate3d(-10px, -10px, 0); }

.u-block-hover__additional--magnifier-element-top-right {
  top: -180px;
  right: -180px;
  bottom: auto;
  left: auto; }

.u-block-hover__additional--magnifier-description-top-right {
  top: 30px;
  right: 30px;
  bottom: auto;
  left: auto;
  -webkit-transform: translate3d(20px, -20px, 0);
  transform: translate3d(20px, -20px, 0); }

.u-block-hover:hover img.u-block-hover__main--magnifier-top-right {
  -webkit-transform: translate3d(-10px, 10px, 0);
  transform: translate3d(-10px, 10px, 0); }

img.u-block-hover__main--magnifier-bottom-left {
  -webkit-transform: translate3d(-10px, 0, 0);
  transform: translate3d(-10px, 0, 0); }

.u-block-hover__additional--magnifier-element-bottom-left {
  top: auto;
  left: -180px;
  bottom: -180px;
  right: auto; }

.u-block-hover__additional--magnifier-description-bottom-left {
  top: auto;
  right: auto;
  bottom: 30px;
  left: 30px;
  -webkit-transform: translate3d(-20px, 20px, 0);
  transform: translate3d(-20px, 20px, 0); }

.u-block-hover:hover img.u-block-hover__main--magnifier-bottom-left {
  -webkit-transform: translate3d(0, -10px, 0);
  transform: translate3d(0, -10px, 0); }

img.u-block-hover__main--magnifier-top-left {
  -webkit-transform: translate3d(-10px, 0, 0);
  transform: translate3d(-10px, 0, 0); }

.u-block-hover__additional--magnifier-element-top-left {
  top: -180px;
  left: -180px;
  bottom: auto;
  right: auto; }

.u-block-hover__additional--magnifier-description-top-left {
  top: 30px;
  right: auto;
  bottom: auto;
  left: 30px;
  -webkit-transform: translate3d(-20px, -20px, 0);
  transform: translate3d(-20px, -20px, 0); }

.u-block-hover:hover img.u-block-hover__main--magnifier-top-left {
  -webkit-transform: translate3d(0, 10px, 0);
  transform: translate3d(0, 10px, 0); }

[class*="u-block-hover__additional--pappercuter"] {
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%; }

.u-block-hover__additional--pappercuter-inner {
  width: 100%;
  -webkit-transform: rotate3d(0, 0, 1, 5deg);
  transform: rotate3d(0, 0, 1, 5deg); }

.u-block-hover__additional--pappercuter-front,
.u-block-hover__additional--pappercuter-back {
  max-width: initial;
  width: 120%;
  top: -60px;
  bottom: -60px;
  left: -10%;
  z-index: 2;
  background-position: center;
  background-size: cover;
  -webkit-transform: rotate3d(0, 0, 1, -5deg);
  transform: rotate3d(0, 0, 1, -5deg); }

.u-block-hover__additional--pappercuter-front {
  clip: rect(0px, auto, 246px, 0px); }

.u-block-hover__additional--pappercuter-back {
  top: -61px;
  clip: rect(246px, auto, auto, 0px); }

.u-block-hover:hover .u-block-hover__additional--pappercuter-front {
  -webkit-transform: scale3d(1.3, 1.3, 1.3) rotate3d(0, 0, 1, -10deg) translate3d(0, -45%, 0);
  transform: scale3d(1.3, 1.3, 1.3) rotate3d(0, 0, 1, -10deg) translate3d(0, -45%, 0); }

.u-block-hover:hover .u-block-hover__additional--pappercuter-back {
  -webkit-transform: scale3d(1.3, 1.3, 1.3) rotate3d(0, 0, 1, -10deg) translate3d(0, 45%, 0);
  transform: scale3d(1.3, 1.3, 1.3) rotate3d(0, 0, 1, -10deg) translate3d(0, 45%, 0); }

[class*="u-block-hover__additional--outside"] {
  opacity: 0;
  visibility: hidden;
  transition-duration: .5s;
  transition-timing-function: cubic-bezier(0.7, -1.2, 0.8, 1.2); }

.u-block-hover:hover [class*="u-block-hover__additional--outside"] {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  transition-timing-function: cubic-bezier(0.25, 1.8, 0.8, 1); }

.u-block-hover__additional--outside-down {
  -webkit-transform: translate3d(0, -100%, 0);
  transform: translate3d(0, -100%, 0); }

.u-block-hover__additional--outside-up {
  -webkit-transform: translate3d(0, 100%, 0);
  transform: translate3d(0, 100%, 0); }

.u-block-hover__additional--outside-left {
  -webkit-transform: translate3d(100%, 0, 0);
  transform: translate3d(100%, 0, 0); }

.u-block-hover__additional--outside-right {
  -webkit-transform: translate3d(-100%, 0, 0);
  transform: translate3d(-100%, 0, 0); }

[class*="u-block-hover__additional--lightspeed"] {
  visibility: hidden;
  opacity: 0;
  transition-duration: .7s;
  transition-timing-function: cubic-bezier(0.75, -1.2, 0.8, 2); }

.u-block-hover:hover [class*="u-block-hover__additional--lightspeed"] {
  opacity: 1;
  visibility: visible;
  -webkit-transform: translate3d(0, 0, 0) skew(0deg, 0deg);
  transform: translate3d(0, 0, 0) skew(0deg, 0deg);
  transition-timing-function: cubic-bezier(0.25, 2, 0.75, 1); }

.u-block-hover__additional--lightspeed-left {
  -webkit-transform-origin: 50% 0%;
  -ms-transform-origin: 50% 0%;
  transform-origin: 50% 0%;
  -webkit-transform: translate3d(150%, 0, 0) skew(-35deg, 0deg);
  transform: translate3d(150%, 0, 0) skew(-35deg, 0deg); }

.u-block-hover__additional--lightspeed-right {
  -webkit-transform-origin: 50% 100%;
  -ms-transform-origin: 50% 100%;
  transform-origin: 50% 100%;
  -webkit-transform: translate3d(-150%, 0, 0) skew(35deg, 0deg);
  transform: translate3d(-150%, 0, 0) skew(35deg, 0deg); }

.u-block-hover__additional--lightspeed-down {
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  -webkit-transform: translate3d(0, -150%, 0) skew(0deg, -35deg);
  transform: translate3d(0, -150%, 0) skew(0deg, -35deg); }

.u-block-hover__additional--lightspeed-up {
  -webkit-transform-origin: 100% 50%;
  -ms-transform-origin: 100% 50%;
  transform-origin: 100% 50%;
  -webkit-transform: translate3d(0, 150%, 0) skew(0deg, -35deg);
  transform: translate3d(0, 150%, 0) skew(0deg, -35deg); }

[class*="u-block-hover__additional--rotate"] {
  opacity: 0;
  visibility: hidden; }

.u-block-hover:hover [class*="u-block-hover__additional--rotate"] {
  opacity: 1;
  visibility: visible;
  -webkit-transform: rotate3d(0, 0, 0, 0deg) scale3d(1, 1, 1);
  transform: rotate3d(0, 0, 0, 0deg) scale3d(1, 1, 1); }

.u-block-hover__additional--rotate-in {
  opacity: 1;
  transition-property: opacity, visibility, -webkit-transform;
  transition-property: transform, opacity, visibility;
  transition-property: transform, opacity, visibility, -webkit-transform;
  transition-duration: .4s;
  -webkit-transform: rotate3d(0, 0, 1, 720deg) scale3d(0, 0, 0);
  transform: rotate3d(0, 0, 1, 720deg) scale3d(0, 0, 0); }

.u-block-hover__additional--rotate-down-left {
  -webkit-transform-origin: 0 100%;
  -ms-transform-origin: 0 100%;
  transform-origin: 0 100%;
  -webkit-transform: rotate3d(0, 0, 1, -45deg);
  transform: rotate3d(0, 0, 1, -45deg); }

.u-block-hover__additional--rotate-down-right {
  -webkit-transform-origin: 100% 100%;
  -ms-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
  -webkit-transform: rotate3d(0, 0, 1, 45deg);
  transform: rotate3d(0, 0, 1, 45deg); }

.u-block-hover__additional--rotate-up-left {
  -webkit-transform-origin: 0 100%;
  -ms-transform-origin: 0 100%;
  transform-origin: 0 100%;
  -webkit-transform: rotate3d(0, 0, 1, 45deg);
  transform: rotate3d(0, 0, 1, 45deg); }

.u-block-hover__additional--rotate-up-right {
  -webkit-transform-origin: 100% 100%;
  -ms-transform-origin: 100% 100%;
  transform-origin: 100% 100%;
  -webkit-transform: rotate3d(0, 0, 1, -45deg);
  transform: rotate3d(0, 0, 1, -45deg); }

.u-block-hover__additional--jump {
  position: static; }

.u-block-hover:hover .u-block-hover__additional--jump,
.u-block-hover.u-block-hover__additional--jump:hover {
  -webkit-transform: translate3d(0, -10px, 0);
  transform: translate3d(0, -10px, 0); }

/*------------------------------------
  Dedicated Properties
------------------------------------*/
.u-block-hover:hover, .u-block-hover:focus {
  /* Opacity */
  /* Colors */
  /* Background-colors */ }

.u-block-hover:hover .u-block-hover__prop-opacity-1, .u-block-hover:focus .u-block-hover__prop-opacity-1 {
  opacity: 1; }

.u-block-hover:hover .u-block-hover__prop-color-white, .u-block-hover:focus .u-block-hover__prop-color-white {
  color: #fff; }

.u-block-hover:hover .u-block-hover__prop-bg-primary, .u-block-hover:focus .u-block-hover__prop-bg-primary {
  background-color: #72c02c; }

.u-block-hover:hover .u-block-hover__prop-bg-primary-opacity-0_9, .u-block-hover:focus .u-block-hover__prop-bg-primary-opacity-0_9 {
  background-color: rgba(114, 192, 44, 0.9); }

/*------------------------------------
  Blockquotes
------------------------------------*/
.u-blockquote-v1 {
  position: relative;
  background-color: #fff;
  box-shadow: 5px 6px 9px -6px rgba(0, 0, 0, 0.15); }

.u-blockquote-v1::before {
  content: "\201C";
  position: absolute;
  width: 60px;
  color: #72c02c;
  font-size: 60px;
  margin: -25px 0 0 -40px; }

.u-blockquote-v1::after {
  content: "";
  position: absolute;
  bottom: -30px;
  left: 80px;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 30px 30px 0 0;
  border-color: #fff transparent transparent transparent;
  -webkit-filter: drop-shadow(2px 2px 1px rgba(0, 0, 0, 0.1));
  filter: drop-shadow(2px 2px 1px rgba(0, 0, 0, 0.1)); }

.u-blockquote-v2::before, .u-blockquote-v2::after {
  position: relative;
  top: 5px;
  font-size: 22px;
  line-height: 10px; }

.u-blockquote-v2::before {
  content: "\“";
  padding-right: 5px; }

.u-blockquote-v2::after {
  content: "\”";
  padding-left: 5px; }

.u-blockquote-v3 {
  position: relative; }

.u-blockquote-v3::before {
  content: "\201C";
  position: absolute;
  font-size: 60px;
  color: #72c02c;
  margin: -30px 0 0 -40px; }

.u-blockquote-v4::before, .u-blockquote-v4::after {
  content: "\201C";
  position: absolute;
  font-size: 50px;
  margin-top: -12px; }

.u-blockquote-v4::before {
  margin-left: -30px; }

.u-blockquote-v4::after {
  margin-left: 13px; }

.u-blockquote-v5::before {
  content: "\201C";
  position: absolute;
  width: 60px;
  color: rgba(255, 255, 255, 0.2);
  font-size: 70px;
  margin: -25px 0 0 -40px; }

.u-blockquote-v6::before, .u-blockquote-v6::after {
  content: "\0022";
  font-family: inherit;
  color: inherit; }

.u-blockquote-v7 {
  position: relative;
  padding-top: 55px; }

.u-blockquote-v7::before {
  content: "\f10d";
  position: absolute;
  top: 0;
  left: 50%;
  display: block;
  width: 35px;
  height: 35px;
  font-size: 12px;
  font-family: "FontAwesome";
  color: #fff;
  line-height: 35px;
  background: #72c02c;
  border-radius: 50%;
  margin-left: -18px; }

.u-blockquote-v8 {
  position: relative;
  background-color: #fff;
  box-shadow: 5px 6px 9px -6px rgba(85, 85, 85, 0.08); }

.u-blockquote-v8::after {
  content: "";
  position: absolute;
  left: 50px;
  bottom: -15px;
  display: block;
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 15px 15px 0 0;
  border-color: #fff transparent transparent transparent;
  -webkit-filter: drop-shadow(2px 2px 1px rgba(0, 0, 0, 0.05));
  filter: drop-shadow(2px 2px 1px rgba(0, 0, 0, 0.05)); }

/*------------------------------------
  Accordions
------------------------------------*/
.u-accordion__header {
  padding: 0.71429rem 1.07143rem; }

.u-accordion__body {
  padding: 1.07143rem; }

.u-accordion__control-icon i:nth-child(1) {
  display: none; }

.collapsed .u-accordion__control-icon i:nth-child(1) {
  display: inline; }

.u-accordion__control-icon i:nth-child(2) {
  display: inline; }

.collapsed .u-accordion__control-icon i:nth-child(2) {
  display: none; }

.u-accordion [class*="et-icon-"], .u-accordion-line-icon-pro {
  position: relative;
  top: 3px; }

.u-accordion-color-primary .u-accordion__header [aria-expanded="true"] {
  color: #72c02c !important; }

.u-accordion-color-white .u-accordion__header [aria-expanded="true"] {
  color: #fff !important; }

.u-accordion-bg-primary .u-accordion__header [aria-expanded="true"] {
  background-color: #72c02c !important;
  border-color: #72c02c !important; }

.u-accordion-bg-white .u-accordion__header [aria-expanded="true"] {
  background-color: #fff !important;
  border-color: #fff !important; }

.u-accordion-brd-primary .u-accordion__header [aria-expanded="true"] {
  border-color: #72c02c !important; }

.u-accordion-brd-white .u-accordion__header [aria-expanded="true"] {
  border-color: #fff !important; }

/*------------------------------------
  Carousels
------------------------------------*/
.u-carousel-v1 .js-prev,
.u-carousel-v1 .js-next {
  opacity: 0;
  transition-property: opacity;
  transition-duration: .2s;
  transition-timing-function: ease-in; }

.u-carousel-v1:hover .js-prev,
.u-carousel-v1:hover .js-next {
  opacity: 1; }

.u-carousel-v2 .slick-slide {
  padding-top: 4px;
  padding-bottom: 4px;
  opacity: .5;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  transition-property: all;
  transition-duration: .4s;
  transition-timing-function: ease-in; }

.u-carousel-v2 .slick-center {
  padding-top: 0;
  padding-bottom: 0;
  opacity: 1;
  -webkit-transform: scale(1.1);
  -ms-transform: scale(1.1);
  transform: scale(1.1); }

.u-carousel-v3 .slick-slide {
  opacity: .5;
  transition-property: opacity;
  transition-duration: .4s;
  transition-timing-function: ease-in; }

.u-carousel-v3 .slick-center {
  opacity: 1; }

.u-carousel-v4 .js-pagination {
  opacity: 0;
  transition-property: opacity;
  transition-duration: .2s;
  transition-timing-function: ease-in; }

.u-carousel-v4:hover .js-pagination {
  opacity: 1; }

.u-carousel-v5 .slick-list {
  height: 100%; }

.u-carousel-v5 .slick-track {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: 100%; }

.u-carousel-v5 .slick-track .slick-slide {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  height: auto; }

.u-carousel-v6 .slick-list.draggable {
  border-top-left-radius: 10px;
  border-bottom-left-radius: 10px; }

.u-carousel-v11 .slick-slide {
  opacity: .5; }

.u-carousel-v11 .slick-slide.slick-current {
  opacity: 1; }

/*------------------------------------
  Slick Carousel v12
------------------------------------*/
.u-carousel-v12 .slick-current .g-opacity-1--active {
  opacity: 1 !important; }

.u-carousel-v12 .slick-current .u-block-hover__main--grayscale {
  filter: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg'><filter id='grayscale'><feColorMatrix type='matrix' values='1 0 0 0 0, 0 1 0 0 0, 0 0 1 0 0, 0 0 0 1 0'/></filter></svg>#grayscale");
  -webkit-filter: grayscale(0%); }

.owl-carousel .owl-wrapper,
.owl-carousel .owl-item,
.swiper-wrapper,
.swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.single-slide {
  opacity: 0 !important; }

.single-slide.set-position {
  opacity: 1 !important; }

.js-origin {
  -webkit-perspective: 1200px;
  perspective: 1200px;
  -webkit-perspective-origin: 50% 50%;
  perspective-origin: 50% 50%; }

/* backSlide */
.js-back-slide-out {
  -webkit-animation: backSlideOut 1s both ease;
  animation: backSlideOut 1s both ease; }

.js-back-slide-in {
  -webkit-animation: backSlideIn 1s both ease;
  animation: backSlideIn 1s both ease; }

.swiper-carousel {
  overflow: hidden; }

@-webkit-keyframes backSlideOut {
  25% {
    opacity: .5;
    -webkit-transform: translateZ(-400px); }
  75% {
    opacity: .5;
    -webkit-transform: translateZ(-400px) translateX(-200%); }
  100% {
    opacity: .5;
    -webkit-transform: translateZ(-400px) translateX(-200%); } }
@keyframes backSlideOut {
  25% {
    opacity: .5;
    -webkit-transform: translateZ(-400px);
    transform: translateZ(-400px); }
  75% {
    opacity: .5;
    -webkit-transform: translateZ(-400px) translateX(-200%);
    transform: translateZ(-400px) translateX(-200%); }
  100% {
    opacity: .5;
    -webkit-transform: translateZ(-400px) translateX(-200%);
    transform: translateZ(-400px) translateX(-200%); } }
@-webkit-keyframes backSlideIn {
  0%, 25% {
    opacity: .5;
    -webkit-transform: translateZ(-400px) translateX(200%); }
  75% {
    opacity: .5;
    -webkit-transform: translateZ(-400px); }
  100% {
    opacity: 1;
    -webkit-transform: translateZ(0) translateX(0); } }
@keyframes backSlideIn {
  0%, 25% {
    opacity: .5;
    -webkit-transform: translateZ(-400px) translateX(200%);
    transform: translateZ(-400px) translateX(200%); }
  75% {
    opacity: .5;
    -webkit-transform: translateZ(-400px);
    transform: translateZ(-400px); }
  100% {
    opacity: 1;
    -webkit-transform: translateZ(0) translateX(0);
    transform: translateZ(0) translateX(0); } }
/*--------------------------------------------------
  Chart Pie v1
----------------------------------------------------*/
.u-chart-pie-v1 {
  position: relative;
  line-height: 1em; }

.u-chart-pie-v1::after {
  content: "";
  display: block;
  position: absolute;
  top: 9px;
  right: 10px;
  bottom: 11px;
  left: 10px;
  border-radius: 50%;
  border-width: 1px;
  border-style: solid;
  border-color: inherit; }

/*------------------------------------
  Charts
------------------------------------*/
/* Sparkline chart's tooltip */
.jqstooltip {
  width: auto !important;
  height: auto !important; }

/*--------------------------------------------------
  Counter v1
----------------------------------------------------*/
.u-counter-v3 {
  position: relative; }

.u-counter-v3::after {
  content: "";
  position: absolute;
  left: -9px;
  right: -9px;
  bottom: -9px;
  top: -9px;
  display: block;
  border-radius: inherit;
  border-width: 1px;
  border-style: solid;
  border-color: inherit; }

/*--------------------------------------------------
  Counter v6
----------------------------------------------------*/
.u-counter-v6 {
  position: relative;
  width: 120px;
  height: 120px; }

.u-counter-v6::after {
  content: "";
  position: absolute;
  top: -11px;
  right: -11px;
  bottom: -11px;
  left: -11px;
  display: block;
  border-radius: inherit;
  border-width: 2px;
  border-style: inherit;
  border-color: inherit;
  clip: rect(auto, 71px, 142px, auto); }

/*------------------------------------
  Credit cards
------------------------------------*/
.u-card--v1 {
  position: relative; }

.u-card--v1-front {
  position: relative;
  margin-bottom: 220px;
  z-index: 2; }

.u-card--v1-back {
  position: absolute;
  bottom: -70%;
  right: 0;
  z-index: 1;
  width: 100%;
  height: 80%;
  padding-left: 0; }

@media (min-width: 768px) {
  .u-card--v1-front {
    margin-bottom: 30px; }

  .u-card--v1-back {
    bottom: auto;
    top: 30px;
    right: -30%;
    height: 100%;
    padding-left: 70%; } }
/*------------------------------------
  Dropdowns v1
------------------------------------*/
.u-dropdown-v1 {
  position: relative;
  line-height: normal;
  font-size: 16px;
  color: #777;
  background-color: #fff;
  border-width: 1px;
  border-style: solid;
  border-color: #ccc;
  padding: 11px 40px 11px 14px;
  transition-property: background-color, border-color, box-shadow;
  transition-duration: .2s;
  transition-timing-function: ease; }

.u-dropdown-v1::after {
  display: none; }

.u-dropdown-v1-menu {
  padding: 0;
  border-color: #ccc;
  border-radius: 3px;
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2); }

.u-dropdown-v1-menu__item {
  line-height: normal;
  font-size: 16px;
  color: #777;
  padding: 9px 20px; }

.u-dropdown-v1-menu__item:hover {
  color: #777; }

.u-dropdown-v1__icon {
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  width: 40px;
  height: 100%; }

.u-dropdown-v1__icon-open, .u-dropdown-v1__icon-close {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%); }

.u-dropdown-v1__icon-open {
  opacity: 1; }

.u-dropdown-v1__icon-close {
  opacity: 0; }

.u-dropdown-v1[aria-expanded="true"] {
  background-color: rgba(204, 204, 204, 0.1);
  box-shadow: 0 2px 8px 0 rgba(0, 0, 0, 0.2); }

.u-dropdown-v1[aria-expanded="true"] [class*="__icon-open"] {
  opacity: 0; }

.u-dropdown-v1[aria-expanded="true"] [class*="__icon-close"] {
  opacity: 1; }

.u-dropdown-v1:focus {
  outline: 0 none; }

/*------------------------------------
  Covers
------------------------------------*/
.u-bg-overlay {
  position: relative; }

.u-bg-overlay::before, .u-bg-overlay::after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0; }

.u-bg-overlay--v1::after {
  position: absolute;
  top: 0.35714rem;
  right: 0.35714rem;
  bottom: 0.35714rem;
  left: 0.35714rem; }

.u-bg-overlay__inner {
  z-index: 3;
  position: relative; }

.u-bg-overlay--reverse::before {
  z-index: 2; }

.u-bg-overlay--reverse::after {
  z-index: 1; }

/*------------------------------------
  Material: Waves
------------------------------------*/
.u-waves-effect {
  position: relative;
  overflow: hidden;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -webkit-tap-highlight-color: transparent;
  z-index: 1;
  transition: .3s ease-out; }

.u-waves-effect .u-waves-ripple {
  position: absolute;
  border-radius: 50%;
  width: 1.42857rem;
  height: 1.42857rem;
  margin-top: -0.71429rem;
  margin-left: -0.71429rem;
  opacity: 0;
  background: rgba(0, 0, 0, 0.2);
  transition: all .7s ease-out;
  transition-property: opacity, -webkit-transform;
  transition-property: transform, opacity;
  transition-property: transform, opacity, -webkit-transform;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  pointer-events: none; }

.u-waves-effect.u-waves-light .u-waves-ripple {
  background-color: rgba(255, 255, 255, 0.45); }

.u-waves-effect.u-waves-dark .u-waves-ripple {
  background-color: rgba(0, 0, 0, 0.15); }

.u-waves-effect input[type="button"], .u-waves-effect input[type="reset"], .u-waves-effect input[type="submit"] {
  border: 0;
  font-style: normal;
  font-size: inherit;
  text-transform: inherit;
  background: none; }

.u-waves-effect img {
  position: relative;
  z-index: -1; }

.u-waves-notransition {
  transition: none !important; }

.u-waves-circle {
  -webkit-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-mask-image: -webkit-radial-gradient(circle, white 100%, black 100%); }

.u-waves-input-wrapper {
  border-radius: .2em;
  vertical-align: bottom; }

.u-waves-input-wrapper .u-waves-button-input {
  position: relative;
  top: 0;
  left: 0;
  z-index: 1; }

.u-waves-circle {
  text-align: center;
  width: 2.5em;
  height: 2.5em;
  line-height: 2.5em;
  border-radius: 50%;
  -webkit-mask-image: none; }

.u-waves-block {
  display: block; }

/* Firefox Bug: link not triggered */
.u-waves-effect .u-waves-ripple {
  z-index: -1; }

/*------------------------------------
  Material: FAB
------------------------------------*/
.u-fixed-action-btn {
  position: absolute;
  right: 0;
  bottom: 0;
  z-index: 997; }

.u-fixed-action-btn ul {
  left: 0;
  right: 0;
  text-align: center;
  position: absolute;
  bottom: 60px;
  margin: 0;
  visibility: hidden;
  list-style-type: none;
  padding-left: 0; }

.u-fixed-action-btn ul li {
  margin-bottom: 1.07143rem; }

.u-fixed-action-btn ul a.u-btn-floating {
  opacity: 0; }

.u-fixed-action-btn.active ul {
  visibility: visible; }

.u-fixed-action-btn-horizontal {
  padding: 0 0 0 1.07143rem; }

.u-fixed-action-btn-horizontal ul {
  text-align: right;
  right: 4.57143rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  height: 100%;
  left: auto;
  width: 500px;
  /*width 100% only goes to width of button container */ }

.u-fixed-action-btn-horizontal ul li {
  display: inline-block;
  margin: 0.71429rem 1.07143rem 0 0; }

.u-fixed-action-btn-toolbar {
  padding: 0;
  height: 4rem; }

.u-fixed-action-btn-toolbar.active > a i {
  opacity: 0; }

.u-fixed-action-btn-toolbar ul {
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  top: 0;
  bottom: 0;
  z-index: 1; }

.u-fixed-action-btn-toolbar ul li {
  -webkit-box-flex: 1;
  -webkit-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: inline-block;
  margin: 0;
  height: 100%;
  transition: none; }

.u-fixed-action-btn-toolbar ul li a {
  display: block;
  overflow: hidden;
  position: relative;
  width: 100%;
  height: 100%;
  background-color: transparent;
  box-shadow: none;
  color: #fff;
  line-height: 4rem;
  z-index: 1; }

.u-fixed-action-btn-toolbar ul li a i {
  line-height: inherit; }

.u-fixed-action-btn .u-fab-backdrop {
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  width: 2.85714rem;
  height: 2.85714rem;
  border-radius: 50%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0); }

/*------------------------------------
  Chips
------------------------------------*/
.u-chip {
  display: inline-block;
  height: 2.28571rem;
  margin: 0.14286rem 0;
  padding: 0 0.85714rem;
  font-size: 0;
  white-space: nowrap;
  line-height: 2.28571rem;
  color: rgba(0, 0, 0, 0.87);
  border-radius: 1.14286rem;
  background-color: #eee; }

.u-chip:focus {
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.2), 0 1px 5px 0 rgba(0, 0, 0, 0.12); }

.u-chip--deletable {
  padding-right: 0.28571rem; }

.u-chip--contact {
  padding-left: 0; }

.u-chip__contact {
  display: inline-block;
  width: 2.28571rem;
  height: 2.28571rem;
  margin-right: 0.57143rem;
  overflow: hidden;
  vertical-align: middle;
  border-radius: 1.14286rem;
  text-align: center;
  font-size: 1.28571rem;
  line-height: 2.28571rem; }

.u-chip__text {
  display: inline-block;
  vertical-align: middle;
  font-size: 0.92857rem; }

.u-chip__action {
  display: inline-block;
  width: 1.71429rem;
  height: 1.71429rem;
  margin: 0 0 0 0.28571rem;
  padding: 0;
  text-align: center;
  vertical-align: middle;
  border: none;
  font-size: 0.92857rem;
  text-decoration: none;
  color: rgba(0, 0, 0, 0.3);
  background: transparent;
  opacity: .54;
  cursor: pointer;
  outline: none;
  overflow: hidden; }

.u-outer-spaces-helper {
  position: fixed;
  bottom: 0;
  left: 0;
  display: none;
  width: 100%;
  overflow: hidden; }

.u-outer-spaces-helper::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  display: block;
  width: 100%;
  height: 100vh;
  background-color: #f7f7f7;
  background-position: center;
  background-repeat: repeat; }

.g-dark-theme .u-outer-spaces-helper::after {
  background-color: #000; }

[class*="g-bgi-v"] .u-outer-spaces-helper::after {
  background-color: transparent; }

.u-outer-space-v1 .u-outer-spaces-helper,
.u-outer-space-v2 .u-outer-spaces-helper {
  display: block; }

.u-outer-space-v1 .u-outer-spaces-helper {
  height: 20px; }

.u-outer-space-v2 .u-outer-spaces-helper {
  height: 40px; }

/*------------------------------------
  Info Block v1-1
------------------------------------*/
.u-info-v1-1 {
  overflow: hidden;
  position: relative; }

.u-info-v1-1::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 40px; }

/*--------------------------------------------------
  Info Block v1-2
----------------------------------------------------*/
.u-info-v1-2__item {
  position: relative;
  z-index: 1;
  padding-bottom: 0.78571rem; }

.u-info-v1-2__item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 40px;
  height: 1px;
  background: #bbb;
  transition: all 0.4s ease-in-out; }

.u-info-v1-2:hover .u-info-v1-2__item::after {
  width: 100%;
  background: #72c02c; }

/*------------------------------------
  Info Block v1-3
------------------------------------*/
.u-info-v1-3__item {
  position: relative;
  z-index: 1;
  padding-bottom: 0.92857rem; }

.u-info-v1-3__item::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 2.14286rem;
  height: 1px;
  margin-left: -1.07143rem;
  background: #777; }

/*------------------------------------
  Info Block v1-4
------------------------------------*/
.u-info-v1-4__item-hidden {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 61px;
  overflow: hidden;
  -webkit-transform: translate3d(0, 61px, 0);
  transform: translate3d(0, 61px, 0); }

.u-info-v1-4:hover .u-info-v1-4__item-hidden {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.u-info-v1-4:hover .u-info-v1-4__item-regular {
  -webkit-transform: translate3d(0, -61px, 0);
  transform: translate3d(0, -61px, 0); }

/*------------------------------------
  Info Block v1-5
------------------------------------*/
.u-info-v1-5__item {
  position: relative;
  padding-bottom: 19px; }

.u-info-v1-5__item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 1px;
  display: block;
  width: 28px;
  border-bottom: 1px solid #72c02c; }

/*------------------------------------
  Info Block v2-1
------------------------------------*/
.u-info-v2-1__item {
  height: 65px;
  transition: .3s ease-out; }

.u-info-v2-1__item:hover {
  height: 80px;
  margin-top: -15px; }

/*------------------------------------
  Info Block v2-2
------------------------------------*/
.u-info-v2-2__item {
  position: relative;
  border-left: solid 1px;
  border-right: solid 1px;
  border-bottom: solid 1px; }

.u-info-v2-2__item::after, .u-info-v2-2__item::before {
  content: "";
  position: absolute;
  top: 0;
  width: 30%;
  border-top: solid 1px;
  z-index: 1; }

.u-info-v2-2__item::before {
  left: 0; }

.u-info-v2-2__item::after {
  right: 0; }

.u-info-v2-2__item.g-brd-white-dark-v3 {
  border-color: rgba(255, 255, 255, 0.3); }

.u-info-v2-2__item.g-brd-white-dark-v3::before, .u-info-v2-2__item.g-brd-white-dark-v3::after {
  border-color: rgba(255, 255, 255, 0.3); }

.u-info-v2-2__item.g-brd-black-dark-v3 {
  border-color: rgba(0, 0, 0, 0.3); }

.u-info-v2-2__item.g-brd-black-dark-v3::before, .u-info-v2-2__item.g-brd-black-dark-v3::after {
  border-color: rgba(0, 0, 0, 0.3); }

/*------------------------------------
  Info Block v2-3
------------------------------------*/
.u-info-v2-3:hover .u-info-v2-3__title {
  color: #000; }

/*------------------------------------
  Info Block v3-1
------------------------------------*/
/* Title */
.info-v3-1__title {
  position: relative;
  display: inline-block;
  margin-left: 4.28571rem;
  margin-right: 4.28571rem; }

.info-v3-1__title::before, .info-v3-1__title::after {
  content: "";
  position: absolute;
  top: 50%;
  display: block;
  width: 3.57143rem;
  margin-top: -1px;
  height: 2px;
  background-color: #fff; }

.info-v3-1__title::before {
  right: 100%;
  margin-right: 10px; }

.info-v3-1__title::after {
  left: 100%;
  margin-left: 10px; }

/*------------------------------------
  Info Block v3-2
------------------------------------*/
.info-v3-2 {
  position: relative;
  background-position: center; }

.info-v3-2::before {
  content: "";
  position: absolute;
  top: 1.42857rem;
  right: 1.42857rem;
  bottom: 1.42857rem;
  left: 1.42857rem;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.2);
  z-index: 1; }

.info-v3-2:hover {
  background-position: center 0; }

/*------------------------------------
  Info Block v3-3
------------------------------------*/
.info-v3-3 {
  overflow: hidden; }

.info-v3-3:hover .info-v3-3__title {
  color: #fff; }

.info-v3-3:hover .info-v3-3__img,
.info-v3-3:hover .info-v3-3__description {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0); }

.info-v3-3:hover .info-v3-3__content {
  display: block; }

.info-v3-3:hover .info-v3-3__category {
  display: none; }

.info-v3-3:hover::after {
  opacity: 1; }

.info-v3-3::after {
  opacity: 0;
  transition: opacity .5s; }

/* Image */
.info-v3-3__img {
  -webkit-transform: translate3d(70%, 0, 0);
  transform: translate3d(70%, 0, 0);
  transition: -webkit-transform .5s;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s; }

/* Content */
.info-v3-3__content {
  display: none; }

/* Description */
.info-v3-3__description {
  -webkit-transform: translate3d(-20%, 0, 0);
  transform: translate3d(-20%, 0, 0);
  transition: -webkit-transform .5s;
  transition: transform .5s;
  transition: transform .5s, -webkit-transform .5s; }

/*------------------------------------
  Info Block v3-4
------------------------------------*/
.info-v3-4 {
  position: relative; }

.info-v3-4::before {
  content: "";
  position: absolute;
  top: 0.71429rem;
  right: 0.71429rem;
  bottom: 0.71429rem;
  left: 0.71429rem;
  display: block;
  border: 1px solid rgba(255, 255, 255, 0.4);
  z-index: 1; }

/*------------------------------------
  Info Block v5-1
------------------------------------*/
/* Title */
.info-v5-1__title {
  position: relative;
  display: inline-block; }

.info-v5-1__title::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 100%;
  display: block;
  width: 3000%;
  margin-left: 15px;
  border-bottom: 1px solid #eee; }

/*------------------------------------
  Info Block v5-2
------------------------------------*/
/* Product Image */
.info-v5-2__image {
  width: calc(100% + 1px); }

/*------------------------------------
  Info Block v5-3
------------------------------------*/
.info-v5-3__info-price {
  opacity: 0; }

.info-v5-3__info-title {
  position: absolute;
  left: 0;
  bottom: 100%;
  width: 100%;
  margin-bottom: 4.64286rem;
  -webkit-transform: translate3d(0, 70px, 0);
  transform: translate3d(0, 70px, 0); }

.info-v5-3:hover .info-v5-3__info {
  color: rgba(255, 255, 255, 0.8);
  background-color: rgba(114, 192, 44, 0.9); }

.info-v5-3:hover .info-v5-3__info-price {
  opacity: 1; }

.info-v5-3:hover .info-v5-3__info-list {
  color: #fff; }

.info-v5-3:hover .info-v5-3__info-list .fa {
  color: #fff; }

.info-v5-3:hover .info-v5-3__info-title {
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  margin-bottom: 3.21429rem; }

/*------------------------------------
  Info Block v5-4
------------------------------------*/
/* Actions */
.info-v5-4__action .fa {
  opacity: 0.75; }

.info-v5-4__action:hover .fa {
  opacity: 1; }

/*------------------------------------
  Info Block v5-5
------------------------------------*/
.info-v5-5__header::after,
.info-v5-5__content::after {
  transition: inherit; }

.info-v5-5__content::after {
  opacity: 0; }

.info-v5-5:hover .info-v5-5__header::after,
.info-v5-5:hover .info-v5-5__content::after {
  opacity: .8; }

/*------------------------------------
  Info Block v5-6
------------------------------------*/
.info-v5-6:hover .info-v5-6__rating {
  color: #333; }

.info-v5-6:hover .info-v5-6__price {
  background-color: #333; }

.info-v5-6 .g-color-gray-light-v5--hover .g-rating,
.info-v5-6 .g-bg-white--hover,
.info-v5-6 .g-color-primary--hover {
  transition-property: all;
  transition-timing-function: ease;
  transition-delay: 0s;
  transition-duration: .3s; }

.info-v5-6:hover .g-color-gray-light-v5--hover .g-rating {
  color: #f7f7f7; }

.info-v5-6:hover .g-bg-white--hover {
  background: #fff; }

.info-v5-6:hover .g-color-primary--hover {
  color: #72c02c; }

/*--------------------------------------------------
  Info Block v6-1
----------------------------------------------------*/
.u-info-v6-1__item {
  position: relative;
  z-index: 1;
  padding-bottom: 0.78571rem; }

.u-info-v6-1__item::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  display: block;
  width: 40px;
  height: 1px;
  background-image: linear-gradient(to right, #72c02c 0%, transparent 100%);
  background-repeat: repeat-x;
  transition: all 0.4s ease-in-out; }

.u-info-v6-1:hover .u-info-v6-1__item::after {
  width: 100%;
  background-image: linear-gradient(to right, #72c02c 0%, transparent 100%);
  background-repeat: repeat-x; }

/*--------------------------------------------------
  Info Block v7-1
----------------------------------------------------*/
.u-info-v7-1__item {
  border: 2px solid transparent;
  transition: all .2s ease-in-out; }

.u-info-v7-1__item-child-v1 {
  border: 5px solid transparent;
  transition: all .2s ease-in-out; }

.u-info-v7-1__item-child-v2 {
  transition: all .2s ease-in-out; }

.u-info-v7-1:hover {
  border-color: #eee; }

.u-info-v7-1:hover .u-info-v7-1__item {
  border-color: #ddd; }

.u-info-v7-1:hover .u-info-v7-1__item-child-v1 {
  border-color: #ddd; }

.u-info-v7-1:hover .u-info-v7-1__item-child-v2 {
  color: #fff;
  background: #72c02c; }

/*--------------------------------------------------
  Info Block v8-1
----------------------------------------------------*/
.u-hs-filter {
  padding: 20px;
  margin-bottom: 0; }

.u-hs-filter a {
  padding: 0.5rem 1.07143rem;
  color: rgba(255, 255, 255, 0.8);
  border: solid 1px rgba(255, 255, 255, 0.2);
  text-transform: uppercase;
  border-radius: 3px;
  transition: all .3s; }

.u-hs-filter a:hover, .u-hs-filter a:focus {
  text-decoration: none; }

.u-hs-filter a:hover {
  color: #585f69;
  background-color: white; }

.u-hs-filter .active a {
  color: #585f69;
  background-color: white; }

/*--------------------------------------------------
  Info Block v9-1
----------------------------------------------------*/
@media (min-width: 768px) {
  .u-info-v9-1 {
    position: relative; }

  .u-info-v9-1::before {
    position: absolute;
    top: 111px;
    left: 17%;
    width: 66%;
    border-top: 1px dotted #ddd;
    content: " "; } }
/*--------------------------------------------------
  Info Block v10-1
----------------------------------------------------*/
.u-info-v10-1 {
  position: relative;
  display: inline-block; }

.u-info-v10-1::before, .u-info-v10-1::after {
  display: block;
  position: absolute;
  top: 50%;
  width: 1000px;
  height: 1px;
  background: #f7f7f7;
  content: " ";
  margin-top: 0.5px; }

.u-info-v10-1::before {
  right: 100%;
  margin-right: 25px; }

.u-info-v10-1::after {
  left: 100%;
  margin-left: 25px; }

/*------------------------------------
  Info v11-1
------------------------------------*/
.u-info-v11-1-img {
  border: 0 solid #eee;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
  transition: all .3s ease; }

.u-info-v11-1:hover .u-info-v11-1-img {
  border-width: 5px;
  -webkit-transform: scale(0.95);
  -ms-transform: scale(0.95);
  transform: scale(0.95); }

/*------------------------------------
  Custom Bootstrap
------------------------------------*/
.container-semiboxed {
  box-sizing: border-box;
  max-width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto; }

@media (min-width: 576px) {
  .container-semiboxed {
    width: 540px; } }
@media (min-width: 768px) {
  .container-semiboxed {
    width: 720px; } }
@media (min-width: 992px) {
  .container-semiboxed {
    width: 960px; } }
@media (min-width: 1200px) {
  .container-semiboxed {
    width: 1140px; } }
@media (min-width: 1400px) {
  .container-semiboxed {
    width: 1340px; } }
.text-muted {
  color: #999 !important; }

.list-group-item {
  border-color: #eee; }

.list-group-item-action:hover {
  background-color: #f7f7f7; }

.list-group-item.active {
  background-color: #72c02c;
  border-color: #72c02c; }

.list-group-border-0 .list-group-item:first-child,
.list-group-border-0 .list-group-item:last-child {
  border-radius: 0; }

/* Paginations */
.page-link {
  color: #72c02c; }

.page-link:focus, .page-link:hover {
  color: #72c02c; }

.page-item.active .page-link,
.page-item.active .page-link:focus,
.page-item.active .page-link:hover {
  border-color: #72c02c;
  background-color: #72c02c; }

.nav-pills .nav-item.show .nav-link,
.nav-pills .nav-link.active {
  background-color: #72c02c; }

.nav-tabs {
  border-bottom: 1px solid #eee; }

.nav-tabs .nav-link:focus,
.nav-tabs .nav-link:hover {
  border-color: transparent; }

.nav-tabs .nav-link.active,
.nav-tabs .nav-item.show .nav-link {
  color: #555;
  border-color: #eee #eee #fff; }

.progress {
  font-size: 1rem;
  line-height: inherit;
  background-color: #eee; }

.progress-bar {
  height: auto;
  min-height: 12px;
  background-color: #72c02c; }

.btn-primary {
  background-color: #72c02c;
  border-color: #72c02c; }

.btn-primary:hover {
  color: #fff;
  background-color: #6db82a;
  border-color: #6db82a; }

.btn-primary:focus, .btn-primary.focus {
  box-shadow: 0 0 0 2px rgba(114, 192, 44, 0.5); }

.btn-primary.disabled, .btn-primary:disabled {
  background-color: #72c02c;
  border-color: #72c02c; }

.btn-primary:active, .btn-primary.active,
.show > .btn-primary.dropdown-toggle {
  background-color: #6db82a;
  border-color: #6db82a; }

.btn-outline-primary {
  color: #72c02c;
  border-color: #72c02c; }

.btn-outline-primary:hover {
  background-color: #6db82a;
  border-color: #6db82a; }

.btn-outline-primary:focus, .btn-outline-primary.focus {
  box-shadow: 0 0 0 2px rgba(114, 192, 44, 0.5); }

.btn-outline-primary.disabled, .btn-outline-primary:disabled {
  color: #72c02c; }

.btn-outline-primary:active, .btn-outline-primary.active,
.show > .btn-outline-primary.dropdown-toggle {
  background-color: #6db82a;
  border-color: #6db82a; }

.card,
.card-header {
  border-color: #eee; }

.card-header {
  padding: 0.71429rem 1.07143rem; }

.card-block {
  padding: 1.07143rem; }

.form-control {
  border-color: #ccc; }

.form-control-md {
  padding: .8rem 1rem .6rem; }

.input-group-lg > .input-group-btn > select.btn:not([size]):not([multiple]), .input-group-lg > select.form-control:not([size]):not([multiple]), .input-group-lg > select.input-group-addon:not([size]):not([multiple]), select.form-control-lg:not([size]):not([multiple]) {
  height: calc(2.3125rem + 10px); }

.form-control,
.form-control:focus {
  color: #555; }

.form-control:focus,
.custom-select:focus {
  border-color: #72c02c;
  box-shadow: none; }

.form-control::-webkit-input-placeholder {
  color: inherit;
  opacity: .5; }

.form-control::-moz-placeholder {
  color: inherit;
  opacity: .5; }

.form-control:-ms-input-placeholder {
  color: inherit;
  opacity: .5; }

.form-control::placeholder {
  color: inherit;
  opacity: .5; }

textarea {
  white-space: normal; }

.has-success .col-form-label,
.has-success .custom-control,
.has-success .form-check-label,
.has-success .form-control-feedback,
.has-success .form-control-label {
  color: #5cb85c; }

.has-success .form-control {
  border-color: #5cb85c; }

.has-warning .col-form-label,
.has-warning .custom-control,
.has-warning .form-check-label,
.has-warning .form-control-feedback,
.has-warning .form-control-label {
  color: #f0ad4e; }

.has-warning .form-control {
  border-color: #f0ad4e; }

.has-danger .col-form-label,
.has-danger .custom-control,
.has-danger .form-check-label,
.has-danger .form-control-feedback,
.has-danger .form-control-label {
  color: #d9534f; }

.has-danger .form-control {
  border-color: #d9534f; }

[class*="input-group-"] {
  min-width: 38px;
  background-color: transparent;
  border-color: #ccc;
  transition: border-color .15s ease-in-out 0s; }

[class*="input-group-"] > * {
  white-space: normal; }

[class*="input-group-"] i {
  margin: 0 auto; }

.input-group .form-control:active,
.input-group .form-control:focus,
.input-group .form-control:hover {
  z-index: auto; }

.btn-group {
  display: block; }

.input-group-addon + .input-group-addon {
  border-left: solid 1px #ccc; }

.table-striped tbody tr:nth-of-type(2n+1) {
  background-color: #f7f7f7; }

.table-striped tbody td {
  border-top: none; }

@media (min-width: 768px) {
  .btn-group {
    display: -webkit-inline-box;
    display: -webkit-inline-flex;
    display: -ms-inline-flexbox;
    display: inline-flex; }

  .justified-content {
    display: table;
    width: 100%;
    table-layout: fixed; }

  .justified-content > * {
    display: table-cell;
    width: 1%;
    float: none; } }
.dropdown-menu {
  min-width: 15rem;
  padding: 0; }

.dropdown-toggle::before {
  display: none; }

.dropdown-toggle::after {
  content: "\e900";
  position: relative;
  top: 0.21429rem;
  font-family: "hs-icons" !important;
  font-size: 10px;
  display: inline;
  border: none;
  margin-left: 0.5rem; }

.dropdown-item {
  padding: 0.21429rem 1.07143rem; }

.dropdown-item:focus, .dropdown-item:hover {
  background: rgba(0, 0, 0, 0.03); }

.dropdown-item.active, .dropdown-item:active {
  background: rgba(0, 0, 0, 0.05);
  color: inherit !important; }

.dropdown-item.active > a, .dropdown-item:active > a {
  color: inherit !important; }

.dropdown-item.active > a::before, .dropdown-item.active > a::after, .dropdown-item:active > a::before, .dropdown-item:active > a::after {
  background-color: #fff; }

.u-header__section--dark .dropdown-item.active > a, .u-header__section--dark .dropdown-item:active > a {
  color: #fff !important; }

.chosen-container-single .chosen-single div b {
  position: relative; }

.chosen-container-single .chosen-search input[type="text"] {
  padding: .8rem 1rem .6rem;
  border-color: #ccc; }

.chosen-container-single.u-dropdown-sm .chosen-search input[type="text"] {
  padding: .25rem .5rem .1rem; }

.chosen-container-single.u-dropdown-lg .chosen-search input[type="text"] {
  padding: .75rem 1.5rem .55rem; }

.chosen-container-single.u-select-above .chosen-drop {
  top: auto;
  bottom: 100%;
  margin-top: 0;
  margin-bottom: -1px; }

[data-animation].cbp {
  visibility: visible; }

.cbp-slider-next::after,
.cbp-slider-prev::after {
  display: none; }

.cbp-filter-item {
  cursor: pointer; }

.cbp-item-off {
  opacity: 0; }

/*------------------------------------
  Border Colors
------------------------------------*/
/* Primary Colors */
.g-brd-primary--active.cbp-filter-item-active {
  border-color: #72c02c !important; }

.g-brd-primary-opacity-0_3--active.cbp-filter-item-active {
  border-color: rgba(114, 192, 44, 0.3) !important; }

.g-brd-primary-dark-dark-v1--active.cbp-filter-item-active {
  border-color: #6db82a !important; }

.g-brd-primary-dark-dark-v2--active.cbp-filter-item-active {
  border-color: #66ab27 !important; }

.g-brd-primary-dark-dark-v3--active.cbp-filter-item-active {
  border-color: #599722 !important; }

/* Black Colors */
.g-brd-black--active.cbp-filter-item-active {
  border-color: #000 !important; }

/* White Colors */
.g-brd-white--active.cbp-filter-item-active {
  border-color: #fff !important; }

.g-brd-white-opacity-0_1--active.cbp-filter-item-active {
  border-color: rgba(255, 255, 255, 0.1) !important; }

.g-brd-white-opacity-0_2--active.cbp-filter-item-active {
  border-color: rgba(255, 255, 255, 0.2) !important; }

.g-brd-white-opacity-0_3--active.cbp-filter-item-active {
  border-color: rgba(255, 255, 255, 0.3) !important; }

.g-brd-white-opacity-0_4--active.cbp-filter-item-active {
  border-color: rgba(255, 255, 255, 0.4) !important; }

.g-brd-white-opacity-0_5--active.cbp-filter-item-active {
  border-color: rgba(255, 255, 255, 0.5) !important; }

.g-brd-white-opacity-0_6--active.cbp-filter-item-active {
  border-color: rgba(255, 255, 255, 0.6) !important; }

/* Gray Colors */
.g-brd-gray-dark-v1--active.cbp-filter-item-active {
  border-color: #111 !important; }

.g-brd-gray-dark-v2--active.cbp-filter-item-active {
  border-color: #333 !important; }

.g-brd-gray-dark-v3--active.cbp-filter-item-active {
  border-color: #555 !important; }

.g-brd-gray-dark-v4--active.cbp-filter-item-active {
  border-color: #777 !important; }

.g-brd-gray-dark-v5--active.cbp-filter-item-active {
  border-color: #999 !important; }

.g-brd-gray-light-v1--active.cbp-filter-item-active {
  border-color: #bbb !important; }

.g-brd-gray-light-v2--active.cbp-filter-item-active {
  border-color: #ccc !important; }

.g-brd-gray-light-v3--active.cbp-filter-item-active {
  border-color: #ddd !important; }

.g-brd-gray-light-v4--active.cbp-filter-item-active {
  border-color: #eee !important; }

.g-brd-gray-light-v5--active.cbp-filter-item-active {
  border-color: #f7f7f7 !important; }

/* Transparent */
.g-brd-transparent--active.cbp-filter-item-active {
  border-color: transparent !important; }

/*------------------------------------
  Background Colors
------------------------------------*/
/* Primary Colors */
.g-bg-primary--active.cbp-filter-item-active {
  background-color: #72c02c !important; }

/*------------------------------------
  Colors
------------------------------------*/
/* Primary Colors */
.g-color-primary--active.cbp-filter-item-active {
  color: #72c02c !important; }

/* Black Colors */
.g-color-black--active.cbp-filter-item-active {
  color: #000 !important; }

/* White Colors */
.g-color-white--active.cbp-filter-item-active {
  color: #fff !important; }

/* Gray Colors */
.g-color-gray-light-v1--active.cbp-filter-item-active {
  color: #bbb !important; }

.g-color-gray-light-v2--active.cbp-filter-item-active {
  color: #ccc !important; }

.g-color-gray-light-v3--active.cbp-filter-item-active {
  color: #ddd !important; }

.g-color-gray-light-v4--active.cbp-filter-item-active {
  color: #eee !important; }

.g-color-gray-light-v5--active.cbp-filter-item-active {
  color: #f7f7f7 !important; }

.g-color-gray-dark-v1--active.cbp-filter-item-active {
  color: #111 !important; }

.g-color-gray-dark-v2--active.cbp-filter-item-active {
  color: #333 !important; }

.g-color-gray-dark-v3--active.cbp-filter-item-active {
  color: #555 !important; }

.g-color-gray-dark-v4--active.cbp-filter-item-active {
  color: #777 !important; }

.g-color-gray-dark-v5--active.cbp-filter-item-active {
  color: #999 !important; }

/*--------------------------------------------------
  Fancybox
----------------------------------------------------*/
/* Blur bg container */
/*--------------------------------------------------
     Fancybox
     ----------------------------------------------------*/
.u-fancybox-theme .fancybox-content {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0; }

.u-fancybox-theme .fancybox-slide--iframe .fancybox-content {
  position: static; }

.u-fancybox-theme.fancybox-show-thumbs .fancybox-content {
  right: 220px; }

.u-fancybox-theme .fancybox-button,
.u-fancybox-theme .fancybox-arrow {
  font-size: 1.42857rem;
  line-height: 2.92857rem;
  width: 3.14286rem;
  height: 3.14286rem;
  text-align: center;
  background-color: transparent;
  border-width: 0.07143rem;
  border-style: solid;
  border-color: #fff;
  color: #fff;
  outline: none;
  border-radius: 50%;
  opacity: .8;
  transition: opacity .3s ease; }

.u-fancybox-theme .fancybox-button::before,
.u-fancybox-theme .fancybox-arrow::before {
  font-family: "hs-icons";
  position: static;
  opacity: 1;
  background-color: transparent;
  border: none;
  box-shadow: none;
  -webkit-transform: none;
  -ms-transform: none;
  transform: none;
  width: auto;
  height: auto; }

.u-fancybox-theme .fancybox-button::after,
.u-fancybox-theme .fancybox-arrow::after {
  display: none; }

.u-fancybox-theme .fancybox-button:hover, .u-fancybox-theme .fancybox-button:focus,
.u-fancybox-theme .fancybox-arrow:hover,
.u-fancybox-theme .fancybox-arrow:focus {
  opacity: 1; }

.u-fancybox-theme .fancybox-button {
  display: inline-block; }

.u-fancybox-theme .fancybox-button--close::before {
  content: "\e904"; }

.u-fancybox-theme .fancybox-button--play::before {
  content: "\e90c"; }

.u-fancybox-theme .fancybox-button--fullscreen::before {
  content: "\e909"; }

.u-fancybox-theme .fancybox-button--thumbs::before {
  content: "\e906"; }

.u-fancybox-theme .fancybox-arrow--left, .u-fancybox-theme .fancybox-arrow--right {
  margin-top: -1.57143rem;
  position: absolute;
  top: 50%;
  z-index: 100000;
  display: none; }

.u-fancybox-theme.fancybox-show-nav .fancybox-arrow--left, .u-fancybox-theme.fancybox-show-nav .fancybox-arrow--right {
  display: block; }

.u-fancybox-theme .fancybox-arrow--left::before, .u-fancybox-theme .fancybox-arrow--right::before {
  content: "\e902"; }

.u-fancybox-theme .fancybox-arrow--left {
  left: 1.42857rem; }

.u-fancybox-theme .fancybox-arrow--right {
  right: 1.42857rem; }

.u-fancybox-theme .fancybox-toolbar {
  top: 1.42857rem;
  right: 1.42857rem;
  margin-left: -0.35714rem;
  margin-right: -0.35714rem; }

.u-fancybox-theme .fancybox-toolbar .fancybox-button {
  margin-left: 0.35714rem;
  margin-right: 0.35714rem; }

.u-fancybox-theme .fancybox-thumbs {
  background-color: #000; }

.u-fancybox-theme .fancybox-thumbs > ul > li {
  border-color: #000; }

.u-fancybox-theme .fancybox-thumbs > ul > li::before {
  border-color: #72c02c; }

.fancybox-controls--canzoomIn .fancybox-placeholder,
.fancybox-controls--canzoomOut .fancybox-placeholder {
  cursor: inherit; }

.fancybox-slide.has-animation {
  display: block; }

.fancybox-is-sliding .fancybox-slide.has-animation,
.fancybox-slide--current.has-animation,
.fancybox-slide--next.has-animation,
.fancybox-slide--previous.has-animation {
  display: none; }

.fancybox-is-sliding .fancybox-slide.has-animation.animated,
.fancybox-slide--current.has-animation.animated,
.fancybox-slide--next.has-animation.animated,
.fancybox-slide--previous.has-animation.animated {
  display: block; }

/*--------------------------------------------------
  Hamburgers
----------------------------------------------------*/
.hamburger {
  padding: 10px; }

.hamburger-box {
  width: 37px;
  height: 25px; }

.hamburger-inner {
  margin-top: 1px; }

.hamburger-inner, .hamburger-inner::after, .hamburger-inner::before {
  width: 100%;
  height: 1px;
  border-radius: 0; }

.u-header__section--light .hamburger-inner,
.u-header__section--light .hamburger-inner::after,
.u-header__section--light .hamburger-inner::before {
  background: #555; }

.u-header__section--dark .hamburger-inner,
.u-header__section--dark .hamburger-inner::after,
.u-header__section--dark .hamburger-inner::before {
  background: #fff; }

.hs-has-mega-menu:not(.hs-mega-menu-opened) *,
.hs-has-sub-menu:not(.hs-sub-menu-opened) * {
  transition: none !important; }

.hs-has-mega-menu:not(.hs-mega-menu-opened) *::before, .hs-has-mega-menu:not(.hs-mega-menu-opened) *::after,
.hs-has-sub-menu:not(.hs-sub-menu-opened) *::before,
.hs-has-sub-menu:not(.hs-sub-menu-opened) *::after {
  transition: none !important; }

[class^="et-"] {
  line-height: 1.1; }

.material-icons {
  position: relative;
  top: 0.14286rem; }

.u-btn-floating .material-icons,
.u-chip .material-icons {
  top: 0; }

.jFiler-jProgressBar {
  height: auto;
  margin-top: 0; }

.jFiler-item-thumb-image img {
  max-width: 100%; }

/*------------------------------------
  jQuery UI
------------------------------------*/
.ui-autocomplete {
  max-height: 200px;
  overflow-y: auto;
  overflow-x: hidden;
  padding-bottom: 1px;
  z-index: 991; }

.ui-autocomplete .left {
  float: left; }

.ui-autocomplete .right {
  float: right; }

.ui-autocomplete .ui-menu-item {
  padding: 0; }

.ui-autocomplete .ui-menu-item-wrapper {
  display: block;
  color: inherit;
  background-color: transparent;
  border-color: transparent;
  padding: 7px 15px; }

.ui-autocomplete .ui-menu-item-wrapper.ui-state-active, .ui-autocomplete .ui-menu-item-wrapper:hover {
  color: #fff;
  background-color: #72c02c;
  text-decoration: none; }

.ui-autocomplete .ui-menu-item:hover {
  color: #fff;
  background-color: #72c02c; }

.ui-autocomplete .ui-menu-item:hover .ui-menu-item-wrapper {
  background-color: transparent;
  border-color: transparent; }

.ui-autocomplete-category {
  padding: 5px 15px;
  margin: 0;
  font-weight: bold; }

.jvectormap-container {
  width: 100%;
  height: 100%; }

/*------------------------------------
  Pin Map
------------------------------------*/
.point {
  width: 21px;
  height: 21px;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.5); }

.point::before, .point::after {
  content: "";
  display: block;
  border-radius: 50%;
  position: absolute; }

.point::before {
  top: 5px;
  left: 5px;
  width: 11px;
  height: 11px;
  background: #72c02c; }

.point::after {
  top: 8px;
  left: 8px;
  width: 5px;
  height: 5px;
  background: rgba(0, 0, 0, 0.5); }

.mwp-wrap {
  box-shadow: 0 1px 9px -1px;
  left: -82px;
  bottom: 35px !important; }

.mwp-wrap::after {
  content: "";
  position: absolute;
  top: 99%;
  left: 50%;
  margin-left: -7px;
  width: 0;
  height: 0;
  border-width: 14px 14px 0 14px;
  border-style: solid;
  border-color: #111 transparent transparent transparent; }

.embed-responsive .plyr--video {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%; }

pre[class*="language-"] {
  position: relative;
  margin: 0; }

pre[class*="language-"] .toolbar {
  position: absolute;
  top: -1px;
  right: -1px; }

pre[class*="language-"] .toolbar-item a {
  display: block;
  z-index: 10;
  padding: 5px 8px;
  font-size: 12px;
  color: #111;
  cursor: pointer;
  background-color: #fff;
  border: 1px solid #bbb;
  border-radius: 0 0 0 4px; }

.select2-container .select2-selection--single {
  height: 2.5rem; }

.select2-container--default .select2-selection--single .select2-selection__rendered {
  line-height: normal;
  padding: .5rem .75rem; }

.select2-container--default .select2-selection--single .select2-selection__arrow {
  top: 50%;
  line-height: 26px;
  text-align: center;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%); }

.select2-container--default .select2-selection--single .select2-selection__arrow b {
  position: static;
  top: auto;
  left: auto;
  width: auto;
  height: auto;
  font: normal normal normal 14px/1 FontAwesome;
  font-size: inherit;
  vertical-align: middle;
  border: none;
  margin-top: 0;
  margin-left: 0; }

.select2-container--default .select2-selection--single .select2-selection__arrow b::before {
  content: "\f0dc"; }

.g-rounded-0 + .select2-container--default .select2-selection--single {
  border-radius: 0; }

.select2-results__option {
  position: relative; }

.select2-results__option img:first-child {
  margin-right: 10px; }

.select2-results__option img:last-child {
  margin-left: 10px; }

.select2-results__option:hover .u-option-icons--v1 {
  opacity: 1; }

.u-select-v1 {
  position: relative; }

.select2-container--default .u-select-v1 {
  height: auto;
  border-radius: 0; }

.select2-container--default .u-select-v1 .select2-selection__rendered {
  padding: 0; }

.select2-container--default .u-select-v1 .select2-selection__arrow {
  line-height: 22px; }

.select2-container--default .u-select-v1:focus {
  outline: 0 none; }

.slick-slide:focus {
  outline: 0 none; }

[data-lazy] {
  opacity: 0;
  transition-property: opacity;
  transition-duration: .4s;
  transition-timing-function: ease-in; }

.js-carousel {
  /*background: url(../../assets/img/preloaders/preloader-black.svg) no-repeat 50% 50%;*/ }

.js-carousel .js-next,
.js-carousel .js-prev {
  opacity: 0; }

.js-carousel.slick-initialized {
  background: none; }

.js-carousel.slick-initialized .js-slide,
.js-carousel.slick-initialized .js-thumb {
  visibility: visible;
  height: auto;
  overflow: visible; }

.js-carousel.slick-initialized .js-next,
.js-carousel.slick-initialized .js-prev {
  opacity: 1; }

.js-slide, .js-thumb {
  height: 0;
  visibility: hidden;
  overflow: hidden; }

.js-slide:first-child, .js-thumb:first-child {
  height: auto; }

.slick-vertical .slick-slide {
  border: none; }

/*------------------------------------
  Border Colors
------------------------------------*/
/* Primary Colors */
.slick-active .g-brd-primary--before--active::before {
  border-color: #72c02c !important; }

.slick-active .g-brd-primary--active {
  border-color: #72c02c !important; }

.js-pagination .g-brd-primary--before--hover:hover::before {
  border-color: #72c02c !important; }

/*------------------------------------
  Border Width
------------------------------------*/
.slick-active .g-brd-3--before--active::before {
  border-width: 3px !important; }

/*------------------------------------
  Box shadows
------------------------------------*/
.g-parent.slick-current .u-shadow-v24--active {
  box-shadow: 0 15px 20px 0 rgba(0, 0, 0, 0.06); }

/*------------------------------------
  Dot line v1
------------------------------------*/
.slick-active .u-dot-line-v1__inner::before, .slick-active
.u-dot-line-v1-2__inner::before {
  width: 100%;
  height: 100%; }

/*------------------------------------
  Dot line v2
------------------------------------*/
.slick-active .u-dot-line-v2__inner::before, .slick-active
.u-dot-line-v2-2__inner::before {
  width: 100%;
  height: 100%; }

.u-has-sidebar-navigation .custombox-content,
.u-has-sidebar-navigation .custombox-overlay {
  left: 0;
  right: 0; }

/*------------------------------------
  JS
------------------------------------*/
.js-carousel_single-item {
  max-width: 100%;
  position: relative; }

.js-next,
.js-prev,
.js-thumb {
  cursor: pointer; }

.js-next,
.js-prev {
  z-index: 10; }

.js-thumb img {
  display: inline-block; }

.js-carousel_single-item-thumbs5__thumbs .js-thumb {
  opacity: .3;
  transition-property: opacity;
  transition-duration: .2s;
  transition-timing-function: ease-in; }

.js-carousel_single-item-thumbs5__thumbs .slick-center {
  opacity: 1; }

.js-carousel_single-item-thumbs5--v2__thumbs .js-thumb {
  opacity: .4;
  transition-property: opacity;
  transition-duration: .2s;
  transition-timing-function: ease-in; }

.js-carousel_single-item-thumbs5--v2__thumbs .slick-center {
  opacity: 1; }

.js-carousel_single-item-thumbs5--v3__thumbs .js-thumb {
  opacity: .4;
  transition-property: opacity;
  transition-duration: .2s;
  transition-timing-function: ease-in; }

.js-carousel_single-item-thumbs5--v3__thumbs .slick-center {
  opacity: 1; }

.u-pagi-control--v2 {
  display: block;
  width: 12px;
  height: 12px;
  margin: 0 3px;
  border-radius: 50%;
  background-color: #ddd;
  opacity: .3;
  cursor: pointer; }

.slick-active .u-pagi-control-red {
  background-color: #f00; }

.slick-active .u-pagi-control-grey {
  opacity: 1; }

.u-carousel--v3 .js-prev,
.u-carousel--v3 .js-next {
  top: 50%;
  opacity: 0;
  transition-property: opacity;
  transition-duration: .2s;
  transition-timing-function: ease-in; }

.u-carousel--v3 .g-height-40.js-prev, .u-carousel--v3 .g-height-40.js-next {
  margin-top: -20px;
  left: 50%; }

.u-carousel--v3 .g-height-40.js-prev {
  margin-left: -99px; }

.u-carousel--v3 .g-height-40.js-next {
  margin-left: 65px; }

.u-carousel--v3:hover .js-prev,
.u-carousel--v3:hover .js-next {
  opacity: 1; }

.u-carousel--v4 {
  margin-left: -15px;
  margin-right: -15px; }

.u-carousel--v4 .js-prev,
.u-carousel--v4 .js-next {
  top: 50%;
  opacity: 0;
  transition-property: opacity;
  transition-duration: .4s;
  transition-timing-function: ease-in; }

.u-carousel--v4 .g-height-40.js-prev, .u-carousel--v4 .g-height-40.js-next {
  margin-top: -20px;
  left: 50%; }

.u-carousel--v4 .g-height-40.js-prev {
  margin-left: -160px; }

.u-carousel--v4 .g-height-40.js-next {
  margin-left: 125px; }

.u-carousel--v4:hover .js-prev,
.u-carousel--v4:hover .js-next {
  opacity: 1; }

/*--------------------------------------------------
  Filter v1
----------------------------------------------------*/
.u-filter-v1 > li:not(:last-child)::after {
  content: "|";
  font-size: 0.71429rem;
  margin: 0 7px 0 14px;
  position: relative;
  top: -2px;
  line-height: inherit;
  display: inline-block;
  vertical-align: middle;
  color: #ddd; }

.u-filter-v1 > li:hover,
.u-filter-v1 [class*="active"] {
  color: #72c02c; }

/*--------------------------------------------------
  Carousel v10
----------------------------------------------------*/
.u-carousel-v10 .slick-dots {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: auto;
  visibility: hidden;
  margin: 0;
  padding: 0; }

.u-carousel-v10 .slick-dots li {
  display: block;
  margin-bottom: 5px; }

.u-carousel-v10 .slick-dots button {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  color: transparent;
  background: #ccc;
  border: none;
  outline: none; }

.u-carousel-v10 .slick-dots .slick-active button {
  background: #72c02c; }

.u-carousel-v10-nav {
  margin-top: -135px; }

.u-carousel-v10-nav .js-slide {
  position: relative;
  cursor: pointer;
  height: 100%; }

.u-carousel-v10-nav .js-slide:after {
  content: "";
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.2);
  transition: opacity 0.3s ease-in-out; }

.u-carousel-v10-nav .js-slide.slick-current::after {
  opacity: 0; }

@media only screen and (max-width: 991px) {
  .u-carousel-v10 .slick-dots {
    visibility: visible; }

  .u-carousel-v10-nav {
    display: none; } }
/*------------------------------------
  Internet Explorer (IE)
------------------------------------*/
/* Text Gradients */
.IE .g-color-cyan-gradient-opacity-v1,
.IE .g-color-blue-gradient-opacity-v1 {
  background: transparent;
  -webkit-text-fill-color: initial; }

.IE .g-color-cyan-gradient-opacity-v1 {
  color: #00bed6; }

.IE .g-color-blue-gradient-opacity-v1 {
  color: #8654da; }

.IE .form-control:-ms-input-placeholder {
  opacity: 1; }

/*------------------------------------
  Demo of Icons
------------------------------------*/
.u-icons-demo__item {
  border: solid 1px #eee;
  margin: 0 -1px -1px 0;
  padding: 20px 15px; }

.u-icons-demo-item__value, .u-icons-demo-item__value:focus {
  width: 100%;
  text-align: center;
  border: none;
  outline: none; }

/* Add here all your css styles (customizations) */
.npt-powerInfuture .js-slide .thumbs {
  position: relative; }

.npt-powerInfuture .icon-play-7 {
  background: url(../img/img-all/icon-play-7.png) top center no-repeat;
  width: 49px;
  height: 49px;
  position: absolute;
  bottom: 20px;
  left: 20px;
  opacity: 0.67; }

.npt-powerInfuture .u-icon-v3.u-icon-size--sm {
  width: 50px !important;
  height: 50px !important;
  font-size: 30px !important;
  line-height: 27px;
  text-align: center; }

.npt-powerInfuture .g-absolute-centered--y {
  top: 30% !important; }

.npt-powerInfuture .g-bg-primary-opacity-0_1 {
  background-color: rgba(255, 255, 255, 0.1) !important;
  border: 1px solid #e1e1e1;
  color: #999; }

.npt-powerInfuture .g-color-primary {
  color: #999 !important; }

.npt-powerInfuture .viewMore {
  background-color: white !important;
  border: 1px solid #e1e1e1;
  color: #666666;
  font-size: 18px;
  border-radius: 6px;
  padding: 6px 40px;
  float: right; }

.npt-powerInfuture .viewMore:hover {
  background-color: #164397 !important;
  border: 1px solid #164397;
  color: #fff !important; }

.npt-powerInfuture .js-pagination {
  display: none !important; }

.js-carousel.slick-initialized.banner {
  height: 350px; }

  .js-carousel.slick-initialized.banner {
  height: 150px; }
  
/* code by ngocbich85hd 28/5/2018 */
.color-main, .npt-values .container .row .npt-values-in .content-in h2, .npt-video .container .row .npt-news .npt-lable .link-hover-r {
  color: #164397; }

.color-main-red {
  color: #ed1c24; }

.color-main2, .npt-values .container .row .npt-values-in .content-in h3, .npt-core-values .container .row .npt-core-values-right .item-list .content-detail .h3, .npt-core-values .container .row .npt-core-values-right .item-list .content-detail p, .npt-strategic-objectives .container .row .npt-strategic-objectives-left .item-list .content-detail p, .npt-strategic-objectives .container .row .npt-strategic-objectives-right .item-list .content-detail p, .container .row .npt-highlight-in .row .npt-highlight-right .npt-highlight-list li:hover a h2, .npt-history-milestone .container .row .npt-core-values-right .item-list .content-detail .h3, .npt-history-milestone .container .row .npt-core-values-right .item-list .content-detail p {
  color: #37424b; }

.bg-main, .npt-investment-projects .container .npt-power-system-lable:hover .hi-icon-wrap .hi-icon, .npt-connection-agreements .npt-power-system-lable:hover .hi-icon-wrap .hi-icon {
  background: #164397; }

.bg-main-red {
  background: #ed1c24; }

.link-hover-x:hover, .npt-pressRelease .container .row .npt-pressRelease-in .row .npt-pressRelease-left .npt-highlight-list li .content-new a .title:hover, .link-hover-x:hover a, .npt-pressRelease .container .row .npt-pressRelease-in .row .npt-pressRelease-left .npt-highlight-list li .content-new a .title:hover a, .link-hover-x:hover h2, .npt-pressRelease .container .row .npt-pressRelease-in .row .npt-pressRelease-left .npt-highlight-list li .content-new a .title:hover h2, .link-hover-x:hover h4, .npt-pressRelease .container .row .npt-pressRelease-in .row .npt-pressRelease-left .npt-highlight-list li .content-new a .title:hover h4 {
  color: #164397; }

.link-hover-r:hover, .link-hover-r:hover a {
  color: #ed1c24 !important; }

.link-hover-line:hover, .link-hover-line:hover a {
  text-decoration: underline;
  color: #fff !important; }

.bt-hover-red:hover {
  background: #ed1c24 !important;
  color: #fff !important; }

.npt-lable-12, .npt-onNews .container .row .npt-onNews-in .npt-lable, .npt-development-strategy .container .row .npt-development-strategy-in .npt-lable, .npt-solution .container .npt-strategic-objectives-lable .npt-lable, .npt-khoi-ban .container .npt-strategic-objectives-lable .npt-lable {
  position: relative;
  text-align: center; }
  .npt-lable-12 h2, .npt-onNews .container .row .npt-onNews-in .npt-lable h2, .npt-development-strategy .container .row .npt-development-strategy-in .npt-lable h2, .npt-solution .container .npt-strategic-objectives-lable .npt-lable h2, .npt-khoi-ban .container .npt-strategic-objectives-lable .npt-lable h2, .npt-lable-12 a, .npt-onNews .container .row .npt-onNews-in .npt-lable a, .npt-development-strategy .container .row .npt-development-strategy-in .npt-lable a, .npt-solution .container .npt-strategic-objectives-lable .npt-lable a, .npt-khoi-ban .container .npt-strategic-objectives-lable .npt-lable a {
    color: #37424b;
    line-height: 44px;
    font-family: 'Oswald';
    font-weight: 300;
    font-size: 30px !important; }
    .npt-lable-12 h2::before, .npt-onNews .container .row .npt-onNews-in .npt-lable h2::before, .npt-development-strategy .container .row .npt-development-strategy-in .npt-lable h2::before, .npt-solution .container .npt-strategic-objectives-lable .npt-lable h2::before, .npt-khoi-ban .container .npt-strategic-objectives-lable .npt-lable h2::before, .npt-lable-12 a::before, .npt-onNews .container .row .npt-onNews-in .npt-lable a::before, .npt-development-strategy .container .row .npt-development-strategy-in .npt-lable a::before, .npt-solution .container .npt-strategic-objectives-lable .npt-lable a::before, .npt-khoi-ban .container .npt-strategic-objectives-lable .npt-lable a::before {
      width: 410px;
      height: 1px;
      background: #e1e1e1;
      position: absolute;
      bottom: -15px;
      margin: 0px auto;
      left: 50%;
      transform: translate(-50%, 0%);
      content: ""; }
    .npt-lable-12 h2::after, .npt-onNews .container .row .npt-onNews-in .npt-lable h2::after, .npt-development-strategy .container .row .npt-development-strategy-in .npt-lable h2::after, .npt-solution .container .npt-strategic-objectives-lable .npt-lable h2::after, .npt-khoi-ban .container .npt-strategic-objectives-lable .npt-lable h2::after, .npt-lable-12 a::after, .npt-onNews .container .row .npt-onNews-in .npt-lable a::after, .npt-development-strategy .container .row .npt-development-strategy-in .npt-lable a::after, .npt-solution .container .npt-strategic-objectives-lable .npt-lable a::after, .npt-khoi-ban .container .npt-strategic-objectives-lable .npt-lable a::after {
      width: 180px;
      height: 3px;
      background: #194598;
      position: absolute;
      bottom: -15px;
      margin: 0px auto;
      left: 50%;
      transform: translate(-50%, 0%);
      content: ""; }
    .npt-lable-12 h2 b, .npt-onNews .container .row .npt-onNews-in .npt-lable h2 b, .npt-development-strategy .container .row .npt-development-strategy-in .npt-lable h2 b, .npt-solution .container .npt-strategic-objectives-lable .npt-lable h2 b, .npt-khoi-ban .container .npt-strategic-objectives-lable .npt-lable h2 b, .npt-lable-12 a b, .npt-onNews .container .row .npt-onNews-in .npt-lable a b, .npt-development-strategy .container .row .npt-development-strategy-in .npt-lable a b, .npt-solution .container .npt-strategic-objectives-lable .npt-lable a b, .npt-khoi-ban .container .npt-strategic-objectives-lable .npt-lable a b {
      font-weight: 600; }

.npt-lable-13, .npt-core-values .container .row .npt-core-values-left .npt-lable, .npt-strategic-objectives .container .npt-strategic-objectives-lable .npt-lable, .npt-pressRelease .container .row .npt-pressRelease-in .npt-lable, .npt-history-milestone .container .row .npt-core-values-left .npt-lable, .npt-power-system .container .npt-power-system-lable .npt-lable {
  position: relative;
  text-align: left !important; }
  .npt-lable-13 h2, .npt-core-values .container .row .npt-core-values-left .npt-lable h2, .npt-strategic-objectives .container .npt-strategic-objectives-lable .npt-lable h2, .npt-pressRelease .container .row .npt-pressRelease-in .npt-lable h2, .npt-history-milestone .container .row .npt-core-values-left .npt-lable h2, .npt-power-system .container .npt-power-system-lable .npt-lable h2, .npt-lable-13 a, .npt-core-values .container .row .npt-core-values-left .npt-lable a, .npt-strategic-objectives .container .npt-strategic-objectives-lable .npt-lable a, .npt-pressRelease .container .row .npt-pressRelease-in .npt-lable a, .npt-history-milestone .container .row .npt-core-values-left .npt-lable a, .npt-power-system .container .npt-power-system-lable .npt-lable a {
    color: #37424b;
    line-height: 44px;
    font-family: 'Oswald';
    font-weight: 300;
    font-size: 30px !important; }
    .npt-lable-13 h2::before, .npt-core-values .container .row .npt-core-values-left .npt-lable h2::before, .npt-strategic-objectives .container .npt-strategic-objectives-lable .npt-lable h2::before, .npt-pressRelease .container .row .npt-pressRelease-in .npt-lable h2::before, .npt-history-milestone .container .row .npt-core-values-left .npt-lable h2::before, .npt-power-system .container .npt-power-system-lable .npt-lable h2::before, .npt-lable-13 a::before, .npt-core-values .container .row .npt-core-values-left .npt-lable a::before, .npt-strategic-objectives .container .npt-strategic-objectives-lable .npt-lable a::before, .npt-pressRelease .container .row .npt-pressRelease-in .npt-lable a::before, .npt-history-milestone .container .row .npt-core-values-left .npt-lable a::before, .npt-power-system .container .npt-power-system-lable .npt-lable a::before {
      width: 100%;
      height: 1px;
      background: #e1e1e1;
      position: absolute;
      bottom: -15px;
      left: 0px !important;
      content: "";
      transform: translate(0%, 0%) !important; }
    .npt-lable-13 h2::after, .npt-core-values .container .row .npt-core-values-left .npt-lable h2::after, .npt-strategic-objectives .container .npt-strategic-objectives-lable .npt-lable h2::after, .npt-pressRelease .container .row .npt-pressRelease-in .npt-lable h2::after, .npt-history-milestone .container .row .npt-core-values-left .npt-lable h2::after, .npt-power-system .container .npt-power-system-lable .npt-lable h2::after, .npt-lable-13 a::after, .npt-core-values .container .row .npt-core-values-left .npt-lable a::after, .npt-strategic-objectives .container .npt-strategic-objectives-lable .npt-lable a::after, .npt-pressRelease .container .row .npt-pressRelease-in .npt-lable a::after, .npt-history-milestone .container .row .npt-core-values-left .npt-lable a::after, .npt-power-system .container .npt-power-system-lable .npt-lable a::after {
      width: 30%;
      height: 3px;
      background: #194598;
      position: absolute;
      bottom: -15px;
      left: 0px !important;
      content: "";
      transform: translate(0%, 0%) !important; }
    .npt-lable-13 h2 b, .npt-core-values .container .row .npt-core-values-left .npt-lable h2 b, .npt-strategic-objectives .container .npt-strategic-objectives-lable .npt-lable h2 b, .npt-pressRelease .container .row .npt-pressRelease-in .npt-lable h2 b, .npt-history-milestone .container .row .npt-core-values-left .npt-lable h2 b, .npt-power-system .container .npt-power-system-lable .npt-lable h2 b, .npt-lable-13 a b, .npt-core-values .container .row .npt-core-values-left .npt-lable a b, .npt-strategic-objectives .container .npt-strategic-objectives-lable .npt-lable a b, .npt-pressRelease .container .row .npt-pressRelease-in .npt-lable a b, .npt-history-milestone .container .row .npt-core-values-left .npt-lable a b, .npt-power-system .container .npt-power-system-lable .npt-lable a b {
      font-weight: 600; }

.npt-lable-fff, .npt-contact .container .row .npt-contact-add .npt-lable {
  position: relative;
  text-align: left !important; }
  .npt-lable-fff h2, .npt-contact .container .row .npt-contact-add .npt-lable h2, .npt-lable-fff a, .npt-contact .container .row .npt-contact-add .npt-lable a {
    color: #fff;
    line-height: 44px;
    font-family: 'Oswald';
    font-size: 30px !important;
    font-weight: 300; }
    .npt-lable-fff h2::before, .npt-contact .container .row .npt-contact-add .npt-lable h2::before, .npt-lable-fff a::before, .npt-contact .container .row .npt-contact-add .npt-lable a::before {
      width: 100%;
      height: 1px;
      background: rgba(255, 255, 255, 0.5);
      position: absolute;
      bottom: -15px;
      left: 0px !important;
      content: "";
      transform: translate(0%, 0%) !important; }
    .npt-lable-fff h2::after, .npt-contact .container .row .npt-contact-add .npt-lable h2::after, .npt-lable-fff a::after, .npt-contact .container .row .npt-contact-add .npt-lable a::after {
      width: 40%;
      height: 3px;
      background: #fff;
      position: absolute;
      bottom: -16px;
      content: "";
      left: 50%;
      transform: translate(-50%, 0%); }
    .npt-lable-fff h2 b, .npt-contact .container .row .npt-contact-add .npt-lable h2 b, .npt-lable-fff a b, .npt-contact .container .row .npt-contact-add .npt-lable a b {
      font-weight: 600; }

.npt-lable-h3 h3, .npt-for .container .row .col-md-4 .npt-for-item .content-new h3, .npt-lable-h3 a, .npt-for .container .row .col-md-4 .npt-for-item .content-new a {
  color: #37424b;
  line-height: 34px;
  font-family: 'Oswald' !important;
  font-weight: 300;
  font-size: 24px !important; }
  .npt-lable-h3 h3 b, .npt-for .container .row .col-md-4 .npt-for-item .content-new h3 b, .npt-lable-h3 a b, .npt-for .container .row .col-md-4 .npt-for-item .content-new a b {
    font-weight: 600; }

.npt-new-TBdb-In .list-news-new {
  min-height: 10px !important;
  max-height: 667px !important;
  padding: 15px 13px 0px 13px; }

.npt-video-right .npt-news-list li:first-child,
.npt-video-right .npt-news-list li:first-child .thumbs {
  width: 100% !important; }

.npt-video-right .npt-news-list li:first-child .thumbs {
  width: 100% !important;
  height: 200px !important; }

.npt-video-right .npt-news-list li {
  width: 48% !important; }

.npt-video-right .npt-news-list li:nth-of-type(3),
.npt-video-right .npt-news-list li:nth-of-type(5),
.npt-video-right .npt-news-list li:nth-of-type(7) {
  float: right !important; }

.npt-video-right .npt-news-list li
.news-web .content-new {
  padding: 10px 0px 0px 0px !important;
  float: left;
  width: 100% !important; }

.npt-video-right .npt-news-list li .thumbs {
  width: 100% !important;
  float: left;
  height: 89px !important; }

.npt-video-right .npt-news-list li .news-web .content-new a .title {
  -webkit-line-clamp: 3 !important;
  height: 60px; }

.npt-video-right .npt-news-list li:first-child .news-web .content-new a .title {
  font-weight: 700 !important; }

.npt-content-map .row .infomap h1 {
  font-size: 30px;
  text-transform: uppercase;
  color: #222;
  font-family: 'Oswald';
  font-weight: 700;
  text-align: center;
  margin-bottom: 20px; }
.npt-content-map .row .infomap .bieu-do .bieu-do-in {
  border: 3px solid #e1e1e1;
  padding: 10px;
  width: 100%; }
  .npt-content-map .row .infomap .bieu-do .bieu-do-in h2.npt-lable {
    font-size: 18px;
    text-transform: uppercase;
    color: #222;
    font-family: 'Oswald';
    font-weight: 700;
    margin: 5px 0px;
    text-align: center; }
.npt-content-map .row .infomap .npt-system-overview h2.npt-lable {
  font-size: 18px;
  text-transform: uppercase;
  color: #222;
  font-family: 'Oswald';
  font-weight: 700;
  text-align: center;
  margin-top: 20px; }
.npt-content-map .row .infomap .npt-system-overview .table-bordered {
  border: 3px solid #e1e1e1; }
  .npt-content-map .row .infomap .npt-system-overview .table-bordered tr th {
    font-size: 14px;
    color: #222;
    font-family: 'Oswald';
    font-weight: 700;
    text-align: center;
    background: #e1e1e1;
    border-right: 1px solid #fff;
    padding: 3px 8px; }
  .npt-content-map .row .infomap .npt-system-overview .table-bordered tr td {
    font-size: 13px;
    color: #666666;
    font-family: 'Open Sans';
    font-weight: 400;
    text-align: right;
    letter-spacing: -0.2px;
    padding: 4px 8px; }
    .npt-content-map .row .infomap .npt-system-overview .table-bordered tr td span {
      color: #222; }
  .npt-content-map .row .infomap .npt-system-overview .table-bordered .sum {
    background: #f1f1f1; }
    .npt-content-map .row .infomap .npt-system-overview .table-bordered .sum span {
      font-size: 14px;
      color: #222;
      font-family: 'Oswald';
      font-weight: 700; }
.npt-content-map .row .infomap .npt-legend h2.npt-lable {
  font-size: 18px;
  text-transform: uppercase;
  color: #111;
  font-family: 'Oswald';
  font-weight: 700;
  text-align: center;
  margin-top: 27px; }
.npt-content-map .row .infomap .npt-legend .table-bordered {
  border: 3px solid #e1e1e1; }
  .npt-content-map .row .infomap .npt-legend .table-bordered tr th {
    font-size: 14px;
    color: #222;
    font-family: 'Oswald';
    font-weight: 700;
    text-align: center;
    background: #e1e1e1;
    border-right: 1px solid #fff;
    padding: 3px 8px;
    vertical-align: middle;
    line-height: 16px; }
    .npt-content-map .row .infomap .npt-legend .table-bordered tr th span {
      font-weight: 300;
      width: 100%;
      float: left; }
  .npt-content-map .row .infomap .npt-legend .table-bordered tr td {
    font-size: 13px;
    color: #666666;
    font-family: 'Open Sans';
    font-weight: 400;
    text-align: right;
    letter-spacing: -0.2px;
    padding: 4px 8px;
    vertical-align: middle; }
    .npt-content-map .row .infomap .npt-legend .table-bordered tr td span {
      color: #222; }
  .npt-content-map .row .infomap .npt-legend .table-bordered .sum {
    background: #f1f1f1; }
    .npt-content-map .row .infomap .npt-legend .table-bordered .sum span {
      font-size: 14px;
      color: #222;
      font-family: 'Oswald';
      font-weight: 700; }

.npt-values .container .row .npt-values-in {
  position: relative; }
  .npt-values .container .row .npt-values-in .img {
    position: relative; }
  .npt-values .container .row .npt-values-in .content-in {
    position: absolute;
    width: 57%;
    top: 30px;
    right: 45px;
    padding-top: 7.3333%; }
    .npt-values .container .row .npt-values-in .content-in h2 {
      font-weight: 300;
      font-family: 'Oswald';
      line-height: 42px;
      text-align: right; }
    .npt-values .container .row .npt-values-in .content-in h3 {
      font-weight: 300;
      font-family: 'Oswald';
      text-align: right; }
      .npt-values .container .row .npt-values-in .content-in h3 b {
        font-weight: 500; }

.npt-core-values {
  background: #f4f4f4 url("../img/bg/bg-f12.png") bottom center repeat-x; }
  .npt-core-values .container .row .npt-core-values-left .h5 {
    color: #666666;
    line-height: 22px;
    font-family: 'Oswald';
    font-weight: 300; }
    .npt-core-values .container .row .npt-core-values-left .h5 b {
      font-weight: 700; }
  .npt-core-values .container .row .npt-core-values-right {
    display: inline-block;
    padding-left: 50px; }
    .npt-core-values .container .row .npt-core-values-right .item-list {
      display: inline-flex; }
      .npt-core-values .container .row .npt-core-values-right .item-list span {
        background: #697178;
        width: 60px;
        height: 60px;
        min-width: 60px;
        text-align: center;
        line-height: 60px;
        color: #fff;
        font-family: 'Oswald';
        font-weight: 500;
        font-size: 36px;
        float: left;
        border-radius: 30px;
        margin-right: 20px; }
      .npt-core-values .container .row .npt-core-values-right .item-list .content-detail {
        float: left;
        margin-bottom: 37px; }
        .npt-core-values .container .row .npt-core-values-right .item-list .content-detail .h3 {
          font-family: 'Oswald';
          font-weight: 500;
          letter-spacing: -0.25px;
          margin-bottom: 10px; }
        .npt-core-values .container .row .npt-core-values-right .item-list .content-detail p {
          letter-spacing: -0.20px;
          margin: 0px;
          font-size: 15px;
          line-height: 22px;
          padding: 0px; }

.npt-strategic-objectives .container .npt-strategic-objectives-lable {
  width: 100%;
  float: left; }
  .npt-strategic-objectives .container .npt-strategic-objectives-lable .npt-lable {
    margin-bottom: 50px;
    max-width: 290px; }
.npt-strategic-objectives .container .row {
  display: inline-flex; }
  .npt-strategic-objectives .container .row .npt-strategic-objectives-left .item-list {
    display: inline-flex; }
    .npt-strategic-objectives .container .row .npt-strategic-objectives-left .item-list span {
      background: url("../img/img-all/bg-icon.png") top center no-repeat;
      width: 70px;
      height: 60px;
      min-width: 70px;
      text-align: center;
      line-height: 60px;
      color: #fff;
      font-family: 'Oswald';
      font-weight: 500;
      font-size: 36px;
      float: left;
      margin-right: 15px;
      padding-right: 5px; }
    .npt-strategic-objectives .container .row .npt-strategic-objectives-left .item-list .content-detail {
      float: left;
      margin-bottom: 37px; }
      .npt-strategic-objectives .container .row .npt-strategic-objectives-left .item-list .content-detail p {
        letter-spacing: -0.20px;
        margin: 0px;
        font-size: 15px;
        line-height: 22px;
        padding: 0px; }
  .npt-strategic-objectives .container .row .npt-strategic-objectives-right .item-list {
    display: inline-flex; }
    .npt-strategic-objectives .container .row .npt-strategic-objectives-right .item-list span {
      background: url("../img/img-all/bg-icon.png") top center no-repeat;
      width: 70px;
      height: 60px;
      min-width: 70px;
      text-align: center;
      line-height: 60px;
      color: #fff;
      font-family: 'Oswald';
      font-weight: 500;
      font-size: 36px;
      float: left;
      padding-right: 5px;
      margin-right: 15px; }
    .npt-strategic-objectives .container .row .npt-strategic-objectives-right .item-list .content-detail {
      float: left;
      margin-bottom: 37px; }
      .npt-strategic-objectives .container .row .npt-strategic-objectives-right .item-list .content-detail p {
        letter-spacing: -0.20px;
        margin: 0px;
        font-size: 15px;
        line-height: 22px;
        padding: 0px; }
  .npt-strategic-objectives .container .row .item-list-khoiB {
    text-align: center; }
    .npt-strategic-objectives .container .row .item-list-khoiB .u-block-hover h3 {
      color: #37424b;
      line-height: 44px;
      font-family: 'Oswald';
      font-weight: 300;
      font-size: 24px !important;
      position: relative;
      text-align: center; }
      .npt-strategic-objectives .container .row .item-list-khoiB .u-block-hover h3::before {
        width: 410px;
        height: 1px;
        background: #e1e1e1;
        position: absolute;
        bottom: -15px;
        margin: 0px auto;
        left: 50%;
        transform: translate(-50%, 0%);
        content: ""; }
      .npt-strategic-objectives .container .row .item-list-khoiB .u-block-hover h3::after {
        width: 180px;
        height: 3px;
        background: #194598;
        position: absolute;
        bottom: -15px;
        margin: 0px auto;
        left: 50%;
        transform: translate(-50%, 0%);
        content: ""; }
      .npt-strategic-objectives .container .row .item-list-khoiB .u-block-hover h3 b {
        font-weight: 600;
        width: 100%;
        float: left; }

.npt-contact .container .row .npt-contact-form {
  padding: 60px 60px 35px 60px; }
  .npt-contact .container .row .npt-contact-form .npt-lable-contact {
    position: relative;
    width: 100%;
    float: left; }
    .npt-contact .container .row .npt-contact-form .npt-lable-contact h2 {
      font-size: 24px;
      font-family: 'Oswald';
      font-weight: 300;
      text-align: left;
      color: #333;
      letter-spacing: -0.1px; }
      .npt-contact .container .row .npt-contact-form .npt-lable-contact h2 b {
        font-weight: 600; }
    .npt-contact .container .row .npt-contact-form .npt-lable-contact::before {
      width: 100%;
      height: 1px;
      background: #e1e1e1;
      position: absolute;
      bottom: -15px;
      margin: 0px auto;
      left: 50%;
      transform: translate(-50%, 0%);
      content: ""; }
    .npt-contact .container .row .npt-contact-form .npt-lable-contact::after {
      width: 30%;
      height: 3px;
      background: #194598;
      position: absolute;
      bottom: -15px;
      margin: 0px auto;
      left: 0%;
      transform: translate(0%, 0%);
      content: ""; }
  .npt-contact .container .row .npt-contact-form .npt-contact-form-all {
    width: 100%;
    float: left; }
    .npt-contact .container .row .npt-contact-form .npt-contact-form-all .npt-contact-form-in {
      padding-top: 40px;
      letter-spacing: -0.1px;
      font-family: "Open Sans"; }
      .npt-contact .container .row .npt-contact-form .npt-contact-form-all .npt-contact-form-in .row .col-sm-3 {
        text-align: right;
        padding-right: 0px; }
        .npt-contact .container .row .npt-contact-form .npt-contact-form-all .npt-contact-form-in .row .col-sm-3 span {
          font-size: 14px;
          color: #666666;
          line-height: 34px; }
        .npt-contact .container .row .npt-contact-form .npt-contact-form-all .npt-contact-form-in .row .col-sm-3 i {
          font-size: 20px;
          color: #888888;
          padding: 0px 0px 0px 15px;
          line-height: 34px; }
      .npt-contact .container .row .npt-contact-form .npt-contact-form-all .npt-contact-form-in .row .col-sm-9 p .npt-input {
        height: 34px;
        line-height: 34px;
        border: 1px solid #e1e1e1;
        width: 100%;
        border-radius: 4px;
        color: #888888;
        font-size: 14px;
        padding: 0px 15px; }
      .npt-contact .container .row .npt-contact-form .npt-contact-form-all .npt-contact-form-in .row .col-sm-9 .npt-input-textarea {
        height: 100px;
        line-height: 19px;
        border: 1px solid #e1e1e1;
        width: 100%;
        border-radius: 4px;
        color: #888888;
        font-size: 14px;
        padding: 0px 15px; }
      .npt-contact .container .row .npt-contact-form .npt-contact-form-all .npt-contact-form-in .npt-sudmit {
        margin-top: 20px;
        height: 40px;
        line-height: 38px;
        padding: 0px 20px;
        border-radius: 4px;
        border: 0px;
        background: #194598;
        color: #fff;
        font-size: 14px;
        text-align: center;
        text-transform: uppercase;
        cursor: pointer; }
.npt-contact .container .row .npt-contact-add {
  background: #164397 url("../img/img-all/img-s.jpg") bottom center no-repeat;
  color: #fff;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  float: right;
  padding: 70px 40px;
  border-bottom-right-radius: 8px;
  border-top-right-radius: 8px; }
  .npt-contact .container .row .npt-contact-add .npt-lable {
    color: #fff;
    letter-spacing: -0.1px;
    text-transform: uppercase;
    max-width: 360px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    display: -webkit-box; }
    .npt-contact .container .row .npt-contact-add .npt-lable b {
      font-weight: 700;
      width: 100%;
      float: left; }
  .npt-contact .container .row .npt-contact-add .npt-contact-address {
    padding-top: 50px; }
    .npt-contact .container .row .npt-contact-add .npt-contact-address ul li {
      color: #fff;
      font-size: 18px;
      line-height: 27px;
      font-weight: 400;
      float: left;
      width: 100%;
      margin-bottom: 25px;
      font-family: 'Open Sans', sans-serif; }
      .npt-contact .container .row .npt-contact-add .npt-contact-address ul li .row span a {
        color: #fff; }
      .npt-contact .container .row .npt-contact-add .npt-contact-address ul li .row .icon {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 12.666667%;
        flex: 0 0 12.666667%;
        max-width: 12.666667%;
        font-size: 26px; }
      .npt-contact .container .row .npt-contact-add .npt-contact-address ul li .row .txt {
        -webkit-box-flex: 0;
        -ms-flex: 0 0 87.333333%;
        flex: 0 0 87.333333%;
        max-width: 87.333333%;
        font-family: 'Open Sans', sans-serif;
        font-weight: 400;
        letter-spacing: -0.1px; }
.npt-contact .npt-contact-in {
  box-shadow: 0 0px 3px 3px rgba(0, 0, 0, 0.1);
  background: #fff;
  border-radius: 8px; }

.npt-contact-map img {
  width: 100%; }

.container .row .npt-highlight-in .row .npt-highlight-left {
  padding-right: 10px; }
  .container .row .npt-highlight-in .row .npt-highlight-left .npt-highlight-list li {
    float: left;
    margin-bottom: 23px;
    padding-bottom: 23px;
    border-bottom: 1px solid #e1e1e1;
    width: 100%; }
    .container .row .npt-highlight-in .row .npt-highlight-left .npt-highlight-list li .thumbs {
      width: 210px;
      float: left;
      margin-right: 20px; }
      .container .row .npt-highlight-in .row .npt-highlight-left .npt-highlight-list li .thumbs a .img-fluid {
        width: 100%; }
    .container .row .npt-highlight-in .row .npt-highlight-left .npt-highlight-list li .content-new a h3 {
      font-size: 20px;
      color: #222;
      letter-spacing: -0.1px;
      line-height: 25px;
      font-family: 'Open Sans', sans-serif;
      font-weight: 700; }
    .container .row .npt-highlight-in .row .npt-highlight-left .npt-highlight-list li .content-new .sampo {
      font-size: 13px;
      font-family: Arial;
      color: #777777;
      line-height: 19px;
      height: 57px;
      overflow: hidden;
      display: inline-block;
      display: -webkit-box;
      -webkit-line-clamp: 3;
      -webkit-box-orient: vertical;
      padding-bottom: 0px;
      margin-bottom: 0px; }
  .container .row .npt-highlight-in .row .npt-highlight-left .npt-highlight-list li:first-child .thumbs {
    width: 100%;
    float: left;
    margin-right: 0px;
    margin-bottom: 20px; }
  .container .row .npt-highlight-in .row .npt-highlight-left .npt-highlight-list li:first-child .content-new a h3 {
    line-height: 38px;
    margin-bottom: 20px; }
  .container .row .npt-highlight-in .row .npt-highlight-left .npt-highlight-list li:first-child .content-new .sampo {
    margin-bottom: 0px; }
  .container .row .npt-highlight-in .row .npt-highlight-left .npt-highlight-list li:last-child {
    border-bottom: 0px;
    padding-bottom: 0px;
    margin-bottom: 0px; }
.container .row .npt-highlight-in .row .npt-highlight-right .npt-highlight-list li {
  float: left;
  margin-bottom: 21px;
  width: 100%; }
  .container .row .npt-highlight-in .row .npt-highlight-right .npt-highlight-list li .thumbs {
    width: 195px;
    max-height: 110px;
    overflow: hidden;
    float: left;
    margin-right: 20px;
    position: relative; }
    .container .row .npt-highlight-in .row .npt-highlight-right .npt-highlight-list li .thumbs a .img-fluid {
      width: 100%;
      height: 100%;
      object-fit: cover; }
    .container .row .npt-highlight-in .row .npt-highlight-right .npt-highlight-list li .thumbs a .icon-play-50 {
      background: url("../img/img-all/icon-play-50.png") top center no-repeat;
      width: 31px;
      height: 31px;
      position: absolute;
      bottom: 12px;
      left: 12px;
      opacity: 0.67; }
  .container .row .npt-highlight-in .row .npt-highlight-right .npt-highlight-list li .content-new a h3 {
    font-size: 16px;
    color: #222;
    letter-spacing: -0.1px;
    line-height: 22px;
    font-family: 'Open Sans', sans-serif;
    font-weight: 600; }
  .container .row .npt-highlight-in .row .npt-highlight-right .npt-highlight-list li .content-new .time {
    font-size: 13px;
    font-family: 'Open Sans', sans-serif;
    color: #888;
    line-height: 19px; }
.container .row .npt-highlight-in .row .npt-highlight-right .npt-highlight-list li:last-child {
  border-bottom: 0px;
  padding-bottom: 0px;
  margin-bottom: 0px; }
.container .row .npt-highlight-in .row .npt-highlight-right .npt-list-adv {
  float: left;
  width: 100%; }
  .container .row .npt-highlight-in .row .npt-highlight-right .npt-list-adv li {
    float: left;
    width: 100%;
    margin-top: 20px; }
    .container .row .npt-highlight-in .row .npt-highlight-right .npt-list-adv li img {
      width: 100%; }

.npt-list-invest .container .row .item-list {
  border: 2px solid #37424b;
  border-radius: 50px;
  text-align: left !important;
  margin: 0px;
  padding: 0px 40px 0px 0px !important;
  min-height: 100px; }
  .npt-list-invest .container .row .item-list .hi-icon {
    background: #fff;
    text-align: center;
    margin: -2px;
    padding: 0em !important;
    display: inline-block;
    font-size: 0px;
    float: left;
    cursor: pointer;
    width: 100px;
    height: 100px;
    border: 5px solid #37424b;
    border-radius: 50%;
    position: relative;
    z-index: 1;
    box-shadow: 0 0 0 0px white;
    line-height: 94px; }
    .npt-list-invest .container .row .item-list .hi-icon:hover {
      background: #fff;
      border: 5px solid #37424b;
      box-shadow: 0 0 0 8px rgba(55, 66, 75, 0.3); }
  .npt-list-invest .container .row .item-list .u-block-hover .js-counter {
    color: #202f36 !important;
    font-family: 'Oswald';
    font-weight: 400;
    font-size: 54px;
    float: left;
    line-height: 94px;
    width: 140px;
    text-align: right;
    padding-right: 20px; }
  .npt-list-invest .container .row .item-list .u-block-hover .h4 {
    color: #202f36 !important;
    font-weight: 400;
    font-size: 15px;
    line-height: 22px;
    letter-spacing: -0.1px;
    text-align: left;
    position: absolute;
    top: 52%;
    left: 35%;
    transform: translate(0%, -50%);
    display: inline-block;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 0rem; }

.npt-for {
  background: url("../img/ptbv/bg-ptbv.jpg") center top no-repeat;
  min-height: 680px; }
  .npt-for .container .row .col-md-4 .npt-for-item {
    background: #fff;
    min-height: 500px;
    text-align: center;
    border-radius: 15px;
    padding-left: 45px;
    padding-right: 45px;
    padding-top: 84px; }

.npt-invest-slide {
  background: url("../img/ptbv/img-4right.png") right top no-repeat;
  position: relative;
  height: 430px; }
  .npt-invest-slide:after {
    background: url("../img/ptbv/img-4left.png") left top no-repeat;
    position: absolute;
    content: "";
    top: 0px;
    left: 0px;
    width: 700px;
    height: 430px;
    z-index: 1; }
  .npt-invest-slide .container {
    background: #fff;
    box-shadow: 0px 2px 3px rgba(0, 0, 0, 0.2);
    height: 430px;
    z-index: 2;
    position: relative; }
    .npt-invest-slide .container .js-carousel .js-slide .row .number {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 36.666667%;
      flex: -5 0 36.666667%;
      max-width: 36.666667%;
      color: #164397 !important;
      font-family: 'Oswald';
      font-weight: 600;
      font-size: 200px;
      float: left;
      min-height: 280px;
      line-height: 274px;
      letter-spacing: -10px;
      background: url("../img/ptbv/line1.png") top right repeat-y;
      text-align: center; }
    .npt-invest-slide .container .js-carousel .js-slide .row .content {
      -webkit-box-flex: 0;
      -ms-flex: 0 0 58.333333%;
      flex: 0 0 60.333333%;
      max-width: 60.333333%;
      padding-left: 50px;
      padding-right: 40px; }
      .npt-invest-slide .container .js-carousel .js-slide .row .content h1 {
        color: #164397 !important;
        font-family: 'Oswald';
        font-weight: 300;
        font-size: 48px;
        float: left;
        line-height: 64px;
        text-align: left;
        letter-spacing: -0.2px;
        padding-bottom: 20px; }
        .npt-invest-slide .container .js-carousel .js-slide .row .content h1 b {
          font-weight: 600; }
      .npt-invest-slide .container .js-carousel .js-slide .row .content .linkShare {
        color: #fff;
        background: #164397;
        font-family: 'Oswald';
        font-weight: 300;
        font-size: 24px;
        height: 48px;
        line-height: 48px;
        text-align: center;
        padding: 6px 31px;
        border-radius: 6px; }
    .npt-invest-slide .container .js-carousel .js-pagination {
      top: 1px; }
      .npt-invest-slide .container .js-carousel .js-pagination li span {
        background: #164397;
        width: 30px;
        border: 3px solid #fff;
        height: 30px; }

.npt-pressRelease .container .row .npt-pressRelease-in .npt-lable {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 72.88888%;
  flex: 0 0 72.88888%;
  max-width: 72.88888%;
  padding-left: 10px;
  padding-right: 10px; }
.npt-pressRelease .container .row .npt-pressRelease-in .row .npt-pressRelease-left {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 72.88888%;
  flex: 0 0 72.88888%;
  max-width: 72.88888%; }
  .npt-pressRelease .container .row .npt-pressRelease-in .row .npt-pressRelease-left .npt-highlight-list li {
    width: 100%;
    border: 1px solid #e1e1e1;
    min-height: 200px;
    float: left;
    margin-bottom: 20px; }
    .npt-pressRelease .container .row .npt-pressRelease-in .row .npt-pressRelease-left .npt-highlight-list li .thumbs {
      width: 38.55555555%;
      float: left;
      height: 100%;
      overflow: hidden;
      margin-right: 25px; }
      .npt-pressRelease .container .row .npt-pressRelease-in .row .npt-pressRelease-left .npt-highlight-list li .thumbs a .img-fluid {
        width: 100%;
        object-fit: cover;
        height: 100%;
        min-height: 200px; }
    .npt-pressRelease .container .row .npt-pressRelease-in .row .npt-pressRelease-left .npt-highlight-list li .content-new {
      padding: 25px; }
      .npt-pressRelease .container .row .npt-pressRelease-in .row .npt-pressRelease-left .npt-highlight-list li .content-new a .title {
        font-size: 18px;
        color: #222;
        letter-spacing: -0.1px;
        line-height: 24px;
        font-family: 'Open Sans', sans-serif;
        font-weight: 700;
        max-height: 72px;
        overflow: hidden;
        display: inline-block;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        margin-bottom: 15px; }
      .npt-pressRelease .container .row .npt-pressRelease-in .row .npt-pressRelease-left .npt-highlight-list li .content-new .time-day {
        font-size: 13px;
        font-family: Arial;
        color: #888888;
        padding-bottom: 10px;
        margin-bottom: 0px; }
      .npt-pressRelease .container .row .npt-pressRelease-in .row .npt-pressRelease-left .npt-highlight-list li .content-new .sampo {
        font-size: 14px;
        font-family: Arial;
        color: #444;
        line-height: 19px;
        height: 56px;
        overflow: hidden;
        display: inline-block;
        display: -webkit-box;
        -webkit-line-clamp: 3;
        -webkit-box-orient: vertical;
        padding-bottom: 0px;
        margin-bottom: 0px; }
.npt-pressRelease .container .row .npt-pressRelease-in .row .npt-pressRelease-right {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 27.111111%;
  flex: 0 0 27.111111%;
  max-width: 27.111111%; }
  .npt-pressRelease .container .row .npt-pressRelease-in .row .npt-pressRelease-right .npt-new-TBdb .npt-lable {
    width: 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
    padding-left: 0px !important;
    padding-right: 0px; }
    .npt-pressRelease .container .row .npt-pressRelease-in .row .npt-pressRelease-right .npt-new-TBdb .npt-lable a h2 {
      font-size: 18px !important; }
      .npt-pressRelease .container .row .npt-pressRelease-in .row .npt-pressRelease-right .npt-new-TBdb .npt-lable a h2::after, .npt-pressRelease .container .row .npt-pressRelease-in .row .npt-pressRelease-right .npt-new-TBdb .npt-lable a h2::before {
        display: none; }
    .npt-pressRelease .container .row .npt-pressRelease-in .row .npt-pressRelease-right .npt-new-TBdb .npt-lable a::after, .npt-pressRelease .container .row .npt-pressRelease-in .row .npt-pressRelease-right .npt-new-TBdb .npt-lable a::before {
      display: none; }
  .npt-pressRelease .container .row .npt-pressRelease-in .row .npt-pressRelease-right .npt-new-TBdb .list-news-new {
    border-left: 1px solid #e1e1e1;
    border-right: 1px solid #e1e1e1;
    border-bottom: 1px solid #e1e1e1;
    padding: 15px 13px;
    min-height: 667px;
    max-height: 667px; }
    .npt-pressRelease .container .row .npt-pressRelease-in .row .npt-pressRelease-right .npt-new-TBdb .list-news-new li {
      padding-bottom: 17px; }
      .npt-pressRelease .container .row .npt-pressRelease-in .row .npt-pressRelease-right .npt-new-TBdb .list-news-new li a h3 {
        padding-bottom: 0px !important;
        font-weight: 400; }
      .npt-pressRelease .container .row .npt-pressRelease-in .row .npt-pressRelease-right .npt-new-TBdb .list-news-new li:first-child a h3 {
        font-weight: 600; }

.npt-onNews .container .row {
  margin-right: -7.5px;
  margin-left: -7.5px; }
  .npt-onNews .container .row .npt-onNews-in .npt-onNews-list {
    text-align: center; }
    .npt-onNews .container .row .npt-onNews-in .npt-onNews-list .npt-news-list li {
      width: 100%;
      min-height: 190px;
      float: left;
      text-align: left;
      margin-bottom: 30px; }
      .npt-onNews .container .row .npt-onNews-in .npt-onNews-list .npt-news-list li .logo-web {
        width: 180px;
        min-height: 190px;
        float: left;
        position: relative; }
        .npt-onNews .container .row .npt-onNews-in .npt-onNews-list .npt-news-list li .logo-web a {
          position: absolute;
          top: 50%;
          left: 0px;
          transform: translate(0%, -50%);
          max-width: 150px; }
          .npt-onNews .container .row .npt-onNews-in .npt-onNews-list .npt-news-list li .logo-web a img {
            max-width: 150px;
            height: auto; }
      .npt-onNews .container .row .npt-onNews-in .npt-onNews-list .npt-news-list li .news-web {
        width: 84%;
        border: 1px solid #e1e1e1;
        min-height: 190px;
        float: left; }
        .npt-onNews .container .row .npt-onNews-in .npt-onNews-list .npt-news-list li .news-web .thumbs {
          width: 260px;
          float: left;
          height: 100%;
          overflow: hidden;
          margin-right: 25px;
          min-height: 190px;
          position: relative; }
          .npt-onNews .container .row .npt-onNews-in .npt-onNews-list .npt-news-list li .news-web .thumbs a .img-fluid {
            width: 100%;
            object-fit: cover;
            height: 100%;
            min-height: 190px; }
          .npt-onNews .container .row .npt-onNews-in .npt-onNews-list .npt-news-list li .news-web .thumbs a .play-video-big {
            width: 100%;
            height: 100%;
            position: absolute;
            top: 0px;
            left: 0px;
            z-index: 2;
            opacity: 0.7;
            background: url(../img/img-all/icon-play-60.png) center center no-repeat; }
          .npt-onNews .container .row .npt-onNews-in .npt-onNews-list .npt-news-list li .news-web .thumbs:hover a .play-video-big {
            opacity: 1; }
        .npt-onNews .container .row .npt-onNews-in .npt-onNews-list .npt-news-list li .news-web .content-new {
          padding: 18px 25px 18px 20px; }
          .npt-onNews .container .row .npt-onNews-in .npt-onNews-list .npt-news-list li .news-web .content-new a .title {
            font-size: 18px;
            color: #222;
            letter-spacing: -0.1px;
            line-height: 24px;
            font-family: 'Open Sans', sans-serif;
            font-weight: 700;
            max-height: 72px;
            overflow: hidden;
            display: inline-block;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            margin-bottom: 12px; }
          .npt-onNews .container .row .npt-onNews-in .npt-onNews-list .npt-news-list li .news-web .content-new .time-day {
            font-size: 14px;
            font-family: Arial;
            color: #888888;
            padding-bottom: 8px;
            margin-bottom: 0px; }
          .npt-onNews .container .row .npt-onNews-in .npt-onNews-list .npt-news-list li .news-web .content-new .sampo {
            font-size: 14px;
            font-family: Arial;
            color: #666;
            line-height: 19px;
            height: 39px;
            overflow: hidden;
            display: inline-block;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            padding-bottom: 0px;
            margin-bottom: 5px; }
          .npt-onNews .container .row .npt-onNews-in .npt-onNews-list .npt-news-list li .news-web .content-new .link-hover-r {
            font-size: 13px; }
    .npt-onNews .container .row .npt-onNews-in .npt-onNews-list .link-hover-all {
      font-size: 18px;
      border: 1px solid #e1e1e1;
      border-radius: 6px;
      height: 60px;
      min-width: 200px;
      line-height: 60px;
      text-align: center;
      font-weight: 400;
      display: inline-block; }

.npt-for-communication .container .row .npt-communication-left .npt-document-list {
  float: left;
  width: 100%;
  padding-top: 8px; }
  .npt-for-communication .container .row .npt-communication-left .npt-document-list li {
    float: left;
    width: 100%;
    border-bottom: 1px solid #e1e1e1;
    height: 68px;
    line-height: 68px;
    position: relative; }
    .npt-for-communication .container .row .npt-communication-left .npt-document-list li .time-day {
      position: absolute;
      top: 50%;
      left: 0px;
      transform: translate(0%, -50%);
      background: #737a81;
      line-height: 34px;
      height: 34px;
      letter-spacing: -0.1px;
      color: #fff;
      font-size: 18px;
      float: left;
      width: 100px;
      font-family: 'Oswald';
      padding-left: 10px;
      font-weight: 300; }
      .npt-for-communication .container .row .npt-communication-left .npt-document-list li .time-day:before {
        position: absolute;
        content: "";
        border-top: 17px solid transparent;
        border-bottom: 17px solid transparent;
        border-left: 12px solid #737a81;
        right: -12px; }
    .npt-for-communication .container .row .npt-communication-left .npt-document-list li .title-document {
      padding-left: 125px;
      max-width: 86%;
      float: left;
      line-height: 68px; }
      .npt-for-communication .container .row .npt-communication-left .npt-document-list li .title-document .title {
        line-height: 68px;
        letter-spacing: -0.1px;
        color: #222;
        font-size: 15px;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
        padding-bottom: 0px;
        margin-bottom: 0px; }
    .npt-for-communication .container .row .npt-communication-left .npt-document-list li .download-document {
      float: right;
      line-height: 66px; }
    .npt-for-communication .container .row .npt-communication-left .npt-document-list li:hover h6 {
      color: #164397 !important; }

.npt-book .container .npt-lable-13 h2, .npt-book .npt-core-values .container .row .npt-core-values-left .npt-lable h2, .npt-core-values .npt-book .container .row .npt-core-values-left .npt-lable h2, .npt-book .npt-strategic-objectives .container .npt-strategic-objectives-lable .npt-lable h2, .npt-strategic-objectives .npt-book .container .npt-strategic-objectives-lable .npt-lable h2, .npt-book .npt-pressRelease .container .row .npt-pressRelease-in .npt-lable h2, .npt-pressRelease .npt-book .container .row .npt-pressRelease-in .npt-lable h2, .npt-book .npt-history-milestone .container .row .npt-core-values-left .npt-lable h2, .npt-history-milestone .npt-book .container .row .npt-core-values-left .npt-lable h2, .npt-book .npt-power-system .container .npt-power-system-lable .npt-lable h2, .npt-power-system .npt-book .container .npt-power-system-lable .npt-lable h2 {
  margin-bottom: 0rem; }
  .npt-book .container .npt-lable-13 h2:after, .npt-book .npt-core-values .container .row .npt-core-values-left .npt-lable h2:after, .npt-core-values .npt-book .container .row .npt-core-values-left .npt-lable h2:after, .npt-book .npt-strategic-objectives .container .npt-strategic-objectives-lable .npt-lable h2:after, .npt-strategic-objectives .npt-book .container .npt-strategic-objectives-lable .npt-lable h2:after, .npt-book .npt-pressRelease .container .row .npt-pressRelease-in .npt-lable h2:after, .npt-pressRelease .npt-book .container .row .npt-pressRelease-in .npt-lable h2:after, .npt-book .npt-history-milestone .container .row .npt-core-values-left .npt-lable h2:after, .npt-history-milestone .npt-book .container .row .npt-core-values-left .npt-lable h2:after, .npt-book .npt-power-system .container .npt-power-system-lable .npt-lable h2:after, .npt-power-system .npt-book .container .npt-power-system-lable .npt-lable h2:after, .npt-book .container .npt-lable-13 h2:before, .npt-book .npt-core-values .container .row .npt-core-values-left .npt-lable h2:before, .npt-core-values .npt-book .container .row .npt-core-values-left .npt-lable h2:before, .npt-book .npt-strategic-objectives .container .npt-strategic-objectives-lable .npt-lable h2:before, .npt-strategic-objectives .npt-book .container .npt-strategic-objectives-lable .npt-lable h2:before, .npt-book .npt-pressRelease .container .row .npt-pressRelease-in .npt-lable h2:before, .npt-pressRelease .npt-book .container .row .npt-pressRelease-in .npt-lable h2:before, .npt-book .npt-history-milestone .container .row .npt-core-values-left .npt-lable h2:before, .npt-history-milestone .npt-book .container .row .npt-core-values-left .npt-lable h2:before, .npt-book .npt-power-system .container .npt-power-system-lable .npt-lable h2:before, .npt-power-system .npt-book .container .npt-power-system-lable .npt-lable h2:before {
    display: none !important; }

.npt-video .container .row .npt-news .npt-lable a h2 {
  text-transform: none !important;
  font-size: 24px !important; }
  .npt-video .container .row .npt-news .npt-lable a h2:after, .npt-video .container .row .npt-news .npt-lable a h2:before {
    display: none !important; }
.npt-video .container .row .npt-news .npt-lable .link-hover-r {
  font-size: 18px !important; }

.npt-press-contact .container .npt-contact-in {
  min-height: 415px;
  margin-top: 50px;
  box-shadow: 0 0px 3px 3px rgba(0, 0, 0, 0.1);
  background: #fff;
  border-radius: 8px; }
  .npt-press-contact .container .npt-contact-in .npt-contact-add {
    background: #164397 url(../img/img-all/bg-contact.png) top left no-repeat;
    border-bottom-right-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom-left-radius: 8px;
    border-top-left-radius: 8px;
    padding: 150px 70px 0px 40px !important; }
    .npt-press-contact .container .npt-contact-in .npt-contact-add .npt-lable {
      max-width: 77% !important;
      color: #fff;
      letter-spacing: -0.1px;
      margin: 0 auto;
      text-align: center;
      position: relative;
      display: -webkit-box; }
      .npt-press-contact .container .npt-contact-in .npt-contact-add .npt-lable h2 {
        color: #fff;
        line-height: 44px;
        width: 100%;
        font-size: 30px !important;
        font-family: 'Oswald';
        font-weight: 300; }
        .npt-press-contact .container .npt-contact-in .npt-contact-add .npt-lable h2::before {
          width: 100%;
          height: 1px;
          background: rgba(255, 255, 255, 0.5);
          position: absolute;
          bottom: -15px;
          left: 0px !important;
          content: "";
          transform: translate(0%, 0%) !important; }
        .npt-press-contact .container .npt-contact-in .npt-contact-add .npt-lable h2::after {
          width: 40%;
          height: 3px;
          background: #fff;
          position: absolute;
          bottom: -16px;
          content: "";
          left: 50%;
          transform: translate(-50%, 0%); }
        .npt-press-contact .container .npt-contact-in .npt-contact-add .npt-lable h2 b {
          font-weight: 600; }
    .npt-press-contact .container .npt-contact-in .npt-contact-add .npt-contact-address {
      padding-top: 40px; }
      .npt-press-contact .container .npt-contact-in .npt-contact-add .npt-contact-address ul li {
        color: #fff;
        font-size: 15px;
        line-height: 27px;
        font-weight: 400;
        float: left;
        width: 100%;
        margin-bottom: 10px;
        padding-left: 30px;
        font-family: 'Open Sans', sans-serif; }
        .npt-press-contact .container .npt-contact-in .npt-contact-add .npt-contact-address ul li .row .icon {
          -webkit-box-flex: 0;
          -ms-flex: 0 0 12.666667%;
          flex: 0 0 12.666667%;
          max-width: 12.666667%;
          font-size: 20px;
          padding: 0px;
          text-align: right; }
        .npt-press-contact .container .npt-contact-in .npt-contact-add .npt-contact-address ul li .row .txt {
          -webkit-box-flex: 0;
          -ms-flex: 0 0 87.333333%;
          flex: 0 0 87.333333%;
          max-width: 87.333333%;
          font-family: 'Open Sans', sans-serif;
          font-weight: 400;
          letter-spacing: -0.1px; }
          .npt-press-contact .container .npt-contact-in .npt-contact-add .npt-contact-address ul li .row .txt a {
            color: #fff; }
  .npt-press-contact .container .npt-contact-in .npt-contact-form {
    padding: 40px 60px 30px 60px; }
    .npt-press-contact .container .npt-contact-in .npt-contact-form .npt-lable-contact {
      position: relative;
      width: 100%;
      float: left;
      font-family: 'Open Sans', sans-serif !important; }
      .npt-press-contact .container .npt-contact-in .npt-contact-form .npt-lable-contact:after, .npt-press-contact .container .npt-contact-in .npt-contact-form .npt-lable-contact:before {
        display: none; }
      .npt-press-contact .container .npt-contact-in .npt-contact-form .npt-lable-contact h2 {
        font-family: 'Open Sans', sans-serif !important;
        font-size: 18px;
        font-weight: 600; }
    .npt-press-contact .container .npt-contact-in .npt-contact-form form {
      width: 100%;
      float: left; }
      .npt-press-contact .container .npt-contact-in .npt-contact-form form .npt-contact-form-in {
        padding-top: 10px;
        letter-spacing: -0.1px;
        font-family: "Open Sans"; }
        .npt-press-contact .container .npt-contact-in .npt-contact-form form .npt-contact-form-in .row .col-sm-3 {
          text-align: left;
          padding-right: 0px; }
          .npt-press-contact .container .npt-contact-in .npt-contact-form form .npt-contact-form-in .row .col-sm-3 span {
            font-size: 14px;
            color: #666666;
            line-height: 34px; }
          .npt-press-contact .container .npt-contact-in .npt-contact-form form .npt-contact-form-in .row .col-sm-3 i {
            font-size: 20px;
            color: #888888;
            line-height: 34px;
            float: LEFT;
            width: 30px; }
        .npt-press-contact .container .npt-contact-in .npt-contact-form form .npt-contact-form-in .row .col-sm-9 p .npt-input {
          height: 34px;
          line-height: 34px;
          border: 1px solid #e1e1e1;
          width: 100%;
          border-radius: 4px;
          color: #888888;
          font-size: 14px;
          padding: 0px 15px; }
        .npt-press-contact .container .npt-contact-in .npt-contact-form form .npt-contact-form-in .row .col-sm-9 .npt-input-textarea {
          height: 100px;
          line-height: 19px;
          border: 1px solid #e1e1e1;
          width: 100%;
          border-radius: 4px;
          color: #888888;
          font-size: 14px;
          padding: 0px 15px; }
        .npt-press-contact .container .npt-contact-in .npt-contact-form form .npt-contact-form-in .npt-sudmit {
          margin-top: 20px;
          height: 40px;
          line-height: 38px;
          padding: 0px 20px;
          border-radius: 4px;
          border: 0px;
          background: #194598;
          color: #fff;
          font-size: 14px;
          text-align: center;
          cursor: pointer; }

.npt-onNews-right .npt-onNews-in .npt-lable {
  width: 100% !important;
  flex: 0 0 100% !important;
  max-width: 100% !important;
  padding-left: 0px !important;
  padding-right: 0px !important;
  font-size: 20px !important; }
  .npt-onNews-right .npt-onNews-in .npt-lable h2 {
    padding: 0px !important;
    font-size: 20px !important; }
.npt-onNews-right .npt-onNews-in .npt-onNews-list {
  text-align: center; }
  .npt-onNews-right .npt-onNews-in .npt-onNews-list .npt-news-list li {
    width: 100%;
    min-height: 100px !important;
    float: left;
    text-align: left;
    margin-bottom: 15px !important; }
    .npt-onNews-right .npt-onNews-in .npt-onNews-list .npt-news-list li .logo-web {
      width: 180px;
      min-height: 100px !important;
      float: left;
      position: relative; }
      .npt-onNews-right .npt-onNews-in .npt-onNews-list .npt-news-list li .logo-web a {
        position: absolute;
        top: 50%;
        left: 0px;
        transform: translate(0%, -50%);
        max-width: 150px; }
        .npt-onNews-right .npt-onNews-in .npt-onNews-list .npt-news-list li .logo-web a img {
          max-width: 150px;
          height: auto; }
    .npt-onNews-right .npt-onNews-in .npt-onNews-list .npt-news-list li .news-web {
      width: 100%;
      border: 0px solid #e1e1e1;
      min-height: 100px;
      float: left; }
      .npt-onNews-right .npt-onNews-in .npt-onNews-list .npt-news-list li .news-web .thumbs {
        width: 140px;
        float: left;
        height: 100px;
        overflow: hidden;
        margin-right: 10px;
        min-height: 100px;
        position: relative; }
        .npt-onNews-right .npt-onNews-in .npt-onNews-list .npt-news-list li .news-web .thumbs a .img-fluid {
          width: 100%;
          object-fit: cover;
          height: 100%;
          min-height: 100px !important; }
        .npt-onNews-right .npt-onNews-in .npt-onNews-list .npt-news-list li .news-web .thumbs a .play-video-big {
          width: 100%;
          height: 100%;
          position: absolute;
          top: 0px;
          left: 0px;
          z-index: 2;
          opacity: 0.7;
          background: url(../img/img-all/icon-play-60.png) center center no-repeat; }
        .npt-onNews-right .npt-onNews-in .npt-onNews-list .npt-news-list li .news-web .thumbs:hover a .play-video-big {
          opacity: 1; }
      .npt-onNews-right .npt-onNews-in .npt-onNews-list .npt-news-list li .news-web .content-new {
        padding: 0px 0px 0px 20px; }
        .npt-onNews-right .npt-onNews-in .npt-onNews-list .npt-news-list li .news-web .content-new a .title {
          font-size: 14px;
          color: #222;
          letter-spacing: -0.1px;
          line-height: 20px;
          font-family: 'Open Sans', sans-serif;
          font-weight: 400;
          max-height: 100%;
          overflow: hidden;
          display: inline-block;
          display: -webkit-box;
          -webkit-line-clamp: 5 !important;
          -webkit-box-orient: vertical;
          margin-bottom: 0px !important; }
        .npt-onNews-right .npt-onNews-in .npt-onNews-list .npt-news-list li .news-web .content-new .time-day {
          font-size: 14px;
          font-family: Arial;
          color: #888888;
          padding-bottom: 8px;
          margin-bottom: 0px; }
        .npt-onNews-right .npt-onNews-in .npt-onNews-list .npt-news-list li .news-web .content-new .sampo {
          font-size: 14px;
          font-family: Arial;
          color: #666;
          line-height: 19px;
          height: 39px;
          overflow: hidden;
          display: inline-block;
          display: -webkit-box;
          -webkit-line-clamp: 2;
          -webkit-box-orient: vertical;
          padding-bottom: 0px;
          margin-bottom: 5px; }
        .npt-onNews-right .npt-onNews-in .npt-onNews-list .npt-news-list li .news-web .content-new .link-hover-r {
          font-size: 13px; }
  .npt-onNews-right .npt-onNews-in .npt-onNews-list .link-hover-all {
    font-size: 18px;
    border: 1px solid #e1e1e1;
    border-radius: 6px;
    height: 60px;
    min-width: 200px;
    line-height: 60px;
    text-align: center;
    font-weight: 400;
    display: inline-block; }

.npt-new-TBdb-In .list-news-new {
  min-height: 10px !important;
  max-height: 667px !important;
  padding: 15px 13px 0px 13px; }

.npt-video-right .npt-news-list li:first-child,
.npt-video-right .npt-news-list li:first-child .thumbs {
  width: 100% !important; }

.npt-video-right .npt-news-list li:first-child .thumbs {
  width: 100% !important;
  height: 200px !important; }

.npt-video-right .npt-news-list li {
  width: 48% !important; }

.npt-video-right .npt-news-list li:nth-of-type(3),
.npt-video-right .npt-news-list li:nth-of-type(5),
.npt-video-right .npt-news-list li:nth-of-type(7) {
  float: right !important; }

.npt-video-right .npt-news-list li
.news-web .content-new {
  padding: 10px 0px 0px 0px !important;
  float: left;
  width: 100% !important; }

.npt-video-right .npt-news-list li .thumbs {
  width: 100% !important;
  float: left;
  height: 89px !important; }

.npt-video-right .npt-news-list li .news-web .content-new a .title {
  -webkit-line-clamp: 3 !important;
  height: 60px; }

.npt-video-right .npt-news-list li:first-child .news-web .content-new a .title {
  font-weight: 700 !important; }

.npt-pressRelease-in .npt-onNews-list {
  text-align: center; }
  .npt-pressRelease-in .npt-onNews-list .npt-news-list li {
    width: 100%;
    min-height: 190px;
    float: left;
    text-align: left;
    margin-bottom: 30px; }
    .npt-pressRelease-in .npt-onNews-list .npt-news-list li .news-web {
      width: 100% !important;
      border: 1px solid #e1e1e1;
      min-height: 190px;
      float: left; }
      .npt-pressRelease-in .npt-onNews-list .npt-news-list li .news-web .thumbs {
        width: 260px;
        float: left;
        height: 100%;
        overflow: hidden;
        margin-right: 25px;
        min-height: 190px;
        position: relative; }
        .npt-pressRelease-in .npt-onNews-list .npt-news-list li .news-web .thumbs a .img-fluid {
          width: 100%;
          object-fit: cover;
          height: 100%;
          min-height: 190px; }
        .npt-pressRelease-in .npt-onNews-list .npt-news-list li .news-web .thumbs a .play-video-big {
          width: 100%;
          height: 100%;
          position: absolute;
          top: 0px;
          left: 0px;
          z-index: 2;
          opacity: 0.7;
          background: url(../img/img-all/icon-play-60.png) center center no-repeat; }
        .npt-pressRelease-in .npt-onNews-list .npt-news-list li .news-web .thumbs:hover a .play-video-big {
          opacity: 1; }
      .npt-pressRelease-in .npt-onNews-list .npt-news-list li .news-web .npt-show-mobi {
        display: block !important; }
      .npt-pressRelease-in .npt-onNews-list .npt-news-list li .news-web .npt-show-mobi img {
        height: 24px; }
      .npt-pressRelease-in .npt-onNews-list .npt-news-list li .news-web .content-new {
        padding: 18px 25px 18px 20px; }
        .npt-pressRelease-in .npt-onNews-list .npt-news-list li .news-web .content-new a .title {
          font-size: 18px;
          color: #222;
          letter-spacing: -0.1px;
          line-height: 24px;
          font-family: 'Open Sans', sans-serif;
          font-weight: 700;
          max-height: 72px;
          overflow: hidden;
          display: inline-block;
          display: -webkit-box;
          -webkit-line-clamp: 2;
          -webkit-box-orient: vertical;
          margin-bottom: 12px; }
        .npt-pressRelease-in .npt-onNews-list .npt-news-list li .news-web .content-new .time-day {
          font-size: 14px;
          font-family: Arial;
          color: #888888;
          padding-bottom: 8px;
          margin-bottom: 0px; }
        .npt-pressRelease-in .npt-onNews-list .npt-news-list li .news-web .content-new .sampo {
          font-size: 14px;
          font-family: Arial;
          color: #666;
          line-height: 19px;
          height: 39px;
          overflow: hidden;
          display: inline-block;
          display: -webkit-box;
          -webkit-line-clamp: 2;
          -webkit-box-orient: vertical;
          padding-bottom: 0px;
          margin-bottom: 0px; }
        .npt-pressRelease-in .npt-onNews-list .npt-news-list li .news-web .content-new .link-hover-r {
          font-size: 13px; }
  .npt-pressRelease-in .npt-onNews-list .link-hover-all {
    font-size: 18px;
    border: 1px solid #e1e1e1;
    border-radius: 6px;
    height: 60px;
    min-width: 200px;
    line-height: 60px;
    text-align: center;
    font-weight: 400;
    display: inline-block; }

.npt-development-strategy {
  background: #f4f4f4 url("../img/ve-npt/bg-Development-strategy.png") center bottom no-repeat; }
  .npt-development-strategy .container .row .npt-development-strategy-in .h3 {
    color: #666666;
    line-height: 22px;
    font-family: 'Oswald';
    font-weight: 300;
    font-size: 24px;
    text-align: center;
    width: 100%;
    padding-top: 30px; }
  .npt-development-strategy .container .row .npt-development-strategy-in .row .col-3 .u-block-hover h3 {
    color: #37424b;
    line-height: 22px;
    font-family: 'Oswald';
    font-weight: 400; }
  .npt-development-strategy .container .row .npt-development-strategy-in .row .col-3 .u-block-hover p {
    padding-top: 10px;
    color: #37424b;
    line-height: 20px;
    font-family: Arial, "Helvetica Neue", Helvetica, Arial, sans-serif;
    font-weight: 400;
    font-size: 15px !important; }

.npt-solution .container .row-header {
  padding-bottom: 25px; }
  .npt-solution .container .row-header .item-list-col-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 31%;
    flex: 1 0 31%;
    max-width: 31%; }
  .npt-solution .container .row-header .item-list-col-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 23%;
    flex: 1 0 23%;
    max-width: 23%;
    position: relative; }
    .npt-solution .container .row-header .item-list-col-2:before {
      position: absolute;
      height: 2px;
      width: 61%;
      background: #f23c8b;
      top: 45px;
      left: 115px;
      content: ""; }
    .npt-solution .container .row-header .item-list-col-2 h4 {
      color: #f23c8b;
      font-weight: 600;
      font-size: 20px;
      font-family: 'Oswald';
      margin-bottom: 5px; }
    .npt-solution .container .row-header .item-list-col-2 h6 {
      color: #37424b;
      font-weight: 400;
      font-size: 16px;
      border: 2px solid #f23c8b;
      font-family: 'Oswald';
      text-align: center;
      width: 100px; }
  .npt-solution .container .row-header .item-list-col-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 23%;
    flex: 1 0 23%;
    max-width: 23%;
    position: relative; }
    .npt-solution .container .row-header .item-list-col-3:before {
      position: absolute;
      height: 2px;
      width: 61%;
      background: #a5409f;
      top: 45px;
      left: 115px;
      content: ""; }
    .npt-solution .container .row-header .item-list-col-3 h4 {
      color: #a5409f;
      font-weight: 600;
      font-size: 20px;
      font-family: 'Oswald';
      margin-bottom: 5px; }
    .npt-solution .container .row-header .item-list-col-3 h6 {
      color: #37424b;
      font-weight: 400;
      font-size: 16px;
      border: 2px solid #a5409f;
      font-family: 'Oswald';
      text-align: center;
      width: 100px; }
  .npt-solution .container .row-header .item-list-col-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 23%;
    flex: 1 0 23%;
    max-width: 23%; }
    .npt-solution .container .row-header .item-list-col-4 h4 {
      color: #0095d3;
      font-weight: 600;
      font-size: 20px;
      font-family: 'Oswald';
      margin-bottom: 5px; }
    .npt-solution .container .row-header .item-list-col-4 h6 {
      color: #37424b;
      font-weight: 400;
      font-size: 16px;
      border: 2px solid #0095d3;
      font-family: 'Oswald';
      text-align: center;
      width: 100px; }
.npt-solution .container .row-list {
  border-top: 1px solid #e1e1e1;
  padding-top: 25px;
  padding-bottom: 25px; }
  .npt-solution .container .row-list .item-list-col-12 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 1 0 100%;
    max-width: 100%; }
    .npt-solution .container .row-list .item-list-col-12 span {
      background: url(../img/img-all/bg-icon.png) top center no-repeat;
      width: 70px;
      height: 60px;
      min-width: 70px;
      text-align: center;
      line-height: 60px;
      color: #fff;
      font-family: 'Oswald';
      font-weight: 400;
      font-size: 36px;
      float: left;
      margin-right: 15px;
      padding-right: 5px; }
    .npt-solution .container .row-list .item-list-col-12 h3 {
      color: #37424b;
      font-family: 'Oswald';
      font-weight: 600;
      font-size: 24px;
      letter-spacing: -0.2px;
      line-height: 60px; }
  .npt-solution .container .row-list .item-list-col-11 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 69%;
    flex: 1 0 69%;
    max-width: 69%;
    position: relative; }
    .npt-solution .container .row-list .item-list-col-11 h4 {
      color: #37424b;
      font-weight: 400;
      font-size: 16px;
      border: 2px solid #f23c8b;
      font-family: 'Oswald';
      text-align: center;
      width: 100px; }
    .npt-solution .container .row-list .item-list-col-11 p {
      color: #37424b;
      line-height: 20px;
      font-family: Arial;
      font-size: 14px;
      margin-bottom: 0px;
      float: LEFT;
      MARGIN-RIGHT: 15PX; }
  .npt-solution .container .row-list .item-list-col-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 31%;
    flex: 1 0 31%;
    max-width: 31%; }
    .npt-solution .container .row-list .item-list-col-1 span {
      background: url(../img/img-all/bg-icon.png) top center no-repeat;
      width: 70px;
      height: 60px;
      min-width: 70px;
      text-align: center;
      line-height: 60px;
      color: #fff;
      font-family: 'Oswald';
      font-weight: 500;
      font-size: 36px;
      float: left;
      margin-right: 15px;
      padding-right: 5px; }
    .npt-solution .container .row-list .item-list-col-1 h4 {
      color: #f23c8b;
      font-weight: 600;
      font-size: 20px;
      font-family: 'Oswald';
      margin-bottom: 5px; }
    .npt-solution .container .row-list .item-list-col-1 h3 {
      color: #37424b;
      font-family: 'Oswald';
      font-weight: 300;
      font-size: 24px;
      letter-spacing: -0.2px;
      line-height: 30px;
      width: 64%;
      float: left; }
      .npt-solution .container .row-list .item-list-col-1 h3 b {
        font-weight: 400;
        width: 100%;
        float: left; }
  .npt-solution .container .row-list .item-list-col-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 23%;
    flex: 1 0 23%;
    max-width: 23%;
    color: #37424b;
    position: relative; }
    .npt-solution .container .row-list .item-list-col-2:before {
      position: absolute;
      height: 34px;
      width: 2px;
      background: #f23c8b;
      top: 5px;
      left: 0px;
      content: ""; }
    .npt-solution .container .row-list .item-list-col-2 h4 {
      color: #f23c8b;
      font-weight: 600;
      font-size: 20px;
      font-family: 'Oswald';
      margin-bottom: 5px; }
    .npt-solution .container .row-list .item-list-col-2 p {
      color: #37424b;
      line-height: 20px;
      font-family: Arial;
      font-size: 14px;
      margin-bottom: 0px; }
  .npt-solution .container .row-list .item-list-col-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 23%;
    flex: 1 0 23%;
    max-width: 23%;
    padding-left: 10px;
    position: relative; }
    .npt-solution .container .row-list .item-list-col-3:before {
      position: absolute;
      height: 34px;
      width: 2px;
      background: #a5409f;
      top: 5px;
      left: 0px;
      content: ""; }
    .npt-solution .container .row-list .item-list-col-3 h4 {
      color: #a5409f !important;
      font-weight: 600;
      font-size: 20px;
      font-family: 'Oswald';
      margin-bottom: 5px; }
    .npt-solution .container .row-list .item-list-col-3 p {
      color: #37424b;
      line-height: 20px;
      font-family: Arial;
      font-size: 14px;
      margin-bottom: 0px; }
  .npt-solution .container .row-list .item-list-col-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 23%;
    flex: 1 0 23%;
    max-width: 23%;
    padding-left: 10px;
    position: relative; }
    .npt-solution .container .row-list .item-list-col-4:before {
      position: absolute;
      height: 34px;
      width: 2px;
      background: #0095d3;
      top: 5px;
      left: 0px;
      content: ""; }
    .npt-solution .container .row-list .item-list-col-4 h4 {
      color: #0095d3 !important;
      font-weight: 600;
      font-size: 20px;
      font-family: 'Oswald';
      margin-bottom: 5px; }
    .npt-solution .container .row-list .item-list-col-4 p {
      color: #37424b;
      line-height: 20px;
      font-family: Arial;
      font-size: 14px;
      margin-bottom: 0px; }

.op06 {
  opacity: 0.6 !important; }

.npt-khoi-ban .container .npt-strategic-objectives-lable {
  width: 100%;
  float: left; }
  .npt-khoi-ban .container .npt-strategic-objectives-lable .npt-lable {
    text-align: center !important; }
.npt-khoi-ban .container .row {
  display: inline-flex; }
  .npt-khoi-ban .container .row .item-list-khoiB {
    text-align: center; }
    .npt-khoi-ban .container .row .item-list-khoiB .u-block-hover h3 {
      color: #222;
      line-height: 30px;
      font-family: 'Oswald';
      font-weight: 300;
      font-size: 24px !important;
      position: relative;
      text-align: center;
      float: left;
      width: 100%;
      margin-bottom: 35px; }
      .npt-khoi-ban .container .row .item-list-khoiB .u-block-hover h3::before {
        width: 100%;
        height: 1px;
        background: #e1e1e1;
        position: absolute;
        bottom: -15px;
        margin: 0px auto;
        left: 50%;
        transform: translate(-50%, 0%);
        content: ""; }
      .npt-khoi-ban .container .row .item-list-khoiB .u-block-hover h3::after {
        width: 180px;
        height: 3px;
        background: #666666;
        position: absolute;
        bottom: -15px;
        margin: 0px auto;
        left: 50%;
        transform: translate(-50%, 0%);
        content: ""; }
      .npt-khoi-ban .container .row .item-list-khoiB .u-block-hover h3 b {
        font-weight: 600;
        width: 100%;
        float: left; }
    .npt-khoi-ban .container .row .item-list-khoiB .u-block-hover p {
      color: #666;
      line-height: 20px;
      font-family: Arial;
      font-size: 14px;
      margin-bottom: 0px;
      text-align: left;
      border-bottom: 1px solid #e1e1e1;
      padding: 15px 0px; }
    .npt-khoi-ban .container .row .item-list-khoiB .u-block-hover ul {
      padding-top: 10px; }
      .npt-khoi-ban .container .row .item-list-khoiB .u-block-hover ul li {
        width: 100%;
        float: left;
        text-align: left;
        margin-top: 5px;
        display: inline-flex; }
        .npt-khoi-ban .container .row .item-list-khoiB .u-block-hover ul li i {
          color: #888;
          font-size: 16px;
          width: 30px;
          float: left; }
        .npt-khoi-ban .container .row .item-list-khoiB .u-block-hover ul li span {
          color: #222;
          padding-left: 5px;
          line-height: 20px;
          font-family: Arial;
          font-size: 14px;
          margin-bottom: 0px;
          width: 91%;
          float: left; }
          .npt-khoi-ban .container .row .item-list-khoiB .u-block-hover ul li span a {
            color: #164397; }

.npt-companySmall .container {
  padding: 0px !important; }
  .npt-companySmall .container .npt-core-values-in .row {
    width: 100%; }
    .npt-companySmall .container .npt-core-values-in .row .item-list-khoiB {
      padding: 0px 10px !important; }
      .npt-companySmall .container .npt-core-values-in .row .item-list-khoiB .content {
        background: #fff;
        border: 1px solid #e1e1e1;
        min-height: 460px; }
        .npt-companySmall .container .npt-core-values-in .row .item-list-khoiB .content h3 {
          background: url("../img/ve-npt/lable1.png") top right no-repeat;
          width: 100%;
          height: 80px;
          color: #fff;
          font-size: 24px;
          font-family: 'Oswald';
          font-weight: 300;
          line-height: 60px;
          margin-bottom: 0rem;
          text-align: left;
          padding-left: 10px;
          letter-spacing: -0.2px; }
          .npt-companySmall .container .npt-core-values-in .row .item-list-khoiB .content h3 b {
            font-weight: 600; }
        .npt-companySmall .container .npt-core-values-in .row .item-list-khoiB .content .u-accordion .card {
          padding: 0px 15px;
          border-bottom: 1px solid #e1e1e1; }
          .npt-companySmall .container .npt-core-values-in .row .item-list-khoiB .content .u-accordion .card .u-accordion__header .mb-0 .d-flex {
            font-size: 14px;
            color: #444444;
            font-weight: 300;
            border-bottom: 1px solid #e1e1e1 !important;
            position: relative;
            min-height: 34px;
            line-height: 34px;
            padding-left: 15px; }
            .npt-companySmall .container .npt-core-values-in .row .item-list-khoiB .content .u-accordion .card .u-accordion__header .mb-0 .d-flex:before {
              width: 5px;
              height: 5px;
              position: absolute;
              content: "";
              left: 0px;
              background: #d61d28;
              top: 15px; }
            .npt-companySmall .container .npt-core-values-in .row .item-list-khoiB .content .u-accordion .card .u-accordion__header .mb-0 .d-flex .d-link {
              font-size: 14px;
              color: #444444;
              font-weight: 300; }
            .npt-companySmall .container .npt-core-values-in .row .item-list-khoiB .content .u-accordion .card .u-accordion__header .mb-0 .d-flex .u-accordion__control-icon {
              font-size: 9px;
              color: #888 !important; }
              .npt-companySmall .container .npt-core-values-in .row .item-list-khoiB .content .u-accordion .card .u-accordion__header .mb-0 .d-flex .u-accordion__control-icon .fa {
                font-size: 9px;
                color: #888 !important; }
          .npt-companySmall .container .npt-core-values-in .row .item-list-khoiB .content .u-accordion .card .collapse .u-accordion__body {
            padding: 0px 0px 10px 0px;
            border-bottom: 1px solid #e1e1e1 !important; }
            .npt-companySmall .container .npt-core-values-in .row .item-list-khoiB .content .u-accordion .card .collapse .u-accordion__body .u-block-hover {
              padding-top: 0px;
              margin-bottom: 0px; }
    .npt-companySmall .container .npt-core-values-in .row .ttd2 .content h3 {
      background: url("../img/ve-npt/lable2.png") top right no-repeat !important; }
    .npt-companySmall .container .npt-core-values-in .row .ttd2 .content .u-accordion .card .u-accordion__header .mb-0 .d-flex:before {
      background: #1a78bf; }
    .npt-companySmall .container .npt-core-values-in .row .ttd3 .content h3 {
      background: url("../img/ve-npt/lable3.png") top right no-repeat !important; }
    .npt-companySmall .container .npt-core-values-in .row .ttd3 .content .u-accordion .card .u-accordion__header .mb-0 .d-flex:before {
      background: #fbb53b; }
    .npt-companySmall .container .npt-core-values-in .row .ttd4 .content h3 {
      background: url("../img/ve-npt/lable4.png") top right no-repeat !important; }
    .npt-companySmall .container .npt-core-values-in .row .ttd4 .content .u-accordion .card .u-accordion__header .mb-0 .d-flex:before {
      background: #0a753b; }

.npt-technical-services .container {
  position: relative; }
  .npt-technical-services .container .npt-core-values-in .row {
    text-align: center;
    position: relative; }
    .npt-technical-services .container .npt-core-values-in .row:before {
      width: 75%;
      background: #37424b;
      height: 2px;
      position: absolute;
      top: 105px;
      left: 50%;
      transform: translate(-50%, -50%);
      content: ""; }
    .npt-technical-services .container .npt-core-values-in .row h2 {
      color: #37424b;
      line-height: 44px;
      font-family: 'Oswald';
      font-weight: 300;
      font-size: 30px !important;
      position: relative;
      width: 100%;
      text-align: center;
      padding-bottom: 38px; }
      .npt-technical-services .container .npt-core-values-in .row h2:before {
        width: 2px;
        background: #37424b;
        height: 28px;
        position: absolute;
        top: 60px;
        left: 50%;
        transform: translate(-50%, -50%);
        content: ""; }
    .npt-technical-services .container .npt-core-values-in .row .kbKT {
      padding: 0px 0px !important; }
      .npt-technical-services .container .npt-core-values-in .row .kbKT .content .number {
        position: relative;
        width: 100%;
        height: 80px; }
        .npt-technical-services .container .npt-core-values-in .row .kbKT .content .number span {
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          color: #fff;
          font-family: 'Oswald';
          font-weight: 700;
          text-align: center;
          line-height: 50px;
          font-size: 24px !important;
          width: 50px;
          height: 50px;
          background: #37424b;
          border-radius: 50%; }
        .npt-technical-services .container .npt-core-values-in .row .kbKT .content .number:before {
          width: 2px;
          background: #37424b;
          height: 28px;
          position: absolute;
          top: 1px;
          left: 50%;
          transform: translate(-50%, -50%);
          content: ""; }
      .npt-technical-services .container .npt-core-values-in .row .kbKT .content h3 {
        color: #37424b;
        font-family: 'Oswald';
        font-weight: 300;
        font-size: 24px !important;
        position: relative;
        width: 100%;
        margin-bottom: 0px; }
      .npt-technical-services .container .npt-core-values-in .row .kbKT .content .u-accordion__body {
        padding: 0px 5px; }
        .npt-technical-services .container .npt-core-values-in .row .kbKT .content .u-accordion__body .u-block-hover ul li {
          text-align: center;
          display: block; }
          .npt-technical-services .container .npt-core-values-in .row .kbKT .content .u-accordion__body .u-block-hover ul li .fa {
            width: auto;
            float: none; }
          .npt-technical-services .container .npt-core-values-in .row .kbKT .content .u-accordion__body .u-block-hover ul li span {
            float: none;
            width: auto;
            text-align: center; }

.npt-work .container .row .npt-communication-left .accordion-search {
  padding: 0px 0px 10px 0px;
  border-bottom: 1px solid #e1e1e1; }
  .npt-work .container .row .npt-communication-left .accordion-search .d-md-table-cell .form-control {
    height: 35px;
    border: 1px solid #e1e1e1; }
  .npt-work .container .row .npt-communication-left .accordion-search .d-md-table-cell .u-btn-search {
    width: 110px;
    height: 34px;
    background: #737a81;
    color: #fff;
    border-radius: 0px;
    text-align: center;
    line-height: 34px;
    padding: 0px;
    margin-top: -6px; }
.npt-work .container .row .npt-communication-left .npt-document-list {
  float: left;
  width: 100%;
  padding-top: 0px; }
  .npt-work .container .row .npt-communication-left .npt-document-list li {
    float: left;
    width: 100%;
    border-bottom: 1px solid #e1e1e1;
    height: 68px;
    line-height: 68px;
    position: relative; }
    .npt-work .container .row .npt-communication-left .npt-document-list li .time-day {
      position: absolute;
      top: 50%;
      left: 0px;
      transform: translate(0%, -50%);
      background: #737a81;
      line-height: 34px;
      height: 34px;
      letter-spacing: -0.1px;
      color: #fff;
      font-size: 18px;
      float: left;
      width: 100px;
      font-family: 'Oswald';
      padding-left: 10px;
      font-weight: 300; }
      .npt-work .container .row .npt-communication-left .npt-document-list li .time-day:before {
        position: absolute;
        content: "";
        border-top: 17px solid transparent;
        border-bottom: 17px solid transparent;
        border-left: 12px solid #737a81;
        right: -12px; }
    .npt-work .container .row .npt-communication-left .npt-document-list li .title-document {
      padding-left: 125px;
      max-width: 86%;
      float: left;
      line-height: 68px; }
      .npt-work .container .row .npt-communication-left .npt-document-list li .title-document .title {
        line-height: 68px;
        letter-spacing: -0.1px;
        color: #222;
        font-size: 15px;
        text-overflow: ellipsis;
        white-space: nowrap;
        overflow: hidden;
        padding-bottom: 0px;
        margin-bottom: 0px; }
    .npt-work .container .row .npt-communication-left .npt-document-list li .download-document {
      float: right;
      line-height: 66px; }
    .npt-work .container .row .npt-communication-left .npt-document-list li:hover h6 {
      color: #164397 !important; }

.npt-qdTT {
  background: #1cb8eb url("../img/img-all/NopHSv1.png") top right no-repeat;
  height: 500px;
  background-size: 100%; }
  .npt-qdTT .container .row .npt-lable-qdTT span {
    color: #fff;
    background: url("../img/img-all/vieclam-icon1.png") top left no-repeat;
    padding-left: 80px;
    height: 77px;
    line-height: 60px;
    font-family: 'Oswald';
    font-size: 55px !important;
    float: left;
    font-weight: 300; }
    .npt-qdTT .container .row .npt-lable-qdTT span b {
      font-weight: 700; }
  .npt-qdTT .container .row .npt-qdTT-contant {
    padding-left: 100px; }
    .npt-qdTT .container .row .npt-qdTT-contant .link-a {
      border: 1px solid #75e6ff;
      float: left;
      height: 50px;
      line-height: 50px;
      padding: 0px 35px;
      color: #fff;
      text-align: center;
      font-weight: 700;
      font-size: 18px;
      margin-right: 25px;
      border-radius: 6px; }

.npt-nopHS {
  background: url("../img/img-all/NopHSv.png") top right no-repeat;
  height: 500px;
  background-size: 100%; }
  .npt-nopHS .container .row {
    display: block;
    text-align: right; }
    .npt-nopHS .container .row .nopHS {
      background: url("../img/img-all/viecLam-bt.png") top center no-repeat;
      height: 143px;
      width: 546px;
      font-size: 47px;
      color: #fff;
      text-align: center;
      font-family: 'Oswald';
      font-weight: 300;
      line-height: 100px;
      float: right;
      margin-right: 120px; }
      .npt-nopHS .container .row .nopHS b {
        font-weight: 700; }

.npt-truyentai .container .row a img {
  width: 100%; }

.npt-history-milestone .container .row .npt-core-values-left .h5 {
  color: #666666;
  line-height: 22px;
  font-family: 'Oswald';
  font-weight: 300; }
  .npt-history-milestone .container .row .npt-core-values-left .h5 b {
    font-weight: 700; }
.npt-history-milestone .container .row .npt-core-values-right {
  display: inline-block;
  padding-left: 50px; }
  .npt-history-milestone .container .row .npt-core-values-right .item-list {
    display: inline-flex; }
    .npt-history-milestone .container .row .npt-core-values-right .item-list span {
      width: 44px;
      height: 44px;
      min-width: 44px;
      text-align: center;
      line-height: 44px;
      float: left;
      margin-right: 15px; }
    .npt-history-milestone .container .row .npt-core-values-right .item-list .content-detail {
      float: left;
      margin-bottom: 20px; }
      .npt-history-milestone .container .row .npt-core-values-right .item-list .content-detail .h3 {
        font-family: 'Oswald';
        font-weight: 500;
        letter-spacing: -0.25px;
        margin-bottom: 10px; }
      .npt-history-milestone .container .row .npt-core-values-right .item-list .content-detail p {
        letter-spacing: -0.20px;
        margin: 0px;
        font-size: 16px;
        line-height: 24px;
        padding: 0px;
        color: #37424b; }

.npt-history-list {
  position: relative;
  background: #f4f4f4 url("../img/ve-npt/bg-map.jpg") center center no-repeat; }
  .npt-history-list:after {
    background: url("../img/ve-npt/bg-hb.jpg") right bottom no-repeat;
    content: "";
    position: absolute;
    right: 0px;
    bottom: 0px;
    z-index: 1; }
  .npt-history-list .container {
    z-index: 3;
    position: relative; }
    .npt-history-list .container .npt-history-list-left .npt-lable {
      position: absolute;
      left: 16%; }
    .npt-history-list .container .npt-history-list-left ul .item-list {
      width: 100%;
      float: left;
      margin-top: -5px; }
      .npt-history-list .container .npt-history-list-left ul .item-list .history-day {
        background: url("../img/ve-npt/h1.png") top left no-repeat;
        height: 167px;
        width: 139px;
        float: left;
        color: #fff;
        font-size: 23px;
        line-height: 50px;
        font-family: 'Oswald';
        font-weight: 700;
        letter-spacing: -0.2px; }
        .npt-history-list .container .npt-history-list-left ul .item-list .history-day span {
          color: #fff;
          font-size: 23px;
          line-height: 50px;
          font-family: 'Oswald' !important;
          font-weight: 700;
          float: left;
          padding-left: 8px;
          letter-spacing: -0.2px; }
      .npt-history-list .container .npt-history-list-left ul .item-list h3 {
        width: 70%;
        float: left;
        color: #666666;
        line-height: 22px;
        font-size: 16px;
        font-weight: 400;
        padding-left: 30px;
        letter-spacing: -0.2px; }

.npt-history-list .container .npt-history-list-left ul .item-list .h2-bg {
  background: url("../img/ve-npt/h2.png") top left no-repeat !important;
  height: 101px !important; }

.npt-history-list .container .npt-history-list-left ul .item-list .h3-bg {
  background: url("../img/ve-npt/h3.png") top left no-repeat !important;
  height: 101px !important; }

.npt-history-list .container .npt-history-list-left ul .item-list .h4-bg {
  background: url("../img/ve-npt/h4.png") top left no-repeat !important;
  height: 101px !important; }

.npt-history-list .container .npt-history-list-left ul .item-list .h5-bg {
  background: url("../img/ve-npt/h5.png") top left no-repeat !important;
  height: 101px !important; }

.npt-history-list .container .npt-history-list-left ul .item-list .h6-bg {
  background: url("../img/ve-npt/h6.png") top left no-repeat !important;
  height: 101px !important; }

.npt-history-list .container .npt-history-list-left ul .item-list .h7-bg {
  background: url("../img/ve-npt/h7.png") top left no-repeat !important;
  height: 101px !important; }

.npt-history-list .container .npt-history-list-left ul .item-list .h8-bg {
  background: url("../img/ve-npt/h8.png") top left no-repeat !important;
  height: 101px !important; }

.npt-history-list .container .npt-history-list-left ul .item-list .h9-bg {
  background: url("../img/ve-npt/h9.png") top left no-repeat !important;
  height: 101px !important; }

.npt-history-list .container .npt-history-list-left ul .item-list .h10-bg {
  background: url("../img/ve-npt/h10.png") top left no-repeat !important;
  height: 101px !important; }

.npt-history-list::after {
  background: url("../img/ve-npt/bg-hb.jpg") right bottom no-repeat;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  right: 0px;
  bottom: 0px;
  z-index: 1; }

.npt-history-list .npt-lable-all.npt-lable h2:before {
  width: 300px !important;
  transform: translate(0%, 0%) !important; }

.npt-history-list .npt-lable-all.npt-lable h2, .npt-lable-all.npt-lable a {
  color: #294a9f !important; }

/* code by ngocbich85hd 28/5/2018 */
.npt-lable-13, .npt-core-values .container .row .npt-core-values-left .npt-lable, .npt-strategic-objectives .container .npt-strategic-objectives-lable .npt-lable, .npt-pressRelease .container .row .npt-pressRelease-in .npt-lable, .npt-history-milestone .container .row .npt-core-values-left .npt-lable, .npt-power-system .container .npt-power-system-lable .npt-lable {
  position: relative;
  text-align: left !important; }
  .npt-lable-13 h2, .npt-core-values .container .row .npt-core-values-left .npt-lable h2, .npt-strategic-objectives .container .npt-strategic-objectives-lable .npt-lable h2, .npt-pressRelease .container .row .npt-pressRelease-in .npt-lable h2, .npt-history-milestone .container .row .npt-core-values-left .npt-lable h2, .npt-power-system .container .npt-power-system-lable .npt-lable h2, .npt-lable-13 a, .npt-core-values .container .row .npt-core-values-left .npt-lable a, .npt-strategic-objectives .container .npt-strategic-objectives-lable .npt-lable a, .npt-pressRelease .container .row .npt-pressRelease-in .npt-lable a, .npt-history-milestone .container .row .npt-core-values-left .npt-lable a, .npt-power-system .container .npt-power-system-lable .npt-lable a {
    color: #37424b;
    line-height: 44px;
    font-family: 'Oswald';
    font-weight: 300;
    font-size: 30px !important; }
    .npt-lable-13 h2::before, .npt-core-values .container .row .npt-core-values-left .npt-lable h2::before, .npt-strategic-objectives .container .npt-strategic-objectives-lable .npt-lable h2::before, .npt-pressRelease .container .row .npt-pressRelease-in .npt-lable h2::before, .npt-history-milestone .container .row .npt-core-values-left .npt-lable h2::before, .npt-power-system .container .npt-power-system-lable .npt-lable h2::before, .npt-lable-13 a::before, .npt-core-values .container .row .npt-core-values-left .npt-lable a::before, .npt-strategic-objectives .container .npt-strategic-objectives-lable .npt-lable a::before, .npt-pressRelease .container .row .npt-pressRelease-in .npt-lable a::before, .npt-history-milestone .container .row .npt-core-values-left .npt-lable a::before, .npt-power-system .container .npt-power-system-lable .npt-lable a::before {
      width: 100%;
      height: 1px;
      background: #e1e1e1;
      position: absolute;
      bottom: -15px;
      left: 0px !important;
      content: "";
      transform: translate(0%, 0%) !important; }
    .npt-lable-13 h2::after, .npt-core-values .container .row .npt-core-values-left .npt-lable h2::after, .npt-strategic-objectives .container .npt-strategic-objectives-lable .npt-lable h2::after, .npt-pressRelease .container .row .npt-pressRelease-in .npt-lable h2::after, .npt-history-milestone .container .row .npt-core-values-left .npt-lable h2::after, .npt-power-system .container .npt-power-system-lable .npt-lable h2::after, .npt-lable-13 a::after, .npt-core-values .container .row .npt-core-values-left .npt-lable a::after, .npt-strategic-objectives .container .npt-strategic-objectives-lable .npt-lable a::after, .npt-pressRelease .container .row .npt-pressRelease-in .npt-lable a::after, .npt-history-milestone .container .row .npt-core-values-left .npt-lable a::after, .npt-power-system .container .npt-power-system-lable .npt-lable a::after {
      width: 30%;
      height: 3px;
      background: #194598;
      position: absolute;
      bottom: -15px;
      left: 0px !important;
      content: "";
      transform: translate(0%, 0%) !important; }
    .npt-lable-13 h2 b, .npt-core-values .container .row .npt-core-values-left .npt-lable h2 b, .npt-strategic-objectives .container .npt-strategic-objectives-lable .npt-lable h2 b, .npt-pressRelease .container .row .npt-pressRelease-in .npt-lable h2 b, .npt-history-milestone .container .row .npt-core-values-left .npt-lable h2 b, .npt-power-system .container .npt-power-system-lable .npt-lable h2 b, .npt-lable-13 a b, .npt-core-values .container .row .npt-core-values-left .npt-lable a b, .npt-strategic-objectives .container .npt-strategic-objectives-lable .npt-lable a b, .npt-pressRelease .container .row .npt-pressRelease-in .npt-lable a b, .npt-history-milestone .container .row .npt-core-values-left .npt-lable a b, .npt-power-system .container .npt-power-system-lable .npt-lable a b {
      font-weight: 600; }

.npt-power-system .container .npt-power-system-lable .h3 {
  color: #666666;
  line-height: 30px;
  font-family: 'Oswald';
  font-weight: 300;
  max-width: 400px;
  margin: 0px auto; }
  .npt-power-system .container .npt-power-system-lable .h3 b {
    font-weight: 700; }
.npt-power-system .container .npt-list-power-system .item-list {
  text-align: center;
  margin: 0 auto;
  padding: 0em !important; }
  .npt-power-system .container .npt-list-power-system .item-list .hi-icon {
    display: inline-block;
    font-size: 0px;
    cursor: pointer;
    margin: 0px 0px 15px 0px;
    background: #37424b;
    width: 80px !important;
    height: 80px !important;
    text-align: center;
    line-height: 80px;
    border-radius: 50%;
    position: relative;
    z-index: 1;
    color: #fff; }
  .npt-power-system .container .npt-list-power-system .item-list .link-hover-x .h3, .npt-power-system .npt-pressRelease .container .npt-list-power-system .item-list .row .npt-pressRelease-in .row .npt-pressRelease-left .npt-highlight-list li .content-new a .title:hover .h3, .npt-pressRelease .npt-power-system .container .npt-list-power-system .item-list .row .npt-pressRelease-in .row .npt-pressRelease-left .npt-highlight-list li .content-new a .title:hover .h3, .npt-power-system .npt-pressRelease .container .row .npt-pressRelease-in .row .npt-pressRelease-left .npt-highlight-list li .content-new a .npt-list-power-system .item-list .title:hover .h3, .npt-pressRelease .npt-power-system .container .row .npt-pressRelease-in .row .npt-pressRelease-left .npt-highlight-list li .content-new a .npt-list-power-system .item-list .title:hover .h3 {
    color: #37424b;
    font-family: 'Oswald';
    font-weight: 300;
    margin-bottom: 15px; }
    .npt-power-system .container .npt-list-power-system .item-list .link-hover-x .h3 b, .npt-power-system .npt-pressRelease .container .npt-list-power-system .item-list .row .npt-pressRelease-in .row .npt-pressRelease-left .npt-highlight-list li .content-new a .title:hover .h3 b, .npt-pressRelease .npt-power-system .container .npt-list-power-system .item-list .row .npt-pressRelease-in .row .npt-pressRelease-left .npt-highlight-list li .content-new a .title:hover .h3 b, .npt-power-system .npt-pressRelease .container .row .npt-pressRelease-in .row .npt-pressRelease-left .npt-highlight-list li .content-new a .npt-list-power-system .item-list .title:hover .h3 b, .npt-pressRelease .npt-power-system .container .row .npt-pressRelease-in .row .npt-pressRelease-left .npt-highlight-list li .content-new a .npt-list-power-system .item-list .title:hover .h3 b {
      font-weight: 700; }
  .npt-power-system .container .npt-list-power-system .item-list .sampo {
    color: #666666;
    line-height: 22px;
    font-size: 15px;
    font-weight: 400;
    padding: 0px 20px;
    height: 90px;
    overflow: hidden;
    display: inline-block;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical; }

.npt-investment-projects {
  background: url("../img/banner/banner-3sxkd-1a.jpg") top center no-repeat;
  min-height: 680px; }
  .npt-investment-projects .container .npt-power-system-lable .npt-lable-dt {
    width: 230px;
    height: 88px;
    margin: 0px auto;
    background: #fff;
    color: #ed1d25;
    position: relative;
    text-align: center; }
    .npt-investment-projects .container .npt-power-system-lable .npt-lable-dt:before {
      position: absolute;
      content: "";
      border-left: 115px solid transparent;
      border-right: 115px solid transparent;
      border-top: 60px solid #fff;
      bottom: -66px;
      left: 0px; }
    .npt-investment-projects .container .npt-power-system-lable .npt-lable-dt .hi-icon-wrap {
      text-align: center;
      margin: 0px auto 0px auto;
      padding: 0em 0 3em;
      position: absolute;
      top: -60px;
      line-height: 90px; }
      .npt-investment-projects .container .npt-power-system-lable .npt-lable-dt .hi-icon-wrap .hi-icon {
        background: #ed1d25;
        line-height: 90px; }
    .npt-investment-projects .container .npt-power-system-lable .npt-lable-dt .h2 {
      background: #fff;
      color: #ed1d25;
      line-height: 44px;
      font-family: 'Oswald';
      font-weight: 300;
      font-size: 30px !important;
      padding-top: 50px; }
      .npt-investment-projects .container .npt-power-system-lable .npt-lable-dt .h2 b {
        font-weight: 700; }
  .npt-investment-projects .container .npt-investment-projects-content {
    padding-left: 40%;
    padding-top: 90px;
    color: #fff; }
    .npt-investment-projects .container .npt-investment-projects-content .h3 {
      color: #fff;
      line-height: 35px;
      font-family: 'Oswald';
      font-weight: 300;
      font-size: 24px !important;
      margin-bottom: 10px; }
    .npt-investment-projects .container .npt-investment-projects-content .npt-lable-small {
      background: #37424b;
      line-height: 44px;
      height: 50px;
      letter-spacing: -0.1px;
      color: #fff;
      font-size: 24px;
      float: left;
      font-family: 'Oswald';
      padding-left: 20px;
      font-weight: 300;
      border-bottom-left-radius: 10px;
      border-top-left-radius: 10px;
      position: relative;
      padding-right: 30px;
      min-width: 310px;
      margin-top: 20px;
      margin-bottom: 20px; }
      .npt-investment-projects .container .npt-investment-projects-content .npt-lable-small a {
        color: #fff;
        font-size: 24px;
        float: left;
        font-family: 'Oswald';
        line-height: 44px; }
      .npt-investment-projects .container .npt-investment-projects-content .npt-lable-small:before {
        position: absolute;
        content: "";
        border-top: 25px solid transparent;
        border-bottom: 25px solid transparent;
        border-left: 20px solid #37424b;
        right: -20px; }
      .npt-investment-projects .container .npt-investment-projects-content .npt-lable-small b {
        font-weight: 700; }
    .npt-investment-projects .container .npt-investment-projects-content .impotant {
      background: #ed1d25 !important; }
      .npt-investment-projects .container .npt-investment-projects-content .impotant:before {
        border-left: 20px solid #ed1d25 !important; }
    .npt-investment-projects .container .npt-investment-projects-content .npt-list-projects {
      width: 100%;
      float: left;
      margin-bottom: 0px; }
      .npt-investment-projects .container .npt-investment-projects-content .npt-list-projects li {
        width: 100%;
        float: left;
        margin-bottom: 10px;
        padding-left: 20px;
        position: relative;
        margin-left: 10px; }
        .npt-investment-projects .container .npt-investment-projects-content .npt-list-projects li:before {
          position: absolute;
          content: "";
          width: 7px;
          height: 7px;
          background: #fff;
          left: 0px;
          top: 8px; }
        .npt-investment-projects .container .npt-investment-projects-content .npt-list-projects li a {
          color: #fff;
          font-size: 15px;
          float: left;
          font-family: Arial; }

.npt-list-cooperate .container .h3 {
  color: #37424b;
  line-height: 35px;
  font-family: 'Oswald';
  font-weight: 300;
  margin-bottom: 10px; }
.npt-list-cooperate .container .row .item-list {
  padding-right: 0px;
  padding-left: 0px; }
  .npt-list-cooperate .container .row .item-list a .link-hover-x .h4, .npt-list-cooperate .npt-pressRelease .container .row .item-list .npt-pressRelease-in .row .npt-pressRelease-left .npt-highlight-list li .content-new a .title:hover .h4, .npt-pressRelease .npt-list-cooperate .container .row .item-list .npt-pressRelease-in .row .npt-pressRelease-left .npt-highlight-list li .content-new a .title:hover .h4, .npt-list-cooperate .npt-pressRelease .container .row .npt-pressRelease-in .row .npt-pressRelease-left .npt-highlight-list li .content-new .item-list a .title:hover .h4, .npt-pressRelease .npt-list-cooperate .container .row .npt-pressRelease-in .row .npt-pressRelease-left .npt-highlight-list li .content-new .item-list a .title:hover .h4 {
    color: #888888;
    line-height: 30px;
    font-family: 'Oswald';
    font-weight: 300;
    margin-bottom: 0px;
    margin-top: 20px; }
    .npt-list-cooperate .container .row .item-list a .link-hover-x .h4 b, .npt-list-cooperate .npt-pressRelease .container .row .item-list .npt-pressRelease-in .row .npt-pressRelease-left .npt-highlight-list li .content-new a .title:hover .h4 b, .npt-pressRelease .npt-list-cooperate .container .row .item-list .npt-pressRelease-in .row .npt-pressRelease-left .npt-highlight-list li .content-new a .title:hover .h4 b, .npt-list-cooperate .npt-pressRelease .container .row .npt-pressRelease-in .row .npt-pressRelease-left .npt-highlight-list li .content-new .item-list a .title:hover .h4 b, .npt-pressRelease .npt-list-cooperate .container .row .npt-pressRelease-in .row .npt-pressRelease-left .npt-highlight-list li .content-new .item-list a .title:hover .h4 b {
      font-weight: 500;
      width: 100%;
      float: left;
      text-align: center; }

.npt-service {
  background: #f1f1f1; }
  .npt-service .container .h3 {
    color: #37424b;
    line-height: 35px;
    font-family: 'Oswald';
    font-weight: 300;
    margin-bottom: 30px; }
  .npt-service .container .npt-list-service {
    background: url("../img/sxkd/img-service.png") bottom right no-repeat;
    display: inline-flex;
    min-height: 470px; }
    .npt-service .container .npt-list-service ul {
      float: left;
      width: 70%; }
      .npt-service .container .npt-list-service ul .item-list {
        float: left;
        width: 100%;
        margin-top: 15px;
        position: relative; }
        .npt-service .container .npt-list-service ul .item-list a {
          color: #222222;
          line-height: 35px;
          font-weight: 600;
          padding-left: 50px;
          display: block;
          margin-bottom: 0px; }
          .npt-service .container .npt-list-service ul .item-list a span {
            float: left;
            height: 32px;
            width: 32px;
            background: #164397;
            color: #ffffff;
            line-height: 32px;
            text-align: center;
            font-family: 'Oswald';
            font-weight: 700;
            font-size: 20px !important;
            position: absolute;
            left: 0px; }
            .npt-service .container .npt-list-service ul .item-list a span:before {
              position: absolute;
              content: "";
              right: -10px;
              border-bottom: 16px solid transparent;
              border-top: 16px solid transparent;
              border-left: 10px solid #164397; }
      .npt-service .container .npt-list-service ul .item-list:nth-child(1) a span {
        background: #ff5531; }
        .npt-service .container .npt-list-service ul .item-list:nth-child(1) a span:before {
          border-left: 10px solid #ff5531; }
      .npt-service .container .npt-list-service ul .item-list:nth-child(2) a span {
        background: #29b613; }
        .npt-service .container .npt-list-service ul .item-list:nth-child(2) a span:before {
          border-left: 10px solid #29b613; }
      .npt-service .container .npt-list-service ul .item-list:nth-child(3) a span {
        background: #db2929; }
        .npt-service .container .npt-list-service ul .item-list:nth-child(3) a span:before {
          border-left: 10px solid #db2929; }
      .npt-service .container .npt-list-service ul .item-list:nth-child(4) a span {
        background: #ef880e; }
        .npt-service .container .npt-list-service ul .item-list:nth-child(4) a span:before {
          border-left: 10px solid #ef880e; }
      .npt-service .container .npt-list-service ul .item-list:nth-child(5) a span {
        background: #765099; }
        .npt-service .container .npt-list-service ul .item-list:nth-child(5) a span:before {
          border-left: 10px solid #765099; }
      .npt-service .container .npt-list-service ul .item-list:nth-child(6) a span {
        background: #3d4f9d; }
        .npt-service .container .npt-list-service ul .item-list:nth-child(6) a span:before {
          border-left: 10px solid #3d4f9d; }
      .npt-service .container .npt-list-service ul .item-list:nth-child(7) a span {
        background: #e73b6c; }
        .npt-service .container .npt-list-service ul .item-list:nth-child(7) a span:before {
          border-left: 10px solid #e73b6c; }
      .npt-service .container .npt-list-service ul .item-list:nth-child(8) a span {
        background: #428c7d; }
        .npt-service .container .npt-list-service ul .item-list:nth-child(8) a span:before {
          border-left: 10px solid #428c7d; }
      .npt-service .container .npt-list-service ul .item-list:nth-child(9) a span {
        background: #820606; }
        .npt-service .container .npt-list-service ul .item-list:nth-child(9) a span:before {
          border-left: 10px solid #820606; }

.npt-public-news .container .npt-public-news-in {
  box-shadow: 0 0px 3px 3px rgba(0, 0, 0, 0.1);
  background: #fff;
  border-radius: 8px;
  height: 540px; }
  .npt-public-news .container .npt-public-news-in .npt-contact-add {
    background: #164397 url(../img/sxkd/img-file.png) bottom center no-repeat;
    border-bottom-right-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom-left-radius: 8px;
    border-top-left-radius: 8px;
    padding: 60px 30px 0px 30px !important;
    min-height: 540px; }
    .npt-public-news .container .npt-public-news-in .npt-contact-add .npt-lable {
      max-width: 77% !important;
      color: #fff;
      letter-spacing: -0.1px;
      margin: 0 auto;
      text-align: center;
      position: relative;
      display: -webkit-box; }
      .npt-public-news .container .npt-public-news-in .npt-contact-add .npt-lable h2 {
        color: #fff;
        line-height: 44px;
        width: 100%;
        font-size: 30px !important;
        font-family: 'Oswald';
        font-weight: 300; }
        .npt-public-news .container .npt-public-news-in .npt-contact-add .npt-lable h2::before {
          width: 100%;
          height: 1px;
          background: rgba(255, 255, 255, 0.5);
          position: absolute;
          bottom: -15px;
          left: 0px !important;
          content: "";
          transform: translate(0%, 0%) !important; }
        .npt-public-news .container .npt-public-news-in .npt-contact-add .npt-lable h2::after {
          width: 40%;
          height: 3px;
          background: #fff;
          position: absolute;
          bottom: -16px;
          content: "";
          left: 50%;
          transform: translate(-50%, 0%); }
        .npt-public-news .container .npt-public-news-in .npt-contact-add .npt-lable h2 b {
          font-weight: 600; }
    .npt-public-news .container .npt-public-news-in .npt-contact-add h3 {
      color: #fff;
      line-height: 30px;
      width: 100%;
      font-size: 24px !important;
      font-family: 'Oswald';
      font-weight: 300;
      text-align: center;
      padding-top: 35px; }
  .npt-public-news .container .npt-public-news-in .npt-public-news-tab {
    padding: 0px;
    overflow: hidden; }
    .npt-public-news .container .npt-public-news-in .npt-public-news-tab .row .tab-left {
      background: #e7ecf4;
      height: 540px;
      padding-right: 0px; }
      .npt-public-news .container .npt-public-news-in .npt-public-news-tab .row .tab-left .nav {
        padding-top: 40px; }
        .npt-public-news .container .npt-public-news-in .npt-public-news-tab .row .tab-left .nav .nav-item .nav-link {
          text-align: right;
          float: right;
          padding: 20px 34px 20px 0px;
          background-color: #e7ecf4;
          opacity: 0.6; }
          .npt-public-news .container .npt-public-news-in .npt-public-news-tab .row .tab-left .nav .nav-item .nav-link:before, .npt-public-news .container .npt-public-news-in .npt-public-news-tab .row .tab-left .nav .nav-item .nav-link:after {
            display: none !important; }
          .npt-public-news .container .npt-public-news-in .npt-public-news-tab .row .tab-left .nav .nav-item .nav-link span {
            color: #fff;
            font-family: 'Oswald';
            font-weight: 600;
            font-size: 30px !important;
            width: 48px;
            height: 48px;
            background: #37424b;
            border-radius: 30px;
            border: 3px solid #fff;
            text-align: center;
            line-height: 42px;
            display: block;
            float: right;
            position: absolute;
            right: -25px; }
          .npt-public-news .container .npt-public-news-in .npt-public-news-tab .row .tab-left .nav .nav-item .nav-link h4 {
            color: #37424b;
            line-height: 26px;
            font-family: 'Oswald';
            font-weight: 300; }
            .npt-public-news .container .npt-public-news-in .npt-public-news-tab .row .tab-left .nav .nav-item .nav-link h4 b {
              font-weight: 600;
              float: right;
              width: 100%; }
        .npt-public-news .container .npt-public-news-in .npt-public-news-tab .row .tab-left .nav .nav-item .active {
          opacity: 1 !important; }
        .npt-public-news .container .npt-public-news-in .npt-public-news-tab .row .tab-left .nav .nav-item:hover {
          opacity: 0.8 !important; }
    .npt-public-news .container .npt-public-news-in .npt-public-news-tab .row .tab-right .tab-content {
      padding: 60px 10px 60px 20px !important; }
      .npt-public-news .container .npt-public-news-in .npt-public-news-tab .row .tab-right .tab-content .npt-communication-left .npt-lable-all h1 {
        color: #37424b;
        line-height: 44px;
        font-size: 38px;
        font-family: 'Oswald';
        font-weight: 300;
        border-bottom: 1px solid #e1e1e1;
        padding-bottom: 60px; }
        .npt-public-news .container .npt-public-news-in .npt-public-news-tab .row .tab-right .tab-content .npt-communication-left .npt-lable-all h1 b {
          font-weight: 600;
          float: right;
          width: 100%; }
      .npt-public-news .container .npt-public-news-in .npt-public-news-tab .row .tab-right .tab-content .npt-communication-left .npt-document-list {
        float: left;
        width: 100%; }
        .npt-public-news .container .npt-public-news-in .npt-public-news-tab .row .tab-right .tab-content .npt-communication-left .npt-document-list li {
          float: left;
          width: 100%;
          position: relative;
          padding: 13px 0px; }
          .npt-public-news .container .npt-public-news-in .npt-public-news-tab .row .tab-right .tab-content .npt-communication-left .npt-document-list li .time-day {
            position: absolute;
            top: 50%;
            left: 0px;
            transform: translate(0%, -50%);
            background: #737a81;
            line-height: 34px;
            height: 34px;
            letter-spacing: -0.1px;
            color: #fff;
            font-size: 18px;
            float: left;
            width: 100px;
            font-family: 'Oswald';
            padding-left: 10px;
            font-weight: 300; }
            .npt-public-news .container .npt-public-news-in .npt-public-news-tab .row .tab-right .tab-content .npt-communication-left .npt-document-list li .time-day:before {
              position: absolute;
              content: "";
              border-top: 17px solid transparent;
              border-bottom: 17px solid transparent;
              border-left: 12px solid #737a81;
              right: -12px; }
          .npt-public-news .container .npt-public-news-in .npt-public-news-tab .row .tab-right .tab-content .npt-communication-left .npt-document-list li .title-document {
            padding-left: 125px;
            line-height: 20px;
            float: left; }
            .npt-public-news .container .npt-public-news-in .npt-public-news-tab .row .tab-right .tab-content .npt-communication-left .npt-document-list li .title-document .title {
              line-height: 20px;
              letter-spacing: -0.1px;
              color: #222;
              font-size: 15px;
              padding-bottom: 0px;
              margin-bottom: 0px;
              height: 40px;
              overflow: hidden;
              display: inline-block;
              display: -webkit-box;
              -webkit-line-clamp: 2;
              -webkit-box-orient: vertical; }

.npt-connection-agreements .npt-power-system-lable {
  background: url("../img/sxkd/bg-thoa-thuan.jpg") top center no-repeat;
  min-height: 280px;
  padding-top: 150px; }
  .npt-connection-agreements .npt-power-system-lable .npt-lable-dt {
    width: 270px;
    height: 130px;
    margin: 0px auto;
    background: #ed1c24;
    color: #fff;
    position: relative;
    text-align: center;
    border-top-left-radius: 10px;
    border-top-right-radius: 10px; }
    .npt-connection-agreements .npt-power-system-lable .npt-lable-dt:before {
      position: absolute;
      content: "";
      border-left: 135px solid transparent;
      border-right: 135px solid transparent;
      border-top: 60px solid #ed1c24;
      bottom: -60px;
      left: 0px; }
    .npt-connection-agreements .npt-power-system-lable .npt-lable-dt .hi-icon-wrap {
      text-align: center;
      margin: 0px auto 0px auto;
      padding: 0em 0 0px 0px;
      position: absolute;
      top: 55px;
      line-height: 90px; }
      .npt-connection-agreements .npt-power-system-lable .npt-lable-dt .hi-icon-wrap .hi-icon {
        background: #fff;
        line-height: 90px; }
    .npt-connection-agreements .npt-power-system-lable .npt-lable-dt .h2 {
      background: #ed1d25;
      color: #fff !important;
      line-height: 44px;
      font-family: 'Oswald';
      font-weight: 300;
      font-size: 30px !important;
      padding-top: 15px;
      border-top-left-radius: 10px;
      border-top-right-radius: 10px; }
      .npt-connection-agreements .npt-power-system-lable .npt-lable-dt .h2 b {
        font-weight: 700; }
.npt-connection-agreements .npt-connection-agreements-in .nav {
  border-bottom: 1px solid #e1e1e1; }
  .npt-connection-agreements .npt-connection-agreements-in .nav .nav-item {
    height: 90px;
    padding: 0px 0px;
    line-height: 80px;
    position: relative; }
    .npt-connection-agreements .npt-connection-agreements-in .nav .nav-item .nav-link {
      background: #fff;
      color: #37424b !important;
      font-size: 20px;
      font-family: 'Oswald';
      font-weight: 300;
      position: relative;
      padding: 0 15px 0px 15px;
      opacity: 0.6; }
      .npt-connection-agreements .npt-connection-agreements-in .nav .nav-item .nav-link:after {
        display: none; }
      .npt-connection-agreements .npt-connection-agreements-in .nav .nav-item .nav-link .u-nav-v8__icon {
        background-color: transparent;
        float: left;
        margin-right: 10px;
        margin-top: 45px; }
      .npt-connection-agreements .npt-connection-agreements-in .nav .nav-item .nav-link .u-nav-v8__description {
        letter-spacing: -0.1px;
        font-size: 20px;
        font-family: 'Oswald';
        font-weight: 300;
        color: #37424b !important;
        float: left;
        max-height: 90px;
        margin-top: 15px;
        line-height: 28px; }
        .npt-connection-agreements .npt-connection-agreements-in .nav .nav-item .nav-link .u-nav-v8__description b {
          font-weight: 600; }
    .npt-connection-agreements .npt-connection-agreements-in .nav .nav-item .active {
      border-left: 1px solid #e1e1e1;
      border-top: 1px solid #e1e1e1;
      border-right: 1px solid #e1e1e1;
      border-top-left-radius: 10px;
      border-top-right-radius: 10px;
      opacity: 1; }
      .npt-connection-agreements .npt-connection-agreements-in .nav .nav-item .active .u-nav-v8__icon {
        background: #fff !important; }
      .npt-connection-agreements .npt-connection-agreements-in .nav .nav-item .active .u-nav-v8__description {
        color: #37424b !important; }
      .npt-connection-agreements .npt-connection-agreements-in .nav .nav-item .active:before {
        background: #fff;
        height: 2px;
        width: 100%;
        content: "";
        position: absolute;
        left: 0px;
        bottom: -2px; }
.npt-connection-agreements .npt-connection-agreements-in .tab-content .tab-pane {
  padding-top: 50px;
  font-size: 14px;
  color: #222;
  line-height: 20px; }
  .npt-connection-agreements .npt-connection-agreements-in .tab-content .tab-pane p {
    font-size: 14px;
    color: #222;
    line-height: 20px; }
  .npt-connection-agreements .npt-connection-agreements-in .tab-content .tab-pane h6 {
    font-size: 18px;
    line-height: 26px; }
    .npt-connection-agreements .npt-connection-agreements-in .tab-content .tab-pane h6 b {
      font-weight: bold; }
  .npt-connection-agreements .npt-connection-agreements-in .tab-content .tab-pane .img-agreement {
    float: right;
    max-width: 600px; }

.npt-grids-safety .npt-lable {
  background: url(../img/img-all/line-1.png) top left repeat-x;
  width: 100%;
  display: inline-block; }
  .npt-grids-safety .npt-lable .hi-icon-wrap {
    background: #37424b;
    height: 110px;
    max-width: 430px;
    margin: -55px auto 0 auto;
    position: relative; }
    .npt-grids-safety .npt-lable .hi-icon-wrap:before {
      border-bottom: 55px solid transparent;
      border-top: 55px solid transparent;
      border-right: 50px solid #37424b;
      top: 0px;
      position: absolute;
      left: -50px;
      content: ""; }
    .npt-grids-safety .npt-lable .hi-icon-wrap:after {
      border-bottom: 55px solid transparent;
      border-top: 55px solid transparent;
      border-left: 50px solid #37424b;
      top: 0px;
      position: absolute;
      right: -50px;
      content: ""; }
    .npt-grids-safety .npt-lable .hi-icon-wrap .hi-content {
      position: absolute;
      top: 50%;
      left: 50%;
      transform: translate(-50%, -50%);
      min-width: 270px; }
      .npt-grids-safety .npt-lable .hi-icon-wrap .hi-content .hi-icon {
        display: inline-block;
        font-size: 0px;
        cursor: pointer;
        margin: 3px 20px 5px 0px;
        background: #fff;
        width: 80px !important;
        height: 80px !important;
        text-align: center;
        line-height: 80px;
        border-radius: 50%;
        position: relative;
        z-index: 1;
        color: #37424b;
        float: left; }
      .npt-grids-safety .npt-lable .hi-icon-wrap .hi-content .link-hover-x, .npt-grids-safety .npt-lable .hi-icon-wrap .hi-content .npt-pressRelease .container .row .npt-pressRelease-in .row .npt-pressRelease-left .npt-highlight-list li .content-new a .title:hover, .npt-pressRelease .container .row .npt-pressRelease-in .row .npt-pressRelease-left .npt-highlight-list li .content-new a .npt-grids-safety .npt-lable .hi-icon-wrap .hi-content .title:hover {
        padding-top: 4px; }
        .npt-grids-safety .npt-lable .hi-icon-wrap .hi-content .link-hover-x h3, .npt-grids-safety .npt-lable .hi-icon-wrap .hi-content .npt-pressRelease .container .row .npt-pressRelease-in .row .npt-pressRelease-left .npt-highlight-list li .content-new a .title:hover h3, .npt-pressRelease .container .row .npt-pressRelease-in .row .npt-pressRelease-left .npt-highlight-list li .content-new a .npt-grids-safety .npt-lable .hi-icon-wrap .hi-content .title:hover h3 {
          font-family: 'Oswald';
          font-weight: 300; }
          .npt-grids-safety .npt-lable .hi-icon-wrap .hi-content .link-hover-x h3 b, .npt-grids-safety .npt-lable .hi-icon-wrap .hi-content .npt-pressRelease .container .row .npt-pressRelease-in .row .npt-pressRelease-left .npt-highlight-list li .content-new a .title:hover h3 b, .npt-pressRelease .container .row .npt-pressRelease-in .row .npt-pressRelease-left .npt-highlight-list li .content-new a .npt-grids-safety .npt-lable .hi-icon-wrap .hi-content .title:hover h3 b {
            font-weight: 600; }
.npt-grids-safety .container .row .img-hlang1 img {
  width: 100%; }
.npt-grids-safety .container .row .img-hlang img {
  width: 100%; }
.npt-grids-safety .container .row p {
  font-size: 14px; }
.npt-grids-safety .container .npt-grids-safety-in .nav {
  border-bottom: 1px solid #e1e1e1; }
  .npt-grids-safety .container .npt-grids-safety-in .nav .nav-item {
    width: 25%;
    height: 90px;
    padding: 0px 0px;
    line-height: 80px;
    position: relative; }
    .npt-grids-safety .container .npt-grids-safety-in .nav .nav-item .nav-link {
      background: #fff;
      color: #37424b !important;
      font-size: 20px;
      font-family: 'Oswald';
      font-weight: 300;
      position: relative;
      padding: 0 15px 0px 15px;
      opacity: 0.6; }
      .npt-grids-safety .container .npt-grids-safety-in .nav .nav-item .nav-link:after {
        display: none; }
      .npt-grids-safety .container .npt-grids-safety-in .nav .nav-item .nav-link .u-nav-v8-content {
        position: absolute;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: table;
        width: -moz-fit-content; }
        .npt-grids-safety .container .npt-grids-safety-in .nav .nav-item .nav-link .u-nav-v8-content .u-nav-v8__number {
          background-color: #37424b;
          border-radius: 50%;
          width: 48px;
          height: 48px;
          line-height: 48px;
          text-align: center;
          float: left;
          margin-right: 10px;
          margin-top: 9px;
          font-size: 31px;
          font-family: 'Oswald';
          font-weight: 600;
          color: #fff; }
        .npt-grids-safety .container .npt-grids-safety-in .nav .nav-item .nav-link .u-nav-v8-content .u-nav-v8__description {
          letter-spacing: -0.1px;
          font-size: 19px;
          font-family: 'Oswald';
          font-weight: 300;
          color: #37424b !important;
          float: left;
          max-height: 90px;
          margin-top: 5px;
          line-height: 26px; }
          .npt-grids-safety .container .npt-grids-safety-in .nav .nav-item .nav-link .u-nav-v8-content .u-nav-v8__description b {
            font-weight: 600; }
    .npt-grids-safety .container .npt-grids-safety-in .nav .nav-item .active {
      border-left: 1px solid #e1e1e1;
      border-top: 1px solid #e1e1e1;
      border-right: 1px solid #e1e1e1;
      border-top-left-radius: 10px;
      border-top-right-radius: 10px;
      opacity: 1; }
      .npt-grids-safety .container .npt-grids-safety-in .nav .nav-item .active .u-nav-v8__icon {
        background: #fff !important; }
      .npt-grids-safety .container .npt-grids-safety-in .nav .nav-item .active .u-nav-v8__description {
        color: #37424b !important; }
      .npt-grids-safety .container .npt-grids-safety-in .nav .nav-item .active:before {
        background: #fff;
        height: 2px;
        width: 100%;
        content: "";
        position: absolute;
        left: 0px;
        bottom: -2px; }
.npt-grids-safety .container .npt-grids-safety-in .tab-content .tab-pane {
  padding-top: 50px;
  font-size: 14px;
  color: #222;
  line-height: 20px; }
  .npt-grids-safety .container .npt-grids-safety-in .tab-content .tab-pane .row .card {
    border: 0px !important;
    padding-bottom: 30px;
    background: transparent; }
    .npt-grids-safety .container .npt-grids-safety-in .tab-content .tab-pane .row .card .card-header {
      padding: 0px;
      background: transparent;
      border: 0px;
      font-size: 15px;
      font-family: 'Oswald';
      font-weight: 600;
      color: #222 !important;
      position: relative;
      line-height: 34px; }
      .npt-grids-safety .container .npt-grids-safety-in .tab-content .tab-pane .row .card .card-header span {
        position: relative;
        background: #37424b;
        line-height: 34px;
        height: 34px;
        letter-spacing: -0.1px;
        color: #fff;
        font-size: 20px;
        float: left;
        padding-left: 10px;
        width: 90px;
        font-family: 'Oswald';
        font-weight: 600;
        margin-right: 25px; }
        .npt-grids-safety .container .npt-grids-safety-in .tab-content .tab-pane .row .card .card-header span:before {
          position: absolute;
          content: "";
          border-top: 17px solid transparent;
          border-bottom: 17px solid transparent;
          border-left: 12px solid #37424b;
          right: -12px; }
        .npt-grids-safety .container .npt-grids-safety-in .tab-content .tab-pane .row .card .card-header span i {
          position: absolute;
          top: 7px;
          right: 2px; }
  .npt-grids-safety .container .npt-grids-safety-in .tab-content .tab-pane .row .card-block {
    padding: 0px;
    background: transparent;
    border: 0px !important; }
    .npt-grids-safety .container .npt-grids-safety-in .tab-content .tab-pane .row .card-block p {
      font-size: 14px;
      color: #222;
      line-height: 20px; }

.npt-investment-projects-page .container {
  display: table; }
  .npt-investment-projects-page .container .h3 {
    color: #fff;
    line-height: 35px;
    font-family: 'Oswald';
    font-weight: 300;
    font-size: 24px !important;
    margin-bottom: 10px; }
  .npt-investment-projects-page .container .npt-lable-small {
    background: #37424b;
    line-height: 44px;
    height: 50px;
    letter-spacing: -0.1px;
    color: #fff;
    font-size: 24px;
    float: left;
    font-family: 'Oswald';
    padding-left: 20px;
    font-weight: 300;
    border-bottom-left-radius: 10px;
    border-top-left-radius: 10px;
    position: relative;
    padding-right: 30px;
    min-width: 310px;
    margin-top: 20px;
    margin-bottom: 20px; }
    .npt-investment-projects-page .container .npt-lable-small a {
      color: #fff;
      font-size: 24px;
      float: left;
      font-family: 'Oswald';
      line-height: 44px; }
    .npt-investment-projects-page .container .npt-lable-small:before {
      position: absolute;
      content: "";
      border-top: 25px solid transparent;
      border-bottom: 25px solid transparent;
      border-left: 20px solid #37424b;
      right: -20px; }
    .npt-investment-projects-page .container .npt-lable-small b {
      font-weight: 700; }
  .npt-investment-projects-page .container .card {
    float: left;
    width: 100%;
    border-top: 1px solid #f1f1f1 !important; }
    .npt-investment-projects-page .container .card .accordion-lable {
      background: #f1f1f1;
      border-bottom: 1px solid #fff;
      height: 40px;
      line-height: 40px;
      color: #666666;
      font-size: 14px;
      font-family: Arial;
      border-top: 1px solid #fff; }
    .npt-investment-projects-page .container .card .u-accordion .card .d-inline-number {
      min-width: 50px;
      font-size: 30px;
      color: #37424b;
      font-family: 'Oswald';
      font-weight: 700;
      float: left;
      opacity: 0.5 !important; }
    .npt-investment-projects-page .container .card .u-accordion .card h6 {
      color: #222222;
      font-size: 14px;
      font-weight: 700;
      font-family: Arial !important;
      line-height: 20px;
      text-transform: none;
      width: 92%; }
    .npt-investment-projects-page .container .card .u-accordion .card .d-md-table-day {
      color: #222222;
      font-size: 14px;
      font-family: Arial !important; }
    .npt-investment-projects-page .container .card .u-accordion .card .d-md-table-open {
      color: #164397;
      font-size: 14px;
      font-family: Arial !important;
      text-transform: none; }
      .npt-investment-projects-page .container .card .u-accordion .card .d-md-table-open span i:before {
        float: right;
        margin-left: 10px;
        margin-top: 3px; }
    .npt-investment-projects-page .container .card .u-accordion .card .accordion-body {
      border: 1px solid #e1e1e1 !important; }
      .npt-investment-projects-page .container .card .u-accordion .card .accordion-body .u-accordion__body {
        padding: 30px; }
        .npt-investment-projects-page .container .card .u-accordion .card .accordion-body .u-accordion__body h3 {
          color: #222222;
          font-size: 18px;
          font-weight: bold;
          font-family: Arial !important;
          line-height: 24px;
          border-bottom: 1px solid #e1e1e1;
          float: left;
          width: 100%;
          text-transform: none !important;
          padding-bottom: 10px; }
        .npt-investment-projects-page .container .card .u-accordion .card .accordion-body .u-accordion__body .row {
          float: left;
          width: 100%; }
          .npt-investment-projects-page .container .card .u-accordion .card .accordion-body .u-accordion__body .row .table-responsive {
            text-transform: none !important;
            color: #222;
            font-size: 14px;
            font-family: Arial !important;
            border: 0px; }
            .npt-investment-projects-page .container .card .u-accordion .card .accordion-body .u-accordion__body .row .table-responsive td, .npt-investment-projects-page .container .card .u-accordion .card .accordion-body .u-accordion__body .row .table-responsive tr {
              border: 0px;
              padding: 7px 0px !important; }
            .npt-investment-projects-page .container .card .u-accordion .card .accordion-body .u-accordion__body .row .table-responsive .lable {
              color: #888888;
              min-width: 80px; }
    .npt-investment-projects-page .container .card .u-accordion .card:nth-child(1) .d-inline-number {
      opacity: 1 !important; }
    .npt-investment-projects-page .container .card .u-accordion .card:nth-child(2) .d-inline-number {
      opacity: 0.9 !important; }
    .npt-investment-projects-page .container .card .u-accordion .card:nth-child(3) .d-inline-number {
      opacity: 0.8 !important; }
    .npt-investment-projects-page .container .card .u-accordion .card:nth-child(4) .d-inline-number {
      opacity: 0.7 !important; }
    .npt-investment-projects-page .container .card .u-accordion .card:nth-child(5) .d-inline-number {
      opacity: 0.6 !important; }
  .npt-investment-projects-page .container .impotant {
    background: #ed1d25 !important; }
    .npt-investment-projects-page .container .impotant:before {
      border-left: 20px solid #ed1d25 !important; }

.npt-cooperation-pportunities .npt-cooperation-pportunities-in .nav {
  border-bottom: 1px solid #e1e1e1;
  padding-bottom: 10px; }
  .npt-cooperation-pportunities .npt-cooperation-pportunities-in .nav .nav-item {
    padding: 0px 0px;
    position: relative;
    width: 14.222%; }
    .npt-cooperation-pportunities .npt-cooperation-pportunities-in .nav .nav-item .nav-link {
      background: #fff;
      color: #37424b !important;
      font-size: 19px;
      font-family: 'Oswald';
      font-weight: 300;
      position: relative;
      opacity: 0.6;
      text-align: center;
      padding: 0px 0px;
      letter-spacing: -0.1px; }
      .npt-cooperation-pportunities .npt-cooperation-pportunities-in .nav .nav-item .nav-link:after {
        display: none; }
      .npt-cooperation-pportunities .npt-cooperation-pportunities-in .nav .nav-item .nav-link .u-nav-v8__icon {
        background-color: transparent;
        margin: 0px auto;
        width: 100%;
        float: left;
        height: 38px;
        -webkit-filter: grayscale(100%); }
      .npt-cooperation-pportunities .npt-cooperation-pportunities-in .nav .nav-item .nav-link .u-nav-v8__description {
        width: 100%;
        float: left;
        letter-spacing: -0.1px;
        font-size: 20px;
        font-family: 'Oswald';
        font-weight: 300;
        color: #37424b !important;
        float: left;
        margin-top: 0px;
        line-height: 26px;
        text-align: center; }
        .npt-cooperation-pportunities .npt-cooperation-pportunities-in .nav .nav-item .nav-link .u-nav-v8__description b {
          font-weight: 500; }
    .npt-cooperation-pportunities .npt-cooperation-pportunities-in .nav .nav-item .active {
      border-left: 0px solid #e1e1e1;
      border-top: 0px solid #e1e1e1;
      border-right: 0px solid #e1e1e1;
      border-top-left-radius: 0px;
      border-top-right-radius: 0px;
      opacity: 1; }
      .npt-cooperation-pportunities .npt-cooperation-pportunities-in .nav .nav-item .active .u-nav-v8__icon {
        background: #fff !important;
        -webkit-filter: grayscale(0%); }
      .npt-cooperation-pportunities .npt-cooperation-pportunities-in .nav .nav-item .active .u-nav-v8__description {
        color: #164397 !important; }
      .npt-cooperation-pportunities .npt-cooperation-pportunities-in .nav .nav-item .active:before {
        background: #164397;
        height: 3px;
        width: 100%;
        content: "";
        position: absolute;
        left: 0px;
        bottom: -12px; }
.npt-cooperation-pportunities .npt-cooperation-pportunities-in .tab-content .tab-pane {
  padding-top: 20px;
  font-size: 14px;
  color: #222;
  line-height: 20px; }
  .npt-cooperation-pportunities .npt-cooperation-pportunities-in .tab-content .tab-pane p {
    font-size: 14px;
    color: #222;
    line-height: 20px; }
  .npt-cooperation-pportunities .npt-cooperation-pportunities-in .tab-content .tab-pane h6 {
    font-size: 18px;
    line-height: 26px; }
    .npt-cooperation-pportunities .npt-cooperation-pportunities-in .tab-content .tab-pane h6 b {
      font-weight: bold; }
  .npt-cooperation-pportunities .npt-cooperation-pportunities-in .tab-content .tab-pane .img-agreement {
    float: right;
    max-width: 600px; }
  .npt-cooperation-pportunities .npt-cooperation-pportunities-in .tab-content .tab-pane .npt-investment-projects-page .card {
    border-top: 0px solid #f1f1f1 !important; }
    .npt-cooperation-pportunities .npt-cooperation-pportunities-in .tab-content .tab-pane .npt-investment-projects-page .card .accordion-search {
      padding: 0px 0px 10px 0px;
      border-bottom: 1px solid #f1f1f1; }
      .npt-cooperation-pportunities .npt-cooperation-pportunities-in .tab-content .tab-pane .npt-investment-projects-page .card .accordion-search .d-md-table-cell .form-control {
        height: 34px;
        border: 1px solid #e1e1e1; }
      .npt-cooperation-pportunities .npt-cooperation-pportunities-in .tab-content .tab-pane .npt-investment-projects-page .card .accordion-search .d-md-table-cell .input-search {
        width: 290px; }
      .npt-cooperation-pportunities .npt-cooperation-pportunities-in .tab-content .tab-pane .npt-investment-projects-page .card .accordion-search .d-md-table-cell .select-dm {
        width: 200px; }
      .npt-cooperation-pportunities .npt-cooperation-pportunities-in .tab-content .tab-pane .npt-investment-projects-page .card .accordion-search .d-md-table-cell .input-day {
        width: 110px; }
      .npt-cooperation-pportunities .npt-cooperation-pportunities-in .tab-content .tab-pane .npt-investment-projects-page .card .accordion-search .d-md-table-cell .u-btn-search {
        width: 110px;
        height: 34px;
        background: #164397;
        color: #fff;
        border-radius: 0px;
        text-align: center;
        line-height: 34px;
        padding: 0px;
        margin-top: -6px; }
    .npt-cooperation-pportunities .npt-cooperation-pportunities-in .tab-content .tab-pane .npt-investment-projects-page .card .u-accordion {
      border-top: 1px solid #f1f1f1 !important; }
      .npt-cooperation-pportunities .npt-cooperation-pportunities-in .tab-content .tab-pane .npt-investment-projects-page .card .u-accordion .card .card {
        border-bottom: 1px solid #f1f1f1 !important; }
        .npt-cooperation-pportunities .npt-cooperation-pportunities-in .tab-content .tab-pane .npt-investment-projects-page .card .u-accordion .card .card .w-100 .clearfix .d-inline-day {
          font-size: 16px;
          font-family: 'Oswald';
          font-weight: 600;
          color: #37424b !important;
          text-align: center;
          width: 72px;
          float: left; }
          .npt-cooperation-pportunities .npt-cooperation-pportunities-in .tab-content .tab-pane .npt-investment-projects-page .card .u-accordion .card .card .w-100 .clearfix .d-inline-day span {
            width: 100%;
            border-top: 2px solid #e1e1e1;
            font-family: 'Oswald';
            font-weight: 300;
            margin-top: 5px; }
        .npt-cooperation-pportunities .npt-cooperation-pportunities-in .tab-content .tab-pane .npt-investment-projects-page .card .u-accordion .card .card .w-100 .clearfix .d-inline-block {
          width: 85%; }
        .npt-cooperation-pportunities .npt-cooperation-pportunities-in .tab-content .tab-pane .npt-investment-projects-page .card .u-accordion .card .card .d-md-table-file {
          line-height: 60px; }

.npt-public-announcement .container .npt-grids-safety-in .nav .nav-item {
  width: auto !important;
  float: left; }
  .npt-public-announcement .container .npt-grids-safety-in .nav .nav-item:nth-of-type(1) {
    width: 21% !important; }
  .npt-public-announcement .container .npt-grids-safety-in .nav .nav-item:nth-of-type(2) {
    width: 20% !important; }
  .npt-public-announcement .container .npt-grids-safety-in .nav .nav-item:nth-of-type(3) {
    width: 16% !important; }
  .npt-public-announcement .container .npt-grids-safety-in .nav .nav-item:nth-of-type(4) {
    width: 24% !important; }
  .npt-public-announcement .container .npt-grids-safety-in .nav .nav-item:nth-of-type(5) {
    width: 19% !important; }
.npt-public-announcement .container .npt-grids-safety-in .tab-content .tab-pane {
  padding-top: 10px; }
  .npt-public-announcement .container .npt-grids-safety-in .tab-content .tab-pane .npt-investment-projects-page .container .card {
    border-top: 0px solid #f1f1f1 !important; }
    .npt-public-announcement .container .npt-grids-safety-in .tab-content .tab-pane .npt-investment-projects-page .container .card .u-accordion .card .card {
      border-bottom: 1px solid #f1f1f1 !important; }
      .npt-public-announcement .container .npt-grids-safety-in .tab-content .tab-pane .npt-investment-projects-page .container .card .u-accordion .card .card .d-md-table .d-md-table-cell .d-inline-day {
        position: relative;
        background: #37424b;
        line-height: 34px;
        height: 34px;
        letter-spacing: -0.1px;
        color: #fff;
        font-size: 18px;
        float: left;
        padding-left: 10px;
        width: 90px;
        font-family: 'Oswald';
        font-weight: 300;
        margin-right: 25px; }
        .npt-public-announcement .container .npt-grids-safety-in .tab-content .tab-pane .npt-investment-projects-page .container .card .u-accordion .card .card .d-md-table .d-md-table-cell .d-inline-day:after {
          position: absolute;
          content: "";
          border-top: 17px solid transparent;
          border-bottom: 17px solid transparent;
          border-left: 12px solid #37424b;
          right: -12px; }
      .npt-public-announcement .container .npt-grids-safety-in .tab-content .tab-pane .npt-investment-projects-page .container .card .u-accordion .card .card .accordion-body {
        border: 0px solid #e1e1e1 !important; }
        .npt-public-announcement .container .npt-grids-safety-in .tab-content .tab-pane .npt-investment-projects-page .container .card .u-accordion .card .card .accordion-body .u-accordion__body {
          padding: 0px 0px 10px 10%; }
          .npt-public-announcement .container .npt-grids-safety-in .tab-content .tab-pane .npt-investment-projects-page .container .card .u-accordion .card .card .accordion-body .u-accordion__body h3 {
            border-bottom: 0px solid #e1e1e1 !important;
            border-top: 1px solid #e1e1e1;
            padding-top: 15px; }
          .npt-public-announcement .container .npt-grids-safety-in .tab-content .tab-pane .npt-investment-projects-page .container .card .u-accordion .card .card .accordion-body .u-accordion__body .row .public-left {
            font-size: 14px;
            color: #222;
            font-family: Arial;
            line-height: 20px; }
            .npt-public-announcement .container .npt-grids-safety-in .tab-content .tab-pane .npt-investment-projects-page .container .card .u-accordion .card .card .accordion-body .u-accordion__body .row .public-left .date {
              color: #666;
              font-size: 14px;
              padding-bottom: 10px; }
            .npt-public-announcement .container .npt-grids-safety-in .tab-content .tab-pane .npt-investment-projects-page .container .card .u-accordion .card .card .accordion-body .u-accordion__body .row .public-left .sampo {
              font-weight: bold;
              padding-bottom: 15px; }
            .npt-public-announcement .container .npt-grids-safety-in .tab-content .tab-pane .npt-investment-projects-page .container .card .u-accordion .card .card .accordion-body .u-accordion__body .row .public-left .contant {
              padding-bottom: 25px; }
          .npt-public-announcement .container .npt-grids-safety-in .tab-content .tab-pane .npt-investment-projects-page .container .card .u-accordion .card .card .accordion-body .u-accordion__body .row .public-right {
            font-size: 14px;
            color: #222;
            font-family: Arial;
            line-height: 20px; }
            .npt-public-announcement .container .npt-grids-safety-in .tab-content .tab-pane .npt-investment-projects-page .container .card .u-accordion .card .card .accordion-body .u-accordion__body .row .public-right .link-file {
              padding: 10px 0px;
              font-weight: bold;
              color: #164397; }
              .npt-public-announcement .container .npt-grids-safety-in .tab-content .tab-pane .npt-investment-projects-page .container .card .u-accordion .card .card .accordion-body .u-accordion__body .row .public-right .link-file .file {
                float: left; }
            .npt-public-announcement .container .npt-grids-safety-in .tab-content .tab-pane .npt-investment-projects-page .container .card .u-accordion .card .card .accordion-body .u-accordion__body .row .public-right p {
              text-align: right;
              font-weight: bold; }

.npt-sevice-page .container .npt-sevice-page-left {
  float: left;
  width: 100%; }
  .npt-sevice-page .container .npt-sevice-page-left ul {
    margin-top: -50px;
    float: left;
    width: 50%; }
    .npt-sevice-page .container .npt-sevice-page-left ul .item-list {
      position: relative;
      float: left;
      width: 100%;
      text-align: right; }
      .npt-sevice-page .container .npt-sevice-page-left ul .item-list a {
        position: relative;
        width: 100%;
        float: right;
        height: 180px; }
        .npt-sevice-page .container .npt-sevice-page-left ul .item-list a h3 {
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          font-size: 20px;
          font-weight: bold;
          width: 100%;
          padding-right: 25%;
          color: #222222; }
          .npt-sevice-page .container .npt-sevice-page-left ul .item-list a h3:before {
            position: absolute;
            height: 3px;
            width: 30%;
            bottom: -10px;
            right: 25%;
            background: #f34219;
            content: ""; }
        .npt-sevice-page .container .npt-sevice-page-left ul .item-list a .img {
          position: absolute;
          right: -40px; }
.npt-sevice-page .container .npt-sevice-page-right {
  float: left;
  width: 100%; }
  .npt-sevice-page .container .npt-sevice-page-right ul {
    float: right;
    width: 50%;
    margin-top: -50px; }
    .npt-sevice-page .container .npt-sevice-page-right ul .item-list {
      position: relative;
      float: left;
      width: 100%;
      text-align: left; }
      .npt-sevice-page .container .npt-sevice-page-right ul .item-list a {
        position: relative;
        width: 100%;
        float: right;
        height: 180px; }
        .npt-sevice-page .container .npt-sevice-page-right ul .item-list a h3 {
          position: absolute;
          top: 50%;
          left: 50%;
          transform: translate(-50%, -50%);
          font-size: 20px;
          font-weight: bold;
          width: 100%;
          padding-left: 25%;
          color: #222222; }
          .npt-sevice-page .container .npt-sevice-page-right ul .item-list a h3:before {
            position: absolute;
            height: 3px;
            width: 30%;
            bottom: -10px;
            left: 25%;
            background: #27ad12;
            content: ""; }
        .npt-sevice-page .container .npt-sevice-page-right ul .item-list a .img {
          position: absolute;
          left: -40px; }
.npt-sevice-page .container .npt-sevice-page-left:nth-of-type(2) ul .item-list a h3:before {
  background: #de2b2a; }
.npt-sevice-page .container .npt-sevice-page-right:nth-of-type(2) ul .item-list a h3:before {
  background: #27ad12; }
.npt-sevice-page .container .npt-sevice-page-left:nth-of-type(3) ul .item-list a h3:before {
  background: #de2b2a; }
.npt-sevice-page .container .npt-sevice-page-right:nth-of-type(4) ul .item-list a h3:before {
  background: #3f8577; }
.npt-sevice-page .container .npt-sevice-page-left:nth-of-type(5) ul .item-list a h3:before {
  background: #820606; }
.npt-sevice-page .container .npt-sevice-page-right:nth-of-type(6) ul .item-list a h3:before {
  background: #de2b2a; }
.npt-sevice-page .container .npt-sevice-page-left:nth-of-type(7) ul .item-list a h3:before {
  background: #820606; }
.npt-sevice-page .container .npt-sevice-page-right:nth-of-type(8) ul .item-list a h3:before {
  background: #de2b2a; }
.npt-sevice-page .container .npt-sevice-page-left:nth-of-type(9) ul .item-list a h3:before {
  background: #820606; }

.npt-sevice-page .container .npt-sevice-page-right ul .item-list a:hover h3 {
  color: #164397; }

.g-pb-300 {
  padding-bottom: 300px; }

.npt-quanLy .container .npt-public-news-in {
  box-shadow: 0 0px 3px 3px rgba(0, 0, 0, 0.1);
  background: #fff;
  border-radius: 8px;
  height: 540px; }
  .npt-quanLy .container .npt-public-news-in .npt-contact-add {
    background: #164397;
    border-bottom-right-radius: 0px;
    border-top-right-radius: 0px;
    border-bottom-left-radius: 8px;
    border-top-left-radius: 8px;
    padding: 40px 30px 0px 30px !important;
    min-height: 540px; }
    .npt-quanLy .container .npt-public-news-in .npt-contact-add .npt-lable {
      max-width: 77% !important;
      color: #fff;
      letter-spacing: -0.1px;
      margin: 0 auto;
      text-align: center;
      position: relative;
      display: -webkit-box; }
      .npt-quanLy .container .npt-public-news-in .npt-contact-add .npt-lable h2 {
        color: #fff;
        line-height: 44px;
        width: 100%;
        font-size: 30px !important;
        font-family: 'Oswald';
        font-weight: 300; }
        .npt-quanLy .container .npt-public-news-in .npt-contact-add .npt-lable h2::before {
          width: 100%;
          height: 1px;
          background: rgba(255, 255, 255, 0.5);
          position: absolute;
          bottom: -15px;
          left: 0px !important;
          content: "";
          transform: translate(0%, 0%) !important; }
        .npt-quanLy .container .npt-public-news-in .npt-contact-add .npt-lable h2::after {
          width: 40%;
          height: 3px;
          background: #fff;
          position: absolute;
          bottom: -16px;
          content: "";
          left: 50%;
          transform: translate(-50%, 0%); }
        .npt-quanLy .container .npt-public-news-in .npt-contact-add .npt-lable h2 b {
          font-weight: 600; }
    .npt-quanLy .container .npt-public-news-in .npt-contact-add h3 {
      color: #fff;
      line-height: 30px;
      width: 100%;
      font-size: 24px !important;
      font-family: 'Oswald';
      font-weight: 300;
      text-align: center;
      padding-top: 35px; }
    .npt-quanLy .container .npt-public-news-in .npt-contact-add .row {
      padding-bottom: 20px; }
      .npt-quanLy .container .npt-public-news-in .npt-contact-add .row h1 {
        color: #fff;
        width: 100%;
        font-size: 30px;
        font-family: 'Oswald';
        font-weight: 700;
        text-align: left; }
      .npt-quanLy .container .npt-public-news-in .npt-contact-add .row h1 span {
        color: #fff;
        width: 100%;
        font-size: 19px;
        font-family: "Open Sans";
        font-weight: 300;
        text-align: left;
        opacity: 0.6;
        letter-spacing: -0.2;
        padding-right: 10px; }
      .npt-quanLy .container .npt-public-news-in .npt-contact-add .row p {
        color: #fff;
        line-height: 28px;
        width: 100%;
        font-size: 19px;
        font-family: "Open Sans";
        font-weight: 300;
        text-align: left;
        opacity: 0.6;
        letter-spacing: -0.2; }
  .npt-quanLy .container .npt-public-news-in .npt-public-news-tab {
    padding: 0px;
    overflow: hidden; }
    .npt-quanLy .container .npt-public-news-in .npt-public-news-tab .content-new {
      padding: 60px; }
      .npt-quanLy .container .npt-public-news-in .npt-public-news-tab .content-new p {
        font-size: 15px;
        line-height: 24px;
        color: #222222; }

@media all and (min-width: 1140px) {
  .npt-new-caltalog-in .npt-new-news2 .thumbs {
    height: 265px !important;
    overflow: hidden; }

  .npt-operations .thumbs, .npt-new-caltalog-in .npt-new-news1 .thumbs {
    height: 310px;
    overflow: hidden; }

  .npt-investment .thumbs {
    height: 260px;
    overflow: hidden; }

  .npt-investment .thumbs img, .npt-operations .thumbs img, .npt-new-caltalog-in .thumbs img {
    height: 100%;
    object-fit: cover;
    width: 100%; } }
@media all and (max-width: 1024px) {
  .npt-grids-safety .u-nav-v8-content .u-nav-v8__number {
    background-color: #37424b;
    border-radius: 50%;
    width: 48px;
    height: 48px;
    line-height: 48px;
    text-align: center;
    float: left;
    margin-right: 10px;
    margin-top: 0px;
    font-size: 31px;
    font-family: 'Oswald';
    font-weight: 600;
    color: #fff; }

  .npt-public-announcement .npt-grids-safety-in .tab-content .btn,
  .npt-public-announcement .npt-grids-safety-in .tab-content .btn .u-nav-v8-content {
    text-align: left !important;
    font-size: 20px; }

  .npt-grids-safety .u-nav-v8-content .btn-md {
    padding: 0.57143rem 10px !important; }

  .npt-onNews .container .row .npt-onNews-in .npt-onNews-list {
    padding-top: 0px !important; }

  .npt-onNews .npt-onNews-in {
    padding-top: 0px !important;
    padding-bottom: 40px !important; }

  .npt-onNews .container .row .npt-onNews-in .npt-onNews-list .npt-news-list li .logo-web {
    min-height: 70px !important;
    display: none; }

  .npt-onNews .container .row .npt-onNews-in .npt-onNews-list .npt-news-list li .news-web {
    width: 100% !important;
    min-height: 10px !important; }

  .npt-onNews .container .row .npt-onNews-in .npt-onNews-list .npt-news-list li .news-web .thumbs {
    width: 100%;
    height: 100%;
    overflow: hidden;
    margin-right: 0px;
    min-height: 220px; }

  .npt-pressRelease .container {
    width: 100% !important;
    max-width: 100% !important; }

  .npt-pressRelease .container .row .npt-pressRelease-in .row .npt-pressRelease-left .npt-highlight-list li .content-new {
    padding: 15px !important; }

  .npt-pressRelease-in .npt-onNews-list .npt-news-list li .news-web .content-new a .title {
    -webkit-line-clamp: 10 !important; }

  .npt-pressRelease .container .row .npt-pressRelease-in .npt-lable {
    margin-bottom: 10px; }

  .npt-pressRelease-in .npt-pressRelease-right .npt-news-list li .news-web .thumbs {
    width: 100% !important;
    margin-right: 0px !important;
    height: 135px !important;
    margin-top: 10px; }

  .npt-powerInfuture .npt-highlight-in {
    padding-top: 40px !important;
    padding-bottom: 0px !important; }

  .npt-highlight .npt-highlight-in .npt-lable-all.npt-lable,
  .npt-powerInfuture .npt-highlight-in .npt-lable-all.npt-lable {
    margin-bottom: 20px !important; }

  .npt-highlight .npt-highlight-in {
    padding-top: 40px !important;
    padding-bottom: 40px !important; }

  .npt-service .container .npt-list-service {
    background: none !important; }

  .npt-list-cooperate .container .h3, .npt-service .container .h3 {
    padding-top: 0px !important; }

  .npt-list-cooperate .text-center {
    padding-top: 30px !important; }

  .npt-values .npt-core-values-left img {
    width: 100%; }

  .npt-lable-all.npt-lable {
    margin-bottom: 50px; }

  .npt-list-business-in {
    padding: 40px 0px !important; }

  .npt-list-business-in .u-block-hover {
    padding-bottom: 30px; }

  .npt-list-business-in .u-block-hover p {
    padding-top: 15px !important; }

  .npt-Overview-in .content-new p, .npt-list-business-in .u-block-hover p {
    line-height: 24px !important;
    font-size: 17px !important; }

  .npt-list:first-child {
    padding-right: 15px !important; }

  .header_menu {
    padding: .5rem 0rem !important;
    margin-top: 15px; }

  .header_menu .navbar-nav {
    background: #164397 !important; }

  .header_top {
    padding: 20px 0px 0px 0px !important;
    /*position: relative;*/
    /*z-index: 99;*/ }

  .npt-content-map img {
    width: 100%; }

  .banner {
    max-height: 500px;
    min-height: 500px; }

  /*.npt-mobi, .npt-show-mobi {*/
  /*display: block !important;*/
  /*}*/
  .col-lg-7.logo-name, .col-lg-5.menuTop-Right {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100% !important;
    flex: 1 0 100% !important;
    max-width: 100% !important; }

  .logo-name .logo-brand {
    margin-right: 0px !important; }

  .logo-name .logo-brand img {
    float: left;
    height: auto !important;
    width: 100% !important; }

  .menuTop-Right ul li, #language-dropdown-invoker {
    display: block !important; }

  #language-dropdown-invoker {
    font-size: 0px !important;
    width: 30px;
    padding: 8px 0px !important;
    border: 0px; }

  .language-top {
    border: 0px solid #e1e1e1 !important; }

  .menuTop-Right {
    position: absolute;
    top: 61px;
    right: 0px;
    z-index: 999;
    width: 83%; }

  .menuTop-Right ul li a {
    color: #fff !important; }

  .js-mega-menu .navbar-toggler {
    margin-left: 15px;
    color: #fff; }

  .hamburger-inner, .hamburger-inner:after, .hamburger-inner:before {
    background-color: #fff; }

  #language-dropdown {
    top: 121%; }

  #language-dropdown a {
    color: #333 !important; }

  .navbar-expand-lg .navbar-collapse {
    margin-top: 373px;
    border-top: 1px solid rgba(0, 0, 0, 0.2); }

  .navbar-expand-lg .navbar-collapse li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.2);
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0px 15px; }

  .hs-mobile-state .hs-sub-menu, .hs-mobile-state .hs-mega-menu {
    position: relative !important; }

  .header_menu .navbar-nav .box-search, .list-special-announcement {
    width: 100% !important; }

  .header_menu .navbar-nav .box-search {
    max-width: 100% !important; }

  .is-active .hamburger-box .hamburger-inner {
    margin-top: 123px !important;
    top: 109px;
    position: relative; }

  /*News*/
  .npt-special-announcement {
    padding: 15px 15px 0px 15px !important; }

  .npt-special-announcement .lable {
    width: 100% !important;
    text-align: left !important; }

  .npt-special-announcement .lable span {
    float: left;
    margin-right: 10px; }

  .npt-special-announcement .lable span img {
    height: 34px; }

  .npt-special-announcement .lable h1 b {
    width: auto !important;
    float: none !important;
    line-height: 34px; }

  .list-special-announcement li {
    float: left;
    width: 100% !important;
    margin-bottom: 15px; }

  /*npt-operations*/
  .npt-operations {
    padding: 0 15px !important; }

  .npt-operations article:first-child {
    margin-bottom: 20px; }

  .npt-operations article .thumbs {
    margin-bottom: 15px !important; }

  .npt-operations .npt-news {
    padding-bottom: 40px !important; }

  /*npt-investment*/
  .npt-investment {
    padding: 0 15px !important; }

  .npt-investment article:first-child, .npt-investment article:nth-child(2) {
    margin-bottom: 20px; }

  /*npt-list-catalog*/
  .npt-list-catalog .item-list h3 {
    font-size: 22px !important; }

  .npt-list-catalog .hi-icon-wrap {
    margin: 0px 0px 20px 0px !important; }

  /*npt-calenderEvent*/
  .npt-calenderEvent {
    padding: 35px 15px 35px 15px !important; }

  .npt-calenderEvent .lable {
    width: 100% !important;
    text-align: left !important;
    margin-bottom: 10px; }

  .npt-calenderEvent .lable span {
    float: left;
    margin-right: 10px; }

  .npt-calenderEvent .lable span img {
    height: 44px; }

  .npt-calenderEvent .lable h1 b {
    width: auto !important;
    float: none !important;
    line-height: 34px; }

  .npt-calenderEvent li {
    float: left;
    width: 100% !important;
    margin-bottom: 15px;
    margin-left: 0px !important; }

  .npt-calenderEvent li:last-child, .list-transmission-bulettin .li-item:last-child {
    margin-bottom: 0px; }

  /*npt-international-ooperation*/
  .npt-international-ooperation {
    padding: 0 15px !important; }

  .npt-international-ooperation article:first-child {
    margin-bottom: 20px; }

  .npt-international-ooperation article .thumbs {
    margin-bottom: 15px !important; }

  .npt-international-ooperation .npt-news {
    padding-bottom: 40px !important; }

  /*npt-international-ooperation*/
  .npt-online-exhibitions, .npt-transmission-bulettin {
    padding: 0 15px !important; }

  .list-transmission-bulettin .li-item {
    margin-bottom: 15px; }

  .npt-values .container .row .npt-values-in .img {
    width: 100%;
    opacity: 0.4; }

  .npt-core-values .npt-core-values-in {
    padding: 40px 0px !important; }

  .npt-values .container .row .npt-values-in .content-in {
    position: absolute;
    width: 90%;
    top: 75px;
    right: 45px;
    padding-top: 7.3333%; }

  .npt-core-values .npt-core-values-left img, .npt-sodococau .container img {
    width: 100% !important; }

  .npt-khoi-ban .container .row {
    padding-top: 10px !important;
    padding-bottom: 0px; }

  .npt-transmission-bulettin .col-md-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 25%;
    flex: 0 0 50%;
    max-width: 50%;
    margin-bottom: 20px; }

  .npt-international-ooperation .container,
  .npt-operations .container,
  .npt-online-exhibitions .container,
  .npt-transmission-bulettin .container,
  .npt-investment .container {
    padding-right: 0px;
    padding-left: 0px; }

  .npt-online-exhibitions .npt-news .videoNew .thumbs {
    height: 197px !important; }

  .npt-transmission-bulettin .col-md-3 {
    -ms-flex: 0 0 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important; }

  .npt-transmission-bulettin.npt-transmission-pageIn .col-md-3 {
    margin-bottom: 0px; }

  .npt-transmission-bulettin.npt-transmission-pageIn .form-group {
    padding: 0px 15px; }

  .npt-new-caltalog-in .npt-new-news1 .col-md-6:first-child,
  .npt-new-caltalog-in .npt-new-news2 .col-md-4:first-child,
  .npt-new-caltalog-in .npt-new-news2 .col-md-4:nth-of-type(2) {
    margin-bottom: 30px; }

  .npt-news-detail .content img, .npt-news-detail .content table {
    width: 100% !important; }

  .keyword a {
    margin-bottom: 5px !important;
    float: left !important;
    margin-right: 5px !important; }

  .keyword span {
    float: left;
    margin-right: 5px !important;
    line-height: 34px; }

  .form-comment-in .avata {
    width: 50px !important;
    height: 50px !important; }

  .form-comment-in {
    padding: 10px !important; }

  .block-comment .form-comment textarea {
    width: 83% !important;
    height: 100px !important; }

  .BL-content {
    width: 85% !important; }

  .boxNewsList.list-news-dm {
    padding: 10px 0px 50px 0px !important; }

  .npt-new-read .list-news-new li .thumbs {
    width: 27% !important;
    margin-right: 10px !important; }

  .npt-new-news3-right .npt-list-catalog .item-list {
    float: left;
    width: 100%;
    flex: 1 0 100% !important;
    max-width: 100% !important; }

  .npt-new-read .npt-lable h2, .npt-new-read .npt-lable a {
    background: #fff;
    color: #ed1c24 !important;
    line-height: 40px;
    font-family: 'Oswald';
    text-transform: uppercase;
    padding-right: 15px;
    font-weight: 500 !important;
    width: 100%;
    float: left;
    padding: 0px !important; } }
@media all and (max-width: 800px) {
  .npt-contact .container .row .npt-contact-form,
  .npt-contact .container .row .npt-contact-add {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%; }

  .npt-contact .container .row .npt-contact-add {
    border-bottom-right-radius: 8px;
    border-bottom-left-radius: 8px;
    border-top-right-radius: 0px; }

  .banner-content a, .banner-content a h2 {
    font-size: 36px !important;
    line-height: 44px !important; }

  .banner-content a {
    left: 20px !important; }

  .npt-khoi-ban .container .row .col-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%; }

  .npt-list-new li .title {
    width: 60% !important; }

  .npt-footer-info .logo.col-lg-3 {
    text-align: center;
    padding-bottom: 20px; }

  .npt-footer-info .logo.col-lg-3 img {
    padding-right: 0px;
    float: none; }

  .menuFooter .col-6 {
    margin-bottom: 20px; }

  .npt-footer-bottom {
    height: auto !important;
    line-height: 30px !important; }

  .npt-footer-bottom .lable {
    float: left !important; }

  .npt-footer-bottom .form-group {
    float: left;
    width: 100%;
    text-align: left;
    line-height: 50px;
    margin-bottom: 0px !important; }

  .npt-footer-bottom .form-control {
    width: 78% !important;
    margin-top: 10px !important; }

  .npt-footer-share-list {
    float: left !important;
    margin-top: 16px !important; }

  .npt-footer-share-list .list-inline-item {
    padding-left: 0px !important;
    padding-right: 15px; } }
@media all and (max-width: 767px) {
  .npt-public-announcement .npt-grids-safety-in .tab-content .tab-pane
  .npt-investment-projects-page .npt-investment-projects-in .d-md-table .d-md-table-cell:nth-of-type(2) {
    width: 68%;
    float: right; }

  .npt-investment-projects-page .container .card .u-accordion .card h6 {
    width: 100% !important; }

  .npt-investment-projects-page .container .card .u-accordion .card .d-md-table-open {
    display: none; }

  .npt-public-announcement .container .npt-grids-safety-in .tab-content .tab-pane .npt-investment-projects-page .container .card .u-accordion .card .card {
    padding: 15px 0px; }

  .npt-onNews .container .row .npt-onNews-in .npt-onNews-list .npt-news-list li .news-web .content-new {
    padding: 15px !important;
    float: left !important;
    width: 100% !important; }

  .npt-pressRelease .container .row .npt-pressRelease-in .row .npt-pressRelease-right .npt-new-TBdb .list-news-new {
    min-height: 10px !important; }

  .npt-onNews-right .npt-video-right.npt-onNews-right .npt-onNews-list .npt-news-list li .news-web .thumbs {
    width: 100% !important; }

  .npt-pressRelease-in .npt-onNews-list .npt-news-list li .news-web .thumbs {
    width: 100% !important;
    margin-right: 0px !important;
    height: 220px; }

  .npt-onNews-right .npt-onNews-in .npt-onNews-list .npt-news-list li .news-web .thumbs {
    width: 140px !important;
    height: 100px !important;
    min-height: 100px !important; }

  .npt-onNews-right .npt-onNews-in .npt-onNews-list .npt-news-list li .news-web .content-new {
    padding: 0px 0px 0px 10px !important;
    float: left !important;
    width: 63% !important; }

  .npt-pressRelease-in .npt-onNews-list .npt-news-list li .news-web .content-new {
    padding: 15px !important;
    float: left;
    width: 100%; }

  .npt-for-communication .container .row .npt-communication-left .npt-document-list li {
    height: auto !important;
    line-height: 20px !important;
    position: relative; }

  .npt-for-communication .container .row .npt-communication-left .npt-document-list li .title-document {
    padding-left: 0px !important;
    width: 100% !important;
    max-width: 100% !important;
    float: left;
    line-height: 20px !important;
    padding-top: 55px !important;
    padding-bottom: 10px; }

  .npt-for-communication .container .row .npt-communication-left .npt-document-list li .title-document .title {
    line-height: 20px;
    letter-spacing: -0.1px;
    text-overflow: inherit;
    white-space: normal;
    padding-bottom: 0px;
    margin-bottom: 0px; }

  .npt-for-communication .container .row .npt-communication-left .npt-document-list li .download-document {
    width: 100% !important;
    max-width: 100% !important;
    float: left !important;
    margin-bottom: 15px;
    line-height: 20px !important; }

  .npt-for-communication .container .row .npt-communication-left .npt-document-list li .time-day {
    top: 30px !important; }

  .npt-communication-right img {
    width: 100%; }

  .npt-work .container .row .npt-communication-left .accordion-search .d-md-table-cell .u-btn-search {
    margin-top: 10px !important; }

  .npt-work .container .row .npt-communication-left .npt-document-list li .title-document {
    padding-left: 0px !important;
    max-width: 100% !important;
    float: left;
    line-height: 20px !important;
    padding-top: 55px !important;
    padding-bottom: 10px; }

  .npt-work .container .row .npt-communication-left .npt-document-list li .title-document .title {
    line-height: 20px;
    letter-spacing: -0.1px;
    text-overflow: inherit;
    white-space: normal;
    padding-bottom: 0px;
    margin-bottom: 0px; }

  .npt-work .container .row .npt-communication-left .npt-document-list li {
    height: auto !important;
    line-height: 20px !important;
    position: relative; }

  .npt-work .container .row .npt-communication-left .npt-document-list li .time-day {
    top: 25px; }

  .npt-truyentai img {
    height: 270px;
    margin-left: -100px; }

  .npt-video-detail .col-md-8 {
    padding-right: 15px !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important; }

  .npt-video-detail .npt-new-news3-right .npt-news .npt-lable {
    margin-bottom: 0px !important; }

  .npt-work .container .row .npt-communication-left .npt-document-list li .time-day {
    top: 30px !important; }

  .npt-nopHS .container .row .nopHS {
    font-size: 40px !important;
    float: left !important;
    margin-right: 0px !important;
    width: 100% !important; }

  .npt-nopHS {
    background-size: cover; }

  .npt-qdTT {
    background-size: cover; }

  .npt-qdTT .container .row .npt-lable-qdTT span {
    font-size: 30px !important; }

  .npt-qdTT .container .row .npt-qdTT-contant .link-a {
    background: #1cb8eb;
    margin-bottom: 20px;
    min-width: 180px; }

  .npt-work .npt-communication-right img {
    width: 100%; }

  .npt-contact .container .row .npt-contact-form {
    padding: 25px !important; }

  .npt-contact .container .row .npt-contact-form .npt-contact-form-all .npt-contact-form-in .row .col-sm-3 {
    text-align: left; }

  .npt-calenderEvent .lable h1 {
    font-size: 16px !important; }

  .npt-calenderEvent.npt-calenderEvent-catalog {
    padding: 35px 0px 0px 0px !important; }

  .news-other .list-news .item-news {
    width: 100% !important; }

  .boxNewsLQ.list-news-dm li a {
    width: 100% !important; }

  .npt-news-new {
    margin-top: 20px;
    float: left;
    width: 96%; }

  .imgQC img {
    width: 100%;
    margin-right: 0px; }

  .npt-new-news2 {
    padding-top: 30px !important; }

  .npt-new-news3 .npt-new-news3-left .col-md-9 {
    padding-right: 30px !important; }

  .npt-new-news3 .list-next-new li .thumbs, .npt-new-news2 .thumbs {
    width: 100% !important;
    height: 220px !important;
    margin-bottom: 20px !important; }

  .npt-new-news3 .list-next-new li .thumbs img, .npt-new-news2 .thumbs img {
    width: 100% !important;
    height: 100% !important;
    object-fit: cover; }

  .page-navigation {
    padding-right: 15px !important;
    width: 100% !important; }

  .npt-new-news3 .npt-new-news3-right {
    padding-left: 15px !important;
    min-width: 100% !important; }

  .npt-new-news3 .npt-new-news3-left {
    padding-right: 0px !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important; }

  .npt-new-news3 .list-next-new li .thumbs {
    width: 72%; }

  .list-calenderEvent-in .content-new {
    width: 100%;
    float: left;
    margin-top: 15px;
    padding-right: 15px; }

  .list-calenderEvent-in .content-new h6 {
    display: none; }

  .npt-technical-services .container .npt-core-values-in .row .kbKT .content .number:before,
  .npt-technical-services .container .npt-core-values-in .row h2:before,
  .npt-technical-services .container .npt-core-values-in .row:before {
    display: none; }

  .npt-technical-services .container .npt-core-values-in .row .kbKT {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
    padding: 0px 15px 30px 15px !important; }

  .npt-technical-services .container .npt-core-values-in .row h2 {
    font-size: 24px !important;
    padding-bottom: 0px !important; }

  .npt-core-values .container .row .npt-core-values-left .h5 {
    line-height: 28px !important;
    padding-top: 0px !important; }

  .npt-values .npt-core-values-left img {
    width: 100%; }

  .npt-core-values .npt-core-values-in {
    padding: 40px 0px !important; }

  .npt-values .container .row .npt-values-in {
    min-height: 460px; }

  .npt-values .container .row .npt-values-in .content-in {
    position: absolute;
    width: 100%;
    top: 160px !important;
    right: auto !important;
    left: 15px !important; }

  .npt-values .container .row .npt-values-in .content-in h3 {
    padding-right: 26px !important; }

  .npt-values .container .row .npt-values-in .content-in h2 {
    line-height: 30px !important;
    text-align: left !important;
    padding-right: 20px !important;
    font-size: 20px !important; }

  .npt-core-values .container .row .npt-core-values-right {
    padding-left: 15px; }

  .npt-values .container .row .npt-values-in .img {
    width: 100%; }

  .npt-Overview-in {
    padding-bottom: 0rem !important; }

  .npt-Overview-in .content-new {
    padding-right: 15px;
    padding-left: 15px;
    text-align: justify; }

  .npt-content-home {
    padding: 20px 0px 40px 0px !important; }

  .npt-khoi-ban .container .row .col-4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%;
    padding-bottom: 50px; }

  .npt-companySmall .container .npt-core-values-in .row .ttd1,
  .npt-companySmall .container .npt-core-values-in .row .ttd2,
  .npt-companySmall .container .npt-core-values-in .row .ttd3,
  .npt-companySmall .container .npt-core-values-in .row .ttd4 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    padding-bottom: 50px;
    max-width: 290px;
    margin: 20px auto 0px auto !important; }

  .g-pt-90 {
    padding-top: 40px !important; }

  .npt-pressRelease-in {
    padding-top: 40px !important;
    padding-bottom: 40px !important; }

  .npt-pressRelease-left, .npt-pressRelease-right, .npt-pressRelease-in .npt-lable {
    width: 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important; }

  .npt-pressRelease .container .row .npt-pressRelease-in .row .npt-pressRelease-left .npt-highlight-list li .thumbs {
    width: 100% !important;
    margin-right: 0px !important;
    margin-bottom: 20px; }

  .hs-menu-initialized.hs-menu-horizontal .hs-mega-menu.hs-position-left {
    left: 0;
    right: auto !important;
    top: 444px !important;
    overflow-y: scroll;
    height: 67% !important;
    position: absolute !important;
    z-index: 9999; }

  .navbar-expand-lg .navbar-collapse li.g-py-5 {
    padding: 0px 0px; }

  .npt-footer {
    padding-top: 0px !important; }

  .banner-content {
    width: 100% !important; }

  .header_menu .navbar {
    top: 2px; }

  .is-active {
    top: 104px !important;
    position: absolute !important; }

  .npt-list .lable .line {
    margin: 0px auto 25px auto !important; }

  .npt-content-home .npt-list {
    margin-top: 40px; }

  .npt-list:first-child, .npt-list:last-child {
    background: none !important; }

  .npt-newNews .container {
    padding: 60px 0px 0px 0px !important; }

  .npt-newNews-list .npt-list-new, .npt-newNews-list {
    height: auto !important;
    overflow-y: hidden !important; }

  .npt-newNews .npt-list-new li .title {
    width: 100% !important; }

  .npt-newNews .npt-list-new li .title {
    width: 100% !important; }

  .npt-newNews .npt-newNews-list {
    margin-bottom: 30px; }

  .npt-newNews .npt-newNews-list:last-child {
    margin-bottom: 0px; }

  .npt-list-business-other .npt-list-business-in {
    padding: 40px 0px 0px 0px !important; }

  .npt-list-business-other .row {
    padding: 0px 15px !important; }

  .npt-list-business-other .col-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50%;
    flex: 0 0 50%;
    max-width: 50%; }

  .npt-quanLy .container .npt-public-news-in {
    height: auto; }

  .npt-contact-add .col-sm-8, .npt-contact-add .col-sm-4 {
    width: auto;
    max-width: 67%;
    padding-right: 0px; }

  .npt-quanLy .container .npt-public-news-in .npt-public-news-tab .content-new {
    padding: 15px; }

  .npt-quanLy .container .npt-public-news-in .npt-public-news-tab .content-new p {
    font-size: 17px !important;
    line-height: 28px !important; }

  .npt-quanLy .container .npt-public-news-in .npt-contact-add {
    border-top-right-radius: 8px !important;
    border-bottom-left-radius: 0px !important;
    padding: 30px 25px 0px 25px !important;
    min-height: 200px; }

  .npt-development-strategy .item-list {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important;
    padding: 0px 15px !important; }

  .npt-development-strategy .container .row .npt-development-strategy-in .h3 {
    line-height: 34px !important;
    padding-top: 0px !important;
    margin-bottom: 0px !important; }

  .npt-development-strategy .container .row {
    padding: 0px 15px !important; }

  .npt-solution .container .row-list {
    padding-left: 15px;
    padding-right: 15px; }

  .npt-solution .container .row-header {
    display: none !important; }

  .npt-solution .container .row-list .item-list-col-12 h3 {
    line-height: 40px !important; }

  .npt-solution .container .row-list .item-list-col-1 {
    padding: 0px; }

  .npt-solution .container .row-list .item-list .npt-mobi,
  .npt-solution .container .row-list .item-list .npt-show-mobi {
    display: block !important;
    font-size: 18px !important; }

  .npt-solution .container .row-list .item-list {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100% !important;
    flex: 1 0 100% !important;
    max-width: 100% !important;
    margin-top: 20px; }

  .npt-investment-projects .container .npt-investment-projects-content {
    padding-left: 10% !important; }

  .banner-page-in.banner {
    max-height: 320px !important;
    min-height: 320px !important;
    margin-top: 120px; }

  .npt-highlight .container {
    padding-right: 30px;
    padding-left: 30px; }

  .npt-highlight .container .row .npt-highlight-in .row .npt-highlight-left .npt-highlight-list li .thumbs,
  .npt-highlight .container .row .npt-highlight-in .row .npt-highlight-right .npt-highlight-list li .thumbs {
    width: 40%;
    margin-right: 15px !important; }

  .npt-highlight .container .row .npt-highlight-in .row .npt-highlight-left .npt-highlight-list li:first-child .thumbs {
    width: 100% !important; }

  .npt-highlight .container .row .npt-highlight-in .row .npt-highlight-left {
    padding-bottom: 15px; }

  .container .row .npt-highlight-in .row .npt-highlight-left .npt-highlight-list li:first-child .content-new a h3 {
    margin-bottom: 0px; }

  .npt-highlight .container .row .npt-highlight-in .row .npt-highlight-left .npt-highlight-list li .content-new .sampo,
  .container .row .npt-highlight-in .row .npt-highlight-right .npt-highlight-list li .content-new .time {
    display: none; }

  .container .row .npt-highlight-in .row .npt-highlight-right .npt-highlight-list li {
    margin-bottom: 15px;
    padding-top: 15px;
    border-top: 1px solid #e1e1e1; }

  .container .row .npt-highlight-in .row .npt-highlight-left .npt-highlight-list li {
    margin-bottom: 15px !important;
    padding-bottom: 15px !important; }

  .container .row .npt-highlight-in .row .npt-highlight-left .npt-highlight-list li:last-child {
    padding-bottom: 0px !important;
    margin-bottom: 0px !important; }

  .container .row .npt-highlight-in .row .npt-highlight-left .npt-highlight-list li .content-new a h3,
  .container .row .npt-highlight-in .row .npt-highlight-right .npt-highlight-list li .content-new a h3 {
    font-size: 18px !important;
    line-height: 24px !important;
    font-weight: 400 !important; } }
@media all and (max-width: 400px) {
  .npt-list-catalog .item-list {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 42.333333% !important;
    flex: 1 0 42.333333% !important;
    max-width: 42.333333% !important; }

  .menuTop-Right ul li {
    margin-left: 10px !important; }

  .npt-list-business .col-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important; }

  .npt-list-business .row {
    padding: 0px 15px 20px 15px !important; }

  .breadcrumb ul li:first-child a {
    display: none; } }
@media all and (max-width: 330px) {
  .menuTop-Right ul li {
    margin-left: 5px !important; }

  .list-inline-item:not(:last-child) {
    margin-right: 0px; }

  .js-mega-menu .navbar-toggler {
    margin-left: 10px; }

  .menuTop-Right {
    top: 54px; } }
@media all and (max-width: 1024px) and (min-width: 768px) {
  .npt-grids-safety .container .npt-grids-safety-in .nav .nav-item .nav-link .u-nav-v8-content .u-nav-v8__number {
    display: none; }

  .npt-public-announcement.npt-grids-safety .container {
    max-width: 100% !important; }

  .npt-pressRelease-in {
    padding-bottom: 40px !important; }

  .npt-pressRelease .container .row .npt-pressRelease-in .row .npt-pressRelease-right .npt-new-TBdb .list-news-new {
    max-height: 100% !important; }

  .npt-onNews .container .row .npt-onNews-in .npt-onNews-list .npt-news-list li .news-web .thumbs {
    width: 260px !important;
    margin-right: 25px !important;
    min-height: 190px !important; }

  .npt-pressRelease .container .row .npt-pressRelease-in .row .npt-pressRelease-left {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 66.88888% !important;
    flex: 0 0 66.88888% !important;
    max-width: 66.88888% !important; }

  .npt-onNews-right .npt-onNews-in .npt-onNews-list .npt-news-list li .news-web .content-new {
    padding: 15px 0px 0px 0px !important;
    float: left !important;
    width: 100% !important; }

  .npt-pressRelease-in .npt-onNews-list .npt-news-list li .news-web .thumbs {
    width: 250px !important;
    margin-right: 10px !important; }

  .npt-video-right .npt-news-list li {
    width: 100% !important; }

  .npt-pressRelease-in .npt-onNews-list .npt-news-list li .news-web .content-new .link-hover-r,
  .npt-pressRelease-in .npt-onNews-list .npt-news-list li .news-web .content-new .sampo {
    display: none; }

  .npt-pressRelease .container .row .npt-pressRelease-in .row .npt-pressRelease-right {
    -ms-flex: 0 0 33.111111% !important;
    flex: 1 0 33.111111% !important;
    max-width: 33.111111% !important;
    padding-left: 0px !important; }

  .npt-new-caltalog-in .container {
    max-width: 100% !important; }

  .npt-new-caltalog-in .npt-new-news3 {
    padding: 0px 0px !important; }

  .npt-new-caltalog-in .npt-new-news3-right .npt-lable-all.npt-lable {
    margin-bottom: 0px; }

  .npt-communication-detail .npt-new-news3,
  .npt-communication-detail .npt-new-news3-left {
    padding: 0px 0px; }

  .npt-communication-detail .container {
    max-width: 100%; }

  .npt-communication-right img {
    display: none; }

  .npt-communication-left {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%; }

  .npt-public-news .container .npt-public-news-in .npt-contact-add {
    border-bottom-right-radius: 0px;
    border-top-right-radius: 8px !important;
    border-bottom-left-radius: 0px !important;
    border-top-left-radius: 8px !important;
    min-height: 500px !important;
    width: 100% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100% !important;
    flex: 0 0 100% !important;
    max-width: 100% !important; }

  .npt-list-cooperate .item-list {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 16.666667%;
    flex: 0 0 25% !important;
    max-width: 25% !important;
    margin-bottom: 30px !important; }

  .npt-calenderEvent.npt-calenderEvent-catalog li {
    width: 50% !important;
    margin-bottom: 20px; }

  .npt-new-read .list-news-new li .thumbs {
    width: 100% !important;
    margin-right: 10px !important; }

  .npt-new-news3-left .npt-news-new .npt-lable h2 {
    padding-right: 0px !important; }

  .npt-new-news1, .npt-new-news2, .npt-new-news3 {
    padding: 0px 15px; }

  .npt-new-news1 .thumbs {
    height: 265px; }

  .npt-new-news2 .thumbs {
    height: 170px; }

  .npt-new-news1 .thumbs img, .npt-new-news2 .thumbs img {
    height: 100%;
    object-fit: cover;
    width: 100%; }

  .npt-new-caltalog-in .npt-new-news1 .col-md-6 {
    margin-bottom: 0px !important; }

  .npt-new-news3 .npt-new-news3-right {
    min-width: 200px !important; }

  .npt-new-TBdb .list-news-new li .thumbs {
    width: 100% !important;
    height: 100px !important;
    margin-right: 0px !important;
    margin-bottom: 10px; }

  .npt-qc-small img {
    width: 100% !important; }

  .npt-new-news3-right .list-calenderEvent .li-item h2 {
    float: left;
    width: 100%; }

  .npt-new-news3-right .npt-right-calenderEvent .list-calenderEvent .li-item .time {
    width: 100%;
    height: 60px !important;
    margin-right: 0px !important;
    margin-bottom: 10px; }

  .npt-right-calenderEvent .list-calenderEvent .li-item .time .day {
    width: 35% !important;
    float: left;
    height: 60px !important;
    line-height: 60px !important; }

  .npt-right-calenderEvent .list-calenderEvent .li-item .time .month {
    width: 65% !important;
    float: left;
    text-align: left;
    line-height: 30px !important;
    height: 30px !important; }

  .npt-right-calenderEvent .list-calenderEvent .li-item .time .year {
    width: 65% !important;
    float: left;
    text-align: left;
    line-height: 30px !important;
    height: 30px !important; }

  .npt-transmission-bulettin.npt-transmission-pageIn .col-md-3 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50% !important;
    flex: 0 0 50% !important;
    max-width: 50% !important; }

  .npt-transmission-bulettin.npt-transmission-pageIn .form-group .col-sm-1 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 15.333333% !important;
    flex: 0 0 15.333333% !important;
    max-width: 15.333333% !important;
    padding-left: 0px; }

  .npt-transmission-bulettin.npt-transmission-pageIn .form-group .col-sm-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 46.666667% !important;
    flex: 0 0 46.666667% !important;
    max-width: 46.666667% !important; }

  .npt-online-exhibitions .npt-news .videoNew .thumbs {
    height: 250px !important; }

  .npt-online-exhibitions .npt-news .list-video-right .thumbs {
    height: 120px !important; }

  .npt-investment .container, .npt-operations .container, .npt-breadcrumb .container,
  .npt-special-announcement .container {
    max-width: 100% !important;
    padding: 0px !important; }

  .npt-footer .container {
    max-width: 100% !important; }

  .npt-special-announcement .lable {
    margin-left: 15px; }

  .list-special-announcement .li-item .thumb {
    width: 100% !important;
    height: 150px !important; }

  .npt-investment .thumbs {
    height: 150px !important;
    width: 100% !important; }

  .npt-operations article .thumbs {
    height: 245px !important; }

  .npt-investment .thumbs img, .npt-operations article .thumbs img,
  .list-special-announcement .li-item .thumb img {
    height: 100% !important;
    object-fit: cover;
    width: 100% !important; }

  .list-calenderEvent .li-item h2 {
    float: left;
    width: 63%; }

  .list-calenderEvent {
    width: 100% !important; }

  .npt-calenderEvent li {
    width: 33.333% !important;
    padding-right: 0px !important;
    padding-left: 0px !important; }

  .list-special-announcement li {
    width: 33.333% !important;
    padding-right: 15px !important;
    padding-left: 15px; }

  .npt-solution .npt-strategic-objectives-lable {
    padding-bottom: 40px !important; }

  .npt-list-business .col-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.333% !important;
    flex: 0 0 33.333% !important;
    max-width: 33.333% !important;
    padding: 0px 15px 20px 15px !important; }

  .g-mt-minus-76--md {
    margin-top: -8.3rem !important; }

  .menuTop-Right ul li {
    line-height: 50px; }

  .npt-list-new, .npt-list-new ul {
    margin-bottom: 0px !important; }

  .npt-list-new li {
    margin-bottom: 10px; }

  .banner-content {
    width: 66% !important; }

  .navbar-expand-lg .navbar-collapse {
    margin-top: -50px !important; }

  .collapse {
    display: block !important; }

  .menuTop-Right ul li a {
    color: #333 !important; }

  .header_menu {
    margin-top: 35px !important; }

  .navbar-expand-lg .navbar-collapse {
    margin-top: -29px;
    border-top: 0px solid rgba(0, 0, 0, 0.2);
    position: absolute;
    width: 100%; }

  .navbar-expand-lg .navbar-collapse li {
    border-bottom: 0px solid rgba(0, 0, 0, 0.2);
    border-top: 0px solid rgba(255, 255, 255, 0.2);
    padding: 0px 10px;
    float: left; }

  .navbar-expand-lg .navbar-collapse .list-unstyled li {
    padding: 0px 0px;
    width: 100%; }

  .hs-mobile-state .hs-sub-menu, .hs-mobile-state .hs-mega-menu {
    position: absolute !important; }

    .header_menu .navbar-nav {
        display: -webkit-inline-box;
    }

  .header_menu .container {
    max-width: 100%; }

  .header_menu .navbar-expand-lg ul.navbar-nav li a.nav-link {
    font-size: 15px; }

  .header_menu .navbar-nav .box-search {
    top: 0px;
    right: 0px;
    position: absolute;
    width: auto !important; }

  .npt-content-home .npt-list {
    background: none !important;
    width: 105% !important;
    -webkit-box-flex: 0;
    -ms-flex: 0 0 105% !important;
    flex: 0 0 105% !important;
    max-width: 105% !important;
    padding-bottom: 30px !important;
    text-align: center; }

  .npt-content-home .npt-list:last-child {
    padding-bottom: 0px !important; }

  .npt-content-home .npt-list .lable {
    width: 48%;
    margin: 0px auto;
    text-align: left; }

  .npt-list-new li .thumb {
    width: 100% !important;
    height: 155px !important;
    margin-right: 0px !important;
    overflow: hidden;
    margin-top: 0px;
    margin-bottom: 15px; }

  .npt-content-home .npt-list .npt-list-new li {
    width: 33.333333%;
    padding-right: 20px; }

  .npt-list .lable p {
    min-height: 40px !important; }

  .npt-content-home .npt-list .npt-list-new li .title {
    width: 100% !important; }

  .header_menu {
    height: 10px; }

  .npt-content-map .map, .npt-content-map .infomap, .npt-newNews .npt-newNews-list {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%; }

  .npt-newNews .container, .npt-newNews .npt-list-new li .title {
    max-width: 100%;
    width: 100% !important; }

  .npt-footer .col-lg-5, .npt-footer .col-lg-2 {
    width: 33.33333%; }

  .menuFooter .col-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 33.33333%;
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }

  .container .row .npt-highlight-in .row .npt-highlight-right .npt-highlight-list li .thumbs {
    width: 120px; }

  .npt-qdTT, .npt-nopHS {
    background-size: cover !important; }

  .npt-truyentai img {
    margin-left: -140px; }

  .npt-solution .container .row-header .item-list-col-2:before,
  .npt-solution .container .row-header .item-list-col-3:before {
    width: 41% !important; }

  .npt-solution .container .row-list .item-list-col-1 {
    padding-left: 0px !important; }

  .npt-solution .container .row-list .item-list-col-1 h3 {
    width: 100% !important; } }
@media all and (max-width: 767px) and (min-width: 401px) {
  .npt-list-business .col-2 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 50% !important;
    flex: 0 0 50% !important;
    max-width: 50% !important; }

  .npt-list-business .row {
    padding: 0px 15px 20px 15px !important; } }
@media all and (device-width: 1024px) {
  .navbar-expand-lg .navbar-collapse {
    margin-top: -28px !important; }

  .npt-list-new li .thumb {
    height: 200px !important; } }
.npt-list-new li .thumb img {
  height: 100% !important;
  object-fit: cover; }

.npt-content-map .infomap img {
  width: auto !important; }

@media (device-width: 320px) {
  .npt-work .container .row .npt-communication-left .accordion-search .d-md-table-cell .u-btn-search {
    margin-top: 6px; }

  .BL-content {
    width: 82% !important; }

  .banner-page-in.banner {
    margin-top: 0px !important; }

  .npt-contact .container .row .npt-contact-form {
    padding: 15px !important; }

  .banner {
    max-height: 300px !important;
    min-height: 300px !important; }

  .container .row .npt-highlight-in .row .npt-highlight-left .npt-highlight-list li .content-new a h3, .container .row .npt-highlight-in .row .npt-highlight-right .npt-highlight-list li .content-new a h3 {
    font-size: 16px !important;
    line-height: 22px !important; }

  .banner {
    padding-top: 114px !important; }

  .g-mt-minus-73 {
    margin-top: -4.2222rem !important; }

  .npt-content-home .npt-list:nth-child(2),
  .npt-content-home .npt-list:nth-child(3),
  .npt-content-home .npt-list:first-child {
    padding: 0 15px !important; }

  .npt-list-new li .title {
    width: 54% !important; }

  .menuFooter .col-6 {
    -webkit-box-flex: 0;
    -ms-flex: 0 0 100%;
    flex: 0 0 100%;
    max-width: 100%; }

  .npt-footer-bottom .form-control {
    width: 77% !important; }

  .npt-footer-bottom {
    font-size: 13px;
    text-align: center; }

  .npt-truyentai img {
    margin-left: -150px !important; }

  .npt-qdTT .container .row .npt-lable-qdTT span {
    font-size: 28px !important; } }
@media (device-width: 768px) {
  .npt-solution .container .row-header .item-list-col-2:before {
    width: 41% !important; } }
/* --- base --- */
div.p_table_1 {
  width: 100%;
  /*height: 100%;*/
  font-size: 13px;
  font-family: arial, sans-serif;
  font-weight: normal;
  color: #444444;
  line-height: normal !important;
  visibility: visible; }

/* --- hyperlinks --- */
div.p_table_1 a {
  color: #444444;
  text-decoration: none; }

/* --- lists --- */
div.p_table_1 ul {
  margin: 0px !important;
  padding: 0px !important;
  list-style-type: none;
  overflow: visible; }

div.p_table_1 li {
  margin: 0px !important;
  padding: 0px 0px !important;
  list-style-type: none !important;
  list-style-image: none !important;
  font-size: 16px;
  line-height: normal !important;
  text-shadow: none !important;
  overflow: visible !important;
  text-indent: 0 !important;
  box-sizing: content-box;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  height: 40px;
  color: #222222;
  border-bottom: 1px solid #f2f2f2;
  border-left: 1px solid #fff !important;
  border-right: 1px solid #fff !important;
  border-right: 1px solid #f2f2f2 !important; }

div.p_table_1 li.header_row_2, div.p_table_1 li.header_row_1 {
  border-right: 1px solid #164397 !important;
  border-left: 1px solid #1e5399 !important; }

div.p_table_1 .active_column li:last-child {
  height: 80px !important;
  line-height: 40px !important;
  border-bottom-left-radius: 5px;
  border-bottom-right-radius: 5px; }

div.p_table_1 ul li img,
div.p_table_1 ul li span.css3_grid_icon {
  display: inline !important;
  padding: 0 !important;
  margin: 0 !important;
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
  -moz-box-shadow: none !important;
  background: none !important;
  border: none !important;
  visibility: visible !important; }

/* --- div aligns --- */
div.p_table_1 .align_center {
  text-align: center; }

/* --- div rounded corners --- */
/* --- border radius 3px --- */
div.p_table_1 .radius3 {
  border-radius: 3px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px; }

/* --- border radius 5px top left --- */
div.p_table_1 .radius5_topleft {
  border-top-left-radius: 5px;
  -webkit-border-top-left-radius: 5px;
  -moz-border-radius-topleft: 5px; }

/* --- border radius 5px top right --- */
div.p_table_1 .radius5_topright {
  border-top-right-radius: 5px;
  -webkit-border-top-right-radius: 5px;
  -moz-border-radius-topright: 5px; }

/* ==================== HEADINGS  ==================== */
/* ------ common styles ------  */
div.p_table_1 h1,
div.p_table_1 h2,
div.p_table_1 h3 {
  margin: 0px !important;
  padding: 0px !important;
  font-weight: normal !important;
  border: none !important;
  line-height: normal !important;
  letter-spacing: 0;
  text-transform: none;
  background: none;
  text-shadow: none !important;
  text-align: inherit !important;
  font-style: normal !important;
  width: auto !important;
  float: none !important;
  position: static !important;
  box-shadow: none !important;
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important; }

div.p_table_1 h1 {
  font-family: 'Yanone Kaffeesatz', arial, sans-serif !important;
  font-size: 48px !important; }

div.p_table_1 h1 span {
  font-family: 'Yanone Kaffeesatz', arial, sans-serif !important;
  font-size: 59px !important;
  text-shadow: none !important;
  font-weight: normal !important;
  padding: 0 !important;
  background: none !important; }

div.p_table_1 h2 {
  font-family: 'Yanone Kaffeesatz', arial, sans-serif !important;
  font-size: 30px !important; }

div.p_table_1 h2 span {
  font-family: 'Yanone Kaffeesatz', arial, sans-serif !important;
  font-size: 30px !important;
  border: none !important;
  font-weight: normal !important;
  padding: 0 !important;
  background: none !important; }

div.p_table_1 h3 {
  font-family: 'Oswald' !important;
  font-weight: 300 !important;
  font-size: 13px !important; }

/* ==================== COLUMNS  ==================== */
/* ------ common styles ------  */
div.p_table_1 div.column_1,
div.p_table_1 div.column_2,
div.p_table_1 div.column_3,
div.p_table_1 div.column_4 {
  /* transitions */
  -webkit-transition: box-shadow 0.25s ease;
  -moz-transition: box-shadow 0.25s ease;
  -o-transition: box-shadow 0.25s ease;
  -ms-transition: box-shadow 0.25s ease;
  transition: box-shadow 0.25s ease;
  border-radius: 5px;
  -moz-border-radius: 5px;
  -webkit-border-radius: 5px; }

/* --- header row 1 ---  */
div.p_table_1 div.caption_column li.header_row_1,
div.p_table_1 div.column_1 li.header_row_1,
div.p_table_1 div.column_2 li.header_row_1,
div.p_table_1 div.column_3 li.header_row_1,
div.p_table_1 div.column_4 li.header_row_1 {
  height: 50px;
  width: 100%;
  padding: 0 !important; }

div.p_table_1 div.caption_column li.header_row_1 a,
div.p_table_1 div.column_1 li.header_row_1 a,
div.p_table_1 div.column_2 li.header_row_1 a,
div.p_table_1 div.column_3 li.header_row_1 a,
div.p_table_1 div.column_4 li.header_row_1 a {
  text-decoration: none !important; }

/* --- header row 2 ---  */
div.p_table_1 div.caption_column li.header_row_2,
div.p_table_1 div.column_1 li.header_row_2,
div.p_table_1 div.column_2 li.header_row_2,
div.p_table_1 div.column_3 li.header_row_2,
div.p_table_1 div.column_4 li.header_row_2 {
  height: 124px;
  width: 100%;
  padding: 0 0 0px !important; }

div.p_table_1 div.caption_column li.header_row_2 a,
div.p_table_1 div.column_1 li.header_row_2 a,
div.p_table_1 div.column_2 li.header_row_2 a,
div.p_table_1 div.column_3 li.header_row_2 a,
div.p_table_1 div.column_4 li.header_row_2 a {
  text-decoration: none !important; }

/* --- caption correction --- */
div.p_table_1 div.caption_column li.header_row_2 {
  height: 100px;
  width: 100%;
  padding: 7px 0px 7px 0 !important; }

div.p_table_1 div.caption_column li.header_row_2 h2.caption {
  padding-left: 10px !important; }

/* ==================== CAPTION COLUMN  ==================== */
div.p_table_1 div.caption_column {
  /*position: relative;*/
  width: 180px;
  /*height: 100%;*/
  float: left; }

/* =================== COLUMN STYLE 1  ==================== */
div.p_table_1 div.column_1 {
  /*position: relative;*/
  width: 160px;
  /*height: 100%;*/
  float: left !important; }

/* ==================== COLUMN STYLE 2  ==================== */
div.p_table_1 div.column_2 {
  /*position: relative;*/
  width: 160px;
  /*height: 100%;*/
  float: left !important; }

/* ==================== COLUMN STYLE 3  ==================== */
div.p_table_1 div.column_3 {
  /*position: relative;*/
  width: 160px;
  /*height: 100%;*/
  float: left !important; }

/* ==================== COLUMN STYLE 4  ==================== */
div.p_table_1 div.column_4 {
  /*position: relative;*/
  width: 160px;
  /*height: 100%;*/
  float: left !important; }

/* ========== COLUMN HOVERS ========== */
div.p_table_1.p_table_hover_light div.column_1:hover,
div.p_table_1.p_table_hover_light div.column_2:hover,
div.p_table_1.p_table_hover_light div.column_3:hover,
div.p_table_1.p_table_hover_light div.column_4:hover,
div.p_table_1.p_table_hover_disabled div.column_1:hover,
div.p_table_1.p_table_hover_disabled div.column_2:hover,
div.p_table_1.p_table_hover_disabled div.column_3:hover,
div.p_table_1.p_table_hover_disabled div.column_4:hover {
  left: 0;
  top: 0; }

div.p_table_1.p_table_hover_disabled div.column_1:hover,
div.p_table_1.p_table_hover_disabled div.column_2:hover,
div.p_table_1.p_table_hover_disabled div.column_3:hover,
div.p_table_1.p_table_hover_disabled div.column_4:hover {
  position: static;
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  z-index: 0; }

div.p_table_1 div.column_1:hover,
div.p_table_1 div.column_2:hover,
div.p_table_1 div.column_3:hover,
div.p_table_1 div.column_4:hover,
div.p_table_1 div.active_column,
div.p_table_1.p_table_hover_light div.active_column:hover,
div.p_table_1.p_table_hover_disabled div.active_column:hover {
  position: relative;
  z-index: 100;
  left: 0px;
  top: -30px;
  /* shadow */
  box-shadow: 5px 0px 30px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 5px 0px 30px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 5px 0px 30px rgba(0, 0, 0, 0.5); }

div.p_table_1.p_table_hover_light div.active_column,
div.p_table_1.p_table_hover_light div.active_column:hover {
  left: 0;
  top: 0; }

div.p_table_1.p_table_hover_light div.column_1:hover,
div.p_table_1.p_table_hover_light div.column_2:hover,
div.p_table_1.p_table_hover_light div.column_3:hover,
div.p_table_1.p_table_hover_light div.column_4:hover,
div.p_table_1.p_table_hover_light div.active_column,
div.p_table_1.p_table_hover_light div.active_column:hover {
  /* shadow */
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
  -moz-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5); }

div.p_table_1 div.column_1:hover,
div.p_table_1 div.column_2:hover,
div.p_table_1 div.column_3:hover,
div.p_table_1 div.column_4:hover,
div.p_table_1 div.active_column:hover,
div.p_table_1.p_table_hover_light div.active_column:hover,
div.p_table_1.p_table_hover_disabled div.active_column:hover {
  z-index: 101; }

div.p_table_1.p_table_hover_light div.column_1:hover li.row_style_1,
div.p_table_1.p_table_hover_light div.column_2:hover li.row_style_1,
div.p_table_1.p_table_hover_light div.column_3:hover li.row_style_1,
div.p_table_1.p_table_hover_light div.column_4:hover li.row_style_1,
div.p_table_1.p_table_hover_light div.column_1:hover li.row_style_2,
div.p_table_1.p_table_hover_light div.column_2:hover li.row_style_2,
div.p_table_1.p_table_hover_light div.column_3:hover li.row_style_2,
div.p_table_1.p_table_hover_light div.column_4:hover li.row_style_2,
div.p_table_1.p_table_hover_light div.column_1:hover li.row_style_3,
div.p_table_1.p_table_hover_light div.column_2:hover li.row_style_3,
div.p_table_1.p_table_hover_light div.column_3:hover li.row_style_3,
div.p_table_1.p_table_hover_light div.column_4:hover li.row_style_3,
div.p_table_1.p_table_hover_light div.column_1:hover li.row_style_4,
div.p_table_1.p_table_hover_light div.column_2:hover li.row_style_4,
div.p_table_1.p_table_hover_light div.column_3:hover li.row_style_4,
div.p_table_1.p_table_hover_light div.column_4:hover li.row_style_4,
div.p_table_1.p_table_hover_light div.active_column li.row_style_1,
div.p_table_1.p_table_hover_light div.active_column li.row_style_2,
div.p_table_1.p_table_hover_light div.active_column li.row_style_3,
div.p_table_1.p_table_hover_light div.active_column li.row_style_4,
div.p_table_1.p_table_hover_disabled div.column_1:hover li.row_style_1,
div.p_table_1.p_table_hover_disabled div.column_2:hover li.row_style_1,
div.p_table_1.p_table_hover_disabled div.column_3:hover li.row_style_1,
div.p_table_1.p_table_hover_disabled div.column_4:hover li.row_style_1,
div.p_table_1.p_table_hover_disabled div.column_1:hover li.row_style_2,
div.p_table_1.p_table_hover_disabled div.column_2:hover li.row_style_2,
div.p_table_1.p_table_hover_disabled div.column_3:hover li.row_style_2,
div.p_table_1.p_table_hover_disabled div.column_4:hover li.row_style_2,
div.p_table_1.p_table_hover_disabled div.column_1:hover li.row_style_3,
div.p_table_1.p_table_hover_disabled div.column_2:hover li.row_style_3,
div.p_table_1.p_table_hover_disabled div.column_3:hover li.row_style_3,
div.p_table_1.p_table_hover_disabled div.column_4:hover li.row_style_3,
div.p_table_1.p_table_hover_disabled div.column_1:hover li.row_style_4,
div.p_table_1.p_table_hover_disabled div.column_2:hover li.row_style_4,
div.p_table_1.p_table_hover_disabled div.column_3:hover li.row_style_4,
div.p_table_1.p_table_hover_disabled div.column_4:hover li.row_style_4 {
  height: 19px;
  padding: 9px 0 !important; }

div.p_table_1 div.column_1:hover li.row_style_1,
div.p_table_1 div.column_2:hover li.row_style_1,
div.p_table_1 div.column_3:hover li.row_style_1,
div.p_table_1 div.column_4:hover li.row_style_1,
div.p_table_1 div.column_1:hover li.row_style_2,
div.p_table_1 div.column_2:hover li.row_style_2,
div.p_table_1 div.column_3:hover li.row_style_2,
div.p_table_1 div.column_4:hover li.row_style_2,
div.p_table_1 div.column_1:hover li.row_style_3,
div.p_table_1 div.column_2:hover li.row_style_3,
div.p_table_1 div.column_3:hover li.row_style_3,
div.p_table_1 div.column_4:hover li.row_style_3,
div.p_table_1 div.column_1:hover li.row_style_4,
div.p_table_1 div.column_2:hover li.row_style_4,
div.p_table_1 div.column_3:hover li.row_style_4,
div.p_table_1 div.column_4:hover li.row_style_4,
div.p_table_1 div.active_column li.row_style_1,
div.p_table_1 div.active_column li.row_style_2,
div.p_table_1 div.active_column li.row_style_3,
div.p_table_1 div.active_column li.row_style_4,
div.p_table_1.p_table_hover_disabled div.active_column:hover li.row_style_1,
div.p_table_1.p_table_hover_disabled div.active_column:hover li.row_style_2,
div.p_table_1.p_table_hover_disabled div.active_column:hover li.row_style_3,
div.p_table_1.p_table_hover_disabled div.active_column:hover li.row_style_4 {
  height: 19px;
  padding: 12px 5px !important; }

div.p_table_1.p_table_hover_light div.column_1:hover li.header_row_1,
div.p_table_1.p_table_hover_light div.column_2:hover li.header_row_1,
div.p_table_1.p_table_hover_light div.column_3:hover li.header_row_1,
div.p_table_1.p_table_hover_light div.column_4:hover li.header_row_1,
div.p_table_1.p_table_hover_light div.active_column li.header_row_1,
div.p_table_1.p_table_hover_disabled div.column_1:hover li.header_row_1,
div.p_table_1.p_table_hover_disabled div.column_2:hover li.header_row_1,
div.p_table_1.p_table_hover_disabled div.column_3:hover li.header_row_1,
div.p_table_1.p_table_hover_disabled div.column_4:hover li.header_row_1 {
  padding: 0 !important;
  border-radius: 0;
  -webkit-border-top-left-radius: 0;
  -webkit-border-top-right-radius: 0;
  -moz-border-radius-topleft: 0;
  -moz-border-radius-topright: 0; }

div.p_table_1.p_table_hover_light div.column_1:hover li.header_row_1.radius5_topright,
div.p_table_1.p_table_hover_light div.column_2:hover li.header_row_1.radius5_topright,
div.p_table_1.p_table_hover_light div.column_3:hover li.header_row_1.radius5_topright,
div.p_table_1.p_table_hover_light div.column_4:hover li.header_row_1.radius5_topright,
div.p_table_1.p_table_hover_disabled div.column_1:hover li.header_row_1.radius5_topright,
div.p_table_1.p_table_hover_disabled div.column_2:hover li.header_row_1.radius5_topright,
div.p_table_1.p_table_hover_disabled div.column_3:hover li.header_row_1.radius5_topright,
div.p_table_1.p_table_hover_disabled div.column_4:hover li.header_row_1.radius5_topright {
  border-top-right-radius: 5px;
  -webkit-border-top-right-radius: 5px;
  -moz-border-radius-topright: 5px; }

div.p_table_1 div.column_1:hover li.header_row_1,
div.p_table_1 div.column_2:hover li.header_row_1,
div.p_table_1 div.column_3:hover li.header_row_1,
div.p_table_1 div.column_4:hover li.header_row_1,
div.p_table_1 div.active_column li.header_row_1,
div.p_table_1.p_table_hover_disabled div.active_column:hover li.header_row_1 {
  padding: 0px 0px 0 0px !important;
  border-radius: 5px 5px 0px 0px;
  -webkit-border-top-left-radius: 5px;
  -webkit-border-top-right-radius: 5px;
  -moz-border-radius-topleft: 5px;
  -moz-border-radius-topright: 5px; }

div.p_table_1.p_table_hover_light div.column_1:hover li.header_row_2,
div.p_table_1.p_table_hover_light div.column_2:hover li.header_row_2,
div.p_table_1.p_table_hover_light div.column_3:hover li.header_row_2,
div.p_table_1.p_table_hover_light div.column_4:hover li.header_row_2,
div.p_table_1.p_table_hover_light div.active_column li.header_row_2,
div.p_table_1.p_table_hover_disabled div.column_1:hover li.header_row_2,
div.p_table_1.p_table_hover_disabled div.column_2:hover li.header_row_2,
div.p_table_1.p_table_hover_disabled div.column_3:hover li.header_row_2,
div.p_table_1.p_table_hover_disabled div.column_4:hover li.header_row_2 {
  padding: 0 0 14px !important; }

div.p_table_1 div.column_1:hover li.header_row_2,
div.p_table_1 div.column_2:hover li.header_row_2,
div.p_table_1 div.column_3:hover li.header_row_2,
div.p_table_1 div.column_4:hover li.header_row_2,
div.p_table_1 div.active_column li.header_row_2,
div.p_table_1.p_table_hover_disabled div.active_column:hover li.header_row_2 {
  padding: 0 0 0px !important;
  height: 154px; }

div.p_table_1.p_table_hover_light div.column_1:hover li.footer_row,
div.p_table_1.p_table_hover_light div.column_2:hover li.footer_row,
div.p_table_1.p_table_hover_light div.column_3:hover li.footer_row,
div.p_table_1.p_table_hover_light div.column_4:hover li.footer_row,
div.p_table_1.p_table_hover_light div.active_column li.footer_row,
div.p_table_1.p_table_hover_disabled div.column_1:hover li.footer_row,
div.p_table_1.p_table_hover_disabled div.column_2:hover li.footer_row,
div.p_table_1.p_table_hover_disabled div.column_3:hover li.footer_row,
div.p_table_1.p_table_hover_disabled div.column_4:hover li.footer_row {
  padding: 10px 0 !important; }

div.p_table_1 div.column_1:hover li.footer_row,
div.p_table_1 div.column_2:hover li.footer_row,
div.p_table_1 div.column_3:hover li.footer_row,
div.p_table_1 div.column_4:hover li.footer_row,
div.p_table_1 div.active_column li.footer_row,
div.p_table_1.p_table_hover_disabled div.active_column:hover li.footer_row {
  padding: 10px 5px !important; }

/*==================== DATA ROWS  ====================*/
/* ------ common styles ------  */
div.p_table_1 li.row_style_1,
div.p_table_1 li.row_style_2,
div.p_table_1 li.row_style_3,
div.p_table_1 li.row_style_4 {
  width: 100%;
  /*height: 100%;*/
  height: 40px;
  padding: 0px 0 !important;
  line-height: 40px;
  float: left; }

div.p_table_1 li.row_style_1 span,
div.p_table_1 li.row_style_2 span,
div.p_table_1 li.row_style_3 span,
div.p_table_1 li.row_style_4 span {
  display: block;
  padding: 0 10px !important;
  font-size: 13px !important; }

/* --- white ---  */
div.p_table_1 li.row_style_1 {
  background: #ffffff !important; }

/* --- light gray ---  */
div.p_table_1 li.row_style_2 {
  background: #f6f6f6 !important; }

/* --- mid gray ---  */
div.p_table_1 li.row_style_3 {
  background: #ebebeb !important; }

/* --- dark gray ---  */
div.p_table_1 li.row_style_4 {
  background: #e3e3e3 !important; }

/*========== FOOTER  ==========*/
/* ------ common styles ------  */
div.p_table_1 li.footer_row {
  width: 100%;
  height: 40px;
  padding: 10px 0 !important;
  float: left;
  text-align: center;
  border-top: 1px solid #d3d3d3;
  border-bottom: none;
  background-color: #e2e2e2 !important;
  /* background color for non-css3 browsers */
  /* gradient */
  background-image: linear-gradient(top, #f6f6f6, #d0d0d0) !important;
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f6f6f6', endColorstr='#d0d0d0') !important;
  /* IE5.5 - 7 */
  -ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f6f6f6', endColorstr='#d0d0d0') !important;
  /* IE8 */
  background: -ms-linear-gradient(top, #f6f6f6, #d0d0d0) !important;
  /* IE9 */
  background: -moz-linear-gradient(top, #f6f6f6, #d0d0d0) !important;
  /* Firefox */
  background: -o-linear-gradient(top, #f6f6f6, #d0d0d0) !important;
  /* Opera 11  */
  background: -webkit-linear-gradient(top, #f6f6f6, #d0d0d0) !important;
  /* Chrome 11  */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #f6f6f6), color-stop(1, #d0d0d0)) !important;
  /* Chrome 10, Safari */ }

/* --- button --- */
div.p_table_1 a.sign_up,
div.p_table_1 .css3_grid_hidden_rows_control {
  width: 120px;
  height: 24px;
  padding: 6px 0px 0px 0px !important;
  display: block;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
  text-shadow: 0px 1px 0px #ffffff;
  /* text shadow for firefox 3.6+ */
  border: 1px solid #b5b5b5;
  background-color: #d8d8d8;
  /* background color for non-css3 browsers */
  outline: none;
  /* gradient */
  background-image: linear-gradient(top, #ffffff, #efefef 1px, #d8d8d8);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#efefef', endColorstr='#d8d8d8');
  /* IE5.5 - 7 */
  -ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#efefef', endColorstr='#d8d8d8');
  /* IE8 */
  background: -ms-linear-gradient(top, #ffffff, #efefef 1px, #d8d8d8);
  /* IE9 */
  background: -moz-linear-gradient(top, #ffffff, #efefef 1px, #d8d8d8);
  /* Firefox */
  background: -o-linear-gradient(top, #ffffff, #efefef 1px, #d8d8d8);
  /* Opera 11  */
  background: -webkit-linear-gradient(top, #ffffff, #efefef 1px, #d8d8d8);
  /* Chrome 11  */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #ffffff), color-stop(0.05, #efefef), color-stop(1, #d8d8d8));
  /* Chrome 10, Safari */
  /* shadow */
  box-shadow: 0px 1px 0px rgba(255, 255, 255, 0.5);
  -webkit-box-shadow: 0px 1px 0px rgba(255, 255, 255, 0.5);
  -moz-box-shadow: 0px 1px 0px rgba(255, 255, 255, 0.5);
  /* font */
  font-weight: bold;
  box-sizing: content-box;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box; }

/* --- button hover --- */
div.p_table_1 a.sign_up:hover,
div.p_table_1 .css3_grid_hidden_rows_control:hover {
  height: 24px;
  padding: 6px 0px 0px 0px !important;
  text-shadow: 0px 1px 0px #ffffff;
  /* text shadow for firefox 3.6+ */
  border: 1px solid #b5b5b5;
  background-color: #c9c9c9;
  /* background color for non-css3 browsers */
  outline: none;
  /* gradient */
  background-image: linear-gradient(top, #d2d2d2, #dedede 1px, #c9c9c9);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#dedede', endColorstr='#c9c9c9');
  /* IE5.5 - 7 */
  -ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#dedede', endColorstr='#c9c9c9');
  /* IE8 */
  background: -ms-linear-gradient(top, #d2d2d2, #dedede 1px, #c9c9c9);
  /* IE9 */
  background: -moz-linear-gradient(top, #d2d2d2, #dedede 1px, #c9c9c9);
  /* Firefox */
  background: -o-linear-gradient(top, #d2d2d2, #dedede 1px, #c9c9c9);
  /* Opera 11  */
  background: -webkit-linear-gradient(top, #d2d2d2, #dedede 1px, #c9c9c9);
  /* Chrome 11  */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #d2d2d2), color-stop(0.05, #dedede), color-stop(1, #c9c9c9));
  /* Chrome 10, Safari */
  /* shadow */
  box-shadow: 0px 1px 0px rgba(255, 255, 255, 0.5);
  -webkit-box-shadow: 0px 1px 0px rgba(255, 255, 255, 0.5);
  -moz-box-shadow: 0px 1px 0px rgba(255, 255, 255, 0.5); }

/* --- button orange --- */
div.p_table_1 a.sign_up.sign_up_orange {
  text-shadow: 0px 1px 0px #b37328;
  /* text shadow for firefox 3.6+ */
  border: 1px solid #da7411;
  color: #ffffff !important;
  /* gradient */
  background: #ef9a36;
  /* Old browsers */
  background: -moz-linear-gradient(top, #f4b873 0%, #f4b873 4%, #ef9a36 4%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f4b873), color-stop(4%, #f4b873), color-stop(4%, #ef9a36));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #f4b873 0%, #f4b873 4%, #ef9a36 4%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #f4b873 0%, #f4b873 4%, #ef9a36 4%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #f4b873 0%, #f4b873 4%, #ef9a36 4%);
  /* IE10+ */
  background: linear-gradient(top, #f4b873 0%, #f4b873 4%, #ef9a36 4%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f4b873', endColorstr='#ef9a36', GradientType=0);
  /* IE6-9 */ }

/* --- button hover --- */
div.p_table_1 a.sign_up.sign_up_orange:hover {
  text-shadow: 0px 1px 0px #a96310;
  /* text shadow for firefox 3.6+ */
  border: 1px solid #cf5708;
  background-color: #c9c9c9;
  /* background color for non-css3 browsers */
  /* gradient */
  background: #e18416;
  /* Old browsers */
  background: -moz-linear-gradient(top, #dc7612 0%, #dc7612 4%, #e18416 4%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #dc7612), color-stop(4%, #dc7612), color-stop(4%, #e18416));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #dc7612 0%, #dc7612 4%, #e18416 4%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #dc7612 0%, #dc7612 4%, #e18416 4%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #dc7612 0%, #dc7612 4%, #e18416 4%);
  /* IE10+ */
  background: linear-gradient(top, #dc7612 0%, #dc7612 4%, #e18416 4%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#dc7612', endColorstr='#e18416', GradientType=0);
  /* IE6-9 */ }

/* --- button --- */
div.p_table_1 a.sign_up.sign_up_yellow {
  text-shadow: 0px 1px 0px #b88b12;
  /* text shadow for firefox 3.6+ */
  border: 1px solid #e49c00;
  color: #ffffff !important;
  /* gradient */
  background: #f6ba18;
  /* Old browsers */
  background: -moz-linear-gradient(top, #f9cf5e 0%, #f9cf5e 4%, #f6ba18 4%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #f9cf5e), color-stop(4%, #f9cf5e), color-stop(4%, #f6ba18));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #f9cf5e 0%, #f9cf5e 4%, #f6ba18 4%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #f9cf5e 0%, #f9cf5e 4%, #f6ba18 4%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #f9cf5e 0%, #f9cf5e 4%, #f6ba18 4%);
  /* IE10+ */
  background: linear-gradient(top, #f9cf5e 0%, #f9cf5e 4%, #f6ba18 4%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f9cf5e', endColorstr='#f6ba18', GradientType=0);
  /* IE6-9 */ }

/* --- button hover --- */
div.p_table_1 a.sign_up.sign_up_yellow:hover {
  text-shadow: 0px 1px 0px #af7f00;
  /* text shadow for firefox 3.6+ */
  border: 1px solid #db8200;
  /* gradient */
  background: #e9aa00;
  /* Old browsers */
  background: -moz-linear-gradient(top, #e59e00 0%, #e59e00 4%, #e9aa00 4%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #e59e00), color-stop(4%, #e59e00), color-stop(4%, #e9aa00));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #e59e00 0%, #e59e00 4%, #e9aa00 4%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #e59e00 0%, #e59e00 4%, #e9aa00 4%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #e59e00 0%, #e59e00 4%, #e9aa00 4%);
  /* IE10+ */
  background: linear-gradient(top, #e59e00 0%, #e59e00 4%, #e9aa00 4%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e59e00', endColorstr='#e9aa00', GradientType=0);
  /* IE6-9 */ }

/* --- button --- */
div.p_table_1 a.sign_up.sign_up_lightgreen {
  text-shadow: 0px 1px 0px #6f811c;
  /* text shadow for firefox 3.6+ */
  border: 1px solid #738d0b;
  color: #ffffff !important;
  /* gradient */
  background: #94ac26;
  /* Old browsers */
  background: -moz-linear-gradient(top, #b4c568 0%, #b4c568 4%, #94ac26 4%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #b4c568), color-stop(4%, #b4c568), color-stop(4%, #94ac26));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #b4c568 0%, #b4c568 4%, #94ac26 4%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #b4c568 0%, #b4c568 4%, #94ac26 4%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #b4c568 0%, #b4c568 4%, #94ac26 4%);
  /* IE10+ */
  background: linear-gradient(top, #b4c568 0%, #b4c568 4%, #94ac26 4%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#b4c568', endColorstr='#94ac26', GradientType=0);
  /* IE6-9 */ }

/* --- button hover --- */
div.p_table_1 a.sign_up.sign_up_lightgreen:hover {
  text-shadow: 0px 1px 0px #62750a;
  /* text shadow for firefox 3.6+ */
  border: 1px solid #567105;
  /* gradient */
  background: #839c0e;
  /* Old browsers */
  background: -moz-linear-gradient(top, #758f0b 0%, #758f0b 4%, #839c0e 4%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #758f0b), color-stop(4%, #758f0b), color-stop(4%, #839c0e));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #758f0b 0%, #758f0b 4%, #839c0e 4%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #758f0b 0%, #758f0b 4%, #839c0e 4%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #758f0b 0%, #758f0b 4%, #839c0e 4%);
  /* IE10+ */
  background: linear-gradient(top, #758f0b 0%, #758f0b 4%, #839c0e 4%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#758f0b', endColorstr='#839c0e', GradientType=0);
  /* IE6-9 */ }

/* --- button --- */
div.p_table_1 a.sign_up.sign_up_green {
  padding: 6px 0px 0px 0px !important;
  text-shadow: 0px 1px 0px #417627;
  /* text shadow for firefox 3.6+ */
  border: 1px solid #357519;
  color: #ffffff !important;
  /* gradient */
  background: #579e34;
  /* Old browsers */
  background: -moz-linear-gradient(top, #8abb71 0%, #8abb71 4%, #579e34 4%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #8abb71), color-stop(4%, #8abb71), color-stop(4%, #579e34));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #8abb71 0%, #8abb71 4%, #579e34 4%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #8abb71 0%, #8abb71 4%, #579e34 4%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #8abb71 0%, #8abb71 4%, #579e34 4%);
  /* IE10+ */
  background: linear-gradient(top, #8abb71 0%, #8abb71 4%, #579e34 4%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#8abb71', endColorstr='#579e34', GradientType=0);
  /* IE6-9 */ }

/* --- button hover --- */
div.p_table_1 a.sign_up.sign_up_green:hover {
  text-shadow: 0px 1px 0px #316418;
  /* text shadow for firefox 3.6+ */
  border: 1px solid #1f580c;
  /* gradient */
  background: #418520;
  /* Old browsers */
  background: -moz-linear-gradient(top, #37771a 0%, #37771a 4%, #418520 4%);
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #37771a), color-stop(4%, #37771a), color-stop(4%, #418520));
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #37771a 0%, #37771a 4%, #418520 4%);
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #37771a 0%, #37771a 4%, #418520 4%);
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #37771a 0%, #37771a 4%, #418520 4%);
  /* IE10+ */
  background: linear-gradient(top, #37771a 0%, #37771a 4%, #418520 4%);
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#37771a', endColorstr='#418520', GradientType=0);
  /* IE6-9 */ }

/* ==================== COLUMN RIBBONS  ==================== */
/* --- base --- */
div.p_table_1 div.column_ribbon {
  float: right;
  width: 42px;
  height: 42px;
  position: relative;
  margin-bottom: -42px; }

/* --- hover--- */
div.p_table_1.p_table_hover_light div.column_1:hover div.column_ribbon,
div.p_table_1.p_table_hover_light div.column_2:hover div.column_ribbon,
div.p_table_1.p_table_hover_light div.column_3:hover div.column_ribbon,
div.p_table_1.p_table_hover_light div.column_4:hover div.column_ribbon,
div.p_table_1.p_table_hover_light div.active_column div.column_ribbon,
div.p_table_1.p_table_hover_disabled div.column_1:hover div.column_ribbon,
div.p_table_1.p_table_hover_disabled div.column_2:hover div.column_ribbon,
div.p_table_1.p_table_hover_disabled div.column_3:hover div.column_ribbon,
div.p_table_1.p_table_hover_disabled div.column_4:hover div.column_ribbon {
  right: 0px; }

div.p_table_1 div.column_1:hover div.column_ribbon,
div.p_table_1 div.column_2:hover div.column_ribbon,
div.p_table_1 div.column_3:hover div.column_ribbon,
div.p_table_1 div.column_4:hover div.column_ribbon,
div.p_table_1 div.active_column div.column_ribbon,
div.p_table_1.p_table_hover_disabled div.active_column:hover div.column_ribbon {
  right: -10px; }

/* ==================== ICONS  ==================== */
/* --- base --- */
div.p_table_1 span.css3_grid_icon::after {
  font-family: "icons";
  font-style: normal;
  font-weight: normal;
  speak: none;
  display: inline-block;
  text-decoration: inherit;
  width: 1em;
  margin-right: .2em;
  text-align: center;
  font-variant: normal;
  text-transform: none;
  line-height: 10px;
  margin-left: .2em;
  margin-top: 3px;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

/* --- yes icons --- */
div.p_table_1 span.css3_grid_icon.icon_yes_01::after {
  content: '\e80c';
  color: #56a600;
  font-size: 16px; }

div.p_table_1 span.css3_grid_icon.icon_yes_02::after {
  content: '\e802';
  color: #56a600;
  font-size: 14px; }

div.p_table_1 span.css3_grid_icon.icon_yes_03::after {
  content: '\e804';
  color: #56a600;
  font-size: 14px; }

div.p_table_1 span.css3_grid_icon.icon_yes_04::after {
  content: '\e806';
  color: #56a600;
  font-size: 16px; }

div.p_table_1 span.css3_grid_icon.icon_yes_05::after {
  content: '\e808';
  color: #56a600;
  font-size: 14px; }

div.p_table_1 span.css3_grid_icon.icon_yes_06::after {
  content: '\e80a';
  color: #56a600;
  font-size: 14px; }

div.p_table_1 span.css3_grid_icon.icon_yes_07::after {
  content: '\e812';
  color: #56a600;
  font-size: 13px; }

div.p_table_1 span.css3_grid_icon.icon_yes_08::after {
  content: '\e80e';
  color: #56a600;
  font-size: 14px; }

div.p_table_1 span.css3_grid_icon.icon_yes_09::after {
  content: '\e810';
  color: #56a600;
  font-size: 14px; }

div.p_table_1 span.css3_grid_icon.icon_yes_10::after {
  content: '\e800';
  color: #ffa800;
  font-size: 15px; }

/* --- no icons --- */
div.p_table_1 span.css3_grid_icon.icon_no_01::after {
  content: '\e80d';
  color: #d64747;
  font-size: 16px; }

div.p_table_1 span.css3_grid_icon.icon_no_02::after {
  content: '\e803';
  color: #d64747;
  font-size: 14px; }

div.p_table_1 span.css3_grid_icon.icon_no_03::after {
  content: '\e805';
  color: #d64747;
  font-size: 14px; }

div.p_table_1 span.css3_grid_icon.icon_no_04::after {
  content: '\e807';
  color: #d64747;
  font-size: 16px; }

div.p_table_1 span.css3_grid_icon.icon_no_05::after {
  content: '\e809';
  color: #d64747;
  font-size: 14px; }

div.p_table_1 span.css3_grid_icon.icon_no_06::after {
  content: '\e80b';
  color: #d64747;
  font-size: 14px; }

div.p_table_1 span.css3_grid_icon.icon_no_07::after {
  content: '\e813';
  color: #aaaaaa;
  font-size: 13px; }

div.p_table_1 span.css3_grid_icon.icon_no_08::after {
  content: '\e80f';
  color: #aaaaaa;
  font-size: 14px; }

div.p_table_1 span.css3_grid_icon.icon_no_09::after {
  content: '\e811';
  color: #aaaaaa;
  font-size: 14px; }

div.p_table_1 span.css3_grid_icon.icon_no_10::after {
  content: '\e801';
  color: #aaaaaa;
  font-size: 15px; }

/* ==================== TOOLTIP  ==================== */
/* --- base --- */
div.p_table_1 span.css3_grid_tooltip {
  position: relative !important;
  display: inline-block !important;
  border-bottom: 1px dotted #444444 !important;
  cursor: pointer; }

div.p_table_1 li.row_style_1 span.css3_grid_tooltip,
div.p_table_1 li.row_style_2 span.css3_grid_tooltip,
div.p_table_1 li.row_style_3 span.css3_grid_tooltip,
div.p_table_1 li.row_style_4 span.css3_grid_tooltip {
  padding: 0 !important; }

div.p_table_1 .header_row_1 span.css3_grid_tooltip,
div.p_table_1 .header_row_2 span.css3_grid_tooltip,
div.p_table_1 .footer_row span.css3_grid_tooltip {
  border-bottom: none !important; }

div.p_table_1 span.css3_grid_tooltip > span:first-child {
  min-width: 180px;
  /* Tooltip Width */
  font-family: arial, sans-serif !important;
  /* Tooltip Base Font Family */
  font-size: 13px !important;
  /* Tooltip Base Font Size */
  line-height: normal !important;
  text-align: left !important;
  padding: 10px 10px 12px 10px !important;
  visibility: hidden;
  opacity: 0;
  position: absolute;
  z-index: 1000;
  /* CSS3 Transitions */
  -webkit-transition-duration: 0.25s;
  -moz-transition-duration: 0.25s;
  -o-transition-duration: 0.25s;
  -ms-transition-duration: 0.25s;
  transition-duration: 0.25s;
  -webkit-transition-timing-function: cubic-bezier(0.35, 0, 0.35, 1);
  -moz-transition-timing-function: cubic-bezier(0.35, 0, 0.35, 1);
  -o-transition-timing-function: cubic-bezier(0.35, 0, 0.35, 1);
  -ms-transition-timing-function: cubic-bezier(0.35, 0, 0.35, 1);
  transition-timing-function: cubic-bezier(0.35, 0, 0.35, 1);
  color: #ffffff !important;
  /* CSS3 Gradients */
  background: #404040 !important;
  /* Old browsers */
  background: -moz-linear-gradient(top, #4e4e4e 0%, #404040 100%) !important;
  /* FF3.6+ */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0%, #4e4e4e), color-stop(100%, #404040)) !important;
  /* Chrome,Safari4+ */
  background: -webkit-linear-gradient(top, #4e4e4e 0%, #404040 100%) !important;
  /* Chrome10+,Safari5.1+ */
  background: -o-linear-gradient(top, #4e4e4e 0%, #404040 100%) !important;
  /* Opera 11.10+ */
  background: -ms-linear-gradient(top, #4e4e4e 0%, #404040 100%) !important;
  /* IE10+ */
  background: linear-gradient(top, #4e4e4e 0%, #404040 100%) !important;
  /* W3C */
  /*filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#4e4e4e', endColorstr='#404040',GradientType=0 ); IE6-9 - disabled due to lack of compatibility with pseudo-elements */
  /* CSS3 Borders */
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  /* CSS3 Text-shadow */
  text-shadow: 0px 1px 0px rgba(0, 0, 0, 0.4);
  left: -19px;
  bottom: 100%;
  margin-bottom: 30px;
  /* Start Position */
  /* CSS3 Transitions */
  -webkit-transition-property: opacity, margin-bottom, visibility;
  -moz-transition-property: opacity, margin-bottom, visibility;
  -o-transition-property: opacity, margin-bottom, visibility;
  -ms-transition-property: opacity, margin-bottom, visibility;
  transition-property: opacity, margin-bottom, visibility; }

div.p_table_1.p_table_sliding span.css3_grid_tooltip > span:first-child {
  min-width: 95px;
  width: 95px;
  left: -54px; }

div.p_table_1 span.css3_grid_tooltip > span:first-child:before {
  content: "";
  display: block;
  width: 0px;
  height: 0px;
  position: absolute;
  border-left: 8px solid transparent !important;
  border-right: 8px solid transparent !important;
  border-top: 8px solid #000;
  border-bottom: 0 !important;
  bottom: -8px;
  left: 15px;
  border-color: #404040; }

div.p_table_1.p_table_sliding span.css3_grid_tooltip > span:first-child:before {
  left: 50px; }

/* --- On Hover --- */
div.p_table_1 span.css3_grid_tooltip:hover > span:first-child {
  margin-bottom: 10px;
  /* End Position */
  visibility: visible;
  opacity: 1; }

/* --- On Focus --- */
div.p_table_1 span.css3_grid_tooltip input:focus + span:first-child,
div.p_table_1 span.css3_grid_tooltip textarea:focus + span:first-child {
  margin-bottom: 10px;
  /* End Position */
  visibility: visible;
  opacity: 1; }

/* --- Decorative Line --- */
div.p_table_1 span.css3_grid_tooltip > span:first-child:after {
  content: "";
  display: block;
  border-top: 1px solid #808080;
  position: absolute;
  left: 0px;
  top: 1px;
  width: 100%;
  height: 10px;
  /* CSS3 Borders */
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px; }

/* --- misc --- */
.css3_grid_clearfix:after {
  font-size: 0px;
  content: ".";
  display: block;
  height: 0px;
  visibility: hidden;
  clear: both; }

/* ============ Style 1 ============= */
/* ========== HEADINGS  ========== */
div.p_table_1_1 h1.col1,
div.p_table_1_1 h1.col2,
div.p_table_1_1 h1.col3,
div.p_table_1_1 h1.col4 {
  color: #808080 !important; }

div.p_table_1_1 h1 span {
  color: #5bc2d4 !important; }

div.p_table_1_1 h2.col1,
div.p_table_1_1 h2.col2,
div.p_table_1_1 h2.col3,
div.p_table_1_1 h2.col4 {
  color: #808080 !important; }

div.p_table_1_1 h2.caption {
  color: #808080 !important; }

div.p_table_1_1 h2.caption span {
  color: #5bc2d4 !important;
  text-shadow: none !important; }

div.p_table_1_1 h3.col1,
div.p_table_1_1 h3.col2,
div.p_table_1_1 h3.col3,
div.p_table_1_1 h3.col4 {
  color: #808080 !important; }

/* ========== CAPTION COLUMN  ========== */
/* --- header row 1 ---  */
div.p_table_1_1 div.caption_column li.header_row_1 {
  border-top: 1px solid #5f5f5f;
  border-bottom: 1px solid #1a1a1a;
  background-color: #353535 !important;
  /* background color for non-css3 browsers */
  /* gradient */
  background-image: linear-gradient(top, #424242, #2b2b2b) !important;
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#424242', endColorstr='#2b2b2b') !important;
  /* IE5.5 - 7 */
  -ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#424242', endColorstr='#2b2b2b') !important;
  /* IE8 */
  background: -ms-linear-gradient(top, #424242, #2b2b2b) !important;
  /* IE9 */
  background: -moz-linear-gradient(top, #424242, #2b2b2b) !important;
  /* Firefox */
  background: -o-linear-gradient(top, #424242, #2b2b2b) !important;
  /* Opera 11  */
  background: -webkit-linear-gradient(top, #424242, #2b2b2b) !important;
  /* Chrome 11  */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #424242), color-stop(1, #2b2b2b)) !important;
  /* Chrome 10, Safari */ }

/* --- header row 2 ---  */
div.p_table_1_1 div.caption_column li.header_row_2 {
  border-top: 1px solid #434343;
  border-bottom: 1px solid #1f1f1f;
  background-color: #353535 !important;
  /* background color for non-css3 browsers */
  /* gradient */
  background-image: linear-gradient(top, #363636, #1f1f1f) !important;
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#363636', endColorstr='#1f1f1f') !important;
  /* IE5.5 - 7 */
  -ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#363636', endColorstr='#1f1f1f') !important;
  /* IE8 */
  background: -ms-linear-gradient(top, #363636, #1f1f1f) !important;
  /* IE9 */
  background: -moz-linear-gradient(top, #363636, #1f1f1f) !important;
  /* Firefox */
  background: -o-linear-gradient(top, #363636, #1f1f1f) !important;
  /* Opera 11  */
  background: -webkit-linear-gradient(top, #363636, #1f1f1f) !important;
  /* Chrome 11  */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #363636), color-stop(1, #1f1f1f)) !important;
  /* Chrome 10, Safari */ }

/* ========== COLUMN STYLE 1  ========== */
/* --- header row 1 ---  */
div.p_table_1_1 div.column_1 li.header_row_1 {
  border-top: 1px solid #5f5f5f;
  border-bottom: 1px solid #1a1a1a;
  background-color: #353535 !important;
  /* background color for non-css3 browsers */
  /* gradient */
  background-image: linear-gradient(top, #424242, #2b2b2b) !important;
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#424242', endColorstr='#2b2b2b') !important;
  /* IE5.5 - 7 */
  -ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#424242', endColorstr='#2b2b2b') !important;
  /* IE8 */
  background: -ms-linear-gradient(top, #424242, #2b2b2b) !important;
  /* IE9 */
  background: -moz-linear-gradient(top, #424242, #2b2b2b) !important;
  /* Firefox */
  background: -o-linear-gradient(top, #424242, #2b2b2b) !important;
  /* Opera 11  */
  background: -webkit-linear-gradient(top, #424242, #2b2b2b) !important;
  /* Chrome 11  */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #424242), color-stop(1, #2b2b2b)) !important;
  /* Chrome 10, Safari */ }

/* --- header row 2 ---  */
div.p_table_1_1 div.column_1 li.header_row_2 {
  border-top: 1px solid #434343;
  border-bottom: 1px solid #1f1f1f;
  background-color: #353535 !important;
  /* background color for non-css3 browsers */
  /* gradient */
  background-image: linear-gradient(top, #363636, #1f1f1f) !important;
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#363636', endColorstr='#1f1f1f') !important;
  /* IE5.5 - 7 */
  -ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#363636', endColorstr='#1f1f1f') !important;
  /* IE8 */
  background: -ms-linear-gradient(top, #363636, #1f1f1f) !important;
  /* IE9 */
  background: -moz-linear-gradient(top, #363636, #1f1f1f) !important;
  /* Firefox */
  background: -o-linear-gradient(top, #363636, #1f1f1f) !important;
  /* Opera 11  */
  background: -webkit-linear-gradient(top, #363636, #1f1f1f) !important;
  /* Chrome 11  */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #363636), color-stop(1, #1f1f1f)) !important;
  /* Chrome 10, Safari */ }

/* ========== COLUMN STYLE 2  ========== */
/* --- header row 1 ---  */
div.p_table_1_1 div.column_2 li.header_row_1 {
  border-top: 1px solid #5f5f5f;
  border-bottom: 1px solid #1a1a1a;
  background-color: #353535 !important;
  /* background color for non-css3 browsers */
  /* gradient */
  background-image: linear-gradient(top, #424242, #2b2b2b) !important;
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#424242', endColorstr='#2b2b2b') !important;
  /* IE5.5 - 7 */
  -ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#424242', endColorstr='#2b2b2b') !important;
  /* IE8 */
  background: -ms-linear-gradient(top, #424242, #2b2b2b) !important;
  /* IE9 */
  background: -moz-linear-gradient(top, #424242, #2b2b2b) !important;
  /* Firefox */
  background: -o-linear-gradient(top, #424242, #2b2b2b) !important;
  /* Opera 11  */
  background: -webkit-linear-gradient(top, #424242, #2b2b2b) !important;
  /* Chrome 11  */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #424242), color-stop(1, #2b2b2b)) !important;
  /* Chrome 10, Safari */ }

/* --- header row 2 ---  */
div.p_table_1_1 div.column_2 li.header_row_2 {
  border-top: 1px solid #434343;
  border-bottom: 1px solid #1f1f1f;
  background-color: #353535 !important;
  /* background color for non-css3 browsers */
  /* gradient */
  background-image: linear-gradient(top, #363636, #1f1f1f) !important;
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#363636', endColorstr='#1f1f1f') !important;
  /* IE5.5 - 7 */
  -ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#363636', endColorstr='#1f1f1f') !important;
  /* IE8 */
  background: -ms-linear-gradient(top, #363636, #1f1f1f) !important;
  /* IE9 */
  background: -moz-linear-gradient(top, #363636, #1f1f1f) !important;
  /* Firefox */
  background: -o-linear-gradient(top, #363636, #1f1f1f) !important;
  /* Opera 11  */
  background: -webkit-linear-gradient(top, #363636, #1f1f1f) !important;
  /* Chrome 11  */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #363636), color-stop(1, #1f1f1f)) !important;
  /* Chrome 10, Safari */ }

/* ========== COLUMN STYLE 3  ========== */
/* --- header row 1 ---  */
div.p_table_1_1 div.column_3 li.header_row_1 {
  border-top: 1px solid #5f5f5f;
  border-bottom: 1px solid #1a1a1a;
  background-color: #353535 !important;
  /* background color for non-css3 browsers */
  /* gradient */
  background-image: linear-gradient(top, #424242, #2b2b2b) !important;
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#424242', endColorstr='#2b2b2b') !important;
  /* IE5.5 - 7 */
  -ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#424242', endColorstr='#2b2b2b') !important;
  /* IE8 */
  background: -ms-linear-gradient(top, #424242, #2b2b2b) !important;
  /* IE9 */
  background: -moz-linear-gradient(top, #424242, #2b2b2b) !important;
  /* Firefox */
  background: -o-linear-gradient(top, #424242, #2b2b2b) !important;
  /* Opera 11  */
  background: -webkit-linear-gradient(top, #424242, #2b2b2b) !important;
  /* Chrome 11  */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #424242), color-stop(1, #2b2b2b)) !important;
  /* Chrome 10, Safari */ }

/* --- header row 2 ---  */
div.p_table_1_1 div.column_3 li.header_row_2 {
  border-top: 1px solid #434343;
  border-bottom: 1px solid #1f1f1f;
  background-color: #353535 !important;
  /* background color for non-css3 browsers */
  /* gradient */
  background-image: linear-gradient(top, #363636, #1f1f1f) !important;
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#363636', endColorstr='#1f1f1f') !important;
  /* IE5.5 - 7 */
  -ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#363636', endColorstr='#1f1f1f') !important;
  /* IE8 */
  background: -ms-linear-gradient(top, #363636, #1f1f1f) !important;
  /* IE9 */
  background: -moz-linear-gradient(top, #363636, #1f1f1f) !important;
  /* Firefox */
  background: -o-linear-gradient(top, #363636, #1f1f1f) !important;
  /* Opera 11  */
  background: -webkit-linear-gradient(top, #363636, #1f1f1f) !important;
  /* Chrome 11  */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #363636), color-stop(1, #1f1f1f)) !important;
  /* Chrome 10, Safari */ }

/* ========== COLUMN STYLE 4  ========== */
/* --- header row 1 ---  */
div.p_table_1_1 div.column_4 li.header_row_1 {
  border-top: 1px solid #5f5f5f;
  border-bottom: 1px solid #1a1a1a;
  background-color: #353535 !important;
  /* background color for non-css3 browsers */
  /* gradient */
  background-image: linear-gradient(top, #424242, #2b2b2b) !important;
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#424242', endColorstr='#2b2b2b') !important;
  /* IE5.5 - 7 */
  -ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#424242', endColorstr='#2b2b2b') !important;
  /* IE8 */
  background: -ms-linear-gradient(top, #424242, #2b2b2b) !important;
  /* IE9 */
  background: -moz-linear-gradient(top, #424242, #2b2b2b) !important;
  /* Firefox */
  background: -o-linear-gradient(top, #424242, #2b2b2b) !important;
  /* Opera 11  */
  background: -webkit-linear-gradient(top, #424242, #2b2b2b) !important;
  /* Chrome 11  */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #424242), color-stop(1, #2b2b2b)) !important;
  /* Chrome 10, Safari */ }

/* --- header row 2 ---  */
div.p_table_1_1 div.column_4 li.header_row_2 {
  border-top: 1px solid #434343;
  border-bottom: 1px solid #1f1f1f;
  background-color: #353535 !important;
  /* background color for non-css3 browsers */
  /* gradient */
  background-image: linear-gradient(top, #363636, #1f1f1f) !important;
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#363636', endColorstr='#1f1f1f') !important;
  /* IE5.5 - 7 */
  -ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#363636', endColorstr='#1f1f1f') !important;
  /* IE8 */
  background: -ms-linear-gradient(top, #363636, #1f1f1f) !important;
  /* IE9 */
  background: -moz-linear-gradient(top, #363636, #1f1f1f) !important;
  /* Firefox */
  background: -o-linear-gradient(top, #363636, #1f1f1f) !important;
  /* Opera 11  */
  background: -webkit-linear-gradient(top, #363636, #1f1f1f) !important;
  /* Chrome 11  */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #363636), color-stop(1, #1f1f1f)) !important;
  /* Chrome 10, Safari */ }

/* ============ Style 2 ============= */
/* ========== HEADINGS  ========== */
div.p_table_1_2 h1.col1,
div.p_table_1_2 h1.col2,
div.p_table_1_2 h1.col3,
div.p_table_1_2 h1.col4 {
  color: #da4300 !important;
  /* shadow */
  text-shadow: 0px 1px 0px #ffdd28; }

div.p_table_1_2 h1 span {
  color: #da4300;
  text-shadow: 0px 1px 0px #ffdd28; }

div.p_table_1_2 h2.col1,
div.p_table_1_2 h2.col2,
div.p_table_1_2 h2.col3,
div.p_table_1_2 h2.col4 {
  color: #da4300 !important;
  text-shadow: 0px 1px 0px #ffdd28; }

div.p_table_1_2 h2.caption {
  color: #da4300 !important;
  text-shadow: 0px 1px 0px #ffdd28; }

div.p_table_1_2 h2.caption span {
  color: #da4300 !important;
  text-shadow: 0px 1px 0px #ffdd28 !important; }

div.p_table_1_2 h3.col1,
div.p_table_1_2 h3.col2,
div.p_table_1_2 h3.col3,
div.p_table_1_2 h3.col4 {
  color: #da4300 !important; }

/* ========== CAPTION COLUMN  ========== */
/* --- header row 1 ---  */
div.p_table_1_2 div.caption_column li.header_row_1 {
  border-top: 1px solid #ffe96d;
  border-bottom: 1px solid #ff8e00;
  background-color: #fcbb00 !important;
  /* background color for non-css3 browsers */
  /* gradient */
  background-image: linear-gradient(top, #fbd601, #fdae00) !important;
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbd601', endColorstr='#fdae00') !important;
  /* IE5.5 - 7 */
  -ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbd601', endColorstr='#fdae00') !important;
  /* IE8 */
  background: -ms-linear-gradient(top, #fbd601, #fdae00) !important;
  /* IE9 */
  background: -moz-linear-gradient(top, #fbd601, #fdae00) !important;
  /* Firefox */
  background: -o-linear-gradient(top, #fbd601, #fdae00) !important;
  /* Opera 11  */
  background: -webkit-linear-gradient(top, #fbd601, #fdae00) !important;
  /* Chrome 11  */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fbd601), color-stop(1, #fdae00)) !important;
  /* Chrome 10, Safari */ }

/* --- header row 2 ---  */
div.p_table_1_2 div.caption_column li.header_row_2 {
  border-top: 1px solid #ffec4a;
  border-bottom: 1px solid #ea8c00;
  background-color: #fcbb00 !important;
  /* background color for non-css3 browsers */
  /* gradient */
  background-image: linear-gradient(top, #fbd601, #fdb200) !important;
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbd601', endColorstr='#fdb200') !important;
  /* IE5.5 - 7 */
  -ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbd601', endColorstr='#fdb200') !important;
  /* IE8 */
  background: -ms-linear-gradient(top, #fbd601, #fdb200) !important;
  /* IE9 */
  background: -moz-linear-gradient(top, #fbd601, #fdb200) !important;
  /* Firefox */
  background: -o-linear-gradient(top, #fbd601, #fdb200) !important;
  /* Opera 11  */
  background: -webkit-linear-gradient(top, #fbd601, #fdb200) !important;
  /* Chrome 11  */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fbd601), color-stop(1, #fdb200)) !important;
  /* Chrome 10, Safari */ }

/* ========== COLUMN STYLE 1  ========== */
/* --- header row 1 ---  */
div.p_table_1_2 div.column_1 li.header_row_1 {
  border-top: 1px solid #ffe96d;
  border-bottom: 1px solid #ff8e00;
  background-color: #fcbb00 !important;
  /* background color for non-css3 browsers */
  /* gradient */
  background-image: linear-gradient(top, #fbd601, #fdae00) !important;
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbd601', endColorstr='#fdae00') !important;
  /* IE5.5 - 7 */
  -ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbd601', endColorstr='#fdae00') !important;
  /* IE8 */
  background: -ms-linear-gradient(top, #fbd601, #fdae00) !important;
  /* IE9 */
  background: -moz-linear-gradient(top, #fbd601, #fdae00) !important;
  /* Firefox */
  background: -o-linear-gradient(top, #fbd601, #fdae00) !important;
  /* Opera 11  */
  background: -webkit-linear-gradient(top, #fbd601, #fdae00) !important;
  /* Chrome 11  */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fbd601), color-stop(1, #fdae00)) !important;
  /* Chrome 10, Safari */ }

/* --- header row 2 ---  */
div.p_table_1_2 div.column_1 li.header_row_2 {
  border-top: 1px solid #ffec4a;
  border-bottom: 1px solid #ea8c00;
  background-color: #fcbb00 !important;
  /* background color for non-css3 browsers */
  /* gradient */
  background-image: linear-gradient(top, #fbd601, #fdb200) !important;
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbd601', endColorstr='#fdb200') !important;
  /* IE5.5 - 7 */
  -ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbd601', endColorstr='#fdb200') !important;
  /* IE8 */
  background: -ms-linear-gradient(top, #fbd601, #fdb200) !important;
  /* IE9 */
  background: -moz-linear-gradient(top, #fbd601, #fdb200) !important;
  /* Firefox */
  background: -o-linear-gradient(top, #fbd601, #fdb200) !important;
  /* Opera 11  */
  background: -webkit-linear-gradient(top, #fbd601, #fdb200) !important;
  /* Chrome 11  */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fbd601), color-stop(1, #fdb200)) !important;
  /* Chrome 10, Safari */ }

/* ========== COLUMN STYLE 2  ========== */
/* --- header row 1 ---  */
div.p_table_1_2 div.column_2 li.header_row_1 {
  border-top: 1px solid #ffe96d;
  border-bottom: 1px solid #ff8e00;
  background-color: #fcbb00 !important;
  /* background color for non-css3 browsers */
  /* gradient */
  background-image: linear-gradient(top, #fbd601, #fdae00) !important;
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbd601', endColorstr='#fdae00') !important;
  /* IE5.5 - 7 */
  -ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbd601', endColorstr='#fdae00') !important;
  /* IE8 */
  background: -ms-linear-gradient(top, #fbd601, #fdae00) !important;
  /* IE9 */
  background: -moz-linear-gradient(top, #fbd601, #fdae00) !important;
  /* Firefox */
  background: -o-linear-gradient(top, #fbd601, #fdae00) !important;
  /* Opera 11  */
  background: -webkit-linear-gradient(top, #fbd601, #fdae00) !important;
  /* Chrome 11  */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fbd601), color-stop(1, #fdae00)) !important;
  /* Chrome 10, Safari */ }

/* --- header row 2 ---  */
div.p_table_1_2 div.column_2 li.header_row_2 {
  border-top: 1px solid #ffec4a;
  border-bottom: 1px solid #ea8c00;
  background-color: #fcbb00 !important;
  /* background color for non-css3 browsers */
  /* gradient */
  background-image: linear-gradient(top, #fbd601, #fdb200) !important;
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbd601', endColorstr='#fdb200') !important;
  /* IE5.5 - 7 */
  -ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbd601', endColorstr='#fdb200') !important;
  /* IE8 */
  background: -ms-linear-gradient(top, #fbd601, #fdb200) !important;
  /* IE9 */
  background: -moz-linear-gradient(top, #fbd601, #fdb200) !important;
  /* Firefox */
  background: -o-linear-gradient(top, #fbd601, #fdb200) !important;
  /* Opera 11  */
  background: -webkit-linear-gradient(top, #fbd601, #fdb200) !important;
  /* Chrome 11  */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fbd601), color-stop(1, #fdb200)) !important;
  /* Chrome 10, Safari */ }

/* ========== COLUMN STYLE 3  ========== */
/* --- header row 1 ---  */
div.p_table_1_2 div.column_3 li.header_row_1 {
  border-top: 1px solid #ffe96d;
  border-bottom: 1px solid #ff8e00;
  background-color: #fcbb00 !important;
  /* background color for non-css3 browsers */
  /* gradient */
  background-image: linear-gradient(top, #fbd601, #fdae00) !important;
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbd601', endColorstr='#fdae00') !important;
  /* IE5.5 - 7 */
  -ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbd601', endColorstr='#fdae00') !important;
  /* IE8 */
  background: -ms-linear-gradient(top, #fbd601, #fdae00) !important;
  /* IE9 */
  background: -moz-linear-gradient(top, #fbd601, #fdae00) !important;
  /* Firefox */
  background: -o-linear-gradient(top, #fbd601, #fdae00) !important;
  /* Opera 11  */
  background: -webkit-linear-gradient(top, #fbd601, #fdae00) !important;
  /* Chrome 11  */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fbd601), color-stop(1, #fdae00)) !important;
  /* Chrome 10, Safari */ }

/* --- header row 2 ---  */
div.p_table_1_2 div.column_3 li.header_row_2 {
  border-top: 1px solid #ffec4a;
  border-bottom: 1px solid #ea8c00;
  background-color: #fcbb00 !important;
  /* background color for non-css3 browsers */
  /* gradient */
  background-image: linear-gradient(top, #fbd601, #fdb200) !important;
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbd601', endColorstr='#fdb200') !important;
  /* IE5.5 - 7 */
  -ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbd601', endColorstr='#fdb200') !important;
  /* IE8 */
  background: -ms-linear-gradient(top, #fbd601, #fdb200) !important;
  /* IE9 */
  background: -moz-linear-gradient(top, #fbd601, #fdb200) !important;
  /* Firefox */
  background: -o-linear-gradient(top, #fbd601, #fdb200) !important;
  /* Opera 11  */
  background: -webkit-linear-gradient(top, #fbd601, #fdb200) !important;
  /* Chrome 11  */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fbd601), color-stop(1, #fdb200)) !important;
  /* Chrome 10, Safari */ }

/* ========== COLUMN STYLE 4  ========== */
/* --- header row 1 ---  */
div.p_table_1_2 div.column_4 li.header_row_1 {
  border-top: 1px solid #ffe96d;
  border-bottom: 1px solid #ff8e00;
  background-color: #fcbb00 !important;
  /* background color for non-css3 browsers */
  /* gradient */
  background-image: linear-gradient(top, #fbd601, #fdae00) !important;
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbd601', endColorstr='#fdae00') !important;
  /* IE5.5 - 7 */
  -ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbd601', endColorstr='#fdae00') !important;
  /* IE8 */
  background: -ms-linear-gradient(top, #fbd601, #fdae00) !important;
  /* IE9 */
  background: -moz-linear-gradient(top, #fbd601, #fdae00) !important;
  /* Firefox */
  background: -o-linear-gradient(top, #fbd601, #fdae00) !important;
  /* Opera 11  */
  background: -webkit-linear-gradient(top, #fbd601, #fdae00) !important;
  /* Chrome 11  */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fbd601), color-stop(1, #fdae00)) !important;
  /* Chrome 10, Safari */ }

/* --- header row 2 ---  */
div.p_table_1_2 div.column_4 li.header_row_2 {
  border-top: 1px solid #ffec4a;
  border-bottom: 1px solid #ea8c00;
  background-color: #fcbb00 !important;
  /* background color for non-css3 browsers */
  /* gradient */
  background-image: linear-gradient(top, #fbd601, #fdb200) !important;
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbd601', endColorstr='#fdb200') !important;
  /* IE5.5 - 7 */
  -ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#fbd601', endColorstr='#fdb200') !important;
  /* IE8 */
  background: -ms-linear-gradient(top, #fbd601, #fdb200) !important;
  /* IE9 */
  background: -moz-linear-gradient(top, #fbd601, #fdb200) !important;
  /* Firefox */
  background: -o-linear-gradient(top, #fbd601, #fdb200) !important;
  /* Opera 11  */
  background: -webkit-linear-gradient(top, #fbd601, #fdb200) !important;
  /* Chrome 11  */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #fbd601), color-stop(1, #fdb200)) !important;
  /* Chrome 10, Safari */ }

/* ============ Style 3 ============= */
/* ========== HEADINGS  ========== */
div.p_table_1_3 h1.col1,
div.p_table_1_3 h1.col2,
div.p_table_1_3 h1.col3,
div.p_table_1_3 h1.col4 {
  color: #e76666 !important; }

div.p_table_1_3 h1 span {
  color: #ffffff !important; }

div.p_table_1_3 h2.col1,
div.p_table_1_3 h2.col2,
div.p_table_1_3 h2.col3,
div.p_table_1_3 h2.col4 {
  color: #ffffff !important; }

div.p_table_1_3 h2.caption {
  color: #e76666 !important; }

div.p_table_1_3 h2.caption span {
  color: #ffffff !important;
  text-shadow: none !important; }

div.p_table_1_3 h3.col1,
div.p_table_1_3 h3.col2,
div.p_table_1_3 h3.col3,
div.p_table_1_3 h3.col4 {
  color: #ffffff !important; }

/* ========== CAPTION COLUMN  ========== */
/* --- header row 1 ---  */
div.p_table_1_3 div.caption_column li.header_row_1 {
  border-top: 1px solid #c44646;
  border-bottom: 1px solid #810000;
  background-color: #ab2727 !important;
  /* background color for non-css3 browsers */
  /* gradient */
  background-image: linear-gradient(top, #b83636, #a72323) !important;
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#b83636', endColorstr='#a72323') !important;
  /* IE5.5 - 7 */
  -ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#b83636', endColorstr='#a72323') !important;
  /* IE8 */
  background: -ms-linear-gradient(top, #b83636, #a72323) !important;
  /* IE9 */
  background: -moz-linear-gradient(top, #b83636, #a72323) !important;
  /* Firefox */
  background: -o-linear-gradient(top, #b83636, #a72323) !important;
  /* Opera 11  */
  background: -webkit-linear-gradient(top, #b83636, #a72323) !important;
  /* Chrome 11  */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #b83636), color-stop(1, #a72323)) !important;
  /* Chrome 10, Safari */ }

/* --- header row 2 ---  */
div.p_table_1_3 div.caption_column li.header_row_2 {
  border-top: 1px solid #d04848;
  border-bottom: 1px solid #8f1d1d;
  background-color: #ab2727 !important;
  /* background color for non-css3 browsers */
  /* gradient */
  background-image: linear-gradient(top, #ba3737, #a62222) !important;
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ba3737', endColorstr='#a62222') !important;
  /* IE5.5 - 7 */
  -ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ba3737', endColorstr='#a62222') !important;
  /* IE8 */
  background: -ms-linear-gradient(top, #ba3737, #a62222) !important;
  /* IE9 */
  background: -moz-linear-gradient(top, #ba3737, #a62222) !important;
  /* Firefox */
  background: -o-linear-gradient(top, #ba3737, #a62222) !important;
  /* Opera 11  */
  background: -webkit-linear-gradient(top, #ba3737, #a62222) !important;
  /* Chrome 11  */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #ba3737), color-stop(1, #a62222)) !important;
  /* Chrome 10, Safari */ }

/* ========== COLUMN STYLE 1  ========== */
/* --- header row 1 ---  */
div.p_table_1_3 div.column_1 li.header_row_1 {
  border-top: 1px solid #c44646;
  border-bottom: 1px solid #810000;
  background-color: #ab2727 !important;
  /* background color for non-css3 browsers */
  /* gradient */
  background-image: linear-gradient(top, #b83636, #a72323) !important;
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#b83636', endColorstr='#a72323') !important;
  /* IE5.5 - 7 */
  -ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#b83636', endColorstr='#a72323') !important;
  /* IE8 */
  background: -ms-linear-gradient(top, #b83636, #a72323) !important;
  /* IE9 */
  background: -moz-linear-gradient(top, #b83636, #a72323) !important;
  /* Firefox */
  background: -o-linear-gradient(top, #b83636, #a72323) !important;
  /* Opera 11  */
  background: -webkit-linear-gradient(top, #b83636, #a72323) !important;
  /* Chrome 11  */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #b83636), color-stop(1, #a72323)) !important;
  /* Chrome 10, Safari */ }

/* --- header row 2 ---  */
div.p_table_1_3 div.column_1 li.header_row_2 {
  border-top: 1px solid #d04848;
  border-bottom: 1px solid #8f1d1d;
  background-color: #ab2727 !important;
  /* background color for non-css3 browsers */
  /* gradient */
  background-image: linear-gradient(top, #ba3737, #a62222) !important;
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ba3737', endColorstr='#a62222') !important;
  /* IE5.5 - 7 */
  -ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ba3737', endColorstr='#a62222') !important;
  /* IE8 */
  background: -ms-linear-gradient(top, #ba3737, #a62222) !important;
  /* IE9 */
  background: -moz-linear-gradient(top, #ba3737, #a62222) !important;
  /* Firefox */
  background: -o-linear-gradient(top, #ba3737, #a62222) !important;
  /* Opera 11  */
  background: -webkit-linear-gradient(top, #ba3737, #a62222) !important;
  /* Chrome 11  */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #ba3737), color-stop(1, #a62222)) !important;
  /* Chrome 10, Safari */ }

/* ========== COLUMN STYLE 2  ========== */
/* --- header row 1 ---  */
div.p_table_1_3 div.column_2 li.header_row_1 {
  border-top: 1px solid #c44646;
  border-bottom: 1px solid #810000;
  background-color: #ab2727 !important;
  /* background color for non-css3 browsers */
  /* gradient */
  background-image: linear-gradient(top, #b83636, #a72323) !important;
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#b83636', endColorstr='#a72323') !important;
  /* IE5.5 - 7 */
  -ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#b83636', endColorstr='#a72323') !important;
  /* IE8 */
  background: -ms-linear-gradient(top, #b83636, #a72323) !important;
  /* IE9 */
  background: -moz-linear-gradient(top, #b83636, #a72323) !important;
  /* Firefox */
  background: -o-linear-gradient(top, #b83636, #a72323) !important;
  /* Opera 11  */
  background: -webkit-linear-gradient(top, #b83636, #a72323) !important;
  /* Chrome 11  */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #b83636), color-stop(1, #a72323)) !important;
  /* Chrome 10, Safari */ }

/* --- header row 2 ---  */
div.p_table_1_3 div.column_2 li.header_row_2 {
  border-top: 1px solid #d04848;
  border-bottom: 1px solid #8f1d1d;
  background-color: #ab2727 !important;
  /* background color for non-css3 browsers */
  /* gradient */
  background-image: linear-gradient(top, #ba3737, #a62222) !important;
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ba3737', endColorstr='#a62222') !important;
  /* IE5.5 - 7 */
  -ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ba3737', endColorstr='#a62222') !important;
  /* IE8 */
  background: -ms-linear-gradient(top, #ba3737, #a62222) !important;
  /* IE9 */
  background: -moz-linear-gradient(top, #ba3737, #a62222) !important;
  /* Firefox */
  background: -o-linear-gradient(top, #ba3737, #a62222) !important;
  /* Opera 11  */
  background: -webkit-linear-gradient(top, #ba3737, #a62222) !important;
  /* Chrome 11  */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #ba3737), color-stop(1, #a62222)) !important;
  /* Chrome 10, Safari */ }

/* ========== COLUMN STYLE 3  ========== */
/* --- header row 1 ---  */
div.p_table_1_3 div.column_3 li.header_row_1 {
  border-top: 1px solid #c44646;
  border-bottom: 1px solid #810000;
  background-color: #ab2727 !important;
  /* background color for non-css3 browsers */
  /* gradient */
  background-image: linear-gradient(top, #b83636, #a72323) !important;
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#b83636', endColorstr='#a72323') !important;
  /* IE5.5 - 7 */
  -ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#b83636', endColorstr='#a72323') !important;
  /* IE8 */
  background: -ms-linear-gradient(top, #b83636, #a72323) !important;
  /* IE9 */
  background: -moz-linear-gradient(top, #b83636, #a72323) !important;
  /* Firefox */
  background: -o-linear-gradient(top, #b83636, #a72323) !important;
  /* Opera 11  */
  background: -webkit-linear-gradient(top, #b83636, #a72323) !important;
  /* Chrome 11  */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #b83636), color-stop(1, #a72323)) !important;
  /* Chrome 10, Safari */ }

/* --- header row 2 ---  */
div.p_table_1_3 div.column_3 li.header_row_2 {
  border-top: 1px solid #d04848;
  border-bottom: 1px solid #8f1d1d;
  background-color: #ab2727 !important;
  /* background color for non-css3 browsers */
  /* gradient */
  background-image: linear-gradient(top, #ba3737, #a62222) !important;
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ba3737', endColorstr='#a62222') !important;
  /* IE5.5 - 7 */
  -ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ba3737', endColorstr='#a62222') !important;
  /* IE8 */
  background: -ms-linear-gradient(top, #ba3737, #a62222) !important;
  /* IE9 */
  background: -moz-linear-gradient(top, #ba3737, #a62222) !important;
  /* Firefox */
  background: -o-linear-gradient(top, #ba3737, #a62222) !important;
  /* Opera 11  */
  background: -webkit-linear-gradient(top, #ba3737, #a62222) !important;
  /* Chrome 11  */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #ba3737), color-stop(1, #a62222)) !important;
  /* Chrome 10, Safari */ }

/* ========== COLUMN STYLE 4  ========== */
/* --- header row 1 ---  */
div.p_table_1_3 div.column_4 li.header_row_1 {
  border-top: 1px solid #c44646;
  border-bottom: 1px solid #810000;
  background-color: #ab2727 !important;
  /* background color for non-css3 browsers */
  /* gradient */
  background-image: linear-gradient(top, #b83636, #a72323) !important;
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#b83636', endColorstr='#a72323') !important;
  /* IE5.5 - 7 */
  -ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#b83636', endColorstr='#a72323') !important;
  /* IE8 */
  background: -ms-linear-gradient(top, #b83636, #a72323) !important;
  /* IE9 */
  background: -moz-linear-gradient(top, #b83636, #a72323) !important;
  /* Firefox */
  background: -o-linear-gradient(top, #b83636, #a72323) !important;
  /* Opera 11  */
  background: -webkit-linear-gradient(top, #b83636, #a72323) !important;
  /* Chrome 11  */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #b83636), color-stop(1, #a72323)) !important;
  /* Chrome 10, Safari */ }

/* --- header row 2 ---  */
div.p_table_1_3 div.column_4 li.header_row_2 {
  border-top: 1px solid #d04848;
  border-bottom: 1px solid #8f1d1d;
  background-color: #ab2727 !important;
  /* background color for non-css3 browsers */
  /* gradient */
  background-image: linear-gradient(top, #ba3737, #a62222) !important;
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ba3737', endColorstr='#a62222') !important;
  /* IE5.5 - 7 */
  -ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ba3737', endColorstr='#a62222') !important;
  /* IE8 */
  background: -ms-linear-gradient(top, #ba3737, #a62222) !important;
  /* IE9 */
  background: -moz-linear-gradient(top, #ba3737, #a62222) !important;
  /* Firefox */
  background: -o-linear-gradient(top, #ba3737, #a62222) !important;
  /* Opera 11  */
  background: -webkit-linear-gradient(top, #ba3737, #a62222) !important;
  /* Chrome 11  */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #ba3737), color-stop(1, #a62222)) !important;
  /* Chrome 10, Safari */ }

/* ============ Style 4 ============= */
/* ========== HEADINGS  ========== */
div.p_table_1_4 h1.col1,
div.p_table_1_4 h1.col2,
div.p_table_1_4 h1.col3,
div.p_table_1_4 h1.col4 {
  color: #d9513b !important; }

div.p_table_1_4 h1 span {
  color: #ffba58 !important; }

div.p_table_1_4 h2.col1,
div.p_table_1_4 h2.col2,
div.p_table_1_4 h2.col3,
div.p_table_1_4 h2.col4 {
  color: #878787 !important; }

div.p_table_1_4 h2.caption {
  color: #d9513b !important; }

div.p_table_1_4 h2.caption span {
  color: #ffba58 !important;
  text-shadow: none !important; }

div.p_table_1_4 h3.col1,
div.p_table_1_4 h3.col2,
div.p_table_1_4 h3.col3,
div.p_table_1_4 h3.col4 {
  color: #ffba58 !important; }

/* ========== CAPTION COLUMN  ========== */
/* --- header row 1 ---  */
div.p_table_1_4 div.caption_column li.header_row_1 {
  border-top: 0;
  border-bottom: 1px solid #822c2c;
  background-color: #E9E9E9 !important;
  /* background color for non-css3 browsers */
  /* gradient */
  background-image: linear-gradient(top, #ffffff, #d2d2d2) !important;
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#d2d2d2') !important;
  /* IE5.5 - 7 */
  -ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#d2d2d2') !important;
  /* IE8 */
  background: -ms-linear-gradient(top, #ffffff, #d2d2d2) !important;
  /* IE9 */
  background: -moz-linear-gradient(top, #ffffff, #d2d2d2) !important;
  /* Firefox */
  background: -o-linear-gradient(top, #ffffff, #d2d2d2) !important;
  /* Opera 11  */
  background: -webkit-linear-gradient(top, #ffffff, #d2d2d2) !important;
  /* Chrome 11  */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #ffffff), color-stop(1, #d2d2d2)) !important;
  /* Chrome 10, Safari */ }

/* --- header row 2 ---  */
div.p_table_1_4 div.caption_column li.header_row_2 {
  border-top: 1px solid #c65757;
  border-bottom: 1px solid #451515;
  background-color: #812C2C !important;
  /* background color for non-css3 browsers */
  /* gradient */
  background-image: linear-gradient(top, #ae3a3a, #5f2121) !important;
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ae3a3a', endColorstr='#5f2121') !important;
  /* IE5.5 - 7 */
  -ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ae3a3a', endColorstr='#5f2121') !important;
  /* IE8 */
  background: -ms-linear-gradient(top, #ae3a3a, #5f2121) !important;
  /* IE9 */
  background: -moz-linear-gradient(top, #ae3a3a, #5f2121) !important;
  /* Firefox */
  background: -o-linear-gradient(top, #ae3a3a, #5f2121) !important;
  /* Opera 11  */
  background: -webkit-linear-gradient(top, #ae3a3a, #5f2121) !important;
  /* Chrome 11  */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #ae3a3a), color-stop(1, #5f2121)) !important;
  /* Chrome 10, Safari */ }

/* ========== COLUMN STYLE 1  ========== */
/* --- header row 1 ---  */
div.p_table_1_4 div.column_1 li.header_row_1 {
  border-top: 0;
  border-bottom: 1px solid #822c2c;
  background-color: #E9E9E9 !important;
  /* background color for non-css3 browsers */
  /* gradient */
  background-image: linear-gradient(top, #ffffff, #d2d2d2) !important;
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#d2d2d2') !important;
  /* IE5.5 - 7 */
  -ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#d2d2d2') !important;
  /* IE8 */
  background: -ms-linear-gradient(top, #ffffff, #d2d2d2) !important;
  /* IE9 */
  background: -moz-linear-gradient(top, #ffffff, #d2d2d2) !important;
  /* Firefox */
  background: -o-linear-gradient(top, #ffffff, #d2d2d2) !important;
  /* Opera 11  */
  background: -webkit-linear-gradient(top, #ffffff, #d2d2d2) !important;
  /* Chrome 11  */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #ffffff), color-stop(1, #d2d2d2)) !important;
  /* Chrome 10, Safari */ }

/* --- header row 2 ---  */
div.p_table_1_4 div.column_1 li.header_row_2 {
  border-top: 1px solid #c65757;
  border-bottom: 1px solid #451515;
  background-color: #812C2C !important;
  /* background color for non-css3 browsers */
  /* gradient */
  background-image: linear-gradient(top, #ae3a3a, #5f2121) !important;
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ae3a3a', endColorstr='#5f2121') !important;
  /* IE5.5 - 7 */
  -ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ae3a3a', endColorstr='#5f2121') !important;
  /* IE8 */
  background: -ms-linear-gradient(top, #ae3a3a, #5f2121) !important;
  /* IE9 */
  background: -moz-linear-gradient(top, #ae3a3a, #5f2121) !important;
  /* Firefox */
  background: -o-linear-gradient(top, #ae3a3a, #5f2121) !important;
  /* Opera 11  */
  background: -webkit-linear-gradient(top, #ae3a3a, #5f2121) !important;
  /* Chrome 11  */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #ae3a3a), color-stop(1, #5f2121)) !important;
  /* Chrome 10, Safari */ }

/* ========== COLUMN STYLE 2  ========== */
/* --- header row 1 ---  */
div.p_table_1_4 div.column_2 li.header_row_1 {
  border-top: 0;
  border-bottom: 1px solid #822c2c;
  background-color: #E9E9E9 !important;
  /* background color for non-css3 browsers */
  /* gradient */
  background-image: linear-gradient(top, #ffffff, #d2d2d2) !important;
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#d2d2d2') !important;
  /* IE5.5 - 7 */
  -ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#d2d2d2') !important;
  /* IE8 */
  background: -ms-linear-gradient(top, #ffffff, #d2d2d2) !important;
  /* IE9 */
  background: -moz-linear-gradient(top, #ffffff, #d2d2d2) !important;
  /* Firefox */
  background: -o-linear-gradient(top, #ffffff, #d2d2d2) !important;
  /* Opera 11  */
  background: -webkit-linear-gradient(top, #ffffff, #d2d2d2) !important;
  /* Chrome 11  */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #ffffff), color-stop(1, #d2d2d2)) !important;
  /* Chrome 10, Safari */ }

/* --- header row 2 ---  */
div.p_table_1_4 div.column_2 li.header_row_2 {
  border-top: 1px solid #c65757;
  border-bottom: 1px solid #451515;
  background-color: #812C2C !important;
  /* background color for non-css3 browsers */
  /* gradient */
  background-image: linear-gradient(top, #ae3a3a, #5f2121) !important;
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ae3a3a', endColorstr='#5f2121') !important;
  /* IE5.5 - 7 */
  -ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ae3a3a', endColorstr='#5f2121') !important;
  /* IE8 */
  background: -ms-linear-gradient(top, #ae3a3a, #5f2121) !important;
  /* IE9 */
  background: -moz-linear-gradient(top, #ae3a3a, #5f2121) !important;
  /* Firefox */
  background: -o-linear-gradient(top, #ae3a3a, #5f2121) !important;
  /* Opera 11  */
  background: -webkit-linear-gradient(top, #ae3a3a, #5f2121) !important;
  /* Chrome 11  */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #ae3a3a), color-stop(1, #5f2121)) !important;
  /* Chrome 10, Safari */ }

/* ========== COLUMN STYLE 3  ========== */
/* --- header row 1 ---  */
div.p_table_1_4 div.column_3 li.header_row_1 {
  border-top: 0;
  border-bottom: 1px solid #822c2c;
  background-color: #E9E9E9 !important;
  /* background color for non-css3 browsers */
  /* gradient */
  background-image: linear-gradient(top, #ffffff, #d2d2d2) !important;
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#d2d2d2') !important;
  /* IE5.5 - 7 */
  -ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#d2d2d2') !important;
  /* IE8 */
  background: -ms-linear-gradient(top, #ffffff, #d2d2d2) !important;
  /* IE9 */
  background: -moz-linear-gradient(top, #ffffff, #d2d2d2) !important;
  /* Firefox */
  background: -o-linear-gradient(top, #ffffff, #d2d2d2) !important;
  /* Opera 11  */
  background: -webkit-linear-gradient(top, #ffffff, #d2d2d2) !important;
  /* Chrome 11  */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #ffffff), color-stop(1, #d2d2d2)) !important;
  /* Chrome 10, Safari */ }

/* --- header row 2 ---  */
div.p_table_1_4 div.column_3 li.header_row_2 {
  border-top: 1px solid #c65757;
  border-bottom: 1px solid #451515;
  background-color: #812C2C !important;
  /* background color for non-css3 browsers */
  /* gradient */
  background-image: linear-gradient(top, #ae3a3a, #5f2121) !important;
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ae3a3a', endColorstr='#5f2121') !important;
  /* IE5.5 - 7 */
  -ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ae3a3a', endColorstr='#5f2121') !important;
  /* IE8 */
  background: -ms-linear-gradient(top, #ae3a3a, #5f2121) !important;
  /* IE9 */
  background: -moz-linear-gradient(top, #ae3a3a, #5f2121) !important;
  /* Firefox */
  background: -o-linear-gradient(top, #ae3a3a, #5f2121) !important;
  /* Opera 11  */
  background: -webkit-linear-gradient(top, #ae3a3a, #5f2121) !important;
  /* Chrome 11  */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #ae3a3a), color-stop(1, #5f2121)) !important;
  /* Chrome 10, Safari */ }

/* ========== COLUMN STYLE 4  ========== */
/* --- header row 1 ---  */
div.p_table_1_4 div.column_4 li.header_row_1 {
  border-top: 0;
  border-bottom: 1px solid #822c2c;
  background-color: #E9E9E9 !important;
  /* background color for non-css3 browsers */
  /* gradient */
  background-image: linear-gradient(top, #ffffff, #d2d2d2) !important;
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#d2d2d2') !important;
  /* IE5.5 - 7 */
  -ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#d2d2d2') !important;
  /* IE8 */
  background: -ms-linear-gradient(top, #ffffff, #d2d2d2) !important;
  /* IE9 */
  background: -moz-linear-gradient(top, #ffffff, #d2d2d2) !important;
  /* Firefox */
  background: -o-linear-gradient(top, #ffffff, #d2d2d2) !important;
  /* Opera 11  */
  background: -webkit-linear-gradient(top, #ffffff, #d2d2d2) !important;
  /* Chrome 11  */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #ffffff), color-stop(1, #d2d2d2)) !important;
  /* Chrome 10, Safari */ }

/* --- header row 2 ---  */
div.p_table_1_4 div.column_4 li.header_row_2 {
  border-top: 1px solid #c65757;
  border-bottom: 1px solid #451515;
  background-color: #812C2C !important;
  /* background color for non-css3 browsers */
  /* gradient */
  background-image: linear-gradient(top, #ae3a3a, #5f2121) !important;
  /* W3C */
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ae3a3a', endColorstr='#5f2121') !important;
  /* IE5.5 - 7 */
  -ms-filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ae3a3a', endColorstr='#5f2121') !important;
  /* IE8 */
  background: -ms-linear-gradient(top, #ae3a3a, #5f2121) !important;
  /* IE9 */
  background: -moz-linear-gradient(top, #ae3a3a, #5f2121) !important;
  /* Firefox */
  background: -o-linear-gradient(top, #ae3a3a, #5f2121) !important;
  /* Opera 11  */
  background: -webkit-linear-gradient(top, #ae3a3a, #5f2121) !important;
  /* Chrome 11  */
  background: -webkit-gradient(linear, left top, left bottom, color-stop(0, #ae3a3a), color-stop(1, #5f2121)) !important;
  /* Chrome 10, Safari */ }

/* ============ Style 5 ============= */
/* ========== HEADINGS  ========== */
div.p_table_1_5 h1.col1,
div.p_table_1_5 h1.col2,
div.p_table_1_5 h1.col3,
div.p_table_1_5 h1.col4 {
  color: #ffffff !important; }

div.p_table_1_5 h1 span {
  color: #ffffff !important; }

div.p_table_1_5 h2.col1,
div.p_table_1_5 h2.col2,
div.p_table_1_5 h2.col3,
div.p_table_1_5 h2.col4 {
  color: #ffffff !important; }

div.p_table_1_5 h2.caption {
  color: #ef9a36 !important; }

div.p_table_1_5 h2.caption span {
  color: #f6ba18 !important;
  text-shadow: none !important; }

div.p_table_1_5 h3.col1,
div.p_table_1_5 h3.col2,
div.p_table_1_5 h3.col3,
div.p_table_1_5 h3.col4 {
  color: #ffffff !important; }

/* ========== CAPTION COLUMN  ========== */
/* --- header row 1 ---  */
div.p_table_1_5 div.caption_column li.header_row_1 {
  border-top: 0;
  background: #ffffff !important; }

/* --- header row 2 ---  */
div.p_table_1_5 div.caption_column li.header_row_2 {
  background: #ffffff !important; }

/* ========== COLUMN STYLE 1  ========== */
/* --- header row 1 ---  */
div.p_table_1_5 div.column_1 li.header_row_1 {
  border-top: 0;
  background: #e18416 !important; }

/* --- header row 2 ---  */
div.p_table_1_5 div.column_1 li.header_row_2 {
  background: #ef9a36 !important; }

/* ========== COLUMN STYLE 2  ========== */
/* --- header row 1 ---  */
div.p_table_1_5 div.column_2 li.header_row_1 {
  border-top: 0;
  background: #e9aa00 !important; }

/* --- header row 2 ---  */
div.p_table_1_5 div.column_2 li.header_row_2 {
  background: #f6ba18 !important; }

/* ========== COLUMN STYLE 3  ========== */
/* --- header row 1 ---  */
div.p_table_1_5 div.column_3 li.header_row_1 {
  background: #839c0e !important; }

/* --- header row 2 ---  */
div.p_table_1_5 div.column_3 li.header_row_2 {
  background: #94ac26 !important; }

/* ========== COLUMN STYLE 4  ========== */
/* --- header row 1 ---  */
div.p_table_1_5 div.column_4 li.header_row_1 {
  background: #418520 !important; }

/* --- header row 2 ---  */
div.p_table_1_5 div.column_4 li.header_row_2 {
  background: #579e34 !important; }

/* ============ Style 6 ============= */
/* ========== HEADINGS  ========== */
div.p_table_1_6 h1.col1,
div.p_table_1_6 h1.col2,
div.p_table_1_6 h1.col3,
div.p_table_1_6 h1.col4 {
  color: #da4300 !important; }

div.p_table_1_6 h1 span {
  color: #da4300 !important; }

div.p_table_1_6 h2.col1,
div.p_table_1_6 h2.col2,
div.p_table_1_6 h2.col3,
div.p_table_1_6 h2.col4 {
  color: #ffffff !important; }

div.p_table_1_6 h2.caption {
  color: #da4300 !important; }

div.p_table_1_6 h2.caption span {
  color: #ffffff !important;
  text-shadow: none !important; }

div.p_table_1_6 h3.col1,
div.p_table_1_6 h3.col2,
div.p_table_1_6 h3.col3,
div.p_table_1_6 h3.col4 {
  color: #da4300 !important; }

/* ========== CAPTION COLUMN  ========== */
/* --- header row 1 ---  */
div.p_table_1_6 div.caption_column li.header_row_1 {
  border-top: 0;
  background: #fcc601 !important; }

/* --- header row 2 ---  */
div.p_table_1_6 div.caption_column li.header_row_2 {
  background: #fcc601 !important; }

/* ========== COLUMN STYLE 1  ========== */
/* --- header row 1 ---  */
div.p_table_1_6 div.column_1 li.header_row_1 {
  border-top: 0;
  background: #da4300 !important; }

/* --- header row 2 ---  */
div.p_table_1_6 div.column_1 li.header_row_2 {
  background: #fcc601 !important; }

/* ========== COLUMN STYLE 2  ========== */
/* --- header row 1 ---  */
div.p_table_1_6 div.column_2 li.header_row_1 {
  border-top: 0;
  background: #da4300 !important; }

/* --- header row 2 ---  */
div.p_table_1_6 div.column_2 li.header_row_2 {
  background: #fcc601 !important; }

/* ========== COLUMN STYLE 3  ========== */
/* --- header row 1 ---  */
div.p_table_1_6 div.column_3 li.header_row_1 {
  border-top: 0;
  background: #da4300 !important; }

/* --- header row 2 ---  */
div.p_table_1_6 div.column_3 li.header_row_2 {
  background: #fcc601 !important; }

/* ========== COLUMN STYLE 4  ========== */
/* --- header row 1 ---  */
div.p_table_1_6 div.column_4 li.header_row_1 {
  border-top: 0;
  background: #da4300 !important; }

/* --- header row 2 ---  */
div.p_table_1_6 div.column_4 li.header_row_2 {
  background: #fcc601 !important; }

/* ============ Style 7 ============= */
/* ========== HEADINGS  ========== */
div.p_table_1_7 h1.col1 {
  color: #faab00 !important; }

div.p_table_1_7 h1.col2 {
  color: #9bba0d !important; }

div.p_table_1_7 h1.col3 {
  color: #539a2d !important; }

div.p_table_1_7 h1.col4 {
  color: #268061 !important; }

div.p_table_1_7 h1.col1 span {
  color: #faab00 !important; }

div.p_table_1_7 h1.col2 span {
  color: #9bba0d !important; }

div.p_table_1_7 h1.col3 span {
  color: #539a2d !important; }

div.p_table_1_7 h1.col4 span {
  color: #268061 !important; }

div.p_table_1_7 h2.col1,
div.p_table_1_7 h2.col2,
div.p_table_1_7 h2.col3,
div.p_table_1_7 h2.col4 {
  color: #ffffff !important; }

div.p_table_1_7 h2.caption {
  color: #faab00 !important; }

div.p_table_1_7 h2.caption span {
  color: #9bba0d !important;
  text-shadow: none !important; }

div.p_table_1_7 h3.col1 {
  color: #faab00 !important; }

div.p_table_1_7 h3.col2 {
  color: #9bba0d !important; }

div.p_table_1_7 h3.col3 {
  color: #539a2d !important; }

div.p_table_1_7 h3.col4 {
  color: #268061 !important; }

/* ========== CAPTION COLUMN  ========== */
/* --- header row 1 ---  */
div.p_table_1_7 div.caption_column li.header_row_1 {
  border-top: 0;
  background: #ffffff !important; }

/* --- header row 2 ---  */
div.p_table_1_7 div.caption_column li.header_row_2 {
  background: #ffffff !important; }

/* ========== COLUMN STYLE 1  ========== */
/* --- header row 1 ---  */
div.p_table_1_7 div.column_1 li.header_row_1 {
  border-top: 0;
  background: #faab00 !important; }

/* --- header row 2 ---  */
div.p_table_1_7 div.column_1 li.header_row_2 {
  background: #ffffff !important; }

/* ========== COLUMN STYLE 2  ========== */
/* --- header row 1 ---  */
div.p_table_1_7 div.column_2 li.header_row_1 {
  border-top: 0;
  background: #9bba0d !important; }

/* --- header row 2 ---  */
div.p_table_1_7 div.column_2 li.header_row_2 {
  background: #ffffff !important; }

/* ========== COLUMN STYLE 3  ========== */
/* --- header row 1 ---  */
div.p_table_1_7 div.column_3 li.header_row_1 {
  border-top: 0;
  background: #539a2d !important; }

/* --- header row 2 ---  */
div.p_table_1_7 div.column_3 li.header_row_2 {
  background: #ffffff !important; }

/* ========== COLUMN STYLE 4  ========== */
/* --- header row 1 ---  */
div.p_table_1_7 div.column_4 li.header_row_1 {
  border-top: 0;
  background: #268061 !important; }

/* --- header row 2 ---  */
div.p_table_1_7 div.column_4 li.header_row_2 {
  background: #ffffff !important; }

/* ============ Style 8 ============= */
/* ========== HEADINGS  ========== */
div.p_table_1_8 h1.col1,
div.p_table_1_8 h1.col2,
div.p_table_1_8 h1.col3,
div.p_table_1_8 h1.col4 {
  color: #d9513b !important; }

div.p_table_1_8 h1 span {
  color: #ffba58 !important; }

div.p_table_1_8 h2.col1,
div.p_table_1_8 h2.col2,
div.p_table_1_8 h2.col3,
div.p_table_1_8 h2.col4 {
  color: #d9513b !important; }

div.p_table_1_8 h2.caption {
  color: #d9513b !important; }

div.p_table_1_8 h2.caption span {
  color: #ffba58 !important;
  text-shadow: none !important; }

div.p_table_1_8 h3.col1,
div.p_table_1_8 h3.col2,
div.p_table_1_8 h3.col3,
div.p_table_1_8 h3.col4 {
  color: #ffba58 !important; }

/* ========== CAPTION COLUMN  ========== */
/* --- header row 1 ---  */
div.p_table_1_8 div.caption_column li.header_row_1 {
  border-top: 0;
  background: #752828 !important; }

/* --- header row 2 ---  */
div.p_table_1_8 div.caption_column li.header_row_2 {
  background: #752828 !important; }

/* ========== COLUMN STYLE 1  ========== */
/* --- header row 1 ---  */
div.p_table_1_8 div.column_1 li.header_row_1 {
  border-top: 0;
  background: #ffca64 !important; }

/* --- header row 2 ---  */
div.p_table_1_8 div.column_1 li.header_row_2 {
  background: #802b2b !important; }

/* ========== COLUMN STYLE 2  ========== */
/* --- header row 1 ---  */
div.p_table_1_8 div.column_2 li.header_row_1 {
  border-top: 0;
  background: #ffba58 !important; }

/* --- header row 2 ---  */
div.p_table_1_8 div.column_2 li.header_row_2 {
  background: #752828 !important; }

/* ========== COLUMN STYLE 3  ========== */
/* --- header row 1 ---  */
div.p_table_1_8 div.column_3 li.header_row_1 {
  border-top: 0;
  background: #ffca64 !important; }

/* --- header row 2 ---  */
div.p_table_1_8 div.column_3 li.header_row_2 {
  background: #802b2b !important; }

/* ========== COLUMN STYLE 4  ========== */
/* --- header row 1 ---  */
div.p_table_1_8 div.column_4 li.header_row_1 {
  border-top: 0;
  background: #ffba58 !important; }

/* --- header row 2 ---  */
div.p_table_1_8 div.column_4 li.header_row_2 {
  background: #752828 !important; }

/* ============ Style 9 ============= */
/* ========== HEADINGS  ========== */
div.p_table_1_9 h1.col1,
div.p_table_1_9 h1.col2,
div.p_table_1_9 h1.col3,
div.p_table_1_9 h1.col4 {
  color: #ffffff !important; }

div.p_table_1_9 h1 span {
  color: #ffffff !important; }

div.p_table_1_9 h2.col1,
div.p_table_1_9 h2.col2,
div.p_table_1_9 h2.col3,
div.p_table_1_9 h2.col4 {
  color: #ffffff !important; }

div.p_table_1_9 h2.caption {
  color: #999999 !important; }

div.p_table_1_9 h2.caption span {
  color: #999999 !important;
  text-shadow: none !important; }

div.p_table_1_9 h3.col1,
div.p_table_1_9 h3.col2,
div.p_table_1_9 h3.col3,
div.p_table_1_9 h3.col4 {
  color: #ffffff !important; }

/* ========== CAPTION COLUMN  ========== */
/* --- header row 1 ---  */
div.p_table_1_9 div.caption_column li.header_row_1 {
  border-top: 0;
  background: #ffffff !important; }

/* --- header row 2 ---  */
div.p_table_1_9 div.caption_column li.header_row_2 {
  background: #ffffff !important; }

/* ========== COLUMN STYLE 1  ========== */
/* --- header row 1 ---  */
div.p_table_1_9 div.column_1 li.header_row_1 {
  border-top: 0;
  background: #83c145 !important; }

/* --- header row 2 ---  */
div.p_table_1_9 div.column_1 li.header_row_2 {
  background: #96cd56 !important; }

/* ========== COLUMN STYLE 2  ========== */
/* --- header row 1 ---  */
div.p_table_1_9 div.column_2 li.header_row_1 {
  border-top: 0;
  background: #44982b !important; }

/* --- header row 2 ---  */
div.p_table_1_9 div.column_2 li.header_row_2 {
  background: #55a938 !important; }

/* ========== COLUMN STYLE 3  ========== */
/* --- header row 1 ---  */
div.p_table_1_9 div.column_3 li.header_row_1 {
  border-top: 0;
  background: #186f32 !important; }

/* --- header row 2 ---  */
div.p_table_1_9 div.column_3 li.header_row_2 {
  background: #208240 !important; }

/* ========== COLUMN STYLE 4  ========== */
/* --- header row 1 ---  */
div.p_table_1_9 div.column_4 li.header_row_1 {
  border-top: 0;
  background: #0a4945 !important; }

/* --- header row 2 ---  */
div.p_table_1_9 div.column_4 li.header_row_2 {
  background: #0e5b56 !important; }

/* ============ Style 10 ============= */
/* ========== HEADINGS  ========== */
div.p_table_1_10 h1.col1,
div.p_table_1_10 h1.col2,
div.p_table_1_10 h1.col3,
div.p_table_1_10 h1.col4 {
  color: #ffffff !important; }

div.p_table_1_10 h1 span {
  color: #ffffff !important; }

div.p_table_1_10 h2.col1,
div.p_table_1_10 h2.col2,
div.p_table_1_10 h2.col3,
div.p_table_1_10 h2.col4 {
  color: #ffffff !important; }

div.p_table_1_10 h2.caption {
  color: #999999 !important; }

div.p_table_1_10 h2.caption span {
  color: #999999 !important;
  text-shadow: none !important; }

div.p_table_1_10 h3.col1,
div.p_table_1_10 h3.col2,
div.p_table_1_10 h3.col3,
div.p_table_1_10 h3.col4 {
  color: #ffffff !important; }

/* ========== CAPTION COLUMN  ========== */
/* --- header row 1 ---  */
div.p_table_1_10 div.caption_column li.header_row_1 {
  border-top: 0;
  background: #ffffff !important; }

/* --- header row 2 ---  */
div.p_table_1_10 div.caption_column li.header_row_2 {
  background: #ffffff !important; }

/* ========== COLUMN STYLE 1  ========== */
/* --- header row 1 ---  */
div.p_table_1_10 div.column_1 li.header_row_1 {
  border-top: 0;
  background: #52b5d5 !important; }

/* --- header row 2 ---  */
div.p_table_1_10 div.column_1 li.header_row_2 {
  background: #64c3de !important; }

/* ========== COLUMN STYLE 2  ========== */
/* --- header row 1 ---  */
div.p_table_1_10 div.column_2 li.header_row_1 {
  border-top: 0;
  background: #3591ca !important; }

/* --- header row 2 ---  */
div.p_table_1_10 div.column_2 li.header_row_2 {
  background: #44a3d5 !important; }

/* ========== COLUMN STYLE 3  ========== */
/* --- header row 1 ---  */
div.p_table_1_10 div.column_3 li.header_row_1 {
  border-top: 0;
  background: #1f5f9f !important; }

/* --- header row 2 ---  */
div.p_table_1_10 div.column_3 li.header_row_2 {
  background: #2972b0 !important; }

/* ========== COLUMN STYLE 4  ========== */
/* --- header row 1 ---  */
div.p_table_1_10 div.column_4 li.header_row_1 {
  border-top: 0;
  background: #1a3e7b !important; }

/* --- header row 2 ---  */
div.p_table_1_10 div.column_4 li.header_row_2 {
  background: #234e8e !important; }

/* ============ Style 11 ============= */
/* ========== HEADINGS  ========== */
div.p_table_1_11 h1.col1,
div.p_table_1_11 h1.col2,
div.p_table_1_11 h1.col3,
div.p_table_1_11 h1.col4 {
  color: #ffffff !important; }

div.p_table_1_11 h1 span {
  color: #ffffff !important; }

div.p_table_1_11 h2.col1,
div.p_table_1_11 h2.col2,
div.p_table_1_11 h2.col3,
div.p_table_1_11 h2.col4 {
  color: #ffffff !important; }

div.p_table_1_11 h2.caption {
  color: #999999 !important; }

div.p_table_1_11 h2.caption span {
  color: #999999 !important;
  text-shadow: none !important; }

div.p_table_1_11 h3.col1,
div.p_table_1_11 h3.col2,
div.p_table_1_11 h3.col3,
div.p_table_1_11 h3.col4 {
  color: #ffffff !important; }

/* ========== CAPTION COLUMN  ========== */
/* --- header row 1 ---  */
div.p_table_1_11 div.caption_column li.header_row_1 {
  border-top: 0;
  background: #ffffff !important; }

/* --- header row 2 ---  */
div.p_table_1_11 div.caption_column li.header_row_2 {
  background: #ffffff !important; }

/* ========== COLUMN STYLE 1  ========== */
/* --- header row 1 ---  */
div.p_table_1_11 div.column_1 li.header_row_1 {
  border-top: 0;
  background: #f0b128 !important; }

/* --- header row 2 ---  */
div.p_table_1_11 div.column_1 li.header_row_2 {
  background: #f3bf34 !important; }

/* ========== COLUMN STYLE 2  ========== */
/* --- header row 1 ---  */
div.p_table_1_11 div.column_2 li.header_row_1 {
  border-top: 0;
  background: #ed8000 !important; }

/* --- header row 2 ---  */
div.p_table_1_11 div.column_2 li.header_row_2 {
  background: #f19300 !important; }

/* ========== COLUMN STYLE 3  ========== */
/* --- header row 1 ---  */
div.p_table_1_11 div.column_3 li.header_row_1 {
  border-top: 0;
  background: #d85200 !important; }

/* --- header row 2 ---  */
div.p_table_1_11 div.column_3 li.header_row_2 {
  background: #e06400 !important; }

/* ========== COLUMN STYLE 4  ========== */
/* --- header row 1 ---  */
div.p_table_1_11 div.column_4 li.header_row_1 {
  border-top: 0;
  background: #b5280b !important; }

/* --- header row 2 ---  */
div.p_table_1_11 div.column_4 li.header_row_2 {
  background: #c3350f !important; }

/* ============ Style 12 ============= */
/* ========== HEADINGS  ========== */
div.p_table_1_12 h1.col1,
div.p_table_1_12 h1.col2,
div.p_table_1_12 h1.col3,
div.p_table_1_12 h1.col4 {
  color: #ffffff !important; }

div.p_table_1_12 h1 span {
  color: #ffffff !important; }

div.p_table_1_12 h2.col1,
div.p_table_1_12 h2.col2,
div.p_table_1_12 h2.col3,
div.p_table_1_12 h2.col4 {
  color: #ffffff !important; }

div.p_table_1_12 h2.caption {
  color: #999999 !important; }

div.p_table_1_12 h2.caption span {
  color: #999999 !important;
  text-shadow: none !important; }

div.p_table_1_12 h3.col1,
div.p_table_1_12 h3.col2,
div.p_table_1_12 h3.col3,
div.p_table_1_12 h3.col4 {
  color: #ffffff !important; }

/* ========== CAPTION COLUMN  ========== */
/* --- header row 1 ---  */
div.p_table_1_12 div.caption_column li.header_row_1 {
  border-top: 0;
  background: #ffffff !important; }

/* --- header row 2 ---  */
div.p_table_1_12 div.caption_column li.header_row_2 {
  background: #ffffff !important; }

/* ========== COLUMN STYLE 1  ========== */
/* --- header row 1 ---  */
div.p_table_1_12 div.column_1 li.header_row_1 {
  border-top: 0;
  background: #957c45 !important; }

/* --- header row 2 ---  */
div.p_table_1_12 div.column_1 li.header_row_2 {
  background: #a78f56 !important; }

/* ========== COLUMN STYLE 2  ========== */
/* --- header row 1 ---  */
div.p_table_1_12 div.column_2 li.header_row_1 {
  border-top: 0;
  background: #684b24 !important; }

/* --- header row 2 ---  */
div.p_table_1_12 div.column_2 li.header_row_2 {
  background: #7b5d2f !important; }

/* ========== COLUMN STYLE 3  ========== */
/* --- header row 1 ---  */
div.p_table_1_12 div.column_3 li.header_row_1 {
  border-top: 0;
  background: #ce4e06 !important; }

/* --- header row 2 ---  */
div.p_table_1_12 div.column_3 li.header_row_2 {
  background: #d86008 !important; }

/* ========== COLUMN STYLE 4  ========== */
/* --- header row 1 ---  */
div.p_table_1_12 div.column_4 li.header_row_1 {
  border-top: 0;
  background: #ab250f !important; }

/* --- header row 2 ---  */
div.p_table_1_12 div.column_4 li.header_row_2 {
  background: #ba3114 !important; }

/* ============ MediCenter styles ============= */
/* ========== HEADINGS  ========== */
div.p_table_1_13 h1.col1,
div.p_table_1_13 h1.col2,
div.p_table_1_13 h1.col3,
div.p_table_1_13 h1.col4,
div.p_table_1_14 h1.col1,
div.p_table_1_14 h1.col2,
div.p_table_1_14 h1.col3,
div.p_table_1_14 h1.col4,
div.p_table_1_15 h1.col1,
div.p_table_1_15 h1.col2,
div.p_table_1_15 h1.col3,
div.p_table_1_15 h1.col4,
div.p_table_1_16 h1.col1,
div.p_table_1_16 h1.col2,
div.p_table_1_16 h1.col3,
div.p_table_1_16 h1.col4,
div.p_table_1_17 h1.col1,
div.p_table_1_17 h1.col2,
div.p_table_1_17 h1.col3,
div.p_table_1_17 h1.col4,
div.p_table_1_18 h1.col1,
div.p_table_1_18 h1.col2,
div.p_table_1_18 h1.col3,
div.p_table_1_18 h1.col4 {
  color: #ffffff !important; }

div.p_table_1_13 h1 span,
div.p_table_1_14 h1 span,
div.p_table_1_15 h1 span,
div.p_table_1_16 h1 span,
div.p_table_1_17 h1 span,
div.p_table_1_18 h1 span {
  color: #ffffff !important; }

div.p_table_1_13 h2.col1,
div.p_table_1_13 h2.col2,
div.p_table_1_13 h2.col3,
div.p_table_1_13 h2.col4,
div.p_table_1_14 h2.col1,
div.p_table_1_14 h2.col2,
div.p_table_1_14 h2.col3,
div.p_table_1_14 h2.col4,
div.p_table_1_15 h2.col1,
div.p_table_1_15 h2.col2,
div.p_table_1_15 h2.col3,
div.p_table_1_15 h2.col4,
div.p_table_1_16 h2.col1,
div.p_table_1_16 h2.col2,
div.p_table_1_16 h2.col3,
div.p_table_1_16 h2.col4,
div.p_table_1_17 h2.col1,
div.p_table_1_17 h2.col2,
div.p_table_1_17 h2.col3,
div.p_table_1_17 h2.col4,
div.p_table_1_18 h2.col1,
div.p_table_1_18 h2.col2,
div.p_table_1_18 h2.col3,
div.p_table_1_18 h2.col4 {
  color: #ffffff !important; }

div.p_table_1_13 h2.caption,
div.p_table_1_14 h2.caption,
div.p_table_1_15 h2.caption,
div.p_table_1_16 h2.caption,
div.p_table_1_17 h2.caption,
div.p_table_1_18 h2.caption {
  color: #999999 !important; }

div.p_table_1_13 h2.caption span,
div.p_table_1_14 h2.caption span,
div.p_table_1_15 h2.caption span,
div.p_table_1_16 h2.caption span,
div.p_table_1_17 h2.caption span,
div.p_table_1_18 h2.caption span {
  color: #999999 !important;
  text-shadow: none !important; }

div.p_table_1_13 h3.col1,
div.p_table_1_13 h3.col2,
div.p_table_1_13 h3.col3,
div.p_table_1_13 h3.col4,
div.p_table_1_14 h3.col1,
div.p_table_1_14 h3.col2,
div.p_table_1_14 h3.col3,
div.p_table_1_14 h3.col4,
div.p_table_1_15 h3.col1,
div.p_table_1_15 h3.col2,
div.p_table_1_15 h3.col3,
div.p_table_1_15 h3.col4,
div.p_table_1_16 h3.col1,
div.p_table_1_16 h3.col2,
div.p_table_1_16 h3.col3,
div.p_table_1_16 h3.col4,
div.p_table_1_17 h3.col1,
div.p_table_1_17 h3.col2,
div.p_table_1_17 h3.col3,
div.p_table_1_17 h3.col4,
div.p_table_1_18 h3.col1,
div.p_table_1_18 h3.col2,
div.p_table_1_18 h3.col3,
div.p_table_1_18 h3.col4 {
  color: #ffffff !important; }

/* ========== CAPTION COLUMN  ========== */
/* --- header row 1 ---  */
div.p_table_1_13 div.caption_column li.header_row_1,
div.p_table_1_14 div.caption_column li.header_row_1,
div.p_table_1_15 div.caption_column li.header_row_1,
div.p_table_1_16 div.caption_column li.header_row_1,
div.p_table_1_17 div.caption_column li.header_row_1,
div.p_table_1_18 div.caption_column li.header_row_1 {
  border-top: 0;
  background: #ffffff !important; }

/* --- header row 2 ---  */
div.p_table_1_13 div.caption_column li.header_row_2,
div.p_table_1_14 div.caption_column li.header_row_2,
div.p_table_1_15 div.caption_column li.header_row_2,
div.p_table_1_16 div.caption_column li.header_row_2,
div.p_table_1_17 div.caption_column li.header_row_2,
div.p_table_1_18 div.caption_column li.header_row_2 {
  background: #ffffff !important; }

/* ========== COLUMN STYLE 1  ========== */
/* --- header row 1 ---  */
div.p_table_1_13 div.column_1 li.header_row_1,
div.p_table_1_14 div.column_1 li.header_row_1,
div.p_table_1_15 div.column_1 li.header_row_1,
div.p_table_1_16 div.column_1 li.header_row_1,
div.p_table_1_17 div.column_1 li.header_row_1,
div.p_table_1_18 div.column_1 li.header_row_1 {
  border-top: 0; }

/* ========== COLUMN STYLE 2  ========== */
/* --- header row 1 ---  */
div.p_table_1_13 div.column_2 li.header_row_1,
div.p_table_1_14 div.column_2 li.header_row_1,
div.p_table_1_15 div.column_2 li.header_row_1 {
  border-top: 0; }

/* ========== COLUMN STYLE 3  ========== */
/* --- header row 1 ---  */
div.p_table_1_13 div.column_3 li.header_row_1,
div.p_table_1_14 div.column_3 li.header_row_1,
div.p_table_1_15 div.column_3 li.header_row_1,
div.p_table_1_16 div.column_3 li.header_row_1,
div.p_table_1_17 div.column_3 li.header_row_1,
div.p_table_1_18 div.column_3 li.header_row_1 {
  border-top: 0; }

/* ========== COLUMN STYLE 4  ========== */
/* --- header row 1 ---  */
div.p_table_1_13 div.column_4 li.header_row_1,
div.p_table_1_14 div.column_4 li.header_row_1,
div.p_table_1_15 div.column_4 li.header_row_1,
div.p_table_1_16 div.column_4 li.header_row_1,
div.p_table_1_17 div.column_4 li.header_row_1,
div.p_table_1_18 div.column_4 li.header_row_1 {
  border-top: 0; }

/* --- footer row --- */
div.p_table_1_13 li.footer_row,
div.p_table_1_14 li.footer_row,
div.p_table_1_15 li.footer_row,
div.p_table_1_16 li.footer_row,
div.p_table_1_17 li.footer_row,
div.p_table_1_18 li.footer_row {
  background: #F8F8F8 !important; }

/* --- column hovers ---*/
div.p_table_1_13 div.column_1:hover, div.p_table_1_13 div.column_2:hover, div.p_table_1_13 div.column_3:hover, div.p_table_1_13 div.column_4:hover, div.p_table_1_13 div.active_column, div.p_table_1_13.p_table_hover_light div.active_column:hover, div.p_table_1_13.p_table_hover_disabled div.active_column:hover,
div.p_table_1_14 div.column_1:hover, div.p_table_1_14 div.column_2:hover, div.p_table_1_14 div.column_3:hover, div.p_table_1_14 div.column_4:hover, div.p_table_1_14 div.active_column, div.p_table_1_14.p_table_hover_light div.active_column:hover, div.p_table_1_14.p_table_hover_disabled div.active_column:hover,
div.p_table_1_15 div.column_1:hover, div.p_table_1_15 div.column_2:hover, div.p_table_1_15 div.column_3:hover, div.p_table_1_15 div.column_4:hover, div.p_table_1_15 div.active_column, div.p_table_1_15.p_table_hover_light div.active_column:hover, div.p_table_1_15.p_table_hover_disabled div.active_column:hover,
div.p_table_1_16 div.column_1:hover, div.p_table_1_16 div.column_2:hover, div.p_table_1_16 div.column_3:hover, div.p_table_1_16 div.column_4:hover, div.p_table_1_16 div.active_column, div.p_table_1_16.p_table_hover_light div.active_column:hover, div.p_table_1_16.p_table_hover_disabled div.active_column:hover
div.p_table_1_17 div.column_1:hover, div.p_table_1_17 div.column_2:hover, div.p_table_1_17 div.column_3:hover, div.p_table_1_17 div.column_4:hover, div.p_table_1_17 div.active_column, div.p_table_1_17.p_table_hover_light div.active_column:hover, div.p_table_1_17.p_table_hover_disabled div.active_column:hover
div.p_table_1_18 div.column_1:hover, div.p_table_1_18 div.column_2:hover, div.p_table_1_18 div.column_3:hover, div.p_table_1_18 div.column_4:hover, div.p_table_1_18 div.active_column, div.p_table_1_18.p_table_hover_light div.active_column:hover, div.p_table_1_18.p_table_hover_disabled div.active_column:hover {
  box-shadow: 5px 0px 30px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 5px 0px 30px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 5px 0px 30px rgba(0, 0, 0, 0.3); }

div.p_table_1_13.p_table_hover_light div.column_1:hover, div.p_table_1_13.p_table_hover_light div.column_2:hover, div.p_table_1_13.p_table_hover_light div.column_3:hover, div.p_table_1_13.p_table_hover_light div.column_4:hover, div.p_table_1_13.p_table_hover_light div.active_column, div.p_table_1_13.p_table_hover_light div.active_column:hover,
div.p_table_1_14.p_table_hover_light div.column_1:hover, div.p_table_1_14.p_table_hover_light div.column_2:hover, div.p_table_1_14.p_table_hover_light div.column_3:hover, div.p_table_1_14.p_table_hover_light div.column_4:hover, div.p_table_1_14.p_table_hover_light div.active_column, div.p_table_1_14.p_table_hover_light div.active_column:hover,
div.p_table_1_15.p_table_hover_light div.column_1:hover, div.p_table_1_15.p_table_hover_light div.column_2:hover, div.p_table_1_15.p_table_hover_light div.column_3:hover, div.p_table_1_15.p_table_hover_light div.column_4:hover, div.p_table_1_15.p_table_hover_light div.active_column, div.p_table_1_15.p_table_hover_light div.active_column:hover,
div.p_table_1_16.p_table_hover_light div.column_1:hover, div.p_table_1_16.p_table_hover_light div.column_2:hover, div.p_table_1_16.p_table_hover_light div.column_3:hover, div.p_table_1_16.p_table_hover_light div.column_4:hover, div.p_table_1_16.p_table_hover_light div.active_column, div.p_table_1_16.p_table_hover_light div.active_column:hover,
div.p_table_1_17.p_table_hover_light div.column_1:hover, div.p_table_1_17.p_table_hover_light div.column_2:hover, div.p_table_1_17.p_table_hover_light div.column_3:hover, div.p_table_1_17.p_table_hover_light div.column_4:hover, div.p_table_1_17.p_table_hover_light div.active_column, div.p_table_1_17.p_table_hover_light div.active_column:hover,
div.p_table_1_18.p_table_hover_light div.column_1:hover, div.p_table_1_18.p_table_hover_light div.column_2:hover, div.p_table_1_18.p_table_hover_light div.column_3:hover, div.p_table_1_18.p_table_hover_light div.column_4:hover, div.p_table_1_18.p_table_hover_light div.active_column, div.p_table_1_18.p_table_hover_light div.active_column:hover {
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  -webkit-box-shadow: 0 0 20px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 0 20px rgba(0, 0, 0, 0.3); }

/* --- buttons --- */
div.p_table_1_13 a.sign_up,
div.p_table_1_13 a.sign_up:hover,
div.p_table_1_14 a.sign_up,
div.p_table_1_14 a.sign_up:hover,
div.p_table_1_15 a.sign_up,
div.p_table_1_15 a.sign_up:hover,
div.p_table_1_16 a.sign_up,
div.p_table_1_16 a.sign_up:hover,
div.p_table_1_17 a.sign_up,
div.p_table_1_17 a.sign_up:hover,
div.p_table_1_18 a.sign_up,
div.p_table_1_18 a.sign_up:hover {
  box-shadow: none;
  -webkit-box-shadow: none;
  -moz-box-shadow: none;
  text-shadow: none;
  font-weight: normal;
  color: #FFF;
  border-radius: 0;
  -moz-border-radius: 0;
  -webkit-border-radius: 0; }

/* --- radius --- */
div.p_table_1_13 .radius5_topleft,
div.p_table_1_14 .radius5_topleft,
div.p_table_1_15 .radius5_topleft,
div.p_table_1_16 .radius5_topleft,
div.p_table_1_17 .radius5_topleft,
div.p_table_1_18 .radius5_topleft,
div.p_table_1_13 .radius5_topright,
div.p_table_1_14 .radius5_topright,
div.p_table_1_15 .radius5_topright,
div.p_table_1_16 .radius5_topright,
div.p_table_1_17 .radius5_topright,
div.p_table_1_18 .radius5_topright {
  border-radius: 0 !important;
  -moz-border-radius: 0 !important;
  -webkit-border-radius: 0 !important; }

/* --- footer --- */
div.p_table_1_13 li.footer_row,
div.p_table_1_14 li.footer_row,
div.p_table_1_15 li.footer_row,
div.p_table_1_16 li.footer_row,
div.p_table_1_17 li.footer_row,
div.p_table_1_18 li.footer_row {
  border-color: #E0E0E0; }

/* ============ Style 13 ============= */
/* ========== COLUMN STYLE 1  ========== */
/* --- header row 1 ---  */
div.p_table_1_13 div.column_1 li.header_row_1 {
  border: 1px solid #3073a8;
  border-bottom: 1px solid #0c3a5e;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#5590bf), to(#164397));
  background-image: -webkit-linear-gradient(top, #5590bf, #164397);
  background-image: -moz-linear-gradient(top, #5590bf, #164397);
  background-image: -ms-linear-gradient(top, #5590bf, #164397);
  background-image: -o-linear-gradient(top, #5590bf, #164397);
  background-image: linear-gradient(to bottom, #5590bf, #164397);
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#5590bf, endColorstr=#164397); }

/* --- header row 1 ---  */
div.p_table_1_13 .active_column li.header_row_1 {
  border: 1px solid #d6141c !important;
  border-bottom: 1px solid #d11721 !important;
  background-color: #ED1C24;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#f43e45), to(#ED1C24)) !important;
  background-image: -webkit-linear-gradient(top, #f43e45, #ED1C24) !important;
  background-image: -moz-linear-gradient(top, #f43e45, #ED1C24) !important;
  background-image: -ms-linear-gradient(top, #f43e45, #ED1C24) !important;
  background-image: -o-linear-gradient(top, #f43e45, #ED1C24) !important;
  background-image: linear-gradient(to bottom, #f43e45, #ED1C24) !important;
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#f43e45, endColorstr=#ED1C24) !important;
  border-top-left-radius: 5px;
  border-top-right-radius-radius: 5px; }

div.p_table_1_13 div.active_column li.header_row_2 {
  background-color: #ED1C24 !important;
  border-bottom: 1px solid #ED1C24 !important;
  border-right: 1px solid #ED1C24 !important;
  border-top: 1px solid #f93f47 !important;
  border-left: 1px solid #ED1C24 !important; }

/* --- header row 2 ---  */
div.p_table_1_13 div.column_1 li.header_row_2 {
  background-color: #164397;
  border-bottom: 1px solid #164397;
  border-right: 1px solid #164397;
  border-top: 1px solid #2d68a4;
  border-left: 1px solid #1e5399; }

/* --- header row 2 ---  */
div.p_table_1_13 div.column_1:hover li.header_row_2 {
  height: 154px; }

/* ========== COLUMN STYLE 2  ========== */
/* --- header row 1 ---  */
div.p_table_1_13 div.column_2 li.header_row_1 {
  background: #36A6DF !important; }

/* --- header row 2 ---  */
div.p_table_1_13 div.column_2 li.header_row_2 {
  background: #164397 !important; }

/* ========== COLUMN STYLE 3  ========== */
/* --- header row 1 ---  */
div.p_table_1_13 div.column_3 li.header_row_1 {
  background: #164397 !important; }

/* --- header row 2 ---  */
div.p_table_1_13 div.column_3 li.header_row_2 {
  background: #164397 !important; }

/* ========== COLUMN STYLE 4  ========== */
/* --- header row 1 ---  */
div.p_table_1_13 div.column_4 li.header_row_1 {
  background-color: #164397 !important;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#164397), to(#164397)) !important;
  background-image: -webkit-linear-gradient(top, #164397, #164397) !important;
  background-image: -moz-linear-gradient(top, #164397, #164397) !important;
  background-image: -ms-linear-gradient(top, #164397, #164397) !important;
  background-image: -o-linear-gradient(top, #164397, #164397) !important;
  background-image: linear-gradient(to bottom, #164397, #164397) !important;
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#164397, endColorstr=#164397); }

/* --- header row 2 ---  */
div.p_table_1_13 div.column_4 li.header_row_2 {
  background-color: #164397 !important;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#164397), to(#164397)) !important;
  background-image: -webkit-linear-gradient(top, #164397, #164397) !important;
  background-image: -moz-linear-gradient(top, #164397, #164397) !important;
  background-image: -ms-linear-gradient(top, #164397, #164397) !important;
  background-image: -o-linear-gradient(top, #164397, #164397) !important;
  background-image: linear-gradient(to bottom, #164397, #164397) !important;
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#164397, endColorstr=#164397); }

/* --- header row 2 ---  */
div.p_table_1_13 div.column_5 li.header_row_2 {
  background-color: #164397 !important;
  background-image: -webkit-gradient(linear, left top, left bottom, from(#164397), to(#164397)) !important;
  background-image: -webkit-linear-gradient(top, #164397, #164397) !important;
  background-image: -moz-linear-gradient(top, #164397, #164397) !important;
  background-image: -ms-linear-gradient(top, #164397, #164397) !important;
  background-image: -o-linear-gradient(top, #164397, #164397) !important;
  background-image: linear-gradient(to bottom, #164397, #164397) !important;
  filter: progid:DXImageTransform.Microsoft.gradient(GradientType=0, startColorstr=#164397, endColorstr=#164397); }

/* --- buttons --- */
div.p_table_1_13 div.column_1 a.sign_up {
  background: #6ACAED;
  border-color: #6ACAED; }

div.p_table_1_13 div.column_2 a.sign_up {
  background: #42B3E5;
  border-color: #42B3E5; }

div.p_table_1_13 div.column_3 a.sign_up {
  background: #0384CE;
  border-color: #0384CE; }

div.p_table_1_13 div.column_4 a.sign_up {
  background: #3156A3;
  border-color: #3156A3; }

/* ============ Style 14 ============= */
/* ========== COLUMN STYLE 1  ========== */
/* --- header row 1 ---  */
div.p_table_1_14 div.column_1 li.header_row_1 {
  background: #96C442 !important; }

/* --- header row 2 ---  */
div.p_table_1_14 div.column_1 li.header_row_2 {
  background: #A2CC4D !important; }

/* ========== COLUMN STYLE 2  ========== */
/* --- header row 1 ---  */
div.p_table_1_14 div.column_2 li.header_row_1 {
  background: #6CAD31 !important; }

/* --- header row 2 ---  */
div.p_table_1_14 div.column_2 li.header_row_2 {
  background: #7CBA3D !important; }

/* ========== COLUMN STYLE 3  ========== */
/* --- header row 1 ---  */
div.p_table_1_14 div.column_3 li.header_row_1 {
  background: #379234 !important; }

/* --- header row 2 ---  */
div.p_table_1_14 div.column_3 li.header_row_2 {
  background: #43A140 !important; }

/* ========== COLUMN STYLE 4  ========== */
/* --- header row 1 ---  */
div.p_table_1_14 div.column_4 li.header_row_1 {
  background: #00722D !important; }

/* --- header row 2 ---  */
div.p_table_1_14 div.column_4 li.header_row_2 {
  background: #008238 !important; }

/* --- buttons --- */
div.p_table_1_14 div.column_1 a.sign_up {
  background: #A2CC4D;
  border-color: #A2CC4D; }

div.p_table_1_14 div.column_2 a.sign_up {
  background: #7CBA3D;
  border-color: #7CBA3D; }

div.p_table_1_14 div.column_3 a.sign_up {
  background: #43A140;
  border-color: #43A140; }

div.p_table_1_14 div.column_4 a.sign_up {
  background: #008238;
  border-color: #008238; }

/* ============ Style 15 ============= */
/* ========== COLUMN STYLE 1  ========== */
/* --- header row 1 ---  */
div.p_table_1_15 div.column_1 li.header_row_1 {
  background: #FEB80D !important; }

/* --- header row 2 ---  */
div.p_table_1_15 div.column_1 li.header_row_2 {
  background: #FEC110 !important; }

/* ========== COLUMN STYLE 2  ========== */
/* --- header row 1 ---  */
div.p_table_1_15 div.column_2 li.header_row_1 {
  background: #FF9A00 !important; }

/* --- header row 2 ---  */
div.p_table_1_15 div.column_2 li.header_row_2 {
  background: #FFA800 !important; }

/* ========== COLUMN STYLE 3  ========== */
/* --- header row 1 ---  */
div.p_table_1_15 div.column_3 li.header_row_1 {
  background: #EE6800 !important; }

/* --- header row 2 ---  */
div.p_table_1_15 div.column_3 li.header_row_2 {
  background: #F17800 !important; }

/* ========== COLUMN STYLE 4  ========== */
/* --- header row 1 ---  */
div.p_table_1_15 div.column_4 li.header_row_1 {
  background: #C13815 !important; }

/* --- header row 2 ---  */
div.p_table_1_15 div.column_4 li.header_row_2 {
  background: #CB451B !important; }

/* --- buttons --- */
div.p_table_1_15 div.column_1 a.sign_up {
  background: #FEC110;
  border-color: #FEC110; }

div.p_table_1_15 div.column_2 a.sign_up {
  background: #FFA800;
  border-color: #FFA800; }

div.p_table_1_15 div.column_3 a.sign_up {
  background: #F17800;
  border-color: #F17800; }

div.p_table_1_15 div.column_4 a.sign_up {
  background: #CB451B;
  border-color: #CB451B; }

/* ============ Style 16 ============= */
/* ========== COLUMN STYLE 1  ========== */
/* --- header row 1 ---  */
div.p_table_1_16 div.column_1 li.header_row_1 {
  background: #F9814C !important; }

/* --- header row 2 ---  */
div.p_table_1_16 div.column_1 li.header_row_2 {
  background: #FA8E57 !important; }

/* ========== COLUMN STYLE 2  ========== */
/* --- header row 1 ---  */
div.p_table_1_16 div.column_2 li.header_row_1 {
  background: #F0653B !important; }

/* --- header row 2 ---  */
div.p_table_1_16 div.column_2 li.header_row_2 {
  background: #F37548 !important; }

/* ========== COLUMN STYLE 3  ========== */
/* --- header row 1 ---  */
div.p_table_1_16 div.column_3 li.header_row_1 {
  background: #D3442C !important; }

/* --- header row 2 ---  */
div.p_table_1_16 div.column_3 li.header_row_2 {
  background: #DB5237 !important; }

/* ========== COLUMN STYLE 4  ========== */
/* --- header row 1 ---  */
div.p_table_1_16 div.column_4 li.header_row_1 {
  background: #B42A1F !important; }

/* --- header row 2 ---  */
div.p_table_1_16 div.column_4 li.header_row_2 {
  background: #C03427 !important; }

/* --- buttons --- */
div.p_table_1_16 div.column_1 a.sign_up {
  background: #FA8E57;
  border-color: #FA8E57; }

div.p_table_1_16 div.column_2 a.sign_up {
  background: #F37548;
  border-color: #F37548; }

div.p_table_1_16 div.column_3 a.sign_up {
  background: #DB5237;
  border-color: #DB5237; }

div.p_table_1_16 div.column_4 a.sign_up {
  background: #C03427;
  border-color: #C03427; }

/* ============ Style 17 ============= */
/* ========== COLUMN STYLE 1  ========== */
/* --- header row 1 ---  */
div.p_table_1_17 div.column_1 li.header_row_1 {
  background: #35BED0 !important; }

/* --- header row 2 ---  */
div.p_table_1_17 div.column_1 li.header_row_2 {
  background: #3EC7D7 !important; }

/* ========== COLUMN STYLE 2  ========== */
/* --- header row 1 ---  */
div.p_table_1_17 div.column_2 li.header_row_1 {
  background: #00A9C2 !important; }

/* --- header row 2 ---  */
div.p_table_1_17 div.column_2 li.header_row_2 {
  background: #00B6CC !important; }

/* ========== COLUMN STYLE 3  ========== */
/* --- header row 1 ---  */
div.p_table_1_17 div.column_3 li.header_row_1 {
  background: #0087A8 !important; }

/* --- header row 2 ---  */
div.p_table_1_17 div.column_3 li.header_row_2 {
  background: #0097B5 !important; }

/* ========== COLUMN STYLE 4  ========== */
/* --- header row 1 ---  */
div.p_table_1_17 div.column_4 li.header_row_1 {
  background: #005778 !important; }

/* --- header row 2 ---  */
div.p_table_1_17 div.column_4 li.header_row_2 {
  background: #006688 !important; }

/* --- buttons --- */
div.p_table_1_17 div.column_1 a.sign_up {
  background: #3EC7D7;
  border-color: #3EC7D7; }

div.p_table_1_17 div.column_2 a.sign_up {
  background: #00B6CC;
  border-color: #00B6CC; }

div.p_table_1_17 div.column_3 a.sign_up {
  background: #0097B5;
  border-color: #0097B5; }

div.p_table_1_17 div.column_4 a.sign_up {
  background: #006688;
  border-color: #006688; }

/* ============ Style 18 ============= */
/* ========== COLUMN STYLE 1  ========== */
/* --- header row 1 ---  */
div.p_table_1_18 div.column_1 li.header_row_1 {
  background: #A18DCB !important; }

/* --- header row 2 ---  */
div.p_table_1_18 div.column_1 li.header_row_2 {
  background: #AC99D2 !important; }

/* ========== COLUMN STYLE 2  ========== */
/* --- header row 1 ---  */
div.p_table_1_18 div.column_2 li.header_row_1 {
  background: #8177B9 !important; }

/* --- header row 2 ---  */
div.p_table_1_18 div.column_2 li.header_row_2 {
  background: #9187C4 !important; }

/* ========== COLUMN STYLE 3  ========== */
/* --- header row 1 ---  */
div.p_table_1_18 div.column_3 li.header_row_1 {
  background: #5959A6 !important; }

/* --- header row 2 ---  */
div.p_table_1_18 div.column_3 li.header_row_2 {
  background: #6969B3 !important; }

/* ========== COLUMN STYLE 4  ========== */
/* --- header row 1 ---  */
div.p_table_1_18 div.column_4 li.header_row_1 {
  background: #323F84 !important; }

/* --- header row 2 ---  */
div.p_table_1_18 div.column_4 li.header_row_2 {
  background: #3E4C94 !important; }

/* --- buttons --- */
div.p_table_1_18 div.column_1 a.sign_up {
  background: #AC99D2;
  border-color: #AC99D2; }

div.p_table_1_18 div.column_2 a.sign_up {
  background: #9187C4;
  border-color: #9187C4; }

div.p_table_1_18 div.column_3 a.sign_up {
  background: #6969B3;
  border-color: #6969B3; }

div.p_table_1_18 div.column_4 a.sign_up {
  background: #3E4C94;
  border-color: #3E4C94; }

/* --- vertical align --- */
div.p_table_1 li span.css3_grid_vertical_align_table {
  display: table;
  width: 100%;
  height: 100%;
  padding: 0 !important; }

div.p_table_1 li span.css3_grid_vertical_align {
  display: table-cell;
  vertical-align: middle;
  padding: 0 !important; }

/* ========== NAVIGATION ARROWS  ========== */
.css3_grid_slider_container {
  /*display: table-row;*/
  border-collapse: collapse; }

.css3_grid_slider_container div.p_table_1, .css3_grid_slider_container div.p_table_2 {
  display: table-cell; }

.css3_grid_arrow_area {
  display: table-cell;
  height: 100%;
  vertical-align: middle;
  padding: 0 20px; }

a.css3_grid_slide_button_prev, a.css3_grid_slide_button_next {
  float: left;
  background-image: url("../img/navigation_map.png") !important;
  background-repeat: no-repeat;
  background-position: 0 0;
  border: none;
  outline: none; }

a.css3_grid_slide_button_prev:hover, a.css3_grid_slide_button_next:hover {
  text-decoration: none !important;
  border: none; }

/* --- style 1 --- */
a.css3_grid_slide_button_prev.css3_grid_slide_button_style1,
a.css3_grid_slide_button_next.css3_grid_slide_button_style1 {
  width: 21px;
  height: 21px; }

a.css3_grid_slide_button_next.css3_grid_slide_button_style1 {
  background-position: -21px 0; }

a.css3_grid_slide_button_prev.css3_grid_slide_button_style1:hover {
  background-position: 0 -21px; }

a.css3_grid_slide_button_next.css3_grid_slide_button_style1:hover {
  background-position: -21px -21px; }

/* --- style 2 --- */
a.css3_grid_slide_button_prev.css3_grid_slide_button_style2,
a.css3_grid_slide_button_next.css3_grid_slide_button_style2,
a.css3_grid_slide_button_prev.css3_grid_slide_button_style4,
a.css3_grid_slide_button_next.css3_grid_slide_button_style4 {
  width: 29px;
  height: 29px; }

a.css3_grid_slide_button_prev.css3_grid_slide_button_style2 {
  background-position: 0 -52px; }

a.css3_grid_slide_button_next.css3_grid_slide_button_style2 {
  background-position: -29px -52px; }

a.css3_grid_slide_button_prev.css3_grid_slide_button_style2:hover {
  background-position: 0 -81px; }

a.css3_grid_slide_button_next.css3_grid_slide_button_style2:hover {
  background-position: -29px -81px; }

/* --- style 3 --- */
a.css3_grid_slide_button_prev.css3_grid_slide_button_style3,
a.css3_grid_slide_button_next.css3_grid_slide_button_style3 {
  width: 25px;
  height: 49px; }

a.css3_grid_slide_button_prev.css3_grid_slide_button_style3 {
  background-position: 0 -120px; }

a.css3_grid_slide_button_next.css3_grid_slide_button_style3 {
  background-position: -25px -120px; }

a.css3_grid_slide_button_prev.css3_grid_slide_button_style3:hover {
  background-position: 0 -169px; }

a.css3_grid_slide_button_next.css3_grid_slide_button_style3:hover {
  background-position: -25px -169px; }

/* --- style 4 --- */
a.css3_grid_slide_button_prev.css3_grid_slide_button_style4 {
  background-position: 0 -228px; }

a.css3_grid_slide_button_next.css3_grid_slide_button_style4 {
  background-position: -29px -228px; }

a.css3_grid_slide_button_prev.css3_grid_slide_button_style4:hover {
  background-position: 0 -257px; }

a.css3_grid_slide_button_next.css3_grid_slide_button_style4:hover {
  background-position: -29px -257px; }

/* --- style 5 --- */
a.css3_grid_slide_button_prev.css3_grid_slide_button_style5,
a.css3_grid_slide_button_next.css3_grid_slide_button_style5 {
  width: 24px;
  height: 47px; }

a.css3_grid_slide_button_prev.css3_grid_slide_button_style5 {
  background-position: 0 -296px; }

a.css3_grid_slide_button_next.css3_grid_slide_button_style5 {
  background-position: -24px -296px; }

a.css3_grid_slide_button_prev.css3_grid_slide_button_style5:hover {
  background-position: 0 -343px; }

a.css3_grid_slide_button_next.css3_grid_slide_button_style5:hover {
  background-position: -24px -343px; }

/* --- style 6 --- */
a.css3_grid_slide_button_prev.css3_grid_slide_button_style6,
a.css3_grid_slide_button_next.css3_grid_slide_button_style6 {
  width: 41px;
  height: 41px; }

a.css3_grid_slide_button_prev.css3_grid_slide_button_style6 {
  background-position: 0 -400px; }

a.css3_grid_slide_button_next.css3_grid_slide_button_style6 {
  background-position: -41px -400px; }

a.css3_grid_slide_button_prev.css3_grid_slide_button_style6:hover {
  background-position: 0 -441px; }

a.css3_grid_slide_button_next.css3_grid_slide_button_style6:hover {
  background-position: -41px -441px; }

/* --- style 7 --- */
a.css3_grid_slide_button_prev.css3_grid_slide_button_style7,
a.css3_grid_slide_button_next.css3_grid_slide_button_style7,
a.css3_grid_slide_button_prev.css3_grid_slide_button_style8,
a.css3_grid_slide_button_next.css3_grid_slide_button_style8,
a.css3_grid_slide_button_prev.css3_grid_slide_button_style9,
a.css3_grid_slide_button_next.css3_grid_slide_button_style9,
a.css3_grid_slide_button_prev.css3_grid_slide_button_style10,
a.css3_grid_slide_button_next.css3_grid_slide_button_style10 {
  width: 35px;
  height: 35px; }

a.css3_grid_slide_button_prev.css3_grid_slide_button_style7 {
  background-position: 0 -492px; }

a.css3_grid_slide_button_next.css3_grid_slide_button_style7 {
  background-position: -35px -492px; }

a.css3_grid_slide_button_prev.css3_grid_slide_button_style7:hover {
  background-position: 0 -527px; }

a.css3_grid_slide_button_next.css3_grid_slide_button_style7:hover {
  background-position: -35px -527px; }

/* --- style 8 --- */
a.css3_grid_slide_button_prev.css3_grid_slide_button_style8 {
  background-position: 0 -572px; }

a.css3_grid_slide_button_next.css3_grid_slide_button_style8 {
  background-position: -35px -572px; }

a.css3_grid_slide_button_prev.css3_grid_slide_button_style8:hover {
  background-position: 0 -607px; }

a.css3_grid_slide_button_next.css3_grid_slide_button_style8:hover {
  background-position: -35px -607px; }

/* --- style 9 --- */
a.css3_grid_slide_button_prev.css3_grid_slide_button_style9 {
  background-position: 0 -652px; }

a.css3_grid_slide_button_next.css3_grid_slide_button_style9 {
  background-position: -35px -652px; }

a.css3_grid_slide_button_prev.css3_grid_slide_button_style9:hover {
  background-position: 0 -687px; }

a.css3_grid_slide_button_next.css3_grid_slide_button_style9:hover {
  background-position: -35px -687px; }

/* --- style 10 --- */
a.css3_grid_slide_button_prev.css3_grid_slide_button_style10 {
  background-position: 0 -732px; }

a.css3_grid_slide_button_next.css3_grid_slide_button_style10 {
  background-position: -35px -732px; }

a.css3_grid_slide_button_prev.css3_grid_slide_button_style10:hover {
  background-position: 0 -767px; }

a.css3_grid_slide_button_next.css3_grid_slide_button_style10:hover {
  background-position: -35px -767px; }

/* ========== PAGINATION  ========== */
.css3_grid_pagination {
  text-align: center;
  padding: 20px 0; }

.css3_grid_pagination span {
  display: none; }

.css3_grid_pagination a {
  display: inline-block;
  background-image: url("../img/navigation_map.png") !important;
  background-repeat: no-repeat;
  margin-left: 3px;
  border: none; }

.css3_grid_pagination a:hover {
  border: none; }

.css3_grid_pagination a:first-child {
  margin-left: 0; }

.css3_grid_pagination.css3_grid_pagination_style1 a {
  width: 9px;
  height: 9px;
  background-position: 0 -812px; }

.css3_grid_pagination.css3_grid_pagination_style1 a:hover,
.css3_grid_pagination.css3_grid_pagination_style1 a.selected {
  background-position: 0 -821px; }

.css3_grid_pagination.css3_grid_pagination_style2 a {
  width: 11px;
  height: 11px;
  background-position: -19px -812px; }

.css3_grid_pagination.css3_grid_pagination_style2 a:hover,
.css3_grid_pagination.css3_grid_pagination_style2 a.selected {
  background-position: -19px -823px; }

.css3_grid_pagination.css3_grid_pagination_style3 a {
  width: 20px;
  height: 3px;
  background-position: -40px -812px; }

.css3_grid_pagination.css3_grid_pagination_style3 a:hover,
.css3_grid_pagination.css3_grid_pagination_style3 a.selected {
  background-position: -40px -815px; }

/* ========== HIDDEN ROW  ========== */
div.p_table_1 li.css3_grid_hidden_row {
  opacity: 1;
  -moz-transition: all 0.25s cubic-bezier(0.35, 0, 0.35, 1);
  /* FF4+ */
  -o-transition: all 0.25s cubic-bezier(0.35, 0, 0.35, 1);
  /* Opera 10.5+ */
  -webkit-transition: all 0.25s cubic-bezier(0.35, 0, 0.35, 1);
  /* Saf3.2+, Chrome */
  -ms-transition: all 0.25s cubic-bezier(0.35, 0, 0.35, 1);
  /* IE9 */
  transition: all 0.25s cubic-bezier(0.35, 0, 0.35, 1);
  /* W3C */ }

div.p_table_1.css3_grid_clearfix div li.css3_grid_hidden_row.css3_grid_hide,
div.p_table_1.css3_grid_clearfix div:hover li.css3_grid_hidden_row.css3_grid_hide {
  opacity: 0;
  height: 0 !important;
  padding: 0 !important; }

div.p_table_1 .css3_grid_hidden_rows_control {
  clear: both;
  float: left;
  width: 100%;
  margin-top: 20px !important; }

.css3_grid_hidden_rows_control .css3_grid_hide {
  display: none; }

div.p_table_1 .css3_grid_hidden_rows_control span {
  font-family: arial;
  font-weight: bold !important;
  color: #444444 !important; }

.css3_grid_admin_info .p_table_1 {
  display: inline;
  float: left;
  width: 22px;
  visibility: hidden; }

/* ========== PRICING CYCLE  ========== */
.pricing-cycle-wrapper {
  width: 100%;
  margin: 0 0 30px 0 !important; }

.pricing-cycle-navigation {
  margin: 0 auto 0 0;
  width: 190px;
  height: auto;
  display: block;
  padding: 15px 19px !important;
  color: #FFFFFF;
  cursor: pointer;
  position: relative;
  border: 1px solid #d3d3d3;
  box-sizing: content-box;
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  color: #444444;
  box-shadow: 0px 2px 0px rgba(0, 0, 0, 0.05);
  background: -webkit-linear-gradient(#FFFFFF, #F5F5F5);
  background: -o-linear-gradient(#FFFFFF, #F5F5F5);
  background: -moz-linear-gradient(#FFFFFF, #F5F5F5);
  background: linear-gradient(#FFFFFF, #F5F5F5);
  z-index: 102; }

.pricing-cycle-navigation.css3_grid_center {
  margin-left: auto;
  margin-right: auto; }

.pricing-cycle-navigation.css3_grid_right {
  margin-left: auto;
  margin-right: 0; }

.pricing-cycle-navigation:hover {
  background-color: #FFF;
  color: #34495E;
  box-shadow: none;
  background-image: none;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-bottom-color: transparent; }

.pricing-cycle-navigation.css3_grid_hide:hover {
  background: -webkit-linear-gradient(#FFFFFF, #F5F5F5);
  background: -o-linear-gradient(#FFFFFF, #F5F5F5);
  background: -moz-linear-gradient(#FFFFFF, #F5F5F5);
  background: linear-gradient(#FFFFFF, #F5F5F5);
  color: #FFFFFF;
  box-shadow: 0px 2px 0px rgba(0, 0, 0, 0.05);
  border: 1px solid #d3d3d3; }

.pricing-cycle-wrapper label {
  color: #444;
  display: inline !important;
  font-family: Arial;
  font-size: 14px !important;
  font-weight: normal !important; }

.pricing-cycle-wrapper .tabs_box_navigation_icon {
  position: absolute;
  top: 21px;
  right: 19px;
  border-top: 6px solid #A8B1B6;
  border-right: 5px solid rgba(0, 0, 0, 0);
  border-left: 5px solid rgba(0, 0, 0, 0);
  border-bottom: 5px solid rgba(0, 0, 0, 0);
  display: inline; }

.pricing-cycle-navigation:hover ul.pricing-cycle {
  display: block;
  position: absolute;
  top: 46px;
  width: 228px;
  background: #FFF;
  border: 1px solid #E8E8E8;
  padding: 0 0 5px !important;
  list-style: none !important;
  margin: 0 !important;
  left: -1px;
  border-top: none;
  z-index: 999; }

.pricing-cycle-navigation.css3_grid_hide:hover ul.pricing-cycle {
  display: none; }

ul.pricing-cycle {
  display: none;
  margin: 0 auto; }

ul.pricing-cycle li {
  width: 218px;
  height: auto;
  background-color: #fff;
  padding: 0 5px !important;
  list-style: none !important;
  margin: 0 !important;
  float: left;
  position: relative; }

ul.pricing-cycle li a {
  color: #444 !important;
  text-decoration: none;
  border: none;
  background: #FFF;
  padding: 12px 14px;
  font-size: 14px;
  font-weight: normal;
  font-family: arial;
  display: block;
  transition: none !important; }

ul.pricing-cycle li a:hover,
ul.pricing-cycle li a.selected {
  background-color: #00A27C;
  color: #FFF !important;
  font-weight: normal; }

div.p_table_1_1 ul.pricing-cycle li a:hover,
div.p_table_1_1 ul.pricing-cycle li a.selected {
  background-color: #2A2A2A; }

div.p_table_1_2 ul.pricing-cycle li a:hover,
div.p_table_1_2 ul.pricing-cycle li a.selected {
  background-color: #DA4300; }

div.p_table_1_3 ul.pricing-cycle li a:hover,
div.p_table_1_3 ul.pricing-cycle li a.selected {
  background-color: #B02C2C; }

div.p_table_1_4 ul.pricing-cycle li a:hover,
div.p_table_1_4 ul.pricing-cycle li a.selected {
  background-color: #872D2D; }

div.p_table_1_5 ul.pricing-cycle li a:hover,
div.p_table_1_5 ul.pricing-cycle li a.selected {
  background-color: #F6BA18; }

div.p_table_1_6 ul.pricing-cycle li a:hover,
div.p_table_1_6 ul.pricing-cycle li a.selected {
  background-color: #DA4300; }

div.p_table_1_7 ul.pricing-cycle li a:hover,
div.p_table_1_7 ul.pricing-cycle li a.selected {
  background-color: #9BBA0D; }

div.p_table_1_8 ul.pricing-cycle li a:hover,
div.p_table_1_8 ul.pricing-cycle li a.selected {
  background-color: #802B2B; }

div.p_table_1_9 ul.pricing-cycle li a:hover,
div.p_table_1_9 ul.pricing-cycle li a.selected {
  background-color: #55A938; }

div.p_table_1_10 ul.pricing-cycle li a:hover,
div.p_table_1_10 ul.pricing-cycle li a.selected {
  background-color: #44A3D5; }

div.p_table_1_11 ul.pricing-cycle li a:hover,
div.p_table_1_11 ul.pricing-cycle li a.selected {
  background-color: #F19300; }

div.p_table_1_12 ul.pricing-cycle li a:hover,
div.p_table_1_12 ul.pricing-cycle li a.selected {
  background-color: #D86008; }

div.p_table_1_13 ul.pricing-cycle li a:hover,
div.p_table_1_13 ul.pricing-cycle li a.selected {
  background-color: #36A6DF; }

div.p_table_1_14 ul.pricing-cycle li a:hover,
div.p_table_1_14 ul.pricing-cycle li a.selected {
  background-color: #6CAD31; }

div.p_table_1_15 ul.pricing-cycle li a:hover,
div.p_table_1_15 ul.pricing-cycle li a.selected {
  background-color: #CB451B; }

div.p_table_1_16 ul.pricing-cycle li a:hover,
div.p_table_1_16 ul.pricing-cycle li a.selected {
  background-color: #F0653B; }

div.p_table_1_17 ul.pricing-cycle li a:hover,
div.p_table_1_17 ul.pricing-cycle li a.selected {
  background-color: #00A9C2; }

div.p_table_1_18 ul.pricing-cycle li a:hover,
div.p_table_1_18 ul.pricing-cycle li a.selected {
  background-color: #8177B9; }

div.p_table_1#medicenter_blue h2, div.p_table_1#medicenter_blue h2 span {
  font-family: 'Oswald' !important;
  font-weight: 600 !important;
  font-size: 24px !important; }

div.p_table_1#medicenter_blue h1, div.p_table_1#medicenter_blue h1 span {
  font-family: 'Oswald' !important;
  font-weight: 600 !important;
  font-size: 30px !important; }

@media screen and (max-width: 1009px) {
  div.p_table_1#medicenter_blue h2, div.p_table_1#medicenter_blue h2 span {
    font-size: 22px !important; } }
@media screen and (max-width: 767px) {
  div.p_table_responsive#medicenter_blue div.column_0_responsive {
    width: 100% !important; }

  div.p_table_responsive#medicenter_blue div.column_1_responsive {
    width: 13% !important; }

  div.p_table_responsive#medicenter_blue div.column_2_responsive {
    width: 13% !important; }

  div.p_table_responsive#medicenter_blue div.column_3_responsive {
    width: 13% !important; }

  div.p_table_responsive#medicenter_blue div.column_4_responsive {
    width: 13% !important; }

  div.p_table_responsive#medicenter_blue div.column_5_responsive {
    width: 13% !important; }

  div.p_table_responsive#medicenter_blue li.css3_grid_row_2_responsive {
    height: 49px !important; }

  div.p_table_responsive#medicenter_blue li.css3_grid_row_3_responsive {
    height: 49px !important; }

  div.p_table_responsive#medicenter_blue li.css3_grid_row_4_responsive {
    height: 31px !important; }

  div.p_table_responsive#medicenter_blue li.css3_grid_row_5_responsive {
    height: 31px !important; }

  div.p_table_responsive#medicenter_blue li.css3_grid_row_6_responsive {
    height: 31px !important; }

  div.p_table_responsive#medicenter_blue li.css3_grid_row_7_responsive {
    height: 31px !important; }

  div.p_table_responsive#medicenter_blue a.sign_up {
    width: 75px; }

  div.p_table_1#medicenter_blue h2, div.p_table_1#medicenter_blue h2 span {
    font-size: 18px !important; }

  div.p_table_1#medicenter_blue h1, div.p_table_1#medicenter_blue h1 span {
    font-size: 42px !important; } }
@media screen and (max-width: 479px) {
  div.p_table_responsive#medicenter_blue div.column_1_responsive {
    width: 150px !important; }

  div.p_table_responsive#medicenter_blue div.column_2_responsive {
    width: 150px !important; }

  div.p_table_responsive#medicenter_blue div.column_3_responsive {
    width: 150px !important; }

  div.p_table_responsive#medicenter_blue div.column_4_responsive {
    width: 150px !important; }

  div.p_table_responsive#medicenter_blue div.column_5_responsive {
    width: 150px !important; }

  div.p_table_responsive#medicenter_blue li.css3_grid_row_2_responsive {
    height: 55px !important; }

  div.p_table_responsive#medicenter_blue li.css3_grid_row_3_responsive {
    height: 66px !important; }

  div.p_table_responsive#medicenter_blue li.css3_grid_row_4_responsive {
    height: 55px !important; }

  div.p_table_responsive#medicenter_blue li.css3_grid_row_5_responsive {
    height: 55px !important; }

  div.p_table_responsive#medicenter_blue li.css3_grid_row_6_responsive {
    height: 55px !important; }

  div.p_table_responsive#medicenter_blue li.css3_grid_row_7_responsive {
    height: 55px !important; }

  div.p_table_responsive#medicenter_blue a.sign_up {
    width: 70px; }

  div.p_table_1#medicenter_blue li.row_style_1 span, div.p_table_1#medicenter_blue li.row_style_2 span, div.p_table_1#medicenter_blue li.row_style_3 span, div.p_table_1#medicenter_blue li.row_style_4 span {
    font-size: 10px !important; } }
@media screen and (max-width: 479px) {
  #medicenter_blue {
    width: 300px;
    margin-left: 0px; }

  #medicenter_blue li.row_style_1 span, #medicenter_blue li.row_style_2 span, #medicenter_blue li.row_style_3 span, #medicenter_blue li.row_style_4 span {
    padding: 0 !important; } }
.css3_dv {
  float: right;
  padding-right: 15px; }

div.p_table_1 .caption_column li span.css3_grid_vertical_align_table {
  padding: 0 10px 0px 15px !important; }

div.p_table_1 .active_column li:last-child span.css3_grid_vertical_align_table {
  min-height: 40px;
  border-bottom: 1px solid #f2f2f2; }

div.p_table_1 .active_column li:last-child span.css3_grid_vertical_align {
  vertical-align: top;
  border-bottom: 1px solid #f2f2f2;
  height: 40px;
  line-height: 40px;
  padding: 0px;
  display: block; }

div.p_table_1 div.caption_column li.header_row_2 {
  height: 164px !important;
  border-left: 0px !important;
  position: relative; }

div.p_table_1 div.caption_column li.header_row_2:before {
  height: 1px !important;
  background: rgba(255, 255, 255, 0.2);
  width: 100%;
  content: "";
  position: absolute;
  top: 0px;
  left: 0px; }

div.p_table_1 div.caption_column li {
  border-left: 1px solid #f2f2f2 !important; }

div.p_table_1 div.caption_column li .hi-icon {
  display: inline-block;
  font-size: 0px;
  cursor: pointer;
  margin: 0px 0px 5px 0px;
  background: #37424b;
  width: 80px !important;
  height: 80px !important;
  text-align: center;
  line-height: 80px;
  border-radius: 50%;
  position: relative;
  z-index: 1;
  color: #fff; }

div.p_table_1 div.caption_column li .h3 {
  color: #37424b;
  font-family: 'Oswald';
  font-weight: 300;
  margin-bottom: 15px;
  font-size: 30px !important; }

div.p_table_1 div.caption_column li .css3_grid_vertical_align {
  font-size: 14px !important; }

div.p_table_1 .active_column .css3_grid_row_2 {
  font-weight: bold; }

div.p_table_1 .hi-icon-wrap {
  padding: 0.2em 0 3em !important; }

@font-face {
  font-family: 'Open Sans', sans-serif;
  src: url(../fonts/Open_Sans/OpenSans-Bold.ttf) format("truetype");
  font-weight: bold; }
@font-face {
  font-family: 'Open Sans', sans-serif;
  src: url(../fonts/Open_Sans/OpenSans-Regular.ttf) format("truetype");
  font-weight: 400; }
@font-face {
  font-family: 'Open Sans', sans-serif;
  src: url(../fonts/Open_Sans/OpenSans-SemiBold.ttf) format("truetype");
  font-weight: 600; }
@font-face {
  font-family: 'Open Sans', sans-serif;
  src: url(../fonts/Open_Sans/OpenSans-Bold.ttf) format("truetype");
  font-weight: 700; }
/*@font-face {*/
/*font-family: 'Oswald', sans-serif;*/
/*src: url(../fonts/Oswald/Oswald-Light.ttf) format("truetype");*/
/*font-weight: 300;*/
/*}*/
/*@font-face {*/
/*font-family: 'Oswald', sans-serif;*/
/*src: url(../fonts/Oswald/Oswald-Medium.ttf) format("truetype");*/
/*font-weight: 500;*/
/*}*/
/*@font-face {*/
/*font-family: 'Oswald', sans-serif;*/
/*src: url(../fonts/Oswald/Oswald-SemiBold.ttf) format("truetype");*/
/*font-weight: 600;*/
/*}*/
/*@font-face {*/
/*font-family: 'Oswald', sans-serif;*/
/*src: url(../fonts/Oswald/Oswald-Bold.ttf) format("truetype");*/
/*font-weight: 700;*/
/*}*/
@font-face {
  font-family: 'Muli', sans-serif;
  src: url(../fonts/muli/Muli-Black.ttf) format("truetype");
  font-weight: 900; }
@font-face {
  font-family: 'Muli', sans-serif;
  src: url(../fonts/muli/Muli-ExtraBold.ttf) format("truetype");
  font-weight: 800; }
@font-face {
  font-family: 'Muli', sans-serif;
  src: url(../fonts/muli/Muli-SemiBold.ttf) format("truetype");
  font-weight: 600; }
ul, li {
  list-style-type: none;
  padding: 0px; }

main {
  overflow: hidden; }

.h1, .h2, .h3, .h4, .h5, .h6, .h7, h1, h2, h3, h4, h5, h6 {
  font-family: 'Open Sans', sans-serif; }

.h1 {
  font-size: 30px; }

.h2 {
  font-size: 28px; }

.h3 {
  font-size: 24px; }

.h4 {
  font-size: 20px; }

.h5 {
  font-size: 18px; }

.h6 {
  font-size: 16px; }

a:hover, .menuTop-Right ul li a:hover, .npt-list-new li:hover .title a, .npt-list-new li:hover .title,
.npt-list .lable:hover h2, .npt-footer-share-list .u-icon-v1 i:hover, .npt-footer-share-list .u-icon-v1:hover,
.npt-news .content-new:hover h3, .npt-news .content-new:hover a,
.list-news-new li:hover h3,
.list-news-new li:hover a {
  color: #164397;
  text-decoration: none; }

.npt-list .see-more:hover {
  color: #ed1c24 !important; }

body {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  line-height: 20px;
  font-size: 14px;
  color: #222; }

.u-header {
  background: #fff; }

/*header_top----------------------*/
.header_top {
  padding: 10px 0px; }

.logo-name .logo-brand {
  float: left;
  margin-right: 20px; }

.logo-name .logo-brand img {
  float: left;
  height: 82px;
  width: auto; }

.logo-name h2 {
  font-size: 20px;
  color: #ed1c24;
  font-family: 'Muli', sans-serif;
  font-weight: 900;
  z-index: 2;
  position: relative;
  text-transform: uppercase;
  line-height: 62px; }

.col-lg-7.logo-name {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 64.333333%;
  flex: 1 0 64.333333%;
  max-width: 64.333333%; }

.col-lg-5.menuTop-Right {
  -webkit-box-flex: 0;
  -ms-flex: 0 0 35.666667%;
  flex: 0 0 35.666667%;
  max-width: 35.666667%;
  padding-left: 0px; }

.language-top {
  border: 1px solid #e1e1e1;
  border-radius: 4px;
  height: 34px;
  line-height: 34px !important; }

.language-top a {
  font-size: 14px !important;
  color: #333333 !important;
  padding: 0px 10px !important;
  text-transform: none !important;
  line-height: 34px !important; }

.language-top .iconFg {
  float: left;
  margin-right: 8px; }

.language-top ul li {
  float: left;
  margin-left: 0px !important;
  line-height: 50px; }

.header_menu {
  background: #164397;
  height: 55px; }

.header_menu {
  background: #164397;
  height: 55px; }

.header_menu .navbar {
  position: relative;
  display: block !important;
  width: 100% !important; }

.menuTop-Right ul {
  float: right;
  padding: 0px;
  margin: 0px; }

.menuTop-Right ul li {
  float: left;
  margin-left: 15px;
  line-height: 62px; }

.menuTop-Right ul li a {
  font-size: 14px;
  color: #333333; }

.header_menu .navbar-expand-lg ul.navbar-nav li a.nav-link {
  font-size: 16px;
  color: #fff;
  font-family: 'Muli', sans-serif;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: -0.1px;
  line-height: 35px; }

.header_menu .navbar-expand-lg .navbar-nav .nav-item:hover {
  background: #133b86; }

.header_menu .navbar-expand-lg .navbar-nav .nav-item.active {
  background: #12377c; }



.header_menu .navbar-nav {
  padding: 0px;
  float: left;
  margin-left: 0px;
  width: 100%; }

.npt-mobi, .npt-show-mobi {
  display: none; }

.header_menu .navbar-expand-lg .navbar-nav .nav-item.box-search:hover {
  background: transparent !important; }


.header_menu .navbar-nav .box-search {

    width: 30%;
    position: absolute;
    right: 0;
}

/*Search----------*/
.sb-search {
  position: relative;
  margin-top: 0px;
  width: 0%;
  min-width: 55px;
  height: 55px;
  float: right;
  overflow: hidden;
  -webkit-transition: width 0.3s;
  -moz-transition: width 0.3s;
  transition: width 0.3s;
  -webkit-backface-visibility: hidden; }

.sb-search-input {
  position: absolute;
  top: 0;
  right: 0;
  border: none;
  outline: none;
  background: #12377c;
  width: 100%;
  height: 55px;
  margin: 0;
  z-index: 10;
  padding: 20px 65px 20px 20px;
  font-family: inherit;
  font-size: 16px;
  color: #fff; }

.sb-search-input::-webkit-input-placeholder {
  color: #fff; }

.sb-search-input:-moz-placeholder {
  color: #fff; }

.sb-search-input::-moz-placeholder {
  color: #fff; }

.sb-search-input:-ms-input-placeholder {
  color: #fff; }

.sb-icon-search,
.sb-search-submit {
  width: 55px;
  height: 55px;
  display: block;
  position: absolute;
  right: 0;
  top: 0;
  padding: 0;
  margin: 0;
  line-height: 55px;
  text-align: center;
  cursor: pointer; }

.sb-search-submit {
  background: #12377c;
  /* IE needs this */
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  /* IE 8 */
  filter: alpha(opacity=0);
  /* IE 5-7 */
  opacity: 0;
  color: transparent;
  border: none;
  outline: none;
  z-index: -1; }

.sb-icon-search {
  color: #fff;
  background: #164397;
  z-index: 90;
  font-size: 22px;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  -webkit-font-smoothing: antialiased; }

/* Open state */
.sb-search.sb-search-open,
.no-js .sb-search {
  width: 100%; }

.sb-search.sb-search-open .sb-icon-search,
.no-js .sb-search .sb-icon-search {
  background: #164397;
  color: #fff;
  z-index: 11; }

.sb-search.sb-search-open .sb-search-submit,
.no-js .sb-search .sb-search-submit {
  z-index: 90; }

.banner {
  max-height: 350px;
  min-height: 350px;
  margin-top: 155px; }
.bannerPage {
  max-height: 150px;
  min-height: 150px;
  margin-top: 155px; }
.npt-content-home {
  background: #f8f8f8; }

.npt-list .lable .img-icon {
  margin-top: 5px;
  float: left;
  margin-right: 17px;
  padding-bottom: 10px; }

.npt-list .lable h2 {
  font-size: 24px;
  color: #111;
  font-family: 'Oswald';
  font-weight: 700; }

.npt-list .lable p {
  font-size: 15px;
  line-height: 20px;
  color: #666;
  letter-spacing: -0.1px;
  font-weight: 400;
  min-height: 50px;
  padding-bottom: 0px;
  margin-bottom: 0px; }

.npt-list-new, .npt-list-new ul {
  width: 100%;
  float: left;
  padding: 0px;
  margin: 0px; }

.npt-list-new li {
  width: 100%;
  float: left;
  margin-bottom: 18px; }

.npt-list-new li:last-child {
  margin-bottom: 0px; }

.npt-list-new li .thumb {
  width: 113px;
  height: 75px;
  float: left;
  margin-right: 15px;
  overflow: hidden;
  margin-top: 5px; }

.npt-list-new li .thumb img {
  width: 100%; }

.npt-list-new li .title {
  float: left;
  width: 61%; }

.npt-list-new li .title a, .npt-list-new li .title {
  font-size: 14px;
  color: #222;
  letter-spacing: -0.1px;
  font-family: 'Open Sans';
  font-weight: 400;
  line-height: 20px !important;
  margin-bottom: 0px;
  padding-bottom: 0px; }

.u-block-hover__main--zoom-v1, .u-block-hover__main--zoom-v2 {
  transform: scale(1.01); }

.npt-list .lable .line {
  width: 140px;
  margin: 25px auto;
  border-bottom: 1px solid #e1e1e1;
  position: relative; }

.npt-list .lable .line:before {
  margin: 0px auto;
  height: 3px;
  background: #c9c9c9;
  content: "";
  width: 40px;
  position: absolute;
  top: -1px;
  left: 50%;
  transform: translate(-50%, 0%); }

.npt-list .see-more {
  font-size: 15px;
  color: #164397;
  letter-spacing: -0.1px;
  font-family: 'Open Sans';
  font-weight: 600;
  line-height: 20px !important;
  margin-bottom: 0px;
  padding-bottom: 0px; }

.npt-list:first-child {
  background: url("../img/home/bg-left.png") center right no-repeat;
  padding-right: 25px !important; }

.npt-list:nth-child(2) {
  padding: 0 20px !important; }

.npt-list:last-child {
  background: url("../img/home/bg-right.png") center left no-repeat;
  padding-left: 25px !important; }

/*=======npt-footer*/
.npt-footer {
  background: #e9e9e9; }

.menuFooter .col-6 {
  padding: 0 10px; }

.menuFooter .col-6 {
  padding: 0 10px; }

.menuFooter .lable {
  padding-bottom: 12px; }

.menuFooter .lable a, .npt-footer-share .u-link-v5, .npt-footer-info h3 {
  font-family: 'Muli', sans-serif;
  font-weight: 800;
  color: #333;
  font-size: 16px; }

.npt-footer-info {
  border-bottom: 1px solid #d1d1d1;
  display: block;
  padding-bottom: 25px; }

.npt-footer-info h3 {
  margin-bottom: 0px; }

.npt-footer-info img {
  margin-top: 5px; }

.npt-footer-info p {
  letter-spacing: -0.1px;
  color: #333;
  font-weight: 400;
  font-size: 14px; }

.menuFooter .list-unstyled li a {
  letter-spacing: -0.1px;
  color: #333;
  font-weight: 400;
  font-size: 13px; }

.menuFooter .list-unstyled {
  padding-left: 0;
  list-style: none;
  margin-bottom: 0px !important; }

.npt-footer-share {
  border-top: 1px solid #d1d1d1; }

.npt-footer-share .u-link-v5 {
  line-height: 25px;
  float: left;
  color: #666666;
  margin-right: 15px; }

.npt-footer-share img, .npt-footer-info img {
  padding-right: 12px;
  float: left; }

.npt-footer-share-list {
  float: right; }

.npt-footer-share-list .list-inline-item {
  padding-left: 15px; }

.npt-footer-share-list .u-icon-v1 i, .npt-footer-share-list .u-icon-v1 {
  font-size: 32px !important;
  color: #666666; }

.npt-footer-bottom {
  background: #164397;
  height: 70px;
  line-height: 70px;
  color: #fff; }

.npt-footer-bottom .lable {
  float: right;
  margin-right: 15px; }

.npt-footer-bottom .form-control {
  width: 50%;
  float: right;
  margin-top: 20px;
  background: #10316d;
  border: 1px solid #10316d;
  color: #fefefe; }

.js-carousel.slick-initialized .js-slide, .js-carousel.slick-initialized .js-thumb {
  position: relative; }

.banner-content {
  float: right;
  background: rgba(0, 0, 0, 0.6);
  height: 100%;
  position: absolute !important;
  right: 0px;
  top: 0px;
  width: 40%; }

.banner-content a {
  position: absolute;
  top: 45%;
  left: 40px;
  transform: translate(0%, -50%);
  font-family: 'Oswald';
  font-weight: 300;
  font-size: 48px;
  color: #fff;
  line-height: 63px;
  margin-top: 0px; }

.banner-content a h2 {
  font-weight: 500 !important;
  text-transform: uppercase;
  color: #fff;
  font-size: 50px;
  padding: 0px;
  margin: 0px;
  font-family: 'Oswald'; }

.banner-content a:hover {
  color: #fff !important; }

.banner-content a p span, .banner-content a p {
  font-family: 'Oswald';
  font-weight: 300;
  font-size: 48px;
  color: #fff212;
  padding: 0px !important;
  margin: 0px !important;
  line-height: 63px; }

.banner-content a:before {
  height: 2px;
  background: #fff;
  width: 150px;
  position: absolute;
  bottom: -20px;
  left: 0px;
  content: ""; }

/*npt-newNews*/
.npt-newNews {
  background: #f1f1f1; }

.npt-newNews-list {
  height: 280px;
  background: #fff;
  overflow: hidden; }

.npt-newNews-list .lable {
  height: 44px;
  line-height: 44px;
  padding: 0px 15px;
  width: 100%;
  background: #164397; }

.npt-newNews-list .lable a h2, .npt-newNews-list .lable a {
  font-size: 17px;
  font-weight: bold;
  letter-spacing: -0.1px;
  color: #fff;
  height: 44px;
  line-height: 44px;
  font-family: 'Open Sans'; }

.npt-newNews-list .npt-list-new {
  padding: 10px 20px;
  margin-bottom: 10px;
  height: 220px;
  overflow-y: scroll;
  float: left; }

.npt-newNews-list .npt-list-new li {
  padding: 10px 0px 0px 15px;
  margin-bottom: 0px;
  position: relative; }

.npt-newNews-list .npt-list-new li:before {
  color: #164397;
  font-size: 15px;
  content: "\f105";
  font-family: 'FontAwesome';
  top: 10px;
  left: 0px;
  position: absolute; }

.npt-newNews-list .npt-list-new li:first-child {
  border-bottom: 1px solid #e1e1e1;
  padding: 0px 0px 10px 0px; }

.npt-newNews-list .npt-list-new li:first-child:before {
  display: none; }

.npt-newNews-list .npt-list-new li:first-child .title, .npt-newNews-list .npt-list-new li:first-child .title a {
  font-size: 17px !important;
  font-weight: bold !important;
  line-height: 23px !important; }

.npt-newNews-list .npt-list-new li .title {
  float: left;
  width: 100%;
  color: #222;
  line-height: 20px; }

.npt-newNews-list .imgNew {
  width: 100%;
  height: 280px;
  float: left;
  overflow: hidden;
  position: relative; }

.npt-newNews-list .thumb {
  width: 100%;
  height: 100%; }

.npt-newNews-list .thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover; }

.npt-newNews-list .imgNew h2 {
  height: 44px;
  background: rgba(0, 0, 0, 0.5);
  color: #fff;
  position: absolute;
  left: 0px;
  width: 100%;
  bottom: 0px;
  margin-bottom: 0px;
  font-size: 15px !important;
  line-height: 44px !important;
  font-family: 'Open Sans';
  padding: 0px 15px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  font-weight: 300 !important; }

.npt-newNews-list .npt-list-new::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px rgba(0, 0, 0, 0.3);
  background-color: #F5F5F5; }

.npt-newNews-list .npt-list-new::-webkit-scrollbar {
  width: 4px;
  background-color: #F5F5F5; }

.npt-newNews-list .npt-list-new::-webkit-scrollbar-thumb {
  background-color: #999;
  border: 2px solid #555555; }

.imgNew:before {
  position: absolute;
  left: 0px;
  top: 43%;
  content: "";
  width: 0;
  height: 0;
  border-top: 25px solid transparent;
  border-bottom: 25px solid transparent;
  border-left: 25px solid #fff;
  z-index: 999; }

.list-bottom .imgNew:before {
  display: none; }

.list-bottom .imgNew:after {
  position: absolute;
  right: 0px;
  top: 43%;
  content: "";
  width: 0;
  height: 0;
  border-top: 25px solid transparent;
  border-bottom: 25px solid transparent;
  border-right: 25px solid #fff;
  z-index: 999; }

.npt-hidden {
  display: none; }

/*---------------*/
.npt-breadcrumb .row {
  margin: 0px; }

.breadcrumb {
  margin-bottom: 30px;
  overflow: hidden;
  border-radius: 0px !important; }

.breadcrumb {
  width: 100%;
  height: 50px;
  /*float: left;*/
  line-height: 50px;
  border-bottom: 1px solid #e1e1e1;
  background: #fff;
  padding: 0px;
  margin: 0px; }

.breadcrumb ul li {
  float: left;
  line-height: 50px;
  margin-right: 25px;
  list-style: normal;
  list-style-type: none;
  position: relative; }

.breadcrumb ul li a {
  font-size: 16px;
  color: #666666;
  line-height: 30px;
  position: relative; }

.breadcrumb ul li:first-child a {
  font-size: 16px;
  color: #666666;
  background: #f1f1f1;
  border-left: 2px solid #164397;
  padding: 4px 8px 4px 12px;
  position: relative;
  margin-right: 5px; }

.breadcrumb ul li:first-child a:after {
  position: absolute;
  content: "";
  border-bottom: 15px solid transparent;
  border-top: 15px solid transparent;
  border-left: 15px solid #f1f1f1;
  top: 0px;
  right: -15px; }

.breadcrumb ul li:before {
  display: none;
  position: absolute;
  content: "\f3d3";
  top: 0px;
  right: -15px;
  color: #666;
  font-family: "Ionicons";
  /*display: inline-block;*/ }

.breadcrumb ul li:first-child:before, .breadcrumb ul li:last-child:before {
  content: ""; }

.breadcrumb ul li:last-child a {
  color: #164397;
  font-weight: 700; }

.g-height-40 {
  height: 40px !important; }

.npt-special-announcement .container {
  border-bottom: 1px solid #e1e1e1;
  padding-bottom: 18px; }

.npt-special-announcement .lable {
  float: left;
  width: 90px;
  text-align: center;
  margin-right: 20px; }

.npt-special-announcement .lable h1 {
  color: #164397;
  font-size: 18px;
  font-family: 'Oswald';
  font-weight: 300;
  text-transform: uppercase; }

.npt-special-announcement .lable h1 b {
  font-weight: 700;
  width: 100%;
  float: left; }

.npt-special-announcement {
  padding: 16px 0px 0px 0px;
  display: block;
  width: 100%; }

.list-special-announcement {
  display: inline;
  float: right;
  width: 90%; }

.list-special-announcement li {
  float: left;
  width: 33.3333%; }

.list-special-announcement .li-item .thumb {
  float: left;
  width: 134px;
  height: 100px;
  overflow: hidden;
  margin-right: 15px;
  margin-top: 4px; }

.list-special-announcement .li-item .thumb img {
  width: 100%;
  height: 100px;
  object-fit: cover; }

.list-special-announcement .li-item h2 {
  color: #111;
  font-size: 14px;
  line-height: 18px;
  font-weight: 400;
  font-family: 'Open Sans';
  margin: 0px;
  padding: 0px 15px 0px 0px; }

.list-special-announcement .li-item .time {
  margin-bottom: 5px;
  padding-bottom: 0px; }

.list-special-announcement .li-item .time span {
  color: #fff;
  font-family: 'Open Sans';
  font-size: 14px;
  padding: 0px 6px;
  line-height: 20px;
  height: 20px;
  background: #ed1c24;
  font-weight: 700; }

/*------------------------*/
.npt-news .npt-lable {
  width: 100%;
  display: inline-block; }

.npt-news .npt-lable h2 {
  color: #164397;
  font-family: 'Oswald';
  text-transform: uppercase;
  font-weight: 500;
  float: left;
  margin: 0px;
  padding: 0px; }

.npt-news .npt-lable .bnt-seeMore {
  float: right;
  line-height: 27px;
  color: #777777; }

.npt-news .content-new h3, .npt-news .content-new a {
  line-height: 24px;
  letter-spacing: -0.1px;
  color: #111;
  font-size: 18px;
  font-weight: 700; }

.npt-news .content-new p {
  font-size: 13px;
  line-height: 18px;
  color: #777;
  font-family: arial;
  display: inline-block;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden; }

.line-1 {
  background: url("../img/img-all//line-1.png") top left repeat-x;
  height: 10px;
  width: 100%;
  display: inline-block; }

.line-2 {
  background: #e1e1e1;
  height: 1px;
  width: 100%;
  display: inline-block; }

/*npt-list-catalog*/
.npt-list-catalog {
  background: #f1f1f1; }

.npt-list-catalog .item-list .hi-icon {
  background: #37424b;
  width: 80px !important;
  height: 80px !important;
  text-align: center;
  line-height: 80px; }

.npt-list-catalog .hi-icon-wrap {
  text-align: center;
  margin: 0 auto;
  padding: 0em !important; }

.npt-list-catalog .item-list h3 {
  color: #37424b;
  font-size: 26px;
  font-family: 'Oswald';
  font-weight: 300;
  margin-bottom: 0px; }

.npt-list-catalog .item-list .hi-icon {
  display: inline-block;
  font-size: 0px;
  cursor: pointer;
  margin: 0px 0px 10px 0px;
  width: 90px;
  height: 90px;
  border-radius: 50%;
  text-align: center;
  position: relative;
  z-index: 1;
  color: #fff; }

.npt-list-catalog .hi-icon-effect-5:hover .hi-icon {
  background: #164397;
  color: #702fa8;
  box-shadow: 0 0 0 8px rgba(22, 67, 151, 0.3); }

/*npt-calenderEvent--------*/
.npt-calenderEvent {
  border-bottom: 1px solid #e1e1e1;
  padding: 30px 0px 30px 0px;
  display: block;
  width: 100%; }

.npt-calenderEvent .lable {
  float: left;
  width: 100px;
  text-align: center; }

.npt-calenderEvent .lable img {
  padding-bottom: 10px; }

.npt-calenderEvent .lable h1 {
  color: #164397;
  font-size: 18px;
  font-family: 'Oswald';
  font-weight: 300;
  text-transform: uppercase; }

.npt-calenderEvent .lable h1 b {
  font-weight: 700; }

.list-calenderEvent {
  display: inline;
  float: right;
  width: 90%; }

.list-calenderEvent li {
  float: left;
  width: 28%;
  margin-left: 50px; }

.list-calenderEvent .li-item h2 {
  color: #111;
  font-size: 14px;
  line-height: 19px;
  font-weight: 600;
  letter-spacing: -0.1px;
  font-family: 'Open Sans';
  margin: 0px;
  padding: 0px; }

.list-calenderEvent .li-item:first-child h2 {
  font-weight: 700; }

.list-calenderEvent .li-item .time {
  background: #e7e7e7;
  width: 66px;
  height: 76px;
  float: left;
  margin-right: 12px; }

.list-calenderEvent .li-item .time p {
  padding: 0px;
  margin: 0px; }

.list-calenderEvent .li-item .time .day {
  background: #164397;
  color: #fff;
  width: 100%;
  height: 34px;
  font-weight: 600;
  font-size: 28px;
  font-family: 'Oswald';
  text-align: center;
  line-height: 34px; }

.list-calenderEvent .li-item .time .month {
  color: #333333;
  width: 100%;
  font-weight: 600;
  font-size: 14px;
  font-family: 'Oswald';
  text-align: center;
  line-height: 18px;
  padding-top: 5px !important; }

.list-calenderEvent .li-item .time .year {
  color: #333333;
  width: 100%;
  font-weight: 300;
  font-size: 14px;
  font-family: 'Oswald';
  text-align: center;
  line-height: 18px; }

.list-calenderEvent .li-item .time span {
  color: #fff;
  font-family: 'Open Sans';
  font-size: 14px;
  padding: 0px 6px;
  line-height: 20px;
  height: 20px;
  background: #ed1c24;
  font-weight: 700; }

/*npt-transmission-bulettin--------*/
.npt-transmission-bulettin {
  display: block;
  width: 100%; }

.npt-transmission-bulettin .npt-lable {
  width: 100%;
  display: inline-block; }

.npt-transmission-bulettin .npt-lable h2 {
  color: #164397;
  font-family: 'Oswald';
  text-transform: uppercase;
  font-weight: 500;
  float: left;
  margin: 0px;
  padding: 0px; }

.list-transmission-bulettin {
  width: 100%; }

.list-transmission-bulettin .li-item {
  background: #dcebfc;
  min-height: 100px;
  border: 1px solid #b3ceff;
  border-radius: 6px;
  width: 100%;
  position: relative; }

.list-transmission-bulettin .li-item .hi-icon {
  display: inline-block;
  font-size: 0px;
  cursor: pointer;
  margin: 15px 15px;
  width: 54px;
  height: 54px;
  border-radius: 50%;
  text-align: center;
  position: relative;
  z-index: 1;
  color: #fff;
  background: #164397;
  float: right;
  border: 0px;
  box-shadow: 0 0 0 0px rgba(55, 66, 75, 0.3); }

.list-transmission-bulettin .li-item .hi-icon:hover {
  background: #ed1c24 !important;
  color: #fff !important;
  box-shadow: 0 0 0 0px rgba(55, 66, 75, 0.3); }

.list-transmission-bulettin .li-item .hi-icon-arrow:before {
  content: "\f063";
  font-family: 'FontAwesome';
  speak: none;
  font-size: 28px;
  line-height: 54px;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  display: block;
  -webkit-font-smoothing: antialiased; }

.list-transmission-bulettin .li-item .hi-icon-wrap {
  text-align: right;
  margin: 0 auto;
  padding: 0;
  float: right;
  width: 60px;
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translate(0%, -50%); }

.list-transmission-bulettin .li-item h2 {
  color: #164397;
  font-size: 16px;
  line-height: 24px;
  font-weight: 400;
  letter-spacing: -0.1px;
  font-family: 'Open Sans';
  margin: 0px;
  padding: 0px;
  float: left;
  width: 65%;
  position: absolute;
  top: 50%;
  left: 15px;
  transform: translate(0%, -50%);
  display: inline-block;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden; }

.npt-transmission-pageIn .list-transmission-bulettin .li-item {
  margin-bottom: 20px; }

/*-npt-online-exhibitions--*/
.npt-online-exhibitions .npt-news .thumbs {
  position: relative; }

.npt-online-exhibitions .npt-news .thumbs .play-video-big {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 2;
  opacity: 0.6;
  background: url("../img/news/icon-play1.png") center center no-repeat; }

.npt-online-exhibitions .npt-news .list-video-right .thumbs .play-video-big {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 2;
  opacity: 0.6;
  background: url("../img/news/icon-play2.png") center center no-repeat; }

.npt-online-exhibitions .npt-news .thumbs:hover .play-video-big {
  opacity: 1; }

.npt-online-exhibitions .npt-news .list-video-right .content-new h3, .npt-online-exhibitions .npt-news .list-video-right .content-new a {
  line-height: 20px !important;
  letter-spacing: -0.1px;
  color: #111;
  font-size: 14px !important;
  font-weight: 600 !important;
  display: inline-block;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden; }

.npt-online-exhibitions .npt-news .list-video-right .thumbs {
  position: relative;
  height: 197px;
  overflow: hidden; }

.npt-online-exhibitions .npt-news .list-video-right .col-md-6 {
  padding: 0px 10px; }

.npt-online-exhibitions .npt-news .list-video-right .thumbs img, .npt-online-exhibitions .npt-news .videoNew .thumbs img {
  height: 100%;
  width: 100%;
  object-fit: cover; }

.npt-online-exhibitions .npt-news .videoNew .thumbs {
  position: relative;
  height: 410px; }

.npt-online-exhibitions .npt-news .list-video-bottom {
  padding: 20px 15px 10px 15px; }

.npt-online-exhibitions .npt-news .list-video-right .col-md-3 {
  padding: 0px 10px 10px 10px; }

/*--------------*/
.npt-new-news3 .npt-new-news3-left {
  padding-right: 20px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 73%;
  flex: 0 0 73%;
  max-width: 73%; }

.npt-new-news3 .npt-new-news3-left .col-md-9 {
  padding-right: 10px; }

.npt-new-news3 .npt-new-news3-right {
  }

.npt-new-news3 .list-next-new li {
  width: 100%;
  margin-bottom: 15px;
  padding-bottom: 20px;
  float: left;
  border-bottom: 1px solid #e1e1e1; }

.npt-new-news3 .list-next-new li .thumbs {
  width: 220px;
  height: 164px;
  overflow: hidden;
  float: left;
  margin-top: 5px;
  margin-right: 20px; }

.npt-new-news3 .list-next-new li .thumbs img {
  width: 100%;
  height: auto; }

.npt-new-news3 .list-next-new li .content-new h3 {
  line-height: 24px;
  color: #222;
  font-size: 20px;
  font-weight: 700;
  font-family: "Arial", sans-serif; }

.npt-new-news3 .list-next-new li .content-new h6 {
  line-height: 19px;
  color: #888888;
  font-size: 13px;
  font-weight: 400;
  font-family: "Arial", sans-serif; }

.npt-new-news3 .list-next-new li .content-new p {
  line-height: 20px;
  color: #666;
  font-size: 14px;
  font-weight: 400;
  font-family: Arial;
  display: inline-block;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden; }

.page-navigation {
  float: right;
  padding-top: 30px;
  width: 100%; }

.page-navigation span {
  font-size: 13px;
  width: auto;
  color: #333;
  line-height: 36px;
  float: right;
  margin-right: 10px; }

.page-navigation .pagination {
  border-radius: 0px;
  float: right; }

.page-navigation .pagination .page-link {
  position: relative;
  display: block;
  padding: 0 15px;
  color: #333333;
  background-color: #f0f0f0;
  height: 36px;
  line-height: 36px;
  margin-left: 10px;
  font-size: 14px;
  border: 0px;
  border-radius: 0px; }

.page-navigation .pagination .active .page-link {
  color: #fff;
  background-color: #ed1c24;
  border: 0px; }

.page-navigation .pagination .page-link:hover {
  color: #fff !important;
  background-color: #164397;
  border: 0px; }

.imgQC img {
  width: 100%; }

/*npt-news-new--------*/
.npt-news-new .npt-lable {
  background: #fff url(../img/news/line.png) center no-repeat; }

.npt-news-new .npt-lable h2 {
  color: #164397;
  font-family: 'Oswald';
  text-transform: uppercase;
  font-weight: 500;
  float: left;
  margin: 0px;
  padding: 0px;
  background: #fff;
  padding-right: 15px; }

.list-news-new {
  border-left: 2px solid #e1e1e1;
  padding-left: 12px;
  width: 100%;
  float: left; }

.list-news-new li {
  border-bottom: 1px solid #e1e1e1;
  width: 100%;
  margin-bottom: 10px;
  padding-bottom: 10px;
  float: left; }

.list-news-new li:last-child {
  border-bottom: 0px solid #e1e1e1;
  margin-bottom: 0px;
  padding-bottom: 0px; }

.list-news-new h3,
.list-news-new a {
  color: #111;
  font-size: 13px;
  font-weight: 400;
  line-height: 17px;
  font-family: "Arial", sans-serif;
  padding: 0px !important;
  margin: 0px !important; }

.npt-news-new h3 span,
.npt-news-new a span {
  color: #164397;
  font-weight: 700; }

/*------*/
.npt-new-TBdb .npt-lable {
  color: #fff;
  background: #ed1c24;
  height: 40px;
  line-height: 40px;
  margin: 0px;
  padding: 0px;
  float: left; }

.npt-new-TBdb .npt-lable h2, .npt-new-TBdb .npt-lable a {
  color: #fff !important;
  line-height: 40px;
  font-family: 'Oswald';
  text-transform: uppercase;
  font-weight: 500 !important; }

.npt-new-TBdb .npt-lable h2 span {
  background: #c50d14;
  width: 45px;
  text-align: right;
  line-height: 40px;
  padding-right: 5px;
  float: left;
  position: relative;
  float: left;
  margin-right: 30px; }

.npt-new-TBdb .npt-lable h2 span:before {
  border-bottom: 20px solid transparent;
  border-top: 20px solid transparent;
  border-left: 15px solid #c50d14;
  position: absolute;
  content: "";
  top: 0px;
  right: -15px; }

.npt-new-TBdb .npt-lable h2 {
  color: #164397;
  font-family: 'Oswald';
  text-transform: uppercase;
  font-weight: 500;
  float: left;
  margin: 0px;
  padding: 0px; }

.npt-new-TBdb .list-news-new {
  border-left: 2px solid #e1e1e1;
  border-right: 2px solid #e1e1e1;
  border-bottom: 2px solid #e1e1e1;
  padding: 15px;
  width: 100%;
  float: left; }

.npt-new-TBdb .list-news-new li {
  margin-bottom: 15px;
  padding-bottom: 18px; }

.npt-new-TBdb .list-news-new li:last-child {
  margin-bottom: 0px;
  padding-bottom: 0px; }

.npt-new-TBdb .list-news-new li h3 {
  line-height: 18px;
  color: #111111;
  font-size: 14px;
  font-weight: 600;
  padding-bottom: 10px !important; }

.npt-new-TBdb .list-news-new li h3 span {
  line-height: 18px;
  background: #ed1c24;
  padding: 1px 5px;
  color: #fff;
  font-size: 14px;
  font-weight: 600; }

.npt-new-TBdb .list-news-new li .thumbs {
  width: 100px;
  height: 76px;
  overflow: hidden;
  float: left;
  margin-right: 10px;
  margin-top: 1px; }

.npt-new-TBdb .list-news-new li .thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover; }

.npt-new-TBdb .list-news-new li .content-new span {
  line-height: 18px;
  background: #ed1c24;
  padding: 1px 5px;
  color: #fff;
  font-size: 14px;
  font-weight: 600; }

.npt-new-TBdb .list-news-new li .content-new a h3,
.npt-new-TBdb .list-news-new li .content-new a {
  line-height: 18px;
  color: #111111;
  font-size: 14px;
  font-weight: 600;
  padding-bottom: 10px !important;
  padding: 0px !important;
  margin: 0px !important; }

/*------------*/
.npt-right-calenderEvent, .npt-new-TBdb {
  float: left;
  width: 100%; }

.npt-right-calenderEvent .npt-lable img {
  height: 30px;
  margin-right: 10px; }

.npt-right-calenderEvent .list-calenderEvent {
  border-left: 2px solid #164397;
  padding-left: 12px;
  padding-top: 25px;
  width: 100%;
  float: left;
  background: url("../img/news/line-cr.png") 12px 0px no-repeat; }

.npt-right-calenderEvent .list-calenderEvent li {
  float: left;
  width: 100%;
  margin-left: 0px;
  margin-bottom: 15px;
  padding-bottom: 18px;
  border-bottom: 1px solid #e1e1e1; }

.npt-right-calenderEvent .list-calenderEvent .li-item h2 {
  color: #111;
  font-size: 14px;
  line-height: 19px;
  font-weight: 600;
  letter-spacing: -0.1px;
  font-family: 'Open Sans';
  margin: 0px;
  padding: 0px; }

.npt-right-calenderEvent .list-calenderEvent .li-item:first-child h2 {
  font-weight: 700; }

.npt-right-calenderEvent .list-calenderEvent .li-item .time {
  background: #e7e7e7;
  width: 66px;
  height: 76px;
  float: left;
  margin-right: 12px; }

.npt-right-calenderEvent .list-calenderEvent .li-item .time p {
  padding: 0px;
  margin: 0px; }

.npt-right-calenderEvent .list-calenderEvent .li-item .time .day {
  background: #164397;
  color: #fff;
  width: 100%;
  height: 34px;
  font-weight: 600;
  font-size: 28px;
  font-family: 'Oswald';
  text-align: center;
  line-height: 34px; }

.npt-right-calenderEvent .list-calenderEvent .li-item .time .month {
  color: #333333;
  width: 100%;
  font-weight: 600;
  font-size: 14px;
  font-family: 'Oswald';
  text-align: center;
  line-height: 18px;
  padding-top: 5px !important; }

.npt-right-calenderEvent .list-calenderEvent .li-item .time .year {
  color: #333333;
  width: 100%;
  font-weight: 300;
  font-size: 14px;
  font-family: 'Oswald';
  text-align: center;
  line-height: 18px; }

.npt-right-calenderEvent .list-calenderEvent .li-item .time span {
  color: #fff;
  font-family: 'Open Sans';
  font-size: 14px;
  padding: 0px 6px;
  line-height: 20px;
  height: 20px;
  background: #ed1c24;
  font-weight: 700; }

.npt-right-calenderEvent .list-calenderEvent li:last-child {
  margin-bottom: 0px;
  padding-bottom: 0px;
  border-bottom: 0px; }

.npt-list-banner li {
  margin-bottom: 10px;
  float: left;
  width: 100%; }

.npt-list-banner li a img {
  width: 100%; }

/*-----------------*/
.npt-news-detail .title {
  color: #222;
  font-size: 28px;
  line-height: 38px;
  font-family: 'Open Sans';
  font-weight: bold; }

.func {
  /* display: flex; */
  width: 100%;
  border-bottom: 1px solid #e1e1e1;
  color: #666;
  font-size: 15px;
  line-height: 30px;
  font-family: Arial;
  float: left;
  width: 100%;
  padding-top: 15px; }

.func .time {
  color: #666;
  font-size: 15px;
  line-height: 30px;
  font-family: Arial;
  float: left; }

.func .share {
  float: right; }

.func .share a {
  float: right;
  margin-left: 10px;
  color: #666; }

.npt-news-detail .sapo {
  color: #222;
  font-size: 16px;
  line-height: 26px;
  font-family: Arial;
  font-weight: bold;
  padding-top: 15px;
  margin-bottom: 20px;
  float: left;
  width: 100%; }

.npt-news-detail .content {
  color: #222;
  font-size: 16px;
  line-height: 26px;
  font-family: Arial;
  padding-top: 25px;
  margin-bottom: 20px;
  padding-right: 15px; }

.likeShare {
  width: 100%;
  float: left;
  padding: 20px 0px; }

.keyword a {
  border: 1px solid #e1e1e1;
  border-radius: 3px;
  padding: 5px 8px;
  color: #666666;
  font-size: 14px; }

.keyword a:hover {
  border: 1px solid #222;
  color: #222; }

.likeShare {
  width: 100%;
  float: left;
  padding: 20px 0px; }

.news-other .lable {
  width: 100%;
  float: left;
  margin-top: 20px; }

.news-other .lable {
  width: 100%;
  background: url("../img/news/line.png") center left repeat-x;
  display: inline-table; }

.news-other .lable h2 {
  background: #fff;
  height: 60px;
  position: relative;
  font-size: 22px;
  color: #164397;
  font-family: 'Oswald';
  font-weight: 500;
  padding: 0px 30px 0px 0px;
  line-height: 54px;
  float: left; }

.news-other .lable h2 a, .news-other .lable h2 span {
  font-size: 20px;
  color: #164397;
  font-family: 'Oswald';
  font-weight: 700;
  z-index: 2;
  position: relative;
  line-height: 40px; }

.news-other .lable h2 img {
  padding-right: 15px; }

/*-------------*/
.news-other .list-news {
  float: left;
  width: 100%; }

.news-other .list-news .item-news {
  float: left;
  width: 48%;
  margin-right: 20px; }

.news-other .list-news .item-news:last-child {
  margin-right: 0px; }

.news-other .list-news .item-news .thumbnail {
  border-radius: 0px;
  display: block;
  margin-bottom: 20px;
  height: 226px;
  width: 100%;
  position: relative; }

.news-other .list-news .item-news .thumbnail img {
  width: 100%;
  height: 100%;
  object-fit: cover; }

.news-other .list-news .item-news .info-artifacts {
  width: 100%;
  float: left; }

.news-other .list-news .item-news .info-artifacts .title {
  color: #222;
  font-family: 'Open Sans';
  font-weight: 700;
  letter-spacing: -0.1px;
  width: 100%;
  float: left;
  margin-bottom: 10px;
  font-size: 14px;
  line-height: 20px; }

.news-other .list-news .item-news .info-artifacts .time {
  color: #666;
  font-family: Arial, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 500;
  letter-spacing: -0.1px;
  line-height: 20px;
  font-size: 13px; }

.news-other .list-news .item-news .info-artifacts .view-detail:hover {
  color: #fff;
  border: 1px solid #222;
  background: #222; }

.news-other .list-news .item-news .info-artifacts .title:hover {
  color: #222 !important;
  text-decoration: none; }

/*=======*/
.boxNewsLQ {
  background: #fff;
  padding: 10px 10px 0px 10px;
  border-bottom: 1px solid #e1e1e1; }

.boxNewsLQ.list-news-dm {
  padding: 10px 0px;
  width: 100%;
  float: left; }

.boxNewsLQ.list-news-dm li {
  float: left;
  width: 100%;
  margin-bottom: 8px; }

.boxNewsLQ.list-news-dm li a {
  float: left;
  width: 84%; }

.boxNewsLQ.list-news-dm li a i {
  font-size: 6px;
  padding-right: 8px;
  margin-top: 7px;
  float: left; }

.boxNewsLQ.list-news-dm li a {
  color: #ed1c24;
  font: 400 14px/16px arial;
  font-weight: 700;
  line-height: 18px;
  text-align: left; }

.boxNewsLQ.list-news-dm li span {
  color: #777777;
  font: 400 14px/16px arial;
  font-weight: 400;
  line-height: 18px;
  float: left;
  width: 90px; }

/*=======*/
.boxNewsList {
  padding: 10px 10px 0px 10px;
  border-bottom: 1px solid #e1e1e1; }

.boxNewsList.list-news-dm {
  padding: 10px 0px 0px 0px;
  width: 100%;
  float: left;
  border-bottom: 0px; }

.boxNewsList.list-news-dm li {
  float: left;
  width: 100%;
  margin-bottom: 15px; }

.boxNewsList.list-news-dm li:last-child {
  margin-bottom: 0px; }

.boxNewsList.list-news-dm li a {
  float: left;
  width: 81%; }

.boxNewsList.list-news-dm li a i {
  font-size: 6px;
  padding-right: 8px;
  margin-top: 7px;
  float: left; }

.boxNewsList.list-news-dm li a {
  color: #111111;
  font: 400 14px/16px arial;
  font-weight: 700;
  line-height: 18px;
  text-align: left; }

.boxNewsList.list-news-dm li span {
  color: #777777;
  font: 400 14px/16px arial;
  font-weight: 400;
  line-height: 18px;
  float: left;
  padding-left: 15px;
  width: 110px;
  position: relative; }

.boxNewsList.list-news-dm li span:before {
  background: #164397;
  width: 6px;
  height: 6px;
  content: "";
  position: absolute;
  top: 7px;
  left: 0px; }

/*---Tin ─æß╗ìc nhiß╗üu---*/
.npt-new-read .npt-lable {
  color: #ed1c24;
  background: #fff url("../img/news/line.png") center no-repeat;
  height: 40px;
  line-height: 40px;
  margin: 0px;
  padding: 0px;
  float: left; }

.npt-new-read .npt-lable h2, .npt-new-read .npt-lable a {
  background: #fff;
  color: #ed1c24 !important;
  line-height: 40px;
  font-family: 'Oswald';
  text-transform: uppercase;
  padding-right: 15px;
  font-weight: 500 !important; }

.npt-new-read .npt-lable h2 span {
  background: #fff;
  width: 45px;
  text-align: right;
  line-height: 40px;
  padding-right: 5px;
  float: left;
  position: relative;
  float: left;
  margin-right: 30px; }

.npt-new-read .npt-lable h2 {
  color: #164397;
  font-family: 'Oswald';
  text-transform: uppercase;
  font-weight: 500;
  float: left;
  margin: 0px;
  padding: 0px; }

.npt-new-read .list-news-new {
  padding-left: 12px;
  width: 100%;
  float: left; }

.npt-new-read .list-news-new li {
  padding-bottom: 10px;
  border-bottom: 0px;
  margin-bottom: 0px; }

.npt-new-read .list-news-new li:last-child {
  margin-bottom: 0px;
  padding-bottom: 0px; }

.npt-new-read .list-news-new li h3 {
  line-height: 18px;
  color: #111111;
  font-size: 14px;
  font-weight: 600;
  padding-bottom: 10px !important; }

.npt-new-read .list-news-new li h3 span {
  line-height: 18px;
  background: #ed1c24;
  padding: 1px 5px;
  color: #fff;
  font-size: 14px;
  font-weight: 600; }

.npt-new-read .list-news-new li .thumbs {
  width: 100%;
  overflow: hidden;
  float: left;
  margin-bottom: 10px; }

.npt-new-read .list-news-new li .thumbs img {
  width: 100%;
  height: 100%;
  object-fit: cover; }

.npt-new-read .list-news-new li .content-new span {
  line-height: 18px;
  background: #ed1c24;
  padding: 1px 5px;
  color: #fff;
  font-size: 14px;
  font-weight: 600; }

.npt-new-read .list-news-new li .content-new a h3,
.npt-new-read .list-news-new li .content-new a {
  line-height: 18px;
  color: #111111;
  font-size: 14px;
  font-weight: 600;
  padding-bottom: 10px !important;
  padding: 0px !important;
  margin: 0px !important; }

.npt-new-news3-right .npt-list-catalog {
  float: left;
  width: 100%;
  background: #fff; }

.npt-new-news3-right .npt-list-catalog .hi-icon-wrap {
  text-align: left;
  margin: 0 auto;
  padding: 0em !important;
  float: left;
  width: 100%;
  margin-bottom: 15px; }

.npt-new-news3-right .npt-list-catalog .u-block-hover {
  float: left;
  line-height: 80px;
  height: 80px !important;
  width: 100%;
  border-radius: 50px;
  border: 1px solid #e1e1e1; }

.npt-new-news3-right .npt-list-catalog .item-list h3 {
  line-height: 80px;
  padding-left: 95px; }

.npt-new-news3-right .npt-list-catalog .item-list .hi-icon {
  float: left;
  position: absolute; }

.npt-new-news3-right .hi-icon-effect-5 .hi-icon {
  box-shadow: 0 0 0 0px rgba(255, 255, 255, 0);
  overflow: hidden;
  -webkit-transition: background 0.3s, color 0.3s, box-shadow 0.3s;
  -moz-transition: background 0.3s, color 0.3s, box-shadow 0.3s;
  transition: background 0.3s, color 0.3s, box-shadow 0.3s; }

/*------------------npt-Overview-in-----------*/
.npt-Overview-in .npt-lable h2 {
  color: #666;
  letter-spacing: -0.1px;
  line-height: 44px;
  font-family: 'Oswald';
  font-weight: 200 !important;
  font-size: 36px !important; }

.npt-Overview-in .content-new {
  padding-right: 25px; }

.npt-Overview-in .content-new p {
  color: #222222;
  letter-spacing: -0.1px;
  line-height: 22px;
  font-size: 15px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400; }

.npt-Overview-in .video-info {
  width: 100%;
  height: 100%;
  overflow: hidden;
  padding: 0px; }

.npt-Overview-in .thumbs .play-video-big {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0px;
  left: 0px;
  z-index: 2;
  opacity: 0.6;
  background: rgba(0, 0, 0, 0.4) url(../img/ve-npt/icon-play-12.png) center center no-repeat; }

.npt-Overview-in .thumbs img {
  width: 100%;
  height: 100%; }

/*-----------npt-list-business---*/
.npt-list-business {
  background: #f4f4f4; }

.npt-lable-all.npt-lable {
  position: relative; }

.npt-list-business-in .col-2 {
  padding: 0px 8px !important; }

.npt-lable-all.npt-lable h2, .npt-lable-all.npt-lable a {
  color: #37424b;
  line-height: 44px;
  font-family: 'Oswald';
  font-weight: 300;
  font-size: 30px !important; }

.npt-list-business-in .u-block-hover p {
  padding-top: 25px;
  color: #37424b;
  line-height: 20px;
  font-family: Arial, "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-weight: 400;
  font-size: 15px; }

.npt-lable-all.npt-lable h2:before {
  width: 410px;
  height: 1px;
  background: #e1e1e1;
  position: absolute;
  bottom: -15px;
  margin: 0px auto;
  left: 50%;
  transform: translate(-50%, 0%);
  content: ""; }

.npt-lable-all.npt-lable h2:after {
  width: 180px;
  height: 3px;
  background: #194598;
  position: absolute;
  bottom: -15px;
  margin: 0px auto;
  left: 50%;
  transform: translate(-50%, 0%);
  content: ""; }

.npt-lable-all.npt-lable h2 b, .npt-lable-all.npt-lable a b {
  font-weight: 600; }

.delay-02s {
  -webkit-animation-delay: 0.02s;
  animation-delay: 0.02s; }

.delay-03s {
  -webkit-animation-delay: 0.03s;
  animation-delay: 0.03s; }

.delay-04s {
  -webkit-animation-delay: 0.04s;
  animation-delay: 0.04s; }

.delay-05s {
  -webkit-animation-delay: 0.05s;
  animation-delay: 0.05s; }

.delay-06s {
  -webkit-animation-delay: 0.06s;
  animation-delay: 0.06s; }

.delay-07s {
  -webkit-animation-delay: 0.07s;
  animation-delay: 0.07s; }

.delay-08s {
  -webkit-animation-delay: 0.08s;
  animation-delay: 0.08s; }

.delay-09s {
  -webkit-animation-delay: 0.09s;
  animation-delay: 0.09s; }

.delay-1s {
  -webkit-animation-delay: 0.2s;
  animation-delay: 0.2s; }

.delay-11s {
  -webkit-animation-delay: 0.4s;
  animation-delay: 0.4s; }

.delay-12s {
  -webkit-animation-delay: 0.6s;
  animation-delay: 0.6s; }

.delay-13s {
  -webkit-animation-delay: 0.8s;
  animation-delay: 0.8s; }

.delay-14s {
  -webkit-animation-delay: 1s;
  animation-delay: 1s; }

.delay-15s {
  -webkit-animation-delay: 1.1s;
  animation-delay: 1.1s; }

.delay-17s {
  -webkit-animation-delay: 1.2s;
  animation-delay: 1.2s; }

.delay-2s {
  -webkit-animation-delay: 1.3s;
  animation-delay: 1.3s; }

.delay-23s {
  -webkit-animation-delay: 1.4s;
  animation-delay: 1.4s; }

.delay-25s {
  -webkit-animation-delay: 1.5s;
  animation-delay: 1.5s; }

.delay-3s {
  -webkit-animation-delay: 1.6s;
  animation-delay: 1.6s; }

.bg-content-pageIn {
  background: url("../img/bg/bg-f12.png") bottom center repeat-x; }

/*coment*/
a {
  color: #164397; }

.recipe-detail-comment {
  overflow: hidden;
  width: 100%; }

.recipe-detail-comment .lable {
  width: 100%;
  float: left;
  margin-top: 40px; }

.recipe-detail-comment .lable {
  width: 100%;
  background: url("../img/news/line.png") center left repeat-x;
  display: inline-table; }

.recipe-detail-comment .lable h2 {
  background: #fff;
  height: 60px;
  position: relative;
  font-size: 22px;
  color: #164397;
  font-family: 'Oswald';
  font-weight: 500;
  padding: 0px 30px 0px 0px;
  line-height: 54px;
  float: left; }

.recipe-detail-comment .lable h2 a, .recipe-detail-comment .lable h2 span {
  font-size: 20px;
  color: #164397;
  font-family: 'Oswald';
  font-weight: 700;
  z-index: 2;
  position: relative;
  line-height: 40px; }

.recipe-detail-comment .lable h2 img {
  padding-right: 15px; }

.block-comment {
  font-size: 12px;
  font-family: Arial, Helvetica, sans-serif;
  height: auto;
  overflow: hidden;
  clear: both; }

.block-comment h3 {
  font-size: 20px;
  color: #164397;
  font-family: 'Oswald';
  font-weight: 400; }

.block-comment form {
  overflow: hidden; }

.block-comment form textarea {
  resize: none;
  width: 260px;
  padding: 3px 5px;
  height: 44px;
  background: #fff; }

.block-comment form .overflow {
  border-top: #e3e3e3 solid 1px;
  padding-top: 5px;
  margin-top: 5px; }

.block-comment .form-comment {
  position: relative;
  padding: 0px 0px;
  border: 0px; }

.block-comment .form-comment legend {
  border: #e1eaf1 solid 1px;
  padding: 2px 8px;
  background: #FFFFFF;
  position: absolute;
  top: -10px;
  left: 10px;
  font-weight: bold;
  color: #292929; }

.block-comment .form-comment p {
  float: left;
  color: #acacac;
  font-size: 11px;
  font-style: italic;
  margin: 0px;
  padding: 10px 0px 0px 10px; }

.block-comment .form-comment p span {
  color: #0079BE; }

.block-comment .form-comment button, .block-comment .form-comment .button {
  line-height: 16px;
  background-color: #164397;
  padding: 8px 25px;
  margin: 15px 1px 0px 20px;
  font-size: 15px;
  font-weight: bold;
  color: #FFF;
  cursor: pointer;
  border: 0px;
  border-radius: 0px; }

.block-comment .lst-comment .readmore-cm {
  padding-top: 5px;
  display: block;
  padding-left: 0; }

.block-comment .form-comment button:hover {
  background: #4274e5; }

.block-comment .lst-comment ul li dl {
  padding: 5px 0px 0px 0;
  position: relative;
  height: auto;
  overflow: hidden;
  clear: both;
  min-height: 50px; }

.relative {
  position: relative; }

.float-l {
  float: left; }

.float-r {
  float: right; }

.like-container {
  float: left; }

.block-comment .lst-comment ul li ul dl {
  margin-left: 40px;
  padding: 5px 0px 0px 0; }

.block-comment .time {
  padding-left: 15px;
  color: #999;
  float: right; }

.list-select {
  overflow: hidden;
  padding: 10px 20px;
  background: #f2f2f2;
  text-align: right; }

.list-select li {
  display: inline-block;
  padding: 0 5px;
  color: #333; }

.list-select li a {
  color: #333; }

.list-select li a:hover, .list-select li.active a {
  color: #3b5998; }

.list-select li:first-child {
  padding-right: 10px;
  padding-left: 0; }

.btn-reply {
  display: inline-block;
  margin-right: 5px; }

.btn-like-cm {
  display: inline-block;
  padding-left: 12px;
  font-size: 10px;
  color: #3b5998;
  /*background: url(../images/icon-likes.png) 0 3px no-repeat;*/ }

.btn-like-cm span {
  color: #7f7f7f;
  padding-left: 2px; }

.readmore-cm {
  color: #3b5998;
  font-weight: bold;
  padding-left: 5px; }

.readmore-cm:hover {
  text-decoration: underline; }

.like_number {
  font-size: 11px; }

.block-comment .form-comment p.warning {
  font-size: 12px;
  color: #e32c22;
  float: left;
  padding-top: 15px;
  padding-left: 0;
  font-style: normal;
  display: none; }

/*list comment*/
.lst-comment ul li dl dd p {
  word-wrap: break-word;
  font-size: 14px;
  padding: 3px 0;
  color: #333;
  box-sizing: border-box; }

.lst-comment {
  width: 100%;
  padding: 0 5px 10px 5px;
  color: #6f6f6f;
  height: auto;
  overflow: hidden;
  clear: both;
  line-height: 18px;
  box-sizing: border-box; }

.lst-comment strong {
  color: #212121; }

.lst-comment .readmore {
  color: #0079BE;
  text-decoration: none;
  padding-bottom: 6px;
  display: block; }

.lst-comment ul {
  float: right;
  margin: 0px;
  padding: 0px; }

.lst-comment > ul {
  border-bottom: solid 1px #e1e1e1; }

.lst-comment > ul > li {
  border-top: solid 1px #e1e1e1;
  float: left; }

.lst-comment > ul > li:first-child {
  border: none; }

.lst-comment ul li {
  padding: 15px 0 15px 0;
  float: left;
  width: 100%;
  list-style-type: none;
  text-rendering: geometricPrecision; }

.lst-comment ul li ul dl {
  margin-left: 20px; }

.lst-comment ul li dl dt {
  position: absolute;
  z-index: 4;
  left: 0px; }

.lst-comment ul li dl dd {
  width: 100%;
  float: left;
  margin-left: 0px;
  box-sizing: border-box; }

.lst-comment ul li dl dd .top {
  overflow: hidden; }

.lst-comment ul li dl dd em {
  color: #a0a0a0;
  font-size: 11px; }

.lst-comment ul li dl dd .name {
  color: #878787;
  font-weight: bold; }

.lst-comment ul li dl dd a:hover.name, .lst-comment ul li dl dd a:hover.reply, .lst-comment ul li dl dd a:hover.like, .lst-comment ul li dl dd a:hover.report {
  text-decoration: underline;
  color: #3b5998; }

.lst-comment ul li dl dd .reply {
  color: #3b5998;
  font-size: 11px;
  cursor: pointer; }

.lst-comment ul li dl dd .like, .lst-comment ul li dl dd .unlike {
  background: url(../images/icon.png) -60px 0 no-repeat;
  padding-left: 15px;
  color: #a0a0a0;
  font-size: 11px; }

.lst-comment ul li dl dd .like strong, .lst-comment ul li dl dd .unlike strong {
  color: #0079BE; }

.lst-comment ul li dl dd .report {
  color: #a0a0a0;
  font-size: 11px;
  border-left: #a0a0a0 solid 1px;
  padding-left: 6px;
  margin-left: 6px; }

.lst-comment .seeall {
  background: #bdcbd6;
  height: 15px;
  float: left;
  padding-left: 5px;
  color: #FFFFFF;
  font-size: 10px;
  margin-top: 5px;
  margin-bottom: 5px;
  line-height: 15px;
  cursor: pointer;
  border-radius: 3px; }

.lst-comment a:hover.seeall {
  color: #164397; }

.lst-comment .seeall span {
  background: #bdcbd6;
  height: 15px;
  float: left;
  padding-right: 5px;
  border-radius: 3px; }

.lst-comment .seeall span span {
  background: #bdcbd6;
  height: 15px;
  float: left; }

.btn-like-cm span {
  color: #7f7f7f;
  padding-left: 2px; }

.readmore-cm {
  color: #164397;
  font-weight: bold;
  padding-left: 5px; }

.readmore-cm:hover {
  text-decoration: underline; }

.like_number {
  font-size: 11px; }

.block-comment .form-comment p.warning {
  font-size: 12px;
  color: #e32c22;
  float: left;
  padding-top: 15px;
  padding-left: 0;
  font-style: normal;
  display: none; }

.form-comment-in {
  width: 100%;
  float: left;
  background: #efefef;
  margin: 5px 0px 15px 0px;
  padding: 15px 20px; }

.form-comment-in .avata {
  width: 118px;
  height: 118px;
  border: 1px solid #dcdcdc;
  float: left;
  overflow: hidden; }

.form-comment-in .avata img {
  width: 100%;
  height: 100%;
  object-fit: cover; }

.block-comment .form-comment textarea {
  float: right;
  width: 77%;
  height: 118px;
  border: 1px solid #dcdcdc;
  font-size: 12px;
  padding: 12px; }

.block-comment .form-comment .bnt-send {
  float: left;
  width: 100%; }

.block-comment .form-comment .bnt-send .login-r {
  line-height: 32px;
  margin: 15px 1px 0px 20px;
  font-size: 13px;
  color: #727272; }

.BL-content {
  width: 91%;
  float: right; }

.BL-content .name {
  font-size: 15px;
  font-weight: bold; }

.cm-content {
  margin-bottom: 0px; }

.list-share li {
  float: left;
  margin-left: 15px;
  width: auto !important;
  line-height: 14px; }

.list-share li a {
  line-height: 14px;
  font-size: 12px; }

.list-share li a i {
  font-size: 14px; }

.list-share li img {
  height: 14px;
  margin-top: -5px; }

.cm-content .minimize {
  font-size: 15px;
  line-height: 20px;
  color: #333; }

.BL-Reply {
  padding-left: 55px;
  padding-bottom: 10px; }

.BL-Reply .BL-content {
  width: 90%;
  float: left; }

.BL-li, .BL-Reply {
  float: left;
  width: 100%; }

.BL-li .line {
  border-bottom: 1px solid #e1e1e1;
  height: 1px;
  width: 100%;
  float: right;
  margin: 10px 0px; }

.reply-more {
  font-size: 16px;
  line-height: 20px;
  font-weight: bold;
  color: #cc0f00; }

#comment_thread h3 {
  font-size: 20px;
  position: relative;
  letter-spacing: -1px;
  border-bottom: 1px solid #e1e1e1;
  line-height: 34px;
  margin-top: 0px; }

#comment_thread h3:after {
  font-size: 20px;
  font-weight: bold;
  border-bottom: 3px solid #164397;
  width: 110px;
  height: 3px;
  position: absolute;
  content: "";
  bottom: -2px;
  left: 0px; }

#comment_thread .avata {
  width: 40px;
  height: 40px;
  border: 1px solid #dcdcdc;
  float: left;
  margin-right: 10px;
  margin-top: 5px;
  overflow: hidden; }

#comment_thread .avata img {
  width: 100%;
  height: 100%;
  object-fit: cover; }

.reply-more {
  font-size: 16px;
  line-height: 20px;
  font-weight: bold;
  color: #164397;
  line-height: 50px; }

.npt-video-detail .col-md-8 {
  padding-right: 30px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 66%;
  flex: 0 0 66%;
  max-width: 66%; }

.npt-video-detail .col-md-4 {
  padding-right: 20px;
  -webkit-box-flex: 0;
  -ms-flex: 0 0 34% !important;
  flex: 0 0 34% !important;
  max-width: 34% !important; }

.npt-video-detail .col-md-4 .npt-onNews-list .npt-news-list li .news-web .content-new a .title {
  font-weight: 700 !important; }

.npt-companySmall {
  background: #f1f1f1; }

.list-calenderEvent-in li .time {
  background: #e7e7e7;
  width: 66px;
  height: 76px;
  float: left;
  margin-right: 12px;
  margin-top: 5px; }

.list-calenderEvent-in li .time p {
  padding: 0px;
  margin: 0px; }

.list-calenderEvent-in li .time .day {
  background: #164397;
  color: #fff;
  width: 100%;
  height: 34px;
  font-weight: 600;
  font-size: 28px;
  font-family: 'Oswald';
  text-align: center;
  line-height: 34px; }

.list-calenderEvent-in li .time .month {
  color: #333333;
  width: 100%;
  font-weight: 600;
  font-size: 14px;
  font-family: 'Oswald';
  text-align: center;
  line-height: 18px;
  padding-top: 5px !important; }

.list-calenderEvent-in li .time .year {
  color: #333333;
  width: 100%;
  font-weight: 300;
  font-size: 14px;
  font-family: 'Oswald';
  text-align: center;
  line-height: 18px; }

.list-calenderEvent-in li .time span {
  color: #fff;
  font-family: 'Open Sans';
  font-size: 14px;
  padding: 0px 6px;
  line-height: 20px;
  height: 20px;
  background: #ed1c24;
  font-weight: 700; }

.npt-calenderEvent-catalog {
  border-bottom: 0px solid #e1e1e1 !important; }

.npt-calenderEvent-catalog .lable {
  float: left;
  width: 100% !important;
  text-align: left !important; }

.npt-calenderEvent-catalog .lable span {
  float: left;
  margin-right: 15px; }

.npt-calenderEvent-catalog .lable h1 {
  line-height: 38px; }

.npt-calenderEvent-catalog .list-calenderEvent {
  display: inline;
  float: left;
  width: 100%;
  margin-top: 15px;
  border-bottom: 1px solid #e1e1e1 !important;
  padding-bottom: 30px; }

.npt-calenderEvent-catalog .list-calenderEvent li {
  float: left;
  width: 25%;
  margin-left: 0px !important; }

.npt-calenderEvent-catalog .list-calenderEvent .li-item h2 {
  padding: 0px 15px 0px 0px; }

.npt-new-caltalog-in .npt-new-news3-right .npt-lable-all.npt-lable h2,
.npt-new-caltalog-in .npt-new-news3-right .npt-lable-all.npt-lable a {
  line-height: 25px; }

.npt-content-map {
  padding: 0px !important; }

.npt-content-map .infomap {
  padding: 60px 0px !important; }

.npt-power-system .container .npt-list-power-system .item-list .hi-icon .imgIcon,
.npt-investment-projects .container .npt-power-system-lable .npt-lable-dt .hi-icon-wrap .hi-icon .imgIcon {
  line-height: 80px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%); }
 #ContentPlaceHolder1_ctl00_row3_container_col3 
.npt-lable-all.npt-lable h2:before {
       width: 350px;
       left: 0%;
       transform: translate(0%, 0%);
}

#ContentPlaceHolder1_ctl00_row3_container_col3 
.npt-lable-all.npt-lable h2:after {
    width: 100px;
    left: 0%;
    transform: translate(0%, 0%);
    
}