:root {
  --fontSize: 1rem;
  --mColor: #E6007E;
  --mColorH: #00004B;
  --sColor: #12345678;
  --headerMTop: var(--wp-admin--admin-bar--height, 0);
}

/*-- Normalize-- */
html {
  direction: ltr;
  scroll-behavior: smooth;
}

body {
  color: #444444;
  font-family: 'Nunito Sans', WorkSans, Geneva, sans-serif;
  line-height: 1.5;
  font-weight: 400;
  overflow-wrap: break-word;
  word-wrap: break-word;
  margin: 0;
  overflow-x: hidden;
}

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

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  margin: 6px 0;
}

a {
  color: inherit;
  outline: none;
  text-decoration: none;
}

ul,
ol {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
  display: inline-block;
}

p {
  font-size: 18px;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

input[type=text],
input[type=url],
input[type=tel],
input[type=number],
input[type=email],
input[type=password] {
  font-family: inherit;
  font-size: 12px;
  line-height: 21px;
  color: #444;
  border: 1px solid #e6e6e6;
  border-right: 1px solid #e6e6e6;
  width: 100%;
  max-width: 100%;
  height: 34px;
  padding: 3px 9px;
}

input[type=submit] {
  font-family: inherit;
  font-size: 12px;
  font-weight: 600;
  line-height: 16px;
  background-color: #222;
  border-radius: 3px;
  color: #fff;
  border: none;
  padding: 7px 12px;
}

html.no_scroll {
  overflow-y: hidden;
}

.container, .full-container {
  position: relative;
  margin-right: auto;
  margin-left: auto;
}

/* --Margins and paddings-- */
.m-0 {
  margin: 0;
}

.m-1 {
  margin: 1px;
}

.my-0 {
  margin-top: 0;
  margin-bottom: 0;
}

.my-5 {
  margin-top: 5px;
  margin-bottom: 5px;
}

.mx-0 {
  margin-left: 0;
  margin-right: 0;
}

.mx-20 {
  margin-left: 20px;
  margin-right: 20px;
}

.mt--50 {
  margin-top: -50px !important;
}

.mt-6 {
  margin-top: 6px !important;
}

.mt-20 {
  margin-top: 20px !important;
}

.mb--50 {
  margin-bottom: -50px !important;
}

.mb-0 {
  margin-bottom: 0 !important;
}

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

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

.p-0 {
  padding: 0;
}

.p-5 {
  padding: 5px;
}

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

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

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

@media (min-width: 1023px) {
  .pl-md-70 {
    padding-left: 70px !important;
  }
}
@media (max-width: 764px) {
  .mt-sm-0 {
    margin-top: 0 !important;
  }

  .mt-sm-20 {
    margin-top: 20px !important;
  }

  .mb-sm-0 {
    margin-bottom: 0 !important;
  }

  .mb-sm-20 {
    margin-bottom: 20px !important;
  }

  .pl-sm-0 {
    padding-left: 0 !important;
  }

  .pl-sm-15 {
    padding-left: 15px !important;
  }
}
@media (max-width: 500px) {
  .pl-xs-0 {
    padding-left: 0 !important;
  }

  .pl-xs-15 {
    padding-left: 15px !important;
  }
}
[class*=pl-] .vc_column-inner {
  padding-left: inherit !important;
}

/* --Globals-- */
.fw-3 {
  font-weight: 300;
}

.fw-6 {
  font-weight: 600;
}

.pointer {
  cursor: pointer;
}

.uppercase {
  text-transform: uppercase;
}

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

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

.t-left {
  text-align: left;
}

.d-none {
  display: none;
}

.d-block {
  display: block;
}

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

.d-mobile {
  display: none;
}

.pr {
  position: relative;
}

.divider {
  width: 100%;
  height: 1px;
  background-color: #bbb;
}
.divider.h {
  height: 100%;
  width: 1px;
}

.btn {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 30px;
  font-family: inherit;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: #fff;
  border: none;
  border-radius: 25px;
  background-color: var(--mColor);
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  cursor: pointer;
}
.btn.small {
  background-color: #ff4a4a;
  height: 36px;
  padding: 8px 45px;
  font-size: 14px;
}
.btn.xsmall {
  height: 30px;
  padding: 4px 8px;
  font-size: 14px;
}
.btn.fullwidth {
  width: 100%;
}
.btn.center {
  margin: 0 auto;
}
.btn:hover {
  background-color: var(--mColorH);
  color: #fff;
}
.btn.link {
  background-color: transparent;
  padding: 0;
}
.btn.link:hover {
  background-color: transparent;
  color: #fff;
}
.btn.c1 {
  color: #fff;
  background-color: #fcb800;
  border-color: #fcb800;
}
.btn.c1:hover {
  background-color: #333;
  border-color: #333;
  color: #fcb800;
}

.w-100 {
  width: 100% !important;
}
.w-auto {
  width: auto !important;
}
.w-auto-img img {
  width: auto !important;
}

.h-100 {
  height: 100% !important;
}

.fs-9 {
  font-size: 9px !important;
}
.fs-16 {
  font-size: 16px !important;
}

.fs-20 {
  font-size: 20px !important;
}

.brr\:10 {
  border-radius: 10px;
}

.c-white {
  color: #fff;
}

/* --Flexbox-- */
.d-flex {
  display: flex;
}
.d-flex .f25 {
  max-width: 25%;
  flex: 1 1 auto;
}
.d-flex .f_item {
  max-width: 25%;
  flex: 1 1 auto;
}

.jc {
  justify-content: center;
}

.jcsb {
  justify-content: space-between;
}

.aic {
  align-items: center;
}

.ais {
  align-items: stretch;
}

.fdc {
  flex-direction: column;
}

.dFlex {
  display: flex;
  flex-wrap: wrap;
  margin-left: calc(-1 * var(--fMLeft, 0));
}
.dFlex.l-25 {
  --fMLeft: 25px;
}
.dFlex.l-25 > div {
  margin-left: var(--fMLeft, 0);
}
.dFlex.f33 {
  --fWidth: 33.33%;
}
.dFlex.f25 {
  --fWidth: 25%;
}
.dFlex.f20 {
  --fWidth: 20%;
}
.dFlex.f10 {
  --fWidth: 10%;
}
.dFlex.fauto {
  --fWidth: auto;
}
.dFlex > div {
  width: calc(var(--fWidth, 100%) - var(--fMLeft, 0));
  flex: 0 1 auto;
}

.dFlex_ch .wpb_wrapper {
  display: flex;
}
.dFlex_ch.col .wpb_wrapper {
  flex-direction: column;
}

.order-1 {
  order: 1;
}

.order-2 {
  order: 2;
}

@media (max-width: 764px) {
  .order-sm-1 {
    order: 1;
  }

  .order-sm-2 {
    order: 2;
  }
}
/* --Header-- */
.header {
  padding: 20px;
  /*position: fixed;*/
  top: max(0, var(--wp-admin--admin-bar--height));
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  background-size: 100% 1px;
  background-position: 0 100%, 0 0;
  background-repeat: no-repeat;
  background-image: linear-gradient(45deg, #a2006a, #ff16ff);
}
.header > * {
  display: flex;
  align-items: center;
}
.header > * > * {
  height: 40px;
  display: flex;
}
.header__logo {
  width: 114px;
}
.header__logo img {
  width: 100%;
}
.header .burger-menu {
  align-items: center;
  cursor: pointer;
}
.header .burger-menu > span {
  font-size: 16px;
  text-align: center;
  font-weight: 600;
  color: #444;
  text-transform: uppercase;
}
.header .burger-menu .burger-icon {
  width: 19px;
  height: 12px;
  position: relative;
  transition: transform 0.25s ease-in-out;
  margin-left: 18px;
  margin-right: 18px;
}
.header .burger-menu .burger-icon span {
  display: block;
  position: absolute;
  height: 2px;
  width: 100%;
  background: #707070;
  border-radius: 9px;
  opacity: 1;
  left: 0;
  transition: 0.25s ease-in-out;
  transform: rotate(0deg);
}
.header .burger-menu .burger-icon span:nth-child(2) {
  top: 5px;
}
.header .burger-menu .burger-icon span:nth-child(3) {
  top: 10px;
}
.header .burger-menu * {
  pointer-events: none;
}
.header .burger-menu.active .burger-icon span:nth-child(1) {
  top: 6px;
  transform: rotate(45deg);
}
.header .burger-menu.active .burger-icon span:nth-child(2) {
  opacity: 0;
}
.header .burger-menu.active .burger-icon span:nth-child(3) {
  transform: rotate(-45deg);
  top: 6px;
}
.header .header-page-name {
  font-size: 16px;
  overflow: hidden;
  align-items: center;
}
.header .header-page-name b {
  margin-left: 7px;
}
.header__nav ul {
  display: flex;
}
.header__nav ul a {
  margin: 5px;
  padding: 5px;
}
.header__nav ul a:hover {
  color: #a2006a;
}
.header__search {
  margin-right: 20px;
}
.header__search input {
  border: 1px solid var(--mColor);
  border-radius: 25px;
  padding-left: 40px;
  width: 150px;
  height: 100%;
  transition: width ease 0.4s;
}
.header__search input:focus {
  outline: none;
  width: 250px;
}
.header__search input::placeholder {
  color: #bbb;
}
@media (max-width: 1023px) {
  .header .header__left .header__logo {
    order: 2;
  }
  .header .header__left > .divider {
    display: none;
  }
  .header .header__left .header__nav {
    display: none;
  }
  .header .header__search {
    display: none;
  }
  .header .burger-menu > span {
    display: none;
  }
  .header .header-page-name {
    display: none;
  }
}

.home .burger-menu {
  display: none;
}
@media (max-width: 1023px) {
  .home .burger-menu {
    display: flex;
  }
}

.main-header .bottom-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: 0.0625rem solid rgba(112, 112, 112, 0.4);
}
.main-header .bottom-bar .bar-menu {
  display: flex;
  align-items: center;
  padding: 15px 50px;
}
.main-header .bottom-bar .bar-menu li {
  font-size: 16px;
  color: #444;
  position: relative;
}
.main-header .bottom-bar .bar-menu li + li {
  margin-left: 15px;
}
.main-header .bottom-bar .bar-menu li:after {
  content: "";
  display: inline-block;
  position: absolute;
  bottom: -15px;
  left: 0;
  width: 0;
  height: 1px;
  background-color: #A2006A;
  transition: width ease 0.4s;
}
.main-header .bottom-bar .bar-menu li.active:after, .main-header .bottom-bar .bar-menu li:hover:after {
  width: 100%;
}
.main-header .bottom-bar .bar-menu li a {
  padding: 0 5px;
}

.main-header {
  position: fixed;
  top: var(--headerMTop);
  left: 0;
  width: 100%;
  z-index: 10;
  background-color: #fff;
}
.main-header + .main-content {
  margin-top: 80px;
}
.main-header.b_menu + .main-content {
  margin-top: 135px;
}

.navigation-menu {
  width: 100%;
  height: 0;
  min-height: 0;
  display: block;
  -webkit-tap-highlight-color: transparent;
  user-select: none;
  z-index: 40;
  position: absolute;
  transition: min-height 0.25s ease-in-out 0s, background-color 0.25s ease-in-out 0s, top 0.5s ease-in-out 0s;
  background: white;
  top: 81px;
}
.navigation-menu.open {
  min-height: 440px;
  max-height: 100vh;
}
.navigation-menu .go-back {
  transition: transform 0.5s ease-in-out, opacity 0.1s ease 0.5s, visibility 0.1s ease 0.5s;
  flex-grow: 4;
  display: none;
  cursor: pointer;
  visibility: hidden;
}
.navigation-menu .go-back span {
  position: relative;
  margin: 1.062rem 1.5rem;
  display: -ms-inline-flexbox;
  display: inline-flex;
  font-size: 16px;
}
.navigation-menu .go-back * {
  pointer-events: none;
}
.navigation-menu .all-menu {
  display: flex;
  overflow: hidden;
  align-items: stretch;
  justify-content: center;
  background: #fff;
  height: 100%;
  width: 100%;
}
.navigation-menu .all-menu .menu-sections {
  width: 30%;
  display: flex;
  flex-direction: column;
  position: relative;
  max-width: 450px;
}
.navigation-menu .all-menu .menu-sections:after {
  content: "";
  height: calc(100% - 50px);
  width: 1px;
  border-left: 1px solid #e5e5e5;
  right: 0;
  top: 20px;
  position: absolute;
}
.navigation-menu .all-menu .menu-sections ul {
  list-style-type: none;
  -webkit-padding-start: 0;
  padding-inline-start: 0;
  width: 60%;
  display: flex;
  flex-direction: column;
  position: relative;
  margin: 20px 31px 0 auto;
}
.navigation-menu .all-menu .menu-sections ul li {
  min-height: 46px;
  position: relative;
}
.navigation-menu .all-menu .menu-sections ul li .navigation-menu-item {
  display: inline-flex;
  justify-content: space-between;
  align-items: center;
  color: #8e8e8e;
  font-size: 18px;
  letter-spacing: 0.82px;
  line-height: 46px;
  text-decoration: none;
  cursor: pointer;
  width: 100%;
}
.navigation-menu .all-menu .menu-sections ul li .navigation-menu-item:before {
  content: "";
  position: absolute;
  width: 3px;
  height: 24px;
  margin: auto 0;
  left: -16px;
  top: 21%;
}
.navigation-menu .all-menu .menu-sections ul li.active .navigation-menu-item:before {
  background: #A2006A;
}
.navigation-menu .all-menu .category-sections {
  width: 65%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.navigation-menu .all-menu .category-sections .category_nav {
  width: 100%;
  min-height: 300px;
  display: none;
  padding: 0 31px;
}
.navigation-menu .all-menu .category-sections .category_nav .section-title {
  font-size: 20px;
  color: #000;
  letter-spacing: 0.7px;
  line-height: 36px;
  margin: 25px 0 31px;
  opacity: 0;
  transition: opacity 0.5s ease, transform 0.6s ease, -webkit-transform 0.6s ease;
}
.navigation-menu .all-menu .category-sections .category_nav.active {
  display: block;
}
.navigation-menu .all-menu .category-sections .category_nav.active .section-title {
  opacity: 1;
  position: relative;
}
.navigation-menu .all-menu .category-sections .category_nav .category_nav_menu > ul {
  display: flex;
  align-items: stretch;
  flex-flow: row wrap;
}
.navigation-menu .all-menu .category-sections .category_nav .category_nav_menu > ul > li {
  max-width: 24%;
  display: flex;
  flex-flow: column;
  flex: 0 1 24%;
  padding: 0 0.5%;
}
.navigation-menu .all-menu .category-sections .category_nav .category_nav_menu > ul > li > a {
  color: #A2006A;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.67px;
  line-height: 18px;
  margin: 5px 0 16px;
  text-transform: uppercase;
}
.navigation-menu .all-menu .category-sections .category_nav .category_nav_menu > ul > li > a[href="#hide"] {
  display: none;
}
.navigation-menu .all-menu .category-sections .category_nav .category_nav_menu > ul > li .sub-menu {
  list-style-type: none;
  padding-inline-start: 0;
  margin: 0;
}
.navigation-menu .all-menu .category-sections .category_nav .category_nav_menu > ul > li .sub-menu li {
  display: list-item;
  min-height: 38px;
  line-height: 21px;
  font-size: 16px;
}

@media (max-width: 1023px) {
  .navigation-menu.open {
    top: 78px;
    overflow-x: hidden;
    height: calc(100vh - 78px);
  }
  .navigation-menu.open .go-back {
    position: fixed;
    width: 100%;
    z-index: 100;
    display: flex;
    height: 54px;
    background-color: #f8f8f8;
    align-items: center;
    font-weight: 600;
    opacity: 0;
    overflow: hidden;
    padding-left: 25px;
    transform: translate(100%);
  }
  .navigation-menu.open.selected .go-back {
    opacity: 1;
    transform: translate(0px);
    visibility: visible;
    transition: transform 0.5s ease-in-out;
  }
  .navigation-menu.open.selected .all-menu {
    transform: translate(-50%, 0px);
  }
  .navigation-menu .all-menu {
    width: 200%;
    transform: translate(0px, 0px);
    transition: transform 0.5s ease-in-out;
  }
  .navigation-menu .all-menu .menu-sections {
    display: inline-block;
    width: 100%;
    max-width: unset;
    left: 0;
  }
  .navigation-menu .all-menu .menu-sections ul {
    width: 100%;
  }
  .navigation-menu .all-menu .menu-sections ul li .navigation-menu-item {
    display: inline-flex;
    min-height: 64px;
    color: #000;
    font-size: 24px;
    letter-spacing: 0.6px;
    line-height: 27px;
    position: relative;
    width: 100%;
    align-items: center;
    padding-left: 30px;
    padding-right: 15px;
  }
  .navigation-menu .all-menu .menu-sections ul li .navigation-menu-item:before {
    top: 50%;
    margin-top: -12px;
    left: 0;
  }
  .navigation-menu .all-menu .category-sections {
    position: relative;
    display: inline-block;
    width: 100%;
    left: 0;
    padding-top: 50px;
    overflow: auto;
  }
  .navigation-menu .all-menu .category-sections .category_nav .category_nav_menu > ul > li {
    margin-bottom: 10px;
    flex: 0 1 100%;
    max-width: 49%;
  }
  .navigation-menu .all-menu .category-sections .category_nav .category_nav_menu > ul > li > a {
    font-size: 13px;
    margin: 5px 0 6px;
  }
}
.icon.arrow-back, .icon.arrow-forward {
  background-image: url("../img/icons/menu_arrow_grey.svg");
  min-height: 13px;
  min-width: 7px;
  background-size: contain;
  background-repeat: no-repeat;
}
.icon.arrow-back {
  transform: rotate(180deg);
  position: relative;
  display: inline-block;
  margin-left: 5px;
}

/* --Home-- */
.swipe {
  width: 100%;
}

.container {
  max-width: 1216px;
}

.full-container {
  width: 1488px;
  max-width: 1488px;
  margin-left: calc(50% - 15px) !important;
  transform: translate(-50%, 0);
}

/* --Row-- */
.row {
  display: flex;
  flex-flow: row wrap;
  --rflex: 100%;
  --rMg: 0;
  margin-left: calc(var(--rMg, 0) * -1);
}
.row.rm-15 {
  --rMg: 15px;
}
.row.rm-20 {
  --rMg: 20px;
}
.row.rm-50 {
  --rMg: 50px;
}
.row.rm-100 {
  --rMg: 100px;
}
.row > .col-90 {
  --rflex: 90%;
}
.row > .col-80 {
  --rflex: 80%;
}
.row > .col-75 {
  --rflex: 75%;
}
.row > .col-70 {
  --rflex: 70%;
}
.row > .col-60 {
  --rflex: 60%;
}
.row > .col-50 {
  --rflex: 50%;
}
.row > .col-40 {
  --rflex: 40%;
}
.row > .col-33 {
  --rflex: 33.33%;
}
.row > .col-30 {
  --rflex: 30%;
}
.row > .col-25 {
  --rflex: 25%;
}
.row > .col-20 {
  --rflex: 20%;
}
.row > .col-10 {
  --rflex: 10%;
}
.row > .col-f300 {
  --rFlex: 300px;
}
.row > .col-a {
  flex: 1 1 auto;
  --rflex: 100%;
}
@media (max-width: 1023px) {
  .row .col-t-100 {
    --rflex: 100%;
  }
  .row .col-t-90 {
    --rflex: 90%;
  }
  .row .col-t-80 {
    --rflex: 80%;
  }
  .row .col-t-75 {
    --rflex: 75%;
  }
  .row .col-t-70 {
    --rflex: 70%;
  }
  .row .col-t-60 {
    --rflex: 60%;
  }
  .row .col-t-50 {
    --rflex: 50%;
  }
  .row .col-t-40 {
    --rflex: 40%;
  }
  .row .col-t-33 {
    --rflex: 33.33%;
  }
  .row .col-t-30 {
    --rflex: 30%;
  }
  .row .col-t-25 {
    --rflex: 25%;
  }
  .row .col-t-20 {
    --rflex: 20%;
  }
  .row .col-t-10 {
    --rflex: 10%;
  }
  .row .col-t-f300 {
    --rflex: 300px;
  }
  .row .col-t-f-300 {
    --rflex: calc(100% - 300px);
  }
  .row .col-t-a {
    flex: 1 1 auto;
    --rflex: 100%;
  }
  .row.rm-t-15 {
    --rMg: 15px;
  }
  .row.rm-t-20 {
    --rMg: 20px;
  }
  .row.rm-t-50 {
    --rMg: 50px;
  }
  .row.rm-t-100 {
    --rMg: 100px;
  }
}
@media (max-width: 767px) {
  .row .col-m-100 {
    --rflex: 100%;
  }
  .row .col-m-90 {
    --rflex: 90%;
  }
  .row .col-m-80 {
    --rflex: 80%;
  }
  .row .col-m-75 {
    --rflex: 75%;
  }
  .row .col-m-70 {
    --rflex: 70%;
  }
  .row .col-m-60 {
    --rflex: 60%;
  }
  .row .col-m-50 {
    --rflex: 50%;
  }
  .row .col-m-40 {
    --rflex: 40%;
  }
  .row .col-m-33 {
    --rflex: 33.33%;
  }
  .row .col-m-30 {
    --rflex: 30%;
  }
  .row .col-m-25 {
    --rflex: 25%;
  }
  .row .col-m-20 {
    --rflex: 20%;
  }
  .row .col-m-10 {
    --rflex: 10%;
  }
  .row .col-m-f250 {
    --rflex: 250px;
  }
  .row .col-m-f-250 {
    --rflex: calc(100% - 250px);
  }
  .row .col-m-a {
    flex: 1 1 auto;
    --rflex: 100%;
  }
  .row.rm-m-15 {
    --rMg: 15px;
  }
  .row.rm-m-25 {
    --rMg: 25px;
  }
  .row.rm-m-50 {
    --rMg: 50px;
  }
  .row.rm-m-100 {
    --rMg: 100px;
  }
}
@media (max-width: 520px) {
  .row .col-sm-100 {
    --rflex: 100%;
  }
  .row .col-sm-90 {
    --rflex: 90%;
  }
  .row .col-sm-80 {
    --rflex: 80%;
  }
  .row .col-sm-75 {
    --rflex: 75%;
  }
  .row .col-sm-70 {
    --rflex: 70%;
  }
  .row .col-sm-60 {
    --rflex: 60%;
  }
  .row .col-sm-50 {
    --rflex: 50%;
  }
  .row .col-sm-40 {
    --rflex: 40%;
  }
  .row .col-sm-33 {
    --rflex: 33.33%;
  }
  .row .col-sm-30 {
    --rflex: 30%;
  }
  .row .col-sm-25 {
    --rflex: 25%;
  }
  .row .col-sm-20 {
    --rflex: 20%;
  }
  .row .col-sm-10 {
    --rflex: 10%;
  }
  .row .col-sm-f200 {
    --rflex: 200px;
  }
  .row .col-sm-f-200 {
    --rflex: calc(100% - 200px);
  }
  .row .col-sm-a {
    flex: 1 1 auto;
    --rflex: 100%;
  }
  .row.rm-sm-15 {
    --rMg: 15px;
  }
  .row.rm-sm-50 {
    --rMg: 50px;
  }
  .row.rm-sm-100 {
    --rMg: 100px;
  }
}
.row [class^=col-],
.row .col {
  position: relative;
  flex: 0 0 var(--rflex);
  max-width: calc(var(--rflex) - var(--rMg, 0));
  min-height: 1px;
  margin-left: var(--rMg, 0);
  width: 100%;
}

@media (min-width: 1023px) {
  .grid-md-3 .swiper-wrapper {
    flex-wrap: wrap;
    height: auto !important;
  }
  .grid-md-3 .swiper-slide {
    flex: 0 0 calc(33.33% - var(--swiper-slider-space, 25px));
    max-width: calc(33.33% - var(--swiper-slider-space, 25px));
    margin-bottom: 25px;
  }
}
/* --Components-- */
.swiper {
  width: 100%;
}
.swiper.m_space {
  margin-left: -15px;
  margin-right: -15px;
  padding: 15px;
  width: calc(100% + 30px);
}
.swiper.swiper-autoheight .swiper-slide {
  min-height: 100%;
}
.swiper.home-slider .swiper-slide:before {
  content: "";
  display: block;
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
  bottom: 0;
  height: 5rem;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.333) 1%, transparent 99%);
  opacity: 1;
  transition-property: opacity;
  transition-duration: 1.2s;
  transition-timing-function: ease;
}
.swiper.home-slider .slide-content {
  position: absolute;
  width: 100%;
  top: 50%;
  transform: translateY(-50%);
}
.swiper.home-slider .swiper-slide img {
  width: 100%;
}
.swiper.home-slider .slide-content .slide-title {
  color: #E6007E;
  line-height: 1.5em;
  text-transform: uppercase;
  font-size: 34px;
  margin-bottom: 20px;
}
.swiper.home-slider .slide-content .slide-subtitle {
  color: #E6007E;
  font-size: 28px;
  font-weight: normal;
  margin-bottom: 20px;
}
.swiper.home-slider .slide-content .slide-btn {
  color: #0D3AFF;
  font-size: 16px;
  font-weight: normal;
}
.swiper.home-slider .swiper-pagination-custom {
  display: flex;
  align-items: center;
  justify-content: center;
}
.swiper.home-slider .swiper-pagination-custom .pagination-progress {
  display: block;
  position: relative;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 0.125rem;
  background-color: rgba(255, 255, 255, 0.333);
  overflow: hidden;
  transition-property: all;
  transition-duration: 1.2s;
  transition-timing-function: ease;
  transform: none;
}
.swiper.home-slider .swiper-pagination-custom .pagination-progress .pagination-line {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  width: 0;
  height: 100%;
  background-color: #fff;
  transition-property: background-color;
  transition-duration: 1.2s;
  transition-timing-function: linear;
  animation-name: fill;
}
.swiper.home-slider .swiper-pagination-custom .swiper-pagination-bullet {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: auto;
  height: auto;
  flex: 1 1 auto;
  border-radius: 0;
  opacity: 1;
  background: transparent;
  cursor: pointer;
}
.swiper.home-slider .swiper-pagination-custom .swiper-pagination-bullet .pagination-name {
  color: #fff;
  margin-top: 15px;
  margin-bottom: 20px;
  font-size: 15px;
}
.swiper.home-slider .swiper-pagination-custom .swiper-pagination-bullet.active .pagination-line {
  /*animation-name: fill;*/
  animation-duration: 4s;
}
@media (max-width: 1023px) {
  .swiper.home-slider .swiper-slide:before {
    height: 100%;
    background: #0000001a;
    z-index: 0;
  }
  .swiper.home-slider .swiper-slide img {
    min-height: auto;
    object-fit: cover;
  }
  .swiper.home-slider .swiper-slide .slide-content {
    top: 0;
    transform: translateY(0);
    height: 100%;
  }
  .swiper.home-slider .swiper-slide .slide-content .container {
    height: 100%;
  }
  .swiper.home-slider .swiper-slide .slide-content .container > * {
    text-align: center;
    color: #fff !important;
    font-size: 22px !important;
    font-weight: 700;
  }
  .swiper.home-slider .swiper-slide .slide-content .container .slide-title {
    margin-top: 40px;
  }
  .swiper.home-slider .swiper-slide .slide-content .container .slide-btn {
    position: absolute;
    bottom: 130px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 18px !important;
    font-weight: normal;
  }
  .swiper.home-slider .swiper-pagination-custom {
    bottom: 40px;
  }
  .swiper.home-slider .swiper-pagination-custom .swiper-pagination-bullet {
    display: none !important;
  }
  .swiper.home-slider .swiper-pagination-custom .swiper-pagination-bullet.active {
    display: flex !important;
  }
  .swiper.home-slider .swiper-pagination-custom .swiper-pagination-bullet.active .pagination-name {
    display: none;
  }
}

p.info-box-subtitle {
  text-align: center;
}

@keyframes fill {
  0% {
    width: 0;
  }
  100% {
    width: 100%;
  }
}
.swipe {
  width: 100%;
}

.info-box {
  position: relative;
}
.info-box .info-box-image img {
  width: 100%;
}
.info-box .info-box-image .mobile-bg {
  display: none;
}

@media (max-width: 767px) {
  .info-box .info-box-image.has-mob .info-bg {
    display: none;
  }
  .info-box .info-box-image.has-mob .mobile-bg {
    display: block;
  }
}
.info-box .info-box-text {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  padding: 30px;
  color: black;
}

body.page-id-7 .info-box .info-box-text {
  color: white;
}

.sports-hero a.cbtn {
  color: #0a0a0a;
  font-weight: 300;
  padding: 8px 15px;
  background: white;
  border-radius: 14px;
}

@media (max-width: 764px) {
  .info-box .info-box-text {
    max-width: 100% !important;
  }
}
.info-box .info-box-title, .info-box .info-box-subtitle {
  margin: 0;
}
.info-box .info-box-text, .info-box .info-box-text-titles {
  display: flex;
  flex-direction: column;
}

@media (min-width: 765px) {

  .info-box.a-left .info-box-text, .info-box.a-left .info-box-text-titles {
    align-items: flex-start;
  }
}
@media (max-width: 764px) {
  .info-box.a-left .info-box-text, .info-box.a-left .info-box-text-titles {
    align-items: self-start;
  }
}
@media (max-width: 500px) {

  .swiper.home-slider .swiper-pagination-custom {
    bottom: 10px !important;
  }

  .swiper-button-next:after, .swiper-button-prev:after {
    font-size: 15px !important;
  }

  .info-box.a-left .info-box-text {
    padding: 15px !important;
  }
  .info-box.a-left .info-box-text .info-box-title {
    font-size: 18px !important;
    margin-bottom: 8px !important;
  }

  .info-box-text .link {
    font-size: 12px !important;
    font-weight: 500;
  }

  .info-box.a-left .info-box-text .info-box-subtitle {
    font-size: 14px !important;
    margin-bottom: 8px !important;
  }
}
.info-box.a-center .info-box-text, .info-box.a-center .info-box-text-titles {
  align-items: center;
}
.info-box.a-right .info-box-text, .info-box.a-right .info-box-text-titles {
  align-items: flex-end;
}
.info-box.p-top .info-box-text {
  justify-content: flex-start;
}
@media (min-width: 768px) {
  .info-box.p-center .info-box-text {
    justify-content: start;
  }
}
.info-box.p-bottom .info-box-text {
  justify-content: flex-end;
}
.info-box.p-top-bottom .info-box-text {
  justify-content: space-between;
}

.social-links {
  display: flex;
  flex-direction: column;
}
.social-links.a-center {
  align-items: center;
}
.social-links.a-left {
  align-items: flex-start;
}
.social-links.a-right {
  align-items: flex-end;
}
.social-links.p-bottom {
  flex-direction: column-reverse;
}
.social-links.p-bottom .social-links-content {
  margin-bottom: 20px;
  margin-top: 0;
}
.social-links .social-links-title {
  font-size: 27px;
  color: #E6007E;
  text-transform: uppercase;
  font-weight: 600;
}
.social-links .social-links-content {
  display: flex;
  list-style: none;
  justify-content: center;
  margin-top: 20px;
}
.social-links .social-links-content .social-icon {
  padding: 0 7px;
}
.social-links .social-links-content .social-icon a {
  display: flex;
  width: 45px;
  height: 45px;
  background-color: #E6007E;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  color: #fff;
}

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

.simple-offer {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  height: 100%;
}
.simple-offer.swiper-slide {
  height: initial;
}
.simple-offer .simple-offer-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  box-shadow: 0 10px 20px 0 rgba(0, 0, 0, 0.16);
  padding: 0 20px;
  width: 100%;
  height: 100%;
  border-radius: 10px;
  min-height: 361px;
}
.simple-offer .simple-offer-card .simple-offer-title {
  width: 100%;
  text-align: center;
  margin: -2px -2px 25px;
  padding: 25px 0 12px;
  border-bottom: 1px solid rgba(106, 0, 106, 0.5);
}
.simple-offer .simple-offer-card .simple-offer-title.nb {
  border-bottom: none;
  padding: 0;
  margin-bottom: 20px;
}
.simple-offer .simple-offer-card .simple-offer-title + .simple-offer-image {
  margin-top: 15px;
}
.simple-offer .simple-offer-card .simple-offer-image {
  margin-bottom: 20px;
}
.simple-offer .simple-offer-card .simple-offer-image img + img {
  width: 60%;
  margin: 0 auto;
}
.simple-offer .simple-offer-card .simple-offer-content-list {
  padding-bottom: 10px;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 10px;
}
.simple-offer .simple-offer-card .simple-offer-content-list li {
  display: list-item;
  text-align: center;
  list-style: disc inside;
}
.simple-offer .simple-offer-card .simple-offer-footer {
  width: 100%;
  text-align: center;
  padding: 10px 0 5px;
  border-top: 1px solid rgba(162, 162, 162, 0.5);
  color: #A2006A;
}
.simple-offer .simple-offer-card .simple-offer-footer h4 {
  font-size: 20px;
  margin-bottom: 10px;
}
.simple-offer .simple-offer-card .simple-offer-footer h5 {
  font-size: 12px;
  text-transform: uppercase;
}
.simple-offer .simple-offer-card .simple-offer-footer h3 + .price, .simple-offer .simple-offer-card .simple-offer-footer h4 + .price {
  margin: 10px 0 10px;
  padding-top: 10px;
  border-top: 1px solid rgba(162, 162, 162, 0.5);
}
.simple-offer .simple-offer-button {
  padding: 35px 0;
  text-align: center;
}
.simple-offer .simple-offer-button span {
  display: block;
  font-weight: 600;
  color: #444;
  font-size: 12px;
}
.simple-offer .simple-offer-button a {
  display: block;
  position: relative;
  border: 0;
  margin: 5px auto;
  padding: 0px 27px;
  min-width: 97px;
  font-size: 13px;
  width: fit-content;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  opacity: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition-property: all;
  transition-duration: 0.4s;
  transition-timing-function: ease;
  background-color: #E6007E;
  color: #fff;
  line-height: 32px;
  height: 32px;
  border-radius: 23px;
  font-weight: 700;
}
.simple-offer .simple-offer-button a:hover {
  background-color: #00004B;
}
.simple-offer .simple-offer-button.black {
  padding: 15px 0;
}
.simple-offer .simple-offer-button.black a {
  background: #000;
  font-size: 15px;
}

.tab-groups .tabs-header-nav {
  border-radius: 10px;
  display: flex;
  overflow: hidden;
  margin: 75px auto 80px;
  justify-content: center;
  align-items: center;
}
.tab-groups .tabs-header-nav li {
  width: 280px;
  height: 46px;
  background: #FAFAFA;
  color: #B43387;
  font-size: 13px;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
}
.tab-groups .tabs-header-nav li:first-child {
  border-radius: 10px 0 0 10px;
}
.tab-groups .tabs-header-nav li:last-child {
  border-radius: 0 10px 10px 0;
}
.tab-groups .tabs-header-nav li.active {
  background: #ff01ef;
  background: linear-gradient(90deg, #ff01ef 0%, #a724ff 100%);
  color: #fff;
}
.tab-groups .tabs-body {
  margin-top: 20px;
}
.tab-groups .tab-content {
  --shML: 50px;
  --shWidth: 33.33%;
  display: flex;
  flex-wrap: wrap;
  margin-left: calc(-1 * var(--shML));
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: max-height ease-in-out 0.3s, opacity ease 0.3s;
}
.tab-groups .tab-content.active {
  max-height: 9999px;
  opacity: 1;
  transition: max-height ease-in-out 0.3s 0.2s;
  overflow: unset;
}
.tab-groups .tab-content.col-4 {
  --shWidth: 25%;
}
@media (max-width: 765px) {
  .tab-groups .tab-content.col-sm-2 {
    --shWidth: 50%;
    --shML: 15px;
  }
  .tab-groups .tab-content.col-sm-2 .simple-offer-card {
    padding: 0 5px;
  }
  .tab-groups .tab-content.col-sm-2 .simple-offer-card simple-offer-content-list {
    font-size: 13px;
  }
  .tab-groups .tab-content .shop-item {
    margin-left: 0 !important;
  }
}
.tab-groups .tab-content .shop-item, .tab-groups .tab-content .tab-item {
  width: 285px;
  flex: 0 1 auto;
  text-align: center;
  display: flex;
  flex-direction: column;
  border-radius: 10px;
  margin-left: 40px;
  margin-bottom: var(--shML);
  height: auto;
}
.tab-groups .tab-content .shop-item {
  background-color: #fafafa;
  padding: 0 20px 10px;
}
.tab-groups .tab-content .shop-item h4 {
  font-size: 20px;
  letter-spacing: 0.01em;
  color: #e6007e;
  border-bottom: 0.5px solid rgba(162, 0, 106, 0.7);
  padding: 34px 0 30px;
}
.tab-groups .tab-content .shop-item .shop-description {
  padding: 20px 0;
  flex: 1;
  min-height: 200px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.tab-groups .tab-content .shop-item .shop-description img {
  max-height: 80%;
  max-width: 80%;
  align-self: center;
  width: auto;
  height: auto;
}
.tab-groups .tab-content .shop-item .shop-actions {

  display: flex;
  padding-top: 10px;
}
.tab-groups .tab-content .shop-item .shop-actions .shop-action-text {
  text-align: center;
  width: 100%;
}
.tab-groups .tab-content .shop-item .shop-actions a {
  display: block;
  flex: 1 1 auto;
  height: 30px;
  margin: auto;
}
.tab-groups .tab-content .shop-item .shop-actions a + a {
  border-left: 1px solid #A2006A;
}
.tab-groups .tab-content .shop-item .shop-actions .map-link {
  background-image: url("../img/icons/pink-pin.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 27px;
}
.tab-groups .tab-content .shop-item .shop-actions .map-link.empty-map {
  background-image: url("../img/icons/gray-pin.svg");
}
.tab-groups .tab-content .shop-item .shop-actions .phone-link {
  background-image: url("../img/icons/pink-phone.svg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: auto 25px;
}
.tab-groups .tab-content .shop-item .shop-actions .phone-link.empty-phone {
  background-image: url("../img/icons/gray-phone.svg");
}
@media (min-width: 765px) {
  .tab-groups.tab-cs .swiper-wrapper {
    flex-wrap: wrap;
    height: auto !important;
  }
}
@media (max-width: 1023px) {
  .tab-groups.tab-cs .tab-content {
    --shML: 20px;
  }
}
@media (max-width: 764px) {
  .tab-groups.tab-cs .tab-content {
    --shML: 20px;
  }
  .tab-groups.tab-cs .tab-content.active {
    overflow: hidden;
  }
}
@media (max-width: 500px) {
  .tab-groups.tab-cs .tab-content {
    --shML: 10px;
  }
}
@media (max-width: 764px) {
  .tab-groups.tab-cs .tab-content .shop-item, .tab-groups.tab-cs .tab-content .tab-item {
    flex: 0 0 auto;
  }
}

.dropdown-header-nav {
  position: relative;
  max-width: 100%;
  height: auto;
  max-width: 600px;
  margin: 0 auto;
  margin-bottom: 80px;
}
.dropdown-header-nav.prodh {
  margin: auto auto 100px;
  width: 575px;
}
.dropdown-header-nav .dropdown-select {
  width: 100%;
  height: 66px;
  border: 1px solid #A2006A;
  border-radius: 10px;
  padding-left: 26px;
  cursor: default;
  background: transparent url("../img/icons/arrow-select.svg") no-repeat calc(100% - 15px) center;
  background-size: 15px;
}
.dropdown-header-nav .dropdown-select span {
  font-size: 20px;
  font-weight: normal;
  letter-spacing: 0.01em;
  line-height: 66px;
  color: rgba(112, 112, 112, 0.5);
}
.dropdown-header-nav .dropdown-list {
  position: absolute;
  z-index: 100;
  list-style: none;
  width: 100%;
  top: 80px;
  background: #fff;
  -webkit-box-shadow: 0 0 15px 5px rgba(162, 0, 106, 0.26);
  box-shadow: 0 0 15px 5px rgba(162, 0, 106, 0.26);
  display: none;
}
.dropdown-header-nav .dropdown-list.active {
  display: block !important;
}
.dropdown-header-nav .dropdown-list.active .dropdown-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
}
.dropdown-header-nav .dropdown-list ul {
  list-style: none;
  width: 100%;
  height: 300px;
  overflow-y: scroll;
}
.dropdown-header-nav .dropdown-list ul li {
  display: block;
  height: 60px;
  border-left: 6px solid transparent;
  padding-left: 20px;
  font-size: 20px;
  font-weight: normal;
  letter-spacing: 0.01em;
  line-height: 60px;
  color: rgba(112, 112, 112, 0.5);
}
.dropdown-header-nav .dropdown-list ul li:hover {
  border-left: 6px solid #A2006A;
  color: #A2006A;
}

.rolling-images {
  width: 100%;
  height: 0;
  padding-bottom: 78.3333%;
  position: relative;
}
.rolling-images .rolling-picture {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  overflow: hidden;
}
.rolling-images .rolling-picture img {
  display: block;
  align-self: center;
  height: 100%;
  max-width: none !important;
  width: auto;
}
.rolling-images .rolling-picture.loaded img {
  animation: rollingLeft 24s linear infinite;
  -webkit-animation-delay: 1s;
  animation-delay: 1s;
}
.rolling-images .rolling-picture.vertical {
  flex-direction: column;
}
.rolling-images .rolling-picture.vertical img {
  width: 100%;
  height: auto;
}
.rolling-images .rolling-picture.vertical.loaded img {
  animation: rollingUp 50s linear infinite;
}
@media (max-width: 767px) {
  .rolling-images {
    padding-bottom: 0 !important;
    height: 180px;
  }
  .rolling-images .rolling-picture.vertical {
    flex-direction: row;
  }
  .rolling-images .rolling-picture.vertical.loaded img {
    animation: rollingLeft 50s linear infinite;
    animation-delay: 1.2s;
  }
  .rolling-images .rolling-picture.loaded img {
    animation: rollingLeft 50s linear infinite;
    animation-delay: 1.2s;
  }
  .rolling-images .rolling-picture img {
    width: auto;
    height: 100%;
  }
}

.offer-block {
  width: 97%;
  min-height: 270px;
  display: flex;
  background: #fff;
  border-radius: 50px;
  -webkit-box-shadow: 0 0 15px 5px rgba(0, 0, 0, 0.1);
  box-shadow: 0 0 15px 2px rgba(0, 0, 0, 0.1);
  margin-bottom: 35px;
  margin-left: auto;
  margin-right: auto;
}
.offer-block.devices-offer {
  justify-content: space-between;
  max-width: 900px;
}
.offer-block .offer-image {
  width: 411px;
  flex-shrink: 0;
  display: flex;
  justify-content: center;
  align-items: center;
}
.offer-block .offer-image h3 {
  display: none;
}
.offer-block .offer-image img {
  max-width: 80%;
}
.offer-block .offer-content {
  flex: 1;
  padding: 25px 15px;
  border-top-left-radius: 10px;
}
.offer-block .offer-content .offer-block-title {
  font-size: 20px;
  font-weight: normal;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  display: inline-block;
  /*background: linear-gradient(90deg, #FF16FF, #0D3AFF);*/
  background:#A2006A ;
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 20px;
}
.offer-block .offer-content ul li {
  display: list-item;
  list-style: disc inside;
}
.offer-block .offer-right {
  display: flex;
  flex-direction: column;
}
.offer-block .offer-right > * {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.offer-block .offer-right.no-space {
  background-color: #FAFAFA;
  justify-content: center;
}
.offer-block .offer-right.no-space > * {
  flex: 0 1 auto !important;
  padding-top: 0;
  padding-bottom: 0;
}
.offer-block .offer-right .offer-price {
  border-top-left-radius: 10px;
  border-top-right-radius: 50px;
  margin-bottom: 5px;
  text-align: center;
  padding: 18px 10px;
  width: 100%;
  background-color: #FAFAFA;
  flex: 1;
}
.offer-block .offer-right .offer-price .offer-price-title {
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #FF16FF, #0D3AFF);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 15px;
  text-align: center;
}
.offer-block .offer-right .offer-price .offer-price-title.line {
  text-decoration: line-through;
  -webkit-text-fill-color: unset !important;
  background: transparent;
  color: #A2A2A2;
}
.offer-block .offer-right .offer-price .offer-price-value {
  font-size: 30px;
  letter-spacing: 0.01em;
  color: #444444;
  font-weight: 600;
}
.offer-block .offer-right .offer-button {
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 50px;
  padding: 15px 25px;
  width: 100%;
  background-color: #FAFAFA;
  flex: 1;
}
.offer-block .offer-right .offer-button .offer-button-title {
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 0.01em;
  color: #fff;
  display: inline-block;
  text-align: center;
  margin: 15px;
}
.offer-block .offer-right .offer-button a {
  display: block;
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 0.01em;
  color: #fff;
  /*background: linear-gradient(90deg, #ff01ef 0%, #2905be 100%);*/
  background: #A2006A;
  text-align: center;
  border-radius: 20px;
  padding: 8px 0;
}

.right-full-image {
  max-width: unset;
  width: calc(40vw);
}

.table {
  border-collapse: collapse;
  width: 100%;
  border: 1px solid #ddd;
}
.table.center {
  text-align: center;
}
.table tr {
  height: 45px;
  border-bottom: 1px solid #ddd;
}
.table tr:last-child {
  border-bottom: none;
}
.table tr td {
  color: #444;
  font-size: 18px;
  font-weight: normal;
  letter-spacing: 0.01em;
  text-align: center;
  border: 1px solid #eee;
  padding: 10px;
}
.table tr th {
  background-color: #fafafa;
  color: #A2006A;
  font-size: 18px;
  font-weight: normal;
  letter-spacing: 0.01em;
  text-align: center;
  border: 1px solid #eee;
  padding: 10px;
}

.modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  display: none;
  width: 100%;
  height: 100%;
  overflow: hidden;
  outline: 0;
  transition: opacity 0.15s linear;
}
.modal .modal-dialog {
  position: relative;
  width: auto;
  margin: 30px auto;
  pointer-events: none;
  top: 50%;
  max-width: 800px;
  transition: transform 0.3s ease-out;
  transform: translate(0, 0);
}
.modal .modal-dialog .modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  color: #000;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0;
}
.modal .modal-dialog .modal-content .modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1rem 1rem;
  border-bottom: 1px solid #dee2e6;
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem;
}
.modal .modal-dialog .modal-content .modal-header .modal-title {
  margin-bottom: 0;
  line-height: 1.5;
  font-size: 18px;
}
.modal .modal-dialog .modal-content .modal-header .close {
  float: right;
  font-size: 1.5rem;
  font-weight: 700;
  line-height: 1;
  color: #000;
  text-shadow: 0 1px 0 #fff;
  opacity: 0.5;
  padding: 1rem 1rem;
  margin: -1rem -1rem -1rem auto;
  background-color: transparent;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  border: 0;
  cursor: pointer;
}
.modal .modal-dialog .modal-content .modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem;
  overflow: auto;
  max-height: calc(100vh - 175px);
}
.modal .modal-dialog .modal-content .modal-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 1rem;
  border-top: 1px solid #dee2e6;
  border-bottom-right-radius: 0.3rem;
  border-bottom-left-radius: 0.3rem;
}
.modal.show {
  display: block;
}
.modal.show .modal_bg {
  background: #2222226b;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.modal.show .modal-dialog {
  transform: translate(0, -50%);
}

.modal-channel {
  display: flex;
  flex-wrap: nowrap;
}
@media (max-width: 765px) {
  .modal-channel {
    flex-direction: column;
    align-items: center;
  }
}
.modal-channel .channel-img {
  width: 180px;
  flex: 1 0 auto;
  margin-right: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-channel .channel-img img {
  min-height: 70px;
  object-fit: contain;
}

.a-hv-c {
  display: flex;
  align-items: center;
  justify-content: center;
}

.tring-production .production-item {
  background-color: #fafafa;
  padding: 20px;
  min-height: 400px;
  margin-bottom: 50px;
  display: flex;
  flex-direction: column;
}
.tring-production .production-item > a {
  display: flex;
  flex-direction: column;
  flex: 1 1 auto;
}
.tring-production .production-item .production-title {
  color: #E6007E;
  text-align: center;
  font-size: 20px;
}
.tring-production .production-item .production-img {
  flex: 1 1 auto;
  border: solid #e6007e;
  border-width: 1px 0;
  margin: 15px 0;
}
.tring-production .production-item .production-img img {
  max-width: 80%;
  object-fit: contain;
}
.tring-production .production-item .production-category {
  text-align: center;
}
@media (max-width: 500px) {
  .tring-production .production-item {
    padding: 10px;
    min-height: 280px;
  }
  .tring-production .production-item .production-title {
    font-size: 17px;
  }
}

.filter-container .filter-item {
  display: none;
}
.filter-container .filter-item.active {
  display: inherit;
}

.tring-post-list h3.post-title {
  color: #A2006A;
}
.tring-post-list .post-date {
  line-height: 21px;
  color: #707070;
  margin: 10px 0 7px;
}
.tring-post-list .post-desc {
  font-size: 16px;
  line-height: 30px;
  font-weight: 500;
  color: #444444;
  word-spacing: 1px;
  margin-bottom: 10px;
}
.tring-post-list .post-link {
  color: #A2006A;
  font-size: 16px;
  line-height: 21px;
  font-weight: 700;
}
.tring-post-list.sc .post-item + .post-item {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid #70707050;
}
.tring-post-list.sc h3.post-title {
  font-size: 20px;
  line-height: 27px;
  font-weight: 700;
}
.tring-post-list.sc .post-date {
  font-size: 16px;
  font-weight: 500;
}
.tring-post-list.sr .post-item {
  background: #fff;
  padding: 20px;
  box-shadow: 0 10px 30px #00000029;
  border-radius: 10px;
  margin-top: 30px;
  margin-bottom: 55px;
}
.tring-post-list.sr h3.post-title {
  font-size: 16px;
  line-height: 20px;
  font-weight: 600;
  text-align: center;
  padding-bottom: 10px;
  border-bottom: 1px solid #A2006A;
  margin-bottom: 20px;
}
.tring-post-list.sr .post-date {
  font-size: 12px;
  font-weight: 300;
}
.tring-post-list.sr .post-link {
  position: absolute;
  bottom: -60px;
  left: 50%;
  min-width: 60%;
  transform: translate(-50%, 0);
  text-align: center;
  background: #A2006A;
  color: #fff;
  padding: 4px 10px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 700;
  transition: background-color ease 0.5s;
}
.tring-post-list.sr .post-link:hover {
  background-color: var(--mColorH);
  color: #fff;
}

.pagination {
  margin: 30px 0 10px;
}
.pagination ul li .page-numbers {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid #e6007e;
}
.pagination ul li .page-numbers.current, .pagination ul li .page-numbers:hover {
  background-color: #e6007e;
  color: #fff;
}
.pagination ul li + li {
  margin-left: 10px;
}

.tring-packets .packet-item .packet-image img {
  max-height: 165px;
  width: 100%;
  object-fit: cover;
}
.tring-packets .packet-item .packet-content {
  flex: 1 1 auto;
}
.tring-packets .channels {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  margin-top: 0;
  transition: margin-top ease 0.5s;
}
.tring-packets .channels .channels-item {
  flex: 0 1 auto;
  margin-bottom: 30px;
}
.tring-packets .channels .row {
  display: none;
  padding: 0;
  overflow: hidden;
  max-height: 0;
  transition: max-height ease 0.5s, padding ease 0.3s 0.2s;
}
.tring-packets .channels .row.show {
  display: flex;
}
.tring-packets .channels .bg {
  --leftBf: 50%;
}
.tring-packets .channels .bg:before {
  content: "";
  position: absolute;
  left: var(--leftBf, 50%);
  top: 10px;
  border: 1px solid #000;
  border-width: 0 22px 0px 22px;
  border-color: transparent transparent #35ad6f transparent;
  transition: top ease 0.3s, border-width ease 0.1s;
}
.tring-packets.bl .channels .bg:before {
  border-color: transparent transparent #3496D2 transparent;
}
.tring-packets .channels .bg:after {
  content: "";
  position: absolute;
  top: 0;
  left: calc(-50vw + 50%);
  width: 100vw;
  height: 100%;
  background: #35AD6F;
  z-index: -1;
}
.tring-packets.bl .channels .bg:after {
  background: #3496D2;
}
.tring-packets .channels.open {
  margin-top: 40px;
}
.tring-packets .channels.open .row {
  max-height: 1999px;
  padding: 60px 10px;
  transition: max-height ease 0.5s 0.1s, padding ease 0.3s;
  gap: 20px;
}
.tring-packets .channels.open .bg:before {
  border-width: 0 22px 32px 22px;
  top: -30px;
}

.box-shadow.bsh\:012 {
  --bsh-012: 0 12px 18px 0 rgb(0 0 0 / 25%);
}
.box-shadow > .vc_column-inner > .wpb_wrapper {
  box-shadow: var(--bsh-012, none);
}

.linerar-bg.b1 {
  background: -webkit-linear-gradient(right, white 0%, #f6f5f8 100%);
  background: linear-gradient(to left, white 0%, #f6f5f8 100%);
}

.br-d {
  border: 1px solid #ddd;
}

.map-coverages .map-coverage {
  display: flex;
  margin: 0 80px;
}
.map-coverages .map-coverage .coverage-map {
  flex: 0 0 310px;
  margin-right: 140px;
}
.map-coverages .map-coverage .coverage-map img {
  width: 100%;
  max-width: 100%;
}
.map-coverages .map-coverage .coverage-cities {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  align-content: center;
  --mapW: 50%;
}
.map-coverages .map-coverage .coverage-cities .coverage-city {
  max-width: var(--mapW, 50%);
  flex: 0 0 var(--mapW);
  line-height: 25px;
  margin: 6px 0;
  cursor: pointer;
}
.map-coverages .map-coverage .coverage-cities .coverage-city h3 {
  color: #A2006A;
  font-size: 18px;
  font-weight: 600;
  margin: 0;
}
.map-coverages .map-coverage .coverage-cities .coverage-city .coverage-more {
  font-size: 16px;
  font-weight: 500;
}
.map-coverages .map-coverage-info {
  position: relative;
  max-height: 0;
  overflow: hidden;
  transition: max-height ease 0.05s, padding ease 0.05s;
}

.city-modal-close{
  display: block;
  position: relative;
  border: 0;
  margin-top: 15px;
  padding: 0px 27px;
  min-width: 97px;
  font-size: 13px;
  width: fit-content;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  opacity: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition-property: all;
  transition-duration: 0.4s;
  transition-timing-function: ease;
  background-color: #E6007E;
  color: #fff;
  line-height: 32px;
  height: 32px;
  border-radius: 23px;
  font-weight: 700;
}

.no-scroll {
  overflow: hidden;
  height: 100%;
}
.map-coverages .map-coverage-info {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100vw;
  height: 100vh;
  background: rgba(0, 0, 0, 0.5);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

.map-coverages .map-coverage-info .map-bg {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.306);
  z-index: 0;
}

.map-coverages .map-coverage-info .box {
  z-index: 1;
  position: relative;
  min-height: 160px;
  display: flex;
  flex-direction: column;
  align-items: center;
  background: #FAFAFA;
  width: 500px;
  max-width: 100%;
  margin: 0;
  box-shadow: 10px 10px 25px #00000029;
  padding: 40px 30px;
  border-radius: 10px;
}

.map-coverages .map-coverage-info .map-title {
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 10px;
}
.map-coverages .map-coverage-info.open {
  padding: 40px 0;
  max-height: 999px;
  overflow: unset;
  transition: max-height ease 0.3s, padding ease 0.1s;
}

.tring-packets .btn {
  border-radius: 10px;
  background-color: #35AD6F;
}
.tring-packets .btn:hover {
  background-color: var(--mColor);
}
.tring-packets.bl .btn {
  background-color: #3496D2;
}

.channel-sh img {
  max-width: 100% !important;
}

.guida-page .guida-header {
  background: #C10480;
  background: linear-gradient(90deg, #C10480, #A2006A);
  color: #fff;
}
.guida-page .guida-header .header-item {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
}
.guida-page .guida-header .header-item .day-select {
  display: flex;
  align-items: center;
}
.guida-page .guida-header .header-item .day-select .day {
  padding: 5px 10px;
  text-transform: uppercase;
  font-weight: 700;
  font-size: 12px;
  border-radius: 23px;
  cursor: pointer;
}
.guida-page .guida-header .header-item .day-select .day:hover {
  background: #E6007E;
}
.guida-page .guida-header .header-item .day-select .day.active {
  background: #E6007E;
  font-size: 17px;
  padding: 5px 20px;
  margin: 0 5px;
}
.guida-page .guida-header .header-item .day-select .day:first-child {
  margin-left: 0;
}
.guida-page .guida-header .header-item .guida-filters-all {
  display: flex;
  align-items: center;
}
.guida-page .guida-header .header-item .guida-filters-all .filter-button {
  margin-left: 25px;
}
.guida-page .guida-header .header-item .guida-filters-all .guida-filters {
  display: flex;
  align-items: center;
  border: 1px solid #fff;
  border-radius: 20px;
  padding: 5px 15px;
  text-transform: uppercase;
  font-weight: 700;
  cursor: pointer;
}
.guida-page .guida-header .header-item .guida-filters-all .guida-filters svg {
  margin-left: 10px;
  max-height: 18px;
}
.guida-page .guida-header .header-item .guida-filters-all .guida-filters svg > * {
  transition: transform ease 0.2s;
}
.guida-page .guida-header .header-item .guida-filters-all .filters-content {
  display: flex;
  align-items: center;
  max-width: 0;
  overflow: hidden;
  transition: max-width ease 0.5s;
}
.guida-page .guida-header .header-item .guida-filters-all .filters-content .dropdown-select {
  border: 1px solid #fff;
  height: 33px;
  background-image: url("../img/icons/arrow-white.svg");
  border-radius: 20px;
  padding: 0;
  overflow: hidden;
}
.guida-page .guida-header .header-item .guida-filters-all .filters-content .dropdown-select span {
  color: #fff;
  line-height: 33px;
  padding-right: 37px;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 700;
  -webkit-line-clamp: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  max-height: 40px;
  white-space: nowrap;
}
.guida-page .guida-header .header-item .guida-filters-all .filters-content .dropdown-list {
  top: 42px;
  right: 0;
  min-width: 200px;
}
.guida-page .guida-header .header-item .guida-filters-all .filter-channels {
  display: flex;
  align-items: center;
  padding-right: 25px;
  border-right: 1px solid #fff;
  max-width: 300px;
  overflow: hidden;
  transition: max-width ease 0.5s 0.3s, padding ease 0.1s 0.4s, margin ease 0.1s 0.4s, border ease 0.1s 0.4s;
}
.guida-page .guida-header .header-item .guida-filters-all .filter-channels div + div {
  margin-left: 5px;
}
.guida-page .guida-header .header-item .guida-filters-all .filter-channels .title {
  font-weight: 700;
  font-size: 12px;
  text-transform: uppercase;
}
.guida-page .guida-header .header-item .guida-filters-all .filter-channels .switch {
  display: flex;
  border: 1px solid #fff;
  border-radius: 20px;
  align-items: center;
}
.guida-page .guida-header .header-item .guida-filters-all .filter-channels .switch .option {
  border-radius: 50%;
  padding: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  margin: -1px;
  cursor: pointer;
}
.guida-page .guida-header .header-item .guida-filters-all .filter-channels .switch .option.active, .guida-page .guida-header .header-item .guida-filters-all .filter-channels .switch .option:hover {
  background: #fff;
}
.guida-page .guida-header .header-item .guida-filters-all .filter-channels .switch .option.active svg, .guida-page .guida-header .header-item .guida-filters-all .filter-channels .switch .option:hover svg {
  fill: #a2006a;
  stroke: #a2006a;
}
.guida-page .guida-header .header-item .guida-filters-all.active .filter-channels {
  max-width: 0;
  padding-right: 0;
  margin-right: 0;
  border: none;
  transition: max-width ease 0.3s;
}
.guida-page .guida-header .header-item .guida-filters-all.active .filters-content {
  max-width: 500px;
  overflow: inherit;
  transition: max-width ease 0.5s 0.3s;
}
.guida-page .guida-header .header-item .guida-filters-all.active .filters-content > div + div {
  margin-left: 15px;
  transition: margin ease 0.3s 0.3s;
}
.guida-page .guida-header .header-item .guida-filters-all.active .filters-content .dropdown-select {
  padding-left: 26px;
  transition: padding ease 0.2s 0.3s;
}
.guida-page .guida-header .header-item .guida-filters-all.active .filter-button .guida-filters {
  background: #e6007e;
}
.guida-page .guida-header .header-item .guida-filters-all.active .filter-button .guida-filters svg rect {
  display: none;
}
.guida-page .guida-header .header-item .guida-filters-all.active .filter-button .guida-filters svg rect:first-child {
  display: block;
  transform: rotate(45deg);
}
.guida-page .guida-header .header-item .guida-filters-all.active .filter-button .guida-filters svg rect:last-of-type {
  display: block;
  transform: rotate(-45deg) translate(-11px, 9px);
}
.guida-page .guida-header .header-item .guida-filters-all.active .filter-button .guida-filters svg g {
  display: none;
}
.guida-page .guida-content {
  display: flex;
  max-width: 100%;
  margin-top: 100px;
  --guidaLC: 448px;
}
.guida-page .guida-content .guida-highlights {
  flex: 0 0 auto;
  max-width: var(--guidaLC, 448px);
  margin-right: 16px;
}
.guida-page .guida-content .guida-highlights h1 {
  font-size: 30px;
  text-transform: uppercase;
}
.guida-page .guida-content .guida-highlights h3 {
  font-size: 12px;
  text-transform: uppercase;
  margin: 0;
}
.guida-page .guida-content .guida-slider {
  margin-top: 26px;
}
.guida-page .guida-content .swiper-guida .guida-program {
  min-height: unset;
}
.guida-page .guida-content .swiper-guida .featured-image img {
  width: 100%;
}
.guida-page .guida-content .swiper-guida .pagination-progress {
  display: block;
  position: absolute;
  top: -10px;
  left: 0;
  margin: 0;
  padding: 0;
  width: 100%;
  height: 1px;
  background-color: rgba(255, 255, 255, 0.333);
  overflow: hidden;
  transition-property: all;
  transition-duration: 1.2s;
  transition-timing-function: ease;
  transform: none;
}
.guida-page .guida-content .swiper-guida .pagination-progress .pagination-line {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  margin: 0;
  padding: 0;
  width: 0;
  height: 100%;
  background-color: #fff;
  transition-property: background-color;
  transition-duration: 1.2s;
  transition-timing-function: linear;
  animation-name: fill;
}
.guida-page .guida-content .swiper-guida .swiper-pagination {
  bottom: 70px;
  z-index: 9;
}
.guida-page .guida-content .swiper-guida .swiper-pagination .swiper-pagination-bullet {
  --swiper-pagination-bullet-width: 15px;
  --swiper-pagination-bullet-height: 15px;
  --swiper-pagination-bullet-inactive-color: #fff;
  --swiper-pagination-bullet-inactive-opacity: 1;
}
.guida-page .guida-content .swiper-guida .swiper-pagination .swiper-pagination-bullet + .swiper-pagination-bullet {
  margin-left: 7px;
}
.guida-page .guida-content .swiper-guida .swiper-pagination .swiper-pagination-bullet.active {
  background: #A2006A;
  border: 2px solid #fff;
}
.guida-page .guida-content .swiper-guida .swiper-pagination .swiper-pagination-bullet.active .pagination-line {
  /*animation-name: fill;*/
  animation-duration: 8s;
}
.guida-page .guida-content .all-guida-programs {
  flex: 1 1 auto;
  padding-top: 46px;
  max-width: 100%;
}
.guida-page .guida-content .all-guida-programs .guida-section .guida-section-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 25px;
}
.guida-page .guida-content .all-guida-programs .guida-section .guida-section-header .title {
  font-size: 23px;
  line-height: 30px;
  font-weight: 600;
  text-transform: uppercase;
}
.guida-page .guida-content .all-guida-programs .guida-section .guida-section-header .view-all {
  font-size: 15px;
  font-weight: 600;
  color: #A2006A;
}
.guida-page .guida-content .all-guida-programs .guida-section + .guida-section {
  margin-top: 40px;
  padding-top: 15px;
  border-top: 1px solid #707070;
}
.guida-page .guida-content .all-guida-programs .guida-programs .guida-program {
  min-height: unset;
}
.guida-page .guida-content .all-guida-programs .guida-programs .guida-program img {
  width: 100%;
}
.guida-page .guida-content .all-guida-programs .guida-programs .guida-program .details {
  font-size: 12px;
}
.guida-page .guida-content .all-guida-programs .guida-programs .guida-program .details .title {
  font-weight: 600;
  font-size: inherit;
}
.guida-page .guida-content .guida-highlights + .all-guida-programs {
  max-width: calc((100% - var(--guidaLC, 448px)) - 16px);
}
.guida-page .guida-category-programs {
  margin-top: 120px;
}
.guida-page .guida-category-programs .guida-section-header .title {
  font-size: 23px;
  line-height: 30px;
  font-weight: 600;
  text-transform: uppercase;
  margin: 20px 0;
}
.guida-page .guida-category-programs .guida-programs {
  display: flex;
  flex-wrap: wrap;
  --gAPr: 6;
  --gAPrL: 16px;
  margin-left: calc(-1 * var(--gAPrL, 16px));
}
.guida-page .guida-category-programs .guida-programs .guida-program {
  flex: 1 1 auto;
  max-width: calc((100% / var(--gAPr, 5)) - var(--gAPrL, 5));
  margin-left: var(--gAPrL, 16px);
}
.guida-page .guida-category-programs .guida-programs .guida-program .featured-image {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
}
.guida-page .guida-category-programs .guida-programs .guida-program .featured-image img {
  width: 100%;
}

.table-content {
  display: flex;
  max-width: 100%;
}
.table-content .table-left {
  display: flex;
  flex-direction: column;
  padding: 10px;
  justify-content: center;
  min-width: 150px;
  font-size: 17px;
  font-weight: 600;
  margin-right: 45px;
  padding-bottom: 45px;
}
.table-content .table-left .table-item {
  position: relative;
  padding-bottom: 10px;
  margin-bottom: 10px;
}
.table-content .table-left .table-item:after {
  content: "";
  width: 45px;
  position: absolute;
  bottom: 0;
  left: 0;
  height: 1px;
  background: #707070;
}
.table-content .stable-content {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 10px 25px;
  border-radius: 10px;
  box-shadow: 0 5px 20px #00000029;
  margin: 10px;
}
.table-content .stable-content .stable-title {
  color: #A2006A;
  font-size: 15px;
  font-weight: 600;
  padding-bottom: 10px;
  margin-bottom: 10px;
  border-bottom: 1px solid #A2006A;
  width: 100%;
  text-align: center;
}
.table-content .stable-content .stable-scontent > div {
  position: relative;
  width: 95px;
  display: flex;
  justify-content: center;
  margin-bottom: 14px;
}
.table-content .stable-content .stable-scontent > div img {
  padding-top: 14px;
}
.table-content .stable-content .stable-scontent > div + div:after {
  content: "";
  width: 95px;
  position: absolute;
  top: 0;
  left: 0;
  height: 1px;
  background: #707070;
}
.table-content .stable-content .stable-price {
  font-size: 15px;
  font-weight: 600;
  color: #A2006A;
  border-top: 1px solid #A2A2A2;
  width: 100%;
  text-align: center;
  padding-top: 10px;
}
.table-content a.stable-btn {
  display: block;
  position: relative;
  border: 0;
  margin: 35px auto 5px;
  min-width: 97px;
  font-size: 12px;
  width: fit-content;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  opacity: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition-property: all;
  transition-duration: 0.4s;
  transition-timing-function: ease;
  background-color: #E6007E;
  color: #fff;
  padding: 6px 30px;
  height: 30px;
  border-radius: 23px;
  font-weight: 700;
}
.table-content a.stable-btn:hover {
  background-color: #00004B;
}

/* --Singular-- */
.text-heading.bc {
  font-size: 36px;
  background: linear-gradient(to right, #FF16FF 0%, #0D3AFF 70%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  padding-top: 30px;
  display: inline-block;
}

.entry-content .featured-image {
  display: flex;
  margin: 15px auto;
  justify-content: center;
}


.post-seriale {
  padding-top: 20px;
}
.post-seriale .featured-image {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.post-seriale .featured-image:before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 50%;
  background: linear-gradient(180deg, #50505000, #000);
}
.post-seriale .featured-image h1.title {
  position: absolute;
  bottom: 40px;
  left: 0;
  z-index: 9;
  color: #fff;
  width: 100%;
  text-align: center;
  font-size: 25px;
  font-weight: 500;
}
.post-seriale .post-content {
  font-size: 15px;
  margin-top: 40px;
}
.post-seriale .post-content p {
  font-size: inherit;
}
.post-seriale .seriale-divider {
  max-width: 223px;
  margin: 0 auto;
  text-align: center;
  color: #444444;
  cursor: pointer;
}
.post-seriale .seriale-divider:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #444444;
  margin-bottom: 4px;
}
.post-seriale .seriale-divider .more {
  font-size: 15px;
  margin-top: 10px;
}
.post-seriale .serial-title {
  font-size: 20px;
  text-align: center;
  margin-top: 100px;
  margin-bottom: 35px;
}
.post-seriale .seriale-more {
  max-width: 757px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
}
.post-seriale .serial-actors {
  display: flex;
  align-items: center;
  justify-content: center;
}
.post-seriale .serial-actors .single-actor {
  cursor: pointer;
  margin-bottom: 30px;
}
.post-seriale .serial-actors .single-actor img {
  border-radius: 10px;
  width: 100%;
}
.post-seriale .serial-actors .single-actor .actor-name {
  font-size: 12px;
  font-weight: 600;
  margin-top: 10px;
}
.post-seriale .serial-actors .single-actor + .single-actor {
  margin-left: 15px;
}
.post-seriale .serial-episode .single-episod {
  margin-bottom: 30px;
}
.post-seriale .serial-episode .single-episod img {
  border-radius: 10px;
  width: 100%;
}
.post-seriale .serial-episode .single-episod .episod-number {
  margin-top: 10px;
  font-size: 12px;
  font-weight: 600;
}
.post-seriale .serial-episode .single-episod .episod-desc {
  font-size: 15px;
  margin-top: 10px;
}
.post-seriale .serial-episode .single-episod .episod-more {
  margin-top: 12px;
  font-size: 16px;
  font-weight: 600;
  color: #A2006A;
  cursor: pointer;
}
.post-seriale .show-more {
  position: absolute;
  top: 145px;
  left: 0;
  width: 100%;
  background: #FAFAFA;
  max-height: 0;
  overflow: hidden;
  transition: max-height ease 0.3s;
  z-index: 99;
  box-shadow: 0px 2px 10px #0000002e;
}
.post-seriale .show-more .name {
  background: #fafafa;
  padding: 10px;
  font-size: 12px;
  font-weight: 600;
}
.post-seriale .show-more .text {
  background: #fafafa;
  font-size: 15px;
  line-height: 20px;
  padding: 0 10px 30px;
}
.post-seriale .show-more .less {
  background: #fafafa;
  font-size: 16px;
  font-weight: 600;
  color: #A2006A;
  cursor: pointer;
  position: absolute;
  right: 10px;
  bottom: -20px;
  transition: bottom ease 0.3s 0.1s;
}
.post-seriale .show-more .bg:before {
  content: "";
  position: absolute;
  left: var(--leftBf, 50%);
  top: 10px;
  z-index: -1;
  border: 1px solid #000;
  border-width: 0 22px 0px 22px;
  border-color: transparent transparent #e9e9e9 transparent;
  transition: top ease 0.3s, border-width ease 0.1s;
}
.post-seriale .show-more.active {
  max-height: 999px;
  overflow: unset;
}
.post-seriale .show-more.active .bg:before {
  border-width: 0 22px 32px 22px;
  top: -12px;
}
.post-seriale .show-more.active .less {
  bottom: 10px;
}
.post-seriale .serial-episode-more {
  max-height: 0;
  overflow: hidden;
  transition: max-height ease 0.5s;
}
.post-seriale .serial-episode-more.active {
  max-height: 99999px;
  transition: max-height ease 2s;
}

.guide-single {
  margin-top: 100px;
}
.guide-single .entry-header {
  position: relative;
  border-radius: 10px;
  overflow: hidden;
}
.guide-single .entry-header .featured-image:before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  bottom: 0;
  background: linear-gradient(0deg, #000, #0000);
}
.guide-single .entry-header .featured-image img {
  max-width: 100%;
  width: 100%;
  max-height: 400px;
  object-fit: cover;
}
.guide-single .entry-header .text-heading {
  position: absolute;
  bottom: 30px;
  left: 0;
  width: 100%;
}
.guide-single .entry-header .text-heading .title {
  font-size: 25px;
  font-weight: 600;
}
.guide-single .guida-content {
  display: flex;
  width: 100%;
  margin-top: 60px;
}
.guide-single .guida-content .left {
  max-width: 200px;
  flex: 0 0 200px;
  margin-right: 80px;
}
.guide-single .guida-content .left .section-title {
  text-transform: uppercase;
  margin-bottom: 14px;
  font-size: 15px;
  font-weight: 600;
}
.guide-single .guida-content .left .section-content {
  white-space: pre;
  line-height: 26px;
  font-weight: 400;
}
.guide-single .guida-content .left .section-content + .section-title {
  margin-top: 50px;
}
.guide-single .guida-content .right {
  flex: 1 1 auto;
}
.guide-single .guida-content .right .post-content > * {
  font-size: 15px;
  line-height: 22px;
}
.guide-single .guida-content .right .post-content .content-tilte {
  text-transform: uppercase;
  margin-bottom: 14px;
  font-size: 15px;
  font-weight: 600;
}
.guide-single .guida-content .right .guida-channel {
  background-color: #fafafa;
  padding: 20px;
  max-width: 448px;
  margin: 40px auto 20px;
}
.guide-single .guida-content .right .guida-divider {
  max-width: 223px;
  margin: 0 auto;
  text-align: center;
  color: #444444;
  cursor: pointer;
}
.guide-single .guida-content .right .guida-divider:before {
  content: "";
  display: block;
  width: 100%;
  height: 1px;
  background: #444444;
  margin-bottom: 4px;
}
.guide-single .guida-content .right .guida-divider .more {
  font-size: 15px;
  margin-top: 10px;
}
.guide-single .guida-single-related > .title {
  font-size: 22px;
  line-height: 30px;
  margin: 50px 0 15px;
}
.guide-single .guida-single-related .guida-programs {
  display: flex;
  --pml: 14px;
  margin-left: calc(-1 * var(--pml, 0));
}
.guide-single .guida-single-related .guida-programs .guida-program {
  margin-left: var(--pml, 0);
  flex: 1 1 auto;
  max-width: calc((100% / 8) - var(--pml, 0));
}
.guide-single .guida-single-related .guida-programs .guida-program .featured-image {
  border-radius: 10px;
  overflow: hidden;
}
.guide-single .guida-single-related .guida-programs .guida-program .details .title {
  font-size: 12px;
  font-weight: 600;
}

.search-posts {
  display: flex;
  --spMl: 30px;
  --spRr: 6;
  margin-left: calc(-1 * var(--spMl, 15px));
  flex-wrap: wrap;
}
.search-posts .post-search {
  display: flex;
  flex-direction: column;
  flex: 1 1 calc(100% / var(--spRr));
  max-width: calc((100% / var(--spRr, 4)) - var(--spMl, 15px));
  margin-left: var(--spMl, 15px);
  margin-bottom: 30px;
  align-items: center;
}
.search-posts .post-search .featured-image {
  flex: 1 1 auto;
  display: flex;
  width: 100%;
  max-height: 200px;
}
.search-posts .post-search .featured-image img {
  max-height: 100%;
  object-fit: contain;
  width: 100%;
}

.channels-wrapper .channels-item img {
  width: auto;
  height: 40px;
}

/* --Margin and Padding-- */
.vc_row {
  display: flex;
  flex-wrap: wrap;
}
.vc_row:before, .vc_row:after {
  content: " ";
  display: table;
}
.vc_row:after {
  clear: both;
}
.vc_row.vc_row-o-content-middle {
  align-items: center;
}
.vc_row .vc_column_container > .vc_column-inner {
  height: 100%;
}
.vc_row .vc_column_container > .vc_column-inner .wpb_wrapper {
  height: 100%;
}
.vc_row .wpb_column[class*=vc_col-] {
  flex: 0 0 var(--fWidth);
  max-width: var(--fWidth);
  margin-bottom: 30px;
}
.vc_row .vc_col-xs-11 {
  --fWidth: 91.6666666667%;
}
.vc_row .vc_col-xs-10 {
  --fWidth: 83.3333333333%;
}
.vc_row .vc_col-xs-4\/5 {
  --fWidth: 80%;
}
.vc_row .vc_col-xs-9 {
  --fWidth: 75%;
}
.vc_row .vc_col-xs-8 {
  --fWidth: 66.6666666667%;
}
.vc_row .vc_col-xs-3\/5 {
  --fWidth: 60%;
}
.vc_row .vc_col-xs-7 {
  --fWidth: 58.33333333333333%;
}
.vc_row .vc_col-xs-6 {
  --fWidth: 50%;
}
.vc_row .vc_col-xs-5 {
  --fWidth: 41.6666666667%;
}
.vc_row .vc_col-xs-2\/5 {
  --fWidth: 40%;
}
.vc_row .vc_col-xs-4 {
  --fWidth: 33.3333333333%;
}
.vc_row .vc_col-xs-3 {
  --fWidth: 25%;
}
.vc_row .vc_col-xs-1\/5 {
  --fWidth: 20%;
}
.vc_row .vc_col-xs-2 {
  --fWidth: 16.6666666667%;
}
.vc_row .vc_col-xs-1 {
  --fWidth: 8.3333333333%;
}
.vc_row .vc_col-xs-12, .vc_row .vc_col-xs-5\/5 {
  --fWidth: 100%;
}
@media (max-width: 767px) {
  .vc_row .vc_hidden-xs {
    display: none !important;
  }
}
@media (min-width: 768px) and (max-width: 991px) {
  .vc_row .vc_hidden-sm {
    display: none !important;
  }
}
@media (min-width: 992px) and (max-width: 1199px) {
  .vc_row .vc_hidden-md {
    display: none !important;
  }
}
@media (min-width: 1200px) {
  .vc_row .vc_hidden-lg {
    display: none !important;
  }
}
@media (min-width: 765px) {
  .vc_row .vc_col-sm-11 {
    --fWidth: 91.6666666667%;
  }
  .vc_row .vc_col-sm-10 {
    --fWidth: 83.3333333333%;
  }
  .vc_row .vc_col-sm-4\/5 {
    --fWidth: 80%;
  }
  .vc_row .vc_col-sm-9 {
    --fWidth: 75%;
  }
  .vc_row .vc_col-sm-8 {
    --fWidth: 66.6666666667%;
  }
  .vc_row .vc_col-sm-3\/5 {
    --fWidth: 60%;
  }
  .vc_row .vc_col-sm-7 {
    --fWidth: 58.33333333333333%;
  }
  .vc_row .vc_col-sm-6 {
    --fWidth: 50%;
  }
  .vc_row .vc_col-sm-5 {
    --fWidth: 41.6666666667%;
  }
  .vc_row .vc_col-sm-2\/5 {
    --fWidth: 40%;
  }
  .vc_row .vc_col-sm-4 {
    --fWidth: 33.3333333333%;
  }
  .vc_row .vc_col-sm-3 {
    --fWidth: 25%;
  }
  .vc_row .vc_col-sm-1\/5 {
    --fWidth: 20%;
  }
  .vc_row .vc_col-sm-2 {
    --fWidth: 16.6666666667%;
  }
  .vc_row .vc_col-sm-1 {
    --fWidth: 8.3333333333%;
  }
  .vc_row .vc_col-sm-12, .vc_row .vc_col-sm-5\/5 {
    --fWidth: 100%;
  }
}
@media (min-width: 992px) {
  .vc_row .vc_col-md-11 {
    --fWidth: 91.6666666667%;
  }
  .vc_row .vc_col-md-10 {
    --fWidth: 83.3333333333%;
  }
  .vc_row .vc_col-md-4\/5 {
    --fWidth: 80%;
  }
  .vc_row .vc_col-md-9 {
    --fWidth: 75%;
  }
  .vc_row .vc_col-md-8 {
    --fWidth: 66.6666666667%;
  }
  .vc_row .vc_col-md-3\/5 {
    --fWidth: 60%;
  }
  .vc_row .vc_col-md-7 {
    --fWidth: 58.33333333333333%;
  }
  .vc_row .vc_col-md-6 {
    --fWidth: 50%;
  }
  .vc_row .vc_col-md-5 {
    --fWidth: 41.6666666667%;
  }
  .vc_row .vc_col-md-2\/5 {
    --fWidth: 40%;
  }
  .vc_row .vc_col-md-4 {
    --fWidth: 33.3333333333%;
  }
  .vc_row .vc_col-md-3 {
    --fWidth: 25%;
  }
  .vc_row .vc_col-md-1\/5 {
    --fWidth: 20%;
  }
  .vc_row .vc_col-md-2 {
    --fWidth: 16.6666666667%;
  }
  .vc_row .vc_col-md-1 {
    --fWidth: 8.3333333333%;
  }
  .vc_row .vc_col-md-12, .vc_row .vc_col-md-5\/5 {
    --fWidth: 100%;
  }
}
@media (min-width: 1200px) {
  .vc_row .vc_col-lg-11 {
    --fWidth: 91.6666666667%;
  }
  .vc_row .vc_col-lg-10 {
    --fWidth: 83.3333333333%;
  }
  .vc_row .vc_col-lg-4\/5 {
    --fWidth: 80%;
  }
  .vc_row .vc_col-lg-9 {
    --fWidth: 75%;
  }
  .vc_row .vc_col-lg-8 {
    --fWidth: 66.6666666667%;
  }
  .vc_row .vc_col-lg-3\/5 {
    --fWidth: 60%;
  }
  .vc_row .vc_col-lg-7 {
    --fWidth: 58.33333333333333%;
  }
  .vc_row .vc_col-lg-6 {
    --fWidth: 50%;
  }
  .vc_row .vc_col-lg-5 {
    --fWidth: 41.6666666667%;
  }
  .vc_row .vc_col-lg-2\/5 {
    --fWidth: 40%;
  }
  .vc_row .vc_col-lg-4 {
    --fWidth: 33.3333333333%;
  }
  .vc_row .vc_col-lg-3 {
    --fWidth: 25%;
  }
  .vc_row .vc_col-lg-1\/5 {
    --fWidth: 20%;
  }
  .vc_row .vc_col-lg-2 {
    --fWidth: 16.6666666667%;
  }
  .vc_row .vc_col-lg-1 {
    --fWidth: 8.3333333333%;
  }
  .vc_row .vc_col-lg-12, .vc_row .vc_col-lg-5\/5 {
    --fWidth: 100%;
  }
}

/* --Footer-- */
footer.footer {
  margin-top: 60px;
  padding-top: 60px;
  padding-bottom: 70px;
  border-top: 1px solid #ddd;
}
footer.footer .copyright-footer {
  margin: 50px 0;
  padding-top: 40px;
  border-top: 1px solid #ddd;
}
footer.footer .copyright-footer .footer-logo {
  width: 170px;
  max-width: 100%;
  margin-bottom: 25px;
  display: none;
}
footer.footer .copyright-footer .footer-logo img {
  width: 100%;
  max-width: 100;
}
footer.footer .copyright-footer .copyright-info {
  margin-top: 20px;
}

.footer-menu {
  display: flex;
  justify-content: space-between;
}
.footer-menu > li > a {
  font-weight: 700;
  font-size: 18px;
  color: #444444;
  letter-spacing: 0.01em;
  margin-bottom: 15px;
}
.footer-menu li a {
  display: block;
}
.footer-menu li .sub-menu {
  display: flex;
  flex-direction: column;
  line-height: 2;
}
@media (max-width: 765px) {
  .footer-menu {
    flex-direction: column;
  }
}

/* --Animation-- */
@-webkit-keyframes rollingUp {
  to {
    transform: translateY(-100%);
  }
}
@keyframes rollingUp {
  to {
    transform: translateY(-100%);
  }
}
@-webkit-keyframes rollingLeft {
  to {
    transform: translateX(-100%);
  }
}
@keyframes rollingLeft {
  to {
    transform: translateX(-100%);
  }
}
/* --Responsive-- */
@media (max-width: 1499px) {
  .full-container {
    max-width: 100%;
    padding-left: 30px;
    padding-right: 30px;
  }
}
@media (max-width: 1279px) {
  .container {
    width: 100%;
    max-width: 100%;
    padding-right: 30px;
    padding-left: 30px;
  }

  .guida-page .guida-content {
    --guidaLC: 348px;
  }

  .search-results .search-posts {
    --spRr: 5;
  }

  .offer-block .offer-image {
    width: 300px;
  }
  .offer-block .offer-right {
    width: 335px;
  }
}
@media (max-width: 1023px) {

  .map-coverages .map-coverage {
    margin: 0;
  }
  .map-coverages .map-coverage .coverage-map {
    margin-right: 80px;
  }

  .guida-page .guida-header .header-item {
    flex-direction: column;
  }
  .guida-page .guida-header .header-item .day-select {
    justify-content: center;
  }
  .guida-page .guida-header .header-item .guida-filters-all {
    justify-content: center;
    margin-top: 15px;
  }
  .guida-page .guida-content {
    --guidaLC: 250px;
  }
  .guida-page .guida-content .left {
    margin-right: 40px;
    max-width: 180px;
    flex: 0 0 180px;
  }
  .guida-page .guida-content .left .section-content {
    font-size: 13px;
  }

  .search-results .search-posts {
    --spRr: 4;
  }

  .main-header .bottom-bar .bar-menu {
    padding: 15px 10px;
  }

  .main-header .bottom-bar .bar-menu li + li {
    margin-left: 10px;
  }

  .main-header .bottom-bar .bar-menu .bar_menu_item {
    font-size: 14px;
  }

  .offer-block {
    flex-wrap: wrap;
  }
  .offer-block .offer-right {
    width: 100%;
  }
  .offer-block .offer-right .offer-button {
    background: transparent;
  }
}
@media (max-width: 800px) {
  p {
    font-size: 17px;
  }
}
@media (max-width: 764px) {
  .vc_row.row-colr {
    flex-direction: column-reverse;
  }

  .map-coverages .map-coverage .coverage-map {
    flex: 0 0 160px;
    margin-right: 2%;
  }
  .map-coverages .map-coverage .coverage-cities .coverage-city {
    line-height: 21px;
    margin: 3px 0;
  }
  .map-coverages .map-coverage .coverage-cities .coverage-city h3 {
    font-size: 16px;
  }
  .map-coverages .map-coverage .coverage-cities .coverage-city .coverage-more {
    font-size: 15px;
  }

  .main-header .bottom-bar .bar-menu {
    padding: 15px 20px;
  }

  .guide-single .guida-content .left {
    margin-right: 15px;
    max-width: 150px;
    flex: 0 0 150px;
  }
  .guide-single .guida-content .left .section-title {
    font-size: 14px;
    margin-bottom: 5px;
  }
  .guide-single .guida-content .left .section-content {
    font-size: 12px;
  }
  .guide-single .guida-content .left .section-content + .section-title {
    margin-top: 20px;
  }
  .guide-single .guida-single-related .guida-programs {
    flex-wrap: wrap;
  }
  .guide-single .guida-single-related .guida-programs .guida-program {
    max-width: calc((100% / 4) - var(--pml, 0));
  }

  .guida-page .guida-content {
    --guidaLC: 0;
    flex-wrap: wrap;
  }
  .guida-page .guida-content .guida-highlights {
    max-width: 100%;
    margin-right: 0;
  }
  .guida-page .guida-content .all-guida-programs {
    max-width: 100%;
  }
  .guida-page .guida-content .all-guida-programs .guida-section {
    max-width: calc(100vw - 60px);
  }

  .guida-page .guida-header .header-item .guida-filters-all .filters-content .dropdown-list {
    left: 0;
  }

  .search-results .search-posts {
    --spRr: 3;
  }

  .main-header .bottom-bar .bar-menu.right {
    display: none;
  }

  footer.footer .copyright-footer .footer-logo {
    display: block;
  }

  .right-full-image {
    max-width: 100%;
    width: 100%;
  }

  body .m\:pt-0 {
    padding-top: 0 !important;
  }
  body .m\:pt-20 {
    padding-top: 20px !important;
  }
  body .m\:pl-20 {
    padding-left: 20px !important;
  }
  body .m\:fs-14 {
    font-size: 14px !important;
  }
  body .m\:fs-16 {
    font-size: 18px !important;
  }
  body .m\:fs-18 {
    font-size: 18px !important;
  }
  body .m\:fs-28 {
    font-size: 28px !important;
  }
  body .m\:tab-flex-column .vc_tta-tabs-list {
    flex-direction: column;
  }

  .dFlex.m\:f50 {
    --fWidth: 50%;
  }
  .dFlex.m\:f33 {
    --fWidth: 33.33%;
  }
  .dFlex.m\:l-10 {
    --fMLeft: 10px;
  }

  .footer-menu > li {
    margin-bottom: 15px;
  }
  .footer-menu > li > a {
    position: relative;
  }
  .footer-menu > li > a span {
    background-image: url(../img/icons/menu_arrow_grey.svg);
    min-height: 13px;
    min-width: 7px;
    /*background-size: contain;*/
    background-repeat: no-repeat;
    background-position: center center;
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 1;
    width: 20px;
    padding: 13px 25px;
  }
  .footer-menu > li > .sub-menu {
    max-height: 0;
    overflow: hidden;
    transition: max-height ease 0.5s, margin-bottom ease 0.3s 0.1s;
  }
  .footer-menu > li.open > .sub-menu {
    max-height: 200px;
    margin-bottom: 15px;
  }

  .offer-block {
    flex-direction: column;
    align-items: center;
  }
  .offer-block .offer-image {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding-top: 30px;
  }
  .offer-block .offer-image h3 {
    text-align: center;
    font-size: 20px;
    font-weight: normal;
    letter-spacing: 0.01em;
    text-transform: uppercase;
    display: inline-block;
    background: linear-gradient(90deg, #FF16FF, #0D3AFF);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 600;
    max-width: 75%;
    margin-bottom: 30px;
  }
  .offer-block .offer-image img {
    max-width: 100%;
  }
  .offer-block .offer-content .offer-block-title {
    display: none;
  }
  .offer-block .offer-right {
    padding: 15px 0;
  }
}
@media (max-width: 579px) {
  .tring-packets .packet-item + .packet-item {
    margin-top: 40px;
  }
}
@media (max-width: 501px) {
  .container {
    padding-right: 20px;
    padding-left: 20px;
  }
  .main-header + .main-content {
    margin-top: 70px;
  }

  .full-container {
    max-width: 100%;
    padding-left: 20px;
    padding-right: 20px;
  }

  .map-coverages .map-coverage {
    flex-direction: column;
    align-items: center;
  }
  .map-coverages .map-coverage .coverage-map {
    max-width: 180px;
    flex: 0 0 160px;
    margin-right: 0;
    margin-bottom: 20px;
  }

  .header > * > * {
    height: 33px;
  }

  .header .burger-menu .burger-icon {
    margin-left: 5px;
    margin-right: 15px;
  }

  .header .header__button .btn {
    padding: 0px 15px;
    font-size: 10px;
  }

  .main-header .bottom-bar .bar-menu {
    overflow-y: scroll;
    padding: 15px 10px;
  }

  .main-header .bottom-bar .bar-menu li {
    flex: 0 0 auto;
  }

  .main-header .bottom-bar .bar-menu li + li {
    margin-left: 7px;
  }

  .main-header .bottom-bar .bar-menu li a {
    font-size: 14px;
  }

  .main-header .bottom-bar .bar-men.main-header .bottom-bar .bar-menu {
    scrollbar-width: thin;
    scrollbar-color: #bdbdbd #ffffff;
  }

  .main-header .bottom-bar .bar-menu::-webkit-scrollbar {
    height: 3px;
  }

  .main-header .bottom-bar .bar-menu::-webkit-scrollbar-track {
    background: transparent;
  }

  .main-header .bottom-bar .bar-menu::-webkit-scrollbar-thumb {
    background-color: #bdbdbd;
    border-radius: 10px;
    border: 1px solid transparent;
  }

  .guide-single .entry-header .text-heading {
    bottom: 7px;
  }
  .guide-single .entry-header .text-heading .title {
    font-size: 18px;
  }
  .guide-single .guida-content {
    flex-wrap: wrap;
  }
  .guide-single .guida-content .left, .guide-single .guida-content .right {
    max-width: 100%;
    flex: 1 1 auto;
  }
  .guide-single .guida-content .left {
    order: 2;
    margin-top: 50px;
  }
  .guide-single .guida-single-related > .title {
    font-size: 18px;
  }
  .guide-single .guida-single-related .guida-programs .guida-program {
    max-width: calc((100% / 2) - var(--pml, 0));
  }

  .guida-page .guida-header .header-item .day-select .day {
    padding: 5px 8px;
  }
  .guida-page .guida-header .header-item .day-select .day.active {
    padding: 5px 15px;
  }
  .guida-page .guida-header .header-item .guida-filters-all {
    font-size: 13px;
  }
  .guida-page .guida-header .header-item .guida-filters-all .filter-channels .title {
    display: none;
  }
  .guida-page .guida-header .header-item .guida-filters-all .filter-button {
    margin-left: 10px;
  }
  .guida-page .guida-header .header-item .guida-filters-all .guida-filters {
    padding: 5px 10px;
    font-size: 13px;
  }
  .guida-page .guida-header .header-item .guida-filters-all.active .filters-content > div + div {
    margin-left: 10px;
  }
  .guida-page .guida-header .header-item .guida-filters-all.active .filters-content .dropdown-select {
    padding-left: 10px;
    background-position-x: calc(100% - 10px);
    background-position-y: 13px;
    background-size: 10px;
  }
  .guida-page .guida-header .header-item .guida-filters-all.active .filters-content .dropdown-select span {
    font-size: 10px;
  }

  .search-results .search-posts {
    --spRr: 2;
  }

  .table-content .table-left {
    padding: 0;
    margin-right: 15px;
    font-size: 12px;
    min-width: 95px;
    padding-bottom: 35px;
  }

  .table-content .stable-content {
    padding: 10px 20px;
  }

  .table-content .table-left .table-item {
    padding-bottom: 12px;
    margin-bottom: 12px;
  }

  .table-content .stable-content .stable-title {
    font-size: 12px;
  }

  .table-content .stable-content .stable-scontent > div {
    margin-bottom: 12px;
  }

  .table-content .stable-content .stable-scontent > div img {
    padding-top: 12px;
  }
  .header__button.tringuim a {
    padding: 0 10px !important;
  }
}
@media (max-width: 350px) {
  .map-coverages .map-coverage .coverage-cities {
    --mapW: 100%;
  }
}

.wpb_single_image .vc_figure, .wpb_single_image .vc_single_image-wrapper, .wpb_single_image img {
  width: 100%;
}
/*# sourceMappingURL=main.css.map */

.tring-accordion .vc_tta-panel-body {
  background: transparent !important;
  padding: 10px 28px !important;
  border: none !important;

}

.tring-accordion .vc_tta-panel-heading {
  background: transparent !important;
  border: none !important;
}

.tring-accordion .vc_tta-panel {
  border: 1px solid #707070;
  border-radius: 10px;
  padding: 28px 0 !important;
}

.tring-accordion .vc_tta-panel + .vc_tta-panel {
  margin-top: 30px;
}

/* Embed video styles */
.embedded-videos {
  margin-top: 20px;
}

.embedded-videos .video-container {
  margin-bottom: 20px;
}

.embedded-videos-line {
  width: 100%;
  height: 1px;
  background: linear-gradient(to right, #FF16FF 0%, #0D3AFF 70%);
  margin-bottom: 50px;
}

.embedded-videos {
  margin-top: 20px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  column-gap: 50px;
  row-gap: 5px;
  margin-top: 20px;
}

/* Embeded slideeeeee */

.embedded-videos {
  width: 100%;
  padding-bottom: 20px;
}

.swiper-embedded-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;

  /* Center slide text vertically */
  display: -webkit-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  -webkit-justify-content: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  -webkit-align-items: center;
  align-items: center;
}

.video-container-emb {
  width: 100%;
}

.swiper-container.swiper-embedded-container.swiper-initialized.swiper-horizontal.swiper-pointer-events.swiper-backface-hidden {
  overflow: hidden;
}

.swiper-embedded-button-next, .swiper-embedded-button-prev {
  top: 90% !important;
}

@media only screen and (max-width: 600px) {
  .swiper-embedded-button-next, .swiper-embedded-button-prev {
    top: 95% !important;
  }
}

/* ASC OFFER COMPONENT */



/*---------------------------*/

.offers-detail-asc .offer-price-asc {
  margin-bottom: 0;
}

.offer-logos-asc{
  display: flex;
  gap: 10px;
}

.offer-content-asc .offer-block-title-asc {
  max-width: 75% !important;
}

.content-block-ul{
  margin-bottom: 30px;
}

.offer-right-asc{
  padding: 15px 0 15px 0;
  display: flex;
  flex-direction: column;
  /* flex: 1; */
  /*z-index: 100;*/
  width: 230px;
}


.offer-right-asc > * {
  display: flex;
  flex-direction: column;
}

.offers-detail-asc {
  position: relative; /* Set position relative to contain absolute positioned border */
}



.offers-detail-asc .offer-price-asc:after {
  content: '';
  position: absolute;
  bottom: -20px;
  left: 0;
  width: 70%;
  margin: auto;
}

.offer-right-asc.no-space {
  background-color: #FAFAFA;
  justify-content: center;
}

.offer-right-asc.no-space > * {
  flex: 0 1 auto !important;
  padding-top: 0;
  padding-bottom: 0;
}

.offer-month-hover:hover {
  /*background: linear-gradient(90deg,  #FF16FF,#E01BFF) !important;*/
  background: #ffffff;
}


h4.offer-price-arrow {
  font-size: 40px;
  font-weight: 600;
  padding-bottom: 10px;
}

.offer-right-asc .offer-price-asc{
  border-radius: 10px 0 0 0;
  margin-bottom: 5px;
  text-align: center;
  padding: 8px 10px;
  width: 100%;
  background-color: #FAFAFA;
  flex: 1;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  flex-direction: row;
  gap: 20px;
}

.offer-price-asc{
  border-radius: 10px;
  margin-bottom: 5px;
  text-align: center;
  padding: 18px 10px;
  width: 100%;
  background-color: #FAFAFA;
  flex: 1;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}

.offer-price-title-asc{
  font-size: 20px;
  letter-spacing: 0.01em;
  color: #444444;
  font-weight: 600;
}

.offer-price-value-asc{
  display: block;
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 0.01em;
  color: #fff;
  background: linear-gradient(90deg, #ff01ef 0%, #2905be 100%);
  text-align: center;
  border-radius: 20px;
  padding: 8px 0;
}

.offer-content-asc{
  width: 340px;
  padding: 25px 15px;
  border-top-left-radius: 10px;
}

.offer-block-title-asc{
  font-size: 20px;
  font-weight: normal;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  display: inline-block;
  color: #A2006A;
  /* background: linear-gradient(90deg, #FF16FF, #0D3AFF);
   -webkit-background-clip: text;
   background-clip: text;
   -webkit-text-fill-color: transparent;*/
  margin-bottom: 20px;
}


.offer-block .offer-content-asc ul li {
  display: list-item;
  list-style: disc inside;
}

.offer-button-asc{
  border-bottom-left-radius: 10px;
  border-bottom-right-radius: 10px;
  padding: 15px 25px;
  width: 98%;
  background-color: #FAFAFA;
  flex: 1;
  justify-content: center;
}

.offer-button-title-asc{
  font-size: 16px;
  font-weight: normal;
  letter-spacing: 0.01em;
  color: #A2006A;
  display: inline-block;
  text-align: center;
  width: 100%;
  margin: 15px;

}

.offer-button-asc a{
  display: block;
  font-size: 20px;
  font-weight: normal;
  letter-spacing: 0.01em;
  color: #fff;
  pointer-events: none;
  text-align: center;
  border-radius: 20px;
  padding: 2px 0;
}

.offer-button-asc .offer-block-title-asc {
  font-size: 30px;
  margin-bottom: 0;
  font-weight: 600;
}

.offers-detail-asc {
  width: 240px;
  margin: 15px 10px 15px 0;
  display: flex !important;
  flex-direction: column !important;
}

.offers-detail-asc .offer-price-asc h4{
  font-size: 14px;
}

.offers-detail-asc .offer-price-asc {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-around;
}

.selected-offer > .test-class {
  background: #A2006A;
}

.selected-offer > .offer-price-title-asc {
  color: white;
}

.selected-offer {
  color: white;
}


div.offer-block .offer_1 {
  display: flex !important;
  width: 100%;
}

.offer-image img[style="display:none;"], .offer-price[style="display:none;"] {
  display: none; /* Hide elements that don't have data */
}

.fade-in {
  animation: fadeInAnimation 0.5s ease-out;
}

@keyframes fadeInAnimation {
  0% { opacity: 0; }
  100% { opacity: 1; }
}

.offer-block-content-asc.fade-in {
  padding-bottom: 20px;
  font-weight: 600;
  font-style: italic;
}

.offer-block .offer-content-asc .offer-block-content-asc li {
  padding-left: 0 !important;
  margin-left: 0 !important;
}

.offer-block .offer-content-asc .offer-block-content-asc ul li {
  padding-left: 0 !important;
  margin-left: 0 !important;
  list-style: none;
}

span.arrow-asc{
  font-size: 38px;
  font-weight: 700;
}

@media screen and (max-width: 1200px) {
  .offer-price-title-asc {
    font-size: 18px;
  }
  .offer-content-asc .offer-block-title-asc {
    max-width: 100% !important;
  }
  span.arrow-asc {
    font-size: 25px;
    font-weight: 600;
  }
  .offer-button-asc .offer-block-title-asc {
    font-size: 28px;
  }
  .offer-button-asc{
    padding: 15px 5px;
  }
  .offer-content-asc {
    width: 280px;
    padding: 25px 10px;

  }
  .offers-detail-asc{
    width: 200px;
  }
  .offers-detail-asc .offer-price-asc h4 {
    font-size: 12px;
  }
}


@media screen and (max-width: 1000px) {

  .offer-button-asc{
    width: 100%;
  }

  .offer-right-asc {
    padding: 0 0 10px 0;
  }

  .offers-detail-asc{
    margin: 0;
  }

  .offers-container {
    margin-bottom: 10px;
  }

  .cart-shadow {
    position: absolute;
    top: 0px;
    left: -12px !important;
    height: 234px !important;
    width: 20px;
    border-radius: 10px;
    background: #ffffff;
    z-index: 1000 !important;
  }

  .offers-container{
    flex:1;
  }
  div.offer-block .offer_1{
    flex-wrap: wrap;
  }
  .offer-right-asc{
    flex: none;
  }
  .offer-content-asc {
    width: 60%;
  }
  .offers-detail-asc {
    width: 57%;
  }
  .offer-right-asc{
    width: 40%;
  }
}

@media screen and (max-width: 1150px) {
  .offers-container {
    width: 190px;
  }
}

@media screen and (max-width: 850px) {
  .offer-content-asc {
    width: 55%;
    margin-bottom: 15px;
  }
  .offer-right-asc {
    padding: 0 0 10px 10px;
  }
  .offers-detail-asc {
    margin: 0;
  }
  .offers-container {
    margin-bottom: 10px;
    margin-right: 10px;
  }

}

@keyframes wipeToTop {
  from {
    transform: translateY(0);
    opacity: 1;
  }
  to {
    transform: translateY(-100%);
    opacity: 0;
  }
}

.offers-detail-asc.wipe-animation {
  animation: wipeToTop 0.3s forwards;
}

@keyframes swipeFromTop {
  from {
    transform: translateY(-100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

.offers-detail-asc.swipe-in {
  animation: swipeFromTop 0.3s forwards;
}


@media screen and (max-width: 770px) {

  .vc_tta-panel-body .offer-block:last-child .offers-container .cart-shadow {
    height: 25px !important;
  }

  .offer-price-arrow {
    display: inline-block;
    transition: transform 0.3s;
  }

  .offer-price-asc.offer-month-hover .offer-price-arrow {
    transform: rotate(90deg);
  }

  .offer-price-asc.offer-month-hover:hover .offer-price-arrow {
    transform: rotate(90deg);
  }

  .offers-container .offer-price-asc:last-child::after {
    display: none;
  }

  .arrow {
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
  }

  .offers-detail-asc
  .offer-price-asc:first-child{
    margin-top: 20px;
  }

  .cart-shadow {
    width: 100% !important;
    height: 25px !important;
    top: -10px !important;
    left: 0 !important;
  }
  .offer-right-asc .offer-price-asc{
    margin-bottom: 0;
  }

  .offer-button-asc{
    background: white;
  }

  .offer-right-asc, .offers-detail-asc {
    width: 100% !important;
  }

  .offers-container{
    margin-left: 1px !important;
    border-top-right-radius: 0 !important;
    border-top-left-radius: 0 !important;
    border-bottom-right-radius: 10px !important;
    border-bottom-left-radius: 10px !important;
  }

  .offer-right-asc .offer-price-asc{
    width: 100% !important;
  }

  .offer-right-asc {
    width: 100% !important;
    flex: none !important;
    padding: 0;
  }
  .offers-container{
    width: 100%;
    flex: 1;
    margin: 0;
  }

  .offer-button-asc{
    width: 100%;
    border-radius: 0;
  }

  .offer-price-asc{
    border-radius: 0 !important;
  }

  h3.offer-block-title-asc.fade-in{
    display: none !important;
  }

  .offer-block {
    width: 95%;
  }

  .offer-content-asc{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
  }
  .offer-block .offer-image img {
    max-width: 72%;
  }
}



@media screen and (max-width: 450px) {

  .offer-block-content-asc.fade-in{
    text-align: center;
  }

  .vc_custom_1715195876369,
  .vc_custom_1715195886636,
  .vc_custom_1715195896530,
  .vc_custom_1715195908310,
  .vc_custom_1715195917926,
  .vc_custom_1715195926726,
  .vc_custom_1715255254282,
  .vc_custom_1715335476280
  {
    padding-bottom: 250px !important;

  }


  .offers-container .offer-price-asc:last-child::after {
    display: none;
  }

  .small-height {
    height: 140px;
  }


  .offer-button-asc-cart {
    top: 75% !important;
  }
  .plus-logo {
    top: 36% !important;
  }

  .offer-button-asc {
    margin-bottom: 5px;
  }
  span.arrow-asc{
    display: none
  }
  .offer-right-asc {
    width: 100%;
  }
  .offers-detail-asc {
    width: 100%;
  }
  .offers-detail-asc .offer-price-asc h4 {
    font-size: 14px;
  }
  .offer-content-asc{
    min-height: 240px;
  }
  .offer-right-asc, .offers-detail-asc {
    flex: unset !important;
    transition: transform 0.5s ease;
  }
  .offer-right-asc .offer-price-asc {
    width: 98%;
    border-radius: 10px !important;
  }
  .offer-button-asc {
    border-radius: 10px;
  }


}
/* Prodhimet Slider */

.prodhimet-slider-wrapper {
  width: 100vw;  /* Set the width to viewport width to ensure it extends full screen */
  left: 50%;
  right: 50%;
  margin-left: -50vw;
  margin-right: -50vw;

}

.prodhimet-swiper-slide {
  height: auto;
  width: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: unset !important;
  pointer-events: none;
}

.prodhimet-image {
  min-width: 354px;
  min-height: 536px;
  display: block;
}

.prodhimet-slider-wrapper .swiper-wrapper {
  animation: scroll 40s linear infinite;
}

@keyframes scroll {
  0% {
    transform: translate3d(0, 0, 0);
  }
  100% {
    transform: translate3d(-100%, 0, 0);
  }
}

.prodhimet-slider-wrapper .swiper-wrapper {
  animation: scroll 40s linear infinite;
}


@media (max-width: 640px) {

  .prodhimet-slider-wrapper .swiper-wrapper {
    animation: scroll 70s linear infinite;
  }
  .prodhimet-slider-wrapper{
    overflow: hidden;
  }
  .prodhimet-slider-wrapper {
    margin-left: -20px;
    margin-right: -20px;
    width: calc(100% + 40px);
  }
  @keyframes scroll {
    from {
      transform: translateX(-100%);
    }

  }
}

.offers-detail-asc .offer-price-asc {
  border-radius: 0;
}

.offers-detail-asc .offer-price-asc:first-child {
  border-top-right-radius: 10px;
}

.offers-detail-asc .offer-price-asc:last-child {
  border-bottom-right-radius: 10px;
}

.offers-container {
  display: flex;
  overflow: hidden;
  width: 100%;
}

.offer-right-asc, .offers-detail-asc {
  flex: 1;
  transition: transform 0.5s ease;
}


/* ----------------------------------------- */

@keyframes wipeToLeft {
  0% {
    transform: translateX(0);
    opacity: 1;
  }
  100% {
    transform: translateX(-100%);
    opacity: 0;
  }
}

.offers-detail-asc.wipe-animation {
  animation: wipeToLeft 0.3s forwards;
}

@keyframes swipeFromLeft {
  0% {
    transform: translateX(-100%);
    opacity: 0;
  }
  100% {
    transform: translateX(0);
    opacity: 1;
  }
}

.offers-detail-asc.swipe-in {
  animation: swipeFromLeft 0.3s forwards;
}

.offers-detail-asc {
  position: relative;
  z-index: 50;
}


.offers-container {
  width: 240px;
  display: flex;
  justify-content: center;
  background: #A2006A ;
  border-radius: 0 50px 50px 0;
}

.offers-container {
  position: relative;
  display: flex;
}

.offer-right-asc, .offers-detail-asc {
  width: calc(100% - 125px);
}


.cart-shadow {
  position: absolute;
  top: 0;
  left: -10px;
  height: 275px;
  width: 20px;
  border-radius: 10px;
  background: #ffffff;
}

.tring_ott_app .cart-shadow {
  height: 308px;
}

.tring_ott_box_app .cart-shadow {
  height: 332px;
}
.vc_tta-panel-body .offer-block:nth-child(3) .offers-container .cart-shadow {
  height: 284px;
}


.offer-button-asc-cart {
  z-index: 1;
  position: absolute;
  top: 60%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: white;
  font-size: 14px;
}

.plus-logo {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%);
  color: grey;
  background: white;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}

.plus-logo::before {
  content: "+";
  display: block;
  font-size: 25px;
  height: 37px;
}

.offers-container .offer-price-asc {
  position: relative;
}

.offers-container .offer-price-asc::after {
  content: "";
  display: block;
  height: 1px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 8px;
  width: 90%;
  border-bottom: 1px dashed #000;
}

.test-class{
  display: flex;
  width: 100%;
  padding: 8px 23px;
  border-radius: 10px;
  align-items: center;
  justify-content: space-between;
}

.offers-detail-asc .offer-price-asc {
  padding: 6px 10px;
}

.offers-container .offer-price-asc.hide-after::after {
  display: none;
}

.offers-container .offer-price-asc.selected-offer h4.offer-price-title-asc {
  color: white;
}

.vertical-logo {
  height: 35px;
  width: auto;
}

.horizontal-logo {
  height: 25px;
  width: auto;
  max-width: 100%;
  object-fit: contain;
  display: block;

}

.chanels-icon-div {
  align-items: center;
}


/* Shops popup styles */

.popup-shops {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}

h2.popup-shops-title {
  padding-bottom: 30px;
}

.popup-content-shops {
  background-color: #fff;
  border-radius: 10px;
  max-width: 600px;
  width: 100%;
  position: relative;
  text-align: center;
  padding: 40px 0px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.close-btn-shops-popup {
  position: absolute;
  top: -14px;
  right: 10px;
  cursor: pointer;
  font-size: 43px;
}

.popup-shops-title {
  background: linear-gradient(90deg, #FF16FF, #0D3AFF);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

h4.title.shop-title {
  cursor: pointer;
}

@media (max-width: 640px) {

  .popup-content-shops {
    margin: 0 20px;
    padding: 25px 10px;
  }
  h2.popup-shops-title {
    padding-bottom: 20px;
  }
}

.number-text-section {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  margin: 50px 0 50px 0;
;
}

p.number-inside {
  font-size: 30px;
  font-weight: 500;
  margin: 10px;
}

p.text-inside {
  font-weight: 600;
}

@media (max-width: 700px) {
  .number-text-section {
    gap: 10px;
    flex-direction: column;
    margin: 15px 0 50px 0;
  }
}

.header__button.tringuim {
  margin-left: 10px;
}

.simple-offer-image {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.vc_color-info.vc_message_box-3d {
  box-shadow: 0 5px 0 #eaeef0;
}

.vc_message_box-icon {
  display: none;
}

.strisha p {
  margin-top: 0;
  padding: 20px 0;
}

.vc_message_box.vc_message_box-3d.vc_message_box-round.vc_color-info.strisha {
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  background: linear-gradient(to left, #ff01ef 0%, #2905be 100%);
}

a.strisha-link {
  font-size: 27px;
  font-weight: 700;
}

.vc_color-info.vc_message_box-3d {
  box-shadow: -12px 13px 10px 0px #dbdbdb !important;
}

@media (max-width: 800px) {

  .vc_message_box.vc_message_box-3d.vc_message_box-round.vc_color-info.strisha {
    padding: 10px;
  }
  a.strisha-link {
    font-size: 15px;
  }
}

.tv-categories .info-box {
  position: relative;
  overflow: hidden;
}

.tv-categories .info-box-text {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 10px;
  background-color: transparent;
  z-index: 1;
}

.tv-categories .info-box::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 0;
  background: linear-gradient(to top, rgba(230,0,126, 1) 0%, rgba(255, 0, 0, 0) 100%);
  transition: height 0.3s ease-in-out;
  z-index: 0;
}

.tv-categories .info-box:hover::after {
  height: 30%;
}

div#chat-tv {
  transition: all .3s ease;
  opacity: 1;
  width: 60px;
  height: auto;
  display: block;
  position: static;
  text-align: center;
  background: none;
}

#chat-int {
  transition: all .3s ease;
  opacity: 1;
  width: 60px;
  height: auto;
  display: block;
  position: static;
  text-align: center;
  background: none;
  margin-left: -15px;
}

#chat {
  position: fixed;
  z-index: 9999999;
  right: 0px;
  bottom: 10px;
  width: auto;
  height: auto;
  display: block;
  padding-right: 10px;
  padding-bottom: 10px;
}



.chaty-channel-list {
  display: flex;
  position: absolute;
  bottom: 104px;
  right: -18px;
  flex-direction: column;
  align-items: flex-start;
}

/* NEW STYLES */

.slider_prodhimet_emisionet .swiper.home-slider .swiper-slide:before {
  content: "";
  display: block;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 18rem;
  background: linear-gradient(to top, #00004B, transparent);
  opacity: 1;
  transition-property: opacity;
  transition-duration: 1.2s;
  transition-timing-function: ease;
  z-index: 0;
}


.slider_prodhimet_emisionet .swiper-pagination.swiper-pagination-custom.swiper-pagination-horizontal {
  display: none !important;
}

.slider_prodhimet_emisionet .swiper.home-slider .slide-content {
  position: absolute;
  width: 100%;
  top: 90%;
  text-align: center;
  transform: translateY(-50%);
}

.slider_prodhimet_emisionet .slide-title, .slider_prodhimet_emisionet .slide-subtitle {
  color: white !important;
}

.slider_prodhimet_emisionet h2.slide-title {
  font-family: 'Nunito Sans', sans-serif;
  font-weight: 800;
  font-size: 34px !important;
  margin-bottom: 0 !important;
}

.slider_prodhimet_emisionet h3.slide-subtitle {
  font-family: 'Nunito Sans';
  font-size: 16px !important;
  margin-top: 0;
  margin-bottom: 45px !important;
  line-height: 30px;
}

@media (max-width: 500px) {
  .banner-content {
    animation: slide-left 20s linear infinite;
  }

  .slider_prodhimet_emisionet .swiper.home-slider .swiper-slide img {
    object-fit: contain;
    min-height: 0;
  }

  .slider_prodhimet_emisionet .slide-content .slide-title, .slider_prodhimet_emisionet h3.slide-subtitle{
    display: none;
  }

  .slider_prodhimet_emisionet .swiper.home-slider .swiper-slide:before {
    height: 3rem;
  }
  .slider_prodhimet_emisionet .swiper-pagination.swiper-pagination-custom.swiper-pagination-horizontal {
    display: block !important;
  }
}

.single-champions-card .simple-offer-card {
  background: white;
  max-width: 400px;
  padding: 0;
}

p.title-champions-card {
  margin: 0;
  padding: 0 20px;
  font-size: 21px;
  font-family: 'Nunito Sans';
  font-weight: 700;
}

p.subtitle-champions-card {
  padding: 0 20px;
  margin: 0;
  font-size: 20px;
}

.single-champions-card .simple-offer-card {
  min-height: 410px;
}

@media (max-width: 870px) {
  .chaty-channel-list {
    bottom: 115px;
  }
}

@media (max-width: 1200px) {
  p.title-champions-card {
    font-size: 17px;
  }
  p.subtitle-champions-card {
    font-size: 16px;
  }
  .single-champions-card .simple-offer-card {
    min-height: 320px;
  }
}

@media (max-width: 450px) {
  .champion-section-mob h2.title{
    top: 40px;
  }
  .single-champions-card .simple-offer-card {
    max-width: 300px;
  }
  .single-champions-card .simple-offer-card {
    min-height: 300px;
  }
  p.title-champions-card {
    font-size: 16px;
  }
  p.subtitle-champions-card {
    font-size: 14px;
  }
}

@keyframes popupFadeIn {
  from {
    opacity: 0;
    transform: scale(0.8);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

.video-popup {
  display: none;
  position: fixed;
  z-index: 9999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: rgba(0, 0, 0, 0.7);
  justify-content: center;
  align-items: center;
}

.video-popup-content {
  position: relative;
  width: 70%;
  background: black;
  border-radius: 10px;
  text-align: center;
  opacity: 0;
  transform: scale(0.8);
  animation: popupFadeIn 0.5s forwards;
}
@media (max-width: 1000px) {
  .video-popup-content {
    width: 90%;
  }
}

.embed-container {
  background: black;
}

.video-popup video,
.video-popup img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.close-popup {
  position: absolute;
  top: 10px;
  right: 25px;
  color: #000;
  font-size: 35px;
  font-weight: bold;
  cursor: pointer;
}

.close-popup:hover,
.close-popup:focus {
  color: red;
}

.sticky-banner-ads .add-left .add-title {
  font-size: 12px;
  color: #FF47BF;
  font-weight: bold;
  letter-spacing: 1px;
}

.banner-content {
  display: flex;
  width: 200%;
  animation: slide-left 40s linear infinite;
}

@keyframes slide-left {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%);
  }
}

/*.sticky-banner-ads {*/
/*  overflow: hidden;*/
/*  white-space: nowrap;*/
/*  position: fixed;*/
/*  top: 135px;*/
/*  width: 100%;*/
/*  background: #000000;*/
/*  align-items: center;*/
/*  padding: 5px 0;*/
/*  z-index: 9;*/
/*}*/

/*body.single-press_room .sticky-banner-ads {*/
/*  top: 79px !important;*/
/*}*/

/*body.page-id-3 .sticky-banner-ads {*/
/*  top: 79px !important;*/
/*}*/

/*body.page-id-4277 .sticky-banner-ads {*/
/*  top: 79px !important;*/
/*}*/

/*body.page-id-4274 .sticky-banner-ads {*/
/*  top: 79px !important;*/
/*}*/

/*body.single-production .sticky-banner-ads {*/
/*  top: 79px !important;*/
/*}*/

/*body.home .sticky-banner-ads {*/
/*  top: 79px !important;*/
/*}*/
/*body.page-template-template-iptv .sticky-banner-ads {*/
/*  top: 79px !important;*/
/*}*/
/*body.page-id-873 .sticky-banner-ads {*/
/*  top: 79px !important;*/
/*}*/
/*body.page-id-881 .sticky-banner-ads {*/
/*  top: 79px !important;*/
/*}*/
/*body.page-id-3705 .sticky-banner-ads {*/
/*  top: 79px !important;*/
/*}*/
/*body.page-id-383 .sticky-banner-ads {*/
/*  top: 79px !important;*/
/*}*/
/*body.page-id-1236 .sticky-banner-ads {*/
/*  top: 79px !important;*/
/*}*/
/*body.page-id-377 .sticky-banner-ads {*/
/*  top: 79px !important;*/
/*}*/
/*body.page-id-381 .sticky-banner-ads {*/
/*  top: 79px !important;*/
/*}*/
/*body.page-id-379 .sticky-banner-ads {*/
/*  top: 79px !important;*/
/*}*/
/*body.page-id-385 .sticky-banner-ads {*/
/*  top: 79px !important;*/
/*}*/
/*body.page-id-733 .sticky-banner-ads {*/
/*  top: 79px !important;*/
/*}*/
/*body.page-id-1981 .sticky-banner-ads {*/
/*  top: 79px !important;*/
/*}*/
/*body.single-job_listing .sticky-banner-ads {*/
/*  top: 79px !important;*/
/*}*/

/*body.page-id-4295 .sticky-banner-ads {*/
/*  top: 79px !important;*/
/*}*/

/*sports page / video popup button */


.vc_btn3.vc_btn3-size-md.vc_btn3-style-outline {
  padding-left: 50px !important;
  padding-right: 50px !important;
}

.embeded-iframe{
  height: 500px;
  width: 100%;
}

@media (max-width: 500px) {
  .sticky-banner-ads .add-left .add-title {
    font-size: 11px;
  }
  .banner-content {
    animation: slide-left 10s linear infinite;
  }
  /*body.home .sticky-banner-ads {*/
  /*  top: 72px !important;*/
  /*}*/
  /*body.page-template-template-iptv .sticky-banner-ads {*/
  /*  top: 72px !important;*/
  /*}*/
  /*body.page-id-873 .sticky-banner-ads {*/
  /*  top: 72px !important;*/
  /*}*/
  /*body.page-id-881 .sticky-banner-ads {*/
  /*  top: 72px !important;*/
  /*}*/
  /*body.page-id-3705 .sticky-banner-ads {*/
  /*  top: 72px !important;*/
  /*}*/
  /*body.page-id-383 .sticky-banner-ads {*/
  /*  top: 72px !important;*/
  /*}*/
  /*body.page-id-1236 .sticky-banner-ads {*/
  /*  top: 72px !important;*/
  /*}*/
  /*body.page-id-377 .sticky-banner-ads {*/
  /*  top: 72px !important;*/
  /*}*/
  /*body.page-id-381 .sticky-banner-ads {*/
  /*  top: 72px !important;*/
  /*}*/
  /*body.page-id-379 .sticky-banner-ads {*/
  /*  top: 72px !important;*/
  /*}*/
  /*body.page-id-385 .sticky-banner-ads {*/
  /*  top: 72px !important;*/
  /*}*/
  /*body.page-id-733 .sticky-banner-ads {*/
  /*  top: 72px !important;*/
  /*}*/
  /*body.page-id-1981 .sticky-banner-ads {*/
  /*  top: 72px !important;*/
  /*}*/
  /*body.single-job_listing .sticky-banner-ads {*/
  /*  top: 72px !important;*/
  /*}*/
  /*body.page-id-4078 .sticky-banner-ads {*/
  /*  top: 72px !important;*/
  /*}*/
  #forminator-module-4080 {
    display: block !important;
  }
  #forminator-module-4081 {
    display: block !important;
  }

  /*.sticky-banner-ads {*/
  /*  top: 125px;*/
  /*}*/
}
.vc_row.ofertat-desktop-banner.vc_custom_1723450761609{
  background-position: 75% center !important;
}

.offer-3-items .test-class {
  padding: 18px 23px;
}

.vc_tta-tabs-container {
  width: 100vw !important;
  margin: 0 auto !important;
  padding: 0 !important;
}

.vc_tta-tabs-container {
  width: 100% !important;
}

.page-template-template-job-application-form .sticky-banner-ads {
  display: none;
}

body.page-id-5078 .slide-content {
  position: absolute;
  bottom: 50%;
  right: 50%;
  color: #ffffff;
  z-index: 3;
}

body.page-id-5191 .swiper-slide img,
body.page-id-5167 .swiper-slide img,
body.page-id-5176 .swiper-slide img,
body.page-id-5162 .swiper-slide img,
body.page-id-5078 .swiper-slide img,
body.page-id-5140 .swiper-slide img,
body.page-id-5129 .swiper-slide img,
body.page-id-5154 .swiper-slide img
{
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

body.page-id-5078 .swiper-slide::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(to right, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0.7) 50%, rgba(0, 0, 0, 0) 100%);
  z-index: 2;
  pointer-events: none;
}

.custom-image-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
  max-width: 100%;
  padding: 0 10px;
  margin: 0 auto;
}

.custom-grid-row {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  justify-content: space-between;
}

.custom-grid-item {
  text-align: left;
  width: calc(25% - 15px);
  box-sizing: border-box;
}

.custom-grid-item img {
  width: 100%;
  height: auto;
  object-fit: cover;
  border-radius: 8px;
}

.custom-grid-caption {
  margin-top: 10px;
  font-size: 14px;
  color: #333;
  text-align: left;
}

.business-page-card-row {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding: 20px 0;
  max-width: 1200px;
  margin: auto;
}

.business-page-card {
  flex: 1 1 calc(25% - 20px);
  box-sizing: border-box;
  text-align: center;
}

.business-card {
  background-color: #ffffff;
  flex: 1 1 calc(20% - 16px);
  border-radius: 10px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
  width: 23%;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}


.business-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 6px 10px rgba(0, 0, 0, 0.2);
}


.business-card-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #A2006A;
}


.business-card-divider {
  height: 1px;
  background-color: #A2006A;
  margin: 0 auto 15px;
  width: 80%;
}


.business-card-content {
  font-size: 14px;
  color: #555555;
  line-height: 1.6;
}

.business-suport-text {
  max-width: 900px;
  margin: auto;
}

.why-tring-business {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 20px;
  display: flex;
  flex-direction: column;
  gap: 30px;
}


.why-tring-row {
  display: flex;
  justify-content: space-between;
  gap: 20px;
}


.why-tring-section {
  flex: 1;
  text-align: left;
}


.why-tring-title {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #333333;
}


.why-tring-description {
  font-size: 14px;
  line-height: 1.6;
  color: #555555;
}

/*.page-id-5191 .sticky-banner-ads,*/
/*.page-id-5176 .sticky-banner-ads,*/
/*.page-id-5167 .sticky-banner-ads,*/
/*.page-id-5078 .sticky-banner-ads,*/
/*.page-id-5162 .sticky-banner-ads,*/
/*.page-id-5129 .sticky-banner-ads,*/
/*.page-id-5140 .sticky-banner-ads,*/
/*.page-id-5154 .sticky-banner-ads{*/
/*  top: 111px;*/
/*}*/


.text-heading.a-center.client-support-heading {
  padding: 20px 0;
}

p.why-tring-description {
  max-width: 450px;
}

@media (max-width: 1024px) {
  .custom-grid-item {
    width: calc(33.333% - 15px);
  }
  .business-card {
    flex: 1 1 calc(33.333% - 20px);
  }
}

@media (max-width: 768px) {
  .custom-grid-item {
    width: calc(50% - 15px);
  }
  .offer-block-content.hdv {
    text-align: center;
  }
  .business-card {
    flex: 1 1 calc(50% - 20px);
  }
  .why-tring-row {
    flex-direction: column;
  }
}

@media (max-width: 480px) {
  .custom-item {
    width: 100%;
  }
  .sticky-banner-ads img {
    max-width: 240px;
  }
  .business-card {
    flex: 1 1 100%;
  }
  .business-page-card-row {
    gap: 50px;
  }
  .custom-grid-caption {
    font-size: 12px;
  }
}
.business-section {
  max-width: 1080px;
  margin: auto !important;
  padding: 0 25px;
}

.pk-ts-s {
  border: 1px solid #ffffff;
  border-radius: 10px;
  margin: 10px 0;
  padding: 10px 12px;
}
.pts-sl .swiper-button-next:after, .pts-sl .swiper-button-prev:after {
  font-size: 20px;
}

.inf-pkst {
  background: #f7f4f4;
  padding: 30px;
  margin-top: 30px;
  border-radius: 20px;
  max-width: 800px;
  margin: auto;
  margin-top: 49px;
  color: #484848;
}
ul.pts-ul {
  display: flex;
  flex-direction: column;
  gap: 15px;
  padding: 0 20px;
}

.offer-right-image {
  position: relative;
  display: inline-block;
  width: 335px;
  height: 100px;
}

.offer-price-image-default,
.offer-price-image-hover {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  transition: opacity 0.3s ease-in-out;
  object-fit: cover;
}

.offer-price-image-default {
  opacity: 1;
  z-index: 1;
}

.offer-price-image-hover {
  opacity: 0;
  z-index: 2;
}


.offer-right-image:hover .offer-price-image-hover {
  opacity: 1;
}

.offer-right-image:hover .offer-price-image-default {
  opacity: 0;
}

.offer-right.hdv {
  width: 400px;
}

.offer-price.im-hd-ct {
  align-items: center;
}

.offer-block.hds {
  transition: box-shadow 0.3s ease-in-out;
}


ul.hdv-ul {
  display: flex;
  flex-direction: column;
}

h3.offer-block-title.hdv {
  max-width: 250px;
}
span.offer-button-title.hdv {
  font-size: 18px !important;
}



.hdv-mlg img {
  height: 125px;
  width: 394px;
  margin: auto;
}


.sticky-banner-ads .add-right {
  display: flex;
  flex-direction: column;

}

.sticky-banner-ads .add-right .add-price-months {
  display: flex;
  gap: 5px;
  align-items: baseline;
  justify-content: center;
}

.sticky-banner-ads .add-left {
  display: flex;
  align-items: start;
  justify-content: center;
}


.sticky-banner-ads .add-left .add-subtitle {
  font-size: 15px;
  font-family: 'Nunito Sans';
  font-weight: 600;
}

.add-left img {
  height: 25px;
}

.sticky-banner-ads .add-left .add-title {
  font-size: 25px;
  color: #A2006A;
  font-weight: bold;
}

.sticky-banner-ads .add-right .add-price {
  font-size: 25px;
  font-weight: bold;
  letter-spacing: 0.01em;
  text-transform: uppercase;
  background: #A2006A;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-align: center;
}

.sticky-banner-ads .add-right .add-months {
  font-size: 20px;
  font-weight: 700;
}

.sticky-banner-ads .add-right .add-btn {
  width: 100%;
  padding: 5px 0;
  /*background: linear-gradient(90deg, #FF16FF, #0D3AFF);*/
  background: #A2006A;
  color: white;
  border-radius: 20px;
  font-size: 16px;
  font-weight: 400;
  text-align: center;
  cursor: pointer;
}



@media (max-width: 870px) {
  .sticky-banner-ads .add-left {
    align-items: start;
    gap: 10px;
    flex-direction: column;
  }

  .sticky-banner-ads .add-right .add-btn {
    font-size: 13px;
    padding-bottom: 5px;
  }
  .sticky-banner-ads .add-left .add-title {
    font-size: 16px ;
    max-width: 250px;
  }
  .sticky-banner-ads .add-right .add-price {
    font-size: 20px;
  }
  .sticky-banner-ads .add-right .add-months {
    font-size: 12px;
  }
  .sticky-banner-ads .add-left .add-subtitle {
    font-size: 13px ;
  }
  .sticky-banner-ads img {
    height: 25px !important;
  }
  .sticky-banner-ads{
    padding: 20px 15px !important;
  }
  .sticky-banner-ads .add-right .add-price-months{
    padding-bottom: 10px;
  }
  .chaty-channel-list {
    bottom: 222px;
  }
  #chat {
    bottom: 115px;
  }
}
.ott-app .cart-shadow {
  /*height: 285px !important;*/
  height: 100%;
}
.box-app .cart-shadow {
  /*height: 332px;*/
  height: 100%;
}
.tok-st .cart-shadow {
  /*height: 270px;*/
  height: 100%;
}
.tok-ex .cart-shadow {
  /*height: 271px;*/
  height: 100%;
}
.sat-st .cart-shadow {
  /*height: 272px;*/
  height: 100%;
}
.sat-ext .cart-shadow {
  /*height: 271px;*/
  height: 100%;
}
.wide-banner-style h3.info-box-title {
  font-family: 'Nunito Sans' !important;
}
.asc-shadow .cart-shadow {
  /*height: 375px;*/
  height: 100%;
}
.feb .selected-offer > .test-class {
  background: #A2006A;
}

.feb {
  border: 2px dashed #A2006A;
}
.offer-block.hds{
  border: 2px dashed #A2006A;
}

.ott-app-n .cart-shadow{
  /*height: 310px;*/
  height: 100%;
}


@media (max-width: 523px) {
  .offer-block {
    flex-wrap: nowrap;
  }
  .offer-price.im-hd-ct {
    max-width: 40px;
    margin: auto;
  }
  .offer-block .offer-right .offer-button {
    width: 85%;
    margin: auto;
  }
}

.sticky-banner.fixed-bottom {
  position: fixed;
  left: 0; right: 0; bottom: 0;
  z-index: 9999;
  display: flex;
  justify-content: center;
  padding: 0 12px;
}

.sticky-banner__container {
  width: 100%;
  max-width: 925px;
  height: 72px;
  background: linear-gradient(90deg, #0066CC 0%, #E6007E 100%);
  border-top-left-radius: 30px;
  border-top-right-radius: 30px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 16px;
  box-shadow: 0 4px 20px rgba(0,0,0,.25);
  column-gap: 16px;
}

.sticky-banner__left,
.sticky-banner__center,
.sticky-banner__right {
  display: flex;
  align-items: center;
}

.sticky-banner__left { min-width: 0; }
.sticky-banner__title {
  font-weight: 700;
  font-size: 16px;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.sticky-banner__center { justify-content: center; }
.sticky-banner__btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 18px;
  border-radius: 999px;
  background: #ffffff;
  color: #E6007E;
  font-weight: 700;
  font-size: 15px;
  text-decoration: none;
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}
.sticky-banner__btn:hover { transform: translateY(-2px); }
.sticky-banner__btn:active { transform: translateY(0); opacity: .9; }

.sticky-banner__right { justify-content: flex-end; gap: 12px; }
.sticky-banner__icon { color: #fff; opacity: .9; display: inline-flex; }
.sticky-banner__icon:hover { opacity: 1; }

.sticky-banner__icon img {
  width: 18px;
  height: 18px;
  display: block;
  filter: brightness(0) invert(1);
  transition: filter 0.2s ease, transform 0.2s ease;
}
.sticky-banner__icon:hover img {
  filter: none;
  transform: scale(1.1);
}

@media (max-width: 900px) {
  .sticky-banner__container{
    flex-direction: column;
    gap: 10px;
    height: auto;
    padding: 10px;
  }
  .sticky-banner__btn {
    padding:5px 14px;
    font-size: 12px;
  }
  .sticky-banner__title { font-size: 12px; }
  .sticky-banner__icon img{
    width: 15px;
    height: 15px;
  }
}

.hero-logo {
  width: 200px;
  height: 70px;
  margin: auto;
  padding: 70px 0 90px 0;
}

.sportifikohu-hero img.vc_single_image-img.attachment-medium {
  max-width: 600px;
  max-height: 190px;
  margin: auto;
}

.hero-left-btn button.vc_general.vc_btn3.vc_btn3-size-md.vc_btn3-shape-rounded.vc_btn3-style-modern.vc_btn3-color-grey {
  background: #BA0066;
  color: white;
  border: none;
  border-radius: 20px;
  gap: 20px !important;
  margin: 10px;
}

.hero-right-btn button {
  background: transparent !important;
  color: white !important;
  border-radius: 20px !important;
}
.homepage-herosection {
  height: 90vh;
}

h2.vc_custom_heading.offer-heading {
  font-weight: bold;
}

.offer-champs {
  background: white;
  border-radius: 55px;
  margin: 20px;
  padding: 30px 0;
}

.sportifikohu-gradient {
  background-image: linear-gradient(90deg, #FF16FF 0%, #0E3AFF 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

img.offer-price-image.offer-price-image-default {
  object-fit: contain;
}

.hero-left-green button.vc_general.vc_btn3.vc_btn3-size-md.vc_btn3-shape-rounded.vc_btn3-style-modern.vc_btn3-color-grey {
  background: #22C55E;
  border-color: #22C55E;
  color: white;
  padding-left: 50px;
  padding-right: 50px;
  border-radius: 20px
}

#forminator-module-6840{
  position: relative;
  max-width: 940px;
  margin: 0 auto;
  padding: 28px 24px;
  border-radius: 18px;
  background: rgba(255,255,255,0.12);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.35);
  box-shadow: 0 10px 30px rgba(0,0,0,0.18);
  overflow: hidden;
}
#forminator-module-6840::before{
  content:"";
  position:absolute; inset:0; pointer-events:none;
  border-radius: inherit;
  background: linear-gradient(180deg, rgba(255,255,255,0.22) 0%, rgba(255,255,255,0.06) 100%);
}

#forminator-module-6840 .forminator-row{ margin-bottom:16px; }
#forminator-module-6840 .forminator-row-last{ margin-bottom:0; }

#forminator-module-6840 .forminator-input{
  width:100%;
  height:56px;
  padding:0 18px;
  border-radius:14px;
  border:1px solid white;
  background: rgba(255,255,255,0.16);
  color:#fff;
  box-shadow: inset 0 1px 0 rgba(255,255,255,0.18);
  transition: border-color .15s ease, box-shadow .15s ease, background-color .15s ease;
}
#forminator-module-6840 .forminator-input::placeholder{
  color:rgba(255,255,255,0.75);
}
#forminator-module-6840 .forminator-input:focus{
  outline:none;
  border-color: rgba(255,255,255,0.85);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.15);
  background: rgba(255,255,255,0.20);
}

#forminator-module-6840 .forminator-field{ background: transparent; border: 0; }

#forminator-module-6840 .forminator-button{
  width:100%;
  height:54px;
  border-radius:14px;
  background:#fff;
  color:#0E3AFF;
  font-weight:700;
  border:none;
  box-shadow:0 6px 22px rgba(0,0,0,0.18);
  transition: transform .15s ease, box-shadow .15s ease, opacity .15s ease;
}
#forminator-module-6840 .forminator-button:hover{ transform: translateY(-1px); }
#forminator-module-6840 .forminator-button:active{ transform: translateY(0); opacity:.95; }

@media (max-width: 640px){
  #forminator-module-6840{ padding:22px 18px; border-radius:16px; }
  #forminator-module-6840 .forminator-input{ height:52px; }
  #forminator-module-6840 .forminator-button{ height:50px; }
}

@supports not ((-webkit-backdrop-filter: blur(1px)) or (backdrop-filter: blur(1px))){
  #forminator-module-6840{ background: rgba(255,255,255,0.18); }
}

#forminator-module-6840 {
  position: relative;
  max-width: 750px;
  margin: 40px auto 0;
  padding: 28px 24px !important;
  border-radius: 18px !important;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(14px);
  border: 1px solid rgba(255, 255, 255, 0.35);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
  overflow: hidden;
}


.main-offer-box {
  display: flex;
  align-items: center;
  justify-content: center;
  max-width: 400px;
}
.main-offer-box .offer-button {
  background: white !important;
}
.main-offer-box .offer-block .offer-right{
  align-items: center;
}
.main-offer-box .offer-price-value {
  text-align: center;
}

.main-offer-box span.offer-button-title.hdv {
  font-size: 11px !important;
  margin: 10px 0 !important;
}

.offer-left,
.offer-right {
  flex: 1 1 0;
}

.offer-left {
  max-width: 420px;
}

.offer-devices-selector {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.device-option {
  position: relative;
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 14px 16px 14px 44px;
  border-radius: 10px;
  cursor: pointer;
  user-select: none;
  background: #FAFAFA;
}

.device-option input {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  opacity: 0;
  pointer-events: none;
}

.device-option .device-radio {
  position: absolute;
  left: 14px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  border: 2px solid #A2006A;
  border-radius: 50%;
  box-sizing: border-box;
}

.device-option .device-radio::after {
  content: "";
  position: absolute;
  inset: 3px;
  border-radius: 50%;
  background: transparent;
}

.device-option input:checked + .device-radio {
  border-color: #A2006A;
}

.device-option input:checked + .device-radio::after {
  background: #A2006A;
}

.device-copy strong {
  display: inline-block;
  line-height: 1.2;
}
.device-copy small {
  display: inline-block;
  opacity: .85;
}

/* Right column bits; optional tidy */
.offer-price-value {
  font-size: 30px;
  font-weight: 300;
}
.offer-button .hdbtn {
  display: inline-block;
  text-decoration: none;
}

/* Mobile: stack columns */
@media (max-width: 768px) {
  .main-offer-box {
    padding: 0 10px 25px 10px;
  }
  .offer-left {
    max-width: none;
  }
}
