<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*==============================
	Common styles
==============================*/
html {
  -webkit-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
html,
body {
  height: 100%;
}
body {
  font-family: 'Ubuntu', sans-serif;
  background-color: #2b2b31;
  font-weight: normal;
  -webkit-font-smoothing: antialiased;
}
button {
  padding: 0;
  border: none;
  background-color: transparent;
  -webkit-transition: 0.4s ease;
  -moz-transition: 0.4s ease;
  transition: 0.4s ease;
  cursor: pointer;
}
button:focus {
  outline: none;
}
a {
  -webkit-transition: 0.4s ease;
  -moz-transition: 0.4s ease;
  transition: 0.4s ease;
}
a:hover,
a:active,
a:focus {
  outline: none;
  text-decoration: none;
}
input,
textarea,
select {
  padding: 0;
  margin: 0;
  -webkit-border-radius: 0;
  border-radius: 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
input:focus,
textarea:focus,
select:focus {
  outline: none;
}
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
::-moz-selection {
  background: #fff;
  color: #000;
  text-shadow: none;
}
::selection {
  background: #fff;
  color: #000;
  text-shadow: none;
}
::-webkit-input-placeholder {
  color: rgba(255,255,255,0.5);
  opacity: 1;
}
::-moz-placeholder {
  color: rgba(255,255,255,0.5);
  opacity: 1;
}
:-moz-placeholder {
  color: rgba(255,255,255,0.5);
  opacity: 1;
}
:-ms-input-placeholder {
  color: rgba(255,255,255,0.5);
  opacity: 1;
}
.tab-content &gt; .tab-pane {
  display: none;
}
.tab-content &gt; .active {
  display: block;
}
.fade {
  -webkit-transition: opacity 0.25s linear;
  -moz-transition: opacity 0.25s linear;
  transition: opacity 0.25s linear;
}
@media screen and (prefers-reduced-motion: reduce) {
  .fade {
    -webkit-transition: none;
    -moz-transition: none;
    transition: none;
  }
}
.fade:not(.show) {
  opacity: 0;
}
.collapse:not(.show) {
  display: none;
}
.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  -webkit-transition: height 0.4s ease;
  -moz-transition: height 0.4s ease;
  transition: height 0.4s ease;
}
@media screen and (prefers-reduced-motion: reduce) {
  .collapsing {
    -webkit-transition: none;
    -moz-transition: none;
    transition: none;
  }
}
.b-description_readmore_button {
  cursor: pointer;
  display: block;
  height: 24px;
  width: 100%;
  position: relative;
}
.b-description_readmore_button:before {
  content: '\f1c8';
  font-family: "Ionicons";
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  text-align: center;
  color: rgba(255,255,255,0.75);
  font-size: 22px;
  line-height: 24px;
  -webkit-transition: 0.4s ease;
  -moz-transition: 0.4s ease;
  transition: 0.4s ease;
}
.b-description_readmore_button:hover:before,
.b-description_readmore_button.b-description_readmore_button_active:before {
  color: #cbe601;
}
.body:before {
  content: '';
  position: fixed;
  display: block;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 99;
  background-color: rgba(43,43,49,0.75);
  opacity: 0;
  pointer-events: none;
  -webkit-transition: 0.4s ease;
  -moz-transition: 0.4s ease;
  transition: 0.4s ease;
}
.body--active:before {
  z-index: 99;
  opacity: 1;
  pointer-events: auto;
}
/*==============================
	Header
==============================*/
.header {
  display: block;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  background-color: #2b2b31;
  z-index: 101;
}
.header__logo {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 70px;
  padding: 0 15px;
  background-color: #2b2b31;
  width: 110px;
}
.header__logo img {
  position: absolute;
  width: 113px;
  top: 0;
  max-width: 113px;
  display: block;
}
.header__logo:hover {
  background-color: #2b2b31;
}
.header__nav {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  position: fixed;
  top: 70px;
  right: 0;
  bottom: 0;
  background-color: #2b2b31;
  z-index: 99;
  width: 305px;
  padding: 30px 30px 0;
  -webkit-transform: translate3d(305px, 0, 0);
  -moz-transform: translate3d(305px, 0, 0);
  transform: translate3d(305px, 0, 0);
  -webkit-transition: 0.4s ease;
  -moz-transition: 0.4s ease;
  transition: 0.4s ease;
}
.header__nav:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  display: block;
  background-image: -moz-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
  background-image: -webkit-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
  background-image: -ms-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
  background-image: linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
}
.header__nav--active {
  -webkit-transform: translate3d(0, 0, 0);
  -moz-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}
.header__nav-link {
  font-size: 14px;
  font-weight: 300;
  text-transform: uppercase;
  color: rgba(255,255,255,0.75);
  letter-spacing: 0.2px;
}
.header__nav-link:hover {
  color: #cbe601;
}
.header__nav-link--more {
  font-weight: 400;
  font-size: 24px;
}
.header__nav-link--active {
  color: #cbe601;
}
.header__nav-item {
  width: 100%;
  display: block;
  margin-bottom: 20px;
  position: relative;
}
.header__nav-item:last-child {
  margin-bottom: 0;
}
.header__nav-item.show .header__nav-link {
  color: #cbe601;
}
.header__dropdown {
  position: relative;
  display: block;
  width: 100%;
}
.header__dropdown-menu {
  position: absolute;
  background-color: #2b2b31;
  -webkit-box-shadow: 0 5px 25px 0 rgba(0,0,0,0.3);
  box-shadow: 0 5px 25px 0 rgba(0,0,0,0.3);
  padding: 15px 20px;
  display: block;
  width: 100%;
  min-width: 200px;
  text-align: left;
  z-index: -1;
  pointer-events: none;
  opacity: 0;
  -webkit-box-shadow: 0 5px 25px 0 rgba(0,0,0,0.3);
  box-shadow: 0 5px 25px 0 rgba(0,0,0,0.3);
  -webkit-transition: 0.4s ease;
  -moz-transition: 0.4s ease;
  transition: 0.4s ease;
  margin-top: 0;
  top: 100%;
}
.header__dropdown-menu:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  display: block;
  background-image: -moz-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
  background-image: -webkit-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
  background-image: -ms-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
  background-image: linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
}
.header__dropdown-menu li {
  padding: 0;
}
.header__dropdown-menu a {
  font-size: 16px;
  color: rgba(255,255,255,0.75) !important;
  line-height: 40px !important;
  display: block !important;
  font-weight: 300 !important;
}
.header__dropdown-menu a:hover {
  color: #cbe601 !important;
  background: none !important;
}
.header__dropdown-menu.show {
  z-index: 1000;
  pointer-events: auto;
  opacity: 1;
  margin-top: 10px;
}
.header__wrap {
  position: relative;
  background-color: #2b2b31;
  z-index: 2;
}
.header__search {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 60px;
  width: 100%;
  overflow: hidden;
  -webkit-transition: 0.4s ease;
  -moz-transition: 0.4s ease;
  transition: 0.4s ease;
  background-color: #2b2b31;
  -webkit-box-shadow: 0 5px 25px 0 rgba(0,0,0,0.3);
  box-shadow: 0 5px 25px 0 rgba(0,0,0,0.3);
  z-index: 1;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.header__search--active {
  bottom: -60px;
}
.header__search-content {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  height: 60px;
  position: relative;
}
.header__search-content input {
  position: relative;
  height: 60px;
  width: 100%;
  background-color: #2b2b31;
  border: none;
  padding: 0 120px 0 15px;
  font-size: 15px;
  color: #fff;
  font-family: 'Open Sans', sans-serif;
}
.header__search-content button {
  position: absolute;
  height: 40px;
  width: 90px;
  top: 10px;
  right: 15px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  background-image: -moz-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
  background-image: -webkit-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
  background-image: -ms-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
  background-image: linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
  opacity: 0.85;
  font-size: 12px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 0.6px;
}
.header__search-content button:hover {
  color: #fff;
  opacity: 1;
}
.header__content {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  height: 70px;
  position: relative;
}
.header__auth {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  margin-right: 5px!important;
  margin-top: -25px;
}
.header__search-btn {
  color: rgba(255,255,255,0.75);
  font-size: 26px;
}
.header__search-btn:hover,
.header__search-btn.active {
  color: #fff;
}
.header__sign-in {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 40px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  background-image: -moz-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
  background-image: -webkit-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
  background-image: -ms-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
  background-image: linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
  opacity: 0.85;
  margin-left: 20px;
}
.header__sign-in span {
  display: none;
}
.header__sign-in i {
  color: #fff;
  font-size: 24px;
}
.header__sign-in:hover {
  opacity: 1;
}
.header__btn {
  display: block;
  position: absolute;
  right: 0;
  top: 50%;
  margin-top: -22px;
  width: 24px;
  height: 40px;
  opacity: 0.8;
}
.header__btn span {
  display: block;
  position: absolute;
  height: 2px;
  width: 24px;
  background: #000;
  opacity: 1;
  left: 0;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: 0.4s ease;
  -moz-transition: 0.4s ease;
  transition: 0.4s ease;
  top: 13px;
  background-color: #fff;
  -webkit-border-radius: 2px;
  border-radius: 2px;
}
.header__btn span:nth-child(2) {
  top: 21px;
}
.header__btn span:nth-child(3) {
  top: 29px;
}
.header__btn:hover {
  opacity: 1;
}
.header__btn--active {
  opacity: 1;
}
.header__btn--active span:nth-child(1) {
  top: 21px;
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
}
.header__btn--active span:nth-child(2) {
  opacity: 0;
}
.header__btn--active span:nth-child(3) {
  top: 21px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.header__lang {
  position: relative;
  margin-left: 20px;
}
.header__lang .header__dropdown-menu {
  min-width: 122px;
  margin-top: -10px;
}
.header__lang .header__dropdown-menu.show {
  margin-top: 0;
}
.header__lang .header__nav-link {
  line-height: 70px;
  display: block;
}
@media (min-width: 360px) {
  .header__logo {
    width: 140px;
  }
  .header__nav {
    width: 235px;
    -webkit-transform: translate3d(235px, 0, 0);
    -moz-transform: translate3d(235px, 0, 0);
    transform: translate3d(235px, 0, 0);
  }
  .header__nav--active {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@media (min-width: 375px) {
  .header__nav {
    width: 250px;
    -webkit-transform: translate3d(250px, 0, 0);
    -moz-transform: translate3d(250px, 0, 0);
    transform: translate3d(250px, 0, 0);
  }
  .header__nav--active {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}
@media (min-width: 414px) {
  .header__nav {
    width: 259px;
    -webkit-transform: translate3d(259px, 0, 0);
    -moz-transform: translate3d(259px, 0, 0);
    transform: translate3d(259px, 0, 0);
  }
  .header__nav--active {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
}

@media (max-width: 576px) {
  .header__logo img {
    max-width: 85px;
	max-height: 85px;
  }
}
@media (min-width: 576px) {
  .header__logo {
    width: 150px;
  }
  .header__logo img {
    max-width: 85px;
	max-height: 85px;
  }
  .header__sign-in,
  .header__lang {
    margin-left: 30px;
  }
  .header__auth {
    margin-right: 54px;
  }
  .header__lang .header__dropdown-menu {
    min-width: 142px;
  }
}
@media (min-width: 768px) {
  .header__content {
    height: 90px;
  }
  .header__logo {
    height: 90px;
    width: 210px;
    padding: 0;
  }
  .header__logo img {
    max-width: 113px;
	max-height: 113px;
  }
  .header__auth {
    margin-right: 54px;
  }
  .header__search-btn {
    font-size: 30px;
  }
  .header__sign-in {
    height: 50px;
    width: 140px;
    margin-left: 30px;
  }
  .header__sign-in i {
    display: none;
  }
  .header__sign-in span {
    display: block;
    font-size: 13px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
  }
  .header__nav {
    top: 90px;
    width: 260px;
    -webkit-transform: translate3d(260px, 0, 0);
    -moz-transform: translate3d(260px, 0, 0);
    transform: translate3d(260px, 0, 0);
  }
  .header__nav--active {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }
  .header__search-content input {
    padding: 0 130px 0 150px;
  }
  .header__search-content select {
    background: #22222d;
    position: absolute;
    right: 120px;
    width: 169px;
    padding: 13px;
    border: none;
    color: #eee;
  }
  .header__search-content button {
    right: 20px;
  }
  .header__lang .header__nav-link {
    line-height: 90px;
  }
}
@media (min-width: 1200px) {
  .header__logo {
    width: 240px;
  }
  .header__sign-in {
    margin-left: 45px;
  }
  .header__auth {
    margin-right: 0;
  }
  .header__btn {
    display: none;
  }
  .header__nav {
    -webkit-transform: translate3d(0, 0, 0);
    -moz-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
    padding: 0;
    background-color: transparent;
    width: auto;
    flex-direction: row;
    align-items: center;
    position: relative;
    top: auto;
    right: auto;
    bottom: auto;
    margin-left: 50px;
  }
  .header__nav:before {
    display: none;
  }
  .header__nav-item {
    margin: 0 45px 0 0;
    width: auto;
  }
  .header__nav-item.mega {
	position: static;
  }
  .header__nav-item:last-child {
    margin: 0;
  }
  .header__nav-link {
    line-height: 90px;
    display: block;
  }
  .header__nav-link--active {
    color: #fff;
    cursor: default;
    position: relative;
  }
  .header__nav-link--active:hover {
    color: #fff;
  }
  .header__nav-link--active:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    display: block;
    background-image: -moz-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
    background-image: -webkit-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
    background-image: -ms-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
    background-image: linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
  }
  .header__content {
    justify-content: flex-start;
  }
  .header__auth {
    margin-left: auto;
  }
  .header__dropdown-menu {
    margin-top: -10px;
  }
  .mega .header__dropdown-menu {
    width: 1120px;
    left: -108px !important;
	height: 170px;
  }
  .header__dropdown-menu.show {
    margin-top: 0;
  }
  .header__lang {
    margin-left: 35px;
  }
}
/*==============================
	Home
==============================*/
.home {
  margin-top: 70px;
  position: relative;
  display: block;
  background-color: #2b2b31;
  padding: 40px 0;
  overflow: hidden;
}
.home .container {
  position: relative;
  z-index: 2;
}
.home__bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
}
.home__cover {
  opacity: 0.07;
}
.home__title {
  color: #fff;
  text-transform: uppercase;
  font-weight: 300;
  font-size: 28px;
  margin: 0;
  padding-right: 70px;
}
.home__title b {
  font-weight: 700;
}
.home__carousel .item {
  margin-top: 25px;
}
.home__carousel .card {
  margin-bottom: 0;
}
.home__nav {
  font-size: 38px;
  color: #fff;
  opacity: 0.7;
  position: absolute;
  top: 50%;
  height: 24px;
  margin-top: -12px;
  right: 15px;
  display: block;
  z-index: 2;
}
.home__nav i {
  line-height: 24px;
  height: 24px;
  display: block;
}
.home__nav i:before {
  line-height: 24px;
}
.home__nav--prev {
  right: 60px;
}
.home__nav:hover {
  opacity: 1;
}
.home--bg:before {
  content: '';
  z-index: 0;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  background: url("../img/home/home__bg.jpg") no-repeat center/cover;
  opacity: 0.06;
}
@media (min-width: 576px) {
  .home__title {
    font-size: 30px;
  }
}
@media (min-width: 768px) {
  .home {
    margin-top: 90px;
    padding: 60px 0;
  }
  .home__title {
    font-size: 32px;
  }
  .home__carousel .item {
    margin-top: 30px;
  }
}
@media (min-width: 1200px) {
  .home {
    padding: 70px 0;
  }
  .home__title {
    font-size: 36px;
  }
}
/*==============================
	Content
==============================*/
.content {
  padding: 0 0 20px;
}
.content__head {
  background-color: #2b2b31;
  -webkit-box-shadow: 0 5px 25px 0 rgba(0,0,0,0.3);
  box-shadow: 0 5px 25px 0 rgba(0,0,0,0.3);
  margin-bottom: 30px;
  position: relative;
}
.content__head:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  display: block;
  background-image: -moz-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
  background-image: -webkit-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
  background-image: -ms-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
  background-image: linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
}
.content__head--profile:before {
  display: none;
}
.content__title {
  color: #fff;
  font-weight: 300;
  font-size: 28px;
  margin: 20px 0 5px;
}
.content__tabs {
  display: none;
}
.content__mobile-tabs {
  position: relative;
}
.content__mobile-tabs--profile {
  margin-bottom: -20px;
}
.content__mobile-tabs-btn {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  cursor: pointer;
  height: 50px;
  opacity: 0.75;
  -webkit-transition: 0.4s ease;
  -moz-transition: 0.4s ease;
  transition: 0.4s ease;
}
.content__mobile-tabs-btn input {
  display: block;
  position: relative;
  width: auto;
  background-color: transparent;
  border: none;
  font-size: 14px;
  color: #fff;
  text-transform: uppercase;
  cursor: pointer;
  height: 50px;
  margin-right: 12px;
  letter-spacing: 0.2px;
  font-weight: 300;
}
.content__mobile-tabs-btn span {
  position: relative;
  width: 16px;
  height: 16px;
  display: block;
}
.content__mobile-tabs-btn span:before,
.content__mobile-tabs-btn span:after {
  content: '';
  position: absolute;
  display: block;
  width: 16px;
  height: 2px;
  background-color: #fff;
  left: 0;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  top: 50%;
  -webkit-transition: 0.4s ease;
  -moz-transition: 0.4s ease;
  transition: 0.4s ease;
  margin-top: -5px;
}
.content__mobile-tabs-btn span:after {
  margin-top: 2px;
  width: 10px;
}
.content__mobile-tabs-btn[aria-expanded="true"] {
  opacity: 1;
}
.content__mobile-tabs-btn[aria-expanded="true"] span:before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-top: -1px;
}
.content__mobile-tabs-btn[aria-expanded="true"] span:after {
  margin-top: -1px;
  width: 16px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.content__mobile-tabs-btn:hover {
  opacity: 1;
}
.content__mobile-tabs-menu {
  top: 100%;
  left: 0;
  margin-top: -10px;
  min-width: 200px;
  padding: 15px 20px;
  background-color: #2b2b31;
  -webkit-box-shadow: 0 5px 25px 0 rgba(0,0,0,0.3);
  box-shadow: 0 5px 25px 0 rgba(0,0,0,0.3);
  display: block;
  -webkit-transition: 0.4s ease;
  -moz-transition: 0.4s ease;
  transition: 0.4s ease;
  position: absolute;
  z-index: 100;
  pointer-events: none;
  opacity: 0;
}
.content__mobile-tabs-menu:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  display: block;
  background-image: -moz-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
  background-image: -webkit-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
  background-image: -ms-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
  background-image: linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
}
.content__mobile-tabs-menu a {
  display: block;
  line-height: 40px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  position: relative;
  text-transform: uppercase;
  font-weight: 300;
}
.content__mobile-tabs-menu a:hover {
  color: #cbe601;
}
.content__mobile-tabs-menu a.active {
  display: none;
}
.content__mobile-tabs-menu.show {
  pointer-events: auto;
  opacity: 1;
  margin-top: 0;
}
@media (min-width: 576px) {
  .content__title {
    font-size: 30px;
    margin: 25px 0 5px;
  }
  .content__tabs {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
  }
  .content__tabs li {
    margin-right: 30px;
  }
  .content__tabs li:last-child {
    margin-right: 0;
  }
  .content__tabs a {
    display: block;
    line-height: 50px;
    color: #fff;
    position: relative;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.2px;
    color: rgba(255,255,255,0.5);
  }
  .content__tabs a:hover {
    color: #fff;
  }
  .content__tabs a:before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    display: block;
    background-image: -moz-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
    background-image: -webkit-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
    background-image: -ms-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
    background-image: linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
    -webkit-box-shadow: none;
    box-shadow: none;
    -webkit-transition: 0.4s ease;
    -moz-transition: 0.4s ease;
    transition: 0.4s ease;
    -webkit-transform: translateY(2px);
    -moz-transform: translateY(2px);
    transform: translateY(2px);
  }
  .content__tabs a.active {
    color: #fff;
  }
  .content__tabs a.active:before {
    -webkit-transform: translateY(0);
    -moz-transform: translateY(0);
    transform: translateY(0);
  }
  .content__tabs--profile {
    display: none;
  }
  .content__mobile-tabs {
    display: none;
  }
  .content__mobile-tabs--profile {
    display: block;
  }
}
@media (min-width: 768px) {
  .content {
    padding: 0 0 30px;
  }
  .content__title {
    font-size: 32px;
    margin: 25px 0 10px;
  }
  .content__head {
    margin-bottom: 50px;
  }
  .content__tabs--profile {
    display: flex;
  }
  .content__tabs--profile a {
    line-height: 90px;
  }
  .content__mobile-tabs--profile {
    display: none;
  }
}
@media (min-width: 1200px) {
  .content__title {
    font-size: 36px;
  }
  .content__tabs--profile li {
    margin-right: 45px;
  }
  .content__tabs--profile li:last-child {
    margin-right: 0;
  }
}
/*==============================
	Section
==============================*/
.section {
  padding: 40px 0;
  position: relative;
}
.section__title {
  color: #fff;
  font-weight: 300;
  font-size: 28px;
  margin-bottom: 25px;
}
.section__title b {
  font-weight: 700;
}
.section__title--center {
  text-align: center;
}
.section__title--no-margin {
  margin-bottom: 10px;
}
.section__text {
  color: rgba(255,255,255,0.7);
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 25px;
  font-family: 'Open Sans', sans-serif;
  letter-spacing: 0.2px;
}
.section__text:last-child {
  margin-bottom: 0;
}
.section__text--last-with-margin:last-child {
  margin-bottom: 30px;
}
.section__text b {
  font-weight: 600;
}
.section__text a {
  color: #cbe601;
}
.section__text a:hover {
  color: #cbe601;
  text-decoration: underline;
}
.section__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 160px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  background-image: -moz-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
  background-image: -webkit-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
  background-image: -ms-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
  background-image: linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
  opacity: 0.85;
  font-size: 13px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1px;
  margin: 10px auto 15px;
  position: relative;
}
.section__btn:hover {
  opacity: 1;
  color: #fff;
}
.section__wrap {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.section--dark {
  background-color: #2b2b31;
}
.section--first {
  margin-top: 100px;
}
.section--first .section__title {
  margin-bottom: 0;
}
.section--first:before {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 2px;
  display: block;
  background-image: -moz-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
  background-image: -webkit-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
  background-image: -ms-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
  background-image: linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
}
@media (min-width: 576px) {
  .section__title {
    font-size: 30px;
  }
}
@media (min-width: 768px) {
  .section {
    padding: 60px 0;
  }
  .section__title {
    font-size: 32px;
    margin-bottom: 35px;
  }
  .section__title--no-margin {
    margin-bottom: 20px;
  }
  .section__wrap {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
  .section__btn {
    margin: 20px auto 15px;
  }
  .section--first {
    margin-top: 90px;
  }
}
@media (min-width: 992px) {
  .section__text--last-with-margin:last-child {
    margin-bottom: 30px;
  }
  .section__title--no-margin {
    margin-bottom: 15px;
  }
}
@media (min-width: 1200px) {
  .section__title {
    font-size: 36px;
  }
  .section__title--sidebar {
    font-size: 32px;
  }
}
/*==============================
	Breadcrumb
==============================*/
.breadcrumb {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-top: 5px;
  background: none !important;
}
ol.breadcrumb {
	margin-bottom: 0;
}
ol.breadcrumb li:last-child,ul.breadcrumb li:last-child {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 100px;
}
.breadcrumb__item,.breadcrumb-item {
  font-size: 14px !important;
  color: rgba(255,255,255,0.5);
  -webkit-transition: 0.4s ease;
  -moz-transition: 0.4s ease;
  transition: 0.4s ease;
  position: relative;
  margin-right: 23px;
  font-family: 'Open Sans', sans-serif;
}
.breadcrumb__item a,.breadcrumb-item a {
  font-size: 14px !important;
}
.breadcrumb__item:before {
  content: '\f119' !important;
  position: absolute !important;
  font-family: "Ionicons" !important;
  color: rgba(255,255,255,0.5) !important;
  left: 100% !important;
  padding: 0 !important;
  top: 0;
  font-size: 22px !important;
  line-height: 26px !important;
  margin-left: 6px !important;
}
.breadcrumb__item:hover {
  color: #fff;
}
.breadcrumb__item--active {
  cursor: default;
  margin-right: 0;
}
.breadcrumb__item--active:before {
  display: none;
}
.breadcrumb__item--active:hover {
  color: rgba(255,255,255,0.5);
}
.breadcrumb a {
  color: rgba(255,255,255,0.5);
}
.breadcrumb a:hover {
  color: #cbe601;
}
@media (max-width: 768px) {
  .breadcrumb {
	padding: 15px 0 0 0 !important;
  }
}
@media (min-width: 768px) {
  .breadcrumb {
    margin-top: 0;
	position: absolute;
    right: 0;
    bottom: -41px;
    z-index: 99;
    margin-bottom: 0;
    background: none;
	padding: 0px 15px;
  }
  .breadcrumb__item, .breadcrumb-item, .breadcrumb-item a {
    font-size: 15px !important;
  }
}
/*==============================
	Card
==============================*/
.card {
  margin-bottom: 30px;
}
#myTabContent2 .card {
  margin-bottom: 69px;
}
.card__cover {
  position: relative;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-transition: 0.4s ease;
  -moz-transition: 0.4s ease;
  transition: 0.4s ease;
  overflow: hidden;
}
.card__cover:hover img {
	transform: scale(1.1);
	filter: grayscale(100%);
}
.card__cover img {
  width: 100%;
  transition: transform .5s, filter 1.5s ease-in-out;
  filter: grayscale(0);
}
.card__cover:hover:before {
  opacity: 0.65;
}
.card__cover:hover .card__play {
  opacity: 1;
}
.card__play {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  top: 50%;
  left: 50%;
  margin: -30px 0 0 -30px;
  z-index: 2;
  font-size: 30px;
  color: #fff;
  -webkit-transition: 0.4s ease;
  -moz-transition: 0.4s ease;
  transition: 0.4s ease;
  opacity: 0;
}
.card__play i {
  display: none;
  margin: 2px 0 0 3px;
}
.card__play:hover {
  color: #fff;
}
.card__content {
  position: relative;
  display: block;
  margin-top: 20px;
}
.card__title {
  font-size: 18px;
  font-weight: 400;
  color: #fff;
  margin: 0;
  /*overflow: hidden;
  white-space: nowrap;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  word-wrap: break-word;*/
}
@media (max-width: 576px) {
	#vosTv .card__title {
		margin-top: -16px;
	}
}
.card__title a {
  color: #fff;
}
.card__title a:hover {
  color: #fff;
}
.card__category {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
}
.card__category a {
  font-size: 14px;
  position: relative;
  background-image: -webkit-linear-gradient(0deg, #cbe601 0%, #60ff00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #60ff00;
  margin-right: 7px;
  opacity: 0.8;
  font-family: 'Open Sans', sans-serif;
}
.card__category a:after {
  content: ',';
  position: absolute;
  display: block;
  left: 100%;

  top: 0;
  background-image: -webkit-linear-gradient(0deg, #cbe601 0%, #60ff00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #60ff00;
}
.card__category a:last-child {
  margin-right: 10px;
}
.card__category a:last-child:after {
  display: none;
}
.card__category a:hover {
  opacity: 1;
}
.card__rate {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  position: relative;
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-top: 2px;
}
.card__rate i {
  text-shadow: 0 0 6px rgba(96,255,0,0.5);
  margin-right: 5px;
}
.card__rate i:before {
  background-image: -webkit-linear-gradient(0deg, #cbe601 0%, #60ff00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #60ff00;
}
.card__list {
  /*display: none;*/
}
.card--list .row &gt; div {
  min-height: 100px;
}
.card__description {
  display: none;
}
.card__meta {
  display: none;
}
.card--details .card__cover img {
  width: 100%;
  max-width: 270px;
}
.card--details .card__cover:before {
  display: none;
}
.card--details .card__cover:hover {
}
.card--details .card__description {
  display: block;
  margin-top: 15px;
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
  line-height: 25px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.2px;
}
.card--details .card__list {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.card--details .card__list li {
  border: 1px solid rgba(255,255,255,0.26);
  padding: 5px 5px 4px;
  line-height: 100%;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  margin-right: 10px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
}
.card--details .card__list li:last-child {
  margin-right: 0;
}
.card__slist li:not(:last-child) {
  border: 1px solid rgba(255,255,255,0.26);
  padding: 5px 5px 4px;
  line-height: 100%;
  -webkit-border-radius: 4px;
  float: left;
  border-radius: 4px;
  margin-right: 10px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
}
.card__slist li:last-child {
  padding: 5px 5px 4px;
  line-height: 100%;
  float: right;
  margin-right: 0;
}
.card__slist li img {
  width: 48px !important;
  margin-top: -11px;
}
.card__slistb li:not(:last-child) {
  border: 1px solid rgba(255,255,255,0.26);
  padding: 5px 5px 4px;
  line-height: 100%;
  -webkit-border-radius: 4px;
  float: left;
  border-radius: 4px;
  margin-right: 1px;
  font-size: 12px;
  font-weight: 700;
  color: rgba(255,255,255,0.65);
}
.card__slistb li:last-child {
  padding: 5px 5px 4px;
  line-height: 100%;
  float: right;
  margin-right: 0;
}
.card__slistb li img {
  width: 48px !important;
  margin-top: -13px;
}
.card--details .card__wrap {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-top: 15px;
}
.card--details .card__content {
  margin-top: 15px;
}
.card--details .card__meta {
  margin-top: 15px;
  display: block;
  font-size: 15px;
  line-height: 24px;
  color: rgba(255,255,255,0.7);
}
.card--details .card__meta span {
  color: rgba(255,255,255,0.7);
  margin-right: 7px;
}
.card--details .card__meta li {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
  flex-wrap: wrap;
  width: 100%;
  font-family: 'Open Sans', sans-serif;
}
.card--details .card__meta li:last-child {
  margin-bottom: 0;
}
.card--details .card__meta a {
  font-size: 15px;
  position: relative;
  background-image: -webkit-linear-gradient(0deg, #cbe601 0%, #60ff00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #60ff00;
  margin-right: 7px;
  opacity: 0.8;
}
.card--details .card__meta a:after {
  content: ',';
  position: absolute;
  display: block;
  left: 100%;
  top: 0;
  background-image: -webkit-linear-gradient(0deg, #cbe601 0%, #60ff00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #60ff00;
}
.card--details .card__meta a:last-child {
  margin-right: 0;
}
.card--details .card__meta a:last-child:after {
  display: none;
}
.card--details .card__meta a:hover {
  opacity: 1;
}
.card--details .card__rate {
  margin-top: 0;
}
.card__list {
    display: inline-flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }
  
  .card__list li {
    border: 1px solid rgba(255,255,255,0.1);
    padding: 5px 5px 4px;
    line-height: 100%;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    margin-right: 10px;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255,255,255,0.65);
  }
  .card__list li:last-child {
    margin-right: 0;
  }
@media (max-width: 576px) {
	.tab-content &gt; .active &gt; .row:after {
		content: ' ';
		width: 100%;
		height: 2px;
		background: rgba(255,255,255,0.75);
		margin-bottom: 30px;
	}
}
@media (min-width: 576px) {
  .card--list .card__content {
    margin-top: 0;
    height: 212px;
    overflow: hidden;
    position: relative;
  }
  .card--list .card__title {
    font-size: 20px;
    line-height: 24px;
    margin-bottom: 5px;
    margin-top: 2px;
  }
  .card--list .card__rate {
    margin-top: 0;
  }
  .card--details .card__content {
    margin-top: 0;
  }
  .card--details .card__wrap {
    margin-top: 0;
  }
  .card--big .card__title {
    font-size: 20px;
	padding: 1px 0 0 0;
  }
  .card__list {
    display: inline-flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }
  .card__list li {
    border: 1px solid rgba(255,255,255,0.1);
    padding: 5px 5px 4px;
    line-height: 100%;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    margin-right: 10px;
    font-size: 12px;
    font-weight: 700;
    color: rgba(255,255,255,0.65);
  }
  .card__list li:last-child {
    margin-right: 0;
  }
  .card__description {
    display: block;
    margin-top: 10px;
  }
  .card__description p {
    font-family: 'Open Sans', sans-serif;
    font-size: 15px;
    line-height: 25px;
    color: rgba(255,255,255,0.7);
    margin-bottom: 15px;
    letter-spacing: 0.2px;
  }
  .card__description p:last-child {
    margin-bottom: 0;
  }
  .card__wrap {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    margin-top: 0px;
  }
}
@media (min-width: 768px) {
  .card--list {
    margin-bottom: 50px;
  }
  .card--list .card__content {
    height: 310px;
  }
}
@media (min-width: 992px) {
  .card--list .card__content {
    height: 190px;
  }
}
@media (min-width: 1200px) {
  .card--big .card__play {
    width: 80px;
    height: 80px;
    margin: -40px 0 0 -40px;
    font-size: 44px;
  }
  .card--big .card__play i {
    margin: 2px 0 0 5px;
  }
  .card--big .card__title {
    font-size: 22px;
  }
  .card--list .card__title {
    font-size: 22px;
  }
  .card--list .card__content {
    height: 237px;
  }
  .card--details {
    margin-bottom: 0;
  }
  .card--series {
    margin-bottom: 30px;
  }
}
/*==============================
	Details
==============================*/
.details {
  position: relative;
  margin-top: 70px;
}
.details__bg {
  position: absolute;
  display: block;
  top: 0;
  right: 0;
  left: 0;
  height: 400px;
  z-index: 1;
  opacity: 0.07;
}
.details:before {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  right: 0;
  height: 400px;
  z-index: 2;
  background: -moz-linear-gradient(top, rgba(43,43,49,0) 0%, #2b2b31 100%);
  background: -webkit-linear-gradient(top, rgba(43,43,49,0) 0%, #2b2b31 100%);
  background: linear-gradient(to bottom, rgba(43,43,49,0) 0%, #2b2b31 100%);
}
.details .container {
  position: relative;
  z-index: 3;
}
.details__title {
  color: #fff;
  font-weight: 300;
  font-size: 28px;
  margin-bottom: 20px;
}
.details__title b {
  font-weight: 700;
}
.details__wrap {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.details__devices {
  margin-top: 30px;
}
.details__devices-title {
  font-size: 14px;
  display: block;
  color: rgba(255,255,255,0.5);
  font-family: 'Open Sans', sans-serif;
}
.details__devices-list {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
}
.details__devices-list li {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
  margin-right: 20px;
  color: rgba(255,255,255,0.75);
}
.details__devices-list li:last-child {
  margin-right: 0;
}
.details__devices-list li i {
  font-size: 16px;
	text-shadow: 0 0 6px rgba(96,255,0,0.5);
    margin-right: 5px;
}
.details__devices-list li i:before {
  background-image: -webkit-linear-gradient(0deg, #cbe601 0%, #60ff00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #60ff00;
}
.details__devices-list li span {
  font-size: 14px;
  font-weight: 300;
}
.details__share {
  margin-top: 30px;
}
.details__share-title {
  font-size: 14px;
  display: block;
  color: rgba(255,255,255,0.5);
  font-family: 'Open Sans', sans-serif;
  margin-bottom: 5px;
}
.details__share-list {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;
}
.details__share-list li {
  margin-right: 20px;
}
.details__share-list li:last-child {
  margin-right: 0;
}
.details__share-list li i {
  font-size: 24px;
}
.details__share-list li.facebook a {
  color: #3b5999;
}
.details__share-list li.instagram a {
  color: #60ff00;
}
.details__share-list li.instagram a i:before {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #60ff00;
}
.details__share-list li.twitter a {
  color: #1da1f2;
}
.details__share-list li.vk a {
  color: #45668e;
}
@media (min-width: 576px) {
  .details__title {
    font-size: 30px;
  }
}
@media (min-width: 768px) {
  .details {
    margin-top: 90px;
  }
  .details__title {
    font-size: 32px;
  }
  .details__wrap {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
    margin-top: 30px;
  }
  .details__share,
  .details__devices {
    margin-top: 0;
  }
}
@media (min-width: 992px) {
  .details__title {
    line-height: 100%;
    margin-bottom: 30px;
  }
}
@media (min-width: 1200px) {
  .details {
    padding: 70px 0;
  }
  .details__title {
    font-size: 36px;
  }
}
/*==============================
	FAQ
==============================*/
.faq {
  display: block;
  margin-bottom: 40px;
}
.faq__title {
  color: #fff;
  font-weight: 400;
  font-size: 24px;
  margin-bottom: 10px;
}
.faq__text {
  font-size: 16px;
  line-height: 26px;
  margin-bottom: 15px;
  color: rgba(255,255,255,0.7);
  font-family: 'Open Sans', sans-serif;
  letter-spacing: 0.2px;
}
.faq__text b {
  font-weight: 600;
}
.faq__text:last-child {
  margin-bottom: 0;
}
@media (min-width: 768px) {
  .faq {
    margin-bottom: 50px;
    margin-top: 15px;
  }
  .faq:last-child {
    margin-bottom: 15px;
  }
}
@media (min-width: 992px) {
  .faq {
    padding: 0 20px 0 0;
  }
}
@media (min-width: 1200px) {
  .faq {
    margin-bottom: 60px;
  }
  .faq:last-child {
    margin-bottom: 15px;
  }
}
/*==============================
	How
==============================*/
.how {
  display: block;
  margin: 15px 0;
}
.how__number {
  font-size: 50px;
  line-height: 100%;
  font-weight: 700;
  margin-bottom: 10px;
  display: inline-block;
  background-image: -webkit-linear-gradient(0deg, #cbe601 0%, #60ff00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #60ff00;
}
.how__title {
  font-size: 18px;
  font-weight: 500;
  color: #fff;
  margin-bottom: 10px;
}
.how__text {
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  line-height: 25px;
  font-family: 'Open Sans', sans-serif;
  margin: 0;
  letter-spacing: 0.2px;
}
.how__text b {
  font-weight: 600;
}
@media (min-width: 992px) {
  .how {
    margin: 20px 0;
  }
}
/*==============================
	Partners
==============================*/
.partner {
  display: block;
  margin: 15px 0;
}
.partner__img {
  max-width: 100%;
  margin: 0 auto;
  display: block;
  -webkit-transition: 0.4s ease;
  -moz-transition: 0.4s ease;
  transition: 0.4s ease;
  opacity: 0.75;
}
.partner:hover .partner__img {
  opacity: 1;
}
@media (min-width: 992px) {
  .partner {
    margin: 20px 0;
  }
}
/*==============================
	Price
==============================*/
.price {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 20px 15px;
  background-color: #2b2b31;
  margin: 15px 0;
  position: relative;
}
.price--premium:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  display: block;
  background-image: -moz-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
  background-image: -webkit-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
  background-image: -ms-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
  background-image: linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
}
.price--premium .price__item:before {
  background-image: -moz-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
  background-image: -webkit-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
  background-image: -ms-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
  background-image: linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
}
.price--profile {
  margin: 0 0 30px;
}
.price__item {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  font-size: 15px;
  color: rgba(255,255,255,0.7);
  margin-top: 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(255,255,255,0.05);
  position: relative;
  padding-left: 15px;
  font-family: 'Open Sans', sans-serif;
}
.price__item:before {
  content: '';
  position: absolute;
  display: block;
  width: 4px;
  height: 4px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background-color: rgba(255,255,255,0.5);
  left: 0;
  top: 50%;
  margin-top: 4px;
}
.price__item--first {
  font-size: 24px;
  font-weight: 400;
  margin-bottom: 5px;
  margin-top: 0;
  padding-top: 0;
  border: none;
  color: #fff;
  padding-left: 0;
}
.price__item--first:before {
  display: none;
}
.price__item--first span:last-child {
  font-weight: 500;
  background-image: -webkit-linear-gradient(0deg, #cbe601 0%, #60ff00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #60ff00;
}
.price__item:nth-child(2) {
  border: none;
}
.price__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 100%;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  background-image: -moz-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
  background-image: -webkit-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
  background-image: -ms-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
  background-image: linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
  opacity: 0.85;
  font-size: 13px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1px;
  margin-top: 20px;
}
.price__btn:hover {
  opacity: 1;
  color: #fff;
}
@media (min-width: 576px) {
  .price {
    padding: 25px 20px;
  }
  .price__btn {
    margin-top: 25px;
  }
}
@media (min-width: 990px) {
  .price--profile {
    margin: 0 0 50px;
  }
}
@media (min-width: 1200px) {
  .price {
    padding: 25px;
  }
}
.plan-features {
  margin-top: 15px;
}
.plan-features li {
  position: relative;
  font-size: 15px;
  color: #fff;
  padding-left: 40px;
  line-height: 26px;
  margin-bottom: 15px;
  font-family: 'Open Sans', sans-serif;
}
.plan-features li:before {
  content: '\f3ff';
  font-family: "Ionicons";
  position: absolute;
  top: 0;
  left: 15px;
  background-image: -webkit-linear-gradient(0deg, #cbe601 0%, #60ff00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #60ff00;
  font-size: 28px;
  line-height: 26px;
}
@media (min-width: 768px) {
  .plan-features {
    margin-bottom: 30px;
    margin-top: 0;
  }
}
/*==============================
	Feature
==============================*/
.feature {
  display: block;
  position: relative;
  margin: 15px 0;
  padding-left: 65px;
}
.feature__icon {
  display: block;
  position: absolute;
  top: -10px;
  left: 0;
  font-size: 46px;
}
.feature__icon:before {
  background-image: -webkit-linear-gradient(0deg, #cbe601 0%, #60ff00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #60ff00;
}
.feature__title {
  color: #fff;
  display: block;
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 10px;
}
.feature__text {
  display: block;
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  line-height: 25px;
  font-family: 'Open Sans', sans-serif;
  margin: 0;
  letter-spacing: 0.2px;
}
@media (min-width: 992px) {
  .feature {
    padding-right: 15px;
    margin: 25px 0 20px;
  }
}
/*==============================
	Catalog
==============================*/
.catalog {
  padding: 0 0 20px;
}
@media (min-width: 768px) {
  .catalog {
    padding: 0 0 45px;
  }
}
/*==============================
	Filter
==============================*/
.filter {
  background-color: #2b2b31;
  -webkit-box-shadow: 0 5px 25px 0 rgba(0,0,0,0.3);
  box-shadow: 0 5px 25px 0 rgba(0,0,0,0.3);
  margin-bottom: 30px;
}
.filter__item {
  position: relative;
  margin-bottom: 20px;
}
.filter__item-label {
  font-size: 12px;
  display: block;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
  letter-spacing: 0.2px;
}
.filter__item-btn {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  cursor: pointer;
  height: 30px;
  -webkit-transition: 0.4s ease;
  -moz-transition: 0.4s ease;
  transition: 0.4s ease;
}
.filter__item-btn input {
  max-width:150px;
  display: block;
  position: relative;
  width: auto;
  background-color: transparent;
  border: none;
  font-size: 16px;
  color: #fff;
  cursor: pointer;
  height: 30px;
  margin-right: 12px;
  font-weight: 500;
}
.filter__item-btn span {
  position: relative;
  width: 16px;
  height: 16px;
  display: block;
  margin-top: 1px;
}
.filter__item-btn span:before,
.filter__item-btn span:after {
  content: '';
  position: absolute;
  display: block;
  width: 16px;
  height: 2px;
  background-color: #fff;
  left: 0;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  top: 50%;
  -webkit-transition: 0.4s ease;
  -moz-transition: 0.4s ease;
  transition: 0.4s ease;
  margin-top: -5px;
  opacity: 0.75;
}
.filter__item-btn span:after {
  margin-top: 2px;
  width: 10px;
}
.filter__item-btn[aria-expanded="true"] span:before,
.filter__item-btn[aria-expanded="true"] span:after {
  opacity: 1;
}
.filter__item-btn[aria-expanded="true"] span:before {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  transform: rotate(45deg);
  margin-top: -1px;
}
.filter__item-btn[aria-expanded="true"] span:after {
  margin-top: -1px;
  width: 16px;
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
.filter__item-btn:hover span:before,
.filter__item-btn:hover span:after {
  opacity: 1;
}
.filter__item-menu {
  top: 100%;
  left: 0;
  margin-top: 0;
  min-width: 200px;
  padding: 15px 20px;
  background-color: #2b2b31;
  -webkit-box-shadow: 0 5px 25px 0 rgba(0,0,0,0.3);
  box-shadow: 0 5px 25px 0 rgba(0,0,0,0.3);
  display: block;
  -webkit-transition: 0.4s ease;
  -moz-transition: 0.4s ease;
  transition: 0.4s ease;
  position: absolute;
  z-index: 100;
  pointer-events: none;
  opacity: 0;
  max-height: 190px;
}
.filter__item-menu:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  display: block;
  background-image: -moz-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
  background-image: -webkit-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
  background-image: -ms-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
  background-image: linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
}
.filter__item-menu li {
  display: block;
  line-height: 40px;
  font-size: 14px;
  color: rgba(255,255,255,0.75);
  position: relative;
  text-transform: uppercase;
  font-weight: 300;
  cursor: pointer;
  -webkit-transition: 0.4s ease;
  -moz-transition: 0.4s ease;
  transition: 0.4s ease;
}
.filter__item-menu li:hover {
  color: #cbe601;
}
.filter__item-menu.show {
  pointer-events: auto;
  opacity: 1;
  margin-top: 10px;
}
.filter__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 20px 0;
}
.filter__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 48px;
  width: 140px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  background-image: -moz-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
  background-image: -webkit-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
  background-image: -ms-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
  background-image: linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
  opacity: 0.85;
  font-size: 13px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1px;
}
.filter__btn:hover {
  opacity: 1;
  color: #fff;
}
.filter__range {
  font-size: 16px;
  color: #fff;
  margin-right: 12px;
  height: 30px;
  font-weight: 500;
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  position: relative;
}
.filter__range div {
  position: relative;
}
.filter__range div:first-child {
  margin-right: 14px;
}
.filter__range div:first-child:after {
  content: '-';
  position: absolute;
  display: block;
  left: 100%;
  top: 0;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  margin-left: 4px;
}
@media (min-width: 768px) {
  .filter {
    margin-bottom: 50px;
  }
}
@media (min-width: 992px) {
  .filter__content {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    height: 90px;
  }
  .filter__items {
    display: flex;
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
  }
  .filter__item {
    margin-bottom: 0;
    margin-right: 50px;
  }
  .filter__item-menu {
    margin-top: 10px;
  }
  .filter__item-menu.show {
    margin-top: 20px;
  }
}
@media (min-width: 1200px) {
  .filter__item {
    margin-right: 60px;
  }
}
/* range slider */
.noUi-target {
  background: #2b2b31;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  border: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.noUi-horizontal {
  height: 4px;
  margin: 10px 0;
}
.noUi-connects {
  background-color: rgba(255,255,255,0.05);
  -webkit-border-radius: 0;
  border-radius: 0;
  border: none;
}
.noUi-connect {
  background-image: -moz-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
  background-image: -webkit-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
  background-image: -ms-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
  background-image: linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
}
.noUi-handle {
  border: none;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  cursor: pointer;
}
.noUi-handle:before,
.noUi-handle:after {
  display: none;
}
.noUi-handle:focus {
  outline: none;
}
.noUi-handle.noUi-handle-lower {
  background-color: #cbe601;
}
.noUi-handle.noUi-handle-upper {
  background-color: #60ff00;
}
.noUi-horizontal .noUi-handle {
  width: 16px;
  height: 16px;
}
html:not([dir="rtl"]) .noUi-horizontal .noUi-handle {
  right: -8px;
}
/*==============================
	Paginator
==============================*/
.paginator {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  margin: 20px auto 30px;
  background-color: #2b2b31;
  -webkit-box-shadow: 0 0 20px 0 rgba(0,0,0,0.3);
  box-shadow: 0 0 20px 0 rgba(0,0,0,0.3);
  -webkit-border-radius: 4px;
  border-radius: 4px;
  height: 50px;
  width: 290px;
}
.paginator__item {
  margin: 0;
}
.paginator__item a {
  font-size: 16px;
  height: 50px;
  width: 50px;
  display: block;
  line-height: 50px;
  color: rgba(255,255,255,0.5);
  text-align: center;
  -webkit-border-radius: 4px;
  border-radius: 4px;
}
.paginator__item:hover a {
  color: #fff;
}
.paginator__item--prev,
.paginator__item--next {
  display: block;
  position: relative;
  height: 50px;
  -webkit-transition: 0.4s ease;
  -moz-transition: 0.4s ease;
  transition: 0.4s ease;
}
.paginator__item--prev a,
.paginator__item--next a {
  font-size: 18px;
}
.paginator__item--active a {
  color: #fff;
  cursor: default;
  font-weight: 500;
  background-image: -moz-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
  background-image: -webkit-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
  background-image: -ms-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
  background-image: linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
}
.paginator__item--active a:hover {
  color: #fff;
}
@media (min-width: 360px) {
  .paginator {
    width: 300px;
  }
}
@media (min-width: 768px) {
  .paginator {
    margin: 30px auto;
  }
  .paginator--list {
    margin: 10px auto 30px;
  }
}
@media (min-width: 1200px) {
  .paginator--list {
    margin: 20px auto 30px;
  }
}
/*==============================
	Comments
==============================*/
.comments {
  margin-bottom: 50px;
}
.comments__autor {
  display: block;
  position: relative;
  padding-left: 55px;
  /*margin-bottom: 15px;*/
}
.comments__avatar {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
.comments__name {
  display: block;
  font-size: 16px;
  color: #fff;
  line-height: 20px;
  font-weight: 400;
}
.comments__time {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  line-height: 20px;
  font-weight: 300;
  font-family: 'Open Sans', sans-serif;
}
.comments__text {
  display: block;
  margin: 0;
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  line-height: 25px;
  background-color: #2b2b31;
  padding: 20px;
  position: relative;
  font-family: 'Open Sans', sans-serif;
  letter-spacing: 0.2px;
}
.comments__text span {
  display: block;
  background-color: #2b2b31;
  margin-bottom: 20px;
  padding: 20px;
  position: relative;
  min-height: 80px;
}
.comments__text span:before {
  content: '\f1f5';
  position: absolute;
  display: block;
  font-family: "Ionicons";
  background-image: -webkit-linear-gradient(0deg, rgba(203,230,1,0.12) 0%, rgba(96,255,0,0.12) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #60ff00;
  font-size: 64px;
  top: 10px;
  left: 15px;
  line-height: 100%;
}
.comments__item {
  margin-bottom: 30px;
  display: block;
  border-bottom: 1px solid #666;
}
.comments__item--answer,
.comments__item--quote {
  margin-left: 25px;
}
.comments__actions {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  background-color: #2b2b31;
  padding: 15px 20px;
  border-top: 1px solid rgba(255,255,255,0.05);
  position: relative;
}
.comments__actions button {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  font-size: 12px;
  color: rgba(255,255,255,0.5);
  margin-right: 20px;
  height: 22px;
  text-transform: uppercase;
  font-weight: 300;
}
.comments__actions button i {
  margin-right: 5px;
}
.comments__actions button:hover {
  color: #cbe601;
}
.comments__actions button:last-child {
  margin-right: 0;
}
.comments__rate {
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  position: absolute;
  left: 20px;
  top: 50%;
  margin-top: -15px;
}
.comments__rate button {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  color: rgba(255,255,255,0.5);
  font-size: 13px;
  margin-right: 25px;
  position: relative;
  height: 30px;
}
.comments__rate button i {
  font-size: 18px;
  opacity: 0.5;
  -webkit-transition: 0.4s ease;
  -moz-transition: 0.4s ease;
  transition: 0.4s ease;
}
.comments__rate button:last-child {
  margin-right: 0;
}
.comments__rate button:last-child i {
  margin-left: 6px;
  color: #c22b3c;
}
.comments__rate button:first-child i {
  margin-right: 6px;
  color: #0cb457;
}
.comments__rate button:first-child:before {
  content: '';
  position: absolute;
  display: block;
  left: 100%;
  margin-left: 12px;
  width: 1px;
  height: 15px;
  background-color: rgba(255,255,255,0.05);
  top: 50%;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  transform: translateY(-50%);
}
.comments__rate button:hover {
  color: rgba(255,255,255,0.5);
}
.comments__rate button:hover i {
  opacity: 1;
}
@media (min-width: 768px) {
  .comments__item--answer,
  .comments__item--quote {
    margin-left: 55px;
  }
}
@media (min-width: 992px) {
  .comments {
    margin-bottom: 45px;
    padding-right: 20px;
  }
}
/*==============================
	Reviews
==============================*/
.reviews {
  margin-bottom: 40px;
}
.reviews__autor {
  display: block;
  position: relative;
  padding-left: 55px;
  /*margin-bottom: 15px;*/
  padding-right: 60px;
}
.reviews__avatar {
  position: absolute;
  top: 0;
  left: 0;
  width: 40px;
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
.reviews__name {
  display: block;
  font-size: 16px;
  color: #fff;
  line-height: 20px;
  font-weight: 400;
  margin-bottom: 5px;
}
.reviews__time {
  display: block;
  font-size: 13px;
  color: rgba(255,255,255,0.5);
  font-weight: 300;
  line-height: 20px;
}
.reviews__text {
  display: block;
  margin: 0;
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  line-height: 25px;
  background-color: #2b2b31;
  padding: 20px;
  font-family: 'Open Sans', sans-serif;
  letter-spacing: 0.2px;
}
.reviews__item {
  margin-bottom: 30px;
  display: block;
  border-bottom: 1px solid #666;
}
.reviews__item--answer {
  margin-left: 55px;
}
.reviews__rating {
  font-size: 16px;
  font-weight: 500;
  color: #fff;
  position: absolute;
  display: inline-flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  right: 0;
  top: 8px;
}
.reviews__rating i {
  text-shadow: 0 0 6px rgba(96,255,0,0.5);
  margin-right: 5px;
}
.reviews__rating i:before {
  background-image: -webkit-linear-gradient(0deg, #cbe601 0%, #60ff00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #60ff00;
}
@media (min-width: 576px) {
  .reviews__name {
    margin-bottom: 0;
  }
}
@media (min-width: 992px) {
  .reviews {
    margin-bottom: 30px;
    padding-right: 20px;
  }
}
/*==============================
	Form
==============================*/
.form {
  background-color: #2b2b31;
  padding: 20px;
}
.form__input {
  border: none;
  height: 50px;
  color: #fff;
  padding: 0 20px;
  letter-spacing: 0.2px;
  background-color: #2b2b31;
  margin-bottom: 20px;
  width: 100%;
  font-family: 'Open Sans', sans-serif;
  font-size: 15px;
}
.form__textarea {
  border: none;
  height: 150px;
  position: relative;
  color: #fff;
  font-size: 15px;
  width: 100%;
  color: #fff;
  padding: 15px 20px;
  letter-spacing: 0.2px;
  resize: none;
  background-color: #2b2b31;
  font-family: 'Open Sans', sans-serif;
}
.form__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 160px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  background-image: -moz-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
  background-image: -webkit-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
  background-image: -ms-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
  background-image: linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
  opacity: 0.85;
  font-size: 13px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1px;
  margin: 20px 0 0 0;
}
.form__btn:hover {
  opacity: 1;
  color: #fff;
}
.form__slider {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-top: 40px;
  position: relative;
}
.form__slider:before {
  content: 'Rate:';
  position: absolute;
  bottom: 100%;
  left: 0;
  display: block;
  color: rgba(255,255,255,0.5);
  font-size: 15px;
  height: 20px;
  line-height: 20px;
  font-family: 'Open Sans', sans-serif;
}
.form__slider-rating {
  width: 160px;
  margin-right: 20px;
}
.form__slider-rating .noUi-connects {
  background-color: rgba(255,255,255,0.05);
}
.form__slider-rating .noUi-handle.noUi-handle-lower {
  background-color: #60ff00;
}
.form__slider-value {
  font-size: 16px;
  color: #fff;
  font-weight: 500;
}
/*==============================
	Gallery
==============================*/
.gallery {
  margin-bottom: 20px;
}
.gallery figure {
  margin: 0 0 30px;
}
.gallery figure a {
  display: block;
  position: relative;
  overflow: hidden;
  -webkit-transition: 0.4s ease;
  -moz-transition: 0.4s ease;
  transition: 0.4s ease;
}
#tab-4 .gallery figure img {
  width: 100%;
}
.gallery h3.splitPhotos {
	display: block;
    color: #60ff00;
    font-weight: bold;
    width: 100%;
    border-bottom: 2px solid #60ff00;
    margin-bottom: 13px;
    padding: 6px 13px;
}
.gallery figcaption {
  color: #bdbdbd;
  font-size: 11px;
  padding-top: 6px;
}
@media (min-width: 992px) {
  .gallery {
    margin-bottom: 35px;
    padding-right: 20px;
  }
}
/*==============================
	Accordion
==============================*/
.accordion {
  background-color: #2b2b31;
  padding: 20px;
  overflow: hidden;
  max-height: 303px;
  height: 303px;
}
.accordion__card {
  background-color: #2b2b31;
  margin-bottom: 20px;
}
.accordion__card:last-child {
  margin-bottom: 0;
}
.accordion__card .card-header button {
  width: 100%;
  text-align: left;
  padding: 10px 45px 10px 15px;
  position: relative;
}
.accordion__card .card-header button span {
  display: block;
}
.accordion__card .card-header button span:first-child {
  color: #fff;
  font-size: 18px;
  font-weight: 300;
  -webkit-transition: 0.4s ease;
  -moz-transition: 0.4s ease;
  transition: 0.4s ease;
  margin: 0;
}
.accordion__card .card-header button span:last-child {
  color: rgba(255,255,255,0.5);
  margin: 0;
  font-family: 'Open Sans', sans-serif;
  font-size: 14px;
}
.accordion__card .card-header button:before {
  content: '\f3d0';
  font-family: "Ionicons";
  position: absolute;
  display: block;
  background-image: -webkit-linear-gradient(0deg, #cbe601 0%, #60ff00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #60ff00;
  font-size: 24px;
  right: 15px;
  top: 50%;
  height: 40px;
  line-height: 40px;
  margin-top: -20px;
  -webkit-transition: 0.4s ease;
  -moz-transition: 0.4s ease;
  transition: 0.4s ease;
}
.accordion__card .card-header button[aria-expanded="true"]:before {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  transform: rotate(180deg);
}
.accordion__card .card-header button[aria-expanded="true"] span:first-child {
  color: #cbe601;
}
.accordion__card .card-header button:hover span:first-child {
  color: #cbe601;
}
.accordion__card .card-body {
  padding: 10px 15px;
  border-top: 1px solid rgba(255,255,255,0.05);
}
.accordion__list {
  width: 100%;
}
.accordion__list thead tr {
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.accordion__list thead th {
  color: rgba(255,255,255,0.7);
  font-size: 14px;
  font-weight: 400;
  padding: 5px 10px;
  font-family: 'Open Sans', sans-serif;
}
.accordion__list tbody tr {
  border-bottom: 1px solid rgba(255,255,255,0.05);
  cursor: pointer;
}
.accordion__list tbody tr:hover {
  background-color: rgba(255,255,255,0.01);
}
.accordion__list tbody tr:last-child {
  border-bottom: none;
}
.accordion__list tbody th,
.accordion__list tbody td {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
  padding: 5px 10px 5px;
  font-family: 'Open Sans', sans-serif;
}
@media (min-width: 1200px) {
  .accordion {
    max-height: 303px;
    height: 303px;
  }
}
/*==============================
	Footer
==============================*/
@media only screen and (max-width: 767px) {
	
	.footer-center-mobile {
		display: -webkit-box;
			display: -ms-flexbox;
				display: flex;
		-webkit-box-pack: center;
		    -ms-flex-pack: center;
		        justify-content: center;
	}
	
	.footer-menu,
	.footer-social {
		text-align: center;
	}
	
}
.footer {
  background-color: #2b2b31;
  -webkit-box-shadow: 0 5px 25px 0 rgba(0,0,0,0.3);
  box-shadow: 0 5px 25px 0 rgba(0,0,0,0.3);
  display: block;
  position: relative;
  overflow: hidden;
  padding: 40px 0 30px;
}
.footer:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  display: block;
  background-image: -moz-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
  background-image: -webkit-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
  background-image: -ms-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
  background-image: linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
}
.footer__title {
  color: #fff;
  font-size: 16px;
  font-weight: 500;
  letter-spacing: 0.4px;
  margin-bottom: 10px;
  margin-top: 15px;
}
.footer__list {
  margin-bottom: 15px;
}
.footer__list li {
  margin-bottom: 10px;
  font-family: 'Open Sans', sans-serif;
}
.footer__list li:last-child {
  margin-bottom: 0;
}
.footer__list a {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
}
.footer__list a:hover {
  color: #cbe601;
}
.footer__app {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 15px;
  margin-top: 15px;
}
.footer__app li {
  margin-right: 15px;
}
.footer__app li img {
  width: 130px;
}
.footer__app li:last-child {
  margin-right: 0;
}
.footer__social {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 15px;
}
.footer__social li {
  margin-right: 20px;
}
.footer__social li:last-child {
  margin-left: 0;
}
.footer__social li.facebook a {
  color: #3b5999;
}
.footer__social li.instagram a {
  color: #60ff00;
}
.footer__social li.instagram a i:before {
  background: radial-gradient(circle at 30% 107%, #fdf497 0%, #fdf497 5%, #fd5949 45%, #d6249f 60%, #285aeb 90%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #60ff00;
}
.footer__social li.twitter a {
  color: #1da1f2;
}
.footer__social li.vk a {
  color: #45668e;
}
.footer__social a {
  font-size: 24px;
  color: rgba(255,255,255,0.5);
}
.footer__social a:hover {
  color: #cbe601;
}
.footer__copyright {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin-top: 15px;
  border-top: 1px solid rgba(255,255,255,0.05);
  padding-top: 30px;
  font-family: 'Open Sans', sans-serif;
}
.footer__copyright small {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
}
.footer__copyright small a {
  color: rgba(255,255,255,0.5);
}
.footer__copyright small a:hover {
  text-decoration: underline;
}
.footer__copyright ul {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: flex-start;
  margin-top: 10px;
}
.footer__copyright ul li {
  margin-right: 20px;
}
.footer__copyright ul li:last-child {
  margin-right: 0;
}
.footer__copyright ul a {
  color: rgba(255,255,255,0.5);
  font-size: 14px;
}
.footer__copyright ul a:hover {
  color: #cbe601;
}
@media (min-width: 768px) {
  .footer {
    padding: 60px 0 30px;
  }
  .footer__copyright {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
    margin-top: 60px;
  }
  .footer__copyright ul {
    margin-top: 0;
  }
  .footer__list a {
    font-size: 15px;
  }
  .footer__app {
    flex-direction: column;
    align-items: flex-start;
    margin-top: 0;
  }
  .footer__app li {
    margin-right: 0;
    margin-bottom: 15px;
  }
  .footer__app li img {
    width: 140px;
  }
  .footer__app li:last-child {
    margin-top: 0;
    margin-bottom: 0;
  }
  .footer__title {
    margin-bottom: 15px;
  }
}
@media (min-width: 992px) {
  .footer__copyright ul li {
    margin-right: 30px;
  }
}
/*==============================
	Sign
==============================*/
.sign {
  display: block;
  position: relative;
}
.sign__content {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  padding: 40px 0;
}
.sign__form {
  background-color: #2b2b31;
  -webkit-box-shadow: 0 5px 25px 0 rgba(0,0,0,0.3);
  box-shadow: 0 5px 25px 0 rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 20px;
  position: relative;
}
.sign__form:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  display: block;
  background-image: -moz-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
  background-image: -webkit-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
  background-image: -ms-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
  background-image: linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
}
.sign__logo {
  margin-bottom: 40px;
}
.sign__logo a {
  max-width: 100%;
  width: auto;
}
.sign__logo img {
  max-width: 172px;
}
.sign__input {
  background-color: #232227;
  border: none;
  height: 50px;
  position: relative;
  color: #fff;
  font-size: 15px;
  width: 250px;
  color: #fff;
  -webkit-border-radius: 0;
  border-radius: 0;
  padding: 0 20px;
  letter-spacing: 0.2px;
  font-family: 'Open Sans', sans-serif;
}
.sign__group {
  position: relative;
  margin-bottom: 20px;
}
.sign__group--checkbox {
  width: 100%;
  text-align: left;
}
.sign__group--checkbox input:not(:checked),
.sign__group--checkbox input:checked {
  position: absolute;
  left: -9999px;
}
.sign__group--checkbox input:not(:checked) + label,
.sign__group--checkbox input:checked + label {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  font-family: 'Open Sans', sans-serif;
  position: relative;
  cursor: pointer;
  padding-left: 34px;
  line-height: 22px;
  margin: 0;
}
.sign__group--checkbox input:not(:checked) + label a,
.sign__group--checkbox input:checked + label a {
  background-image: -webkit-linear-gradient(0deg, #cbe601 0%, #60ff00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #60ff00;
  opacity: 0.75;
}
.sign__group--checkbox input:not(:checked) + label a:hover,
.sign__group--checkbox input:checked + label a:hover {
  opacity: 1;
}
.sign__group--checkbox input:not(:checked) + label:before,
.sign__group--checkbox input:checked + label:before {
  content: '';
  position: absolute;
  border: 1px solid #60ff00;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  background-color: #2b2b31;
}
.sign__group--checkbox input:not(:checked) + label:after,
.sign__group--checkbox input:checked + label:after {
  font-family: 'Ionicons';
  content: '\f3ff';
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  font-size: 20px;
  line-height: 20px;
  text-align: center;
  -webkit-transition: 0.4s;
  -moz-transition: 0.4s;
  transition: 0.4s;
  color: #cbe601;
}
.sign__group--checkbox input:not(:checked) + label:after {
  opacity: 0;
  -webkit-transform: scale(0);
  -moz-transform: scale(0);
  transform: scale(0);
}
.sign__group--checkbox input:checked + label:after {
  opacity: 1;
  -webkit-transform: scale(1);
  -moz-transform: scale(1);
  transform: scale(1);
}
.sign__group--checkbox label::-moz-selection {
  background: transparent;
  color: rgba(255,255,255,0.5);
}
.sign__group--checkbox label::selection {
  background: transparent;
  color: rgba(255,255,255,0.5);
}
.sign__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 100%;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  background-image: -moz-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
  background-image: -webkit-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
  background-image: -ms-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
  background-image: linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
  opacity: 0.85;
  font-size: 13px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1px;
  margin: 20px auto 0;
}
.sign__btn:hover {
  opacity: 1;
  color: #fff;
}
.sign__text {
  margin-top: 20px;
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  font-family: 'Open Sans', sans-serif;
}
.sign__text a {
  position: relative;
  background-image: -webkit-linear-gradient(0deg, #cbe601 0%, #60ff00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #60ff00;
  opacity: 0.8;
}
.sign__text a:hover {
  opacity: 1;
}
@media (min-width: 360px) {
  .sign__input {
    width: 280px;
  }
}
@media (min-width: 768px) {
  .sign__form {
    padding: 50px 60px;
  }
  .sign__logo {
    margin-bottom: 50px;
  }
}
/*==============================
	Page 404
==============================*/
.page-404 {
  display: block;
  position: relative;
}
.page-404__wrap {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  width: 100%;
  min-height: 100vh;
  padding: 40px 0;
}
.page-404__content {
  background-color: #2b2b31;
  -webkit-box-shadow: 0 5px 25px 0 rgba(0,0,0,0.3);
  box-shadow: 0 5px 25px 0 rgba(0,0,0,0.3);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  padding: 40px 0;
  position: relative;
  width: 100%;
  max-width: 400px;
}
.page-404__content:before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  display: block;
  background-image: -moz-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
  background-image: -webkit-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
  background-image: -ms-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
  background-image: linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
}
.page-404__title {
  position: relative;
  background-image: -webkit-linear-gradient(0deg, #cbe601 0%, #60ff00 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  color: #60ff00;
  line-height: 100%;
  font-size: 80px;
  margin-bottom: 15px;
  text-shadow: 0 12px 64px rgba(96,255,0,0.35);
}
.page-404__text {
  text-align: center;
  display: block;
  width: 100%;
  padding: 0 20px;
  color: rgba(255,255,255,0.7);
  font-size: 15px;
  line-height: 25px;
  font-family: 'Open Sans', sans-serif;
  margin-bottom: 20px;
}
.page-404__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 160px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  background-image: -moz-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
  background-image: -webkit-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
  background-image: -ms-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
  background-image: linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
  opacity: 0.85;
  font-size: 13px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1px;
  margin: 20px auto 0;
}
.page-404__btn:hover {
  opacity: 1;
  color: #fff;
}
@media (min-width: 768px) {
  .page-404__content {
    padding: 50px 0;
  }
  .page-404__title {
    font-size: 100px;
  }
}
/*==============================
	Profile
==============================*/
.profile {
  background-color: #2b2b31;
  -webkit-box-shadow: 0 5px 25px 0 rgba(0,0,0,0.3);
  box-shadow: 0 5px 25px 0 rgba(0,0,0,0.3);
  margin-bottom: 30px;
}
.profile__content {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
  padding: 20px 0;
}
.profile__user {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 10px;
}
.profile__meta {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: flex-start;
}
.profile__meta h3 {
  color: #fff;
  display: block;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 2px;
}
.profile__meta span {
  font-family: 'Open Sans', sans-serif;
  color: rgba(255,255,255,0.5);
  font-size: 14px;
}
.profile__avatar {
  display: block;
  position: relative;
  width: 50px;
  cursor: pointer;
  overflow: hidden;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  margin-right: 15px;
}
.profile__avatar img {
  width: 100%;
}
.profile__logout {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 40px;
  width: 40px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  background-color: rgba(255,255,255,0.05);
  -webkit-box-shadow: 0 0 20px 0 rgba(0,0,0,0.15);
  box-shadow: 0 0 20px 0 rgba(0,0,0,0.15);
  font-size: 13px;
  color: #666 !important;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1px;
  opacity: 0.85;
  position: absolute;
  top: 25px;
  right: 15px;
}
.profile__logout:hover {
  opacity: 1;
  color: #fff;
}
.profile__logout span {
  display: none;
}
.profile__logout i {
  color: #fff;
  font-size: 24px;
}
.profile__form {
  background-color: #2b2b31;
  -webkit-box-shadow: 0 0 20px 0 rgba(0,0,0,0.3);
  box-shadow: 0 0 20px 0 rgba(0,0,0,0.3);
  padding: 20px 15px;
  margin-bottom: 30px;
}
.profile__title {
  color: #fff;
  display: block;
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 20px;
}
.profile__group {
  position: relative;
  margin-bottom: 20px;
}
.profile__label {
  letter-spacing: 0.2px;
  font-family: 'Open Sans', sans-serif;
  color: rgba(255,255,255,0.75);
  font-size: 15px;
  margin-bottom: 10px;
}
.profile__input {
  background-color: #232227;
  border: none;
  height: 50px;
  position: relative;
  color: #fff;
  font-size: 15px;
  width: 100%;
  color: #fff;
  -webkit-border-radius: 0;
  border-radius: 0;
  padding: 0 20px;
  letter-spacing: 0.2px;
  font-family: 'Open Sans', sans-serif;
}
.profile__btn {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 50px;
  width: 100%;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  background-image: -moz-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
  background-image: -webkit-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
  background-image: -ms-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
  background-image: linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
  opacity: 0.85;
  font-size: 13px;
  color: #fff;
  text-transform: uppercase;
  font-weight: 500;
  letter-spacing: 1px;
  margin: 10px auto 0;
}
.profile__btn:hover {
  opacity: 1;
  color: #fff;
}
@media (min-width: 360px) {
  .profile__form {
    padding: 20px;
  }
}
@media (min-width: 768px) {
  .profile {
    margin-bottom: 50px;
  }
  .profile__content {
    flex-direction: row;
    justify-content: flex-start;
    align-items: center;
    padding: 0;
    height: 90px;
  }
  .profile__user {
    width: 210px;
    margin-bottom: 0;
    margin-right: 35px;
  }
  .profile__logout {
    margin-left: auto;
    margin-top: 0;
    height: 50px;
    width: 140px;
    position: relative;
    top: auto;
    right: auto;
  }
  .profile__logout i {
    display: none;
  }
  .profile__logout span {
    display: block;
  }
  .profile__form {
    padding: 30px 20px;
    margin-bottom: 50px;
  }
  .profile__title {
    margin-bottom: 25px;
  }
  .profile__btn {
    width: 140px;
    margin: 10px 0 0;
  }
}
@media (min-width: 992px) {
  .profile__form {
    padding: 30px;
  }
}
@media (min-width: 1200px) {
  .profile__user {
    width: 240px;
    margin-right: 50px;
  }
}
/*==============================
	Plyr customization
==============================*/
.plyr {
  font-family: 'Ubuntu', sans-serif;
  font-weight: 300;
}
.plyr__menu__container .plyr__control {
  -webkit-transition: 0s ease;
  -moz-transition: 0s ease;
  transition: 0s ease;
}
.plyr__control--overlaid {
  background-image: -moz-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
  background-image: -webkit-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
  background-image: -ms-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
  background-image: linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 20px;
  -webkit-transition: 0.4s ease;
  -moz-transition: 0.4s ease;
  transition: 0.4s ease;
}
.plyr__control--overlaid:hover {
  background-image: -moz-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
  background-image: -webkit-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
  background-image: -ms-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
  background-image: linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
}
.plyr__control.plyr__control--overlaid {
  -webkit-border-radius: 50%;
  border-radius: 50%;
}
.plyr--video .plyr__control.plyr__tab-focus,
.plyr--video .plyr__control:hover,
.plyr--video .plyr__control[aria-expanded="true"] {
  background: none;
  background-image: -moz-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
  background-image: -webkit-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
  background-image: -ms-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
  background-image: linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
}
.plyr--video .plyr__progress__buffer {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.plyr__progress__buffer {
  -webkit-border-radius: 0;
  border-radius: 0;
}
.plyr--full-ui input[type="range"] {
  color: #cbe601;
  -webkit-border-radius: 0;
  border-radius: 0;
}
.plyr__tab-focus {
  -webkit-box-shadow: none;
  box-shadow: none;
  outline: none;
}
.plyr__tooltip {
  font-weight: 300;
}
.plyr__control.plyr__tab-focus {
  -webkit-box-shadow: none;
  box-shadow: none;
}
.plyr__menu__container .plyr__control[role="menuitemradio"][aria-checked="true"]::before {
  background: none;
  background-image: -moz-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
  background-image: -webkit-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
  background-image: -ms-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
  background-image: linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
}
.plyr__control {
  -webkit-border-radius: 4px;
  border-radius: 4px;
}
.plyr--video .plyr__control svg {
  filter: none;
}
.videoP {
	max-width: 600px;
    height: 56vw;
    max-height: 400px;
}
.videoP img {
	max-width: 100%;
	max-height: 400px;
	min-width: 400px;
	margin: auto;
	display: block;
}
.videoP:before {
  content: '';
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 100%;
  right: 0;
  bottom: 0;
  background-image: -moz-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
  background-image: -webkit-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
  background-image: -ms-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
  background-image: linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
  z-index: 1;
  opacity: 0;
  -webkit-transition: 0.4s ease;
  -moz-transition: 0.4s ease;
  transition: 0.4s ease;
}
.videoP:hover {
}
.videoP:hover:before {
  opacity: 0.65;
}
.videoP:hover .video__play {
  opacity: 1;
}
.video__play {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  width: 60px;
  height: 60px;
  border: 2px solid #fff;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  top: 50%;
  left: 50%;
  margin: -30px 0 0 -30px;
  z-index: 2;
  font-size: 30px;
  color: #fff;
  -webkit-transition: 0.4s ease;
  -moz-transition: 0.4s ease;
  transition: 0.4s ease;
  opacity: 0;
}
/*==============================
	PhotoSwipe customization
==============================*/
.pswp__bg {
  background-color: rgba(43,43,49,0.8);
}
.pswp__ui--fit .pswp__top-bar,
.pswp__ui--fit .pswp__caption {
  background-color: transparent;
}
.pswp__caption__center {
  font-size: 16px;
  color: #fff;
  padding: 15px;
  font-weight: 300;
}
.pswp__counter {
  font-size: 14px;
  color: #fff;
  padding: 0 15px;
  font-weight: 300;
}
.pswp__button--close {
  background: none;
}
.pswp__button--close:before {
  content: '\f2c0';
  font-family: "Ionicons";
  position: absolute;
  display: block;
  font-size: 28px;
  color: #fff;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
.pswp__button--fs {
  background: none;
}
.pswp__button--fs:before {
  content: '\f2e7';
  font-family: "Ionicons";
  position: absolute;
  display: block;
  font-size: 24px;
  color: #fff;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
}
.pswp--fs .pswp__button--fs:before {
  content: '\f2d8';
}
.pswp__button--arrow--right:before,
.pswp__button--arrow--left:before {
  font-family: "Ionicons";
  position: absolute;
  display: block;
  font-size: 24px;
  color: #fff;
  top: 50%;
  left: 50%;
  -webkit-transform: translateX(-50%) translateY(-50%);
  -moz-transform: translateX(-50%) translateY(-50%);
  transform: translateX(-50%) translateY(-50%);
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  background: none;
  background-color: #2b2b31;
}
.pswp__button--arrow--left:before {
  content: '\f27d';
}
.pswp__button--arrow--right:before {
  content: '\f287';
}
/*==============================
	mCustomScrollbar customization
==============================*/
/* scroll bar 1 */
.mCS-custom-bar {
  opacity: 1;
}
.mCS-custom-bar.mCSB_outside + .mCSB_scrollTools {
  right: 2px;
  top: 15px;
  bottom: 15px;
}
.mCS-custom-bar.mCSB_scrollTools .mCSB_draggerRail {
  background-color: rgba(255,255,255,0.05);
}
.mCS-custom-bar.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-image: -moz-linear-gradient(180deg, #cbe601 0%, #60ff00 100%);
  background-image: -webkit-linear-gradient(180deg, #cbe601 0%, #60ff00 100%);
  background-image: -ms-linear-gradient(180deg, #cbe601 0%, #60ff00 100%);
  background-image: linear-gradient(180deg, #cbe601 0%, #60ff00 100%);
  width: 2px;
  -webkit-border-radius: 0;
  border-radius: 0;
}
.mCS-custom-bar.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-image: -moz-linear-gradient(180deg, #cbe601 0%, #60ff00 100%);
  background-image: -webkit-linear-gradient(180deg, #cbe601 0%, #60ff00 100%);
  background-image: -ms-linear-gradient(180deg, #cbe601 0%, #60ff00 100%);
  background-image: linear-gradient(180deg, #cbe601 0%, #60ff00 100%);
}
.mCS-custom-bar.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-custom-bar.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-image: -moz-linear-gradient(180deg, #cbe601 0%, #60ff00 100%);
  background-image: -webkit-linear-gradient(180deg, #cbe601 0%, #60ff00 100%);
  background-image: -ms-linear-gradient(180deg, #cbe601 0%, #60ff00 100%);
  background-image: linear-gradient(180deg, #cbe601 0%, #60ff00 100%);
}
/* scroll bar 2 */
.mCS-custom-bar2 {
  opacity: 1;
}
.mCS-custom-bar2.mCSB_outside + .mCSB_scrollTools {
  right: 2px;
  top: 20px;
  bottom: 20px;
}
.mCS-custom-bar2.mCSB_scrollTools .mCSB_draggerRail {
  background-color: rgba(255,255,255,0.05);
}
.mCS-custom-bar2.mCSB_scrollTools .mCSB_dragger .mCSB_dragger_bar {
  background-image: -moz-linear-gradient(180deg, #cbe601 0%, #60ff00 100%);
  background-image: -webkit-linear-gradient(180deg, #cbe601 0%, #60ff00 100%);
  background-image: -ms-linear-gradient(180deg, #cbe601 0%, #60ff00 100%);
  background-image: linear-gradient(180deg, #cbe601 0%, #60ff00 100%);
  width: 2px;
  -webkit-border-radius: 0;
  border-radius: 0;
}
.mCS-custom-bar2.mCSB_scrollTools .mCSB_dragger:hover .mCSB_dragger_bar {
  background-image: -moz-linear-gradient(180deg, #cbe601 0%, #60ff00 100%);
  background-image: -webkit-linear-gradient(180deg, #cbe601 0%, #60ff00 100%);
  background-image: -ms-linear-gradient(180deg, #cbe601 0%, #60ff00 100%);
  background-image: linear-gradient(180deg, #cbe601 0%, #60ff00 100%);
}
.mCS-custom-bar2.mCSB_scrollTools .mCSB_dragger:active .mCSB_dragger_bar,
.mCS-custom-bar2.mCSB_scrollTools .mCSB_dragger.mCSB_dragger_onDrag .mCSB_dragger_bar {
  background-image: -moz-linear-gradient(180deg, #cbe601 0%, #60ff00 100%);
  background-image: -webkit-linear-gradient(180deg, #cbe601 0%, #60ff00 100%);
  background-image: -ms-linear-gradient(180deg, #cbe601 0%, #60ff00 100%);
  background-image: linear-gradient(180deg, #cbe601 0%, #60ff00 100%);
}
.loader,
.loader:before,
.loader:after {
  border-radius: 50%;
  width: 2.5em;
  height: 2.5em;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation: load7 1.8s infinite ease-in-out;
  animation: load7 1.8s infinite ease-in-out;
}
.loader {
  color: #60ff00;
  font-size: 10px;
  margin: 80px auto;
  position: relative;
  text-indent: -9999em;
  -webkit-transform: translateZ(0);
  -ms-transform: translateZ(0);
  transform: translateZ(0);
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
.loader:before,
.loader:after {
  content: '';
  position: absolute;
  top: 0;
}
.loader:before {
  left: -3.5em;
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
.loader:after {
  left: 3.5em;
}
@-webkit-keyframes load7 {
  0%,
  80%,
  100% {
    box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    box-shadow: 0 2.5em 0 0;
  }
}
@keyframes load7 {
  0%,
  80%,
  100% {
    box-shadow: 0 2.5em 0 -1.3em;
  }
  40% {
    box-shadow: 0 2.5em 0 0;
  }
}
#myTabContent .card__cover {
  position: absolute;
  height: 100%;
  width: calc(100% - 30px);
  left: 15px;
}
.chlogo {
	min-width:50px;
	max-width: 85%;
	/*margin: auto;
	display: block;
	top: 50%;
	position: absolute;*/
	/*margin-top: -90px;*/
}
@media (max-width: 768px) {
	
}
.star-ratings-sprite {
	background: url("../img/star-rating-sprite.png") repeat-x;
	font-size: 0;
	height: 13px;
	line-height: 0;
	overflow: hidden;
	text-indent: -999em;
	width: 70px;
	margin: 0 auto;
}
.star-ratings-sprite-rating {
	background: url("../img/star-rating-sprite.png") repeat-x;
	background-position: 0 100%;
	float: left;
	height: 13px;
	display:block;
}
.section__total {
	color: #999;
    padding: 0 13px;
    align-self: flex-end;
    flex: auto;
}
::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #fff;
  opacity: 1; /* Firefox */
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #fff;
}

::-ms-input-placeholder { /* Microsoft Edge */
  color: #fff;
}
.film {
    display: block;
    position: relative;
    margin-bottom: 17px;
    overflow: hidden;
}
.film__cover {
    position: relative;
    overflow: hidden;
}
a {
    -webkit-transition: 0.4s ease;
    -moz-transition: 0.4s ease;
    transition: 0.4s ease;
    color: 60ff00;
    text-decoration: none;
    background-color: transparent;
    -webkit-text-decoration-skip: objects;
}
.film__cover img {
    width: 100%;
    height: auto;
    min-height: 100%;
}
img {
    vertical-align: middle;
    border-style: none;
}
.film__rate-wrap {
    position: absolute;
    display: block;
    top: 10px;
    left: 0;
    height: 30px;
    width: 50px;
}
.film__rating--ratingplus {
    background-color: #2b2b31;
	text-transform: uppercase;
}
.film__rating {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 30px;
    width: 150px;
    color: #fff;
    font-size: 14px;
    color: #ffecee;
    left: 0;
    top: 0;
    position: absolute;
    -webkit-transition: 0.4s ease;
    -moz-transition: 0.4s ease;
    transition: 0.4s ease;
}
.film__estimate {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    position: absolute;
    width: 100px;
    height: 30px;
    left: -100px;
    top: 0;
    background-color: rgba(15,16,22,0.97);
    -webkit-transition: 0.4s ease;
    -moz-transition: 0.4s ease;
    transition: 0.4s ease;
}
.film__estimate:before {
    content: '';
    position: absolute;
    display: block;
    width: 1px;
    height: 10px;
    background-color: #1d1e24;
    top: 50%;
    left: 50%;
    -webkit-transform: translateX(-50%) translateY(-50%);
    -moz-transform: translateX(-50%) translateY(-50%);
    transform: translateX(-50%) translateY(-50%);
}
.film__estimate div {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}
.film__estimate button {
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
[type=reset], [type=submit], button, html [type=button] {
    -webkit-appearance: button;
}

button {
    padding: 0;
    border: none;
    background-color: transparent;
    cursor: pointer;
    -webkit-transition: 0.4s ease;
    -moz-transition: 0.4s ease;
    transition: 0.4s ease;
}
button, select {
    text-transform: none;
}
button, input {
    overflow: visible;
}
button, input, optgroup, select, textarea {
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}
button {
    border-radius: 0;
}
svg:not(:root) {
    overflow: hidden;
}
.film__estimate span {
    font-size: 14px;
    color: #fff;
    padding: 0 7px;
}
.film__title {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #fff;
    font-size: 16px;
    line-height: 22px;
    min-height: 26px;
    position: relative;
    flex-wrap: wrap;
    padding-top: 10px;
}
.film__date {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    color: #ccc;
    font-size: 12px;
    line-height: 18px;
    min-height: 20px;
    position: relative;
    flex-wrap: wrap;
    padding: 0 10px;
}
.film__watch {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    font-size: 13px;
    color: #171920;
    text-transform: uppercase;
    height: 52px;
    left: 0;
    width: 100%;
	background-image: -moz-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
    background-image: -webkit-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
    background-image: -ms-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
    background-image: linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
	opacity: 0.95;
    position: absolute;
    top: 100%;
}
.film a.film__watch span {
    margin-left: 5px;
}
.film__watch svg {
    fill: #171920;
    fill-rule: evenodd;
    margin-left: 10px;
}
.popover {
    display: none;
}
ul {
    margin: 0;
    padding: 0;
    list-style: none;
}
a {
	color: #60ff00;
}
a:hover {
    text-decoration: none;
}
a:hover, a:active, a:focus {
    outline: none;
    color: #60ff00;
}
.film__rate-wrap:hover .film__rating {
    left: -150px;
}
.film__estimate button:hover {
    opacity: 0.7;
}
.film:hover .film__watch {
    -webkit-transform: translateY(-52px);
    -moz-transform: translateY(-52px);
    transform: translateY(-52px);
}

.film__watch:hover {
    color: #171920;
	opacity: 1;
}


.replay:nth-child(6n+4) .popover, .replay:nth-child(6n+5) .popover, .replay:nth-child(6n+6) .popover {
    left: auto;
    margin-left: 0;
    right: 100%;
    margin-right: -15px;
}
.details__subtitle {
	color: rgba(255,255,255,.75);
    margin-top: -22px;
    margin-bottom: 33px;
}
.popover__subtitle {
	color: rgba(255,255,255,.75);
    margin-top: -7px;
}














@media (min-width: 360px)
{
	.film__watch {
		font-size: 14px;
		letter-spacing: 0.3px;
	}
}
@media (min-width: 576px)
{
	.film__cover {
    	height: 228px;
	}
}
@media (min-width: 768px)
{
	.film__cover {
		height: 318px;
	}
}
@media (min-width: 1200px)
{
	.film__cover {
		height: 250px;
	}
	.popover {
		position: absolute;
		top: 0;
		bottom: 17px;
		left: 100%;
		margin-left: -15px;
		width: 0;
		background-color: #171920;
		padding: 25px 0;
		z-index: 99;
		z-index: 1;
		-webkit-transition: 0.2s ease;
		-moz-transition: 0.2s ease;
		transition: 0.2s ease;
		display: block;
		overflow: hidden;
	}
	.popover__title {
		font-size: 26px;
		line-height: 26px;
		color: #fff;
		font-weight: normal;
		margin-bottom: 15px;
	}
	.popover__title a {
		color: #fff;
	}
	.popover__info {
	}
	.popover__info li.quality {
		font-size: 12px;
		color: rgba(255,255,255,.75);
		text-transform: uppercase;
		-webkit-border-radius: 2px;
		border-radius: 2px;
		height: 22px;
		line-height: 18px;
		text-align: center;
		display: block;
		padding: 0 10px;
	}
	.popover__info li {
		display: block;
		color: #fff;
	}
	.popover__info li.stats {
		font-size: 14px;
		color: #fff;
		margin-right: 25px;
		position: relative;
	}
	.popover__info li.stats:before {
		content: '';
		position: absolute;
		display: block;
		height: 12px;
		width: 1px;
		background-color: #28292f;
		left: 100%;
		margin-left: 13px;
		top: 50%;
		-webkit-transform: translateY(-50%);
		-moz-transform: translateY(-50%);
		transform: translateY(-50%);
	}
	.popover__info li.stats img {
		margin-right: 6px;
	}
	.popover__info li.stats:last-child {
		margin-right: 0;
	}
	.popover__cat {
		display: flex;
		color: rgba(255,255,255,0.75);
		flex-direction: row;
		justify-content: flex-start;
		align-items: center;
	}
	.popover__cat a {
		display: flex;
		justify-content: center;
		align-items: center;
		height: 34px;
		width: auto;
		min-width: 46px;
		padding: 0 15px;
		margin-right: 15px;
		font-size: 12px;
		text-transform: uppercase;
		letter-spacing: 0.2px;
	}
	.popover__cat a:last-child {
		margin-right: 0;
	}
	.popover__text {
		font-size: 15px;
		line-height: 24px;
		color: rgba(255,255,255,.75);
		margin: 20px 0 0 0;
		display: block;
		position: relative;
		height: 100px;
		overflow: hidden;
	}
	.popover__channel {
		position: absolute;
		padding-left: 70px;
		height: 28px;
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: flex-start;
		right: 30px;
		top: 115px;
	}
	.popover__imdb span:first-child {
		display: block;
		color: #fff;
		font-size: 14px;
		line-height: 100%;
		letter-spacing: 0.2px;
	}
	.popover__imdb span:last-child {
		display: block;
		font-size: 11px;
		color: #9c9c9d;
		letter-spacing: 0.2px;
	}
	.film:hover+.popover {
		display: block;
		width: 540px;
		padding: 25px 30px;
	}
	.popover:hover {
		display: block;
		width: 540px;
		padding: 25px 30px;
	}
	.popover__title a:hover {
		color: 60ff00;
	}
	.popover__cat a:hover {
	}
	
	
	
	
	
	
	
	
}
@media (min-width: 1360px)
{
	.film__cover {
		height: 284px;
	}
	.popover__text {
		height: 120px;
	}
}
.category-label {
	background: #60ff00 !important;
}
.widget-popular-posts .fade {
	opacity: 1;
}
.post-content .title {
	color: #fff;
}
.post-content .post-summary h2 {
	color: rgba(255,255,255,0.75);
}
.post-content .post-text {
	color: rgba(255,255,255,.75);
}
.post-author-meta a {
	color: #60ff00 !important;
	opacity: 0.85;
}
.nav-tabs&gt;li.active&gt;a, .nav-tabs&gt;li.active&gt;a:focus, .nav-tabs&gt;li.active&gt;a:hover {
	color: #60ff00 !important;
}
.post-content .tags-title {
	color: rgba(255,255,255,0.5);
}
.reactions .title-reactions {
	color: rgba(255,255,255,0.5);
}
.reactions {
	width: 100%;
}
.reactions .img-reaction {
	border-radius: 28px;
}
.reactions .progress-bar-vertical {
	background: rgba(0,0,0,.3);
}
.reactions .progress-bar-vertical .span-vote {
	color: rgba(255,255,255,.5);
}
.reactions .icon-cnt {
	margin: auto;
}
.reactions .progress-bar-vertical {
	margin-right: 0;
}
.comment-section .tab-content .tab-pane {
	opacity: 1;
}
#site_comments label {
	color: rgba(255,255,255,0.75);
}
/*a tag*/
a:hover {
    color: #60ff00;
}

a:focus, a:active {
    color: #60ff00;
}

/*navigation*/
.navbar-toggle {
    background-color: #60ff00 !important;
}

.navbar-inverse .navbar-toggle {
    border-color: #60ff00 !important;
}

.navbar-default .navbar-nav &gt; .active &gt; a::after, .navbar-default .navbar-nav &gt; li &gt; a:hover:after {
    /*background-color: #60ff00;*/
}

/*button color style*/
.btn-custom {
    background-color: #60ff00;
    border-color: #60ff00;
}

.btn-custom:hover {
    background-color: #18aa8d !important;
    border-color: #18aa8d !important;
}

.btn-custom:focus {
    background-color: #18aa8d !important;
    border-color: #18aa8d !important;
}

.btn-custom:active {
    background-color: #18aa8d !important;
    border-color: #18aa8d !important;
}

::selection {
    background: #60ff00 !important; /* WebKit/Blink Browsers */
    color: #fff;
}

::-moz-selection {
    background: #60ff00 !important; /* Gecko Browsers */
    color: #fff;
}

/*navbar color style*/
.navbar-inverse .navbar-nav .active a::after {
    background-color: #60ff00;
}

.navbar-inverse .navbar-nav &gt; li &gt; a:hover {
    color: #60ff00;
}

.navbar-inverse .navbar-nav &gt; .active &gt; a,
.navbar-inverse .navbar-nav &gt; .active &gt; a:hover,
.navbar-inverse .navbar-nav &gt; .active &gt; a:focus,
.navbar-inverse .navbar-nav &gt; .open &gt; a,
.navbar-inverse .navbar-nav &gt; .open &gt; a:hover,
.navbar-inverse .navbar-nav &gt; .open &gt; a:focus {
    color: #60ff00 !important;
    background-color: transparent;
}

.navbar-inverse .navbar-nav &gt; li &gt; a:focus, .navbar-inverse .navbar-nav &gt; li &gt; a:hover {
    background-color: transparent;
    color: #60ff00;
}

.navbar-inverse .navbar-nav .dropdown-menu &gt; li:hover &gt; a,
.navbar-inverse .navbar-nav .dropdown-menu &gt; li:focus &gt; a,
.navbar-inverse .navbar-nav .dropdown-menu &gt; li.active &gt; a {
    color: #60ff00;
}

.navbar-inverse .navbar-nav .open .dropdown-menu &gt; li &gt; a:focus, .navbar-inverse .navbar-nav .open .dropdown-menu &gt; li &gt; a:hover {
    color: #60ff00 !important;
}

.form-input:focus {
    border-color: #60ff00;
    outline: 0 none;
}

.post-content .post-tags .tag-list li a:hover {
    border-color: #60ff00;
    background-color: #60ff00;
}

.auth-form-input:focus {
    border-color: #60ff00;
}

.form-textarea:focus {
    border-color: #60ff00;
}

.profile-buttons ul li a:hover {
    background-color: #60ff00;
    border-color: #60ff00;
}

.add-post-modal .item-icon i {
    color: #60ff00;
}

.custom-checkbox:hover + label:before {
    border-color: #60ff00;
}

.custom-checkbox:checked + label:before {
    background: #60ff00;
    border-color: #60ff00;
}

.poll .result .progress .progress-bar {
    background-color: #60ff00;
}

/*Comments*/
.comments .comments-title {
    border-bottom: 2px solid #60ff00;
}

.comment-lists li .btn-comment-reply {
    color: #60ff00;
}

.comment-lists li .btn-comment-like {
    color: #60ff00;
}

.comment-loader-container .loader {
    border-top: 5px solid #60ff00;
}

.sub-comment-loader-container .loader {
    border-top: 5px solid #60ff00;
}

.f-random-list li .title a:hover {
    color: #60ff00;
}

.leave-reply .form-control:focus {
    border-color: #60ff00;
}

.page-contact .form-control:focus {
    border-color: #60ff00;
}

.link-forget {
    color: #60ff00;
}

.captcha-refresh {
    color: #60ff00;
}

.newsletter .newsletter-button {
    background-color: #60ff00;
    border: 1px solid #60ff00;
}

.newsletter .newsletter-button:hover {
    background-color: #cbe601;
    border: 1px solid #cbe601;
}

.nav-footer li a:hover {
    color: #60ff00;
}

.video-label {
    background: #60ff00;
}

.post-author-meta a:hover {
    color: #60ff00 !important;
	opacity: 1;
}

.post-next-prev p span {
    color: #60ff00;
}

.filters .active::after {
    background: #60ff00;
}

.filters .btn:focus:after, .filters .btn:hover:after, .filters .btn:active:after {
    background: #60ff00;
}

.pagination .active a {
    border: 1px solid #60ff00 !important;
    background-color: #60ff00 !important;
    color: #fff !important;
}

.pagination li a:hover, .pagination li a:focus, .pagination li a:active {
    background-color: #60ff00;
    border: 1px solid #60ff00;
}

.search-form {
    border-top: 3px solid #60ff00;
}

.search-form button {
    background-color: #60ff00 !important;
}

.sidebar-widget .tag-list li a:hover {
    background-color: #60ff00;
}

.mobile-menu-social li a:hover, .mobile-menu-social li a:focus {
    color: #60ff00;
}

.comment-error {
    border-color: #60ff00 !important;
}

.dropdown-more {
    border-top: 3px solid #60ff00;
}

.btn-load-more:hover {
    color: #60ff00;
}

.spinner &gt; div {
    background-color: #60ff00;
}

.cookies-warning a {
    color: #60ff00 !important;
}

.reactions .col-reaction:hover .btn-reaction {
    background-color: #60ff00;
}

.reactions .progress-bar-vertical .progress-bar {
    background-color: #60ff00;
}

.reactions .btn-reaction-voted {
    background-color: #60ff00;
}

.custom-checkbox input:checked + .checkbox-icon {
    background-color: #60ff00;
    border: 1px solid #60ff00;
}


.bnt-news-ticker {
	color: #60ff00 !important;
}
.section .nav-tabs&gt;li.active&gt;a, .section .nav-tabs&gt;li.active&gt;a:focus, .section .nav-tabs&gt;li.active&gt;a:hover {
	background: none !important;
}
.btn-block-more {
	background: #2b2b31 !important;
	border: none;
	color: rgba(255,255,255,.5);
	-webkit-appearance: none !important;
}
.section-content .fade.active {
	opacity: 1 !important;
}
.section .section-head, .section-mid-title, .comment-section .nav-tabs {
	border-bottom: 2px solid #cbe601 !important;
}
.top-bar, .news-ticker-title, .section .section-head .title, .sidebar-widget .widget-head, .section-mid-title .title, #comments .comment-section &gt; .nav-tabs &gt; .active &gt; a {
	background-image: -moz-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
    background-image: -webkit-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
    background-image: -ms-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
    background-image: linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
}
.section .nav-tabs&gt;li&gt;a:focus, .section .nav-tabs&gt;li&gt;a:hover, .section .nav-tabs&gt;li&gt;a:active {
	background: none !important;
	color: #60ff00 !important;
}
.owl-stage-outer::after {
	display: none;
}

.widget-popular-posts .nav-tabs .active {
	border-bottom: 2px solid #60ff00 !important;
}
.post-content .post-tags .tag-list li a {
	font-size: 13px;
	color: rgba(255,255,255,0.5);
}
.sidebar-widget .tag-list li a {
	background: none;
}
.section.section-block-1 {
	padding: 0 !important;
}


.widget-snews .active {
	opacity: 1 !important;
}
.widget-snews .widget-body .row {
	margin-bottom: 13px;
	clear: both;
	overflow: auto;
}
.widget-snews .widget-body .col-sm-12 {
	position: relative;
    margin-bottom: 6px;
    /*background: rgba(0,0,0,0.1);
    padding: 6px;*/
}
.widget-snews .widget-body .left {
	float: left;
    margin-right: 13px;
}
.widget-snews .widget-body .left img {
	width: 64px;
}
.widget-snews .widget-body .right {
	float: left;
}
.widget-snews .widget-body .right h2 {
	line-height: 21px;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}
.widget-snews .widget-body .right h2 a {
	
}
.widget-snews .widget-body .right ul {
	line-height: 10px;
}
.widget-snews .widget-body .right li {
	color: #b0b0b0;
    font-size: 11px;
    font-weight: 600;
	display: inline-block;
}
.widget-snews .widget-body .right span {
	color: #b0b0b0;
    font-size: 11px;
	line-height: 22px;
    display: block;
}
.widget-snews .widget-body .right img {
	position: absolute;
    width: 52px;
    top: 0;
    right: 6px;
}
.widget-snews .widget-body .nav-tabs a {
	background: none !important;
	border: none !important;
	color: #888;
	text-align: center;
	font-size: 13px;
    text-transform: capitalize;
}
.widget-snews .widget-body .nav-tabs li {	
    width: 33.33%;
}
.widget-snews .widget-body .nav-tabs li.active {
	border-bottom: 2px solid #60ff00;
}
.widget-snews .widget-body .nav-tabs li.active a {
	color: #60ff00 !important;
}
.widget-snews .widget-body .tab-content &gt; div {
	padding-top: 23px;
}
.hide {
	display: none !important;
}
#mega_menu_ajax .blogMenu .img-container {
    transition: transform .5s, filter 1.5s ease-in-out;
}
#mega_menu_ajax .blogMenu .img-container:hover {
	transform: scale(1.1);
    filter: grayscale(100%);
}
.section--first .megamenu {
    position: absolute;
    bottom: 2px;
    border-radius: 0;
	background: #2b2b31 !important;
	border: none !important;
}
.section--first .megamenu .navbar-nav&gt;li&gt;a {
	color: rgba(255,255,255,0.75) !important;
	font-size: 14px;
    font-weight: 300 !important;
    text-transform: uppercase;
    letter-spacing: 0.2px;
}
.section--first .megamenu .navbar-nav&gt;.active&gt;a ,.section--first .megamenu .navbar-nav&gt;.active&gt;a:focus, .section--first .megamenu .navbar-nav&gt;.active&gt;a:hover{
	background: none !important;
	color: #cbe601 !important;
}
.section--first .megamenu .navbar-nav&gt;li&gt;a:hover {
	color: #cbe601 !important;
}
.megamenu .navbar-nav {
	/*overflow: hidden;*/
}
.megamenu .dropdown.megamenu-fw .dropdown-menu {
	background: #2b2b31 !important;
	-webkit-box-shadow: 0 5px 25px 0 rgba(0,0,0,0.3);
    box-shadow: 0 5px 25px 0 rgba(0,0,0,0.3);
    -webkit-transition: 0.4s ease;
    -moz-transition: 0.4s ease;
    transition: 0.4s ease;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: 4px;
}
.megamenu .sub-menu-right,.megamenu .sub-menu-left {
	background: none !important;
}
.megamenu .sub-menu-left .nav-sub-categories li a {
	background: none !important;
	border-bottom: 1px solid rgba(255,255,255,0.5);
    color: rgba(255,255,255,0.75);
	font-weight: 300 !important;
}
.megamenu .navbar-collapse.collapse {
	margin-left: -15px;
	margin-right: -15px;
}
.header__logo {
	width: 140px !important;
    margin-left: -15px !important;
}
.section--first .section__title {
    margin-top: -23px;
	font-family: 'Oswald', sans-serif;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-weight: 500;
}
.img-bg {
	height: 100% !important;
}
#changeTemplate {
    position: fixed;
    bottom: 4px;
    right: 6px;
    z-index: 100;
}
#changeTemplate div {
    background: #bdbdbd;
    width: 33px;
    height: 33px;
    padding: 4px;
    border-radius: 33px;
    margin-bottom: 5px;
}
#changeTemplate div.active {
	background: #60ff00;
}
#changeTemplate div a {
    width: 25px;
    height: 25px;
    border-radius: 33px;
	display: block;
}
.audience {
	border: none !important;
}

.megamenu .sub-menu-left li.active &gt; a, .megamenu .sub-menu-left li.hover &gt; a {
	color: #cbe601 !important;
}
.megamenu .sub-menu-left li.active, .megamenu .sub-menu-left li.hover {
    background: rgba(255,255,255,0.1) !important;
}
.navbar-default .navbar-nav&gt;.active&gt;a::after, .navbar-default .navbar-nav&gt;li:hover&gt;a:after {
	background-color: #60ff00;
    content: " ";
    height: 1px;
    left: 0;
    position: absolute;
    right: 0;
    bottom: 0;
}




.main-menu {
	margin-left: 25px !important;
}
.navbar-default {
    position: relative;
    -moz-transition: all .2s ease-in-out 0s;
    -webkit-transition: all .2s ease-in-out 0s;
    transition: all .2s ease-in-out 0s;
    width: 100%;
    border: 0;
    text-transform: none;
}
.navbar {
    margin: 0;
    min-height: 50px;
    display: block;
}
.btn-group-vertical&gt;.btn-group:after, .btn-group-vertical&gt;.btn-group:before, .btn-toolbar:after, .btn-toolbar:before, .clearfix:after, .clearfix:before, .container-fluid:after, .container-fluid:before, .container:after, .container:before, .dl-horizontal dd:after, .dl-horizontal dd:before, .form-horizontal .form-group:after, .form-horizontal .form-group:before, .modal-footer:after, .modal-footer:before, .modal-header:after, .modal-header:before, .nav:after, .nav:before, .navbar-collapse:after, .navbar-collapse:before, .navbar-header:after, .navbar-header:before, .navbar:after, .navbar:before, .pager:after, .pager:before, .panel-body:after, .panel-body:before, .row:after, .row:before {
    display: table;
    content: " ";
}
.megamenu .container {
    position: relative;
}
.container {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}
.megamenu .nav, .megamenu .collapse, .megamenu .dropup, .megamenu .dropdown {
    position: static;
}
.navbar-default .navbar-collapse, .navbar-default .navbar-form {
    border-color: #e7e7e7;
}
.navbar-collapse {
    padding-right: 15px;
    padding-left: 15px;
    overflow-x: visible;
    -webkit-overflow-scrolling: touch;
    border-top: 1px solid transparent;
    -webkit-box-shadow: inset 0 1px 0 rgba(255,255,255,.1);
    box-shadow: inset 0 1px 0 rgba(255,255,255,.1);
}
.row {
    margin-right: -15px;
    margin-left: -15px;
}
.megamenu .nav, .megamenu .collapse, .megamenu .dropup, .megamenu .dropdown {
    position: static;
}
.navbar-default .navbar-nav {
    height: 50px;
}
.navbar-nav {
    margin: 7.5px -15px;
}
.nav {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}
.nav&gt;li {
    position: relative;
    display: block;
}

.navbar-default .navbar-nav&gt;.active&gt;a::after, .navbar-default .navbar-nav&gt;li:hover&gt;a::after {
    content: "";
    height: 1px;
    left: 0;
    position: absolute;
    right: 0;
    bottom: 0;
}
:after, :before {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}
.navbar-default .navbar-nav&gt;li&gt;a {
    color: rgba(255,255,255,1);
    display: inline-block;
    font-size: 14px;
    font-weight: 700;
    line-height: 50px;
    padding: 0 16px;
    position: relative;
    text-transform: uppercase;
}
.megamenu .nav, .megamenu .collapse, .megamenu .dropup, .megamenu .dropdown {
    position: static;
}
.nav&gt;li {
    position: relative;
    display: block;
}
.dropdown, .dropup {
    position: relative;
}
.megamenu .dropdown.megamenu-fw .dropdown-menu {
    left: 0;
    right: 0;
    width: calc(100vw - 150px);
    max-width: 1140px;
    margin: auto;
    border: 0;
    top: 50px;
    background-color: #fafafa;
    border-top: 3px solid transparent;
}
.navbar-nav&gt;li&gt;.dropdown-menu {
    margin-top: 0;
    border-top-left-radius: 0;
    border-top-right-radius: 0;
}
.megamenu .megamenu-content {
    padding: 0;
}
.megamenu .dropdown-menu {
    left: auto;
    box-shadow: 0 6px 6px rgba(0,0,0,0.176);
    border-radius: 0;
    position: absolute;
    top: 100%;
    left: 0;
    z-index: 1000;
    display: none;
    float: left;
    min-width: 160px;
    padding: 5px 0;
    margin: 2px 0 0;
    font-size: 14px;
    text-align: left;
    list-style: none;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #ccc;
    border: 1px solid rgba(0,0,0,.15);
    border-radius: 4px;
    -webkit-box-shadow: 0 6px 12px rgba(0,0,0,.175);
    box-shadow: 0 6px 12px rgba(0,0,0,.175);
}
.megamenu .megamenu-content li {
    display: table;
    width: 100%;
}
.megamenu .sub-menu-right, .megamenu .sub-menu-left {
    background: none !important;
}
.navbar-default .sub-menu-left {
    display: table-cell;
    vertical-align: top;
    height: auto;
    width: 20%;
    background-color: #f8f8f8;
    position: relative;
    height: 100%;
    min-height: 100%;
}
.navbar-default .sub-menu-left .nav-sub-categories {
    margin: 0;
    padding: 0;
    text-align: left;
}
.navbar-default .sub-menu-left .nav-sub-categories li {
    list-style: none;
}
.megamenu .megamenu-content li {
    display: table;
    width: 100%;
}
.megamenu .sub-menu-left .nav-sub-categories li a {
    background: none !important;
    border-bottom: 1px solid rgba(0,0,0,0.5);
    font-weight: 300 !important;
}
.navbar-default .sub-menu-left .nav-sub-categories li a {
    border-bottom: 1px solid #efefef;
    color: rgba(255,255,255,1);
    display: block;
    font-size: 12px;
    font-weight: 600;
    padding: 4px 20px;
    text-decoration: none;
    -moz-transition: all .2s ease-in-out 0s;
    -webkit-transition: all .2s ease-in-out 0s;
    transition: all .2s ease-in-out 0s;
}
.navbar-default .sub-menu-left .nav-sub-categories li {
    list-style: none;
}
.megamenu .megamenu-content li {
    display: table;
    width: 100%;
}
.navbar-default .sub-menu-right {
    background-color: #fff;
    display: table-cell;
    min-height: 250px;
    padding: 20px;
    vertical-align: top;
    width: 80%;
}
.navbar-default .sub-menu-right {
    display: table-cell;
    vertical-align: top;
    padding: 20px;
    width: 80%;
    background-color: #fff;
    min-height: 260px;
}
.navbar-default .sub-menu-right .active {
    display: block!important;
}
.navbar-default .sub-menu-inner {
    display: none;
    min-height: 210px;
}
.navbar-default .row-menu-right {
    margin-left: -10px;
    margin-right: -10px;
}
.navbar-default .menu-post-item {
    padding-left: 10px;
    padding-right: 10px;
}
.megamenu-content .post-item-image {
    height: auto;
}
.post-item-image {
    width: 100%;
    height: 214.1px;
    display: block;
    position: relative;
    background: none !important;
}
.navbar-default .menu-post-item img {
    margin-bottom: 7px;
}
.post-icon-menu {
    width: 32px!important;
    height: 32px!important;
}
.post-icon {
    position: absolute!important;
    right: 0!important;
    left: 0!important;
    top: 0!important;
    bottom: 0!important;
    margin: auto!important;
    background: rgba(0,0,0,0.3)!important;
    border-radius: 100%!important;
    z-index: 10!important;
    pointer-events: none!important;
    float: none!important;
}
img {
    text-indent: -9999px;
    color: transparent;
}
.navbar-default .menu-post-item img {
    margin-bottom: 7px;
}
.img-bg {
    height: 100% !important;
}
.img-bg {
    width: 100%;
}
.carousel-inner&gt;.item&gt;a&gt;img, .carousel-inner&gt;.item&gt;img, .img-responsive, .thumbnail a&gt;img, .thumbnail&gt;img {
    display: block;
    max-width: 100%;
    height: auto;
}
.megamenu-content .img-container {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    overflow: hidden;
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}
.megamenu-content .img-container:hover {
	/*background-size: 110%;*/
}
.megamenu-content .post-item-image .img-container img {
    height: 121px;
	display: block;
	margin: auto;
}
.navbar-default .menu-post-item img {
    margin-bottom: 7px;
}
.img-cover {
    position: relative;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.navbar-default .menu-post-item .title {
    font-size: 13px;
    line-height: 18px;
    font-weight: 500;
    margin-bottom: 5px;
}
.megamenu .megamenu-content h3 {
    margin-top: 13px;
    font-size: 18px;
}
.h1, .h2, .h3, .h4, .h5, .h6, h1, h2, h3, h4, h5, h6 {
    font-family: "Roboto", Helvetica, Arial, sans-serif;
}
.navbar-default .menu-post-item .title a {
    display: block;
}
.post-meta {
    display: block;
    width: 100%;
    float: left;
}
p {
    margin: 0 0 10px;
}
.post-meta a {
    list-style: none;
    float: left;
    margin-right: 8px;
    color: #999;
    font-size: 11px;
    display: block;
    font-weight: 600;
}
.post-meta span {
    list-style: none;
    float: left;
    margin-right: 8px;
    color: #999;
    font-size: 11px;
    display: block;
}
.post-meta span i {
    margin-right: 5px;
}
.navbar-default .sub-menu-inner {
    display: none;
    min-height: 210px;
}
.navbar-default .row-menu-right {
    margin-left: -10px;
    margin-right: -10px;
}
.navbar-default .menu-post-item {
    padding-left: 10px;
    padding-right: 10px;
}
.megamenu-content .post-item-image {
    height: auto;
}
.post-item-image {
    width: 100%;
    height: 214.1px;
    display: block;
    position: relative;
    /*background-color: #f8f8f8;*/
}
.navbar-default .menu-post-item img {
    margin-bottom: 7px;
}
.post-icon-menu {
    width: 32px!important;
    height: 32px!important;
}
.post-icon {
    position: absolute!important;
    right: 0!important;
    left: 0!important;
    top: 0!important;
    bottom: 0!important;
    margin: auto!important;
    background: rgba(0,0,0,0.3)!important;
    border-radius: 100%!important;
    z-index: 10!important;
    pointer-events: none!important;
    float: none!important;
}
.megamenu .nav, .megamenu .collapse, .megamenu .dropup, .megamenu .dropdown {
    position: static;
}

.navbar-default .navbar-nav {
    height: 50px;
}
.navbar-nav {
    margin: 7.5px -15px;
}
 .nav {
    padding-left: 0;
    margin-bottom: 0;
    list-style: none;
}
 .nav&gt;li {
    position: relative;
    display: block;
	float: left;
}
.li-search {
    position: relative;
}
.section--first .megamenu .navbar-nav&gt;li&gt;a {
    color: rgba(255,255,255,0.75) !important;
    font-size: 14px;
    font-weight: 300 !important;
    text-transform: uppercase;
    letter-spacing: 0.2px;
}
.search-form {
    border-top: 3px solid #60ff00;
}
.search-form {
    display: none;
    width: 320px;
    position: absolute;
    right: 15px;
    top: 50px;
    background-color: #fff !important;
    z-index: 999999;
    box-shadow: 0 6px 12px rgba(0,0,0,0.176);
    padding: 10px;
}
.megamenu .search-form .form-input {
    background: none !important;
}
.search-form .form-input {
    border: 0!important;
    box-shadow: none;
    color: #949494;
    height: 40px;
    line-height: 14px;
    padding: 10px 65px 10px 20px;
    background-color: #f8f8f8;
}
.form-input {
    border: 1px solid #e6e6e6;
    outline: none!important;
    color: #494949;
    height: 42px;
    font-size: 14px;
    line-height: 18px;
    padding: 10px 20px;
    box-shadow: none!important;
    border-radius: 3px;
}
.form-control {
    display: block;
    width: 100%;
    height: 34px;
    padding: 6px 12px;
    font-size: 14px;
    line-height: 1.42857143;
    color: #555;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,.075);
    -webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;
    -o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}
.search-form button {
    border: 0!important;
    box-shadow: none;
    color: #fff!important;
    font-size: 16px;
    width: 40px;
    height: 40px;
    text-align: center;
    position: absolute;
    right: 10px;
    top: 10px;
    border-radius: 0;
    line-height: 10px;
}
.btn-default {
    color: #333;
    background-color: #fff;
    border-color: #ccc;
}
.btn {
    display: inline-block;
    padding: 6px 12px;
    margin-bottom: 0;
    font-size: 14px;
    font-weight: 400;
    line-height: 1.42857143;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 4px;
}
.navbar-default .dropdown:hover .dropdown-top {
    display: block;
}
.navbar-default .sub-menu-right .active {
    display: block!important;
}
.megamenu&gt;div&gt;div&gt; .row {
	display: block !important;
}
.megamenu i.ion-ios-search {
	font-size: 26px;
	font-weight: 100;
}
.megamenu i.ion-ios-close {
	font-size: 46px;
	font-weight: 100;
}





@media (min-width: 768px)
{
	.navbar-collapse.collapse {
		display: block!important;
		height: auto!important;
		padding-bottom: 0;
		overflow: visible!important;
	}
	.navbar-collapse {
		width: auto;
		border-top: 0;
		-webkit-box-shadow: none;
		box-shadow: none;
	}
	.navbar-nav {
		float: left;
		margin: 0;
	}
	.navbar-right {
		float: right!important;
		margin-right: -15px;
	}
	.navbar-right {
    float: right!important;
    margin-right: -15px;
	}
}









.moTitle {
	color: rgba(255,255,255,.75);
}
#moPrograms {
	width: 10080px;
	overflow: hidden;
	margin-left: 100px;
}
#moTimeline {
	padding: 6px 0px;
	height: 39px;
	cursor: move;
}
#moTimeline &gt; div {
	border-left: 1px solid #aaa;
	width: 420px;
	float: left;
}
#moTimeline &gt; div h4 {
	margin-left: 13px;
	color: #999;
	line-height: 13px;
	margin-bottom: 0;
}
.moRow {
	position: relative;
	height: 66px;
   	margin-bottom: 2px;
}
.moRow .row:after {
	content: ' ';
	clear: both;
}
#moChannels {
	position: absolute;
	left: 0;
	top: 38px;
	z-index: 6;
}
.moChannel {
	background: #232328;
	width: 85px;
	border-bottom: 1px solid #000;
	height: 68px;
}
.moChannel img {
	width: 100%;
	margin: auto;
	display: block;
	padding: 13px;
}
.momentItem {
	position: absolute;
	height: 66px;
	padding: 2px;
	overflow: hidden;
	cursor: move;
}
.momentItem.blur {
	opacity: 0.3;
}
.momentItem.hover:not(.short) {
	min-width: 365px;
	z-index: 6;
	background: #fff;
	box-shadow: 0 0 25px rgba(0,0,0,0.5);
}
.momentItem.hover:not(.short) .moPoster {
	display: block;
}
.momentItem.hover:not(.short) .plus {
	display: block !important;
}
.momentItem:not(.short) {
	background: rgba(255, 255, 255, 0.75);
	background-clip: content-box;
}
.momentItem:not(.short):before {
	content: ' ';
	width: 3px;
	height: 62px;
	position: absolute;
	left: 2px;
	top: 2px;
}
.categoryItem {
	margin-left: 7px;
	font-size: 13px !important;
}
.categoryItem:before {
	content: ' ';
	width: 3px;
	height: 37px;
	position: absolute;
	left: -7px;
	top: 2px;
}
.momentItem.short.hover .shortCon {
	display: block;
}
.shortCon:before {
	content: '';
	position: absolute;
	left: calc(50% - 20px);
	border: 10px solid transparent;
	bottom: 100%;
	border-bottom-color: #fff;
}
.shortCon {
	position: absolute;
	width: 200px;
	text-align: center;
	background: #fff;
	height: 28px;
	padding: 5px;
	bottom: -33px;
	margin-left: -80px;
	z-index: 100;
	box-shadow: 0 0 25px rgba(0,0,0,0.5);
	border-radius: 6px;
	display: none;
}
.shortCon span {
	font-size: 12px;
	float: left;
	line-height: 18px;
	margin-left: 13px;
}
.shortCon h3 {
	font-size: 13px;
	float: left;
	line-height: 18px;
	margin-left: 6px;
}
.momentItem ul {
	position: absolute;
	top: 6px;
	left: 6px;
}
.momentItem ul li {
	float: left;
	margin-left: 6px;
}
.momentItem ul li span {
	font-size: 13px;
}
.momentItem h2 {
	position: absolute;
	font-size: 13px;
	top: 29px;
	left: 12px;
}
.momentItem .plus {
	display: none;
	position: absolute;
	right: -2px;
	bottom: 2px;
	z-index: 666;
	width: 33px;
	height: 33px;
}
.momentItem .plus i {
    color: #fff;
	font-size: 33px;
	line-height: 33px;
	width: 33px;
	text-align: center;
	display: block;
	-webkit-transition: -webkit-transform .8s ease-in-out;
	transition: transform .8s ease-in-out;
}
.momentItem .plus i:hover {
	-webkit-transform: rotate(360deg);
	transform: rotate(360deg);
}
#cTime {
	position: absolute;
	width: 2px;
	height: 100%;
	z-index: 7;
	background: #f00;
	opacity: 0.6;
	pointer-events: none;
}
#cTime:before {
	content: ' ';
	position: absolute;
	left: -9px;
	border: 10px solid transparent;
	top: 0%;
	border-top-color: #f00;
}
.momentItem.short {
	background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAA0AAABQCAMAAAD1JQ9nAAAAVFBMVEXr6+sAAAD29vb29vb////////r6+vr6+v////r6+vr6+v////r6+v////r6+v////r6+v////////r6+vr6+vr6+v////////////r6+vr6+v///8dI8SyAAAAGnRSTlP0ADoUi/Dw1sbGn56LdUsPD9bVt3Z1TEsOBfxRgAwAAABhSURBVDjL7dTJFYAgEARRENz3Xafzz1MRdPCZgAf69gOoFjTu0m3TQtB8q8apJLKIYiPKO4M2wyWqjDScqJFyxaNUqYFFRQlPhKCgoH/Itsnd9vCbXpy49/cXfH9i4g85AMkAWzIZcHZ9AAAAAElFTkSuQmCC);
	background-size: 13px calc(100% - 6px);
	background-repeat: repeat-x;
	background-position: right 50%;
	overflow: visible;
}
.moPoster {
	display: none;
	float: left;
}
.moPoster img {
	height: 62px;
	margin-left: 2px;
}
.moContent {
	position: relative;
	float: left;
	width: 300px;
   	height: 100%;
}
.moCon {
	position: relative;
	height: 66px;
}
#mainMoment {
	width: 100%;
	overflow: hidden;
	position: relative;
}
.moSeek {
	position: absolute;
	top: 0;
	width: 33px;
	height: 33px;
	background: #60ff00;
	z-index: 33;
}
.moSeek i {
	color: #fff;
	display: block;
	width: 33px;
	text-align: center;
	line-height: 33px;
}
#moLSeek {
	left: 0;
}
#moRSeek {
	right: 0;
}
.moCategory {
	font-size: 13px !important;
   	font-weight: 400;
}
.dateItem {
	display: block;
	width: 100%;
}
.filter__item-btn-lg input {
	max-width: 269px !important;
}

		.megamenu .dropdown.relative {
			position: relative;
		}
		.megamenu .dropdown.relative ul {
			background: #2b2b31;
			padding: 13px;
		}
		.megamenu .dropdown.relative ul li {
		}
		.megamenu .dropdown.relative ul li a {
			display: block;
			padding: 6px;
			min-width: 180px;
			width: 100%;
			font-weight: 100;
			color: rgba(255,255,255,1);
		}
		.megamenu .dropdown.relative ul li:hover a {
			color: #cbe601;
			background: none;
		}
		#mobileMenu {
			position: fixed;
			overflow-y: scroll;
			top: 0;
			left: 0;
			width: 100vw;
			height: 100vh;
			z-index: 66;
			background: #2b2b31;
			padding-top: 75px;
		}
		#mobileMenu nav &gt; ul {
			padding: 13px 23px;
		}	
		#mobileMenu nav &gt; ul &gt; li {
			
		}
		#mobileMenu nav &gt; ul &gt; li &gt; a {
			display: block;
			padding: 10px;
			color: rgba(255,255,255,0.5);
		}
		#mobileMenu ul.dropdown-menu {
			display: none;
		}
		#mobileMenu.active {
			display: block !important;
		}
		#mobileMenu li:hover a {
			color: #cbe601;
		}
		#mobileMenu ul.dropdown-menu.active {
			display: block;
			background: rgba(0,0,0,0.1);
		}
		#mobileMenu ul.dropdown-menu li {
			
		}
		#mobileMenu ul.dropdown-menu li a {
			display: block;
    		color: rgba(255,255,255,0.75);
			padding: 13px;
		}
		#mobileMenu ul.dropdown-menu li:hover a {
			color: #cbe601;
		}
@media (max-width: 768px) {
	.megamenu {
		display: none !important;
	}
}
@media (min-width: 768px) {
	#mobileMenu {
		display: none !important;
	}
}

.secoundLogo img {
	height: 33px;
    float: right;
}



.row:before, .row:after {
    display: none !important;
}

.page-title {
	color: #cbe601;
}


.progressBar&gt; div.bar {
	position: relative;
}
.progressBar&gt; div.bar::after {
	content: '';
	background: #fff;
	width: 2px;
	height: 10px;
	display: block;
	position: absolute;
	top: -4px;
	right: 0px;
}
.progressBar .duration {
	padding: 0 18px;
	position: relative;
	width: calc(100% - 36px);
}
.progressBar .duration span {
	width: 36px;
	text-align: center;
	position: absolute;
	bottom: 4px;
}
.audienceItem {
	margin-bottom: 13px;
}
.audienceItem * {
	color: rgba(255,255,255,0.75);
}
.au_infos {
	font-size:12px;
}

.amChartsCompareList {
		line-height: 1;
	}
	.amChartsCompareList div {
		line-height: 1;
	}
	.amcharts-compare-item-div {
		padding: 2px 0 !important;
		height: 18px !important;
	}
	.amcharts-left-div br {
		display: none;
	}
	.amcharts-left-div .btn {
		margin: 4px auto;
	}
	.amcharts-compare-item-div div {
		font-size: 12px;
		color: rgba(255,255,255,.85);
	}
#chartdiv {
	color: rgba(255,255,255,.5);
	font-size: 15px;
}

#magFilter {
	background: rgba(255,255,255,.13);
	padding: 13px 0;
}
#magFilter li {
	display: inline-block;
	padding: 6px;
	border: 1px solid #ccc;
	margin: auto 3px;
	font-size: 13px
}
#magFilter li a {
	color: #ccc;
}
#magFilter li.active a {
	color:#60ff00;
}
#magFilter li.active {
	border: 1px solid #60ff00;
}
#Mags .magItem {
	height: 207px;
   	padding: 0px;
   	overflow: hidden;
	float: left;
	margin: 10px 0px 0px 10px;
	text-align: center;
	padding-bottom: 15px;
	position: relative;
}
#Mags .magItem a {
	display: block;
	height: auto;
	text-decoration: none;
}
#Mags .magItem img {
	width: 135px;
	max-width: 135px;
	margin: 0px;
	opacity: 1;
}
#Mags .magItem.w2 {
	height: 424px;
}
#Mags .magItem.w2 img {
	width: 282px;
	max-width: 282px;
}


#pageflip{
	-webkit-box-shadow: 0 5px 25px 0 rgba(0,0,0,0.3);
	box-shadow: 0 5px 25px 0 rgba(0,0,0,0.3);
}
	
.backpack.dropzone {
  font-family: 'SF UI Display', 'Segoe UI';
  font-size: 15px;
  text-align: center;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 250px;
  height: 150px;
  font-weight: lighter;
  color: white;
  will-change: right;
  z-index: 2147483647;
  bottom: 20%;
  background: #333;
  position: fixed;
  user-select: none;
  transition: left .5s, right .5s;
  right: 0px; }
  .backpack.dropzone .animation {
    height: 80px;
    width: 250px;
    background: url("chrome-extension://lifbcibllhkdhoafpjfnlhfpfgnpldfl/assets/backpack/dropzone/hoverstate.png") left center; }
  .backpack.dropzone .title::before {
    content: 'Save to'; }
  .backpack.dropzone.closed {
    right: -250px; }
  .backpack.dropzone.hover .animation {
    animation: sxt-play-anim-hover 0.91s steps(21);
    animation-fill-mode: forwards;
    background: url("chrome-extension://lifbcibllhkdhoafpjfnlhfpfgnpldfl/assets/backpack/dropzone/hoverstate.png") left center; }

@keyframes sxt-play-anim-hover {
  from {
    background-position: 0px; }
  to {
    background-position: -5250px; } }
  .backpack.dropzone.saving .title::before {
    content: 'Saving to'; }
  .backpack.dropzone.saving .animation {
    background: url("chrome-extension://lifbcibllhkdhoafpjfnlhfpfgnpldfl/assets/backpack/dropzone/saving_loop.png") left center;
    animation: sxt-play-anim-saving steps(59) 2.46s infinite; }

@keyframes sxt-play-anim-saving {
  100% {
    background-position: -14750px; } }
  .backpack.dropzone.saved .title::before {
    content: 'Saved to'; }
  .backpack.dropzone.saved .animation {
    background: url("chrome-extension://lifbcibllhkdhoafpjfnlhfpfgnpldfl/assets/backpack/dropzone/saved.png") left center;
    animation: sxt-play-anim-saved steps(20) 0.83s forwards; }

@keyframes sxt-play-anim-saved {
  100% {
    background-position: -5000px; } }

#pageflip-controls svg
{
	cursor: pointer;
	cursor: hand;
}

.pf-thumbnail-button
{
	cursor: pointer;
	cursor: hand;
}
.pf-page-content img
{
	width: 100%;
}
.pf-page-container
{
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 100% !important;
}
.pf-page-content
{
	height: 100%;
	background-position: center center;
	background-repeat: no-repeat;
	background-size: 100% !important;
}
#pf-stage:-webkit-full-screen
{
	height: 100% !important;
}
#pf-stage:-moz-full-screen
{
	height: 100% !important;
}
#pf-stage:full-screen
{
	height: 100% !important;
}
#pageflip-controls
{
	background: rgba(255,255,255,0.15);
}
.mag__nav {
    font-size: 38px;
    color: #fff;
    opacity: 0.7;
    position: absolute;
    top: 50%;
    height: 24px;
    margin-top: -12px;
    right: 15px;
    display: block;
    z-index: 2;
}
.mag__nav:hover {
    opacity: 1;
}
.mag__nav i {
	line-height: 24px;
    height: 24px;
    display: block;
}
.mag__nav--prev {
    right: 60px;
}
.mag--bg{
	padding: 33px 0;	
}
.mag__carousel {
	padding: 13px 0;
}










#pagdivwrap {
    position: relative;
    margin-top: 7px;
    float: right;
    margin-left: 13px;
}
#pagdivwrap .pagfilter {
	border: 1px solid #aaa;
    text-align: center;
	padding: 6px 23px;
}
#pagdivwrap .pagdiv {
	display: none;
	height: 300px;
    overflow-y: scroll;
	position: absolute;
    width: 85px;
    bottom: 22px;
    right: -10px;
    z-index: 100;
	background: rgba(0,0,0,.85);
}
#pagdivwrap:hover &gt; .pagdiv {
	display: block;
}
#pagdivwrap .pagdiv a {
	display: block;
    background: rgba(255,255,255,0.85);
    margin: 1px auto;
    padding: 3px;
}
#topBar {
	padding: 23px 0;
    min-height: 85px;
}
#topBar h1, h1.username {
	color:#60ff00;
	font-size: 23px;
	float: left;
	padding: 0 13px;
}
#topBar .shareIcons {
	float: left;
}
#topBar .shareIcons a {
	
}
#topBar .shareIcons a img {
	width: 33px;
	opacity: 0.85;
}
#topBar .shareIcons a:hover &gt; img {
	opacity: 1;
}
.searchformagkeyword input {
	background: none;
	/*float: left;*/
    border: 1px solid rgba(255,255,255,0.5);
    padding: 4px;
    color: rgba(255,255,255,0.85);
	width: 225px;
	
	display: block;
	margin: auto;
}
.searchformagkeyword input::placeholder{
    color: rgba(255,255,255,0.33);
}
#sk-results {
	opacity: 0.85;
	color: #fff;
}
.searchformagkeywordcontrols {
	float: right;
}
.searchformagkeyword span {
	opacity: 0.85;
	color: #fff;
}
.searchformagkeyword .pf-disabled {
	opacity: 0;
	color: #fff;
}
.searchformagkeyword span {
	padding: 6px;
}
#topBar .btnwrapper a {
	float: right;
}
#topBar .btnwrapper {
	margin-top: -11px;
	float: right;
}
#pageflip-controls {
	overflow: visible !important;
}
.pf-right-buttons {
	float: right;
    width: 169px !important;
    margin-right: 32px;
}
::-webkit-scrollbar {
  width: 10px;
}
::-webkit-scrollbar-track {
  background: #f1f1f1; 
}
::-webkit-scrollbar-thumb {
  background: #888; 
}
::-webkit-scrollbar-thumb:hover {
  background: #555; 
}
.pf-book-container {
	/*cursor: zoom-in;*/
}
#PrintArea {
	display: none;
}

.emaildiv
{
	background: rgba(255,255,255,0.9);
	position: relative;
	top: 65%;
	padding: 12px;
	width: 200px;
	margin: 0px auto;
	border-radius: 10px;
}

.emaildiv input, .emaildiv textarea
{
	padding: 6px;
	border: 1px solid #777;
	color: #000;
	width: 180px;
	margin: 6px auto;
	clear: both;
	display: block;
	border-radius: 10px;
	text-align:center;
}

.emaildiv textarea
{
	height: 50px;
}

.emaildiv a
{
	clear: both;
	background: #fff;
	color: #000;
	padding: 6px;
	border-radius: 10px;
	border: 1px solid #777;
	width: 180px;
	margin: 6px auto;
	text-decoration: none;
	text-align:center;
	display: block;
}

.emaildiv a:hover
{
	background: #bbb;
}


.emaildiv span
{
	clear: both;
	color: #f00;
	text-align:center;
	display: block;
}
.searchformagkeyword {
	width: 288px;
    margin: auto;
}
.pf-control-bar-button g, .pf-control-bar-pager g {
	fill: rgba(255,255,255,0.5) !important;
}
.pf-control-bar-button:not(.pf-disabled):hover g {
    fill: #FA0 !important;
}
.partners__nav--prev {
    right: 60px;
}


.megamenu .magsMenu .post-item-image {
	height: 190px;
}
.megamenu .post-item-image&gt;a&gt;img {
	opacity: 0;
}
.megamenu .magsMenu .post-item-image .img-container img {
	height: auto;
	max-height: 190px;
	transition: transform .5s, filter 1.5s ease-in-out;
    filter: grayscale(0);
	margin-top: 10px;
}
.megamenu .magsMenu .post-item-image .img-container:hover img {
	transform: scale(1.1);
    filter: grayscale(100%);
}
.footer {
    width: 100%;
    min-width: 100%;
    max-width: 100%;
    position: relative;
}
.footer a {
	color: #fff;
	font-family: "Oswald";
}
.footer a:hover {
	color: #60ff00;
}
.flex-container {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -ms-flex-flow: wrap;
    flex-flow: wrap;
	/*max-width: 1350px;
    width: calc(100% - 80px);
    margin-left: auto;
    margin-right: auto;
    height: auto;
    position: relative;*/
}
.footer-logo {
    width: 100px;
    height: 100%;
	float: left !important;
}
.footer-menu li {
    margin-bottom: 5px;
}
.footer-menu li a.active {
    color: #60ff00;
}
.small-title-oswald {
    text-transform: uppercase;
    font-size: 14px;
    line-height: 1.4;
    font-weight: 600;
    letter-spacing: 0px;
}
.footer-copyright {
    margin-top: 0;
    text-align: center;
    line-height: 1.7;
}

.p-letter-style {
    text-transform: uppercase;
    font-size: 10px;
    line-height: 1;
    font-weight: 400;
    letter-spacing: 3px;
    font-family: 'Oswald', sans-serif;
}
.text-color-4 {
    color: white;
}
.top-bottom-padding-90 {
    padding-top: 30px;
    padding-bottom: 50px;
}
.bottom-padding-60 {
    padding-bottom: 60px;
}
.flip-btn {
    position: relative;
    color: transparent;
    font-size: 12px;
    line-height: 23px;
    text-transform: uppercase;
    font-weight: 400;
    letter-spacing: 3px;
    display: block;
}
.footer-information li {
    margin-bottom: 10px;
}
.footer-information i, .footer-information svg {
    width: 30px !important;
    font-size: 12px;
	-moz-osx-font-smoothing: grayscale;
    -webkit-font-smoothing: antialiased;
    display: inline-block;
    font-style: normal;
    font-variant: normal;
    text-rendering: auto;
    line-height: 1;
	font-weight: 900;
	display: inline-block;
}
.xsmall-title-oswald {
    text-transform: uppercase;
    font-size: 12px;
    line-height: 1.4;
    font-weight: 600;
    letter-spacing: 1px;
    display: inline-grid;
}
.text-height-17 {
    line-height: 1.7 !important;
}
.footer-social li {
    margin-bottom: 10px;
}
.footer .container:after, .footer .container:before {
	display: none !important;
}


.home , .details {
	margin-top: 0 !important;
}

.border-btn-box {
  	position: relative;
  	border: 1px solid #bcbdbd;
  	text-align: center;
  	display: inline-block;
}

.border-btn-inner {
	overflow: hidden;
}

.border-btn-box:before,
.border-btn-inner:after {
  	position: absolute;
  	width: calc(100% + 1px);
  	height: 1px;
  	content: '';
  	background: #60ff00;
  	top: -1px;
  	left: 0;
  	-webkit-transition: 0.5s cubic-bezier(.755, .05, .855, .06);
  		-o-transition: 0.5s cubic-bezier(.755, .05, .855, .06);
  			transition: 0.5s cubic-bezier(.755, .05, .855, .06);
  	-webkit-transform: scaleX(0);
  	    -ms-transform: scaleX(0);
  	        transform: scaleX(0);
  	-webkit-transform-origin: left;
  	    -ms-transform-origin: left;
  	        transform-origin: left;
}

.border-btn-box:after,
.border-btn-inner:before {
  	position: absolute;
  	width: 1px;
  	height: calc(100% + 2px);
  	content: '';
  	background: #60ff00;
  	top: -1px;
  	right: -1px;
  	-webkit-transition: 0.5s cubic-bezier(.755, .05, .855, .06);
  		-o-transition: 0.5s cubic-bezier(.755, .05, .855, .06);
  			transition: 0.5s cubic-bezier(.755, .05, .855, .06);
  	-webkit-transform: scaleY(0);
  	    -ms-transform: scaleY(0);
  	        transform: scaleY(0);
  	-webkit-transform-origin: top;
  	    -ms-transform-origin: top;
  	        transform-origin: top;
}

.border-btn-inner:before {
	top: auto;
	right: auto;
  	bottom: -1px;
  	left: -1px;
  	-webkit-transform-origin: bottom;
  	    -ms-transform-origin: bottom;
  	        transform-origin: bottom;
}

.border-btn-inner:after {
	top: auto;
	left: auto;
  	bottom: -1px;
  	right: 0;
  	-webkit-transform-origin: right;
  	    -ms-transform-origin: right;
  	        transform-origin: right;
}

.border-btn-box:hover:before,
.border-btn-box:hover .border-btn-inner:after {
  	-webkit-transform: scaleX(1);
  	    -ms-transform: scaleX(1);
  	        transform: scaleX(1);
}

.border-btn-box:hover:after,
.border-btn-box:hover .border-btn-inner:before {
  	-webkit-transform: scaleY(1);
  	    -ms-transform: scaleY(1);
  	        transform: scaleY(1);
}

.border-btn {
	font-family: 'Oswald', sans-serif;
	text-transform: uppercase;
	letter-spacing: 6px;
	font-size: 12px;
	line-height: 60px;
	font-weight: 400;
	position: relative;
	color: transparent;
	padding: 0 60px;
}

.border-btn:before,
.border-btn:after {
	/*color: #2b2b31;
	content: attr(data-text);
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%) translateX(0);
	    -ms-transform: translateY(-50%) translateX(0);
	        transform: translateY(-50%) translateX(0);
	width: 100%;
	-webkit-transition: .96s cubic-bezier(.77, 0, .175, 1);
		-o-transition: .96s cubic-bezier(.77, 0, .175, 1);
			transition: .96s cubic-bezier(.77, 0, .175, 1);*/
}

.border-btn:after {
	color: #60ff00;
	-webkit-transform: translateY(-50%) translateX(30px);
	    -ms-transform: translateY(-50%) translateX(30px);
	        transform: translateY(-50%) translateX(30px);
	opacity: 0;
}

.border-btn-box:hover .border-btn:before {
	-webkit-transform: translateY(-50%) translateX(-30px);
	    -ms-transform: translateY(-50%) translateX(-30px);
	        transform: translateY(-50%) translateX(-30px);
	opacity: 0;
}

.border-btn-box:hover .border-btn:after {
	-webkit-transform: translateY(-50%) translateX(0);
	    -ms-transform: translateY(-50%) translateX(0);
	        transform: translateY(-50%) translateX(0);
	opacity: 1;
}

.dark-bg-1 .border-btn-box,
.dark-bg-2 .border-btn-box {
	border: 1px solid #dae9f4;
}

.dark-bg-1 .border-btn:before,
.dark-bg-2 .border-btn:before {
	color: white;
}

.red-bg .border-btn-box {
	border: 1px solid #2b2b31;
}

.red-bg .border-btn:before {
	color: #2b2b31;
}

.red-bg .border-btn:after {
	color: white;
}

.red-bg .border-btn-box:before,
.red-bg .border-btn-inner:after,
.red-bg .border-btn-box:after,
.red-bg .border-btn-inner:before {
  	background: white;
}

.border-btn-red.border-btn-box {
  	border: 1px solid #60ff00;
}

.border-btn-red.border-btn-box:before,
.border-btn-red .border-btn-inner:after,
.border-btn-red.border-btn-box:after,
.border-btn-red .border-btn-inner:before {
  	background: white;
}

.border-btn-red .border-btn:before,
.border-btn-red .border-btn:after {
	color: #60ff00;
}

.border-btn-red .border-btn:after {
	color: white;
}

@media only screen and (max-width: 767px) {
	
	.border-btn {
		line-height: 55px;
		padding: 0 55px;
	}
	
}

@media only screen and (max-width: 549px) {
	
	.border-btn {
		line-height: 50px;
		padding: 0 50px;
	}

}
.login-btn {
	margin-right: 20px;
    
}
.login-btn .border-btn {
	white-space: nowrap;
	line-height: 39px;
    padding: 0 39px;
    color: #fff;
}
.login-btn .border-btn:before {
	color: #fff;
}
.login-btn:hover .border-btn {
	color: #60ff00}
.login-btn:hover .border-btn:before {
	color: #60ff00}

.signin_term {
	font-size: 8px;
    font-weight: 100;
    color: rgba(255,255,255,0.5);
    text-align: justify;
    width: 320px;
    margin-top: 33px;
    display: block;
    margin-left: -20px;
    margin-right: -20px;
}

.menu-open {
	float: right;
	width: 40px;
	height: 22px;
	margin: 0px 0px 0 20px;
	-webkit-transform-origin: right;
	    -ms-transform-origin: right;
	        transform-origin: right;
	-webkit-transform: scaleX(0);
	    -ms-transform: scaleX(0);
	        transform: scaleX(0);
	-webkit-transition: .5s cubic-bezier(.77, 0, .175, 1);
		-o-transition: .5s cubic-bezier(.77, 0, .175, 1);
			transition: .5s cubic-bezier(.77, 0, .175, 1);
}
.header__sign-in {
	float: left;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 50px;
    width: 140px;
    -webkit-border-radius: 4px;
    border-radius: 4px;
    background-image: -moz-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
    background-image: -webkit-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
    background-image: -ms-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
    background-image: linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
    opacity: 0.85;
    margin-top: 9px;
}
.header__sign-in span {
    display: block;
    font-size: 13px;
    color: #fff;
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 1px;
}
.menu-open {
	-webkit-transform: scaleX(1);
	    -ms-transform: scaleX(1);
	        transform: scaleX(1);
	-webkit-transition: 1s cubic-bezier(.77, 0, .175, 1);
		-o-transition: 1s cubic-bezier(.77, 0, .175, 1);
			transition: 1s cubic-bezier(.77, 0, .175, 1);
	-webkit-transition-delay: 1s;
	     -o-transition-delay: 1s;
	        transition-delay: 1s;
}

.menu-open:before {
	content: '';
	position: absolute;
	width: 40px;
	height: 2px;
	left: 0;
	top: 50%;
	-webkit-transform-origin: right;
	    -ms-transform-origin: right;
	        transform-origin: right;
	-webkit-transform: translateY(-50%) scaleX(0);
	    -ms-transform: translateY(-50%) scaleX(0);
	        transform: translateY(-50%) scaleX(0);
	-webkit-transition: .4s cubic-bezier(.77, 0, .175, 1);
		-o-transition: .4s cubic-bezier(.77, 0, .175, 1);
			transition: .4s cubic-bezier(.77, 0, .175, 1);
}

.menu-open:before {
	-webkit-transform: translateY(-50%) scaleX(1);
	    -ms-transform: translateY(-50%) scaleX(1);
	        transform: translateY(-50%) scaleX(1);	
	-webkit-transition: 1s cubic-bezier(.77, 0, .175, 1);
		-o-transition: 1s cubic-bezier(.77, 0, .175, 1);
			transition: 1s cubic-bezier(.77, 0, .175, 1);
	-webkit-transition-delay: 1.1s;
	     -o-transition-delay: 1.1s;
	        transition-delay: 1.1s;		
}

.hamburger:before, 
.hamburger:after {
	content: '';
	position: absolute;
	width: 40px;
	height: 2px;
	-webkit-transition: 1s cubic-bezier(.77, 0, .175, 1);
		-o-transition: 1s cubic-bezier(.77, 0, .175, 1);
			transition: 1s cubic-bezier(.77, 0, .175, 1);
	left: 0;
	top: 0;
	-webkit-transition-delay: 1.3s;
	    -o-transition-delay: 1.3s;
	        transition-delay: 1.3s;
}

.hamburger:after {
	top: auto;
	bottom: 0;
}

.menu-open.active .hamburger:after {
	-webkit-transition: .3s cubic-bezier(.23, 1, .32, 1);
		-o-transition: .3s cubic-bezier(.23, 1, .32, 1);
			transition: .3s cubic-bezier(.23, 1, .32, 1);
	-webkit-transition-delay: 0s;
	     -o-transition-delay: 0s;
	        transition-delay: 0s;
	-webkit-transform: translateY(-10px);
	    -ms-transform: translateY(-10px);
	        transform: translateY(-10px);
}

.menu-open.active .hamburger:before {
	-webkit-transition: .3s cubic-bezier(.23, 1, .32, 1);
		-o-transition: .3s cubic-bezier(.23, 1, .32, 1);
			transition: .3s cubic-bezier(.23, 1, .32, 1);
	-webkit-transition-delay: 0s;
	     -o-transition-delay: 0s;
	        transition-delay: 0s;
	-webkit-transform: translateY(10px);
	    -ms-transform: translateY(10px);
	        transform: translateY(10px);
}
.menu-open:before,
.hamburger:before, 
.hamburger:after {
	background: white;
}
.searchloading {
	display: none;
  	position: fixed;
  	top: calc(50% - 50px);
  	left: calc(50% - 50px);
  	visibility: visible;
  	-webkit-transition: .5s cubic-bezier(.755, .05, .855, .06);
  		-o-transition: .5s cubic-bezier(.755, .05, .855, .06);
  			transition: .5s cubic-bezier(.755, .05, .855, .06);
  	z-index: 103;
  	width: 100px;
  	height: 100px;
}

.searchloading:before {
	content: '';
	width: 100%;
	height: 100%;
	border: 1px solid #2b2b31;
	border-left-color: white;
	-webkit-animation: 1.2s loading-anim cubic-bezier(.77, 0, .175, 1) infinite both;
  	    animation: 1.2s loading-anim cubic-bezier(.77, 0, .175, 1) infinite both;
  	border-radius: 50%;        
  	display: block;
}
.search__btn {
	float: left;
    color: #bdbdbd;
}
.search__btn:hover {
	color: #60ff00;
}
.search__btn svg {
	font-size: 27px;
    line-height: 64px;
    margin-right: 13px;
}
@media only screen and (max-width: 549px) {
	
	.search__btn {
		float: right;
	}
	.search__btn i {
		font-size: 20px;
		line-height: 39px;
	}
}
.search-container {
	width: 100%;
	height: 100%;
	min-height: 100vh;
	overflow: hidden;
	margin: 0;
	padding: 0;
	position: fixed;
	top: 0;
	left: 100%;
	-webkit-transition: 1s cubic-bezier(.86, 0, .07, 1);
		-o-transition: 1s cubic-bezier(.86, 0, .07, 1);
			transition: 1s cubic-bezier(.86, 0, .07, 1);
	z-index: 102;
	-webkit-transition-delay: .7s;
	    -o-transition-delay: .7s;
	        transition-delay: .7s;
	-webkit-transform: translateX(0);
	    -ms-transform: translateX(0);
	        transform: translateX(0);
}

.search-container.active {
	-webkit-transform: translateX(-100%);
	    -ms-transform: translateX(-100%);
	        transform: translateX(-100%);
	-webkit-transition-delay: 0s;
	    -o-transition-delay: 0s;
	        transition-delay: 0s;
}
.search-close {
	position: absolute;
	top: 20px;
	right: 40px;
	width: 40px;
	height: 22px;
	z-index: 3;
	-webkit-transition: .5s cubic-bezier(.77, 0, .175, 1);
		-o-transition: .5s cubic-bezier(.77, 0, .175, 1);
			transition: .5s cubic-bezier(.77, 0, .175, 1);
}
.nav-container * , .search-container * {
	font-family: 'Oswald', sans-serif;
	font-size: 14px;
}
body.out .nav-container.active .search-close {
	-webkit-transform: scaleX(0);
	    -ms-transform: scaleX(0);
	        transform: scaleX(0);
	-webkit-transition-delay: 1s;
	    -o-transition-delay: 1s;
	        transition-delay: 1s;
}

.search-close:before,
.search-close:after {
	content: '';
	width: 40px;
	height: 2px;
	background: white;
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%) rotate(0deg);
	    -ms-transform: translateY(-50%) rotate(0deg);
	        transform: translateY(-50%) rotate(0deg);
	-webkit-transition: .7s cubic-bezier(.77, 0, .175, 1);
		-o-transition: .7s cubic-bezier(.77, 0, .175, 1);
			transition: .7s cubic-bezier(.77, 0, .175, 1);
}

.search-container.active .search-close:before {
	-webkit-transform: translateY(-50%) rotate(225deg);
	    -ms-transform: translateY(-50%) rotate(225deg);
	        transform: translateY(-50%) rotate(225deg);
	-webkit-transition: 1s cubic-bezier(.77, 0, .175, 1);
		-o-transition: 1s cubic-bezier(.77, 0, .175, 1);
			transition: 1s cubic-bezier(.77, 0, .175, 1);
	-webkit-transition-delay: 1s;
	    -o-transition-delay: 1s;
	        transition-delay: 1s;
}

.search-container.active .search-close:after {
	-webkit-transform: translateY(-50%) rotate(135deg);
	    -ms-transform: translateY(-50%) rotate(135deg);
	        transform: translateY(-50%) rotate(135deg);
	-webkit-transition: 1s cubic-bezier(.77, 0, .175, 1);
		-o-transition: 1s cubic-bezier(.77, 0, .175, 1);
			transition: 1s cubic-bezier(.77, 0, .175, 1);
	-webkit-transition-delay: 1s;
	    -o-transition-delay: 1s;
	        transition-delay: 1s;
}

body.out .search-container.active .search-close:after,
body.out .search-container.active .search-close:before {
	-webkit-transform: translateY(-50%) rotate(0deg);
	    -ms-transform: translateY(-50%) rotate(0deg);
	        transform: translateY(-50%) rotate(0deg);
	-webkit-transition-delay: 0s;
	    -o-transition-delay: 0s;
	        transition-delay: 0s;
}

.search-box {
	display: block;
    width: 85%;
    position: absolute;
    top: 33%;
    left: 50%;
    margin-left: -42.5%;
	-webkit-transition: top 0.8s;
    -moz-transition: top 0.8s;
    transition: top 0.8s;
}
.search-box.active {
	top: 13%;
}
.search--form {
	position: relative;
	height: 69px;
}
.search--form input {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
    border: 0;
    background: rgba(255,255,255,0.85);
    padding: 13px 33px;
    border-radius: 4px;
	color: #2b2b31;
	font-size: 25px;
	letter-spacing: 2px;
	text-transform: uppercase;
}

.search--form button {
	position: absolute;
    top: 0;
    right: 0;
    font-size: 23px;
    padding-right: 25px;
    line-height: 65px;
}
.search--form button:hover {
	color: #60ff00;
}
.search-logo {
	position: absolute;
	width: 100px;
	top: 20px;
	left: 40px;
	overflow: hidden;
	z-index: 3;
}

.search-logo img {
	width: 100%;
	-webkit-transform: translateY(101%);
	    -ms-transform: translateY(101%);
	        transform: translateY(101%);
	-webkit-transition: .7s cubic-bezier(.77, 0, .175, 1);
		-o-transition: .7s cubic-bezier(.77, 0, .175, 1);
			transition: .7s cubic-bezier(.77, 0, .175, 1);
}
.search-container.active .search-logo img {
	-webkit-transform: translateY(0);
	    -ms-transform: translateY(0);
	        transform: translateY(0);
	-webkit-transition: 1s cubic-bezier(.77, 0, .175, 1);
		-o-transition: 1s cubic-bezier(.77, 0, .175, 1);
			transition: 1s cubic-bezier(.77, 0, .175, 1);
	-webkit-transition-delay: 1s;
	    -o-transition-delay: 1s;
	        transition-delay: 1s;
}

body.out .search-container.active .search-logo img {
	-webkit-transform: translateY(101%);
	    -ms-transform: translateY(101%);
	        transform: translateY(101%);
	-webkit-transition-delay: 0s;
	    -o-transition-delay: 0s;
	        transition-delay: 0s;
}
.search--form input::-webkit-input-placeholder {
   	color: #2b2b31;
	font-size: 25px;
}

.search--form input:-moz-placeholder {
   	color: #2b2b31;
	font-size: 25px;
}

.search--form input::-moz-placeholder {
   	color: #2b2b31;
	font-size: 25px;
}

.search--form input:-ms-input-placeholder {
   	color: #2b2b31;
	font-size: 25px;
}

.search--form input::-ms-input-placeholder {
   	color: #2b2b31;
	font-size: 25px;
}

.search--form input::placeholder {
   	color: #2b2b31;
	font-size: 25px;
}
.ui-autocomplete {
    border-radius: 0px;
	color: #ccc;
    height: 300px;
    overflow-y: scroll;
	text-transform: uppercase;
	letter-spacing: 2px;
}
.ui-autocomplete.source:hover {
    background: #eee;
}

.ui-menu .ui-menu-item a {
	display: block;
    padding: 6px 13px;
    line-height: 25px;
    font-size: 21px;
    font-weight: 100;
    cursor: pointer;
    color: #2b2b31;
}

.ui-menu .ui-menu-item a:hover {
	background: #fff;
}
.ui-menu .ui-menu-item a b {
	color: #2b2b31;
}
#suggests-container {
	position: absolute;
    background: rgb(223, 223, 224);
    top: 126px;
    z-index: 9;
}
.search-result {
	background: rgba(0,0,0,0.15);
    height: 65vh;
	display: none;
	text-transform: uppercase;
}
.search-box.active .search-result {
	display: block;
}
.search-result-header {
	background: rgba(0,0,0,0.15);
	margin-bottom: 6px;
}
.search-result-header ul {

}
.search-result-header li {
	display: table-cell;
	padding: 0 3px;
	width: 1%;
}
.search-result-header a {
	display: block;
    padding: 17px 13px;
	text-align: center;
	color: rgba(255,255,255,0.85) !important;
    font-weight: bold;
	letter-spacing: 1px;
	cursor: pointer;
	border-radius: 4px;
	text-transform: uppercase;
}
.search-result-header span {
	font-size: 13px;
}
.search-result-header a.active, .search-result-header a:hover {
	background: #60ff00;
	color: #fff;
}
.search-result-body {
	position: relative;
    height: calc(100% - 13px);
}
.search-result-body &gt; div {
	display: none;
	overflow-y: scroll;
    height: 100%;
	padding: 6px;
}
.search-result-body &gt; div.active {
	display: block;
}

.search-result-body &gt; div &gt; a {
    display: block;
}

.search-item {
 	width: calc(100% - 26px);
	clear: both;
    position: relative;
    padding: 13px;
    overflow: auto;
}
.search-item-mag {
	width: calc(20% - 6px);
	float: left;
    position: relative;
    padding: 3px;
    overflow: auto;
	margin: 15px auto;
	min-width: 188px;
}
.search-item-mag:hover {
	background: rgba(255,255,255,.1);
}
.search-item-mag .image {
	width: 100%;
}
.search-item-mag .image img {
    width: auto;
    margin: auto;
    display: block;
}
.search-item-mag .detail {
	position: relative;
    padding-left: 13px;
}
.search-item-mag .detail .search-title {
	font-size: 13px;
    text-align: center;
    font-weight: bold;
    color: #eee;
    margin-top: 5px;
    line-height: 20px;
    letter-spacing: 1px;
}

.search-item:hover {
	background: rgba(255,255,255,.1);
}
.search-item:not(:last-child) {
	border-bottom: 1px solid #5a5a5a;
}
.search-item .image {
	background-position: center;
    width: 100px;
    background-repeat: no-repeat;
    height: 100px;
    background-size: cover;
    float: left;
}
.search-item .image img {

}
.search-item .detail {
	position: relative;
    padding-left: 13px;
    float: left;
	min-height: 100px;
    width: calc(100% - 130px);
}
.search-item .detail .search-title {
	font-size: 21px;
	font-weight: bold;
    color: #eee;
    margin-top: 5px;
    line-height: 20px;
    letter-spacing: 2px;
    margin-bottom: 6px;
}
.search-item .detail .search-summary {
	font-size: 11px;
    letter-spacing: 2px;
    color: #ddd;
    margin-top: 6px;
    line-height: 1.7;
}
.search-item .detail .search-date {
	color: #aaa;
    position: absolute;
    top: 5px;
    right: 0;
    margin: 0;
    font-size: 13px;
}
.search-item .search-username {
	position: absolute;
	bottom: 13px;
	left: 13px;
	font-weight: bold;
    color: #eee;
}
.search-item-program {
 	width: 33%;
	float: left;
    position: relative;
    padding: 13px;
    overflow: auto;
	min-width: 333px;
}
.search-item-program:hover {
	background: rgba(255,255,255,.1);
}
.search-item-program:not(:last-child) {
	border-bottom: 1px solid #5a5a5a;
}
.search-item-program .image {
	width: 106px;
	height: 147px;
	float: left;
}
.search-item-program .image img {
	vertical-align: middle;
    max-width: 100%;
    border-style: none;
    width: 100%;
}
.search-item-program .detail {
	position: relative;
    padding-left: 13px;
    float: left;
	min-height: 100px;
    width: calc(100% - 120px);
}
.search-item-program .detail .search-title {
	font-size: 16px;
    font-weight: bold;
    color: #eee;
    margin-top: 5px;
    line-height: 20px;
    letter-spacing: 1px;
    margin-bottom: 11px;
}
.search-item-program .detail .search-summary {
	font-size: 11px;
    letter-spacing: 2px;
    color: #ddd;
    margin-top: 9px;
    line-height: 1.7;
}
.search-item-program .detail .search-duration {
	color: #aaa;
    margin: 6px 0px;
    display: block;
    font-size: 13px;
}
.search-item-program .detail .search-date {
	color: #aaa;
    margin: 8px 0;
    font-size: 11px;
    display: block;
}
.search-item-program .detail .search-date span {
	margin-right: 6px;
	border: 1px solid rgba(255,255,255,0.26);
	border-radius: 4px;
	padding: 2px 5px;
}
.search-item-program .search-channel {
	width: 33px;
    position: absolute;
    right: 13px;
    bottom: 13px;
}
.nav-container {
	width: 100%;
	height: 100%;
	min-height: 100vh;
	overflow: hidden;
	margin: 0;
	padding: 0;
	position: fixed;
	top: 0;
	left: 100%;
	-webkit-transition: 1s cubic-bezier(.86, 0, .07, 1);
		-o-transition: 1s cubic-bezier(.86, 0, .07, 1);
			transition: 1s cubic-bezier(.86, 0, .07, 1);
	z-index: 102;
	-webkit-transition-delay: .7s;
	    -o-transition-delay: .7s;
	        transition-delay: .7s;
	-webkit-transform: translateX(0);
	    -ms-transform: translateX(0);
	        transform: translateX(0);
}

.nav-container.active {

	-webkit-transform: translateX(-100%);
	    -ms-transform: translateX(-100%);
	        transform: translateX(-100%);
	-webkit-transition-delay: 0s;
	    -o-transition-delay: 0s;
	        transition-delay: 0s;
}

/* 5.1. Navigation logo */
.nav-logo {
	position: absolute;
	width: 100px;
	top: 20px;
	left: calc(50% + 40px);
	overflow: hidden;
	z-index: 3;
}

.nav-logo img {
	width: 100%;
	-webkit-transform: translateY(101%);
	    -ms-transform: translateY(101%);
	        transform: translateY(101%);
	-webkit-transition: .7s cubic-bezier(.77, 0, .175, 1);
		-o-transition: .7s cubic-bezier(.77, 0, .175, 1);
			transition: .7s cubic-bezier(.77, 0, .175, 1);
}

.nav-container.active .nav-logo img {
	-webkit-transform: translateY(0);
	    -ms-transform: translateY(0);
	        transform: translateY(0);
	-webkit-transition: 1s cubic-bezier(.77, 0, .175, 1);
		-o-transition: 1s cubic-bezier(.77, 0, .175, 1);
			transition: 1s cubic-bezier(.77, 0, .175, 1);
	-webkit-transition-delay: 1s;
	    -o-transition-delay: 1s;
	        transition-delay: 1s;
}

body.out .nav-container.active .nav-logo img {
	-webkit-transform: translateY(101%);
	    -ms-transform: translateY(101%);
	        transform: translateY(101%);
	-webkit-transition-delay: 0s;
	    -o-transition-delay: 0s;
	        transition-delay: 0s;
}

/* 5.2. Navigation close icon */
.menu-close {
	position: absolute;
	top: 20px;
	right: 40px;
	width: 40px;
	height: 22px;
	z-index: 3;
	-webkit-transition: .5s cubic-bezier(.77, 0, .175, 1);
		-o-transition: .5s cubic-bezier(.77, 0, .175, 1);
			transition: .5s cubic-bezier(.77, 0, .175, 1);
}

body.out .nav-container.active .menu-close {
	-webkit-transform: scaleX(0);
	    -ms-transform: scaleX(0);
	        transform: scaleX(0);
	-webkit-transition-delay: 1s;
	    -o-transition-delay: 1s;
	        transition-delay: 1s;
}

.menu-close:before,
.menu-close:after {
	content: '';
	width: 40px;
	height: 2px;
	background: white;
	position: absolute;
	top: 50%;
	left: 0;
	-webkit-transform: translateY(-50%) rotate(0deg);
	    -ms-transform: translateY(-50%) rotate(0deg);
	        transform: translateY(-50%) rotate(0deg);
	-webkit-transition: .7s cubic-bezier(.77, 0, .175, 1);
		-o-transition: .7s cubic-bezier(.77, 0, .175, 1);
			transition: .7s cubic-bezier(.77, 0, .175, 1);
}

.nav-container.active .menu-close:before {
	-webkit-transform: translateY(-50%) rotate(225deg);
	    -ms-transform: translateY(-50%) rotate(225deg);
	        transform: translateY(-50%) rotate(225deg);
	-webkit-transition: 1s cubic-bezier(.77, 0, .175, 1);
		-o-transition: 1s cubic-bezier(.77, 0, .175, 1);
			transition: 1s cubic-bezier(.77, 0, .175, 1);
	-webkit-transition-delay: 1s;
	    -o-transition-delay: 1s;
	        transition-delay: 1s;
}

.nav-container.active .menu-close:after {
	-webkit-transform: translateY(-50%) rotate(135deg);
	    -ms-transform: translateY(-50%) rotate(135deg);
	        transform: translateY(-50%) rotate(135deg);
	-webkit-transition: 1s cubic-bezier(.77, 0, .175, 1);
		-o-transition: 1s cubic-bezier(.77, 0, .175, 1);
			transition: 1s cubic-bezier(.77, 0, .175, 1);
	-webkit-transition-delay: 1s;
	    -o-transition-delay: 1s;
	        transition-delay: 1s;
}

body.out .nav-container.active .menu-close:after,
body.out .nav-container.active .menu-close:before {
	-webkit-transform: translateY(-50%) rotate(0deg);
	    -ms-transform: translateY(-50%) rotate(0deg);
	        transform: translateY(-50%) rotate(0deg);
	-webkit-transition-delay: 0s;
	    -o-transition-delay: 0s;
	        transition-delay: 0s;
}

/* 5.3. Navigation menu */
.nav-menu {
	display: -webkit-box;
		display: -ms-flexbox;
			display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-flow: column;
	        flex-flow: column;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	width: 50%;
	height: 100%;
	margin-left: calc(50% - 2px);
	position: relative;
	border-left: 2px solid #2b2b31;
}

.nav-box {
	margin: 8px 0;
	padding: 0;
	overflow: hidden;
}

/* 5.4. Navigation links */
.nav-box a {
	-webkit-transform: translateY(104%);
	    -ms-transform: translateY(104%);
	        transform: translateY(104%);
	-webkit-transition: .7s cubic-bezier(.77, 0, .175, 1);
		-o-transition: .7s cubic-bezier(.77, 0, .175, 1);
			transition: .7s cubic-bezier(.77, 0, .175, 1);
	margin: 0;
	padding: 0;
	display: inline-block;
}

.nav-container li:nth-last-child(1) a,
.nav-container li li:nth-last-child(1) a {
	-webkit-transition-delay: 0s;
	    -o-transition-delay: 0s;
	        transition-delay: 0s;
}

.nav-container li:nth-last-child(2) a,
.nav-container li li:nth-last-child(2) a {
	-webkit-transition-delay: .1s;
	    -o-transition-delay: .1s;
	        transition-delay: .1s;
}

.nav-container li:nth-last-child(3) a,
.nav-container li li:nth-last-child(3) a {
	-webkit-transition-delay: .2s;
	    -o-transition-delay: .2s;
	        transition-delay: .2s;
}

.nav-container li:nth-last-child(4) a,
.nav-container li li:nth-last-child(4) a {
	-webkit-transition-delay: .3s;
	    -o-transition-delay: .3s;
	        transition-delay: .3s;
}

.nav-container li:nth-last-child(5) a,
.nav-container li li:nth-last-child(5) a {
	-webkit-transition-delay: .4s;
	    -o-transition-delay: .4s;
	        transition-delay: .4s;
}

.nav-container li:nth-last-child(6) a,
.nav-container li li:nth-last-child(6) a {
	-webkit-transition-delay: .5s;
	    -o-transition-delay: .5s;
	        transition-delay: .5s;
}

.nav-container li:nth-last-child(7) a,
.nav-container li li:nth-last-child(7) a {
	-webkit-transition-delay: .6s;
	    -o-transition-delay: .6s;
	        transition-delay: .6s;
}

.nav-container li:nth-last-child(8) a,
.nav-container li li:nth-last-child(8) a {
	-webkit-transition-delay: .7s;
	    -o-transition-delay: .7s;
	        transition-delay: .7s;
}

.nav-container li:nth-last-child(9) a,
.nav-container li li:nth-last-child(9) a {
	-webkit-transition-delay: .8s;
	    -o-transition-delay: .8s;
	        transition-delay: .8s;
}

.nav-container li:nth-last-child(10) a,
.nav-container li li:nth-last-child(10) a {
	-webkit-transition-delay: .9s;
	    -o-transition-delay: .9s;
	        transition-delay: .9s;
}

.nav-container li:nth-last-child(11) a,
.nav-container li li:nth-last-child(11) a {
	-webkit-transition-delay: 1s;
	    -o-transition-delay: 1s;
	        transition-delay: 1s;
}

.nav-container li:nth-last-child(12) a,
.nav-container li li:nth-last-child(12) a {
	-webkit-transition-delay: 1.1s;
	    -o-transition-delay: 1.1s;
	        transition-delay: 1.1s;
}

.nav-container.active a {
	-webkit-transition: 1.5s cubic-bezier(.23, 1, .32, 1);
		-o-transition: 1.5s cubic-bezier(.23, 1, .32, 1);
			transition: 1.5s cubic-bezier(.23, 1, .32, 1);
	-webkit-transform: translateY(0);
	    -ms-transform: translateY(0);
	        transform: translateY(0);	
}

.nav-container.active li:nth-child(1) a,
.nav-container.active li li:nth-child(1) a {
	-webkit-transition-delay: 1s;
	    -o-transition-delay: 1s;
	        transition-delay: 1s;
}

.nav-container.active li:nth-child(2) a,
.nav-container.active li li:nth-child(2) a {
	-webkit-transition-delay: 1.1s;
	    -o-transition-delay: 1.1s;
	        transition-delay: 1.1s;
}

.nav-container.active li:nth-child(3) a,
.nav-container.active li li:nth-child(3) a {
	-webkit-transition-delay: 1.2s;
	    -o-transition-delay: 1.2s;
	        transition-delay: 1.2s;
}

.nav-container.active li:nth-child(4) a,
.nav-container.active li li:nth-child(4) a {
	-webkit-transition-delay: 1.3s;
	    -o-transition-delay: 1.3s;
	        transition-delay: 1.3s;
}

.nav-container.active li:nth-child(5) a,
.nav-container.active li li:nth-child(5) a {
	-webkit-transition-delay: 1.4s;
	    -o-transition-delay: 1.4s;
	        transition-delay: 1.4s;
}

.nav-container.active li:nth-child(6) a,
.nav-container.active li li:nth-child(6) a {
	-webkit-transition-delay: 1.5s;
	    -o-transition-delay: 1.5s;
	        transition-delay: 1.5s;
}

.nav-container.active li:nth-child(7) a,
.nav-container.active li li:nth-child(7) a {
	-webkit-transition-delay: 1.6s;
	    -o-transition-delay: 1.6s;
	        transition-delay: 1.6s;
}

.nav-container.active li:nth-child(8) a,
.nav-container.active li li:nth-child(8) a {
	-webkit-transition-delay: 1.7s;
	    -o-transition-delay: 1.7s;
	        transition-delay: 1.7s;
}

.nav-container.active li:nth-child(9) a,
.nav-container.active li li:nth-child(9) a {
	-webkit-transition-delay: 1.8s;
	    -o-transition-delay: 1.8s;
	        transition-delay: 1.8s;
}

.nav-container.active li:nth-child(10) a,
.nav-container.active li li:nth-child(10) a {
	-webkit-transition-delay: 1.9s;
	    -o-transition-delay: 1.9s;
	        transition-delay: 1.9s;
}

.nav-container.active li:nth-child(11) a,
.nav-container.active li li:nth-child(11) a {
	-webkit-transition-delay: 2s;
	    -o-transition-delay: 2s;
	        transition-delay: 2s;
}

.nav-container.active li:nth-child(12) a,
.nav-container.active li li:nth-child(12) a {
	-webkit-transition-delay: 2.1s;
	    -o-transition-delay: 2.1s;
	        transition-delay: 2.1s;
}

body.out .nav-container.active a {
	-webkit-transition: 1s cubic-bezier(.755, .05, .855, .06);
		-o-transition: 1s cubic-bezier(.755, .05, .855, .06);
			transition: 1s cubic-bezier(.755, .05, .855, .06);
	-webkit-transform: translateY(104%);
	    -ms-transform: translateY(104%);
	        transform: translateY(104%);
}

body.out .nav-container.active li:nth-last-child(1) a,
body.out .nav-container.active li li:nth-last-child(1) a {
	-webkit-transition-delay: 0s;
	    -o-transition-delay: 0s;
	        transition-delay: 0s;
}

body.out .nav-container.active li:nth-last-child(2) a,
body.out .nav-container.active li li:nth-last-child(2) a {
	-webkit-transition-delay: .04s;
	    -o-transition-delay: .04s;
	        transition-delay: .04s;
}

body.out .nav-container.active li:nth-last-child(3) a,
body.out .nav-container.active li li:nth-last-child(3) a {
	-webkit-transition-delay: .08s;
	    -o-transition-delay: .08s;
	        transition-delay: .08s;
}

body.out .nav-container.active li:nth-last-child(4) a,
body.out .nav-container.active li li:nth-last-child(4) a {
	-webkit-transition-delay: .12s;
	    -o-transition-delay: .12s;
	        transition-delay: .12s;
}

body.out .nav-container.active li:nth-last-child(5) a,
body.out .nav-container.active li li:nth-last-child(5) a {
	-webkit-transition-delay: .16s;
	    -o-transition-delay: .16s;
	        transition-delay: .16s;
}

body.out .nav-container.active li:nth-last-child(6) a,
body.out .nav-container.active li li:nth-last-child(6) a {
	-webkit-transition-delay: .2s;
	    -o-transition-delay: .2s;
	        transition-delay: .2s;
}

body.out .nav-container.active li:nth-last-child(7) a,
body.out .nav-container.active li li:nth-last-child(7) a {
	-webkit-transition-delay: .24s;
	    -o-transition-delay: .24s;
	        transition-delay: .24s;
}

body.out .nav-container.active li:nth-last-child(8) a,
body.out .nav-container.active li li:nth-last-child(8) a {
	-webkit-transition-delay: .28s;
	    -o-transition-delay: .28s;
	        transition-delay: .28s;
}

body.out .nav-container.active li:nth-last-child(9) a,
body.out .nav-container.active li li:nth-last-child(9) a {
	-webkit-transition-delay: .32s;
	    -o-transition-delay: .32s;
	        transition-delay: .32s;
}

body.out .nav-container.active li:nth-last-child(10) a,
body.out .nav-container.active li li:nth-last-child(10) a {
	-webkit-transition-delay: .36s;
	    -o-transition-delay: .36s;
	        transition-delay: .36s;
}

body.out .nav-container.active li:nth-last-child(11) a,
body.out .nav-container.active li li:nth-last-child(11) a {
	-webkit-transition-delay: .4s;
	    -o-transition-delay: .4s;
	        transition-delay: .4s;
}

body.out .nav-container.active li:nth-last-child(12) a,
body.out .nav-container.active li li:nth-last-child(12) a {
	-webkit-transition-delay: .44s;
	    -o-transition-delay: .44s;
	        transition-delay: .44s;
}

.nav-btn {
	position: relative;
    text-transform: uppercase;
	margin: 0;
	padding: 0;
	font-size: 5.5vh;
	line-height: 1.1;
	font-weight: 500;
	font-family: 'Oswald', sans-serif;
	color: white;
	white-space: nowrap;
}	

.nav-btn:before {
	content: attr(data-text);
	position: absolute;
	top: 50%;
	color: #60ff00;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
	left: 0;
	-webkit-transition: .5s cubic-bezier(.755, .05, .855, .06);
		-o-transition: .5s cubic-bezier(.755, .05, .855, .06);
			transition: .5s cubic-bezier(.755, .05, .855, .06);
	width: 0%;
	white-space: nowrap;
	overflow: hidden;
	background: #2b2b31;
}

.nav-btn.active:before {
	width: 100%;
}

a:hover .nav-btn:before {
	width: 100%;
}

/* 5.5. Navigation backgrounds */
.nav-bg {
	position: absolute;
	top: 0;
	right: 100%;
	width: calc(100% - 1px);
	height: 100%;
	pointer-events: none;
}

.nav-bg-change.active .nav-bg {
}
.nav-bg div {
	position: absolute;
	top: 0;
	width: calc(100% - 1px);
	height: 100%;
	pointer-events: none;
	background-position: center center;
	background-size: cover;
	background-repeat: no-repeat;
	z-index: -2;
	-webkit-transform: scale(1.1);
	    -ms-transform: scale(1.1);
	        transform: scale(1.1);
	-webkit-transition: .9s cubic-bezier(.77, 0, .175, 1);
		-o-transition: .9s cubic-bezier(.77, 0, .175, 1);
			transition: .9s cubic-bezier(.77, 0, .175, 1);
	opacity: 0;
}

.nav-bg-change.active .nav-bg div {
	-webkit-transform: scale(1);
	    -ms-transform: scale(1);
	        transform: scale(1);
	
	opacity: 1;
}
/* 5.6. Navigation backgrounds overlay */
.nav-menu:before {
	content: '';
	width: 103%;
	height: 100%;
	position: absolute;
	top: 0;
	left: 0;
	background: #2b2b31;
	-webkit-transition: .7s cubic-bezier(.86, 0, .07, 1);
		-o-transition: .7s cubic-bezier(.86, 0, .07, 1);
			transition: .7s cubic-bezier(.86, 0, .07, 1);
	-webkit-transition-delay: 0s;
	    -o-transition-delay: 0s;
	        transition-delay: 0s;		
	z-index: -1;
	-webkit-transform: translateX(-100%) translateY(0);
	    -ms-transform: translateX(-100%) translateY(0);
	        transform: translateX(-100%) translateY(0);        
}

.nav-container.active .nav-menu:before {
	-webkit-transform: translateX(0) translateY(0);
	    -ms-transform: translateX(0) translateY(0);
	        transform: translateX(0) translateY(0);
	-webkit-transition: 1s cubic-bezier(.86, 0, .07, 1);
		-o-transition: 1s cubic-bezier(.86, 0, .07, 1);
			transition: 1s cubic-bezier(.86, 0, .07, 1);
	-webkit-transition-delay: 1s;
	    -o-transition-delay: 1s;
	        transition-delay: 1s;
}

body.out .nav-container.active .nav-menu:before {
	-webkit-transform: translateX(-100%) translateY(0);
	    -ms-transform: translateX(-100%) translateY(0);
	        transform: translateX(-100%) translateY(0); 
	-webkit-transition-delay: .5s;
	     -o-transition-delay: .5s;
	        transition-delay: .5s;
}

.nav-link .nav-btn {
	-webkit-transition: 1s cubic-bezier(.77, 0, .175, 1);
		-o-transition: 1s cubic-bezier(.77, 0, .175, 1);
			transition: 1s cubic-bezier(.77, 0, .175, 1);
	-webkit-transform: translateY(0);
	    -ms-transform: translateY(0);
	        transform: translateY(0);
	display: inline-block;
}

.nav-link.done .nav-btn {
	-webkit-transform: translateY(100%);
	    -ms-transform: translateY(100%);
	        transform: translateY(100%);
}

.nav-link.done {
	pointer-events: none;
}

li:nth-last-child(1) .nav-link.done .nav-btn {
	-webkit-transition-delay: 0s;
	    -o-transition-delay: 0s;
	        transition-delay: 0s;
}

li:nth-last-child(2) .nav-link.done .nav-btn {
	-webkit-transition-delay: .1s;
	    -o-transition-delay: .1s;
	        transition-delay: .1s;
}

li:nth-last-child(3) .nav-link.done .nav-btn {
	-webkit-transition-delay: .2s;
	    -o-transition-delay: .2s;
	        transition-delay: .2s;
}

li:nth-last-child(4) .nav-link.done .nav-btn {
	-webkit-transition-delay: .3s;
	    -o-transition-delay: .3s;
	        transition-delay: .3s;
}

li:nth-last-child(5) .nav-link.done .nav-btn {
	-webkit-transition-delay: .4s;
	    -o-transition-delay: .4s;
	        transition-delay: .4s;
}

li:nth-last-child(6) .nav-link.done .nav-btn {
	-webkit-transition-delay: .5s;
	    -o-transition-delay: .5s;
	        transition-delay: .5s;
}

li:nth-last-child(7) .nav-link.done .nav-btn {
	-webkit-transition-delay: .6s;
	    -o-transition-delay: .6s;
	        transition-delay: .6s;
}

li:nth-last-child(8) .nav-link.done .nav-btn {
	-webkit-transition-delay: .7s;
	    -o-transition-delay: .7s;
	        transition-delay: .7s;
}

li:nth-last-child(9) .nav-link.done .nav-btn {
	-webkit-transition-delay: .8s;
	    -o-transition-delay: .8s;
	        transition-delay: .8s;
}

li:nth-last-child(10) .nav-link.done .nav-btn {
	-webkit-transition-delay: .9s;
	    -o-transition-delay: .9s;
	        transition-delay: .9s;
}

li:nth-last-child(11) .nav-link.done .nav-btn {
	-webkit-transition-delay: 1s;
	    -o-transition-delay: 1s;
	        transition-delay: 1s;
}

li:nth-last-child(12) .nav-link.done .nav-btn {
	-webkit-transition-delay: 1.1s;
	    -o-transition-delay: 1.1s;
	        transition-delay: 1.1s;
}

li:nth-last-child(1) .nav-link .nav-btn {
	-webkit-transition-delay: .6s;
	    -o-transition-delay: .6s;
	        transition-delay: .6s;
}

li:nth-last-child(2) .nav-link .nav-btn {
	-webkit-transition-delay: .7s;
	    -o-transition-delay: .7s;
	        transition-delay: .7s;
}

li:nth-last-child(3) .nav-link .nav-btn {
	-webkit-transition-delay: .8s;
	    -o-transition-delay: .8s;
	        transition-delay: .8s;
}

li:nth-last-child(4) .nav-link .nav-btn {
	-webkit-transition-delay: .9s;
	    -o-transition-delay: .9s;
	        transition-delay: .9s;
}

li:nth-last-child(5) .nav-link .nav-btn {
	-webkit-transition-delay: 1s;
	    -o-transition-delay: 1s;
	        transition-delay: 1s;
}

li:nth-last-child(6) .nav-link .nav-btn {
	-webkit-transition-delay: 1.1s;
	    -o-transition-delay: 1.1s;
	        transition-delay: 1.1s;
}

li:nth-last-child(7) .nav-link .nav-btn {
	-webkit-transition-delay: 1.2s;
	    -o-transition-delay: 1.2s;
	        transition-delay: 1.2s;
}

li:nth-last-child(8) .nav-link .nav-btn {
	-webkit-transition-delay: 1.3s;
	    -o-transition-delay: 1.3s;
	        transition-delay: 1.3s;
}

li:nth-last-child(9) .nav-link .nav-btn {
	-webkit-transition-delay: 1.4s;
	    -o-transition-delay: 1.4s;
	        transition-delay: 1.4s;
}

li:nth-last-child(10) .nav-link .nav-btn {
	-webkit-transition-delay: 1.5s;
	    -o-transition-delay: 1.5s;
	        transition-delay: 1.5s;
}

li:nth-last-child(11) .nav-link .nav-btn {
	-webkit-transition-delay: 1.6s;
	    -o-transition-delay: 1.6s;
	        transition-delay: 1.6s;
}

li:nth-last-child(12) .nav-link .nav-btn {
	-webkit-transition-delay: 1.7s;
	    -o-transition-delay: 1.7s;
	        transition-delay: 1.7s;
}

@media only screen and (max-width: 1399px) {
	
	.nav-box {
		margin: 6px 0;
	}
	
	.nav-btn {
		/*font-size: 50px;*/
	}	
	
}

@media only screen and (max-width: 1199px) {
	
	.nav-box {
		margin: 5px 0;
	}
	
	.nav-btn {
		/*font-size: 45px;*/
	}	
	
}

@media only screen and (max-width: 999px) {
	
	.nav-logo {
		left: 20px;
	}

	.menu-close {
		right: 20px;
	}
	
	.dropdown-close-box {
		left: calc(50% + 18px);
		top: 20%;
		-webkit-transform: translateY(0);
		    -ms-transform: translateY(0);
		        transform: translateY(0);
	}

	.nav-box {
		margin: 4px 0;
	}
	
	.nav-btn {
		/*font-size: 40px;*/
	}
	
}

@media only screen and (max-width: 767px) {
	
	.nav-btn {
		/*font-size: 30px;*/
	}	
	
}

@media only screen and (max-width: 549px) {
	
	.nav-logo {
		left: 10px;
		top: 10px;
	}

	.menu-close {
		right: 10px;
		top: 10px;
	}
	
	.nav-btn {
		/*font-size: 25px;*/
	}	
	
}

@media only screen and (min-width: 550px) and (orientation: portrait) {
	.nav-btn {
		font-size: 2.5vh !important;
		line-height: 1.2 !important;
	}
}

@media only screen and (orientation: portrait) {
	
	.nav-logo {
		left: 40px;
	}

	.nav-menu {
		width: 100%;
		height: 50%;
		margin-left: 0;
		margin-bottom: calc(50% - 2px);
		border-left: none;
		border-bottom: 2px solid #2b2b31;
	}
	
	.nav-bg {
		top: 100%;
		right: 0;
		width: 100%;
		height: calc(100% - 1px);
	}

	.nav-menu:before {
		width: 100%;
		height: 103%;
		top: 100%;
		-webkit-transform: translateX(0) translateY(0);
		    -ms-transform: translateX(0) translateY(0);
		        transform: translateX(0) translateY(0);
	}
	
	.nav-container.active .nav-menu:before {
		-webkit-transform: translateX(0) translateY(-100%);
		    -ms-transform: translateX(0) translateY(-100%);
		        transform: translateX(0) translateY(-100%); 		
	}
	
	body.out .nav-container.active .nav-menu:before {
		-webkit-transform: translateX(0) translateY(0);
		    -ms-transform: translateX(0) translateY(0);
		        transform: translateX(0) translateY(0);
	}

}

@media only screen and (max-width: 999px) and (orientation: portrait) {
	
	.nav-logo {
		left: 20px;
	}
	
}

@media only screen and (max-width: 549px) and (orientation: portrait) {
	
	.nav-logo {
		left: 10px;
	}
	
	.nav-menu {
		height: 100%;
		margin-left: 0;
		margin-bottom: 0;
		border-bottom: none;
	}
	
	.nav-bg {
		display: none;
	}

	.nav-menu:before {
		content: normal;
	}
	
}



.main__nav .dropdown {
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translateX(-50%) translateY(-50%);
	    -ms-transform: translateX(-50%) translateY(-50%);
	        transform: translateX(-50%) translateY(-50%);
	width: 100%;
	height: 100%;
	display: -webkit-box;
		display: -ms-flexbox;
			display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	    -ms-flex-flow: column;
	        flex-flow: column;
	-webkit-box-align: center;
	    -ms-flex-align: center;
	        align-items: center;
	-webkit-box-pack: center;
	    -ms-flex-pack: center;
	        justify-content: center;
	pointer-events: none;
	z-index: 2;
}

.main__nav .dropdown.active {
	pointer-events: auto;
	display: flex !important;
}

.main__nav .dropdown .nav-btn {
	-webkit-transform: translateY(120%);
	    -ms-transform: translateY(120%);
	        transform: translateY(120%);
	-webkit-transition: 1s cubic-bezier(.77, 0, .175, 1);
		-o-transition: 1s cubic-bezier(.77, 0, .175, 1);
			transition: 1s cubic-bezier(.77, 0, .175, 1);
	pointer-events: none;
	display: inline-block;
}

.main__nav .dropdown.active .nav-btn {
	pointer-events: auto;
	-webkit-transform: translateY(0);
	    -ms-transform: translateY(0);
	        transform: translateY(0);
}

.nav-link .nav-btn {
	-webkit-transition: 1s cubic-bezier(.77, 0, .175, 1);
		-o-transition: 1s cubic-bezier(.77, 0, .175, 1);
			transition: 1s cubic-bezier(.77, 0, .175, 1);
	-webkit-transform: translateY(0);
	    -ms-transform: translateY(0);
	        transform: translateY(0);
	display: inline-block;
}

.nav-link.done .nav-btn {
	-webkit-transform: translateY(100%);
	    -ms-transform: translateY(100%);
	        transform: translateY(100%);
}

.nav-link.done {
	pointer-events: none;
}

li:nth-last-child(1) .nav-link.done .nav-btn,
.main__nav .dropdown li:nth-last-child(1) .nav-btn {
	-webkit-transition-delay: 0s;
	    -o-transition-delay: 0s;
	        transition-delay: 0s;
}

li:nth-last-child(2) .nav-link.done .nav-btn,
.main__nav .dropdown li:nth-last-child(2) .nav-btn {
	-webkit-transition-delay: .1s;
	    -o-transition-delay: .1s;
	        transition-delay: .1s;
}

li:nth-last-child(3) .nav-link.done .nav-btn,
.main__nav .dropdown li:nth-last-child(3) .nav-btn {
	-webkit-transition-delay: .2s;
	    -o-transition-delay: .2s;
	        transition-delay: .2s;
}

li:nth-last-child(4) .nav-link.done .nav-btn,
.main__nav .dropdown li:nth-last-child(4) .nav-btn {
	-webkit-transition-delay: .3s;
	    -o-transition-delay: .3s;
	        transition-delay: .3s;
}

li:nth-last-child(5) .nav-link.done .nav-btn,
.main__nav .dropdown li:nth-last-child(5) .nav-btn {
	-webkit-transition-delay: .4s;
	    -o-transition-delay: .4s;
	        transition-delay: .4s;
}

li:nth-last-child(6) .nav-link.done .nav-btn,
.main__nav .dropdown li:nth-last-child(6) .nav-btn {
	-webkit-transition-delay: .5s;
	    -o-transition-delay: .5s;
	        transition-delay: .5s;
}

li:nth-last-child(7) .nav-link.done .nav-btn,
.main__nav .dropdown li:nth-last-child(7) .nav-btn {
	-webkit-transition-delay: .6s;
	    -o-transition-delay: .6s;
	        transition-delay: .6s;
}

li:nth-last-child(8) .nav-link.done .nav-btn,
.main__nav .dropdown li:nth-last-child(8) .nav-btn {
	-webkit-transition-delay: .7s;
	    -o-transition-delay: .7s;
	        transition-delay: .7s;
}

li:nth-last-child(9) .nav-link.done .nav-btn,
.main__nav .dropdown li:nth-last-child(9) .nav-btn {
	-webkit-transition-delay: .8s;
	    -o-transition-delay: .8s;
	        transition-delay: .8s;
}

li:nth-last-child(10) .nav-link.done .nav-btn,
.main__nav .dropdown li:nth-last-child(10) .nav-btn {
	-webkit-transition-delay: .9s;
	    -o-transition-delay: .9s;
	        transition-delay: .9s;
}

li:nth-last-child(11) .nav-link.done .nav-btn,
.main__nav .dropdown li:nth-last-child(11) .nav-btn {
	-webkit-transition-delay: 1s;
	    -o-transition-delay: 1s;
	        transition-delay: 1s;
}

li:nth-last-child(12) .nav-link.done .nav-btn,
.main__nav .dropdown li:nth-last-child(12) .nav-btn {
	-webkit-transition-delay: 1.1s;
	    -o-transition-delay: 1.1s;
	        transition-delay: 1.1s;
}

li:nth-last-child(1) .nav-link .nav-btn,
.main__nav .dropdown.active li:nth-last-child(1) .nav-btn {
	-webkit-transition-delay: .6s;
	    -o-transition-delay: .6s;
	        transition-delay: .6s;
}

li:nth-last-child(2) .nav-link .nav-btn,
.main__nav .dropdown.active li:nth-last-child(2) .nav-btn {
	-webkit-transition-delay: .7s;
	    -o-transition-delay: .7s;
	        transition-delay: .7s;
}

li:nth-last-child(3) .nav-link .nav-btn,
.main__nav .dropdown.active li:nth-last-child(3) .nav-btn {
	-webkit-transition-delay: .8s;
	    -o-transition-delay: .8s;
	        transition-delay: .8s;
}

li:nth-last-child(4) .nav-link .nav-btn,
.main__nav .dropdown.active li:nth-last-child(4) .nav-btn {
	-webkit-transition-delay: .9s;
	    -o-transition-delay: .9s;
	        transition-delay: .9s;
}

li:nth-last-child(5) .nav-link .nav-btn,
.main__nav .dropdown.active li:nth-last-child(5) .nav-btn {
	-webkit-transition-delay: 1s;
	    -o-transition-delay: 1s;
	        transition-delay: 1s;
}

li:nth-last-child(6) .nav-link .nav-btn,
.main__nav .dropdown.active li:nth-last-child(6) .nav-btn {
	-webkit-transition-delay: 1.1s;
	    -o-transition-delay: 1.1s;
	        transition-delay: 1.1s;
}

li:nth-last-child(7) .nav-link .nav-btn,
.main__nav .dropdown.active li:nth-last-child(7) .nav-btn {
	-webkit-transition-delay: 1.2s;
	    -o-transition-delay: 1.2s;
	        transition-delay: 1.2s;
}

li:nth-last-child(8) .nav-link .nav-btn,
.main__nav .dropdown.active li:nth-last-child(8) .nav-btn {
	-webkit-transition-delay: 1.3s;
	    -o-transition-delay: 1.3s;
	        transition-delay: 1.3s;
}

li:nth-last-child(9) .nav-link .nav-btn,
.main__nav .dropdown.active li:nth-last-child(9) .nav-btn {
	-webkit-transition-delay: 1.4s;
	    -o-transition-delay: 1.4s;
	        transition-delay: 1.4s;
}

li:nth-last-child(10) .nav-link .nav-btn,
.main__nav .dropdown.active li:nth-last-child(10) .nav-btn {
	-webkit-transition-delay: 1.5s;
	    -o-transition-delay: 1.5s;
	        transition-delay: 1.5s;
}

li:nth-last-child(11) .nav-link .nav-btn,
.main__nav .dropdown.active li:nth-last-child(11) .nav-btn {
	-webkit-transition-delay: 1.6s;
	    -o-transition-delay: 1.6s;
	        transition-delay: 1.6s;
}

li:nth-last-child(12) .nav-link .nav-btn,
.main__nav .dropdown.active li:nth-last-child(12) .nav-btn {
	-webkit-transition-delay: 1.7s;
	    -o-transition-delay: 1.7s;
	        transition-delay: 1.7s;
}

/* 5.8. Drop down close */
.main__nav .dropdown-close-box {
	width: 60px;
	height: 30px;
	position: absolute;
	left: calc(50% + 36px);
	top: 50%;
	z-index: 3;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
	overflow: hidden;
}

.main__nav .dropdown-close {
	width: 100%;
	height: 100%;
	position: relative;
	overflow: hidden;
	-webkit-transform: translateX(-100%);
	    -ms-transform: translateX(-100%);
	        transform: translateX(-100%);
	-webkit-transition: .5s cubic-bezier(.165, .84, .44, 1);
		-o-transition: .5s cubic-bezier(.165, .84, .44, 1);
			transition: .5s cubic-bezier(.165, .84, .44, 1);
}

.main__nav.nav-container.active .dropdown-close.active {
	-webkit-transform: translateX(0);
	    -ms-transform: translateX(0);
	        transform: translateX(0);
	-webkit-transition: 1s cubic-bezier(.165, .84, .44, 1);
		-o-transition: 1s cubic-bezier(.165, .84, .44, 1);
			transition: 1s cubic-bezier(.165, .84, .44, 1);        
	-webkit-transition-delay: 1s;
	    -o-transition-delay: 1s;
	        transition-delay: 1s;
}

body.out .main__nav.nav-container.active .dropdown-close.active {
	-webkit-transform: translateX(-100%);
	    -ms-transform: translateX(-100%);
	        transform: translateX(-100%);
	-webkit-transition: 1s cubic-bezier(.165, .84, .44, 1);
		-o-transition: 1s cubic-bezier(.165, .84, .44, 1);
			transition: 1s cubic-bezier(.165, .84, .44, 1);
	-webkit-transition-delay: .5s;
	    -o-transition-delay: .5s;
	        transition-delay: .5s;
}

.main__nav .dropdown-close span {
	width: 100%;
	height: 100%;
	position: relative;
	-webkit-transition: .7s cubic-bezier(.165, .84, .44, 1);
		-o-transition: .7s cubic-bezier(.165, .84, .44, 1);
			transition: .7s cubic-bezier(.165, .84, .44, 1);
	-webkit-transform: translateX(22px);
	    -ms-transform: translateX(22px);
	        transform: translateX(22px);
	z-index: 3;
	display: block;
}

.main__nav .dropdown-close-box:hover .dropdown-close span {
	-webkit-transform: translateX(0);
	    -ms-transform: translateX(0);
	        transform: translateX(0);
}

.main__nav .dropdown-close span:before {
	content: '';
	width: 18px;
	height: 18px;
	border-bottom: 2px solid #60ff00;
	border-left: 2px solid #60ff00;
	-webkit-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	        transform: rotate(45deg);
	position: absolute;
	top: 5px;
	left: 4px;
	display: block;
}

.main__nav .dropdown-close span:after {
	content: '';
	width: 100%;
	height: 2px;
	-webkit-transform: translateY(-50%);
	    -ms-transform: translateY(-50%);
	        transform: translateY(-50%);
	-webkit-transform-origin: left;
	    -ms-transform-origin: left;
	        transform-origin: left;
	position: absolute;
	top: 50%;
	left: 0;
	background: #60ff00;
}

.main__nav .dropdown-close:before {
	content: '';
	width: 2px;
	height: 50%;
	position: absolute;
	top: 50%;
	right: 0;
	-webkit-transform: scaleY(1);
	    -ms-transform: scaleY(1);
	        transform: scaleY(1);
	-webkit-transform-origin: top;
	    -ms-transform-origin: top;
	        transform-origin: top;
	-webkit-transition: .5s cubic-bezier(.165, .84, .44, 1);
		-o-transition: .5s cubic-bezier(.165, .84, .44, 1);
			transition: .5s cubic-bezier(.165, .84, .44, 1);
	background: #60ff00;
}

.main__nav .dropdown-close-box:hover .dropdown-close:before {
	-webkit-transform: scaleY(0);
	    -ms-transform: scaleY(0);
	        transform: scaleY(0);
}

@media only screen and (max-width: 1399px) {
	
	.nav-box {
		margin: 6px 0;
	}
	
	.nav-btn {
		/*font-size: 50px;*/
	}	
	
}

@media only screen and (max-width: 1199px) {
	
	.nav-box {
		margin: 5px 0;
	}
	
	.nav-btn {
		/*font-size: 45px;*/
	}	
	
}

@media only screen and (max-width: 999px) {
	
	.nav-logo {
		left: 20px;
	}

	.menu-close {
		right: 20px;
	}
	
	.main__nav .dropdown-close-box {
		left: calc(50% + 18px);
		top: 20%;
		-webkit-transform: translateY(0);
		    -ms-transform: translateY(0);
		        transform: translateY(0);
	}

	.nav-box {
		margin: 4px 0;
	}
	
	.nav-btn {
		/*font-size: 40px;*/
	}
	
}

@media only screen and (max-width: 767px) {
	
	.nav-btn {
		/*font-size: 30px;*/
	}	
	
}

@media only screen and (max-width: 549px) {
	
	.nav-logo {
		left: 10px;
		top: 10px;
	}

	.menu-close {
		right: 10px;
		top: 10px;
	}
	
	.main__nav .dropdown-close-box {
		left: calc(50% + 9px);
		top: 20%;
	}
	
	.nav-btn {
		/*font-size: 25px;*/
	}	
	
}

@media only screen and (orientation: portrait) {
	
	.nav-logo {
		left: 40px;
	}
	
	.nav-menu {
		width: 100%;
		height: 50%;
		margin-left: 0;
		margin-bottom: calc(50% - 2px);
		border-left: none;
		border-bottom: 2px solid #2b2b31;
	}
	
	.nav-bg {
		top: 100%;
		right: 0;
		width: 100%;
		height: calc(100% - 1px);
	}
	
	.main__nav ..dropdown-close-box {
		left: 40px;
		top: 25%;
	}

	.nav-menu:before {
		width: 100%;
		height: 103%;
		top: 100%;
		-webkit-transform: translateX(0) translateY(0);
		    -ms-transform: translateX(0) translateY(0);
		        transform: translateX(0) translateY(0);
	}
	
	.main__nav.nav-container.active .nav-menu:before {
		-webkit-transform: translateX(0) translateY(-100%);
		    -ms-transform: translateX(0) translateY(-100%);
		        transform: translateX(0) translateY(-100%); 		
	}
	
	body.out .main__nav.nav-container.active .nav-menu:before {
		-webkit-transform: translateX(0) translateY(0);
		    -ms-transform: translateX(0) translateY(0);
		        transform: translateX(0) translateY(0);
	}

}

@media only screen and (max-width: 999px) and (orientation: portrait) {
	
	.nav-logo {
		left: 20px;
	}
	
	.main__nav .dropdown-close-box {
		left: 20px;
		top: 20%;
	}
	
}

@media only screen and (max-width: 549px) and (orientation: portrait) {
	
	.nav-logo {
		left: 10px;
	}
	
	.main__nav .dropdown-close-box {
		left: 10px;
		top: 50%;
	}
	
	.nav-menu {
		height: 100%;
		margin-left: 0;
		margin-bottom: 0;
		border-bottom: none;
	}
	
	.nav-bg {
		display: none;
	}

	.nav-menu:before {
		content: normal;
	}
	
}
/*--------------------------------------------------------------
6. Colors
--------------------------------------------------------------*/
.animsition-overlay {
	background: #f5f5f5; 
}

/* 6.1. Bg colors */
.light-bg-1 {
	background: #f5f5f5; 
}

.light-bg-2 {
	background: #f0f0f0;
}

.dark-bg-1 {
	background: #2b2b31;
}

.dark-bg-2 {
	background: #1b2a2f;
}

.red-bg {
	background: #60ff00;
}

/* 6.2. Text colors */
.text-color-0 {
	color: black;
}

.text-color-1 {
	color: #2b2b31;
}

.text-color-2 {
	color: #888888;
}

.text-color-3 {
	color: #b6b7b8;
}

.text-color-4 {
	color: white;
}

.text-color-5 {
	color: #bcbdbd;
}

.text-color-6 {
	color: #dae9f4;
}

.red-color {
	color: #60ff00;
}

/*--------------------------------------------------------------
7. Typography
--------------------------------------------------------------*/
.italic-text {
  	font-style: italic; 
}

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

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

.text-justify {
	text-align: justify;
}

.text-up {
	text-transform: uppercase;
}

.bold700-text {
	font-weight: 700 !important;
}

.bold600-text {
	font-weight: 600 !important;
}

.medium-text {
	font-weight: 500 !important;
}

.regular-text {
	font-weight: 400 !important;
}

.light-text {
	font-weight: 300 !important;
}

.open-sans-text {
	font-family: 'Open Sans', sans-serif !important;
}

.oswald-text {
	font-family: 'Oswald', sans-serif !important;
}

.text-trans-none {
	text-transform: none !important;
}

.text-spacing1 {
	letter-spacing: 1px !important;
}

.text-spacing2 {
	letter-spacing: 2px !important;
}

.text-spacing3 {
	letter-spacing: 3px !important;
}

.text-spacing4 {
	letter-spacing: 4px !important;
}

.text-spacing5 {
	letter-spacing: 5px !important;
}

.text-spacing0 {
	letter-spacing: 0px !important;
}

.text-spacing-1 {
	letter-spacing: -1px !important;
}

.text-spacing-2 {
	letter-spacing: -2px !important;
}

.text-height-05 {
	line-height: .5 !important;
}

.text-height-06 {
	line-height: .6 !important;
}

.text-height-07 {
	line-height: .7 !important;
}

.text-height-08 {
	line-height: .8 !important;
}

.text-height-09 {
	line-height: .9 !important;
}

.text-height-10 {
	line-height: 1 !important;
}

.text-height-11 {
	line-height: 1.1 !important;
}

.text-height-12 {
	line-height: 1.2 !important;
}

.text-height-13 {
	line-height: 1.3 !important;
}

.text-height-14 {
	line-height: 1.4 !important;
}

.text-height-15 {
	line-height: 1.5 !important;
}

.text-height-16 {
	line-height: 1.6 !important;
}

.text-height-17 {
	line-height: 1.7 !important;
}

.text-height-18 {
	line-height: 1.8 !important;
}

.text-height-19 {
	line-height: 1.9 !important;
}

.text-height-20 {
	line-height: 2 !important;
}

.title-style {
	text-transform: uppercase;
	font-weight: 500;
	letter-spacing: 2px;
	font-family: 'Oswald', sans-serif;
	font-size: 30px;
}

.small-title {
	text-transform: uppercase;
	font-size: 14px;
	line-height: 1.4;
	font-weight: 600;
	letter-spacing: 0px;
	font-family: 'Open Sans', sans-serif;
}

.small-title-oswald {
	text-transform: uppercase;
	font-size: 14px;
	line-height: 1.4;
	font-weight: 600;
	letter-spacing: 0px;
	font-family: 'Oswald', sans-serif;
}

.xsmall-title-oswald {
	text-transform: uppercase;
	font-size: 12px;
	line-height: 1.4;
	font-weight: 600;
	letter-spacing: 1px;
	font-family: 'Oswald', sans-serif;
}

.medium-title {
	text-transform: uppercase;
	font-size: 45px;
	line-height: 1.13;
	font-weight: 500;
	letter-spacing: 3px;
	font-family: 'Oswald', sans-serif;
}

.large-title {
	text-transform: uppercase;
	font-size: 65px;
	line-height: 1;
	font-weight: 600;
	letter-spacing: -2px;
	font-family: 'Oswald', sans-serif;
}

.large-title-bold {
	text-transform: uppercase;
	font-size: 65px;
	line-height: 1;
	font-weight: 700;
	letter-spacing: -2px;
	font-family: 'Oswald', sans-serif;
}

.xlarge-title {
	text-transform: uppercase;
	font-size: 75px;
	line-height: 1;
	font-weight: 700;
	letter-spacing: -2px;
	font-family: 'Oswald', sans-serif;
}

.xxlarge-title {
	text-transform: uppercase;
	font-size: 100px;
	line-height: 1;
	font-weight: 700;
	letter-spacing: -2px;
	font-family: 'Oswald', sans-serif;
}

.p-style-xsmall {
	font-size: 13px;
	line-height: 2.35;
	font-weight: 300;
	letter-spacing: 0px;
	font-family: 'Open Sans', sans-serif;
}

.p-style-small {
	font-size: 14px;
	line-height: 2.15;
	font-weight: 400;
	letter-spacing: 1px;
	font-family: 'Open Sans', sans-serif;
}

.p-style-medium {
	font-size: 16px;
	line-height: 1.8;
	font-weight: 600;
	letter-spacing: 0px;
	font-family: 'Open Sans', sans-serif;
}

.p-style-large {
	font-size: 18px;
	line-height: 1.8;
	font-weight: 400;
	letter-spacing: 0px;
	font-family: 'Open Sans', sans-serif;
}

.p-style-bold {
	font-size: 20px;
	line-height: 1.6;
	font-weight: 600;
	letter-spacing: 1px;
	font-family: 'Oswald', sans-serif;
}

.p-style-bold-up {
	text-transform: uppercase;
	font-size: 14px;
	line-height: 1.5;
	font-weight: 700;
	letter-spacing: 1px;
	font-family: 'Open Sans', sans-serif;
}

.p-letter-style {
	text-transform: uppercase;
	font-size: 10px;
	line-height: 1;
	font-weight: 400;
	letter-spacing: 3px;
	font-family: 'Oswald', sans-serif;
}

@media only screen and (max-width: 1199px) {
	
	.title-style {
		font-size: 28px;
	}
	
	.medium-title {
		font-size: 38px;
	}
	
	.large-title,
	.large-title-bold {
		font-size: 55px;
	}
	
	.xlarge-title {
		font-size: 65px;
	}
	
	.xxlarge-title {
		font-size: 85px;
	}
	
}

@media only screen and (max-width: 999px) {
	
	.title-style {
		font-size: 26px; 
	}

	#latestMags .title-style {
		font-size: 23px;
	}
	
	.medium-title {
		font-size: 35px;
	}
	
	.large-title,
	.large-title-bold {
		font-size: 50px;
	}
	
	.xlarge-title {
		font-size: 55px;
	}
	
	.xxlarge-title {
		font-size: 70px;
	}
	
	.p-style-bold {
		font-size: 18px;
	}
	
	.p-style-bold-up {
		font-size: 13px;
	}
    
}

@media only screen and (max-width: 767px) {
	
	.title-style {
		font-size: 25px;
	}

	#latestMags .title-style {
		font-size: 18px;
	}
	
	.small-title-oswald {
		font-size: 13px;
	}
	
	.xsmall-title-oswald {
		font-size: 11px;
	}
	
	.medium-title {
		font-size: 30px;
	}

   	.large-title,
   	.large-title-bold {
		font-size: 40px;
	}
	
	.xlarge-title {
		font-size: 45px;
	}
	
	.xxlarge-title {
		font-size: 50px;
	}
	
	.p-style-large {
		font-size: 16px;
	}
	
	.p-style-medium {
		font-size: 15px;
	}
	
	.p-style-bold {
		font-size: 16px;
	}
	
	.p-style-bold-up {
		font-size: 12px;
	}
    
}

@media only screen and (max-width: 549px) {
	
	.title-style {
		font-size: 23px;
	}

	#latestMags .title-style {
		font-size: 13px;
	}

	.small-title-oswald {
		font-size: 12px;
	}
	
	.xsmall-title-oswald {
		font-size: 10px;
	}
	
	.medium-title {
		font-size: 25px;
	}

   	.large-title,
   	.large-title-bold {
		font-size: 35px;
	}
	
	.xlarge-title {
		font-size: 38px;
	}
	
	.xxlarge-title {
		font-size: 42px;
	}
	
	.p-style-medium {
		font-size: 14px;
	}
	
	.p-style-large {
		font-size: 15px;
	}
	
	.p-style-bold {
		font-size: 14px;
	}
   	 
}
.nav-bg:after {
	position: absolute;
    content: ' ';
    pointer-events: none;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
    display: block;
    z-index: 666;
    background: url(/img/gridtile.png);
}

.header__logo img {
	width: 100px !important;
	height: 100px !important;
	margin-left: 25px !important;
}

.loading {
	display: none;
  	position: fixed;
  	top: calc(50% - 50px);
  	left: calc(50% - 50px);
  	visibility: visible;
  	-webkit-transition: .5s cubic-bezier(.755, .05, .855, .06);
  		-o-transition: .5s cubic-bezier(.755, .05, .855, .06);
  			transition: .5s cubic-bezier(.755, .05, .855, .06);
  	z-index: 101;
  	width: 100px;
  	height: 100px;
}

.loading:before {
	content: '';
	width: 100%;
	height: 100%;
	border: 1px solid #2b2b31;
	border-left-color: white;
	-webkit-animation: 1.2s loading-anim cubic-bezier(.77, 0, .175, 1) infinite both;
  	    animation: 1.2s loading-anim cubic-bezier(.77, 0, .175, 1) infinite both;
  	border-radius: 50%;        
  	display: block;
}

.logo-loading {
	width: 300px;
	max-width: 300px;
	margin-left: -6px;
	position: absolute;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
  	    -ms-transform: translate(-50%, -50%);
  	        transform: translate(-50%, -50%);
}

@-webkit-keyframes loading-anim {
	
  	0% {
    	-webkit-transform: rotate(0deg);
    	    transform: rotate(0deg);
  	}
  	
  	100% {
    	-webkit-transform: rotate(360deg);
    	    transform: rotate(360deg);
  	}
  	
}

@keyframes loading-anim {
	
  	0% {
    	-webkit-transform: rotate(0deg);
            transform: rotate(0deg);
  	}
  	
  	100% {
    	-webkit-transform: rotate(360deg);
   	        transform: rotate(360deg);
  	}
  	
}

#mega_menu_ajax {
	width: 600px;
}
.navbar-default .navbar-nav&gt;li&gt;a:focus, .navbar-default .navbar-nav&gt;li:hover&gt;a {
	color: #60ff00;
}

@media (max-width: 1024px) {
	.header .secoundLogo {
		display: none;
	}
	.header .border-btn-box {
		margin-right: 0;
	}
	.header .border-btn-box a {
		line-height: 26px;
		padding: 0 6px;
    	letter-spacing: 2px;
	}
}
@media (min-width: 768px) and (max-width: 1024px)
{
	.login-btn {
    	margin-right: 13px;
	}
	.login-btn .border-btn {
		line-height: 26px;
		letter-spacing: 2px;
		padding: 0 13px;
	}
	#mega_menu_ajax {
		top: 10px;
	}
}

















	.tab--button {
		padding: 13px;
		text-align: center;
		display: block;
		color: #aaa;
		position: relative;
	}
	.main--tabs .tab--button.active, .mobile-main--tabs span {
		color: #60ff00;
		background: #60ff00;
		background-image: -moz-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
    	background-image: -webkit-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
    	background-image: -ms-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
    	background-image: linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
		-webkit-background-clip: text;
		-webkit-text-fill-color: transparent;
	}
	.main--tabs .tab--button.active:after, .mobile-main--tabs span:after {
		height: 1px;
		width: 100%;
		position: absolute;
		bottom: 0;
		content: ' ';
		left: 0;
		background: #60ff00;
		background-image: -moz-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
    	background-image: -webkit-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
    	background-image: -ms-linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
    	background-image: linear-gradient(90deg, #cbe601 0%, #60ff00 100%);
	}
	.tvTab-item {
		display: none;
	}
	.tvTab-item.active {
		display: block;
	}
	@media only screen and (max-width: 768px) {
		.main--tabs {
			display: none;
		}
		.mobile-main--tabs {
			display: block !important;
		}
		.mobile-main--tabs ul {
			display: none;
		}
		.mobile-main--tabs:hover ul {
			display: block;
		}
		
		.filter__items {
			display: flex;
    		flex-wrap: wrap;
		}
		.filter__items .filter__item {
			width: 47%;
    		flex: 1 1 47%;
			padding-right: 3%;
		}
		.filter__items .filter__item .filter__item-btn input {
			max-width: 130px;
			font-size: 14px;
		}
		.filter__item-btn span {
			margin-right: 6px;
		}
		#filter__moments #filter__date {
			justify-content: center;
			align-items: center;
			display: flex;
			flex-direction: column;
		}
		#filter__moments #filter__date input {
			max-width: 150px !important;
			font-size: 20px;
		}
	}	
	.moTitle {
		padding: 23px 0;
	}
	.moPrevDay {
		font-size: 52px;
		color: #aaa;
		position: absolute;
		left: 2%;
		top: 50%;
		margin-top: -26px;
		line-height: 52px;
	}
	.moPrevDay.disabled {
		color: rgba(170,170,170,0.23) !important;
		pointer-events: none;
	}
	.moNextDay {
		font-size: 52px;
		color: #aaa;
		position: absolute;
		right: 2%;
		top: 50%;
		margin-top: -26px;
		line-height: 52px;
	}
	.moNextDay.disabled {
		color: rgba(170,170,170,0.23) !important;
	}
	.mo-change-date-box {
		display: inline-block;
		position: relative;
	}
	.mo-change-date-box i {
		pointer-events: none;
		color: #60ff00;
	}
	.mo-change-date-input {
		position: absolute;
		top: 0;
		left: 0;
		width: 100%;
		height: 100%;
		opacity: 0;
		background: none;
		border: none;
		z-index: 666;
		cursor: pointer;
	}
	#filter__moments .filter__items {
		flex: 100%;
		width: 100%;
    	justify-content: space-around;
	}
.replayImage {
	display: flex;
    position: absolute;
    height: 100%;
    width: 100%;
    justify-content: center;
}
.replayImage img {
	width: auto;
}</pre></body></html>