@charset "UTF-8";
/*----------  base float
------------------------------------------------------------------------------*/
/*----------  Text Overflow
------------------------------------------------------------------------------*/
/*---------- horizontal align
------------------------------------------------------------------------------*/
/* Button styles  gradients & shadows */
@-webkit-keyframes bounce {
  0%, 100%, 20%, 50%, 80% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-0.3em);
    -ms-transform: translateY(-0.3em);
    transform: translateY(-0.3em);
  }
  60% {
    -webkit-transform: translateY(-0.15em);
    -ms-transform: translateY(-0.15em);
    transform: translateY(-0.15em);
  }
}
@-moz-keyframes bounce {
  0%, 100%, 20%, 50%, 80% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-0.3em);
    -ms-transform: translateY(-0.3em);
    transform: translateY(-0.3em);
  }
  60% {
    -webkit-transform: translateY(-0.15em);
    -ms-transform: translateY(-0.15em);
    transform: translateY(-0.15em);
  }
}
@-o-keyframes bounce {
  0%, 100%, 20%, 50%, 80% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-0.3em);
    -ms-transform: translateY(-0.3em);
    transform: translateY(-0.3em);
  }
  60% {
    -webkit-transform: translateY(-0.15em);
    -ms-transform: translateY(-0.15em);
    transform: translateY(-0.15em);
  }
}
@keyframes bounce {
  0%, 100%, 20%, 50%, 80% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-0.3em);
    -ms-transform: translateY(-0.3em);
    transform: translateY(-0.3em);
  }
  60% {
    -webkit-transform: translateY(-0.15em);
    -ms-transform: translateY(-0.15em);
    transform: translateY(-0.15em);
  }
}
@-o-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
@-moz-keyframes spin {
  from {
    -moz-transform: rotate(0deg);
  }
  to {
    -moz-transform: rotate(360deg);
  }
}
@-webkit-keyframes spin {
  from {
    -webkit-transform: rotate(0deg);
  }
  to {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes checkbox-check {
  0% {
    width: 0;
    height: 0;
    border-color: #fff;
    -webkit-transform: translate3d(0, 0, 0) rotate(45deg);
  }
  33% {
    width: 0.5em;
    height: 0;
    -webkit-transform: translate3d(0, 0, 0) rotate(45deg);
  }
  100% {
    width: 0.5em;
    height: 0.9em;
    border-color: #fff;
    -webkit-transform: translate3d(0, -0.9em, 0) rotate(45deg);
  }
}
@-moz-keyframes checkbox-check {
  0% {
    width: 0;
    height: 0;
    border-color: #fff;
    -moz-transform: translate3d(0, 0, 0) rotate(45deg);
  }
  33% {
    width: 0.5em;
    height: 0;
    -moz-transform: translate3d(0, 0, 0) rotate(45deg);
  }
  100% {
    width: 0.5em;
    height: 0.9em;
    border-color: #fff;
    -moz-transform: translate3d(0, -0.9em, 0) rotate(45deg);
  }
}
@keyframes checkbox-check {
  0% {
    width: 0;
    height: 0;
    border-color: #fff;
    transform: translate3d(0, 0, 0) rotate(45deg);
  }
  33% {
    width: 0.5em;
    height: 0;
    transform: translate3d(0, 0, 0) rotate(45deg);
  }
  100% {
    width: 0.5em;
    height: 0.9em;
    border-color: #fff;
    transform: translate3d(0, -0.9em, 0) rotate(45deg);
  }
}
@-webkit-keyframes checkbox-check-orange {
  0% {
    width: 0;
    height: 0;
    border-color: var(--brand-color-1);
    -webkit-transform: translate3d(0, 0, 0) rotate(45deg);
  }
  33% {
    width: 0.5em;
    height: 0;
    -webkit-transform: translate3d(0, 0, 0) rotate(45deg);
  }
  100% {
    width: 0.5em;
    height: 0.9em;
    border-color: var(--brand-color-1);
    -webkit-transform: translate3d(0, -0.9em, 0) rotate(45deg);
  }
}
@-moz-keyframes checkbox-check-orange {
  0% {
    width: 0;
    height: 0;
    border-color: var(--brand-color-1);
    -moz-transform: translate3d(0, 0, 0) rotate(45deg);
  }
  33% {
    width: 0.5em;
    height: 0;
    -moz-transform: translate3d(0, 0, 0) rotate(45deg);
  }
  100% {
    width: 0.5em;
    height: 0.9em;
    border-color: var(--brand-color-1);
    -moz-transform: translate3d(0, -0.9em, 0) rotate(45deg);
  }
}
@keyframes checkbox-check-orange {
  0% {
    width: 0;
    height: 0;
    border-color: var(--brand-color-1);
    transform: translate3d(0, 0, 0) rotate(45deg);
  }
  33% {
    width: 0.5em;
    height: 0;
    transform: translate3d(0, 0, 0) rotate(45deg);
  }
  100% {
    width: 0.5em;
    height: 0.9em;
    border-color: var(--brand-color-1);
    transform: translate3d(0, -0.9em, 0) rotate(45deg);
  }
}
@-webkit-keyframes checkbox-check-green {
  0% {
    width: 0;
    height: 0;
    border-color: var(--brand-color-1);
    -webkit-transform: translate3d(0, 0, 0) rotate(45deg);
  }
  33% {
    width: 0.5em;
    height: 0;
    -webkit-transform: translate3d(0, 0, 0) rotate(45deg);
  }
  100% {
    width: 0.5em;
    height: 0.9em;
    border-color: var(--brand-color-1);
    -webkit-transform: translate3d(0, -0.9em, 0) rotate(45deg);
  }
}
@-moz-keyframes checkbox-check-green {
  0% {
    width: 0;
    height: 0;
    border-color: var(--brand-color-1);
    -moz-transform: translate3d(0, 0, 0) rotate(45deg);
  }
  33% {
    width: 0.5em;
    height: 0;
    -moz-transform: translate3d(0, 0, 0) rotate(45deg);
  }
  100% {
    width: 0.5em;
    height: 0.9em;
    border-color: var(--brand-color-1);
    -moz-transform: translate3d(0, -0.9em, 0) rotate(45deg);
  }
}
@keyframes checkbox-check-green {
  0% {
    width: 0;
    height: 0;
    border-color: var(--brand-color-1);
    transform: translate3d(0, 0, 0) rotate(45deg);
  }
  33% {
    width: 0.5em;
    height: 0;
    transform: translate3d(0, 0, 0) rotate(45deg);
  }
  100% {
    width: 0.5em;
    height: 0.9em;
    border-color: var(--brand-color-1);
    transform: translate3d(0, -0.9em, 0) rotate(45deg);
  }
}
@-webkit-keyframes checkbox-check-green-b2b {
  0% {
    width: 0;
    height: 0;
    border-color: var(--brand-color-1);
    -webkit-transform: translate3d(0, 0, 0) rotate(45deg);
  }
  33% {
    width: 0.5em;
    height: 0;
    -webkit-transform: translate3d(0, 0, 0) rotate(45deg);
  }
  100% {
    width: 0.5em;
    height: 0.9em;
    border-color: var(--brand-color-1);
    -webkit-transform: translate3d(0, -0.9em, 0) rotate(45deg);
  }
}
@-moz-keyframes checkbox-check-green-b2b {
  0% {
    width: 0;
    height: 0;
    border-color: var(--brand-color-1);
    -moz-transform: translate3d(0, 0, 0) rotate(45deg);
  }
  33% {
    width: 0.5em;
    height: 0;
    -moz-transform: translate3d(0, 0, 0) rotate(45deg);
  }
  100% {
    width: 0.5em;
    height: 0.9em;
    border-color: var(--brand-color-1);
    -moz-transform: translate3d(0, -0.9em, 0) rotate(45deg);
  }
}
@keyframes checkbox-check-green-b2b {
  0% {
    width: 0;
    height: 0;
    border-color: var(--brand-color-1);
    transform: translate3d(0, 0, 0) rotate(45deg);
  }
  33% {
    width: 0.5em;
    height: 0;
    transform: translate3d(0, 0, 0) rotate(45deg);
  }
  100% {
    width: 0.5em;
    height: 0.9em;
    border-color: var(--brand-color-1);
    transform: translate3d(0, -0.9em, 0) rotate(45deg);
  }
}
@keyframes checkbox-check-white {
  0% {
    width: 0;
    height: 0;
    border-color: #fff;
    transform: translate3d(0, 0, 0) rotate(45deg);
  }
  33% {
    width: 0.5em;
    height: 0;
    transform: translate3d(0, 0, 0) rotate(45deg);
  }
  100% {
    width: 0.5em;
    height: 0.9em;
    border-color: #fff;
    transform: translate3d(0, -0.9em, 0) rotate(45deg);
  }
}
.icomoon-iptv:before {
  content: "";
}
.icomoon-icon-1-01:before {
  content: "";
}
.icomoon-icon-2-01:before {
  content: "";
}
.icomoon-check-02:before {
  content: "";
}
.icomoon-icon-4-01:before {
  content: "";
  color: var(--brand-color-1);
}
.icomoon-icon-2-01, .icomoon-iptv {
  cursor: pointer;
}
.simple-price-container {
  margin: 1em 0 3em;
}
@media (min-width: 641px) {
  .simple-price-container {
    display: -webkit-box;
    /* OLD - iOS 6-, Safari 3.1-6 */
    display: -moz-box;
    /* OLD - Firefox 19- (buggy but mostly works) */
    display: -ms-flexbox;
    /* TWEENER - IE 10 */
    display: -webkit-flex;
    /* NEW - Chrome */
    display: flex;
    /* NEW, Spec - Opera 12.1, Firefox 20+ */
    justify-content: center;
  }
}
@media (max-width: 640px) {
  .simple-price-container {
    text-align: center;
    width: calc(100% + 2em);
    left: -1em;
    position: relative;
  }
}
.price-block {
  width: 25%;
  text-align: center;
  margin: 0 1.2em;
  position: relative;
  border-radius: 12px;
  background-color: #f7f7f7;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.price-block .application-pdf a {
  width: fit-content;
  padding-left: 0;
  margin: 0 auto;
  cursor: pointer;
}
.price-block .application-pdf a:before {
  content: unset;
}
.price-block .application-pdf i:before {
  content: "";
  font-family: "Zeag";
  font-weight: normal;
  font-size: 1.35em;
  color: inherit !important;
  margin-right: 0.5em;
}
.price-block ul {
  width: 100%;
  margin-bottom: 0.5em;
}
.price-block li {
  padding: 1em;
  border-bottom: 1px solid #ededed;
  line-height: 1.2;
  font-size: 0.85em;
  color: #595959;
}
.price-block li:last-of-type {
  border-bottom: none;
}
.price-block h4 {
  background: var(--brand-color-1);
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
  color: var(--hightlight-color);
  line-height: 1.25;
  font-size: 1em;
  padding: 1em 0.85em;
}
.price-block h4 strong {
  display: block;
  color: #fff;
}
.price-block > a {
  padding: 1em 0.85em;
  display: block;
  color: #fff;
  position: relative;
  clear: both;
  margin-top: auto;
  left: 0;
  width: 100%;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  background-color: var(--button-color-start);
  background-image: -webkit-linear-gradient(right, var(--button-color-end), var(--button-color-start));
  background-image: -moz-linear-gradient(right, var(--button-color-end), var(--button-color-start));
  background-image: -o-linear-gradient(right, var(--button-color-end), var(--button-color-start));
  background-image: -ms-linear-gradient(right, var(--button-color-end), var(--button-color-start));
  background-image: linear-gradient(to left, var(--button-color-end), var(--button-color-start));
}
.price-block > a strong {
  color: #fff;
}
.price-block > a span {
  z-index: 5;
  position: relative;
  display: block;
  color: #fff;
  text-transform: uppercase;
}
.price-block > a:before {
  position: absolute;
  background: var(--brand-color-1-variant);
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  transition: all 0.3s ease-in-out;
  opacity: 0;
  content: "";
  z-index: 0;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}
.price-block > a:hover:before {
  opacity: 1;
}
.price-block.have-button {
  padding-bottom: 3em;
}
@media (min-width: 801px) {
  .price-block:first-of-type {
    margin-left: 0;
  }
  .price-block:last-of-type {
    margin-right: 0;
  }
  .price-block:only-child {
    margin-right: auto;
  }
}
@media (max-width: 800px) {
  .price-block {
    margin: 0 0.5em;
  }
}
@media (max-width: 800px) and (min-width: 641px) {
  .price-block:first-of-type {
    margin-left: 0;
  }
  .price-block:last-of-type {
    margin-right: 0;
  }
  .price-block:only-child {
    margin-right: auto;
  }
}
@media (max-width: 640px) {
  .price-block {
    vertical-align: top;
    margin-bottom: 1.5em;
    width: 13em;
    display: inline-block;
  }
}
@media (max-width: 370px) {
  .price-block {
    width: 16em;
  }
}
.price-block:only-child {
  width: 100%;
  max-width: 312px;
}
.tel-prices h4 {
  height: 6em;
}
.tel-prices h4 strong {
  position: relative;
  top: 50%;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(calc(-50% - .5px));
  -moz-transform: translateY(calc(-50% - .5px));
  -o-transform: translateY(calc(-50% - .5px));
  transform: translateY(calc(-50% - .5px));
}
.tel-prices li strong {
  display: block;
  font-size: 1.65em;
}
.tel-prices li span {
  color: #595959;
}
.tel-prices li a {
  color: var(--brand-color-1);
  font-weight: var(--font-base-strong-weight);
  -moz-transition: color 0.25s ease-in-out;
  -o-transition: color 0.25s ease-in-out;
  -webkit-transition: color 0.25s ease-in-out;
  transition: color 0.25s ease-in-out;
}
.tel-prices li a:hover {
  color: #333;
}
.details-table {
  float: left;
}
.details-table li {
  border-bottom: 1px solid #dadada;
}
.details-table li .price {
  color: #595959;
}
.details-table li.big-item .price {
  font-size: 1.8em;
  font-weight: var(--font-base-strong-weight);
  display: inline-block;
  position: relative;
}
.details-table li.big-item .price:after {
  position: absolute;
  content: "*";
  top: 0px;
  right: -22px;
  border-radius: 50%;
  text-align: center;
  background: #919191;
  font-size: 18px;
  color: #fff;
  width: 12px;
  height: 12px;
  line-height: 18px;
  font-weight: var(--font-base-light-weight);
  display: none;
}
.details-table li.big-item .time {
  font-size: 12px;
  font-style: normal;
  display: inline-block;
  margin-left: 4px;
  font-weight: var(--font-base-strong-weight);
  color: #595959;
}
.details-table span[class^="ico"] {
  margin: 0 0.2em;
  font-size: 1.25em;
}
.details-table span[class^="ico"].not-available {
  cursor: not-allowed;
}
.details-table span[class^="ico"].not-available:before {
  color: #cac9c9;
}
.details-table span[class^="ico"]:before {
  color: var(--brand-color-1);
}
.details-table span[class^="ico"].icomoon-check-02:before {
  color: #333;
  font-size: 1.5em;
}
.details-table .center-wrap, .details-table p {
  display: block;
  line-height: 1.2;
  font-size: 14px;
}
.details-table .table-h {
  height: 100px;
  background: var(--brand-color-1);
  border-radius: 12px 12px 0px 0px;
  border: none;
  font-weight: var(--font-base-strong-weight);
}
.details-table .table-h + li {
  border-top: none;
}
.details-table .table-h h4 {
  color: #fff;
  font-size: 1.2em;
}
.details-table .table-h h4 span {
  color: inherit;
}
.details-table .special {
  color: #4d4d4d;
  margin-bottom: 1em;
}
.details-table .special .price {
  color: #4d4d4d;
  margin-top: 1px;
}
.details-table .special .price::after {
  display: block !important;
}
.details-table .special .time {
  color: #4d4d4d !important;
  display: inline-block !important;
  margin-left: 3px;
}
.details-table .special span {
  display: block;
  max-width: 12em;
  margin-left: auto;
  margin-right: auto;
  margin-top: 1em;
}
.details-table.no-line .line {
  display: none;
}
.details-table.no-line .price-table-acc {
  padding-top: 2em;
}
@media (min-width: 1200px) {
  .details-table li {
    height: 52px;
  }
  .details-table li.big-item {
    height: 150px;
  }
  .details-table .center-wrap, .details-table p {
    position: relative;
    top: 50%;
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(calc(-50% - .5px));
    -moz-transform: translateY(calc(-50% - .5px));
    -o-transform: translateY(calc(-50% - .5px));
    transform: translateY(calc(-50% - .5px));
  }
}
@media (max-width: 1199px) {
  .details-table .table-item li {
    padding: 1em 0 0.5em;
  }
  .details-table .center-wrap {
    padding: 0 0.5em 0.5em;
  }
  .details-table .mobile-holder {
    padding: 0 1em 0.5em;
    background: #f7f7f7;
    display: block;
  }
  .details-table .table-h {
    height: 88px;
  }
}
@media (max-width: 940px) {
  .details-table span[class^="ico"] {
    font-size: 1.55em;
  }
  .details-table .content-wrapper {
    padding: 0;
  }
  .details-table .content-wrapper .pricing-slider .slick-next {
    right: 0;
  }
  .details-table .content-wrapper .pricing-slider .slick-prev {
    left: 0;
  }
  .details-table .price-table-acc {
    padding-right: 2.5em;
    padding-left: 2.5em;
  }
  .details-table span[class^="icomoon-check-02"] {
    font-size: 0.85em;
  }
}
.details-table div.badge {
  position: relative;
  margin: 1em 2.5em 2em;
  border-radius: 12px;
  background: var(--brand-color-1);
}
.details-table div.badge p {
  font-size: 1.2em;
  padding: 1em;
  margin-bottom: 0;
  color: #fff;
  text-align: center;
}
.details-table div.badge p span {
  font-size: 1.9em;
  font-weight: 700;
}
.details-table div.badge p strong {
  font-weight: 700;
}
@media (min-width: 1200px) {
  .details-table div.badge {
    position: absolute;
    top: 20%;
    left: 0;
    width: 11.5em;
    height: 11.5em;
    margin: 1em 0 2em;
    border-radius: 50%;
    transform: rotate(-18deg);
  }
  .details-table div.badge p span {
    display: block;
  }
}
@media (min-width: 1280px) {
  .details-table div.badge {
    left: 4%;
  }
}
.table-holder {
  float: left;
}
@media (min-width: 1200px) {
  .table-holder {
    width: 23%;
    margin-right: 2.6666666667%;
  }
  .table-holder.last-item {
    margin-right: 0;
  }
}
@media (max-width: 1199px) and (min-width: 1125px) {
  .table-holder {
    width: 23%;
    padding-right: 0;
    margin-right: 2.6666666667%;
  }
  .table-holder.last-item {
    margin-right: 0;
    padding-right: 0;
  }
}
@media (max-width: 1124px) {
  .table-holder .table-item {
    width: 240px;
  }
}
.side-heading {
  float: left;
  margin-top: 100px;
}
.side-heading .action span[class^="ico"] {
  position: relative;
  top: 2px;
}
.side-heading .action strong {
  color: var(--brand-color-1);
  font-weight: var(--font-base-strong-weight);
  margin-left: 0.5em;
}
.side-heading .asterix-wrap {
  position: relative;
}
.side-heading .asterix-wrap:after {
  position: absolute;
  right: -18px;
  top: 0;
  content: "**";
}
@media (max-width: 1199px) {
  .side-heading {
    display: none;
  }
}
.table-item {
  border-radius: 12px;
  margin-bottom: 0;
}
.table-item li {
  text-align: center;
  padding: 0 8px;
  background-color: #f7f7f7;
}
.table-item li:last-of-type {
  position: relative;
  border: none;
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
  overflow: hidden;
  text-transform: uppercase;
}
.table-item li:last-of-type a {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: var(--brand-color-1);
  background: -moz-linear-gradient(135deg, var(--brand-color-1) 33%, var(--brand-color-1-variant) 100%);
  background: -webkit-linear-gradient(135deg, var(--brand-color-1) 33%, var(--brand-color-1-variant) 100%);
  background: linear-gradient(135deg, var(--brand-color-1) 33%, var(--brand-color-1-variant) 100%);
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="var(--brand-color-1)",endColorstr="var(--brand-color-1-variant)",GradientType=1);
  color: #fff;
  line-height: 52px;
  font-size: 16px;
}
.table-item li:last-of-type a strong {
  font-weight: var(--font-base-strong-weight);
  color: inherit;
}
.table-item li:last-of-type a:hover {
  background: var(--brand-color-1-variant);
}
.table-item .model span {
  color: #595959;
  font-weight: var(--font-base-semibold-weight);
}
.table-item .model span strong {
  color: var(--brand-color-1);
}
@media (max-width: 1199px) {
  .table-item li:last-of-type {
    height: 52px;
  }
}
@media (max-width: 480px) {
  .table-item li:last-of-type a {
    font-size: 14px;
  }
}
.details-table .line {
  margin: 4em 0;
  display: block;
  height: 1px;
  background: #dadada;
  width: 100%;
  float: left;
}
.details-table .pdf-row {
  border-bottom: none;
}
.details-table .pdf-row a {
  color: var(--brand-color-1);
  font-weight: var(--font-base-strong-weight);
  -moz-transition: color 0.3s ease-in-out;
  -o-transition: color 0.3s ease-in-out;
  -webkit-transition: color 0.3s ease-in-out;
  transition: color 0.3s ease-in-out;
}
.details-table .pdf-row a:hover {
  color: #333;
}
.details-table .grey-bold, .details-table .grey-bold .center-wrap {
  font-weight: var(--font-base-strong-weight);
  color: #595959;
}
@media (max-width: 1199px) {
  .details-table li.big-item .time {
    display: none;
  }
}
@media (min-width: 1200px) {
  .side-heading {
    width: 18%;
  }
  .pricing-slider {
    width: 82%;
    float: left;
  }
  .mobile-holder {
    display: none;
  }
  li.action {
    min-height: 80px;
  }
}
@media (max-width: 1199px) {
  li.big-item .time {
    display: none;
  }
  li.action {
    min-height: 110px;
  }
  li.action .mobile-holder {
    color: var(--brand-color-1);
    font-weight: var(--font-base-strong-weight);
  }
}
@media (max-width: 1199px) and (max-width: 330px) {
  .slick-slide {
    width: 290px;
  }
}
@media (max-width: 1124px) {
  .pricing-slider .slick-slide {
    padding: 0 1em;
  }
}
.pricing-heading {
  text-align: center;
  margin-bottom: 2em;
  padding: 0 1em;
}
.pricing-heading h2 {
  font-size: 1.5em;
  margin-bottom: 0.5em;
}
.pricing-heading p {
  font-size: 1em;
  color: #767676;
}
.pricing-slider .slick-btn {
  position: absolute;
  z-index: 30;
  top: 0;
  bottom: 4em;
  width: 4em;
  text-align: center;
  background-color: rgba(56, 56, 56, 0.6);
}
.pricing-slider .slick-btn.slick-disabled {
  display: none !important;
}
.pricing-slider .slick-btn span {
  position: relative;
  top: 50%;
  -ms-transform: translateY(-50%);
  -webkit-transform: translateY(calc(-50% - .5px));
  -moz-transform: translateY(calc(-50% - .5px));
  -o-transform: translateY(calc(-50% - .5px));
  transform: translateY(calc(-50% - .5px));
}
.pricing-slider .slick-btn span:before {
  font-size: 28px;
  color: #fff;
  display: inline-block;
}
.pricing-slider .slick-prev {
  left: -3em;
}
.pricing-slider .slick-prev span:before {
  transform: rotate(90deg);
}
.pricing-slider .slick-next {
  right: -3em;
}
.pricing-slider .slick-next span:before {
  transform: rotate(-90deg);
}
.pricing-slider .slick-dots {
  position: absolute;
  bottom: 0;
  margin-bottom: 0;
  left: 0;
  right: 0;
  text-align: center;
  display: none;
}
.pricing-slider .slick-dots li {
  display: inline-block;
  text-align: center;
  position: relative;
  margin: 0 10px;
  cursor: pointer;
  border: none;
  position: relative;
}
.pricing-slider .slick-dots li:before {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--button-color-end);
  content: "";
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: auto;
  opacity: 0;
}
.pricing-slider .slick-dots button {
  display: block;
  border-radius: 50%;
  width: 25px;
  height: 25px;
  -webkit-appearance: none;
  background: transparent;
  border: none;
  cursor: pointer;
  text-indent: -500px;
  overflow: hidden;
  border: 1px solid var(--brand-color-1);
  position: relative;
  z-index: 20;
}
.pricing-slider .slick-dots .slick-active:before {
  opacity: 1;
}
@media (max-width: 1199px) {
  .pricing-slider {
    width: 100%;
    float: left;
    padding-bottom: 4em;
  }
  .pricing-slider .slick-dots {
    display: block;
  }
}
@media (max-width: 600px) {
  .pricing-slider .slick-btn {
    display: none !important;
  }
}
.price-table-acc.price-table-acc {
  margin-bottom: 3em;
  float: none;
  clear: both;
}
.price-table-acc.price-table-acc .accordion {
  padding-top: 0;
  position: relative;
  top: -1px;
}
.price-table-acc.price-table-acc table {
  margin-bottom: 0;
}
.table-content .ce_table {
  text-align: left;
}
.table-content tr.odd {
  background: #f7f7f7;
}
.table-content tr.even {
  background: #fff;
}
.table-content th, .table-content td {
  padding: 1em 1.5em;
}
.table-content th {
  font-weight: var(--font-base-strong-weight);
}
.table-content .price {
  font-weight: var(--font-base-strong-weight);
  color: var(--brand-color-1);
}
.table-content small {
  font-size: 14px;
  opacity: 0.75;
  line-height: 1.25;
  display: block;
  margin-top: 0.25em;
}
.price-cell td:last-of-type {
  text-align: right;
}
@media (max-width: 400px) {
  .price-cell td:last-of-type {
    padding-left: 0;
    min-width: 5em;
  }
}
@media (min-width: 1200px) {
  .accordion .ce_table th {
    min-width: 18em;
  }
}
@media (max-width: 440px) {
  .accordion .ce_table table {
    table-layout: fixed;
    width: 100%;
  }
  .accordion .ce_table tbody, .accordion .ce_table tr, .accordion .ce_table th {
    display: block;
  }
  .accordion .ce_table th {
    font-size: 13px;
    padding-bottom: 0;
  }
  .accordion .ce_table small {
    font-size: 12px;
  }
  .accordion .ce_table .hide-mobile {
    height: 0;
    padding: 0;
  }
}
.grey-arccodion-block .table-content table, .table-content .grey-arccodion-block table {
  margin-top: 0;
}
.grey-arccodion-block .table-content tr.odd, .table-content .grey-arccodion-block tr.odd {
  background: #fff;
}
.grey-arccodion-block .table-content tr.even, .table-content .grey-arccodion-block tr.even {
  background: #f7f7f7;
}
.table-item.internet.has-phone .use-phone {
  display: block;
}
.table-item.internet.has-phone .no-phone {
  display: none;
}
.table-item.internet.phone-disabled .use-phone {
  display: none;
}
.table-item.internet.phone-disabled .no-phone {
  display: block;
}
.table-item.internet.has-phone.has-tv .use-phone.no-tv, .table-item.internet.has-phone.has-tv .no-phone.use-tv, .table-item.internet.has-phone.has-tv .no-phone.no-tv {
  display: none;
}
.table-item.internet.has-phone.has-tv .use-phone.use-tv {
  display: block;
}
.table-item.internet.has-phone.tv-disabled .no-phone.use-tv, .table-item.internet.has-phone.tv-disabled .no-phone.no-tv, .table-item.internet.has-phone.tv-disabled .use-phone.use-tv {
  display: none;
}
.table-item.internet.has-phone.tv-disabled .use-phone.no-tv {
  display: block;
}
.table-item.internet.phone-disabled .icomoon-icon-2-01:before, .table-item.internet.phone-disabled.has-tv .icomoon-icon-2-01:before {
  color: #cac9c9;
}
.table-item.internet.phone-disabled.has-tv .use-phone.no-tv, .table-item.internet.phone-disabled.has-tv .use-phone.use-tv, .table-item.internet.phone-disabled.has-tv .no-phone.no-tv {
  display: none;
}
.table-item.internet.phone-disabled.has-tv .no-phone.use-tv {
  display: block;
}
.table-item.internet.phone-disabled.tv-disabled .use-phone.no-tv, .table-item.internet.phone-disabled.tv-disabled .use-phone.use-tv, .table-item.internet.phone-disabled.tv-disabled .no-phone.use-tv {
  display: none;
}
.table-item.internet.phone-disabled.tv-disabled .no-phone.no-tv {
  display: block;
}
.table-item.internet.tv-disabled .icomoon-iptv:before {
  color: #cac9c9;
}
.tooltip-internet {
  position: relative;
}
.tooltip-internet .tooltip-internet-text {
  visibility: hidden;
  position: absolute;
  background: #fff;
  bottom: 3em;
  left: 0.7em;
  font-size: 0.8em;
  width: 11em;
  background-color: #fff;
  padding: 1.5em;
  text-align: left;
  box-shadow: 0 0 2em 0 rgba(0, 0, 0, 0.3);
}
.tooltip-internet .tooltip-internet-text:before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -1.5em;
  border-top: 1.5em solid #fff;
  border-right: 1.5em solid transparent;
}
.tooltip-internet:hover .tooltip-internet-text {
  visibility: visible;
}
.car-tarife .content-wrapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}
.car-tarife .pricing-slider {
  display: flex;
  width: initial;
}
.car-tarife .table-holder {
  min-width: 200px;
}
@media (max-width: 1199px) {
  .car-tarife .pricing-slider {
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    gap: 5%;
    padding-bottom: 2em;
  }
  .car-tarife .table-item li:last-of-type {
    height: 100%;
  }
  .car-tarife .table-holder {
    min-width: initial;
    padding-bottom: 2em;
  }
}
/*# sourceMappingURL=data:application/json,%7B%22version%22%3A3%2C%22sources%22%3A%5B%22var%2Fwww%2Fvirtual%2Fgu.abnahme-server.de%2Fhtdocs%2Fvendor%2Fmagmell-agentur%2Fzeag-quartiersentwicklung%2Fsrc%2FResources%2Fpublic%2Fcss%2Fpricing-tables.scss%22%2C%22var%2Fwww%2Fvirtual%2Fgu.abnahme-server.de%2Fhtdocs%2Fvendor%2Fmagmell-agentur%2Fzeag-quartiersentwicklung%2Fsrc%2FResources%2Fpublic%2Fcss%2F_mixins.scss%22%5D%2C%22names%22%3A%5B%5D%2C%22mappings%22%3A%22%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAC6SA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMD%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMD%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMD%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOD%3BAACI%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAEJ%3BAACI%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAEJ%3BAACI%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAEJ%3BAACI%3BAAAA%3BAAAA%3BAACA%3BAAAA%3BAAAA%3BAAAA%3BAAKJ%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOD%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOD%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASD%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOD%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOD%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQD%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOD%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOD%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQD%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOD%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOD%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQD%3BAACE%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BADtnBF%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAcA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAmBC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMC%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOC%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASC%3BAAAA%3BAAAA%3BAAAA%3BAAMD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAcC%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAeA%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAAGA%3BAACC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAACC%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAMF%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAkBD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAYF%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAMD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOC%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAOF%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAID%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAKD%3BAACC%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMD%3BAACC%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAKD%3BAACC%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGE%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAMF%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOC%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUC%3BAAAA%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMF%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMD%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAMF%3BAAAA%3BAAAA%3BAAAA%3BAAKE%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAOD%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWC%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAOH%3BAAAA%3BAAAA%3BAAAA%3BAAIC%3BAAAA%3BAAAA%3BAAKD%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAKD%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAOD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASA%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMC%3BAAAA%3BAAAA%3BAAMF%3BAAAA%3BAAAA%3BAAAA%3BAAOA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAMF%3BAACC%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAGA%3BAAAA%3BAAAA%3BAAAA%3BAAKD%3BAACC%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKD%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAMF%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAYA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASC%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQF%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAiBD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAiBA%3BAAAA%3BAAAA%3BAAKD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAAA%3BAAKD%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAMF%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAKC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAUA%3BAAAA%3BAAAA%3BAAIA%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQD%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAKD%3BAACC%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAASD%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAASC%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAOA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAMF%3BAAAA%3BAAAA%3BAAGC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAaC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAWA%3BAAAA%3BAAAA%3BAAOD%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAMA%3BAAAA%3BAAAA%3BAAAA%3BAAKA%3BAAAA%3BAAAA%3BAAIA%3BAAEC%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%3BAAQA%3BAAAA%3BAAAA%3BAAIA%3BAAAA%3BAAAA%3BAAAA%3BAAAA%22%7D */