@import url(https://fonts.googleapis.com/css?family=Nunito:400,900|Scada:400,700&subset=cyrillic-ext);
@import url(https://fonts.googleapis.com/css?family=Scada:400,700&subset=cyrillic-ext);
/*new colors*/
/* home top banners */
/*
  Custom Bootstrap breakpoints
*/
/* Special styling for type=range and type=color input */
input.form-control[type="range"],
input.form-control[type="color"] {
  height: 2.25rem;
}
input.form-control.form-control-sm[type="range"],
input.form-control.form-control-sm[type="color"] {
  height: 1.9375rem;
}
input.form-control.form-control-lg[type="range"],
input.form-control.form-control-lg[type="color"] {
  height: 3rem;
}

/* Less padding on type=color */
input.form-control[type="color"] {
  padding: 0.25rem 0.25rem;
}
input.form-control.form-control-sm[type="color"] {
  padding: 0.125rem 0.125rem;
}

/*new colors*/
/* home top banners */
/*
  Custom Bootstrap breakpoints
*/
/* Custom-file focus styling: These can possibly be removed once BSV4.beta.3 is released */
/* Although the focus handling/style will still be needed for Firefox keyboard-only users */
/* Which will be addressed if PR https://github.com/twbs/bootstrap/pull/24138 is merged */
/* Regular focus styling */
.b-form-file.custom-file .custom-file-input.focus ~ .custom-file-control,
.b-form-file.custom-file .custom-file-input:focus ~ .custom-file-control {
  color: #495057;
  background-color: #fff;
  border-color: #80bdff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
  outline: none;
}

/* Invalid focus styling */
.b-form-file.custom-file .custom-file-input.is-invalid.focus ~ .custom-file-control,
.b-form-file.custom-file .custom-file-input.is-invalid:focus ~ .custom-file-control,
.was-validated .b-form-file.custom-file .custom-file-input:invalid.focus ~ .custom-file-control,
.was-validated .b-form-file.custom-file .custom-file-input:invalid:focus ~ .custom-file-control {
  box-shadow: 0 0 0 0.2rem rgba(220, 53, 69, 0.25);
  border-color: #dc3545;
}

/* valid focus styling */
.b-form-file.custom-file .custom-file-input.is-valid.focus ~ .custom-file-control,
.b-form-file.custom-file .custom-file-input.is-valid:focus ~ .custom-file-control,
.was-validated .b-form-file.custom-file .custom-file-input:valid.focus ~ .custom-file-control,
.was-validated .b-form-file.custom-file .custom-file-input:valid:focus ~ .custom-file-control {
  box-shadow: 0 0 0 0.2rem rgba(40, 167, 69, 0.25);
  border-color: #28a745;
}

/* Interim fix (until BS V4.beta.3) for is-{state} feedback for plain form-file input */
/* See issue https://github.com/twbs/bootstrap/issues/24831 */
.form-control-file.is-invalid ~ .invalid-feedback,
.form-control-file.is-valid ~ .valid-feedback,
.was-validated .form-control-file:invalid ~ .invalid-feedback,
.was-validated .form-control-file:valid ~ .valid-feedback {
  display: block;
}

/* Drag/Drop and filenames/prompts custom styling */
.b-form-file.custom-file .custom-file-control {
  overflow: hidden;
}
.b-form-file.custom-file .custom-file-control {
  overflow: hidden;
}
.b-form-file.custom-file .custom-file-control.dragging {
  overflow: hidden;
  filter: blur(3px);
}
.b-form-file.custom-file .custom-file-control[data-selected]::after {
  content: attr(data-selected);
}
.b-form-file.custom-file .custom-file-control[data-choose]::before {
  content: attr(data-choose);
}
.b-form-file.custom-file .drop-here {
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.5);
  border-radius: 3px;
  z-index: 99999;
  display: flex;
  justify-content: center;
  align-items: center;
}
.b-form-file.custom-file .drop-here::before {
  color: white;
  content: attr(data-drop);
}

/*new colors*/
/* home top banners */
/*
  Custom Bootstrap breakpoints
*/
/*
  This CSS can be removed once Bootstrap V4.beta.3 is released
  https://github.com/twbs/bootstrap/pull/24510
  Once BSV4.beta.3 is released, the script section can be moved into the modal.js file
  V4.beta.3 will be changing modal margin to rem units
*/
.modal-dialog-centered {
  display: flex;
  align-items: center;
  /* min-height: calc(100% - (1rem * 2)); */
  min-height: calc(100% - (10px * 2));
}
.modal-dialog-centered .modal-content {
  width: 100%;
}
@media (min-width: 576px) {
.modal-dialog-centered {
    /* min-height: calc(100% - (1.75rem * 2)); */
    min-height: calc(100% - (30px * 2));
}
}

/*new colors*/
/* home top banners */
/*
  Custom Bootstrap breakpoints
*/
/*
 * Temporary fix, as BS V4.beta.2 mistakenly removed progress-bar transition.
 * This should be able to be removed once V4.beta.3 is released.
 * And this full component can be moved into the progress.js file
 */
.progress-bar {
  transition: width .6s ease;
}

/*new colors*/
/* home top banners */
/*
  Custom Bootstrap breakpoints
*/
/* Add support for fixed layout table */
table.b-table.b-table-fixed {
  table-layout: fixed;
}

/* Busy table styling */
table.b-table[aria-busy="false"] {
  opacity: 1;
}
table.b-table[aria-busy="true"] {
  opacity: .6;
}

/* Sort styling */
table.b-table > thead > tr > th,
table.b-table > tfoot > tr > th {
  position: relative;
}
table.b-table > thead > tr > th.sorting,
table.b-table > tfoot > tr > th.sorting {
  padding-right: 1.5em;
  cursor: pointer;
}
table.b-table > thead > tr > th.sorting::before,
table.b-table > thead > tr > th.sorting::after,
table.b-table > tfoot > tr > th.sorting::before,
table.b-table > tfoot > tr > th.sorting::after {
  position: absolute;
  bottom: 0;
  display: block;
  opacity: 0.4;
  padding-bottom: inherit;
  font-size: inherit;
  line-height: 180%;
}
table.b-table > thead > tr > th.sorting::before,
table.b-table > tfoot > tr > th.sorting::before {
  right: 0.75em;
  content: "\2191";
}
table.b-table > thead > tr > th.sorting::after,
table.b-table > tfoot > tr > th.sorting::after {
  right: 0.25em;
  content: "\2193";
}
table.b-table > thead > tr > th.sorting_asc::after,
table.b-table > thead > tr > th.sorting_desc::before,
table.b-table > tfoot > tr > th.sorting_asc::after,
table.b-table > tfoot > tr > th.sorting_desc::before {
  opacity: 1;
}

/* stacked table layout */
/* Derived from http://blog.adrianroselli.com/2017/11/a-responsive-accessible-table.html */
/* Always stacked */
table.b-table.b-table-stacked {
  width: 100%;
}
table.b-table.b-table-stacked,
table.b-table.b-table-stacked > tbody,
table.b-table.b-table-stacked > tbody > tr,
table.b-table.b-table-stacked > tbody > tr > td,
table.b-table.b-table-stacked > tbody > tr > th,
table.b-table.b-table-stacked > caption {
  display: block;
}

/* hide stuff we can't deal with, or shouldn't show */
table.b-table.b-table-stacked > thead,
table.b-table.b-table-stacked > tfoot,
table.b-table.b-table-stacked > tbody > tr.b-table-top-row,
table.b-table.b-table-stacked > tbody > tr.b-table-bottom-row {
  display: none;
}

/* inter-row top border */
table.b-table.b-table-stacked > tbody > tr > :first-child {
  border-top-width: .4rem;
}

/* convert TD/TH contents to "cells". Caveat: child elements become cells! */
table.b-table.b-table-stacked > tbody > tr > [data-label] {
  display: grid;
  grid-template-columns: 40% auto;
  grid-gap: .25rem 1rem;
}

/* generate row cell "heading" */
table.b-table.b-table-stacked > tbody > tr > [data-label]::before {
  content: attr(data-label);
  display: inline;
  text-align: right;
  overflow-wrap: break-word;
  font-weight: bold;
  font-style: normal;
}
@media all and (max-width: 575.99px) {
  /* Under SM */
table.b-table.b-table-stacked-sm {
    width: 100%;
}
table.b-table.b-table-stacked-sm,
  table.b-table.b-table-stacked-sm > tbody,
  table.b-table.b-table-stacked-sm > tbody > tr,
  table.b-table.b-table-stacked-sm > tbody > tr > td,
  table.b-table.b-table-stacked-sm > tbody > tr > th,
  table.b-table.b-table-stacked-sm > caption {
    display: block;
}
  /* hide stuff we can't deal with, or shouldn't show */
table.b-table.b-table-stacked-sm > thead,
  table.b-table.b-table-stacked-sm > tfoot,
  table.b-table.b-table-stacked-sm > tbody > tr.b-table-top-row,
  table.b-table.b-table-stacked-sm > tbody > tr.b-table-bottom-row {
    display: none;
}
  /* inter-row top border */
table.b-table.b-table-stacked-sm > tbody > tr > :first-child {
    border-top-width: .4rem;
}
  /* convert TD/TH contents to "cells". Caveat: child elements become cells! */
table.b-table.b-table-stacked-sm > tbody > tr > [data-label] {
    display: grid;
    grid-template-columns: 40% auto;
    grid-gap: .25rem 1rem;
}
  /* generate row cell "heading" */
table.b-table.b-table-stacked-sm > tbody > tr > [data-label]::before {
    content: attr(data-label);
    display: inline;
    text-align: right;
    overflow-wrap: break-word;
    font-weight: bold;
    font-style: normal;
}
}
@media all and (max-width: 767.99px) {
  /* under MD  */
table.b-table.b-table-stacked-md {
    width: 100%;
}
table.b-table.b-table-stacked-md,
  table.b-table.b-table-stacked-md > tbody,
  table.b-table.b-table-stacked-md > tbody > tr,
  table.b-table.b-table-stacked-md > tbody > tr > td,
  table.b-table.b-table-stacked-md > tbody > tr > th,
  table.b-table.b-table-stacked-md > caption {
    display: block;
}
  /* hide stuff we can't deal with, or shouldn't show */
table.b-table.b-table-stacked-md > thead,
  table.b-table.b-table-stacked-md > tfoot,
  table.b-table.b-table-stacked-md > tbody > tr.b-table-top-row,
  table.b-table.b-table-stacked-md > tbody > tr.b-table-bottom-row {
    display: none;
}
  /* inter-row top border */
table.b-table.b-table-stacked-md > tbody > tr > :first-child {
    border-top-width: .4rem;
}
  /* convert TD/TH contents to "cells". Caveat: child elements become cells! */
table.b-table.b-table-stacked-md > tbody > tr > [data-label] {
    display: grid;
    grid-template-columns: 40% auto;
    grid-gap: .25rem 1rem;
}
  /* generate row cell "heading" */
table.b-table.b-table-stacked-md > tbody > tr > [data-label]::before {
    content: attr(data-label);
    display: inline;
    text-align: right;
    overflow-wrap: break-word;
    font-weight: bold;
    font-style: normal;
}
}
@media all and (max-width: 991.99px) {
  /* under LG  */
table.b-table.b-table-stacked-lg {
    width: 100%;
}
table.b-table.b-table-stacked-lg,
  table.b-table.b-table-stacked-lg > tbody,
  table.b-table.b-table-stacked-lg > tbody > tr,
  table.b-table.b-table-stacked-lg > tbody > tr > td,
  table.b-table.b-table-stacked-lg > tbody > tr > th,
  table.b-table.b-table-stacked-lg > caption {
    display: block;
}
  /* hide stuff we can't deal with, or shouldn't show */
table.b-table.b-table-stacked-lg > thead,
  table.b-table.b-table-stacked-lg > tfoot,
  table.b-table.b-table-stacked-lg > tbody > tr.b-table-top-row,
  table.b-table.b-table-stacked-lg > tbody > tr.b-table-bottom-row {
    display: none;
}
  /* inter-row top border */
table.b-table.b-table-stacked-lg > tbody > tr > :first-child {
    border-top-width: .4rem;
}
  /* convert TD/TH contents to "cells". Caveat: child elements become cells! */
table.b-table.b-table-stacked-lg > tbody > tr > [data-label] {
    display: grid;
    grid-template-columns: 40% auto;
    grid-gap: .25rem 1rem;
}
  /* generate row cell "heading" */
table.b-table.b-table-stacked-lg > tbody > tr > [data-label]::before {
    content: attr(data-label);
    display: inline;
    text-align: right;
    overflow-wrap: break-word;
    font-weight: bold;
    font-style: normal;
}
}
@media all and (max-width: 1199.99px) {
  /* under XL  */
table.b-table.b-table-stacked-xl {
    width: 100%;
}
table.b-table.b-table-stacked-xl,
  table.b-table.b-table-stacked-xl > tbody,
  table.b-table.b-table-stacked-xl > tbody > tr,
  table.b-table.b-table-stacked-xl > tbody > tr > td,
  table.b-table.b-table-stacked-xl > tbody > tr > th,
  table.b-table.b-table-stacked-xl > caption {
    display: block;
}
  /* hide stuff we can't deal with, or shouldn't show */
table.b-table.b-table-stacked-xl > thead,
  table.b-table.b-table-stacked-xl > tfoot,
  table.b-table.b-table-stacked-xl > tbody > tr.b-table-top-row,
  table.b-table.b-table-stacked-xl > tbody > tr.b-table-bottom-row {
    display: none;
}
  /* inter-row top border */
table.b-table.b-table-stacked-xl > tbody > tr > :first-child {
    border-top-width: .4rem;
}
  /* convert TD/TH contents to "cells". Caveat: child elements become cells! */
table.b-table.b-table-stacked-xl > tbody > tr > [data-label] {
    display: grid;
    grid-template-columns: 40% auto;
    grid-gap: .25rem 1rem;
}
  /* generate row cell "heading" */
table.b-table.b-table-stacked-xl > tbody > tr > [data-label]::before {
    content: attr(data-label);
    display: inline;
    text-align: right;
    overflow-wrap: break-word;
    font-weight: bold;
    font-style: normal;
}
}

/* Details row styling */
table.b-table > tbody > tr.b-table-details > td {
  border-top: none;
}

/*new colors*/
/* home top banners */
/*
  Custom Bootstrap breakpoints
*/
/* Make clicks pass-through */
#nprogress {
  pointer-events: none; }

#nprogress .bar {
  background: #29d;
  position: fixed;
  z-index: 1031;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px; }

/* Fancy blur effect */
#nprogress .peg {
  display: block;
  position: absolute;
  right: 0px;
  width: 100px;
  height: 100%;
  box-shadow: 0 0 10px #29d, 0 0 5px #29d;
  opacity: 1.0;
  transform: rotate(3deg) translate(0px, -4px); }

/* Remove these to get rid of the spinner */
#nprogress .spinner {
  display: block;
  position: fixed;
  z-index: 1031;
  top: 15px;
  right: 15px; }

#nprogress .spinner-icon {
  width: 18px;
  height: 18px;
  box-sizing: border-box;
  border: solid 2px transparent;
  border-top-color: #29d;
  border-left-color: #29d;
  border-radius: 50%;
  animation: nprogress-spinner 400ms linear infinite; }

.nprogress-custom-parent {
  overflow: hidden;
  position: relative; }

.nprogress-custom-parent #nprogress .spinner,
.nprogress-custom-parent #nprogress .bar {
  position: absolute; }

@keyframes nprogress-spinner {
  0% {
    transform: rotate(0deg); }
  100% {
    transform: rotate(360deg); } }

/**
 * Swiper 4.5.1
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * http://www.idangero.us/swiper/
 *
 * Copyright 2014-2019 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: September 13, 2019
 */
.swiper-container {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  /* Fix of Webkit flickering */
  z-index: 1;
}
.swiper-container-no-flexbox .swiper-slide {
  float: left;
}
.swiper-container-vertical > .swiper-wrapper {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -webkit-flex-direction: column;
  -ms-flex-direction: column;
  flex-direction: column;
}
.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
  -webkit-box-sizing: content-box;
  box-sizing: content-box;
}
.swiper-container-android .swiper-slide,
.swiper-wrapper {
  -webkit-transform: translate3d(0px, 0, 0);
  transform: translate3d(0px, 0, 0);
}
.swiper-container-multirow > .swiper-wrapper {
  -webkit-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}
.swiper-container-free-mode > .swiper-wrapper {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
  margin: 0 auto;
}
.swiper-slide {
  -webkit-flex-shrink: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  -webkit-transition-property: -webkit-transform;
  transition-property: -webkit-transform;
  -o-transition-property: transform;
  transition-property: transform;
  transition-property: transform, -webkit-transform;
}
.swiper-slide-invisible-blank {
  visibility: hidden;
}
/* Auto Height */
.swiper-container-autoheight,
.swiper-container-autoheight .swiper-slide {
  height: auto;
}
.swiper-container-autoheight .swiper-wrapper {
  -webkit-box-align: start;
  -webkit-align-items: flex-start;
  -ms-flex-align: start;
  align-items: flex-start;
  -webkit-transition-property: height, -webkit-transform;
  transition-property: height, -webkit-transform;
  -o-transition-property: transform, height;
  transition-property: transform, height;
  transition-property: transform, height, -webkit-transform;
}
/* 3D Effects */
.swiper-container-3d {
  -webkit-perspective: 1200px;
  perspective: 1200px;
}
.swiper-container-3d .swiper-wrapper,
.swiper-container-3d .swiper-slide,
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom,
.swiper-container-3d .swiper-cube-shadow {
  -webkit-transform-style: preserve-3d;
  transform-style: preserve-3d;
}
.swiper-container-3d .swiper-slide-shadow-left,
.swiper-container-3d .swiper-slide-shadow-right,
.swiper-container-3d .swiper-slide-shadow-top,
.swiper-container-3d .swiper-slide-shadow-bottom {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}
.swiper-container-3d .swiper-slide-shadow-left {
  background-image: -webkit-gradient(linear, right top, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-right {
  background-image: -webkit-gradient(linear, left top, right top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-top {
  background-image: -webkit-gradient(linear, left bottom, left top, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
.swiper-container-3d .swiper-slide-shadow-bottom {
  background-image: -webkit-gradient(linear, left top, left bottom, from(rgba(0, 0, 0, 0.5)), to(rgba(0, 0, 0, 0)));
  background-image: -webkit-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: -o-linear-gradient(top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}
/* IE10 Windows Phone 8 Fixes */
.swiper-container-wp8-horizontal,
.swiper-container-wp8-horizontal > .swiper-wrapper {
  -ms-touch-action: pan-y;
  touch-action: pan-y;
}
.swiper-container-wp8-vertical,
.swiper-container-wp8-vertical > .swiper-wrapper {
  -ms-touch-action: pan-x;
  touch-action: pan-x;
}
.swiper-button-prev,
.swiper-button-next {
  position: absolute;
  top: 50%;
  width: 27px;
  height: 44px;
  margin-top: -22px;
  z-index: 10;
  cursor: pointer;
  background-size: 27px 44px;
  background-position: center;
  background-repeat: no-repeat;
}
.swiper-button-prev.swiper-button-disabled,
.swiper-button-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}
.swiper-button-prev,
.swiper-container-rtl .swiper-button-next {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  left: 10px;
  right: auto;
}
.swiper-button-next,
.swiper-container-rtl .swiper-button-prev {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23007aff'%2F%3E%3C%2Fsvg%3E");
  right: 10px;
  left: auto;
}
.swiper-button-prev.swiper-button-white,
.swiper-container-rtl .swiper-button-next.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-button-white,
.swiper-container-rtl .swiper-button-prev.swiper-button-white {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23ffffff'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-prev.swiper-button-black,
.swiper-container-rtl .swiper-button-next.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M0%2C22L22%2C0l2.1%2C2.1L4.2%2C22l19.9%2C19.9L22%2C44L0%2C22L0%2C22L0%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-next.swiper-button-black,
.swiper-container-rtl .swiper-button-prev.swiper-button-black {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20viewBox%3D'0%200%2027%2044'%3E%3Cpath%20d%3D'M27%2C22L27%2C22L5%2C44l-2.1-2.1L22.8%2C22L2.9%2C2.1L5%2C0L27%2C22L27%2C22z'%20fill%3D'%23000000'%2F%3E%3C%2Fsvg%3E");
}
.swiper-button-lock {
  display: none;
}
.swiper-pagination {
  position: absolute;
  text-align: center;
  -webkit-transition: 300ms opacity;
  -o-transition: 300ms opacity;
  transition: 300ms opacity;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  z-index: 10;
}
.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}
/* Common Styles */
.swiper-pagination-fraction,
.swiper-pagination-custom,
.swiper-container-horizontal > .swiper-pagination-bullets {
  bottom: 10px;
  left: 0;
  width: 100%;
}
/* Bullets */
.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
  position: relative;
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  -webkit-transform: scale(0.66);
  -ms-transform: scale(0.66);
  transform: scale(0.66);
}
.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  -webkit-transform: scale(0.33);
  -ms-transform: scale(0.33);
  transform: scale(0.33);
}
.swiper-pagination-bullet {
  width: 8px;
  height: 8px;
  display: inline-block;
  border-radius: 100%;
  background: #000;
  opacity: 0.2;
}
button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}
.swiper-pagination-bullet-active {
  opacity: 1;
  background: #007aff;
}
.swiper-container-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  -webkit-transform: translate3d(0px, -50%, 0);
  transform: translate3d(0px, -50%, 0);
}
.swiper-container-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 6px 0;
  display: block;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 8px;
}
.swiper-container-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  -webkit-transition: 200ms top, 200ms -webkit-transform;
  transition: 200ms top, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top;
  transition: 200ms transform, 200ms top, 200ms -webkit-transform;
}
.swiper-container-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 4px;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  -webkit-transform: translateX(-50%);
  -ms-transform: translateX(-50%);
  transform: translateX(-50%);
  white-space: nowrap;
}
.swiper-container-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms left, 200ms -webkit-transform;
  transition: 200ms left, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left;
  transition: 200ms transform, 200ms left, 200ms -webkit-transform;
}
.swiper-container-horizontal.swiper-container-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  -webkit-transition: 200ms right, 200ms -webkit-transform;
  transition: 200ms right, 200ms -webkit-transform;
  -o-transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right;
  transition: 200ms transform, 200ms right, 200ms -webkit-transform;
}
/* Progress */
.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}
.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: #007aff;
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  -webkit-transform: scale(0);
  -ms-transform: scale(0);
  transform: scale(0);
  -webkit-transform-origin: left top;
  -ms-transform-origin: left top;
  transform-origin: left top;
}
.swiper-container-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  -webkit-transform-origin: right top;
  -ms-transform-origin: right top;
  transform-origin: right top;
}
.swiper-container-horizontal > .swiper-pagination-progressbar,
.swiper-container-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}
.swiper-container-vertical > .swiper-pagination-progressbar,
.swiper-container-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}
.swiper-pagination-white .swiper-pagination-bullet-active {
  background: #ffffff;
}
.swiper-pagination-progressbar.swiper-pagination-white {
  background: rgba(255, 255, 255, 0.25);
}
.swiper-pagination-progressbar.swiper-pagination-white .swiper-pagination-progressbar-fill {
  background: #ffffff;
}
.swiper-pagination-black .swiper-pagination-bullet-active {
  background: #000000;
}
.swiper-pagination-progressbar.swiper-pagination-black {
  background: rgba(0, 0, 0, 0.25);
}
.swiper-pagination-progressbar.swiper-pagination-black .swiper-pagination-progressbar-fill {
  background: #000000;
}
.swiper-pagination-lock {
  display: none;
}
/* Scrollbar */
.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}
.swiper-container-horizontal > .swiper-scrollbar {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}
.swiper-container-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}
.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}
.swiper-scrollbar-cursor-drag {
  cursor: move;
}
.swiper-scrollbar-lock {
  display: none;
}
.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -webkit-justify-content: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -webkit-align-items: center;
  -ms-flex-align: center;
  align-items: center;
  text-align: center;
}
.swiper-zoom-container > img,
.swiper-zoom-container > svg,
.swiper-zoom-container > canvas {
  max-width: 100%;
  max-height: 100%;
  -o-object-fit: contain;
  object-fit: contain;
}
.swiper-slide-zoomed {
  cursor: move;
}
/* Preloader */
.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  -webkit-transform-origin: 50%;
  -ms-transform-origin: 50%;
  transform-origin: 50%;
  -webkit-animation: swiper-preloader-spin 1s steps(12, end) infinite;
  animation: swiper-preloader-spin 1s steps(12, end) infinite;
}
.swiper-lazy-preloader:after {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%236c6c6c'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
  background-position: 50%;
  background-size: 100%;
  background-repeat: no-repeat;
}
.swiper-lazy-preloader-white:after {
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20viewBox%3D'0%200%20120%20120'%20xmlns%3D'http%3A%2F%2Fwww.w3.org%2F2000%2Fsvg'%20xmlns%3Axlink%3D'http%3A%2F%2Fwww.w3.org%2F1999%2Fxlink'%3E%3Cdefs%3E%3Cline%20id%3D'l'%20x1%3D'60'%20x2%3D'60'%20y1%3D'7'%20y2%3D'27'%20stroke%3D'%23fff'%20stroke-width%3D'11'%20stroke-linecap%3D'round'%2F%3E%3C%2Fdefs%3E%3Cg%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(30%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(60%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(90%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(120%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.27'%20transform%3D'rotate(150%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.37'%20transform%3D'rotate(180%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.46'%20transform%3D'rotate(210%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.56'%20transform%3D'rotate(240%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.66'%20transform%3D'rotate(270%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.75'%20transform%3D'rotate(300%2060%2C60)'%2F%3E%3Cuse%20xlink%3Ahref%3D'%23l'%20opacity%3D'.85'%20transform%3D'rotate(330%2060%2C60)'%2F%3E%3C%2Fg%3E%3C%2Fsvg%3E");
}
@-webkit-keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes swiper-preloader-spin {
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* a11y */
.swiper-container .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}
.swiper-container-fade.swiper-container-free-mode .swiper-slide {
  -webkit-transition-timing-function: ease-out;
  -o-transition-timing-function: ease-out;
  transition-timing-function: ease-out;
}
.swiper-container-fade .swiper-slide {
  pointer-events: none;
  -webkit-transition-property: opacity;
  -o-transition-property: opacity;
  transition-property: opacity;
}
.swiper-container-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-fade .swiper-slide-active,
.swiper-container-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube {
  overflow: visible;
}
.swiper-container-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  -webkit-transform-origin: 0 0;
  -ms-transform-origin: 0 0;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}
.swiper-container-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-cube.swiper-container-rtl .swiper-slide {
  -webkit-transform-origin: 100% 0;
  -ms-transform-origin: 100% 0;
  transform-origin: 100% 0;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-cube .swiper-slide-active,
.swiper-container-cube .swiper-slide-next,
.swiper-container-cube .swiper-slide-prev,
.swiper-container-cube .swiper-slide-next + .swiper-slide {
  pointer-events: auto;
  visibility: visible;
}
.swiper-container-cube .swiper-slide-shadow-top,
.swiper-container-cube .swiper-slide-shadow-bottom,
.swiper-container-cube .swiper-slide-shadow-left,
.swiper-container-cube .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-container-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.6;
  -webkit-filter: blur(50px);
  filter: blur(50px);
  z-index: 0;
}
.swiper-container-flip {
  overflow: visible;
}
.swiper-container-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}
.swiper-container-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}
.swiper-container-flip .swiper-slide-active,
.swiper-container-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}
.swiper-container-flip .swiper-slide-shadow-top,
.swiper-container-flip .swiper-slide-shadow-bottom,
.swiper-container-flip .swiper-slide-shadow-left,
.swiper-container-flip .swiper-slide-shadow-right {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}
.swiper-container-coverflow .swiper-wrapper {
  /* Windows 8 IE 10 fix */
  -ms-perspective: 1200px;
}

@charset "UTF-8";
/*new colors*/
/* home top banners */
/*
  Custom Bootstrap breakpoints
*/
/*new colors*/
/* home top banners */
/*
  Custom Bootstrap breakpoints
*/
.align-baseline {
  vertical-align: baseline !important; }

.align-top {
  vertical-align: top !important; }

.align-middle {
  vertical-align: middle !important; }

.align-bottom {
  vertical-align: bottom !important; }

.align-text-bottom {
  vertical-align: text-bottom !important; }

.align-text-top {
  vertical-align: text-top !important; }

.bg-primary {
  background-color: #007bff !important; }

a.bg-primary:hover, a.bg-primary:focus,
button.bg-primary:hover,
button.bg-primary:focus {
  background-color: #0062cc !important; }

.bg-secondary {
  background-color: #6c757d !important; }

a.bg-secondary:hover, a.bg-secondary:focus,
button.bg-secondary:hover,
button.bg-secondary:focus {
  background-color: #545b62 !important; }

.bg-success {
  background-color: #28a745 !important; }

a.bg-success:hover, a.bg-success:focus,
button.bg-success:hover,
button.bg-success:focus {
  background-color: #1e7e34 !important; }

.bg-info {
  background-color: #87cefa !important; }

a.bg-info:hover, a.bg-info:focus,
button.bg-info:hover,
button.bg-info:focus {
  background-color: #56baf8 !important; }

.bg-warning {
  background-color: #ffc107 !important; }

a.bg-warning:hover, a.bg-warning:focus,
button.bg-warning:hover,
button.bg-warning:focus {
  background-color: #d39e00 !important; }

.bg-danger {
  background-color: #dc3545 !important; }

a.bg-danger:hover, a.bg-danger:focus,
button.bg-danger:hover,
button.bg-danger:focus {
  background-color: #bd2130 !important; }

.bg-light {
  background-color: #f8f9fa !important; }

a.bg-light:hover, a.bg-light:focus,
button.bg-light:hover,
button.bg-light:focus {
  background-color: #dae0e5 !important; }

.bg-dark {
  background-color: #343a40 !important; }

a.bg-dark:hover, a.bg-dark:focus,
button.bg-dark:hover,
button.bg-dark:focus {
  background-color: #1d2124 !important; }

.bg-white {
  background-color: #fff !important; }

.bg-transparent {
  background-color: transparent !important; }

.border {
  border: 1px solid #dee2e6 !important; }

.border-top {
  border-top: 1px solid #dee2e6 !important; }

.border-right {
  border-right: 1px solid #dee2e6 !important; }

.border-bottom {
  border-bottom: 1px solid #dee2e6 !important; }

.border-left {
  border-left: 1px solid #dee2e6 !important; }

.border-0 {
  border: 0 !important; }

.border-top-0 {
  border-top: 0 !important; }

.border-right-0 {
  border-right: 0 !important; }

.border-bottom-0 {
  border-bottom: 0 !important; }

.border-left-0 {
  border-left: 0 !important; }

.border-primary {
  border-color: #007bff !important; }

.border-secondary {
  border-color: #6c757d !important; }

.border-success {
  border-color: #28a745 !important; }

.border-info {
  border-color: #87cefa !important; }

.border-warning {
  border-color: #ffc107 !important; }

.border-danger {
  border-color: #dc3545 !important; }

.border-light {
  border-color: #f8f9fa !important; }

.border-dark {
  border-color: #343a40 !important; }

.border-white {
  border-color: #fff !important; }

.rounded {
  border-radius: 0.25rem !important; }

.rounded-top {
  border-top-left-radius: 0.25rem !important;
  border-top-right-radius: 0.25rem !important; }

.rounded-right {
  border-top-right-radius: 0.25rem !important;
  border-bottom-right-radius: 0.25rem !important; }

.rounded-bottom {
  border-bottom-right-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important; }

.rounded-left {
  border-top-left-radius: 0.25rem !important;
  border-bottom-left-radius: 0.25rem !important; }

.rounded-circle {
  border-radius: 50% !important; }

.rounded-0 {
  border-radius: 0 !important; }

.clearfix::after {
  display: block;
  clear: both;
  content: ""; }

.d-none {
  display: none !important; }

.d-inline {
  display: inline !important; }

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

.d-block {
  display: block !important; }

.d-table {
  display: table !important; }

.d-table-row {
  display: table-row !important; }

.d-table-cell {
  display: table-cell !important; }

.d-flex {
  display: flex !important; }

.d-inline-flex {
  display: inline-flex !important; }

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important; }
  .d-sm-inline {
    display: inline !important; }
  .d-sm-inline-block {
    display: inline-block !important; }
  .d-sm-block {
    display: block !important; }
  .d-sm-table {
    display: table !important; }
  .d-sm-table-row {
    display: table-row !important; }
  .d-sm-table-cell {
    display: table-cell !important; }
  .d-sm-flex {
    display: flex !important; }
  .d-sm-inline-flex {
    display: inline-flex !important; } }

@media (min-width: 1020px) {
  .d-md-none {
    display: none !important; }
  .d-md-inline {
    display: inline !important; }
  .d-md-inline-block {
    display: inline-block !important; }
  .d-md-block {
    display: block !important; }
  .d-md-table {
    display: table !important; }
  .d-md-table-row {
    display: table-row !important; }
  .d-md-table-cell {
    display: table-cell !important; }
  .d-md-flex {
    display: flex !important; }
  .d-md-inline-flex {
    display: inline-flex !important; } }

@media (min-width: 1440px) {
  .d-lg-none {
    display: none !important; }
  .d-lg-inline {
    display: inline !important; }
  .d-lg-inline-block {
    display: inline-block !important; }
  .d-lg-block {
    display: block !important; }
  .d-lg-table {
    display: table !important; }
  .d-lg-table-row {
    display: table-row !important; }
  .d-lg-table-cell {
    display: table-cell !important; }
  .d-lg-flex {
    display: flex !important; }
  .d-lg-inline-flex {
    display: inline-flex !important; } }

@media print {
  .d-print-none {
    display: none !important; }
  .d-print-inline {
    display: inline !important; }
  .d-print-inline-block {
    display: inline-block !important; }
  .d-print-block {
    display: block !important; }
  .d-print-table {
    display: table !important; }
  .d-print-table-row {
    display: table-row !important; }
  .d-print-table-cell {
    display: table-cell !important; }
  .d-print-flex {
    display: flex !important; }
  .d-print-inline-flex {
    display: inline-flex !important; } }

.embed-responsive {
  position: relative;
  display: block;
  width: 100%;
  padding: 0;
  overflow: hidden; }
  .embed-responsive::before {
    display: block;
    content: ""; }
  .embed-responsive .embed-responsive-item,
  .embed-responsive iframe,
  .embed-responsive embed,
  .embed-responsive object,
  .embed-responsive video {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: 0; }

.embed-responsive-21by9::before {
  padding-top: 42.85714%; }

.embed-responsive-16by9::before {
  padding-top: 56.25%; }

.embed-responsive-4by3::before {
  padding-top: 75%; }

.embed-responsive-1by1::before {
  padding-top: 100%; }

.flex-row {
  flex-direction: row !important; }

.flex-column {
  flex-direction: column !important; }

.flex-row-reverse {
  flex-direction: row-reverse !important; }

.flex-column-reverse {
  flex-direction: column-reverse !important; }

.flex-wrap {
  flex-wrap: wrap !important; }

.flex-nowrap {
  flex-wrap: nowrap !important; }

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important; }

.flex-fill {
  flex: 1 1 auto !important; }

.flex-grow-0 {
  flex-grow: 0 !important; }

.flex-grow-1 {
  flex-grow: 1 !important; }

.flex-shrink-0 {
  flex-shrink: 0 !important; }

.flex-shrink-1 {
  flex-shrink: 1 !important; }

.justify-content-start {
  justify-content: flex-start !important; }

.justify-content-end {
  justify-content: flex-end !important; }

.justify-content-center {
  justify-content: center !important; }

.justify-content-between {
  justify-content: space-between !important; }

.justify-content-around {
  justify-content: space-around !important; }

.align-items-start {
  align-items: flex-start !important; }

.align-items-end {
  align-items: flex-end !important; }

.align-items-center {
  align-items: center !important; }

.align-items-baseline {
  align-items: baseline !important; }

.align-items-stretch {
  align-items: stretch !important; }

.align-content-start {
  align-content: flex-start !important; }

.align-content-end {
  align-content: flex-end !important; }

.align-content-center {
  align-content: center !important; }

.align-content-between {
  align-content: space-between !important; }

.align-content-around {
  align-content: space-around !important; }

.align-content-stretch {
  align-content: stretch !important; }

.align-self-auto {
  align-self: auto !important; }

.align-self-start {
  align-self: flex-start !important; }

.align-self-end {
  align-self: flex-end !important; }

.align-self-center {
  align-self: center !important; }

.align-self-baseline {
  align-self: baseline !important; }

.align-self-stretch {
  align-self: stretch !important; }

@media (min-width: 576px) {
  .flex-sm-row {
    flex-direction: row !important; }
  .flex-sm-column {
    flex-direction: column !important; }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important; }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important; }
  .flex-sm-wrap {
    flex-wrap: wrap !important; }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important; }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important; }
  .flex-sm-fill {
    flex: 1 1 auto !important; }
  .flex-sm-grow-0 {
    flex-grow: 0 !important; }
  .flex-sm-grow-1 {
    flex-grow: 1 !important; }
  .flex-sm-shrink-0 {
    flex-shrink: 0 !important; }
  .flex-sm-shrink-1 {
    flex-shrink: 1 !important; }
  .justify-content-sm-start {
    justify-content: flex-start !important; }
  .justify-content-sm-end {
    justify-content: flex-end !important; }
  .justify-content-sm-center {
    justify-content: center !important; }
  .justify-content-sm-between {
    justify-content: space-between !important; }
  .justify-content-sm-around {
    justify-content: space-around !important; }
  .align-items-sm-start {
    align-items: flex-start !important; }
  .align-items-sm-end {
    align-items: flex-end !important; }
  .align-items-sm-center {
    align-items: center !important; }
  .align-items-sm-baseline {
    align-items: baseline !important; }
  .align-items-sm-stretch {
    align-items: stretch !important; }
  .align-content-sm-start {
    align-content: flex-start !important; }
  .align-content-sm-end {
    align-content: flex-end !important; }
  .align-content-sm-center {
    align-content: center !important; }
  .align-content-sm-between {
    align-content: space-between !important; }
  .align-content-sm-around {
    align-content: space-around !important; }
  .align-content-sm-stretch {
    align-content: stretch !important; }
  .align-self-sm-auto {
    align-self: auto !important; }
  .align-self-sm-start {
    align-self: flex-start !important; }
  .align-self-sm-end {
    align-self: flex-end !important; }
  .align-self-sm-center {
    align-self: center !important; }
  .align-self-sm-baseline {
    align-self: baseline !important; }
  .align-self-sm-stretch {
    align-self: stretch !important; } }

@media (min-width: 1020px) {
  .flex-md-row {
    flex-direction: row !important; }
  .flex-md-column {
    flex-direction: column !important; }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important; }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important; }
  .flex-md-wrap {
    flex-wrap: wrap !important; }
  .flex-md-nowrap {
    flex-wrap: nowrap !important; }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important; }
  .flex-md-fill {
    flex: 1 1 auto !important; }
  .flex-md-grow-0 {
    flex-grow: 0 !important; }
  .flex-md-grow-1 {
    flex-grow: 1 !important; }
  .flex-md-shrink-0 {
    flex-shrink: 0 !important; }
  .flex-md-shrink-1 {
    flex-shrink: 1 !important; }
  .justify-content-md-start {
    justify-content: flex-start !important; }
  .justify-content-md-end {
    justify-content: flex-end !important; }
  .justify-content-md-center {
    justify-content: center !important; }
  .justify-content-md-between {
    justify-content: space-between !important; }
  .justify-content-md-around {
    justify-content: space-around !important; }
  .align-items-md-start {
    align-items: flex-start !important; }
  .align-items-md-end {
    align-items: flex-end !important; }
  .align-items-md-center {
    align-items: center !important; }
  .align-items-md-baseline {
    align-items: baseline !important; }
  .align-items-md-stretch {
    align-items: stretch !important; }
  .align-content-md-start {
    align-content: flex-start !important; }
  .align-content-md-end {
    align-content: flex-end !important; }
  .align-content-md-center {
    align-content: center !important; }
  .align-content-md-between {
    align-content: space-between !important; }
  .align-content-md-around {
    align-content: space-around !important; }
  .align-content-md-stretch {
    align-content: stretch !important; }
  .align-self-md-auto {
    align-self: auto !important; }
  .align-self-md-start {
    align-self: flex-start !important; }
  .align-self-md-end {
    align-self: flex-end !important; }
  .align-self-md-center {
    align-self: center !important; }
  .align-self-md-baseline {
    align-self: baseline !important; }
  .align-self-md-stretch {
    align-self: stretch !important; } }

@media (min-width: 1440px) {
  .flex-lg-row {
    flex-direction: row !important; }
  .flex-lg-column {
    flex-direction: column !important; }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important; }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important; }
  .flex-lg-wrap {
    flex-wrap: wrap !important; }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important; }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important; }
  .flex-lg-fill {
    flex: 1 1 auto !important; }
  .flex-lg-grow-0 {
    flex-grow: 0 !important; }
  .flex-lg-grow-1 {
    flex-grow: 1 !important; }
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important; }
  .flex-lg-shrink-1 {
    flex-shrink: 1 !important; }
  .justify-content-lg-start {
    justify-content: flex-start !important; }
  .justify-content-lg-end {
    justify-content: flex-end !important; }
  .justify-content-lg-center {
    justify-content: center !important; }
  .justify-content-lg-between {
    justify-content: space-between !important; }
  .justify-content-lg-around {
    justify-content: space-around !important; }
  .align-items-lg-start {
    align-items: flex-start !important; }
  .align-items-lg-end {
    align-items: flex-end !important; }
  .align-items-lg-center {
    align-items: center !important; }
  .align-items-lg-baseline {
    align-items: baseline !important; }
  .align-items-lg-stretch {
    align-items: stretch !important; }
  .align-content-lg-start {
    align-content: flex-start !important; }
  .align-content-lg-end {
    align-content: flex-end !important; }
  .align-content-lg-center {
    align-content: center !important; }
  .align-content-lg-between {
    align-content: space-between !important; }
  .align-content-lg-around {
    align-content: space-around !important; }
  .align-content-lg-stretch {
    align-content: stretch !important; }
  .align-self-lg-auto {
    align-self: auto !important; }
  .align-self-lg-start {
    align-self: flex-start !important; }
  .align-self-lg-end {
    align-self: flex-end !important; }
  .align-self-lg-center {
    align-self: center !important; }
  .align-self-lg-baseline {
    align-self: baseline !important; }
  .align-self-lg-stretch {
    align-self: stretch !important; } }

.float-left {
  float: left !important; }

.float-right {
  float: right !important; }

.float-none {
  float: none !important; }

@media (min-width: 576px) {
  .float-sm-left {
    float: left !important; }
  .float-sm-right {
    float: right !important; }
  .float-sm-none {
    float: none !important; } }

@media (min-width: 1020px) {
  .float-md-left {
    float: left !important; }
  .float-md-right {
    float: right !important; }
  .float-md-none {
    float: none !important; } }

@media (min-width: 1440px) {
  .float-lg-left {
    float: left !important; }
  .float-lg-right {
    float: right !important; }
  .float-lg-none {
    float: none !important; } }

.position-static {
  position: static !important; }

.position-relative {
  position: relative !important; }

.position-absolute {
  position: absolute !important; }

.position-fixed {
  position: fixed !important; }

.position-sticky {
  position: sticky !important; }

.fixed-top {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 1030; }

.fixed-bottom {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1030; }

@supports (position: sticky) {
  .sticky-top {
    position: sticky;
    top: 0;
    z-index: 1020; } }

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0; }

.sr-only-focusable:active, .sr-only-focusable:focus {
  position: static;
  width: auto;
  height: auto;
  overflow: visible;
  clip: auto;
  white-space: normal; }

.shadow-sm {
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075) !important; }

.shadow {
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15) !important; }

.shadow-lg {
  box-shadow: 0 1rem 3rem rgba(0, 0, 0, 0.175) !important; }

.shadow-none {
  box-shadow: none !important; }

.w-25 {
  width: 25% !important; }

.w-50 {
  width: 50% !important; }

.w-75 {
  width: 75% !important; }

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

.w-auto {
  width: auto !important; }

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

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

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

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

.h-auto {
  height: auto !important; }

.mw-100 {
  max-width: 100% !important; }

.mh-100 {
  max-height: 100% !important; }

.m-0 {
  margin: 0 !important; }

.mt-0,
.my-0 {
  margin-top: 0 !important; }

.mr-0,
.mx-0 {
  margin-right: 0 !important; }

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

.ml-0,
.mx-0 {
  margin-left: 0 !important; }

.m-1 {
  margin: 0.25rem !important; }

.mt-1,
.my-1 {
  margin-top: 0.25rem !important; }

.mr-1,
.mx-1 {
  margin-right: 0.25rem !important; }

.mb-1,
.my-1 {
  margin-bottom: 0.25rem !important; }

.ml-1,
.mx-1 {
  margin-left: 0.25rem !important; }

.m-2 {
  margin: 0.5rem !important; }

.mt-2,
.my-2 {
  margin-top: 0.5rem !important; }

.mr-2,
.mx-2 {
  margin-right: 0.5rem !important; }

.mb-2,
.my-2 {
  margin-bottom: 0.5rem !important; }

.ml-2,
.mx-2 {
  margin-left: 0.5rem !important; }

.m-3 {
  margin: 1rem !important; }

.mt-3,
.my-3 {
  margin-top: 1rem !important; }

.mr-3,
.mx-3 {
  margin-right: 1rem !important; }

.mb-3,
.my-3 {
  margin-bottom: 1rem !important; }

.ml-3,
.mx-3 {
  margin-left: 1rem !important; }

.m-4 {
  margin: 1.5rem !important; }

.mt-4,
.my-4 {
  margin-top: 1.5rem !important; }

.mr-4,
.mx-4 {
  margin-right: 1.5rem !important; }

.mb-4,
.my-4 {
  margin-bottom: 1.5rem !important; }

.ml-4,
.mx-4 {
  margin-left: 1.5rem !important; }

.m-5 {
  margin: 3rem !important; }

.mt-5,
.my-5 {
  margin-top: 3rem !important; }

.mr-5,
.mx-5 {
  margin-right: 3rem !important; }

.mb-5,
.my-5 {
  margin-bottom: 3rem !important; }

.ml-5,
.mx-5 {
  margin-left: 3rem !important; }

.p-0 {
  padding: 0 !important; }

.pt-0,
.py-0 {
  padding-top: 0 !important; }

.pr-0,
.px-0 {
  padding-right: 0 !important; }

.pb-0,
.py-0 {
  padding-bottom: 0 !important; }

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

.p-1 {
  padding: 0.25rem !important; }

.pt-1,
.py-1 {
  padding-top: 0.25rem !important; }

.pr-1,
.px-1 {
  padding-right: 0.25rem !important; }

.pb-1,
.py-1 {
  padding-bottom: 0.25rem !important; }

.pl-1,
.px-1 {
  padding-left: 0.25rem !important; }

.p-2 {
  padding: 0.5rem !important; }

.pt-2,
.py-2 {
  padding-top: 0.5rem !important; }

.pr-2,
.px-2 {
  padding-right: 0.5rem !important; }

.pb-2,
.py-2 {
  padding-bottom: 0.5rem !important; }

.pl-2,
.px-2 {
  padding-left: 0.5rem !important; }

.p-3 {
  padding: 1rem !important; }

.pt-3,
.py-3 {
  padding-top: 1rem !important; }

.pr-3,
.px-3 {
  padding-right: 1rem !important; }

.pb-3,
.py-3 {
  padding-bottom: 1rem !important; }

.pl-3,
.px-3 {
  padding-left: 1rem !important; }

.p-4 {
  padding: 1.5rem !important; }

.pt-4,
.py-4 {
  padding-top: 1.5rem !important; }

.pr-4,
.px-4 {
  padding-right: 1.5rem !important; }

.pb-4,
.py-4 {
  padding-bottom: 1.5rem !important; }

.pl-4,
.px-4 {
  padding-left: 1.5rem !important; }

.p-5 {
  padding: 3rem !important; }

.pt-5,
.py-5 {
  padding-top: 3rem !important; }

.pr-5,
.px-5 {
  padding-right: 3rem !important; }

.pb-5,
.py-5 {
  padding-bottom: 3rem !important; }

.pl-5,
.px-5 {
  padding-left: 3rem !important; }

.m-auto {
  margin: auto !important; }

.mt-auto,
.my-auto {
  margin-top: auto !important; }

.mr-auto,
.mx-auto {
  margin-right: auto !important; }

.mb-auto,
.my-auto {
  margin-bottom: auto !important; }

.ml-auto,
.mx-auto {
  margin-left: auto !important; }

@media (min-width: 576px) {
  .m-sm-0 {
    margin: 0 !important; }
  .mt-sm-0,
  .my-sm-0 {
    margin-top: 0 !important; }
  .mr-sm-0,
  .mx-sm-0 {
    margin-right: 0 !important; }
  .mb-sm-0,
  .my-sm-0 {
    margin-bottom: 0 !important; }
  .ml-sm-0,
  .mx-sm-0 {
    margin-left: 0 !important; }
  .m-sm-1 {
    margin: 0.25rem !important; }
  .mt-sm-1,
  .my-sm-1 {
    margin-top: 0.25rem !important; }
  .mr-sm-1,
  .mx-sm-1 {
    margin-right: 0.25rem !important; }
  .mb-sm-1,
  .my-sm-1 {
    margin-bottom: 0.25rem !important; }
  .ml-sm-1,
  .mx-sm-1 {
    margin-left: 0.25rem !important; }
  .m-sm-2 {
    margin: 0.5rem !important; }
  .mt-sm-2,
  .my-sm-2 {
    margin-top: 0.5rem !important; }
  .mr-sm-2,
  .mx-sm-2 {
    margin-right: 0.5rem !important; }
  .mb-sm-2,
  .my-sm-2 {
    margin-bottom: 0.5rem !important; }
  .ml-sm-2,
  .mx-sm-2 {
    margin-left: 0.5rem !important; }
  .m-sm-3 {
    margin: 1rem !important; }
  .mt-sm-3,
  .my-sm-3 {
    margin-top: 1rem !important; }
  .mr-sm-3,
  .mx-sm-3 {
    margin-right: 1rem !important; }
  .mb-sm-3,
  .my-sm-3 {
    margin-bottom: 1rem !important; }
  .ml-sm-3,
  .mx-sm-3 {
    margin-left: 1rem !important; }
  .m-sm-4 {
    margin: 1.5rem !important; }
  .mt-sm-4,
  .my-sm-4 {
    margin-top: 1.5rem !important; }
  .mr-sm-4,
  .mx-sm-4 {
    margin-right: 1.5rem !important; }
  .mb-sm-4,
  .my-sm-4 {
    margin-bottom: 1.5rem !important; }
  .ml-sm-4,
  .mx-sm-4 {
    margin-left: 1.5rem !important; }
  .m-sm-5 {
    margin: 3rem !important; }
  .mt-sm-5,
  .my-sm-5 {
    margin-top: 3rem !important; }
  .mr-sm-5,
  .mx-sm-5 {
    margin-right: 3rem !important; }
  .mb-sm-5,
  .my-sm-5 {
    margin-bottom: 3rem !important; }
  .ml-sm-5,
  .mx-sm-5 {
    margin-left: 3rem !important; }
  .p-sm-0 {
    padding: 0 !important; }
  .pt-sm-0,
  .py-sm-0 {
    padding-top: 0 !important; }
  .pr-sm-0,
  .px-sm-0 {
    padding-right: 0 !important; }
  .pb-sm-0,
  .py-sm-0 {
    padding-bottom: 0 !important; }
  .pl-sm-0,
  .px-sm-0 {
    padding-left: 0 !important; }
  .p-sm-1 {
    padding: 0.25rem !important; }
  .pt-sm-1,
  .py-sm-1 {
    padding-top: 0.25rem !important; }
  .pr-sm-1,
  .px-sm-1 {
    padding-right: 0.25rem !important; }
  .pb-sm-1,
  .py-sm-1 {
    padding-bottom: 0.25rem !important; }
  .pl-sm-1,
  .px-sm-1 {
    padding-left: 0.25rem !important; }
  .p-sm-2 {
    padding: 0.5rem !important; }
  .pt-sm-2,
  .py-sm-2 {
    padding-top: 0.5rem !important; }
  .pr-sm-2,
  .px-sm-2 {
    padding-right: 0.5rem !important; }
  .pb-sm-2,
  .py-sm-2 {
    padding-bottom: 0.5rem !important; }
  .pl-sm-2,
  .px-sm-2 {
    padding-left: 0.5rem !important; }
  .p-sm-3 {
    padding: 1rem !important; }
  .pt-sm-3,
  .py-sm-3 {
    padding-top: 1rem !important; }
  .pr-sm-3,
  .px-sm-3 {
    padding-right: 1rem !important; }
  .pb-sm-3,
  .py-sm-3 {
    padding-bottom: 1rem !important; }
  .pl-sm-3,
  .px-sm-3 {
    padding-left: 1rem !important; }
  .p-sm-4 {
    padding: 1.5rem !important; }
  .pt-sm-4,
  .py-sm-4 {
    padding-top: 1.5rem !important; }
  .pr-sm-4,
  .px-sm-4 {
    padding-right: 1.5rem !important; }
  .pb-sm-4,
  .py-sm-4 {
    padding-bottom: 1.5rem !important; }
  .pl-sm-4,
  .px-sm-4 {
    padding-left: 1.5rem !important; }
  .p-sm-5 {
    padding: 3rem !important; }
  .pt-sm-5,
  .py-sm-5 {
    padding-top: 3rem !important; }
  .pr-sm-5,
  .px-sm-5 {
    padding-right: 3rem !important; }
  .pb-sm-5,
  .py-sm-5 {
    padding-bottom: 3rem !important; }
  .pl-sm-5,
  .px-sm-5 {
    padding-left: 3rem !important; }
  .m-sm-auto {
    margin: auto !important; }
  .mt-sm-auto,
  .my-sm-auto {
    margin-top: auto !important; }
  .mr-sm-auto,
  .mx-sm-auto {
    margin-right: auto !important; }
  .mb-sm-auto,
  .my-sm-auto {
    margin-bottom: auto !important; }
  .ml-sm-auto,
  .mx-sm-auto {
    margin-left: auto !important; } }

@media (min-width: 1020px) {
  .m-md-0 {
    margin: 0 !important; }
  .mt-md-0,
  .my-md-0 {
    margin-top: 0 !important; }
  .mr-md-0,
  .mx-md-0 {
    margin-right: 0 !important; }
  .mb-md-0,
  .my-md-0 {
    margin-bottom: 0 !important; }
  .ml-md-0,
  .mx-md-0 {
    margin-left: 0 !important; }
  .m-md-1 {
    margin: 0.25rem !important; }
  .mt-md-1,
  .my-md-1 {
    margin-top: 0.25rem !important; }
  .mr-md-1,
  .mx-md-1 {
    margin-right: 0.25rem !important; }
  .mb-md-1,
  .my-md-1 {
    margin-bottom: 0.25rem !important; }
  .ml-md-1,
  .mx-md-1 {
    margin-left: 0.25rem !important; }
  .m-md-2 {
    margin: 0.5rem !important; }
  .mt-md-2,
  .my-md-2 {
    margin-top: 0.5rem !important; }
  .mr-md-2,
  .mx-md-2 {
    margin-right: 0.5rem !important; }
  .mb-md-2,
  .my-md-2 {
    margin-bottom: 0.5rem !important; }
  .ml-md-2,
  .mx-md-2 {
    margin-left: 0.5rem !important; }
  .m-md-3 {
    margin: 1rem !important; }
  .mt-md-3,
  .my-md-3 {
    margin-top: 1rem !important; }
  .mr-md-3,
  .mx-md-3 {
    margin-right: 1rem !important; }
  .mb-md-3,
  .my-md-3 {
    margin-bottom: 1rem !important; }
  .ml-md-3,
  .mx-md-3 {
    margin-left: 1rem !important; }
  .m-md-4 {
    margin: 1.5rem !important; }
  .mt-md-4,
  .my-md-4 {
    margin-top: 1.5rem !important; }
  .mr-md-4,
  .mx-md-4 {
    margin-right: 1.5rem !important; }
  .mb-md-4,
  .my-md-4 {
    margin-bottom: 1.5rem !important; }
  .ml-md-4,
  .mx-md-4 {
    margin-left: 1.5rem !important; }
  .m-md-5 {
    margin: 3rem !important; }
  .mt-md-5,
  .my-md-5 {
    margin-top: 3rem !important; }
  .mr-md-5,
  .mx-md-5 {
    margin-right: 3rem !important; }
  .mb-md-5,
  .my-md-5 {
    margin-bottom: 3rem !important; }
  .ml-md-5,
  .mx-md-5 {
    margin-left: 3rem !important; }
  .p-md-0 {
    padding: 0 !important; }
  .pt-md-0,
  .py-md-0 {
    padding-top: 0 !important; }
  .pr-md-0,
  .px-md-0 {
    padding-right: 0 !important; }
  .pb-md-0,
  .py-md-0 {
    padding-bottom: 0 !important; }
  .pl-md-0,
  .px-md-0 {
    padding-left: 0 !important; }
  .p-md-1 {
    padding: 0.25rem !important; }
  .pt-md-1,
  .py-md-1 {
    padding-top: 0.25rem !important; }
  .pr-md-1,
  .px-md-1 {
    padding-right: 0.25rem !important; }
  .pb-md-1,
  .py-md-1 {
    padding-bottom: 0.25rem !important; }
  .pl-md-1,
  .px-md-1 {
    padding-left: 0.25rem !important; }
  .p-md-2 {
    padding: 0.5rem !important; }
  .pt-md-2,
  .py-md-2 {
    padding-top: 0.5rem !important; }
  .pr-md-2,
  .px-md-2 {
    padding-right: 0.5rem !important; }
  .pb-md-2,
  .py-md-2 {
    padding-bottom: 0.5rem !important; }
  .pl-md-2,
  .px-md-2 {
    padding-left: 0.5rem !important; }
  .p-md-3 {
    padding: 1rem !important; }
  .pt-md-3,
  .py-md-3 {
    padding-top: 1rem !important; }
  .pr-md-3,
  .px-md-3 {
    padding-right: 1rem !important; }
  .pb-md-3,
  .py-md-3 {
    padding-bottom: 1rem !important; }
  .pl-md-3,
  .px-md-3 {
    padding-left: 1rem !important; }
  .p-md-4 {
    padding: 1.5rem !important; }
  .pt-md-4,
  .py-md-4 {
    padding-top: 1.5rem !important; }
  .pr-md-4,
  .px-md-4 {
    padding-right: 1.5rem !important; }
  .pb-md-4,
  .py-md-4 {
    padding-bottom: 1.5rem !important; }
  .pl-md-4,
  .px-md-4 {
    padding-left: 1.5rem !important; }
  .p-md-5 {
    padding: 3rem !important; }
  .pt-md-5,
  .py-md-5 {
    padding-top: 3rem !important; }
  .pr-md-5,
  .px-md-5 {
    padding-right: 3rem !important; }
  .pb-md-5,
  .py-md-5 {
    padding-bottom: 3rem !important; }
  .pl-md-5,
  .px-md-5 {
    padding-left: 3rem !important; }
  .m-md-auto {
    margin: auto !important; }
  .mt-md-auto,
  .my-md-auto {
    margin-top: auto !important; }
  .mr-md-auto,
  .mx-md-auto {
    margin-right: auto !important; }
  .mb-md-auto,
  .my-md-auto {
    margin-bottom: auto !important; }
  .ml-md-auto,
  .mx-md-auto {
    margin-left: auto !important; } }

@media (min-width: 1440px) {
  .m-lg-0 {
    margin: 0 !important; }
  .mt-lg-0,
  .my-lg-0 {
    margin-top: 0 !important; }
  .mr-lg-0,
  .mx-lg-0 {
    margin-right: 0 !important; }
  .mb-lg-0,
  .my-lg-0 {
    margin-bottom: 0 !important; }
  .ml-lg-0,
  .mx-lg-0 {
    margin-left: 0 !important; }
  .m-lg-1 {
    margin: 0.25rem !important; }
  .mt-lg-1,
  .my-lg-1 {
    margin-top: 0.25rem !important; }
  .mr-lg-1,
  .mx-lg-1 {
    margin-right: 0.25rem !important; }
  .mb-lg-1,
  .my-lg-1 {
    margin-bottom: 0.25rem !important; }
  .ml-lg-1,
  .mx-lg-1 {
    margin-left: 0.25rem !important; }
  .m-lg-2 {
    margin: 0.5rem !important; }
  .mt-lg-2,
  .my-lg-2 {
    margin-top: 0.5rem !important; }
  .mr-lg-2,
  .mx-lg-2 {
    margin-right: 0.5rem !important; }
  .mb-lg-2,
  .my-lg-2 {
    margin-bottom: 0.5rem !important; }
  .ml-lg-2,
  .mx-lg-2 {
    margin-left: 0.5rem !important; }
  .m-lg-3 {
    margin: 1rem !important; }
  .mt-lg-3,
  .my-lg-3 {
    margin-top: 1rem !important; }
  .mr-lg-3,
  .mx-lg-3 {
    margin-right: 1rem !important; }
  .mb-lg-3,
  .my-lg-3 {
    margin-bottom: 1rem !important; }
  .ml-lg-3,
  .mx-lg-3 {
    margin-left: 1rem !important; }
  .m-lg-4 {
    margin: 1.5rem !important; }
  .mt-lg-4,
  .my-lg-4 {
    margin-top: 1.5rem !important; }
  .mr-lg-4,
  .mx-lg-4 {
    margin-right: 1.5rem !important; }
  .mb-lg-4,
  .my-lg-4 {
    margin-bottom: 1.5rem !important; }
  .ml-lg-4,
  .mx-lg-4 {
    margin-left: 1.5rem !important; }
  .m-lg-5 {
    margin: 3rem !important; }
  .mt-lg-5,
  .my-lg-5 {
    margin-top: 3rem !important; }
  .mr-lg-5,
  .mx-lg-5 {
    margin-right: 3rem !important; }
  .mb-lg-5,
  .my-lg-5 {
    margin-bottom: 3rem !important; }
  .ml-lg-5,
  .mx-lg-5 {
    margin-left: 3rem !important; }
  .p-lg-0 {
    padding: 0 !important; }
  .pt-lg-0,
  .py-lg-0 {
    padding-top: 0 !important; }
  .pr-lg-0,
  .px-lg-0 {
    padding-right: 0 !important; }
  .pb-lg-0,
  .py-lg-0 {
    padding-bottom: 0 !important; }
  .pl-lg-0,
  .px-lg-0 {
    padding-left: 0 !important; }
  .p-lg-1 {
    padding: 0.25rem !important; }
  .pt-lg-1,
  .py-lg-1 {
    padding-top: 0.25rem !important; }
  .pr-lg-1,
  .px-lg-1 {
    padding-right: 0.25rem !important; }
  .pb-lg-1,
  .py-lg-1 {
    padding-bottom: 0.25rem !important; }
  .pl-lg-1,
  .px-lg-1 {
    padding-left: 0.25rem !important; }
  .p-lg-2 {
    padding: 0.5rem !important; }
  .pt-lg-2,
  .py-lg-2 {
    padding-top: 0.5rem !important; }
  .pr-lg-2,
  .px-lg-2 {
    padding-right: 0.5rem !important; }
  .pb-lg-2,
  .py-lg-2 {
    padding-bottom: 0.5rem !important; }
  .pl-lg-2,
  .px-lg-2 {
    padding-left: 0.5rem !important; }
  .p-lg-3 {
    padding: 1rem !important; }
  .pt-lg-3,
  .py-lg-3 {
    padding-top: 1rem !important; }
  .pr-lg-3,
  .px-lg-3 {
    padding-right: 1rem !important; }
  .pb-lg-3,
  .py-lg-3 {
    padding-bottom: 1rem !important; }
  .pl-lg-3,
  .px-lg-3 {
    padding-left: 1rem !important; }
  .p-lg-4 {
    padding: 1.5rem !important; }
  .pt-lg-4,
  .py-lg-4 {
    padding-top: 1.5rem !important; }
  .pr-lg-4,
  .px-lg-4 {
    padding-right: 1.5rem !important; }
  .pb-lg-4,
  .py-lg-4 {
    padding-bottom: 1.5rem !important; }
  .pl-lg-4,
  .px-lg-4 {
    padding-left: 1.5rem !important; }
  .p-lg-5 {
    padding: 3rem !important; }
  .pt-lg-5,
  .py-lg-5 {
    padding-top: 3rem !important; }
  .pr-lg-5,
  .px-lg-5 {
    padding-right: 3rem !important; }
  .pb-lg-5,
  .py-lg-5 {
    padding-bottom: 3rem !important; }
  .pl-lg-5,
  .px-lg-5 {
    padding-left: 3rem !important; }
  .m-lg-auto {
    margin: auto !important; }
  .mt-lg-auto,
  .my-lg-auto {
    margin-top: auto !important; }
  .mr-lg-auto,
  .mx-lg-auto {
    margin-right: auto !important; }
  .mb-lg-auto,
  .my-lg-auto {
    margin-bottom: auto !important; }
  .ml-lg-auto,
  .mx-lg-auto {
    margin-left: auto !important; } }

.text-monospace {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace; }

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

.text-nowrap {
  white-space: nowrap !important; }

.text-truncate {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap; }

.text-left {
  text-align: left !important; }

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

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

@media (min-width: 576px) {
  .text-sm-left {
    text-align: left !important; }
  .text-sm-right {
    text-align: right !important; }
  .text-sm-center {
    text-align: center !important; } }

@media (min-width: 1020px) {
  .text-md-left {
    text-align: left !important; }
  .text-md-right {
    text-align: right !important; }
  .text-md-center {
    text-align: center !important; } }

@media (min-width: 1440px) {
  .text-lg-left {
    text-align: left !important; }
  .text-lg-right {
    text-align: right !important; }
  .text-lg-center {
    text-align: center !important; } }

.text-lowercase {
  text-transform: lowercase !important; }

.text-uppercase {
  text-transform: uppercase !important; }

.text-capitalize {
  text-transform: capitalize !important; }

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

.font-weight-normal {
  font-weight: 400 !important; }

.font-weight-bold {
  font-weight: 700 !important; }

.font-italic {
  font-style: italic !important; }

.text-white {
  color: #fff !important; }

.text-primary {
  color: #007bff !important; }

a.text-primary:hover, a.text-primary:focus {
  color: #0062cc !important; }

.text-secondary {
  color: #6c757d !important; }

a.text-secondary:hover, a.text-secondary:focus {
  color: #545b62 !important; }

.text-success {
  color: #28a745 !important; }

a.text-success:hover, a.text-success:focus {
  color: #1e7e34 !important; }

.text-info {
  color: #87cefa !important; }

a.text-info:hover, a.text-info:focus {
  color: #56baf8 !important; }

.text-warning {
  color: #ffc107 !important; }

a.text-warning:hover, a.text-warning:focus {
  color: #d39e00 !important; }

.text-danger {
  color: #dc3545 !important; }

a.text-danger:hover, a.text-danger:focus {
  color: #bd2130 !important; }

.text-light {
  color: #f8f9fa !important; }

a.text-light:hover, a.text-light:focus {
  color: #dae0e5 !important; }

.text-dark {
  color: #343a40 !important; }

a.text-dark:hover, a.text-dark:focus {
  color: #1d2124 !important; }

.text-body {
  color: #212529 !important; }

.text-muted {
  color: #6c757d !important; }

.text-black-50 {
  color: rgba(0, 0, 0, 0.5) !important; }

.text-white-50 {
  color: rgba(255, 255, 255, 0.5) !important; }

.text-hide {
  font: 0/0 a;
  color: transparent;
  text-shadow: none;
  background-color: transparent;
  border: 0; }

.visible {
  visibility: visible !important; }

.invisible {
  visibility: hidden !important; }

/*!
 * Bootstrap Grid v4.1.3 (https://getbootstrap.com/)
 * Copyright 2011-2018 The Bootstrap Authors
 * Copyright 2011-2018 Twitter, Inc.
 * Licensed under MIT (https://github.com/twbs/bootstrap/blob/master/LICENSE)
 */

html {
  box-sizing: border-box;
  -ms-overflow-style: scrollbar; }

*,
*::before,
*::after {
  box-sizing: inherit; }

.container {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto; }
  @media (min-width: 576px) {
    .container {
      max-width: 720px; } }
  @media (min-width: 1020px) {
    .container {
      max-width: 980px; } }
  @media (min-width: 1440px) {
    .container {
      max-width: 1340px; } }

.container-fluid {
  width: 100%;
  padding-right: 20px;
  padding-left: 20px;
  margin-right: auto;
  margin-left: auto; }

.row {
  display: flex;
  flex-wrap: wrap;
  margin-right: -20px;
  margin-left: -20px; }

.no-gutters {
  margin-right: 0;
  margin-left: 0; }
  .no-gutters > .col,
  .no-gutters > [class*="col-"] {
    padding-right: 0;
    padding-left: 0; }

.col-1, .col-2, .col-3, .col-4, .col-5, .col-6, .col-7, .col-8, .col-9, .col-10, .col-11, .col-12, .col,
.col-auto, .col-sm-1, .col-sm-2, .col-sm-3, .col-sm-4, .col-sm-5, .col-sm-6, .col-sm-7, .col-sm-8, .col-sm-9, .col-sm-10, .col-sm-11, .col-sm-12, .col-sm,
.col-sm-auto, .col-md-1, .col-md-2, .col-md-3, .col-md-4, .col-md-5, .col-md-6, .col-md-7, .col-md-8, .col-md-9, .col-md-10, .col-md-11, .col-md-12, .col-md,
.col-md-auto, .col-lg-1, .col-lg-2, .col-lg-3, .col-lg-4, .col-lg-5, .col-lg-6, .col-lg-7, .col-lg-8, .col-lg-9, .col-lg-10, .col-lg-11, .col-lg-12, .col-lg,
.col-lg-auto {
  position: relative;
  width: 100%;
  min-height: 1px;
  padding-right: 20px;
  padding-left: 20px; }

.col {
  flex-basis: 0;
  flex-grow: 1;
  max-width: 100%; }

.col-auto {
  flex: 0 0 auto;
  width: auto;
  max-width: none; }

.col-1 {
  flex: 0 0 8.33333%;
  max-width: 8.33333%; }

.col-2 {
  flex: 0 0 16.66667%;
  max-width: 16.66667%; }

.col-3 {
  flex: 0 0 25%;
  max-width: 25%; }

.col-4 {
  flex: 0 0 33.33333%;
  max-width: 33.33333%; }

.col-5 {
  flex: 0 0 41.66667%;
  max-width: 41.66667%; }

.col-6 {
  flex: 0 0 50%;
  max-width: 50%; }

.col-7 {
  flex: 0 0 58.33333%;
  max-width: 58.33333%; }

.col-8 {
  flex: 0 0 66.66667%;
  max-width: 66.66667%; }

.col-9 {
  flex: 0 0 75%;
  max-width: 75%; }

.col-10 {
  flex: 0 0 83.33333%;
  max-width: 83.33333%; }

.col-11 {
  flex: 0 0 91.66667%;
  max-width: 91.66667%; }

.col-12 {
  flex: 0 0 100%;
  max-width: 100%; }

.order-first {
  order: -1; }

.order-last {
  order: 13; }

.order-0 {
  order: 0; }

.order-1 {
  order: 1; }

.order-2 {
  order: 2; }

.order-3 {
  order: 3; }

.order-4 {
  order: 4; }

.order-5 {
  order: 5; }

.order-6 {
  order: 6; }

.order-7 {
  order: 7; }

.order-8 {
  order: 8; }

.order-9 {
  order: 9; }

.order-10 {
  order: 10; }

.order-11 {
  order: 11; }

.order-12 {
  order: 12; }

.offset-1 {
  margin-left: 8.33333%; }

.offset-2 {
  margin-left: 16.66667%; }

.offset-3 {
  margin-left: 25%; }

.offset-4 {
  margin-left: 33.33333%; }

.offset-5 {
  margin-left: 41.66667%; }

.offset-6 {
  margin-left: 50%; }

.offset-7 {
  margin-left: 58.33333%; }

.offset-8 {
  margin-left: 66.66667%; }

.offset-9 {
  margin-left: 75%; }

.offset-10 {
  margin-left: 83.33333%; }

.offset-11 {
  margin-left: 91.66667%; }

@media (min-width: 576px) {
  .col-sm {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%; }
  .col-sm-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none; }
  .col-sm-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .col-sm-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .col-sm-3 {
    flex: 0 0 25%;
    max-width: 25%; }
  .col-sm-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .col-sm-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .col-sm-6 {
    flex: 0 0 50%;
    max-width: 50%; }
  .col-sm-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .col-sm-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .col-sm-9 {
    flex: 0 0 75%;
    max-width: 75%; }
  .col-sm-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .col-sm-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .col-sm-12 {
    flex: 0 0 100%;
    max-width: 100%; }
  .order-sm-first {
    order: -1; }
  .order-sm-last {
    order: 13; }
  .order-sm-0 {
    order: 0; }
  .order-sm-1 {
    order: 1; }
  .order-sm-2 {
    order: 2; }
  .order-sm-3 {
    order: 3; }
  .order-sm-4 {
    order: 4; }
  .order-sm-5 {
    order: 5; }
  .order-sm-6 {
    order: 6; }
  .order-sm-7 {
    order: 7; }
  .order-sm-8 {
    order: 8; }
  .order-sm-9 {
    order: 9; }
  .order-sm-10 {
    order: 10; }
  .order-sm-11 {
    order: 11; }
  .order-sm-12 {
    order: 12; }
  .offset-sm-0 {
    margin-left: 0; }
  .offset-sm-1 {
    margin-left: 8.33333%; }
  .offset-sm-2 {
    margin-left: 16.66667%; }
  .offset-sm-3 {
    margin-left: 25%; }
  .offset-sm-4 {
    margin-left: 33.33333%; }
  .offset-sm-5 {
    margin-left: 41.66667%; }
  .offset-sm-6 {
    margin-left: 50%; }
  .offset-sm-7 {
    margin-left: 58.33333%; }
  .offset-sm-8 {
    margin-left: 66.66667%; }
  .offset-sm-9 {
    margin-left: 75%; }
  .offset-sm-10 {
    margin-left: 83.33333%; }
  .offset-sm-11 {
    margin-left: 91.66667%; } }

@media (min-width: 1020px) {
  .col-md {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%; }
  .col-md-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none; }
  .col-md-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .col-md-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .col-md-3 {
    flex: 0 0 25%;
    max-width: 25%; }
  .col-md-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .col-md-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .col-md-6 {
    flex: 0 0 50%;
    max-width: 50%; }
  .col-md-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .col-md-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .col-md-9 {
    flex: 0 0 75%;
    max-width: 75%; }
  .col-md-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .col-md-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .col-md-12 {
    flex: 0 0 100%;
    max-width: 100%; }
  .order-md-first {
    order: -1; }
  .order-md-last {
    order: 13; }
  .order-md-0 {
    order: 0; }
  .order-md-1 {
    order: 1; }
  .order-md-2 {
    order: 2; }
  .order-md-3 {
    order: 3; }
  .order-md-4 {
    order: 4; }
  .order-md-5 {
    order: 5; }
  .order-md-6 {
    order: 6; }
  .order-md-7 {
    order: 7; }
  .order-md-8 {
    order: 8; }
  .order-md-9 {
    order: 9; }
  .order-md-10 {
    order: 10; }
  .order-md-11 {
    order: 11; }
  .order-md-12 {
    order: 12; }
  .offset-md-0 {
    margin-left: 0; }
  .offset-md-1 {
    margin-left: 8.33333%; }
  .offset-md-2 {
    margin-left: 16.66667%; }
  .offset-md-3 {
    margin-left: 25%; }
  .offset-md-4 {
    margin-left: 33.33333%; }
  .offset-md-5 {
    margin-left: 41.66667%; }
  .offset-md-6 {
    margin-left: 50%; }
  .offset-md-7 {
    margin-left: 58.33333%; }
  .offset-md-8 {
    margin-left: 66.66667%; }
  .offset-md-9 {
    margin-left: 75%; }
  .offset-md-10 {
    margin-left: 83.33333%; }
  .offset-md-11 {
    margin-left: 91.66667%; } }

@media (min-width: 1440px) {
  .col-lg {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%; }
  .col-lg-auto {
    flex: 0 0 auto;
    width: auto;
    max-width: none; }
  .col-lg-1 {
    flex: 0 0 8.33333%;
    max-width: 8.33333%; }
  .col-lg-2 {
    flex: 0 0 16.66667%;
    max-width: 16.66667%; }
  .col-lg-3 {
    flex: 0 0 25%;
    max-width: 25%; }
  .col-lg-4 {
    flex: 0 0 33.33333%;
    max-width: 33.33333%; }
  .col-lg-5 {
    flex: 0 0 41.66667%;
    max-width: 41.66667%; }
  .col-lg-6 {
    flex: 0 0 50%;
    max-width: 50%; }
  .col-lg-7 {
    flex: 0 0 58.33333%;
    max-width: 58.33333%; }
  .col-lg-8 {
    flex: 0 0 66.66667%;
    max-width: 66.66667%; }
  .col-lg-9 {
    flex: 0 0 75%;
    max-width: 75%; }
  .col-lg-10 {
    flex: 0 0 83.33333%;
    max-width: 83.33333%; }
  .col-lg-11 {
    flex: 0 0 91.66667%;
    max-width: 91.66667%; }
  .col-lg-12 {
    flex: 0 0 100%;
    max-width: 100%; }
  .order-lg-first {
    order: -1; }
  .order-lg-last {
    order: 13; }
  .order-lg-0 {
    order: 0; }
  .order-lg-1 {
    order: 1; }
  .order-lg-2 {
    order: 2; }
  .order-lg-3 {
    order: 3; }
  .order-lg-4 {
    order: 4; }
  .order-lg-5 {
    order: 5; }
  .order-lg-6 {
    order: 6; }
  .order-lg-7 {
    order: 7; }
  .order-lg-8 {
    order: 8; }
  .order-lg-9 {
    order: 9; }
  .order-lg-10 {
    order: 10; }
  .order-lg-11 {
    order: 11; }
  .order-lg-12 {
    order: 12; }
  .offset-lg-0 {
    margin-left: 0; }
  .offset-lg-1 {
    margin-left: 8.33333%; }
  .offset-lg-2 {
    margin-left: 16.66667%; }
  .offset-lg-3 {
    margin-left: 25%; }
  .offset-lg-4 {
    margin-left: 33.33333%; }
  .offset-lg-5 {
    margin-left: 41.66667%; }
  .offset-lg-6 {
    margin-left: 50%; }
  .offset-lg-7 {
    margin-left: 58.33333%; }
  .offset-lg-8 {
    margin-left: 66.66667%; }
  .offset-lg-9 {
    margin-left: 75%; }
  .offset-lg-10 {
    margin-left: 83.33333%; }
  .offset-lg-11 {
    margin-left: 91.66667%; } }

.d-none {
  display: none !important; }

.d-inline {
  display: inline !important; }

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

.d-block {
  display: block !important; }

.d-table {
  display: table !important; }

.d-table-row {
  display: table-row !important; }

.d-table-cell {
  display: table-cell !important; }

.d-flex {
  display: flex !important; }

.d-inline-flex {
  display: inline-flex !important; }

@media (min-width: 576px) {
  .d-sm-none {
    display: none !important; }
  .d-sm-inline {
    display: inline !important; }
  .d-sm-inline-block {
    display: inline-block !important; }
  .d-sm-block {
    display: block !important; }
  .d-sm-table {
    display: table !important; }
  .d-sm-table-row {
    display: table-row !important; }
  .d-sm-table-cell {
    display: table-cell !important; }
  .d-sm-flex {
    display: flex !important; }
  .d-sm-inline-flex {
    display: inline-flex !important; } }

@media (min-width: 1020px) {
  .d-md-none {
    display: none !important; }
  .d-md-inline {
    display: inline !important; }
  .d-md-inline-block {
    display: inline-block !important; }
  .d-md-block {
    display: block !important; }
  .d-md-table {
    display: table !important; }
  .d-md-table-row {
    display: table-row !important; }
  .d-md-table-cell {
    display: table-cell !important; }
  .d-md-flex {
    display: flex !important; }
  .d-md-inline-flex {
    display: inline-flex !important; } }

@media (min-width: 1440px) {
  .d-lg-none {
    display: none !important; }
  .d-lg-inline {
    display: inline !important; }
  .d-lg-inline-block {
    display: inline-block !important; }
  .d-lg-block {
    display: block !important; }
  .d-lg-table {
    display: table !important; }
  .d-lg-table-row {
    display: table-row !important; }
  .d-lg-table-cell {
    display: table-cell !important; }
  .d-lg-flex {
    display: flex !important; }
  .d-lg-inline-flex {
    display: inline-flex !important; } }

@media print {
  .d-print-none {
    display: none !important; }
  .d-print-inline {
    display: inline !important; }
  .d-print-inline-block {
    display: inline-block !important; }
  .d-print-block {
    display: block !important; }
  .d-print-table {
    display: table !important; }
  .d-print-table-row {
    display: table-row !important; }
  .d-print-table-cell {
    display: table-cell !important; }
  .d-print-flex {
    display: flex !important; }
  .d-print-inline-flex {
    display: inline-flex !important; } }

.flex-row {
  flex-direction: row !important; }

.flex-column {
  flex-direction: column !important; }

.flex-row-reverse {
  flex-direction: row-reverse !important; }

.flex-column-reverse {
  flex-direction: column-reverse !important; }

.flex-wrap {
  flex-wrap: wrap !important; }

.flex-nowrap {
  flex-wrap: nowrap !important; }

.flex-wrap-reverse {
  flex-wrap: wrap-reverse !important; }

.flex-fill {
  flex: 1 1 auto !important; }

.flex-grow-0 {
  flex-grow: 0 !important; }

.flex-grow-1 {
  flex-grow: 1 !important; }

.flex-shrink-0 {
  flex-shrink: 0 !important; }

.flex-shrink-1 {
  flex-shrink: 1 !important; }

.justify-content-start {
  justify-content: flex-start !important; }

.justify-content-end {
  justify-content: flex-end !important; }

.justify-content-center {
  justify-content: center !important; }

.justify-content-between {
  justify-content: space-between !important; }

.justify-content-around {
  justify-content: space-around !important; }

.align-items-start {
  align-items: flex-start !important; }

.align-items-end {
  align-items: flex-end !important; }

.align-items-center {
  align-items: center !important; }

.align-items-baseline {
  align-items: baseline !important; }

.align-items-stretch {
  align-items: stretch !important; }

.align-content-start {
  align-content: flex-start !important; }

.align-content-end {
  align-content: flex-end !important; }

.align-content-center {
  align-content: center !important; }

.align-content-between {
  align-content: space-between !important; }

.align-content-around {
  align-content: space-around !important; }

.align-content-stretch {
  align-content: stretch !important; }

.align-self-auto {
  align-self: auto !important; }

.align-self-start {
  align-self: flex-start !important; }

.align-self-end {
  align-self: flex-end !important; }

.align-self-center {
  align-self: center !important; }

.align-self-baseline {
  align-self: baseline !important; }

.align-self-stretch {
  align-self: stretch !important; }

@media (min-width: 576px) {
  .flex-sm-row {
    flex-direction: row !important; }
  .flex-sm-column {
    flex-direction: column !important; }
  .flex-sm-row-reverse {
    flex-direction: row-reverse !important; }
  .flex-sm-column-reverse {
    flex-direction: column-reverse !important; }
  .flex-sm-wrap {
    flex-wrap: wrap !important; }
  .flex-sm-nowrap {
    flex-wrap: nowrap !important; }
  .flex-sm-wrap-reverse {
    flex-wrap: wrap-reverse !important; }
  .flex-sm-fill {
    flex: 1 1 auto !important; }
  .flex-sm-grow-0 {
    flex-grow: 0 !important; }
  .flex-sm-grow-1 {
    flex-grow: 1 !important; }
  .flex-sm-shrink-0 {
    flex-shrink: 0 !important; }
  .flex-sm-shrink-1 {
    flex-shrink: 1 !important; }
  .justify-content-sm-start {
    justify-content: flex-start !important; }
  .justify-content-sm-end {
    justify-content: flex-end !important; }
  .justify-content-sm-center {
    justify-content: center !important; }
  .justify-content-sm-between {
    justify-content: space-between !important; }
  .justify-content-sm-around {
    justify-content: space-around !important; }
  .align-items-sm-start {
    align-items: flex-start !important; }
  .align-items-sm-end {
    align-items: flex-end !important; }
  .align-items-sm-center {
    align-items: center !important; }
  .align-items-sm-baseline {
    align-items: baseline !important; }
  .align-items-sm-stretch {
    align-items: stretch !important; }
  .align-content-sm-start {
    align-content: flex-start !important; }
  .align-content-sm-end {
    align-content: flex-end !important; }
  .align-content-sm-center {
    align-content: center !important; }
  .align-content-sm-between {
    align-content: space-between !important; }
  .align-content-sm-around {
    align-content: space-around !important; }
  .align-content-sm-stretch {
    align-content: stretch !important; }
  .align-self-sm-auto {
    align-self: auto !important; }
  .align-self-sm-start {
    align-self: flex-start !important; }
  .align-self-sm-end {
    align-self: flex-end !important; }
  .align-self-sm-center {
    align-self: center !important; }
  .align-self-sm-baseline {
    align-self: baseline !important; }
  .align-self-sm-stretch {
    align-self: stretch !important; } }

@media (min-width: 1020px) {
  .flex-md-row {
    flex-direction: row !important; }
  .flex-md-column {
    flex-direction: column !important; }
  .flex-md-row-reverse {
    flex-direction: row-reverse !important; }
  .flex-md-column-reverse {
    flex-direction: column-reverse !important; }
  .flex-md-wrap {
    flex-wrap: wrap !important; }
  .flex-md-nowrap {
    flex-wrap: nowrap !important; }
  .flex-md-wrap-reverse {
    flex-wrap: wrap-reverse !important; }
  .flex-md-fill {
    flex: 1 1 auto !important; }
  .flex-md-grow-0 {
    flex-grow: 0 !important; }
  .flex-md-grow-1 {
    flex-grow: 1 !important; }
  .flex-md-shrink-0 {
    flex-shrink: 0 !important; }
  .flex-md-shrink-1 {
    flex-shrink: 1 !important; }
  .justify-content-md-start {
    justify-content: flex-start !important; }
  .justify-content-md-end {
    justify-content: flex-end !important; }
  .justify-content-md-center {
    justify-content: center !important; }
  .justify-content-md-between {
    justify-content: space-between !important; }
  .justify-content-md-around {
    justify-content: space-around !important; }
  .align-items-md-start {
    align-items: flex-start !important; }
  .align-items-md-end {
    align-items: flex-end !important; }
  .align-items-md-center {
    align-items: center !important; }
  .align-items-md-baseline {
    align-items: baseline !important; }
  .align-items-md-stretch {
    align-items: stretch !important; }
  .align-content-md-start {
    align-content: flex-start !important; }
  .align-content-md-end {
    align-content: flex-end !important; }
  .align-content-md-center {
    align-content: center !important; }
  .align-content-md-between {
    align-content: space-between !important; }
  .align-content-md-around {
    align-content: space-around !important; }
  .align-content-md-stretch {
    align-content: stretch !important; }
  .align-self-md-auto {
    align-self: auto !important; }
  .align-self-md-start {
    align-self: flex-start !important; }
  .align-self-md-end {
    align-self: flex-end !important; }
  .align-self-md-center {
    align-self: center !important; }
  .align-self-md-baseline {
    align-self: baseline !important; }
  .align-self-md-stretch {
    align-self: stretch !important; } }

@media (min-width: 1440px) {
  .flex-lg-row {
    flex-direction: row !important; }
  .flex-lg-column {
    flex-direction: column !important; }
  .flex-lg-row-reverse {
    flex-direction: row-reverse !important; }
  .flex-lg-column-reverse {
    flex-direction: column-reverse !important; }
  .flex-lg-wrap {
    flex-wrap: wrap !important; }
  .flex-lg-nowrap {
    flex-wrap: nowrap !important; }
  .flex-lg-wrap-reverse {
    flex-wrap: wrap-reverse !important; }
  .flex-lg-fill {
    flex: 1 1 auto !important; }
  .flex-lg-grow-0 {
    flex-grow: 0 !important; }
  .flex-lg-grow-1 {
    flex-grow: 1 !important; }
  .flex-lg-shrink-0 {
    flex-shrink: 0 !important; }
  .flex-lg-shrink-1 {
    flex-shrink: 1 !important; }
  .justify-content-lg-start {
    justify-content: flex-start !important; }
  .justify-content-lg-end {
    justify-content: flex-end !important; }
  .justify-content-lg-center {
    justify-content: center !important; }
  .justify-content-lg-between {
    justify-content: space-between !important; }
  .justify-content-lg-around {
    justify-content: space-around !important; }
  .align-items-lg-start {
    align-items: flex-start !important; }
  .align-items-lg-end {
    align-items: flex-end !important; }
  .align-items-lg-center {
    align-items: center !important; }
  .align-items-lg-baseline {
    align-items: baseline !important; }
  .align-items-lg-stretch {
    align-items: stretch !important; }
  .align-content-lg-start {
    align-content: flex-start !important; }
  .align-content-lg-end {
    align-content: flex-end !important; }
  .align-content-lg-center {
    align-content: center !important; }
  .align-content-lg-between {
    align-content: space-between !important; }
  .align-content-lg-around {
    align-content: space-around !important; }
  .align-content-lg-stretch {
    align-content: stretch !important; }
  .align-self-lg-auto {
    align-self: auto !important; }
  .align-self-lg-start {
    align-self: flex-start !important; }
  .align-self-lg-end {
    align-self: flex-end !important; }
  .align-self-lg-center {
    align-self: center !important; }
  .align-self-lg-baseline {
    align-self: baseline !important; }
  .align-self-lg-stretch {
    align-self: stretch !important; } }

.fade {
  transition: opacity 0.15s linear; }
  @media screen and (prefers-reduced-motion: reduce) {
    .fade {
      transition: none; } }
  .fade:not(.show) {
    opacity: 0; }

.collapse:not(.show) {
  display: none; }

.collapsing {
  position: relative;
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease; }
  @media screen and (prefers-reduced-motion: reduce) {
    .collapsing {
      transition: none; } }

.modal-open {
  overflow: hidden; }
  .modal-open .modal {
    overflow-x: hidden;
    overflow-y: auto; }

.modal {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1050;
  display: none;
  overflow: hidden;
  outline: 0; }

.modal-dialog {
  position: relative;
  width: auto;
  margin: 0.5rem;
  pointer-events: none; }
  .modal.fade .modal-dialog {
    transition: transform 0.3s ease-out;
    transform: translate(0, -25%); }
    @media screen and (prefers-reduced-motion: reduce) {
      .modal.fade .modal-dialog {
        transition: none; } }
  .modal.show .modal-dialog {
    transform: translate(0, 0); }

.modal-dialog-centered {
  display: flex;
  align-items: center;
  min-height: calc(100% - (0.5rem * 2)); }
  .modal-dialog-centered::before {
    display: block;
    height: calc(100vh - (0.5rem * 2));
    content: ""; }

.modal-content {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 100%;
  pointer-events: auto;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem;
  outline: 0; }

.modal-backdrop {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1040;
  background-color: #000; }
  .modal-backdrop.fade {
    opacity: 0; }
  .modal-backdrop.show {
    opacity: 0.5; }

.modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  padding: 1rem;
  border-bottom: 1px solid #e9ecef;
  border-top-left-radius: 0.3rem;
  border-top-right-radius: 0.3rem; }
  .modal-header .close {
    padding: 1rem;
    margin: -1rem -1rem -1rem auto; }

.modal-title {
  margin-bottom: 0;
  line-height: 1.25; }

.modal-body {
  position: relative;
  flex: 1 1 auto;
  padding: 1rem; }

.modal-footer {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  padding: 1rem;
  border-top: 1px solid #e9ecef; }
  .modal-footer > :not(:first-child) {
    margin-left: .25rem; }
  .modal-footer > :not(:last-child) {
    margin-right: .25rem; }

.modal-scrollbar-measure {
  position: absolute;
  top: -9999px;
  width: 50px;
  height: 50px;
  overflow: scroll; }

@media (min-width: 576px) {
  .modal-dialog {
    max-width: 500px;
    margin: 1.75rem auto; }
  .modal-dialog-centered {
    min-height: calc(100% - (1.75rem * 2)); }
    .modal-dialog-centered::before {
      height: calc(100vh - (1.75rem * 2)); }
  .modal-sm {
    max-width: 300px; } }

@media (min-width: 1440px) {
  .modal-lg {
    max-width: 800px; } }

.popover {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1060;
  display: block;
  max-width: 276px;
  font-family: "Scada", sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.25;
  text-align: left;
  text-align: start;
  text-decoration: none;
  text-shadow: none;
  text-transform: none;
  letter-spacing: normal;
  word-break: normal;
  word-spacing: normal;
  white-space: normal;
  line-break: auto;
  font-size: 0.875rem;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: padding-box;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 0.3rem; }
  .popover .arrow {
    position: absolute;
    display: block;
    width: 1rem;
    height: 0.5rem;
    margin: 0 0.3rem; }
    .popover .arrow::before, .popover .arrow::after {
      position: absolute;
      display: block;
      content: "";
      border-color: transparent;
      border-style: solid; }

.bs-popover-top, .bs-popover-auto[x-placement^="top"] {
  margin-bottom: 0.5rem; }
  .bs-popover-top .arrow, .bs-popover-auto[x-placement^="top"] .arrow {
    bottom: calc((0.5rem + 1px) * -1); }
  .bs-popover-top .arrow::before, .bs-popover-auto[x-placement^="top"] .arrow::before,
  .bs-popover-top .arrow::after,
  .bs-popover-auto[x-placement^="top"] .arrow::after {
    border-width: 0.5rem 0.5rem 0; }
  .bs-popover-top .arrow::before, .bs-popover-auto[x-placement^="top"] .arrow::before {
    bottom: 0;
    border-top-color: rgba(0, 0, 0, 0.25); }
  
  .bs-popover-top .arrow::after,
  .bs-popover-auto[x-placement^="top"] .arrow::after {
    bottom: 1px;
    border-top-color: #fff; }

.bs-popover-right, .bs-popover-auto[x-placement^="right"] {
  margin-left: 0.5rem; }
  .bs-popover-right .arrow, .bs-popover-auto[x-placement^="right"] .arrow {
    left: calc((0.5rem + 1px) * -1);
    width: 0.5rem;
    height: 1rem;
    margin: 0.3rem 0; }
  .bs-popover-right .arrow::before, .bs-popover-auto[x-placement^="right"] .arrow::before,
  .bs-popover-right .arrow::after,
  .bs-popover-auto[x-placement^="right"] .arrow::after {
    border-width: 0.5rem 0.5rem 0.5rem 0; }
  .bs-popover-right .arrow::before, .bs-popover-auto[x-placement^="right"] .arrow::before {
    left: 0;
    border-right-color: rgba(0, 0, 0, 0.25); }
  
  .bs-popover-right .arrow::after,
  .bs-popover-auto[x-placement^="right"] .arrow::after {
    left: 1px;
    border-right-color: #fff; }

.bs-popover-bottom, .bs-popover-auto[x-placement^="bottom"] {
  margin-top: 0.5rem; }
  .bs-popover-bottom .arrow, .bs-popover-auto[x-placement^="bottom"] .arrow {
    top: calc((0.5rem + 1px) * -1); }
  .bs-popover-bottom .arrow::before, .bs-popover-auto[x-placement^="bottom"] .arrow::before,
  .bs-popover-bottom .arrow::after,
  .bs-popover-auto[x-placement^="bottom"] .arrow::after {
    border-width: 0 0.5rem 0.5rem 0.5rem; }
  .bs-popover-bottom .arrow::before, .bs-popover-auto[x-placement^="bottom"] .arrow::before {
    top: 0;
    border-bottom-color: rgba(0, 0, 0, 0.25); }
  
  .bs-popover-bottom .arrow::after,
  .bs-popover-auto[x-placement^="bottom"] .arrow::after {
    top: 1px;
    border-bottom-color: #fff; }
  .bs-popover-bottom .popover-header::before, .bs-popover-auto[x-placement^="bottom"] .popover-header::before {
    position: absolute;
    top: 0;
    left: 50%;
    display: block;
    width: 1rem;
    margin-left: -0.5rem;
    content: "";
    border-bottom: 1px solid #f7f7f7; }

.bs-popover-left, .bs-popover-auto[x-placement^="left"] {
  margin-right: 0.5rem; }
  .bs-popover-left .arrow, .bs-popover-auto[x-placement^="left"] .arrow {
    right: calc((0.5rem + 1px) * -1);
    width: 0.5rem;
    height: 1rem;
    margin: 0.3rem 0; }
  .bs-popover-left .arrow::before, .bs-popover-auto[x-placement^="left"] .arrow::before,
  .bs-popover-left .arrow::after,
  .bs-popover-auto[x-placement^="left"] .arrow::after {
    border-width: 0.5rem 0 0.5rem 0.5rem; }
  .bs-popover-left .arrow::before, .bs-popover-auto[x-placement^="left"] .arrow::before {
    right: 0;
    border-left-color: rgba(0, 0, 0, 0.25); }
  
  .bs-popover-left .arrow::after,
  .bs-popover-auto[x-placement^="left"] .arrow::after {
    right: 1px;
    border-left-color: #fff; }

.popover-header {
  padding: 0.5rem 0.75rem;
  margin-bottom: 0;
  font-size: 1rem;
  color: inherit;
  background-color: #f7f7f7;
  border-bottom: 1px solid #ebebeb;
  border-top-left-radius: calc(0.3rem - 1px);
  border-top-right-radius: calc(0.3rem - 1px); }
  .popover-header:empty {
    display: none; }

.popover-body {
  padding: 0.5rem 0.75rem;
  color: #212529; }

/*! normalize.css v7.0.0 | MIT License | github.com/necolas/normalize.css */
/* Document
   ========================================================================== */
/**
 * 1. Correct the line height in all browsers.
 * 2. Prevent adjustments of font size after orientation changes in
 *    IE on Windows Phone and in iOS.
 */
html {
  line-height: 1.15;
  /* 1 */
  -ms-text-size-adjust: 100%;
  /* 2 */
  -webkit-text-size-adjust: 100%;
  /* 2 */ }

/* Sections
   ========================================================================== */
/**
 * Remove the margin in all browsers (opinionated).
 */
body {
  margin: 0;
  color: #515C64; }

/**
 * Add the correct display in IE 9-.
 */
article,
aside,
footer,
header,
nav,
section {
  display: block; }

/**
 * Correct the font size and margin on `h1` elements within `section` and
 * `article` contexts in Chrome, Firefox, and Safari.
 */
h1 {
  font-size: 2em;
  margin: 0.67em 0; }

/* Grouping content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 * 1. Add the correct display in IE.
 */
figcaption,
figure,
main {
  /* 1 */
  display: block; }

/**
 * Add the correct margin in IE 8.
 */
figure {
  margin: 1em 40px; }

/**
 * 1. Add the correct box sizing in Firefox.
 * 2. Show the overflow in Edge and IE.
 */
hr {
  box-sizing: content-box;
  /* 1 */
  height: 0;
  /* 1 */
  overflow: visible;
  /* 2 */ }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
pre {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/* Text-level semantics
   ========================================================================== */
/**
 * 1. Remove the gray background on active links in IE 10.
 * 2. Remove gaps in links underline in iOS 8+ and Safari 8+.
 */
a {
  background-color: transparent;
  /* 1 */
  -webkit-text-decoration-skip: objects;
  /* 2 */ }

/**
 * 1. Remove the bottom border in Chrome 57- and Firefox 39-.
 * 2. Add the correct text decoration in Chrome, Edge, IE, Opera, and Safari.
 */
abbr[title] {
  border-bottom: none;
  /* 1 */
  text-decoration: underline;
  /* 2 */
  -webkit-text-decoration: underline dotted;
          text-decoration: underline dotted;
  /* 2 */ }

/**
 * Prevent the duplicate application of `bolder` by the next rule in Safari 6.
 */
b,
strong {
  font-weight: inherit; }

/**
 * Add the correct font weight in Chrome, Edge, and Safari.
 */
b,
strong {
  font-weight: bolder; }

/**
 * 1. Correct the inheritance and scaling of font size in all browsers.
 * 2. Correct the odd `em` font sizing in all browsers.
 */
code,
kbd,
samp {
  font-family: monospace, monospace;
  /* 1 */
  font-size: 1em;
  /* 2 */ }

/**
 * Add the correct font style in Android 4.3-.
 */
dfn {
  font-style: italic; }

/**
 * Add the correct background and color in IE 9-.
 */
mark {
  background-color: #ff0;
  color: #000; }

/**
 * Add the correct font size in all browsers.
 */
small {
  font-size: 80%; }

/**
 * Prevent `sub` and `sup` elements from affecting the line height in
 * all browsers.
 */
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline; }

sub {
  bottom: -0.25em; }

sup {
  top: -0.5em; }

/* Embedded content
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
audio,
video {
  display: inline-block; }

/**
 * Add the correct display in iOS 4-7.
 */
audio:not([controls]) {
  display: none;
  height: 0; }

/**
 * Remove the border on images inside links in IE 10-.
 */
img {
  border-style: none; }

/**
 * Hide the overflow in IE.
 */
svg:not(:root) {
  overflow: hidden; }

/* Forms
   ========================================================================== */
/**
 * 1. Change the font styles in all browsers (opinionated).
 * 2. Remove the margin in Firefox and Safari.
 */
button,
input,
optgroup,
select,
textarea {
  font-family: sans-serif;
  /* 1 */
  font-size: 100%;
  /* 1 */
  line-height: 1.15;
  /* 1 */
  margin: 0;
  /* 2 */ }

/**
 * Show the overflow in IE.
 * 1. Show the overflow in Edge.
 */
button,
input {
  /* 1 */
  overflow: visible; }

/**
 * Remove the inheritance of text transform in Edge, Firefox, and IE.
 * 1. Remove the inheritance of text transform in Firefox.
 */
button,
select {
  /* 1 */
  text-transform: none; }

/**
 * 1. Prevent a WebKit bug where (2) destroys native `audio` and `video`
 *    controls in Android 4.
 * 2. Correct the inability to style clickable types in iOS and Safari.
 */
button,
html [type="button"],
[type="reset"],
[type="submit"] {
  -webkit-appearance: button;
  /* 2 */ }

/**
 * Remove the inner border and padding in Firefox.
 */
button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
  border-style: none;
  padding: 0; }

/**
 * Restore the focus styles unset by the previous rule.
 */
button:-moz-focusring,
[type="button"]:-moz-focusring,
[type="reset"]:-moz-focusring,
[type="submit"]:-moz-focusring {
  outline: 1px dotted ButtonText; }

/**
 * Correct the padding in Firefox.
 */
fieldset {
  padding: 0.35em 0.75em 0.625em; }

/**
 * 1. Correct the text wrapping in Edge and IE.
 * 2. Correct the color inheritance from `fieldset` elements in IE.
 * 3. Remove the padding so developers are not caught out when they zero out
 *    `fieldset` elements in all browsers.
 */
legend {
  box-sizing: border-box;
  /* 1 */
  color: inherit;
  /* 2 */
  display: table;
  /* 1 */
  max-width: 100%;
  /* 1 */
  padding: 0;
  /* 3 */
  white-space: normal;
  /* 1 */ }

/**
 * 1. Add the correct display in IE 9-.
 * 2. Add the correct vertical alignment in Chrome, Firefox, and Opera.
 */
progress {
  display: inline-block;
  /* 1 */
  vertical-align: baseline;
  /* 2 */ }

/**
 * Remove the default vertical scrollbar in IE.
 */
textarea {
  overflow: auto; }

/**
 * 1. Add the correct box sizing in IE 10-.
 * 2. Remove the padding in IE 10-.
 */
[type="checkbox"],
[type="radio"] {
  box-sizing: border-box;
  /* 1 */
  padding: 0;
  /* 2 */ }

/**
 * Correct the cursor style of increment and decrement buttons in Chrome.
 */
[type="number"]::-webkit-inner-spin-button,
[type="number"]::-webkit-outer-spin-button {
  height: auto; }

/**
 * 1. Correct the odd appearance in Chrome and Safari.
 * 2. Correct the outline style in Safari.
 */
[type="search"] {
  -webkit-appearance: textfield;
  /* 1 */
  outline-offset: -2px;
  /* 2 */ }

/**
 * Remove the inner padding and cancel buttons in Chrome and Safari on macOS.
 */
[type="search"]::-webkit-search-cancel-button,
[type="search"]::-webkit-search-decoration {
  -webkit-appearance: none; }

/**
 * 1. Correct the inability to style clickable types in iOS and Safari.
 * 2. Change font properties to `inherit` in Safari.
 */
::-webkit-file-upload-button {
  -webkit-appearance: button;
  /* 1 */
  font: inherit;
  /* 2 */ }

/* Interactive
   ========================================================================== */
/*
 * Add the correct display in IE 9-.
 * 1. Add the correct display in Edge, IE, and Firefox.
 */
details,
menu {
  display: block; }

/*
 * Add the correct display in all browsers.
 */
summary {
  display: list-item; }

/* Scripting
   ========================================================================== */
/**
 * Add the correct display in IE 9-.
 */
canvas {
  display: inline-block; }

/**
 * Add the correct display in IE.
 */
template {
  display: none; }

/* Hidden
   ========================================================================== */
/**
 * Add the correct display in IE 10-.
 */
[hidden] {
  display: none; }

@font-face {
  font-family: "Rounds Black";
  font-style: nomal;
  font-weight: normal;
  src: url("/fonts/RoundsBlack.woff2") format("woff2"), url("/fonts/RoundsBlack.woff") format("woff"), url("/fonts/RoundsBlack.otf") format("otf"), url("/fonts/RoundsBlack.svg#Rounds_Black") format("svg"); }

body {
  font-family: "Scada", sans-serif !important;
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 400;
  box-sizing: border-box;
  min-width: 320px;
  cursor: default; }
  body .app *::placeholder {
    font-family: "Scada", sans-serif !important;
    font-size: 1rem;
    line-height: 1.25;
    font-weight: 400; }
  body.modal-open {
    overflow: auto !important;
    padding: 0 !important; }

*,
*::before,
*::after {
  box-sizing: inherit; }

a {
  text-decoration: none;
  outline: none;
  color: #515C64;
  transition: .3s; }

input, textarea {
  font-family: "Scada", sans-serif !important;
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 400;
  outline: none;
  padding-left: 15px;
  padding-right: 15px; }

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none; }

input[type='number'] {
  -moz-appearance: textfield; }

button {
  font-family: "Scada", sans-serif !important;
  font-size: 1rem;
  line-height: 1.25;
  font-weight: 400; }

h1, h2, h3, h4, h5, .title, .h1, .h2, .h3, .h4, .h5 {
  font-family: "Rounds Black", sans-serif; }

h1, .h1 {
  margin-top: 0;
  margin-bottom: 20px;
  font-size: 72px;
  font-weight: normal;
  line-height: 86px;
  color: #98AAB3; }
  @media (max-width: 1019.98px) {
    h1, .h1 {
      font-size: 24px;
      line-height: 1.25em;
      font-weight: 400; } }

h2, .h2 {
  font-size: 51px;
  font-weight: normal;
  line-height: 54px;
  letter-spacing: 0.01em;
  color: #98AAB3; }
  @media (max-width: 1439.98px) {
    h2, .h2 {
      font-size: 30px; } }
  @media (max-width: 1019.98px) {
    h2, .h2 {
      line-height: 30px;
      font-size: 24px; } }

h3, .h3 {
  font-size: 36px;
  font-weight: normal;
  line-height: 40px;
  letter-spacing: 0.01em;
  margin-top: 0;
  margin-bottom: 45px; }
  @media (max-width: 1019.98px) {
    h3, .h3 {
      font-size: 24px;
      line-height: 1.25em;
      font-weight: 400;
      margin-bottom: 20px; } }

h4, .h4 {
  font-size: 26px;
  line-height: 34px;
  font-weight: normal;
  margin: 1em 0; }
  @media (max-width: 1019.98px) {
    h4, .h4 {
      font-size: 20px;
      line-height: 1.3em; } }

h5, .h5 {
  font-size: 20px;
  line-height: 26px;
  letter-spacing: 0.3px;
  font-weight: normal;
  margin: 0;
  margin-bottom: 20px;
  padding: 0; }

h6, .h6 {
  font-size: 13px;
  font-weight: normal;
  line-height: 18px; }

table {
  border-collapse: collapse;
  width: 100%; }
  table tr {
    width: 100%; }
    table tr th {
      text-align: left;
      padding: 20px 10px; }
    table tr td {
      margin: 0;
      padding: 20px 10px;
      vertical-align: top;
      text-align: left; }
    table tr:nth-child(2n) {
      background: #FBFBFB; }

.table-wrap {
  overflow-x: auto; }

.title {
  margin-bottom: 11px;
  font-size: 36px;
  line-height: 43px;
  letter-spacing: 0.01em;
  color: #AEB455; }
  @media (max-width: 1019.98px) {
    .title {
      font-size: 27px;
      line-height: 30px; } }
  .title-green {
    color: #AEB455; }
  .title-grey {
    color: #98AAB3; }

p, .p {
  font-family: "Scada", sans-serif !important;
  margin: 15px 0;
  font-size: 18px;
  line-height: 26px; }
  p:first-child, .p:first-child {
    margin-top: 0; }
  p.lead, .p.lead {
    font-size: 22px;
    line-height: 30px;
    color: #778E9A; }
  p.small, .p.small {
    font-size: 16px;
    line-height: 24px; }
  p.smaller, .p.smaller {
    font-size: 14px;
    line-height: 18px; }
  p.h1, .p.h1 {
    font-family: "Rounds Black", sans-serif !important; }
  p.h2, .p.h2 {
    font-family: "Rounds Black", sans-serif !important; }
  p.h3, .p.h3 {
    font-family: "Rounds Black", sans-serif !important; }
  p.h4, .p.h4 {
    font-family: "Rounds Black", sans-serif !important; }

.overflow_hidden {
  overflow: hidden; }

button {
  outline: none !important; }

hr {
  border: none;
  border-top: 1px solid #DFE0E1;
  margin: 20px 0; }

section {
  padding-top: 50px;
  padding-bottom: 50px; }
  @media (max-width: 1019.98px) {
    section {
      padding-top: 20px;
      padding-bottom: 20px; } }

/*
!* width *!
::-webkit-scrollbar {
  width: 10px;
}

!* Track *!
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

!* Handle *!
::-webkit-scrollbar-thumb {
  background: $header-gray-op;
  border-radius: 3px;
  margin: 0 2px;
  transition: background .3s;
}

!* Handle on hover *!
::-webkit-scrollbar-thumb:hover {
  background: $header-gray;
}*/
#nprogress .bar {
  display: none; }

#nprogress .spinner {
  display: block;
  position: fixed;
  z-index: 1031;
  top: 7px;
  right: 15px; }

.popup-content-title {
  color: #AEB455; }

.popup {
  border-radius: 10px !important; }
  @media (max-width: 1019.98px) {
    .popup {
      border-radius: 0 !important; } }

.info-pages-img {
  background: url("/PlayNext/images/info-page.jpg") no-repeat center/cover;
  width: 100%;
  height: 400px; }
  @media (max-width: 575.98px) {
    .info-pages-img {
      background-image: url("/PlayNext/images/info-page.jpg"); } }

div.deliveryInfo-banner {
  margin-bottom: 40px;
  background: url("/PlayNext/images/tightBanners/delivery_info.png") no-repeat center center/cover; }
  @media (max-width: 1019.98px) {
    div.deliveryInfo-banner {
      background: url("/PlayNext/images/tightBanners/delivery_info_mob.png") no-repeat center/cover;
      background-color: #98d4f5;
      background-position-y: 50%;
      height: 190px; } }

div.deliveryInfo-topTable {
  overflow-x: auto;
  width: 100%; }
  div.deliveryInfo-topTable table {
    border-collapse: collapse;
    width: 100%; }
    div.deliveryInfo-topTable table tr {
      width: 100%;
      border-bottom: 1px solid #DFE0E1; }
      div.deliveryInfo-topTable table tr:last-child {
        border-bottom: 0; }
      div.deliveryInfo-topTable table tr th {
        text-align: left;
        padding: 20px 10px;
        font-family: "Rounds Black", sans-serif;
        font-weight: 900;
        font-size: 20px;
        line-height: 26px;
        letter-spacing: 0.3px;
        color: #5C7684; }
      div.deliveryInfo-topTable table tr td {
        width: 33.3%;
        margin: 0;
        padding: 20px 10px;
        vertical-align: top;
        text-align: left; }
        div.deliveryInfo-topTable table tr td p {
          font-size: 16px; }

.phone-number {
  font-family: "Nunito", sans-serif;
  font-size: 36px;
  font-weight: 900;
  line-height: 43px;
  text-align: center;
  letter-spacing: 0.01em; }
  @media (max-width: 1019.98px) {
    .phone-number {
      font-size: 24px; } }

.e-mail {
  font-size: 18px;
  line-height: 26px;
  text-align: center;
  -webkit-text-decoration-line: underline;
          text-decoration-line: underline;
  color: #515C64;
  transition: 0.3s; }
  .e-mail:focus, .e-mail:hover {
    opacity: 0.8; }

.globalTabs .tabs-header-item {
  font-family: "Rounds Black", sans-serif; }

.img-fluid {
  max-width: 100%;
  height: auto; }

.bitrix-list-wrap ul {
  list-style: none;
  margin: 0;
  padding: 0; }
  .bitrix-list-wrap ul > li {
    position: relative;
    margin-bottom: 20px;
    padding-left: 30px;
    font-weight: normal;
    font-size: 16px;
    line-height: 24px;
    color: #515C64; }
    .bitrix-list-wrap ul > li::before {
      content: "\2014";
      position: absolute;
      color: #AEB455;
      left: 0;
      font-size: 16px;
      line-height: 24px; }

.bitrix-list-wrap ol {
  padding: 0;
  list-style: none;
  counter-reset: li;
  font-size: 18px;
  line-height: 26px; }
  .bitrix-list-wrap ol > li::before {
    content: counter(li) ".";
    position: absolute;
    left: 0;
    display: inline-block;
    font-weight: bold;
    color: #AEB455;
    font-size: 18px;
    line-height: 26px; }
  .bitrix-list-wrap ol > li {
    position: relative;
    margin-bottom: 20px;
    padding-left: 40px;
    counter-increment: li; }
  .bitrix-list-wrap ol ul {
    padding-left: 0; }

/* таблица размеров - используется в Catalog.vue + Product.vue + popupSubOnAvailability.vue
----------------------*/
.category-items-sizes {
  display: flex;
  flex-wrap: wrap; }
  @media (max-width: 1019.98px) {
    .category-items-sizes {
      justify-content: flex-start; } }

.category-item-size {
  position: relative;
  width: 55px;
  height: 40px;
  margin-right: 15px;
  margin-bottom: 15px; }
  @media (min-width: 1440px) {
    .category-item-size:nth-child(6n) {
      margin-right: 0; } }
  @media (min-width: 1020px) and (max-width: 1439.98px) {
    .category-item-size {
      margin-right: 22px; }
      .category-item-size:nth-child(4n) {
        margin-right: 0; } }
  .category-item-size .checkboxLabel {
    width: 100%;
    height: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding-left: 0;
    border: 1px dashed #DFE0E1;
    -o-border-image: url("/PlayNext/images/border.svg") 1 round;
       border-image: url("/PlayNext/images/border.svg") 1 round;
    box-sizing: border-box;
    border-radius: 5px;
    transition: 0.3s; }
    .category-item-size .checkboxLabel::before {
      content: none; }
  .category-item-size-sel .checkboxLabel {
    border: 1px solid #AEB455; }
  .category-item-size.unavailable .signed-item-checkbox:not(:checked):not(:hover) ~ .checkboxLabel {
    color: #e4e4e5; }
  .category-item-size .signed-item-checkbox {
    width: 100%;
    height: 100%;
    cursor: pointer;
    opacity: 0;
    position: absolute; }
    .category-item-size .signed-item-checkbox:hover ~ .checkboxLabel {
      color: #AEB455; }
    .category-item-size .signed-item-checkbox:checked ~ .checkboxLabel {
      border-style: solid;
      background: #AEB455;
      color: #fff;
      border-image-width: 0; }
  .category-item-size-info-popup {
    width: auto;
    flex-direction: column;
    min-height: 130px;
    padding: 20px;
    display: flex;
    flex-wrap: wrap;
    font-size: 16px;
    line-height: 25px;
    background: #fff;
    box-shadow: 5px 10px 30px rgba(95, 90, 122, 0.3);
    border-radius: 10px;
    transition: all 0.3s; }
    .category-item-size-info-popup-size {
      margin-bottom: 5px; }
    .category-item-size-info-popup-title {
      color: #98AAB3; }
    .category-item-size-info-popup-left {
      margin-top: auto;
      color: #EF6C68; }

.CDEK-widget__panel-content {
  height: 100% !important; }

.marginBottom {
  margin-bottom: 40px; }
  @media (max-width: 1019.98px) {
    .marginBottom {
      margin-bottom: 20px; } }

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

.p-0 {
  padding: 0 !important; }
  .p-0-left {
    padding-left: 0; }
  .p-0-right {
    padding-right: 0; }

.m-0 {
  margin: 0 !important; }

@media (min-width: 1020px) {
  .p-mobile {
    padding-left: 0;
    padding-right: 0; } }

@media (max-width: 575.98px) {
  .padding-xs {
    padding-left: 20px;
    padding-right: 20px; } }

@media (max-width: 575.98px) {
  .margin-xs {
    margin-left: 20px;
    margin-right: 20px; } }

@media (max-width: 1019.98px) {
  .no-p-sm {
    padding-left: 0;
    padding-right: 0; } }

@media (max-width: 575.98px) {
  .no-p-xs {
    padding-left: 0;
    padding-right: 0; }
    .no-p-xs-right {
      padding-right: 0; }
    .no-p-xs-left {
      padding-left: 0; } }

.columns-3 {
  column-count: 3;
  column-gap: 40px; }

.columns-2 {
  column-count: 2;
  column-gap: 40px; }

.no-border {
  border: none !important; }

@media (max-width: 1439.98px) {
  .d-none-md {
    display: none; } }

@media (max-width: 1019.98px) {
  .d-none-sm {
    display: none; } }

@media (max-width: 575.98px) {
  .d-none-xs {
    display: none; } }

.no-flex {
  display: block !important; }

/* TODO what is correct - this or the code below - inside .swiper? */
.swiper-custom-controls {
  position: absolute;
  bottom: 30px;
  right: 30px;
  cursor: pointer;
  z-index: 2;
  display: flex; }
  .swiper-custom-controls-prev, .swiper-custom-controls-next {
    transition: all 0.1s cubic-bezier(0.65, 0.05, 0.36, 1); }
    .swiper-custom-controls-prev:not(.swiper-button-disabled), .swiper-custom-controls-next:not(.swiper-button-disabled) {
      background-color: rgba(81, 92, 100, 0.25);
      cursor: pointer; }
      .swiper-custom-controls-prev:not(.swiper-button-disabled):hover, .swiper-custom-controls-next:not(.swiper-button-disabled):hover {
        background-color: rgba(81, 92, 100, 0.4); }
    .swiper-custom-controls-prev .svg-icon, .swiper-custom-controls-next .svg-icon {
      width: 20px;
      height: 20px; }

.swiper-wrapper {
  position: static; }

.swiper-pagination {
  display: none;
  position: static;
  font-size: 3px;
  outline: none; }
  .swiper-pagination-bullet {
    position: relative;
    height: 20px;
    width: 50px;
    margin: 0 6px;
    max-width: 40px;
    outline: none;
    background-color: transparent;
    border-radius: 0;
    transition: all .3s ease; }
    @media (max-width: 1019.98px) {
      .swiper-pagination-bullet {
        margin: 0 4px;
        width: 100%; } }
    .swiper-pagination-bullet:after {
      content: '';
      display: block;
      position: absolute;
      width: 100%;
      height: 3px;
      top: 0;
      bottom: 0;
      margin: auto;
      background-color: rgba(255, 255, 255, 0.3);
      transition: all .3s ease; }
    .swiper-pagination-bullet:hover {
      opacity: .8; }
      .swiper-pagination-bullet:hover:after {
        background-color: rgba(255, 255, 255, 0.6); }
    .swiper-pagination-bullet-active:after {
      background-color: rgba(255, 255, 255, 0.6); }
  @media (max-width: 1019.98px) {
    .swiper-pagination {
      display: flex;
      justify-content: center;
      width: 100%;
      margin: 0 50px; } }

.swiper-custom-controls {
  position: static;
  z-index: 0; }
  @media (max-width: 1019.98px) {
    .swiper-custom-controls {
      position: relative;
      width: 100%;
      bottom: 0;
      left: 0;
      right: 0;
      margin: 15px auto;
      display: flex;
      justify-content: space-between;
      align-items: center;
      z-index: 10; } }

.swiper-prev, .swiper-next {
  position: absolute;
  z-index: 2;
  width: 60px;
  top: 0;
  bottom: 0;
  margin: auto 0;
  cursor: pointer;
  outline: none;
  overflow: hidden; }
  .swiper-prev:hover img, .swiper-next:hover img {
    filter: brightness(40%); }
  @media (max-width: 1019.98px) {
    .swiper-prev, .swiper-next {
      margin: 0;
      top: initial;
      bottom: initial;
      width: 30px;
      height: 30px; } }
  .swiper-prev img, .swiper-next img {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
    filter: brightness(100%);
    transition: all .3s ease; }

.swiper-prev {
  left: 0; }
  .swiper-prev img {
    transform: rotate(180deg); }

.swiper-next {
  right: 0; }

@media (max-width: 1019.98px) {
  .swiper-prev {
    left: 10px; }
  .swiper-next {
    right: 10px; } }

/* TODO why this is here? - move to product component */
#productPage-image-slider-pagination .swiper-pagination-bullet::after {
  background-color: #525558; }

#productPage-image-slider-pagination .swiper-pagination-bullet-active::after, #productPage-image-slider-pagination .swiper-pagination-bullet:hover::after {
  background: #AEB455; }

.form-control {
  font: inherit;
  border: 1px solid #c3c3c3;
  outline: none;
  padding: 10px;
  background-color: transparent; }

.logout {
  margin-left: 5px; }

.closeButton {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 21px;
  height: 21px;
  cursor: pointer;
  z-index: 99;
  transition: all .3s ease; }
  .closeButton:hover:before, .closeButton:hover:after {
    background-color: #777; }
  .closeButton:before, .closeButton:after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    margin: auto;
    display: block;
    width: 100%;
    height: 1px;
    background-color: #939598; }
  .closeButton:before {
    transform: rotate(-45deg); }
  .closeButton:after {
    transform: rotate(45deg); }

.biggestHeader {
  font-size: 51px;
  line-height: 61px;
  letter-spacing: 0.01rem; }
  @media (max-width: 1019.98px) {
    .biggestHeader {
      font-size: 36px;
      line-height: 43px; } }

.dotted {
  flex-grow: 1;
  margin: auto 3px 0;
  border-bottom: 1px dashed #DFE0E1;
  position: relative;
  bottom: 3px; }
  @media (max-width: 1439.98px) {
    .dotted {
      display: none; } }
  @media (max-width: 1019.98px) {
    .dotted {
      display: block; } }
  @media (max-width: 575.98px) {
    .dotted {
      display: none; } }

.default-input {
  border: 1px solid transparent;
  background-color: rgba(235, 237, 239, 0.6);
  border-radius: 3px;
  padding: 15px;
  height: 50px;
  margin-bottom: 20px;
  resize: none;
  outline: none;
  color: #515C64;
  transition: all .3s ease; }
  .default-input:focus {
    background-color: #ebedef; }

input.default-input::placeholder,
textarea.default-input::placeholder {
  color: #aaa; }

.invalid-input {
  border: 1px solid red;
  background-color: #ffd1d1; }

.checkBox-form {
  position: relative;
  margin-bottom: 20px;
  padding-left: 25px; }
  .checkBox-form .bordered-link {
    font-size: 14px; }
  .checkBox-form-checkbox {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0; }
  .checkBox-form-radio {
    position: absolute;
    opacity: 0;
    width: 18px;
    height: 18px;
    left: 0; }
  .checkBox-form-label {
    font-size: 14px;
    margin-left: -25px;
    padding-left: 25px;
    cursor: pointer; }
    .checkBox-form-label:before {
      content: '';
      position: absolute;
      left: 0;
      width: 18px;
      height: 18px;
      border: 2px solid #DFE0E1;
      border-radius: 3px;
      top: -2px;
      transition: border .3s ease, background-color .3s ease; }
  .checkBox-form-checkbox:hover + .checkBox-form-label:before {
    border-color: #AEB455; }
  .checkBox-form-checkbox:checked + .checkBox-form-label:before {
    background-image: url("/PlayNext/images/other/checkmark.svg");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    background-color: #AEB455;
    border: 1px solid #AEB455; }
  .checkBox-form-radio:hover(not:disabled) + label.radioLabel:before {
    border: 2px solid #AEB455; }
  .checkBox-form-radio:checked + label.radioLabel:before {
    border: 6px solid #AEB455; }
  .checkBox-form-radio:disabled + label.radioLabel {
    opacity: 0.4;
    cursor: default; }
    .checkBox-form-radio:disabled + label.radioLabel:before {
      cursor: default; }

.checkboxLabel {
  padding-left: 25px;
  cursor: pointer; }
  .checkboxLabel:before {
    content: '';
    position: absolute;
    left: 0;
    width: 18px;
    height: 18px;
    border: 2px solid #DFE0E1;
    border-radius: 3px;
    cursor: pointer;
    transition: border .3s, background-color .3s; }

.radioLabel {
  margin-left: -25px;
  padding-left: 25px;
  cursor: pointer; }
  .radioLabel:before {
    content: '';
    position: absolute;
    left: 0;
    width: 18px;
    height: 18px;
    border: 2px solid #DFE0E1;
    border-radius: 18px;
    cursor: pointer;
    transition: border .3s; }

.search_form {
  position: relative; }
  .search_form:hover .magnifierIcon {
    fill: #3b3c3d; }
  .search_form .magnifierIcon {
    position: absolute;
    top: 9px;
    right: 11px;
    width: 24px;
    height: 24px;
    cursor: text;
    fill: rgba(147, 149, 152, 0.6);
    transition: all .3s ease; }
    .search_form .magnifierIcon-disabled {
      fill: #3b3c3d !important; }
    .search_form .magnifierIcon-active {
      fill: #AEB455 !important;
      cursor: pointer; }

.search-input {
  border: 1px solid #DFE0E1;
  border-radius: 30px;
  padding: 12px 45px 11px 15px;
  background: transparent;
  text-align: left;
  width: 330px;
  font-weight: 300;
  line-height: 17px;
  font-family: inherit;
  color: #939598;
  font-size: 16px;
  outline: none;
  transition: all 0.3s; }
  @media (min-width: 1020px) and (max-width: 1439.98px) {
    .search-input {
      margin-left: 10px;
      width: 250px; } }

.svg-icon {
  display: inline-block;
  width: 16px;
  height: 16px;
  color: inherit;
  vertical-align: middle;
  fill: none;
  stroke: currentColor; }

.svg-fill {
  fill: currentColor;
  stroke: none; }

.svg-up {
  /*default*/
  transform: rotate(0deg); }

.svg-right {
  transform: rotate(90deg); }

.svg-down {
  transform: rotate(180deg); }

.svg-left {
  transform: rotate(-90deg); }

.route-enter-active, .route-leave-active {
  transition: opacity .3s; }

.route-enter, .route-leave-to {
  opacity: 0; }

.fade-enter-active, .fade-leave-active {
  transition: opacity .5s; }

.fade-enter, .fade-leave-to {
  opacity: 0; }

.fade-fast-enter-active, .fade-fast-leave-active {
  transition: opacity .2s; }

.fade-fast-enter, .fade-fast-leave-to {
  opacity: 0; }

.ease-in-enter-active, .ease-in-leave-active {
  transition: opacity .4s; }

.ease-in-enter {
  opacity: 0; }

.ease-in-leave-active {
  display: none; }

.menuMobileAnim-enter-active {
  transition: transform .3s ease, opacity .5s ease; }

.menuMobileAnim-enter {
  transform: translateY(-100%);
  opacity: 0; }

.menuMobileAnim-leave-active {
  transition: opacity .3s ease; }

.menuMobileAnim-leave-to {
  transform: translateY(-100%);
  opacity: 0; }

.filter-item-enter-active, .filter-item-leave-active {
  transition: max-height .3s; }

.filter-item-enter, .filter-item-leave-to {
  max-height: 63px; }

.dropdown-animate-enter-active, .dropdown-animate-leave-active {
  transition: opacity .2s, transform .2s; }

.dropdown-animate-leave, .dropdown-animate-enter-to {
  opacity: 1; }

.dropdown-animate-leave-to, .dropdown-animate-enter {
  opacity: 0; }

.dropdown-animate-enter {
  transform: translateY(-1rem); }

.dropdown-animate-enter-to {
  transform: translateY(0); }

.change-page-content-leave-active {
  transition: opacity .7s; }

.change-page-content-leave, .change-page-content-enter-to {
  opacity: 1; }

.change-page-content-leave-to, .change-page-content-enter {
  opacity: 0; }

.change-page-content-leave-active {
  position: absolute;
  top: 0;
  left: 0;
  right: 0; }

.change-page-content-enter-active {
  transition: opacity 1s, transform .8s; }

.change-page-content-enter {
  transform: translateY(3rem);
  opacity: 0; }

.change-page-content-enter-to {
  transform: translateY(0);
  opacity: 1; }

.btn {
  cursor: pointer;
  display: inline-block;
  font: inherit;
  border: none;
  outline: none;
  padding: 10px 15px;
  text-align: center;
  background: transparent; }

.button {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  line-height: 16px;
  font-weight: 400;
  font-family: inherit;
  text-align: center;
  color: #fff;
  background: #EF6C68;
  border-radius: 30px;
  border: none;
  outline: none;
  cursor: pointer;
  padding: 0 20px;
  height: 42px;
  vertical-align: middle;
  white-space: nowrap;
  transition: all .3s ease; }
  .button-o {
    box-shadow: none;
    background-color: transparent;
    border-radius: 3px;
    color: #515C64;
    border: 1px solid rgba(174, 180, 85, 0.5); }
    .button-o:hover {
      background-color: #AEB455;
      color: #fff; }
  .button--round {
    border-radius: 100px; }
  .button:hover {
    box-shadow: 3px 3px 10px rgba(0, 0, 0, 0.35); }
  .button:disabled {
    box-shadow: unset;
    background-color: rgba(0, 0, 0, 0.2);
    cursor: unset; }
    .button:disabled:hover {
      box-shadow: unset; }
  .button .basketIco {
    white-space: nowrap; }
    .button .basketIco::before {
      content: '';
      background: url("/PlayNext/images/section_lots/basketWhite.svg") no-repeat center;
      padding: 5px 26px 5px 0;
      margin-right: 10px; }
      @media (max-width: 575.98px) {
        .button .basketIco::before {
          padding-left: 5px; } }
  .button.buttonLong {
    width: 100%; }

.popup-button {
  background-color: #AEB455; }

.externalLink {
  white-space: nowrap; }
  .externalLink:after {
    content: '';
    background: url("/PlayNext/images/other/external-link.svg") no-repeat center;
    padding: 8px 26px 8px 0; }
    @media (max-width: 575.98px) {
      .externalLink:after {
        padding-left: 5px; } }

.show-more {
  align-items: center;
  display: flex;
  justify-content: center;
  border: 1px solid #AEB455;
  margin-bottom: 40px;
  cursor: pointer;
  height: 60px;
  transition: all .3s ease;
  border-radius: 100px; }
  .show-more span {
    padding-top: 1px; }
  .show-more span.show-more__plus {
    font-size: 36px;
    color: #AEB455;
    padding-top: 0;
    padding-right: 11px;
    padding-bottom: 1px; }
  .show-more:hover {
    background-color: #AEB455;
    color: #fff; }
    .show-more:hover .show-more__plus {
      color: #fff;
      transition: .3s; }

.show-more__small {
  border: 1px solid #ff500080;
  border-radius: 3px;
  width: 100%;
  height: 42px;
  padding: 0;
  background-color: transparent;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: .3s; }
  .show-more__small:hover {
    background-color: #AEB455;
    border: 1px solid #AEB455;
    color: #fff; }

.button-green {
  background: #AEB455; }

.button-square {
  border-radius: 5px; }

.favorite-btn {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 100px;
  background: #F6F6F6;
  border: 1px solid #F6F6F6;
  transition: all 0.3s; }
  .favorite-btn:hover {
    cursor: pointer; }
    .favorite-btn:hover svg {
      width: 24px;
      height: 24px; }
  .favorite-btn svg {
    width: 20px;
    height: 20px;
    transition: all 0.3s; }
    .favorite-btn svg path {
      transition: all 0.3s; }
  .favorite-btn--sel {
    background: #EF6C68; }
    .favorite-btn--sel svg {
      width: 24px;
      height: 24px; }
      .favorite-btn--sel svg path {
        fill: #fff; }

.price-old {
  font-family: "Nunito", sans-serif;
  font-style: normal;
  font-weight: 900;
  font-size: 16px;
  color: #98AAB3;
  text-decoration: line-through; }
  .price-old .ruble {
    font-family: "Nunito", sans-serif;
    font-size: 12px;
    font-feature-settings: 'tnum' on, 'lnum' on; }

.price-old--white {
  color: #fff; }

.lineThrough {
  text-decoration: line-through; }

.ruble {
  font-size: 26px; }

.price {
  font-weight: 900;
  font-size: 30px;
  line-height: 38px;
  font-family: "Nunito", sans-serif;
  font-style: normal;
  color: #EF6C68; }
  @media (max-width: 1019.98px) {
    .price {
      font-size: 20px;
      line-height: 25px; }
      .price .ruble {
        font-size: 18px; } }

.gray-overlay {
  display: block;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 889;
  background-color: rgba(81, 92, 100, 0.4);
  opacity: 0;
  visibility: hidden;
  height: 0;
  transition: opacity .3s ease; }

.body-gray-overlay .gray-overlay {
  opacity: 1;
  visibility: visible;
  height: 100%; }

.label-sale, .label-sale-y, .label-hit, .label-new, .label-set, .label-warning, .label-fur, .label-wool {
  font-family: Scada;
  font-style: normal;
  font-weight: bold;
  font-size: 14px;
  line-height: 16px;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  padding: 10px;
  z-index: 999;
  border-radius: 30px; }

.label-sale {
  border-radius: 5px;
  background-color: #FFD600;
  color: #333333; }

.label-sale-y {
  background-color: #FFA400;
  color: #333;
  border-radius: 5px; }

.label-new {
  background-color: #EF6C68;
  border-radius: 5px;
  color: #fff; }

.label-hit {
  border-radius: 5px;
  background-color: #FFD600;
  color: #333333; }

.label-set {
  background-color: #7673C0;
  color: #fff; }

.label-fur {
  background-color: #7673C0;
  color: #fff; }

.label-wool {
  background-color: #7673C0;
  color: #fff; }

.label-warning {
  background-color: #FF0000;
  color: #fff; }

.label-info {
  position: relative;
  display: inline-block;
  padding: 1px 0 0;
  width: 14px;
  height: 14px;
  text-align: center;
  margin: 0 5px;
  bottom: 1px;
  background-color: #87cefa;
  opacity: 0.8;
  border-radius: 3px;
  border-bottom-left-radius: 0px;
  color: #fff;
  font-weight: 400;
  font-size: 10px;
  cursor: pointer;
  /*&:active {
      .label-info-active {
        top: -310px;
        height: 300px;
        z-index: 999;
        -webkit-box-shadow: 5px 7px 15px rgba(0, 0, 0, .15);
        -moz-box-shadow: 5px 7px 15px rgba(0, 0, 0, .15);
        box-shadow: 5px 7px 15px rgba(0, 0, 0, .15);

        &:after {
          display: block;
        }
      }
    }*/ }
  .label-info-active {
    position: absolute;
    width: 300px;
    height: 0;
    background-color: #F4F5F5;
    border-radius: 3px;
    top: -10px;
    left: -143px;
    margin: 0 auto;
    border: none;
    transition: all .3s ease; }
    .label-info-active:after {
      content: '';
      display: none;
      position: absolute;
      width: 0;
      height: 0;
      left: 0;
      right: 0;
      border: 15px solid transparent;
      border-top: 15px solid #F4F5F5;
      bottom: -30px;
      margin: auto; }
  .label-info-absolute {
    position: absolute;
    top: 20px;
    right: 20px;
    bottom: initial;
    z-index: 10;
    width: 20px;
    height: 20px;
    margin: 0;
    text-align: center;
    padding: 0;
    font-size: 14px;
    border-radius: 5px;
    border-bottom-left-radius: 0px; }
    .label-info-absolute-i {
      padding: 2px 0; }
    .label-info-absolute .label-info-active {
      left: -140px; }
  .label-info:hover {
    background-color: #AEB455;
    opacity: 1; }

.noWrap {
  white-space: nowrap; }

.thinSpan {
  font-weight: 400;
  color: #98AAB3; }

.redSpan {
  color: #AEB455; }

.boldSpan {
  font-weight: bold;
  color: #AEB455; }

.lineBefore {
  position: relative;
  padding-left: 25px; }
  .lineBefore:before {
    content: '';
    display: inline-block;
    position: absolute;
    width: 12px;
    height: 1px;
    background-color: #AEB455;
    top: 11px;
    left: 0; }

.sorry-title {
  text-align: center;
  margin: 40px 0 100px;
  font-weight: 300; }

.pseudolink {
  cursor: pointer;
  border-bottom: 1px dashed;
  border-color: rgba(255, 80, 0, 0.5);
  transition: all .3s ease; }
  .pseudolink:hover {
    border-color: rgba(255, 80, 0, 0.2); }

.filterBox {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 17.5px;
  background-color: rgba(223, 224, 225, 0.2);
  border-radius: 3px;
  letter-spacing: 0.3px;
  margin: 10px 10px;
  height: 40px;
  white-space: nowrap;
  cursor: pointer;
  transition: all .3s ease; }
  .filterBox:hover {
    background-color: #AEB455;
    text-shadow: 0.7px 0 0 #fff;
    color: #fff; }

.bordered-link {
  text-decoration: none;
  border-bottom: 1px solid transparent;
  cursor: pointer;
  border-bottom: 1px solid rgba(174, 180, 85, 0.5);
  transition: .3s; }
  .bordered-link:hover {
    border-bottom: 1px solid #aeb455; }

.active-link {
  cursor: pointer;
  color: #00B4E6;
  border-bottom: 1px solid transparent;
  transition: .3s ease; }
  .active-link:hover {
    color: #00B4E6;
    border-bottom: 1px solid #00B4E6; }

.auth-link {
  color: #515C64;
  font-size: 18px;
  line-height: 26px;
  border-bottom: 1px solid #515C64;
  transition: 0.3s; }
  .auth-link:hover, .auth-link:focus {
    cursor: pointer;
    border-bottom-color: transparent; }

.dashed-link {
  color: #AEB455;
  cursor: pointer;
  border-bottom: 1px dashed #AEB455;
  transition: all 0.3s; }
  .dashed-link:hover {
    border-bottom-color: transparent; }

.banner-info__wrap {
  display: block;
  height: 150px;
  padding-bottom: 150px;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  border-radius: 15px;
  text-decoration: none;
  text-align: center;
  transition: 0.3s; }
  @media (max-width: 1019.98px) {
    .banner-info__wrap {
      padding-bottom: 47%; } }
  .banner-info__wrap h3 {
    margin-top: 34px; }
  .banner-info__wrap:hover {
    box-shadow: 5px 10px 20px rgba(95, 90, 122, 0.2); }

.banner-info__title p {
  text-align: right;
  padding-left: 92px;
  padding-right: 59px; }
  @media (max-width: 1019.98px) {
    .banner-info__title p {
      display: inline-block;
      color: #fff;
      opacity: 0.5;
      padding: 0;
      margin: 15px 0 5px 0;
      font-size: 15px; }
      .banner-info__title p:after {
        content: " "; } }

.banner-info__line {
  height: 87px; }

.banner-info__content {
  font-weight: 300;
  font-size: 38px;
  text-align: center;
  letter-spacing: 0.1em;
  padding-bottom: 20px; }
  @media (max-width: 1439.98px) {
    .banner-info__content {
      font-size: 22px;
      text-align: center;
      letter-spacing: 0.05em; } }

.banner-info__link {
  font-size: 18px;
  color: #29AAE1;
  text-align: center;
  cursor: pointer; }
  .banner-info__link:hover {
    color: #53BBE7; }
  @media (max-width: 1019.98px) {
    .banner-info__link {
      font-size: 16px;
      text-align: center; } }

.inheritHeight {
  height: inherit !important; }

.charge {
  background: #F5F5F5;
  padding: 40px 0; }
  .charge-title {
    text-align: center;
    text-transform: uppercase;
    padding: 0 20px; }
    @media (max-width: 1439.98px) {
      .charge-title {
        text-transform: none;
        margin-bottom: 27px; } }
  .charge-wrap {
    padding: 25px 30px 30px 30px;
    height: 407px;
    display: flex;
    flex-direction: column;
    border-radius: 15px;
    background-color: #fff;
    background-position: 93% 80%;
    background-size: auto;
    background-repeat: no-repeat;
    transition: 0.3s;
    cursor: pointer; }
    @media (max-width: 1439.98px) {
      .charge-wrap {
        background-size: 50%;
        background-position-y: 70%; } }
    @media (max-width: 1019.98px) {
      .charge-wrap {
        background-size: auto;
        background-position-y: 90%; } }
    .charge-wrap:hover {
      box-shadow: 5px 5px 30px rgba(0, 0, 0, 0.15); }
    @media (max-width: 1439.98px) {
      .charge-wrap {
        margin-bottom: 20px; } }
    .charge-wrap__title {
      margin-bottom: 20px; }
      @media (max-width: 1439.98px) {
        .charge-wrap__title {
          margin-bottom: 10px; } }
      @media (min-width: 1020px) and (max-width: 1439.98px) {
        .charge-wrap__title {
          font-size: 24px;
          line-height: 28px; } }
      @media (min-width: 576px) and (max-width: 1019.98px) {
        .charge-wrap__title {
          font-size: 40px;
          line-height: 45px; } }
      @media (max-width: 575.98px) {
        .charge-wrap__title {
          font-size: 24px;
          line-height: 28px; } }
    @media (min-width: 576px) and (max-width: 1439.98px) {
      .charge-wrap__prices .price {
        font-size: 30px;
        line-height: 38px; } }
    .charge-wrap__button {
      margin-top: auto;
      transition: 0.3s;
      width: 195px; }
      .charge-wrap__button:hover {
        box-shadow: 5px 5px 20px rgba(0, 0, 0, 0.15);
        cursor: pointer; }

.tightBanner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #F7F7F7;
  width: 100%;
  height: 105px;
  border-radius: 15px; }
  .tightBanner .bannerButtons {
    display: flex; }
  .tightBanner .button {
    margin-right: 30px; }
  .tightBanner-button {
    white-space: nowrap;
    color: #fff; }
  .tightBanner .external_ico:after {
    content: '';
    background: url("/PlayNext/images/svg/external-link.svg") no-repeat center;
    padding: 1px 12px 0 10px; }
  .tightBanner-title {
    padding: 10px;
    padding-left: 30px;
    font-weight: 400;
    font-size: 20px; }
  @media (max-width: 1019.98px) {
    .tightBanner {
      height: 340px;
      justify-content: normal;
      align-items: start; }
      .tightBanner .bannerButtons {
        flex-wrap: wrap;
        position: absolute;
        bottom: 20px;
        left: 20px;
        width: 50%; }
      .tightBanner .button {
        margin-right: 0;
        margin-top: 10px; }
      .tightBanner-title {
        padding: 20px; } }

.bannerButtons-square {
  border-radius: 5px; }

/*main slider in home and catalog page */
.slider-slide-content {
  position: absolute;
  color: #fff;
  text-align: left;
  bottom: 55%;
  left: 30%;
  transform: translate(-30%, 55%);
  margin: 0 auto; }
  @media (max-width: 1439.98px) {
    .slider-slide-content {
      bottom: 80%;
      left: 50%;
      transform: translate(-50%, 80%); } }
  .slider-slide-content-title {
    width: 48%;
    font-size: 51px;
    color: #fff; }
    @media (max-width: 1019.98px) {
      .slider-slide-content-title {
        width: 65%;
        font-size: 25px;
        line-height: 35px; } }
    @media (max-width: 1439.98px) {
      .slider-slide-content-title {
        font-size: 30px;
        line-height: 40px; } }
  .slider-slide-content-link {
    position: absolute;
    top: 0;
    left: 0;
    display: block;
    width: 100%;
    height: 100%; }

.slider-banners {
  background: #F4F5F5;
  padding: 40px 0;
  margin-top: 40px; }
  .slider-banners-wrap {
    position: relative;
    border-radius: 15px;
    transition: 0.3s;
    padding-top: 100%;
    /*height: 430px;*/
    background-repeat: no-repeat;
    background-position: right bottom;
    background-size: cover;
    color: #5C7684;
    background-color: #f7f7f7; }
    @media (max-width: 1019.98px) {
      .slider-banners-wrap {
        margin-bottom: 20px; } }
    .slider-banners-wrap:hover {
      box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.25);
      cursor: pointer; }
    .slider-banners-wrap__mobile {
      height: 200px;
      width: 100%;
      /*padding: 25px 30px;*/
      background-color: #f7f7f7;
      background-size: contain;
      background-repeat: no-repeat;
      background-origin: padding-box; }
  .slider-banners__content {
    padding: 25px 30px; }
    @media (max-width: 1439.98px) {
      .slider-banners__content {
        padding: 20px; } }
  .slider-banners__category {
    font-family: "Rounds Black", sans-serif;
    font-size: 18px;
    line-height: 26px;
    text-transform: uppercase;
    color: #5C7684; }
    .slider-banners__category:first-child .slider-banners__title {
      color: #505FB0; }
  .slider-banners__title {
    position: absolute;
    top: 30px;
    left: 30px;
    right: 30px;
    transition: 0.3s;
    line-height: 1.19444em; }
    @media (max-width: 1439.98px) {
      .slider-banners__title {
        top: 20px;
        left: 20px;
        right: 30px; } }
    @media (min-width: 1020px) and (max-width: 1439.98px) {
      .slider-banners__title {
        font-size: 24px; } }
    @media (min-width: 576px) and (max-width: 1019.98px) {
      .slider-banners__title {
        font-size: 40px; }
        .slider-banners__title br {
          display: none; } }
    @media (max-width: 575.98px) {
      .slider-banners__title {
        font-size: 24px; } }
  @media (max-width: 1019.98px) {
    .slider-banners__text br {
      display: none; } }
  .slider-banners .price, .slider-banners .price-old {
    font-family: "Rounds Black", sans-serif; }
  .slider-banners .price-old {
    color: #5C7684;
    font-size: 16px;
    line-height: normal; }
    .slider-banners .price-old .ruble {
      font-size: 16px;
      line-height: normal; }
  .slider-banners .price {
    font-size: 36px;
    line-height: 38px; }
  .slider-banners .ruble {
    font-family: "Nunito", sans-serif;
    font-size: 36px;
    line-height: 33px; }
  .slider-banners__button {
    position: absolute;
    bottom: 30px;
    left: 25px;
    transition: 0.3s; }
    @media (max-width: 1439.98px) {
      .slider-banners__button {
        bottom: 20px;
        left: 20px; } }

.zebraTable {
  border-collapse: collapse;
  width: 100%; }
  .zebraTable tr {
    background-color: #fff;
    width: 100%; }
    .zebraTable tr:nth-child(even) td {
      background-color: #fff; }
    .zebraTable tr:nth-child(odd) td {
      background-color: #FBFBFB; }
    .zebraTable tr td {
      width: 50%;
      text-align: left;
      margin: 0;
      padding: 0; }
      .zebraTable tr td span {
        display: block;
        padding: 15px; }

.zebraTable-first tr {
  background-color: #fff; }
  .zebraTable-first tr:nth-child(even) td {
    background-color: #fff; }
  .zebraTable-first tr:nth-child(odd) td {
    background-color: #FBFBFB; }

@media (min-width: 576px) {
  .modal {
    padding-left: 0 !important; }
    .modal-dialog {
      max-width: unset; } }

@media (max-width: 575.98px) {
  .modal-dialog {
    margin: 0; }
  .modal-content {
    border: none;
    border-radius: 0; } }

.modal-body {
  padding: 0; }

.modal-content {
  width: unset;
  margin: auto;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.25);
  border-radius: 10px; }

.modal-dialog-centered .modal-content {
  width: unset; }

.popover {
  border: none;
  outline: none;
  max-width: unset; }
  .popover .arrow:before {
    border-color: transparent; }
  .popover-header {
    display: none; }
  .popover-body {
    padding: 0; }

.popover {
  border-radius: 15px;
  box-shadow: 10px 10px 20px rgba(0, 0, 0, 0.25); }

.popover-body {
  color: #333; }

.sorting-wrap {
  display: flex;
  justify-content: flex-end;
  align-items: flex-end;
  height: 100%; }
  .sorting-wrap__title {
    height: 21px;
    margin: 0 10px;
    color: rgba(147, 149, 152, 0.6); }
  .sorting-wrap__item {
    height: 21px;
    margin: 0 10px;
    border-bottom: 1px dashed rgba(174, 180, 85, 0.5);
    cursor: pointer;
    transition: all .3s ease, opacity .1s; }
    .sorting-wrap__item:last-child {
      margin-right: 0; }
    .sorting-wrap__item:hover {
      border-color: rgba(255, 80, 0, 0.2); }
    .sorting-wrap__item .svg-icon {
      width: 0;
      height: 0;
      margin-left: 0;
      fill: currentColor;
      transition: all .3s ease; }
    .sorting-wrap__item-active {
      border: none;
      color: #AEB455; }
      .sorting-wrap__item-active .svg-icon {
        width: 12px;
        height: 12px;
        margin-left: 8px; }
      .sorting-wrap__item-active:hover {
        opacity: .6; }

body #nprogress .spinner {
  top: 15px; }
  @media (max-width: 1019.98px) {
    body #nprogress .spinner {
      top: 21px;
      right: 18px; } }

/*new colors*/
/* home top banners */
/*
  Custom Bootstrap breakpoints
*/
.popover-infoHint-content[data-v-0fd29f92] {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 267px;
  height: 237px;
  padding: 20px;
}
.popover-infoHint-content-title[data-v-0fd29f92] {
    margin: 0;
}

/*new colors*/
/* home top banners */
/*
  Custom Bootstrap breakpoints
*/
.popup[data-v-51989c70] {
  width: 100%;
  height: 100vh;
}
@media (min-width: 576px) {
.popup[data-v-51989c70] {
      width: 620px;
      height: 520px;
}
}
.popup-addedToBasket[data-v-51989c70] {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 50px;
    height: 100%;
}
@media (max-width: 575.98px) {
.popup-addedToBasket[data-v-51989c70] {
        padding: 0;
}
}
.popup-addedToBasket .buttons > div[data-v-51989c70] {
      display: flex;
      justify-content: space-around;
}
@media (max-width: 575.98px) {
.popup-addedToBasket .buttons > div[data-v-51989c70] {
          margin-bottom: 15px;
}
}
.popup-addedToBasket-return-btn[data-v-51989c70] {
      color: #fff;
}
.popup-title[data-v-51989c70] {
    text-align: center;
    margin-bottom: 40px;
}
.popup-title .h3[data-v-51989c70] {
      margin-bottom: 0;
}
@media (max-width: 575.98px) {
.popup-title[data-v-51989c70] {
        margin-bottom: 20px;
}
.popup-title .h3[data-v-51989c70] {
          margin-bottom: 20px;
}
}
.popup-itemInfo[data-v-51989c70] {
    margin-bottom: 40px;
}
.popup-itemInfo-image[data-v-51989c70] {
      background-repeat: no-repeat;
      background-size: contain;
      background-position: center;
      padding-top: 100%;
}
.popup-itemInfo-shortInfo-title[data-v-51989c70] {
      margin-bottom: 25px;
}
@media (max-width: 575.98px) {
.popup-itemInfo-shortInfo-title[data-v-51989c70] {
          margin-bottom: 20px;
}
}
.popup-button[data-v-51989c70] {
    width: 220px;
    height: 42px;
    padding: 0 0 2px;
}

/*new colors*/
/* home top banners */
/*
  Custom Bootstrap breakpoints
*/
.popover-size-card {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  width: 100%;
  max-width: 200px;
  background: linear-gradient(0deg, #ffffff, #ffffff);
  box-shadow: 5px 10px 30px rgba(95, 90, 122, 0.3);
  border-radius: 5px;
  opacity: 0;
  pointer-events: none;
  transition: 0.3s linear opacity;
}
.popover-size-card__content {
    padding: 20px;
}
.popover-size-card__title {
    font-weight: bold;
    font-size: 16px;
    line-height: 25px;
    color: #778E9A;
}
.popover-size-card__list {
    margin: 0;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    list-style: none;
}
.popover-size-card__list li:not(:last-child)::after {
      content: ",";
      padding-right: 5px;
      margin-left: -5px;
}

/*new colors*/
/* home top banners */
/*
  Custom Bootstrap breakpoints
*/
/*.v-spinner
{
    margin: 100px auto;
    text-align: center;
}
*/
@keyframes v-pulseStretchDelay {
0%,
  80% {
    transform: scale(1);
    -webkit-opacity: 1;
    opacity: 1;
}
45% {
    transform: scale(0.1);
    -webkit-opacity: 0.7;
    opacity: 0.7;
}
}

/*new colors*/
/* home top banners */
/*
  Custom Bootstrap breakpoints
*/
.product[data-v-20cd254c] {
  position: relative;
  display: block;
  transition: 0.3s;
  border: 3px dashed transparent;
  border-radius: 15px;
  position: relative;
  height: 100%;
  margin: auto;
  z-index: 888;
  overflow: hidden;
  /*.label-sale {
    position: absolute;
    top: 20px;
    left: 20px;
  }

  .label-hit {
    position: absolute;
    top: 20px;
    left: 20px;
  }

  .label-sort {
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    margin: auto;
  }

  .label-set {
    position: absolute;
    top: 20px;
    left: 20px;
  }

  .label-new {
    position: absolute;
    top: 20px;
    left: 20px;
  }*/
}
.product h3[data-v-20cd254c] {
    margin: 0;
}
.product .row[data-v-20cd254c] {
    padding: 40px 20px;
}
.product .wrapper__labels[data-v-20cd254c] {
    position: absolute;
    top: 20px;
    left: 20px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.product .wrapper__labels-item[data-v-20cd254c] {
      position: relative;
      margin-bottom: 10px;
}
.product .wrapper__visual[data-v-20cd254c] {
    position: relative;
    overflow: hidden;
    margin: 0 20px;
}
@media (max-width: 1019.98px) {
.product .wrapper__visual[data-v-20cd254c] {
        margin: 20px;
}
}
.product .wrapper__visual-image[data-v-20cd254c] {
      position: relative;
      max-width: 100%;
      max-height: 100%;
      padding-top: 100%;
      margin: 20px auto 23px;
      display: flex;
      align-items: center;
      overflow: hidden;
}
@media (max-width: 1019.98px) {
.product .wrapper__visual-image[data-v-20cd254c] {
          width: 100%;
          margin: 0 auto 23px;
}
}
.product .wrapper__visual-image .image-display-none[data-v-20cd254c] {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        opacity: 0;
        width: calc(100% - 56px);
        height: calc(100% - 56px);
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
        transition: opacity .3s ease-out;
}
.product .wrapper__visual-image .image-active[data-v-20cd254c] {
        opacity: 1;
}
.product .wrapper__visual-image img[data-v-20cd254c] {
        width: 100%;
}
.product .wrapper__visual .custom-pagination[data-v-20cd254c] {
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      display: flex;
      flex-direction: row;
      justify-content: space-between;
}
.product .wrapper__visual .custom-pagination-block[data-v-20cd254c] {
        position: relative;
        width: 100%;
        height: 100%;
        margin-right: 10px;
}
.product .wrapper__visual .custom-pagination-block-active .custom-pagination-block__bullet[data-v-20cd254c]:before {
          background-color: rgba(147, 149, 152, 0.4);
}
.product .wrapper__visual .custom-pagination-block__bullet[data-v-20cd254c] {
          position: absolute;
          width: 100%;
          height: 20px;
          bottom: 0;
}
.product .wrapper__visual .custom-pagination-block__bullet[data-v-20cd254c]:before {
            content: '';
            position: absolute;
            display: block;
            top: 0;
            bottom: 0;
            right: 0;
            left: 0;
            margin: auto;
            width: 100%;
            height: 3px;
            background-color: #F4F5F5;
            transition: all .3s ease;
}
.product .wrapper__visual .custom-pagination-block[data-v-20cd254c]:last-child {
          margin-right: 0;
}
.product .wrapper__visual .reviewIcon[data-v-20cd254c] {
      position: absolute;
      bottom: 23px;
      left: 0;
      display: flex;
      align-items: center;
      width: 70px;
      height: 22px;
      color: #333;
      font-size: 12px;
      font-weight: 300;
      z-index: 1;
}
.product .wrapper__visual .reviewIcon-gradient[data-v-20cd254c] {
        position: absolute;
        top: 0;
        right: 0;
        bottom: 0;
        left: 0;
        background: linear-gradient(270deg, #F2F2F2 0%, #fff 100%);
        z-index: -1;
}
.product .wrapper__visual .reviewIcon-svg[data-v-20cd254c] {
        width: 20px;
        height: 22px;
        fill: #AEB455;
}
.product .wrapper__visual .reviewIcon span[data-v-20cd254c] {
        margin-left: 7px;
}
.product .wrapper__inner-wrap[data-v-20cd254c] {
    padding-left: 20px;
    padding-right: 20px;
    margin-bottom: 30px;
}
.product .wrapper__inner-wrap--info[data-v-20cd254c] {
      position: relative;
}
.product .wrapper__inner-wrap--info:hover .popover-size-card[data-v-20cd254c] {
        opacity: 1;
}
.product .wrapper__inner-wrap .wrapper__cart[data-v-20cd254c] {
      position: absolute;
      bottom: 20px;
      right: 20px;
      width: 44px;
      height: 44px;
      border: 1px solid #EF6C68;
      border-radius: 50px;
      display: flex;
      align-items: center;
      transition: all 0.3s cubic-bezier(0.4, 0, 1, 1);
}
.product .wrapper__inner-wrap .wrapper__cart[data-v-20cd254c]:hover {
        border-radius: 5px;
}
.product .wrapper__inner-wrap .wrapper__cart .basketIco[data-v-20cd254c] {
        color: #EF6C68;
        overflow: hidden;
        transition: .2s;
}
.product .wrapper__inner-wrap .wrapper__cart .basketIco span[data-v-20cd254c] {
          color: rgba(255, 50, 0, 0);
          opacity: 0;
          transition: opacity 0.3s cubic-bezier(0.55, 0.06, 0.68, 0.19), color 0.2s;
}
.product .wrapper__inner-wrap .wrapper__cart .basketIco .basket[data-v-20cd254c] {
          position: absolute;
          width: 22px;
          height: 17px;
          top: 0;
          bottom: 0;
          right: 11px;
          margin: auto;
          transition: all .2s;
}
.product .wrapper__inner-wrap .wrapper__cart .basketIco .basket path[data-v-20cd254c] {
            fill: #AEB455;
            transition: all .2s;
}
.product .wrapper__inner-wrap .wrapper__cart .cardPreloader[data-v-20cd254c] {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        height: 100%;
        border-radius: 30px;
        background-color: #EF6C68;
}
.product .wrapper__inner-wrap .wrapper__cart--out[data-v-20cd254c] {
      position: absolute;
      bottom: 40px;
      right: 25px;
      width: 140px;
      text-align: right;
}
.product .wrapper__inner-wrap .buyBtn-active[data-v-20cd254c] {
      width: 115px;
      border-radius: 5px;
}
.product .wrapper__inner-wrap .buyBtn-active[data-v-20cd254c]:hover {
        box-shadow: 0px 6px 12px rgba(239, 108, 104, 0.4);
}
.product .wrapper__inner-wrap .buyBtn-active .basketIco[data-v-20cd254c] {
        padding-left: 14px;
}
.product .wrapper__inner-wrap .buyBtn-active .basketIco .basket[data-v-20cd254c] {
          right: 12px;
}
.product .wrapper__inner-wrap .buyBtn-active .basketIco span[data-v-20cd254c] {
          opacity: 1;
          color: #000;
}
.product .wrapper__inner-wrap .buyBtn-active[data-v-20cd254c]:hover {
        background-color: #EF6C68;
}
.product .wrapper__inner-wrap .buyBtn-active:hover .basketIco span[data-v-20cd254c] {
          color: #fff;
}
.product .wrapper__inner-wrap .buyBtn-active:hover .basketIco .basket[data-v-20cd254c] {
          fill: #fff;
}
.product .wrapper__inner-wrap .buyBtn-active:hover .basketIco .basket path[data-v-20cd254c] {
            fill: #fff;
}
.product .wrapper__lane[data-v-20cd254c] {
    margin-top: 10px;
    font-size: 12px;
    line-height: 16px;
}
.product .wrapper__name[data-v-20cd254c] {
    /*font-weight: normal;*/
    /*line-height: 26px;*/
    /*font-size: 20px;*/
    height: 78px;
    overflow: hidden;
    margin: 0;
    color: #98AAB3;
    transition: 0.3s;
}
.product .wrapper__descr[data-v-20cd254c] {
    font-style: normal;
    /*font-weight: 400;*/
    font-size: 16px;
    line-height: 22px;
    letter-spacing: -0.2px;
    color: #5C7684;
    margin-bottom: 90px;
    height: 66px;
    overflow: hidden;
}
.product .wrapper__price-old[data-v-20cd254c] {
    position: absolute;
    left: 20px;
    bottom: 60px;
}
.product .wrapper__price[data-v-20cd254c] {
    position: absolute;
    left: 20px;
    bottom: 25px;
    font-family: "Nunito", sans-serif;
    font-style: normal;
    font-size: 30px;
    font-weight: 900;
    line-height: 38px;
    color: #EF6C68;
    display: inline;
}
@media (min-width: 576px) {
.product[data-v-20cd254c]:hover {
      cursor: pointer;
      z-index: 999;
      border-image-source: url("/PlayNext/images/hover_bg.png");
      border-image-slice: 27 27 27 27;
      border-image-width: 20px 20px 20px 20px;
      border-image-outset: 0px 0px 0px 0px;
      border-image-repeat: stretch stretch;
}
.product:hover .wrapper__name[data-v-20cd254c] {
        transition: 0.3s;
        color: #AEB455 !important;
}
.product:hover .wrapper__cart[data-v-20cd254c] {
        border-radius: 5px;
        background: #EF6C68;
        box-shadow: 0 6px 12px rgba(239, 108, 104, 0.4);
}
.product:hover .wrapper__cart[data-v-20cd254c]:hover {
          box-shadow: 0 6px 12px rgba(239, 108, 104, 0.4);
}
.product:hover .wrapper__cart .basketIco span[data-v-20cd254c] {
          color: #fff;
}
.product:hover .wrapper__cart .basketIco .basket[data-v-20cd254c] {
          fill: #fff;
}
.product:hover .wrapper__cart .basketIco .basket path[data-v-20cd254c] {
            fill: #fff;
}
}
.inBasketModal[data-v-20cd254c] {
  position: absolute;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  z-index: 999;
  width: 100%;
  height: 100%;
  background-color: #fff;
}
.inBasketModal h3[data-v-20cd254c] {
    padding: 0 25px;
    margin-bottom: 40px;
}
.inBasketModal .buttons[data-v-20cd254c] {
    padding: 0 40px;
}
.inBasketModal .buttons .button[data-v-20cd254c] {
      margin-bottom: 20px;
}

/*new colors*/
/* home top banners */
/*
  Custom Bootstrap breakpoints
*/
.popular-products {
  padding-bottom: 0;
  /*.label-sale {
        position: absolute;
        top: 20px;
        left: 20px;
    }

    .label-hit {
        position: absolute;
        top: 20px;
        left: 20px;
    }

    h3 {
        margin: 0;
    }*/
  /*&-wrapper {

        &__item {
            transition: 0.3s;
            border-bottom: 1px solid $default-hr;
            border-right: 1px solid $default-hr;
            border-left: 0.5px solid transparent;
            background-color: transparent;
            position: relative;
            margin: auto;
            z-index: 888;

            &:hover {
                cursor: pointer;
                background-color: $white;
                z-index: 999;
                border-color: transparent !important;
                box-shadow: 5px 5px 25px rgba(0, 0, 0, 0.20),
                -1px -1px 0px 1px #FFF;

                .product-wrapper__button-cart {
                    opacity: 1;
                    transition: 0.3s;
                    box-shadow: 5px 5px 25px rgba(0, 0, 0, 0.20);
                }
                .product-wrapper__cart {
                    width: 115px;

                    span {
                        opacity: 1;
                        color: #000;
                    }

                    .basketIco {
                        padding-left: 14px;

                        .basket {
                            right: 12px;
                        }
                    }

                    &:hover {
                        background-color: $brand-color;

                        .basketIco {

                            span {
                                color: #fff;
                            }

                            .basket {

                                path {
                                    fill: #fff;
                                }
                            }

                            !*&:after {
                                background-color: #fff;
                            }*!
                        }
                    }
                }
            }
        }

        &__visual {
            position: relative;
            overflow: hidden;
            margin: 0 20px;

            &-image {
                position: relative;
                max-width: 290px;
                margin: auto;
                padding: 20px 0;
                overflow: hidden;

                .image-display-none {
                    position: absolute;
                    top: 100%;
                    opacity: 0;
                    width: 100%;

                    transition: opacity .3s ease;
                }

                .image-active {
                    position: static;
                    opacity: 1;
                }

                @include media-breakpoint-down( sm ) {
                    margin: 0 auto;
                }
            }

            .custom-pagination {
                position: absolute;
                top: 0;
                left: 0;
                width: 100%;
                height: 100%;
                display: flex;
                flex-direction: row;
                justify-content: space-between;

                &-block {
                    position: relative;
                    width: 100%;
                    height: 100%;
                    margin-right: 4px;

                    &-active {
                        .custom-pagination-block__bullet {
                            background-color: rgba(147, 149, 152, 0.4);
                        }
                    }

                    &__bullet {
                        position: absolute;
                        width: 100%;
                        height: 3px;
                        bottom: 0;
                        background-color: #F4F5F5;
                        transition: all .3s ease;
                    }

                    &:last-child {
                        margin-right: 0;
                    }
                }
            }

            .reviewIcon {
                position: absolute;
                bottom: 25px;
                left: 0;
                display: flex;
                align-items: center;
                width: 70px;
                height: 22px;
                color: #333;
                font-size: 12px;
                font-weight: 300;

                &-gradient {
                    position: absolute;
                    top: 0;
                    right: 0;
                    bottom: 0;
                    left: 0;
                    opacity: .3;
                    background: linear-gradient(270deg, #D4D4D4 0%, rgba(212, 212, 212, .3) 100%);
                }

                &-svg {
                    width: 20px;
                    height: 22px;
                    fill: $brand-color;
                }

                span {
                    margin-left: 10px;
                }
            }
        }
        &__inner-wrap {
            padding-left: 20px;
            margin-bottom: 30px;
        }
        &__name {
            font-weight: normal;
            line-height: 26px;
            font-size: 20px;
            color: #333333;
            margin: 15px 0;
        }
        &__descr {
            font-style: normal;
            font-weight: 300;
            font-size: 16px;
            color: $header-gray;
            margin-bottom: 20px;
        }
        &__price-old {
            font-style: normal;
            font-weight: 300;
            font-size: 14px;
            text-decoration: line-through;
            color: #333333;
            opacity: 0.5;
        }
        &__price {
            font-style: normal;
            font-weight: 300;
            font-size: 30px;
            color: #333333;
            display: inline;
        }
        &__cart {
            position: absolute;
            bottom: 20px;
            right: 20px;
            width: 44px;
            height: 44px;
            border: 1px solid rgba(255, 50, 0, .5);
            border-radius: 3px;
            display: flex;
            align-items: center;

            transition: all .3s cubic-bezier(0.4, 0, 1, 1);

            .basketIco {
                color: $brand-color;
                overflow: hidden;

                transition: .2s;

                span {
                    color: rgba(255, 50, 0, 0);
                    opacity: 0;

                    transition: opacity .3s cubic-bezier(0.55, 0.06, 0.68, 0.19),
                    color .2s;
                }

                .basket {
                    position: absolute;
                    width: 30px;
                    height: 30px;
                    top: 0;
                    bottom: 0;
                    right: 8px;
                    margin: auto;

                    transition: all .2s;

                    path {
                        fill: $brand-color;
                        transition: all .2s;
                    }
                }
            }
        }
    }*/
}
.popular-products .container {
    position: relative;
}
.popular-products h3 {
    color: #AEB455;
    text-align: center;
    margin: 0;
}
@media (max-width: 1439.98px) {
.popular-products h3 {
        font-size: 27px;
}
}
.popular-products .product-swiper-slide {
    height: 100%;
}
.popular-products .product-swiper-slide .modal {
      display: none !important;
}
.popular-products .product-swiper-slide .modal-backdrop {
        display: none !important;
}
.popular-products .swiper-wrapper {
    z-index: 2;
}
.popular-products .swiper-container {
    padding: 45px 1.5px;
}
@media (max-width: 1019.98px) {
.popular-products .swiper-container {
        padding: 20px 1.5px;
}
}
.popular-products .swiper-container:hover {
      margin: 0 -19px;
      padding-left: 20.5px;
      padding-right: 20.5px;
}
@media (max-width: 1019.98px) {
.popular-products .swiper-custom-controls {
      position: static;
      margin: 0;
}
}
.popular-products .slider-prev, .popular-products .slider-next {
    position: absolute;
    z-index: 2;
    top: 0;
    bottom: 0;
    width: 25px;
    height: 42px;
    background-color: #fff;
    border: 1px solid #DFE0E1;
    border-radius: 30%;
    margin: auto 0;
    cursor: pointer;
    outline: none;
    overflow: hidden;
    transition: all .3s ease;
}
.popular-products .slider-prev .arrow-thin, .popular-products .slider-next .arrow-thin {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      width: 13px;
      height: 20px;
      margin: auto;
      fill: #aaa;
      transition: all .3s ease;
}
.popular-products .slider-prev:hover .arrow-thin, .popular-products .slider-next:hover .arrow-thin {
      fill: #AEB455;
}
.popular-products .slider-prev {
    left: 9px;
}
.popular-products .slider-prev .arrow-thin {
      left: -1px;
      transform: rotate(180deg);
}
.popular-products .slider-next {
    right: 9px;
}
.popular-products .slider-next .arrow-thin {
      right: -1px;
}
@media (max-width: 1019.98px) {
.popular-products .slider {
      position: relative;
      margin: 0;
      top: initial;
      bottom: initial;
      width: 30px;
      height: 30px;
}
}
.popular-products .row {
    padding: 40px 20px;
}
.popular-products .wrapper__name {
    color: #5C7684 !important;
}
.popular-products .wrapper__decr {
    color: #5C7684 !important;
}

/*new colors*/
/* home top banners */
/*
  Custom Bootstrap breakpoints
*/
.popular-products {
  padding-bottom: 0;
}
.popular-products .container {
    position: relative;
}
.popular-products h3 {
    color: #AEB455;
    text-align: center;
    margin: 0;
}
.popular-products .product-swiper-slide {
    height: 100%;
}
.popular-products .product-swiper-slide .modal {
      display: none !important;
}
.popular-products .product-swiper-slide .modal-backdrop {
        display: none !important;
}
.popular-products .swiper-wrapper {
    z-index: 2;
}
.popular-products .swiper-container {
    padding: 45px 1.5px;
}
@media (max-width: 1019.98px) {
.popular-products .swiper-container {
        padding: 20px 1.5px;
}
}
.popular-products .swiper-container:hover {
      margin: 0 -19px;
      padding-left: 20.5px;
      padding-right: 20.5px;
}
@media (max-width: 1019.98px) {
.popular-products .swiper-custom-controls {
      position: static;
      margin: 0;
}
}
.popular-products .slider-prev, .popular-products .slider-next {
    position: absolute;
    z-index: 2;
    top: 0;
    bottom: 0;
    width: 25px;
    height: 42px;
    background-color: #fff;
    border: 1px solid #DFE0E1;
    border-radius: 30%;
    margin: auto 0;
    cursor: pointer;
    outline: none;
    overflow: hidden;
    transition: all .3s ease;
}
.popular-products .slider-prev .arrow-thin, .popular-products .slider-next .arrow-thin {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      width: 13px;
      height: 20px;
      margin: auto;
      fill: #aaa;
      transition: all .3s ease;
}
.popular-products .slider-prev:hover .arrow-thin, .popular-products .slider-next:hover .arrow-thin {
      fill: #AEB455;
}
.popular-products .slider-prev {
    left: 9px;
}
.popular-products .slider-prev .arrow-thin {
      left: -1px;
      transform: rotate(180deg);
}
.popular-products .slider-next {
    right: 9px;
}
.popular-products .slider-next .arrow-thin {
      right: -1px;
}
@media (max-width: 1019.98px) {
.popular-products .slider {
      position: relative;
      margin: 0;
      top: initial;
      bottom: initial;
      width: 30px;
      height: 30px;
}
}
.popular-products .row {
    padding: 40px 20px;
}
.popular-products .wrapper__name {
    color: #5C7684 !important;
}
.popular-products .wrapper__decr {
    color: #5C7684 !important;
}
.popular-products__title a {
    color: #AEB455;
    transition: 0.3s linear opacity;
}
.popular-products__title a:hover, .popular-products__title a:focus {
      opacity: 0.7;
}

/*new colors*/
/* home top banners */
/*
  Custom Bootstrap breakpoints
*/
.popup[data-v-e6f3d42e] {
  width: 480px;
  height: 450px;
  background-color: #fff;
  overflow: hidden;
  border-radius: 3px;
}
@media (max-width: 575.98px) {
.popup[data-v-e6f3d42e] {
      width: 100%;
      height: 100vh;
      border-radius: 0;
}
}
.popup .successPopup[data-v-e6f3d42e] {
    padding: 70px 50px;
}
.popup-content[data-v-e6f3d42e] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 73px;
    width: 100%;
    height: 100%;
    background-color: #fff;
    position: relative;
}
@media (max-width: 575.98px) {
.popup-content[data-v-e6f3d42e] {
        padding: 40px 0;
}
}
.popup-content-icon .svg-icon[data-v-e6f3d42e] {
      width: 100px;
      height: 100px;
      margin-bottom: 20px;
      fill: #6AC259;
}
.popup-content-title[data-v-e6f3d42e] {
      text-align: center;
      margin-bottom: 40px;
}
.popup-content input[data-v-e6f3d42e] {
      width: 100%;
}
.popup-close[data-v-e6f3d42e] {
    position: absolute;
    top: 0;
    right: 20px;
    font-family: Times New Roman;
    font-size: 48px;
    cursor: pointer;
    font-weight: 100;
    color: rgba(147, 149, 152, 0.7);
}
.popup-button[data-v-e6f3d42e] {
    width: 100%;
}

/*new colors*/
/* home top banners */
/*
  Custom Bootstrap breakpoints
*/
.popup[data-v-d48f0a3a] {
  width: 480px;
  height: 450px;
  background-color: #fff;
  overflow: hidden;
  border-radius: 3px;
}
@media (max-width: 575.98px) {
.popup[data-v-d48f0a3a] {
      width: 100%;
      height: 100vh;
      border-radius: 0;
}
}
.popup-content[data-v-d48f0a3a] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 73px;
    width: 100%;
    height: 100%;
    background-color: #fff;
    position: relative;
}
@media (max-width: 575.98px) {
.popup-content[data-v-d48f0a3a] {
        padding: 40px 0;
}
}
.popup-content-icon .svg-icon[data-v-d48f0a3a] {
      width: 100px;
      height: 100px;
      margin-bottom: 20px;
      fill: #6AC259;
}
.popup-content-title[data-v-d48f0a3a] {
      text-align: center;
      margin-bottom: 40px;
}
.popup-content input[data-v-d48f0a3a] {
      width: 100%;
}
.popup-close[data-v-d48f0a3a] {
    position: absolute;
    top: 0;
    right: 20px;
    font-family: Times New Roman;
    font-size: 48px;
    cursor: pointer;
    font-weight: 100;
    color: rgba(147, 149, 152, 0.7);
}
.popup-button[data-v-d48f0a3a] {
    width: 100%;
}

/*new colors*/
/* home top banners */
/*
  Custom Bootstrap breakpoints
*/
.home-about[data-v-01351a63] {
  padding-top: 5px;
}
.home-about h4[data-v-01351a63],
  .home-about h5[data-v-01351a63] {
    color: #AEB455;
}
.home-about h5[data-v-01351a63] {
    margin-top: 40px;
}
.home-about p[data-v-01351a63] {
    color: #5C7684;
}
.home-about__title[data-v-01351a63] {
    text-align: center;
}
.home-about__advantages[data-v-01351a63] {
    margin-top: 50px;
}
@media (max-width: 1019.98px) {
.home-about__advantages[data-v-01351a63] {
        margin-top: 20px;
}
}
.home-about .advantages__body:nth-child(1) .advantages__item[data-v-01351a63] {
    background-color: #babb4b;
}
.home-about .advantages__body:nth-child(2) .advantages__item[data-v-01351a63] {
    background-color: #697F8A;
}
.home-about .advantages__body:nth-child(3) .advantages__item[data-v-01351a63] {
    background-color: #E42D24;
}
.home-about .advantages__item[data-v-01351a63] {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100px;
    border-radius: 50px;
    overflow: hidden;
}
@media (max-width: 1439.98px) {
.home-about .advantages__item[data-v-01351a63] {
        margin-bottom: 30px;
        padding: 0 20px;
}
}
.home-about .advantages__item img[data-v-01351a63] {
      height: 100px;
}
.home-about .advantages__item img.advantages__item-img1[data-v-01351a63] {
        width: 282px;
}
@media (max-width: 575.98px) {
.home-about .advantages__item img.advantages__item-img1[data-v-01351a63] {
            width: 226px;
            height: 80px;
}
}
@media (min-width: 576px) and (max-width: 1439.98px) {
.home-about .advantages__item img.advantages__item-img1[data-v-01351a63] {
            width: 247px;
            height: 87px;
}
}
.home-about .advantages__item img.advantages__item-img2[data-v-01351a63] {
        width: 319px;
}
@media (max-width: 575.98px) {
.home-about .advantages__item img.advantages__item-img2[data-v-01351a63] {
            width: 255px;
            height: 80px;
}
}
@media (min-width: 576px) and (max-width: 1439.98px) {
.home-about .advantages__item img.advantages__item-img2[data-v-01351a63] {
            width: 247px;
            height: 77px;
}
}
.home-about .advantages__item img.advantages__item-img3[data-v-01351a63] {
        width: 235px;
}
@media (max-width: 1439.98px) {
.home-about .advantages__item img.advantages__item-img3[data-v-01351a63] {
            width: 212px;
            height: 90px;
}
}

/*new colors*/
/* home top banners */
/*
  Custom Bootstrap breakpoints
*/
.catalog-item__link {
  position: relative;
  display: block;
  height: 150px;
  border-radius: 15px;
  background-position: 100% center;
  background-size: cover;
  background-color: #5c7684;
}
.catalog-item__link:hover, .catalog-item__link:focus {
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.25);
}
.catalog-item__title {
  position: absolute;
  top: 0;
  left: 0;
  padding: 17px 20px;
  padding-right: 40%;
  color: #fff;
}

/*new colors*/
/* home top banners */
/*
  Custom Bootstrap breakpoints
*/
.catalog-list {
  padding: 0;
  margin-top: 0;
  margin-bottom: 0;
  list-style: none;
}
.catalog-list__item {
    margin-bottom: 40px;
}
@media (max-width: 575.98px) {
.catalog-list__item {
        margin-bottom: 20px;
}
}

/*new colors*/
/* home top banners */
/*
  Custom Bootstrap breakpoints
*/
@media (min-width: 1020px) and (max-width: 1439.98px) {
.catalog-offers__item:nth-child(3) .offer-banner p {
    display: inline;
}
}
.catalog-offers__banner {
  transition: 0.3s;
  font-weight: 400;
  font-family: "Rounds Black", sans-serif;
  padding: 15px 40% 69px 20px;
  height: 150px;
  margin-bottom: 40px;
  line-height: 26px;
  background-size: cover;
  background-color: #5c7684;
  background-position: 100% center;
  text-transform: uppercase;
  border-radius: 15px;
}
@media (max-width: 1019.98px) {
.catalog-offers__banner {
      width: 100%;
      /*margin: 0 auto 20px auto;*/
}
}
@media (max-width: 575.98px) {
.catalog-offers__banner {
      margin-bottom: 20px;
}
}
.catalog-offers__banner:hover {
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.25);
    cursor: pointer;
}
.catalog-offers__banner p {
    margin: 0;
    font-weight: normal;
}
.catalog-offers__banner h2 {
    color: #fff;
}
.catalog-offers__banner__0 {
    color: #fff;
}
.catalog-offers__banner__1 {
    color: #fff;
}
.catalog-offers__banner__2 {
    color: #fff;
}
.catalog-offers__banner__3 {
    color: #fff;
}
.catalog-offers__content p {
  margin: 0;
  font-weight: 400;
}

/*new colors*/
/* home top banners */
/*
  Custom Bootstrap breakpoints
*/
.homePage[data-v-ee1945d4] {
  /*.section-title {
        font-weight: 300;
        // line-height: 43px;
        // font-size: 36px;
        text-align: center;
        letter-spacing: 0.01em;
        color: $tb-primary-color;
        padding-bottom: 0;

        @include media-breakpoint-down(md) {
            font-size: 27px;
        }
        @include media-breakpoint-down(sm) {
            padding: 0;
        }
    }*/
}
.homePage-slider[data-v-ee1945d4] {
    height: 600px;
}
@media (max-width: 1439.98px) {
.homePage-slider[data-v-ee1945d4] {
        height: 450px;
}
}
@media (max-width: 1019.98px) {
.homePage-slider[data-v-ee1945d4] {
        height: 320px;
}
}
.homePage-slider-slide[data-v-ee1945d4] {
      width: 100%;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
}
.homePage h1[data-v-ee1945d4] {
    color: #AEB455;
    margin-bottom: 45px;
    line-height: 40px;
    text-align: center;
}
@media (max-width: 1439.98px) {
.homePage h1[data-v-ee1945d4] {
        font-size: 27px;
}
}
@media (max-width: 1019.98px) {
.homePage h1[data-v-ee1945d4] {
        margin-bottom: 20px;
}
}
.homePage .offers[data-v-ee1945d4] {
    padding-bottom: 0;
}
@media (max-width: 1019.98px) {
.homePage .offers[data-v-ee1945d4] {
        padding-top: 30px;
}
}
@media (max-width: 575.98px) {
.homePage .offers[data-v-ee1945d4] {
        padding-top: 20px;
}
}
.homePage .offers .h3[data-v-ee1945d4] {
      color: #AEB455;
      text-align: center;
}
@media (max-width: 1439.98px) {
.homePage .offers .h3[data-v-ee1945d4] {
          font-size: 27px;
}
}
@media (max-width: 1019.98px) {
.homePage .offers .h3[data-v-ee1945d4] {
          margin-bottom: 20px;
}
}
.homePage .label-sale[data-v-ee1945d4] {
    position: absolute;
    top: 20px;
    left: 20px;
}
.homePage .label-hit[data-v-ee1945d4] {
    position: absolute;
    top: 20px;
    left: 20px;
}
.homePage .label-info[data-v-ee1945d4] {
    position: absolute;
    top: 20px;
    right: 20px;
}
.homePage .banner-info[data-v-ee1945d4] {
    padding: 0;
    padding-top: 10px;
}
@media (max-width: 1439.98px) {
.homePage .banner-info[data-v-ee1945d4] {
        padding-top: 0px;
}
}
.homePage .banner-info__wrap[data-v-ee1945d4] {
      position: relative;
}
.homePage .banner-info__wrap a[data-v-ee1945d4] {
        position: absolute;
        bottom: 25px;
        left: 50%;
        width: 200px;
        color: #29AAE1;
        transition: .3s ease;
}
.homePage .banner-info__wrap a[data-v-ee1945d4]:hover {
          color: #53BBE7;
}
@media (max-width: 1439.98px) {
.homePage .banner-info__wrap a[data-v-ee1945d4] {
          bottom: 18px;
}
}
@media (max-width: 1019.98px) {
.homePage .banner-info__wrap a[data-v-ee1945d4] {
          left: 0;
          right: 0;
          bottom: 20px;
          margin: auto;
}
}
.homePage .banner-info__title p[data-v-ee1945d4] {
      text-align: right;
      padding-left: 92px;
      padding-right: 59px;
}
@media (max-width: 1019.98px) {
.homePage .banner-info__title p[data-v-ee1945d4] {
          display: inline-block;
          color: #fff;
          opacity: 0.5;
          padding: 0;
          margin: 15px 0 5px 0;
          font-size: 15px;
}
.homePage .banner-info__title p[data-v-ee1945d4]:after {
            content: " ";
}
}
.homePage .banner-info__line[data-v-ee1945d4] {
      height: 87px;
}
.homePage .banner-info__inner-wrap[data-v-ee1945d4] {
      display: block;
      padding-left: 119px;
}
@media (max-width: 1019.98px) {
.homePage .banner-info__inner-wrap[data-v-ee1945d4] {
          padding: 0;
}
}
.homePage .banner-info__content[data-v-ee1945d4] {
      font-weight: 300;
      font-size: 38px;
      text-align: center;
      letter-spacing: 0.1em;
      padding-bottom: 20px;
}
@media (max-width: 1439.98px) {
.homePage .banner-info__content[data-v-ee1945d4] {
          font-size: 22px;
          text-align: center;
          letter-spacing: 0.05em;
}
}
.homePage .banner-info__link[data-v-ee1945d4] {
      font-size: 18px;
      color: #29AAE1;
      text-align: center;
      cursor: pointer;
}
.homePage .banner-info__link[data-v-ee1945d4]:hover {
        color: #53BBE7;
}
@media (max-width: 1019.98px) {
.homePage .banner-info__link[data-v-ee1945d4] {
          font-size: 16px;
          text-align: center;
}
}
.homePage .charge[data-v-ee1945d4] {
    background: #F5F5F5;
}
.homePage .button-o[data-v-ee1945d4] {
    background: transparent;
    border: 1px solid #EF6C68;
    transition: 0.3s;
    padding: 10.5px 17px;
}
.homePage .button-o[data-v-ee1945d4]:hover {
      box-shadow: 10px 10px 30px rgba(0, 0, 0, 0.25);
      cursor: pointer;
      color: #fff !important;
      background-color: #EF6C68;
}
.homePage .content-showMore[data-v-ee1945d4] {
    display: none;
    text-align: center;
    color: #636569;
    font-style: normal;
    font-weight: 300;
    font-size: 18px;
    line-height: 1.44444em;
    margin: auto;
}
@media (max-width: 1019.98px) {
.homePage .content-showMore[data-v-ee1945d4] {
        display: block;
}
}
.homePage .content-showMore .pseudolink[data-v-ee1945d4]:after {
      content: '';
      display: inline-block;
      background: url("/PlayNext/images/svg/checkmark_arrow.svg") no-repeat center/contain;
      width: 15px;
      height: 15px;
      margin: auto 7px;
      transition: all .3s ease;
}
.homePage .content-title[data-v-ee1945d4] {
    text-align: center;
    font-weight: 300;
    line-height: 43px;
    font-size: 36px;
    letter-spacing: 0.01em;
    margin-bottom: 40px;
}
@media (max-width: 1439.98px) {
.homePage .content-title[data-v-ee1945d4] {
        font-size: 26px;
        line-height: 30px;
        margin-bottom: 20px;
}
}
.homePage .content-wrap[data-v-ee1945d4] {
    display: flex;
    justify-content: space-between;
}
.homePage .content-wrap .pseudolink[data-v-ee1945d4]:after {
      transform: rotate(180deg);
}
@media (max-width: 1019.98px) {
.homePage .content .content_mobile .content-column[data-v-ee1945d4] {
      display: none;
}
.homePage .content .content_mobile .content-column h5[data-v-ee1945d4] {
        display: none;
}
.homePage .content .content_mobile .content-column p[data-v-ee1945d4]:last-child {
        display: none;
}
.homePage .content .content_mobile .content-column[data-v-ee1945d4]:first-child {
        display: block;
}
}
.homePage .content .content_mobile .pseudolink[data-v-ee1945d4]:after {
    transform: rotate(0deg);
}
.homePage .content-column__subtitle[data-v-ee1945d4] {
    line-height: 31px;
    font-size: 25px;
    color: #333333;
    font-weight: 400;
    margin-top: 0;
}
@media (max-width: 1439.98px) {
.homePage .space[data-v-ee1945d4] {
      padding-top: 40px;
}
}
@media (max-width: 1019.98px) {
.homePage .hidden-mobile[data-v-ee1945d4] {
      display: none;
}
}
.homePage .row-fix[data-v-ee1945d4] {
    margin-left: 0;
    margin-right: 0;
}
.homePage .swiper-block[data-v-ee1945d4] {
    position: relative;
}
@media (min-width: 1020px) {
.homePage .swiper-pagination[data-v-ee1945d4] {
      position: absolute;
      display: block;
      bottom: 10px;
      left: 0;
      right: 0;
      margin: 0 auto;
}
}
@media (max-width: 1019.98px) {
.homePage .swiper-custom-controls[data-v-ee1945d4] {
      position: absolute;
      justify-content: space-between;
}
.homePage .swiper-pagination[data-v-ee1945d4] {
      position: static;
}
}
.homePage .popular-products[data-v-ee1945d4] {
    padding-top: 10px;
}
@media (max-width: 1019.98px) {
.homePage .popular-products[data-v-ee1945d4] {
        padding-top: 0px;
}
}

@charset "UTF-8";
/*new colors*/
/* home top banners */
/*
  Custom Bootstrap breakpoints
*/
/* меняем стилизацию данных полученных из админки*/
.homePage .slider-banners__0-wrap .slider-banners__content {
  /*div:first-child {*/
  /*font-weight: 300;*/
  /*line-height: 26px;*/
  /*font-size: 18px;*/
  /*text-transform: uppercase;*/
  /*padding-bottom: 10px;*/
  /*}*/
  /*div:nth-child(2) {
                    font-weight: 300;
                    line-height: 43px;
                    font-size: 36px;
                    padding-bottom: 10px;

                    @include media-breakpoint-down(sm) {
                        font-size: 33px;
                    }
                }

                div:nth-child(3) {
                    font-weight: 300;
                    font-size: 18px;
                    padding-bottom: 10px;
                }*/
}
.homePage .slider-banners__1-wrap .slider-banners__content {
  /*div:first-child {
                    font-weight: 300;
                    line-height: 43px;
                    font-size: 36px;
                    padding-bottom: 10px;
                    white-space:nowrap;

                    @include media-breakpoint-down(sm) {
                        font-size: 33px;
                    }

                    @include media-breakpoint-only(xs) {
                        font-size: 24px;git
                        line-height: 26px;
                    }
                }

                div:nth-child(2) {
                    font-weight: 300;
                    font-size: 16px;
                    padding-bottom: 10px;
                    opacity: 0.8;
                }*/
}

/*new colors*/
/* home top banners */
/*
  Custom Bootstrap breakpoints
*/
@media (max-width: 575.98px) {
.container_mobile {
    padding-left: 0;
    padding-right: 0;
}
}
.breadcrumbs {
  display: flex;
  margin-top: 20px;
  overflow-x: auto;
  margin-bottom: 15px;
}
.breadcrumbs::-webkit-scrollbar {
    display: none;
}
.breadcrumbs-item {
    display: flex;
    color: #939598;
    opacity: 0.8;
    white-space: nowrap;
    font-size: 12px;
}
@media (max-width: 575.98px) {
.breadcrumbs-item:first-child {
        padding-left: 20px;
}
.breadcrumbs-item:last-child {
        padding-right: 20px;
}
}
.breadcrumbs-item:not(:last-child)::after {
      display: block;
      content: '';
      margin: 0 10px;
      padding: 0 8px;
      background: url("/PlayNext/images/other/breadcrumbs_arrow.svg") no-repeat center;
}
.breadcrumbs-item > a {
      color: #939598;
      border-bottom: 1px solid transparent;
      transition: .3s;
}
.breadcrumbs-item > a:hover {
        border-color: rgba(0, 0, 0, 0.25);
}

/*new colors*/
/* home top banners */
/*
  Custom Bootstrap breakpoints
*/
.product-list-middle-banner {
  margin: 20px 0;
}
.product-list > div {
  /*@include media-breakpoint-up( md ) {
			border-left: 1px solid $default-hr;
		}*/
}
@media (max-width: 575.98px) {
.product-list > div .p-0 {
      margin-bottom: 20px;
}
}
.product-list > div .banner-info__wrap {
    position: relative;
}
.product-list > div .banner-info__wrap a {
      position: absolute;
      bottom: 25px;
      left: 50%;
      width: 200px;
      color: #29AAE1;
      transition: .3s ease;
}
.product-list > div .banner-info__wrap a:hover {
        color: #53BBE7;
}
@media (max-width: 1439.98px) {
.product-list > div .banner-info__wrap {
        padding-bottom: 100px;
        height: 100px;
}
.product-list > div .banner-info__wrap a {
          bottom: 18px;
}
}
@media (max-width: 1019.98px) {
.product-list > div .banner-info__wrap {
        padding-bottom: 47%;
        margin: 20px 0;
}
.product-list > div .banner-info__wrap a {
          left: 0;
          right: 0;
          bottom: 20px;
          margin: auto;
}
}
@media (max-width: 575.98px) {
.product-list > div .banner-info__wrap {
        margin-top: 0;
}
}
@media (min-width: 1020px) {
.product-list .topBorder {
    border-top: 1px solid #DFE0E1;
}
}
@media (max-width: 1439.98px) {
.product-list .list-before-banner .p-0:nth-of-type(2n + 1) .product, .product-list .list-after-banner .p-0:nth-of-type(2n + 1) .product {
    /*<!--border-left: 1px solid $default-hr;-->*/
}
}
.product-list .list-before-banner .searchPage .product {
  border-left: none;
}
@media (min-width: 1020px) and (max-width: 1439.98px) {
.product-list .list-before-banner .searchPage:nth-child(3n + 1) .product {
    border-left: 1px solid #DFE0E1;
}
}
.product-list__none {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.product-list__none .button {
    width: 280px;
}

/*new colors*/
/* home top banners */
/*
  Custom Bootstrap breakpoints
*/
.quickFilter[data-v-c2df4276] {
  display: inline-flex;
  flex-wrap: wrap;
}
.quickFilter__link[data-v-c2df4276] {
    position: relative;
    border-radius: 100px;
}
.quickFilter__link h2[data-v-c2df4276] {
      display: inline;
      font-family: "Scada", sans-serif;
      font-size: 1rem;
      line-height: 1.25;
      font-weight: 400;
      margin: 0;
      padding: 0;
      color: #515C64;
      transition: .3s;
}
.quickFilter__link .svg-icon[data-v-c2df4276] {
      position: absolute;
      top: 0;
      bottom: 0;
      right: 8px;
      margin: auto;
      width: 0;
      height: 0;
      fill: rgba(255, 255, 255, 0.5);
      transition: all 0.3s ease;
}
.quickFilter__link--disabled[data-v-c2df4276] {
      opacity: 0.5;
      pointer-events: none;
}
.quickFilter__link--active[data-v-c2df4276] {
      padding-right: 25.5px;
      text-shadow: 0.7px 0 0 #fff;
      background-color: #AEB455;
}
.quickFilter__link--active h2[data-v-c2df4276] {
        color: #fff;
}
.quickFilter__link--active .svg-icon[data-v-c2df4276] {
        width: 10px;
        height: 10px;
}
.quickFilter__link:hover h2[data-v-c2df4276] {
      color: #fff;
}

/*new colors*/
/* home top banners */
/*
  Custom Bootstrap breakpoints
*/
.quickFilter-wrap[data-v-37271afe] {
  margin: 0 -10px;
}
.quickFilter-wrap .quickFilter-title[data-v-37271afe] {
    display: inline-block;
    margin: 0 10px;
    padding: 10px 0;
}
@media (max-width: 1019.98px) {
.quickFilter-wrap .quickFilter-title[data-v-37271afe] {
        display: block;
}
}
.quickFilter-wrap__more[data-v-37271afe] {
    position: relative;
    padding-right: 25.5px;
}
.quickFilter-wrap__more .svg-icon[data-v-37271afe] {
      position: absolute;
      top: 0;
      bottom: 0;
      right: 8px;
      margin: auto;
      width: 10px;
      height: 10px;
      fill: #DFE0E1;
}

@charset "UTF-8";
/*new colors*/
/* home top banners */
/*
  Custom Bootstrap breakpoints
*/
.mainFilters__section {
  padding: 20px 27px 20px 27px;
  border-top: 1px solid #DFE0E1;
  transition: max-height .3s;
}
.mainFilters__section .button {
    display: none;
    width: 100%;
    margin-bottom: 15px;
}
@media (max-width: 1019.98px) {
.mainFilters__section .button {
        display: flex;
}
}
.mainFilters__section .button-o {
      display: block;
}
.mainFilters__section:first-child {
    border-top: none;
}
.mainFilters-item {
  position: relative;
  margin-top: 10px;
}
.mainFilters-item:first-child {
    margin-top: 15px;
}
.mainFilters-item .signed-item-checkbox {
    position: absolute;
    opacity: 0;
    width: 18px;
    height: 18px;
}
.mainFilters-item .signed-item-checkbox:hover + label.checkboxLabel:before {
    border-color: #AEB455;
}
.mainFilters-item .signed-item-checkbox:checked + label.checkboxLabel:before {
    background: url("/PlayNext/images/other/checkmark.svg") no-repeat center;
    background-color: #AEB455;
    border: none;
}
.mainFilters-item .signed-item-radio {
    position: absolute;
    opacity: 0;
    width: 18px;
    height: 18px;
}
.mainFilters-item .signed-item-radio:hover + label.radioLabel:before {
    border: 2px solid #AEB455;
}
.mainFilters-item .signed-item-radio:checked + label.radioLabel:before {
    border: 6px solid #AEB455;
}
.mainFilters-item label.radioLabel {
    margin: 0;
}
.mainFilters-name {
  position: relative;
  font-weight: bold;
  font-size: 18px;
  margin-bottom: 0;
  margin-left: -25px;
  padding-left: 25px;
  cursor: pointer;
  transition: all .3s ease;
}
.mainFilters-name:hover {
    opacity: .8;
}
.mainFilters-name .svg-icon {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 12px;
    height: 12px;
    fill: #DFE0E1;
    transition: all .3s ease;
}
.mainFilters-tag {
  font-size: 16px;
  display: inline-block;
}
.mainFilters-items-sizes {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 1019.98px) {
.mainFilters-items-sizes {
      justify-content: flex-start;
}
}
.mainFilters-item-size {
  margin-bottom: 0;
  margin-top: 10px;
  margin-right: 10px;
}
@media (min-width: 1020px) and (max-width: 1439.98px) {
.mainFilters-item-size {
      margin-right: 9px;
}
}
@media (max-width: 1019.98px) {
.mainFilters-item-size:nth-child(4n) {
      margin-right: 10px;
}
.mainFilters-item-size:nth-child(6n) {
      margin-right: 10px;
}
}
@media (max-width: 1019px) and (min-width: 576px) {
.mainFilters-item-size {
      width: 59px;
}
.mainFilters-item-size:nth-child(4n) {
        margin-right: 0px;
}
}
.mainFilters-item-size:first-child {
    margin-top: 10px;
}
.mainFilters-item-size:nth-child(6n) {
    margin-right: 10px;
}
.mainFilters-item-size:nth-child(4n) {
    margin-right: 0;
}
.mainFilters-items-colors {
  display: flex;
  flex-wrap: wrap;
}
@media (max-width: 1019.98px) {
.mainFilters-items-colors {
      justify-content: flex-start;
}
}
.mainFilters-item-color {
  width: -moz-fit-content;
  width: fit-content;
  height: 30px;
  margin-right: 10px;
}
.mainFilters-item-color-color {
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    margin-right: 7px;
}
.mainFilters-item-color:first-child {
    margin-top: 10px;
}
.mainFilters-item-color .checkboxLabel {
    width: -moz-fit-content;
    width: fit-content;
    height: 100%;
    display: inline-flex;
    justify-content: center;
    align-items: center;
    padding: 0 7px;
    box-sizing: border-box;
    border-radius: 100px;
    background: rgba(223, 224, 225, 0.2);
    transition: 0.3s;
}
.mainFilters-item-color .checkboxLabel::before {
      content: none;
}
.mainFilters-item-color .signed-item-checkbox {
    width: 100%;
    height: 100%;
    cursor: pointer;
}
.mainFilters-item-color .signed-item-checkbox:checked ~ .checkboxLabel {
      background: #AEB455;
      color: #fff;
}
.mainFilters-color {
  display: none;
  padding: 6px 10px;
  margin: 5px;
  background-color: #DFE0E133;
  border-radius: 3px;
  transition: .3s;
  cursor: pointer;
}
.mainFilters-color:hover {
    background-color: #AEB455;
    color: #fff;
}
.mainFilters-color__custom-black:before {
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 10px;
    margin: -2px 5px -2px 0;
    background-color: #4F4F4F;
    cursor: pointer;
    content: '';
}
.mainFilters-color__custom-white:before {
    display: inline-block;
    width: 14px;
    height: 14px;
    border: 1px solid #DFE0E1;
    border-radius: 10px;
    margin: -2px 5px -2px 0;
    background-color: #fff;
    cursor: pointer;
    content: '';
}
.mainFilters-color__custom-blue:before {
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 10px;
    margin: -2px 5px -2px 0;
    background-color: #0085FF;
    cursor: pointer;
    content: '';
}
.mainFilters-color__custom-red:before {
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 10px;
    margin: -2px 5px -2px 0;
    background-color: #FF0000;
    cursor: pointer;
    content: '';
}
.mainFilters-color__custom-grey:before {
    display: inline-block;
    width: 14px;
    height: 14px;
    border-radius: 10px;
    margin: -2px 5px -2px 0;
    background-color: #DADADA;
    cursor: pointer;
    content: '';
}
.mainFilters-list-brandlist {
  position: relative;
  padding: 5px 20px 0 27px;
}
.mainFilters-list-brandlist:first-child {
    margin-top: 5px;
}
.mainFilters-list-brandlist .mainFilters-item {
    margin-top: 10px;
}
.mainFilters-list-brandlist .mainFilters-item:last-child {
      margin-bottom: 5px;
}
.mainFilters .priceSlider {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
  margin-bottom: 25px;
  padding: 0;
}
.mainFilters .priceSlider-input {
    text-align: right;
    width: 50%;
    height: 40px;
    border: 1px solid #DFE0E1;
    border-right: none;
    padding-bottom: 5px;
    padding-left: 32px;
    padding-right: 24px;
    background-color: transparent;
    z-index: 10;
    border-radius: 3px 0 0 3px;
}
.mainFilters .priceSlider-input:last-child {
      border: 1px solid #DFE0E1;
      border-radius: 0 3px 3px 0;
}
.mainFilters .priceSlider .priceFrom, .mainFilters .priceSlider .priceTo {
    position: absolute;
    width: 50%;
    top: 0;
    bottom: 2px;
    height: 21px;
    margin: auto 0;
    color: #B3B3B3;
    padding-left: 10px;
}
.mainFilters .priceSlider .priceFrom:after, .mainFilters .priceSlider .priceTo:after {
      content: '₽';
      position: absolute;
      top: 0;
      bottom: 0;
      right: 10px;
      margin: auto;
      color: #333;
}
.mainFilters .priceSlider .priceFrom {
    left: 0;
}
.mainFilters .priceSlider .priceTo {
    left: 50%;
}
.mainFilters .priceSlider-component {
    padding: 0 !important;
}
.mainFilters .vue-slider-dot {
  cursor: pointer;
}
.mainFilters .vue-slider-dot:after {
    content: '';
    position: absolute;
    display: block;
    width: 20px;
    height: 20px;
    top: 14px;
    left: -2px;
    border-radius: 0 50% 50% 50%;
    background-color: #AEB455;
    transform: rotate(45deg);
}
.mainFilters .checkboxLabel.disabled,
.mainFilters .mainFilters-name.disabled,
.mainFilters .signed-item-checkbox[disabled] {
  pointer-events: none;
  color: #ADB5BD;
}

/*new colors*/
/* home top banners */
/*
  Custom Bootstrap breakpoints
*/
.popup[data-v-d3752524] {
  width: 100vw;
  height: 100%;
  border-radius: 0;
  background-color: #fff;
}
@media (min-width: 576px) and (max-width: 1019.98px) {
.popup[data-v-d3752524] {
      width: 360px;
}
}
.popup-content[data-v-d3752524] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding-top: 20px;
    width: 100%;
    height: 100vh;
    background-color: #fff;
}
.popup-content-title[data-v-d3752524] {
      margin-bottom: 20px;
}
.popup-content .mobileFilters[data-v-d3752524] {
      width: 100%;
      height: 100%;
      overflow: auto;
      padding-bottom: 40px;
}

/*new colors*/
/* home top banners */
/*
  Custom Bootstrap breakpoints
*/
.catalogCategoryPage {
  /*.popular-products-wrapper__item {
	  &:hover {
		  .popular-products-wrapper__cart {
			  width: 115px;
		  }
	  }
  }*/
  /*.inline_block {
	  display: inline-block;
  }*/
  /*.section-title {
	  text-align: left;
  }*/
  /*.space {
	  @include media-breakpoint-down(md) {
		  padding-top: 40px;
	  }
  }*/
  /*.content {

	  &-showMore {
		  display: none;
		  text-align: center;
		  color: #636569;
		  font-style: normal;
		  font-weight: 300;
		  font-size: 18px;
		  line-height: (26 / 18) * 1em;
		  margin: auto;

		  @include media-breakpoint-down(sm) {
			  display: block;
		  }

		  .pseudolink {
			  &:after {
				  content: '';
				  display: inline-block;
				  background: url('/PlayNext/images/svg/checkmark_arrow.svg') no-repeat center / contain;
				  width: 15px;
				  height: 15px;
				  margin: auto 7px;

				  transition: all .3s ease;
			  }
		  }
	  }

	  &-title {
		  text-align: center;
		  font-weight: 300;
		  line-height: 43px;
		  font-size: 36px;
		  letter-spacing: 0.01em;

		  @include media-breakpoint-down(md) {
			  font-size: 26px;
			  line-height: 30px;
		  }
	  }

	  &-wrap {
		  display: flex;
		  justify-content: space-between;

		  .pseudolink {
			  &:after {
				  transform: rotate(180deg);
			  }
		  }
	  }

	  .content_mobile {
		  @include media-breakpoint-down(sm) {
			  .content-column {
				  display: none;

				  h5 {
					  display: none;
				  }

				  p {
					  &:last-child {
						  display: none;
					  }
				  }

				  &:first-child {
					  display: block;
				  }
			  }
		  }

		  .pseudolink {
			  &:after {
				  transform: rotate(0deg);
			  }
		  }
	  }

	  &-column__subtitle {
		  line-height: 31px;
		  font-size: 25px;
		  color: #333333;
		  font-weight: 400;
		  margin-top: 0;
	  }
  }*/
  /*.hr {
	  height: 1px;
	  background-color: #DFE0E1;
	  width: 335px;

	  @include media-breakpoint-down (md) {
		  width: 328px;
	  }
  }*/
  /*
		  .arrow-more {
			  background: url("/PlayNext/images/arrow-more.png") no-repeat;
			  width: 12px;
			  height: 12px;
			  display: inline-block;
			  margin-left: 5px;
		  }
  */
  /*.priceInput {

  }*/
}
.catalogCategoryPage__slider {
    position: relative;
}
.catalogCategoryPage__slider-swiper {
      height: 400px;
}
@media (max-width: 1439.98px) {
.catalogCategoryPage__slider-swiper {
          height: 320px;
}
}
@media (max-width: 1019.98px) {
.catalogCategoryPage__slider-swiper {
          height: 240px;
}
}
.catalogCategoryPage__slider-swiper-slide {
        /*background-size: cover;
		background-position: 80% 0;
		background-repeat: no-repeat;*/
        cursor: pointer;
        width: 100%;
        background-size: cover;
        background-position: center;
        background-repeat: no-repeat;
        /*@include media-breakpoint-down(md) {
			background-size: 55%;
			background-position: 135% 0;
		}

		@include media-breakpoint-down(sm) {
			background-size: 65%;
		}

		@include media-breakpoint-down(xs) {
			background-size: 90%;
			background-position: 255% 0;
		}*/
}
.catalogCategoryPage__slider-swiper-slide-content {
          padding: 80px 20px 0;
}
.catalogCategoryPage__slider-swiper-slide-name {
          font-size: 13px;
          line-height: 1.38462em;
          margin-bottom: 10px;
}
.catalogCategoryPage__slider-swiper-slide-title {
          font-weight: 300;
          line-height: 61px;
          font-size: 51px;
          letter-spacing: 0.01em;
}
.catalogCategoryPage__slider-swiper-slide-short {
          font-weight: 300;
          line-height: 36px;
          font-size: 25px;
}
.catalogCategoryPage__slider-swiper-slide .button {
          margin-top: 40px;
}
@media (max-width: 1019.98px) {
.catalogCategoryPage__slider-swiper-slide .button {
              margin-top: 20px;
}
}
@media (max-width: 1019.98px) {
.catalogCategoryPage__slider-swiper-slide-content {
            padding-top: 130px;
}
.catalogCategoryPage__slider-swiper-slide-title {
            font-size: 30px;
            line-height: 1.2em;
            padding: 5px 0;
}
.catalogCategoryPage__slider-swiper-slide-short {
            font-size: 13px;
            line-height: 1.38462em;
}
}
.catalogCategoryPage__slider_content {
      position: absolute;
      top: 50px;
      left: 50px;
}
@media (min-width: 1020px) {
.catalogCategoryPage .swiper-pagination {
      position: absolute;
      display: block;
      bottom: 10px;
      left: 0;
      right: 0;
      margin: 0 auto;
}
}
@media (max-width: 1019.98px) {
.catalogCategoryPage .swiper-custom-controls {
      position: absolute;
      justify-content: space-between;
}
.catalogCategoryPage .swiper-prev {
      left: 0;
}
.catalogCategoryPage .swiper-next {
      right: 0;
}
.catalogCategoryPage .swiper-pagination {
      position: static;
}
}
.catalogCategoryPage-title {
    margin-bottom: 20px;
    /*@include media-breakpoint-down(sm) {
		margin-bottom: 20px;
	}*/
}
.catalogCategoryPage__row-h1 {
    margin-bottom: 20px;
}
.catalogCategoryPage__row-filters {
    margin-bottom: 10px;
}
.catalogCategoryPage__popular {
    background: #fff;
}
@media (max-width: 1019.98px) {
.catalogCategoryPage .p-0-left {
      padding-left: 20px;
}
}
.catalogCategoryPage .wrap {
    width: 100%;
    display: flex;
}
@media (max-width: 1019.98px) {
.catalogCategoryPage .wrap {
        display: block;
}
}
@media (min-width: 1020px) {
.catalogCategoryPage .topBorder {
      border-top: 1px solid #DFE0E1;
}
}
.catalogCategoryPage .button-filter__filter, .catalogCategoryPage .button-filter__new {
    position: relative;
    cursor: pointer;
    display: inline-block;
    font: inherit;
    color: #515C64;
    background-color: transparent;
    border: 1px solid #DFE0E1;
    width: 130px;
    height: 42px;
    border-radius: 100px;
    transition: all .3s;
}
.catalogCategoryPage .button-filter__filter .svg-icon, .catalogCategoryPage .button-filter__new .svg-icon {
      position: absolute;
      top: 0;
      bottom: 0;
      margin: auto;
      transition: all .3s;
}
.catalogCategoryPage .button-filter__filter:hover, .catalogCategoryPage .button-filter__new:hover {
      border: 1px solid #AEB455;
}
.catalogCategoryPage .button-filter__filter {
    padding-left: 40px;
}
.catalogCategoryPage .button-filter__filter .svg-icon {
      left: 25px;
      width: 16px;
      height: 16px;
      fill: none;
}
.catalogCategoryPage .button-filter__filter .svg-icon path:last-child {
        fill: rgba(147, 149, 152, 0.6);
}
.catalogCategoryPage .button-filter__filter.active {
      background: #AEB455;
      border-color: #AEB455;
      color: #fff;
}
.catalogCategoryPage .button-filter__filter.active path:last-child {
        fill: #fff;
}
.catalogCategoryPage .button-filter__new {
    padding-right: 25px;
}
.catalogCategoryPage .button-filter__new .svg-icon {
      right: 10px;
      width: 12px;
      height: 12px;
      fill: rgba(147, 149, 152, 0.6);
}

/*new colors*/
/* home top banners */
/*
  Custom Bootstrap breakpoints
*/
.catalog-list .title {
  margin-bottom: 40px;
}
@media (max-width: 1019.98px) {
.catalog-list .title {
      margin-bottom: 30px;
}
}
.catalog-list .banner-info {
  padding-top: 10px;
}
.catalog-list__offers {
  padding-top: 0;
  padding-bottom: 20px;
}
.catalog-list__offers .h3 {
    color: #AEB455;
    text-align: center;
}
@media (max-width: 1439.98px) {
.catalog-list__offers .h3 {
        font-size: 27px;
}
}
@media (max-width: 1019.98px) {
.catalog-list__offers .h3 {
        margin-bottom: 20px;
}
}

/*new colors*/
/* home top banners */
/*
  Custom Bootstrap breakpoints
*/
.ProductLabel-icon {
  position: absolute;
  top: 0;
  right: 20px;
  width: 30px;
  z-index: 3;
}
.ProductLabel-icon_new {
    height: 107px;
    background: url(/build/src/images//images/new.svg);
}
.ProductLabel-icon_sale {
    height: 94px;
    background: url(/build/src/images//images/sale.svg);
}
.ProductLabel-icon_sale_hasNew {
      right: 60px;
}

/*new colors*/
/* home top banners */
/*
  Custom Bootstrap breakpoints
*/
.Review {
  position: relative;
}
@media (max-width: 1019.98px) {
.Review {
      max-width: 100%;
}
}
.Review .shortHr {
    max-width: 80%;
    width: 100%;
    position: absolute;
    top: -30px;
    left: 90px;
    margin: 0;
}
@media (max-width: 1019.98px) {
.Review .shortHr {
        left: 0;
        max-width: 100%;
}
}
.Review-content {
    margin-left: 110px;
    margin-top: -20px;
    padding-bottom: 30px;
}
@media (max-width: 1439.98px) {
.Review-content {
        margin-top: 0;
}
}
@media (max-width: 1019.98px) {
.Review-content {
        margin-left: 0;
}
}
.Review-header {
    display: flex;
}
@media (max-width: 1019.98px) {
.Review-header {
        margin-bottom: 20px;
}
}
.Review-head {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}
@media (min-width: 1020px) and (max-width: 1439.98px) {
.Review-head {
        flex-direction: column;
}
}
@media (max-width: 575.98px) {
.Review-head {
        align-items: center;
        justify-content: space-between;
}
}
.Review-clientName {
    margin-right: 10px;
    color: #AEB455;
    font-weight: bold;
    font-size: 20px;
    line-height: 26px;
}
.Review-date {
    color: #98AAB3;
    padding-top: 4.9px;
    font-size: 15px;
    line-height: normal;
}
@media (max-width: 575.98px) {
.Review-date {
        margin-left: 0;
}
}
.Review-text .paragraph-title {
    display: block;
    font-weight: bold;
    padding: 25px 0 10px;
}
.Review-text .paragraph:first-child .paragraph-title {
    padding-top: 0;
}
.Review-photo {
    width: 70px;
    height: 70px;
    flex-shrink: 0;
    margin-right: 40px;
    border-radius: 15px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
@media (max-width: 1019.98px) {
.Review-photo {
        margin-right: 20px;
}
}
.Review-photo_noPhoto {
      background-image: url("/PlayNext/images/reviews/no-avatar.jpg");
}

/*new colors*/
/* home top banners */
/*
  Custom Bootstrap breakpoints
*/
.Reviews .Review {
  padding-bottom: 30px;
}
.Reviews-list {
  padding-top: 40px;
}
@media (max-width: 1019.98px) {
.Reviews-list {
      padding-top: 30px;
}
}
.Reviews-col:nth-child(1) .shortHr, .Reviews-col:nth-child(2) .shortHr {
  display: none;
}
@media (max-width: 1019.98px) {
.Reviews-col:nth-child(2) .shortHr {
    display: block;
}
}

/*new colors*/
/* home top banners */
/*
  Custom Bootstrap breakpoints
*/
.FileDownload {
  color: #515C64;
  display: flex;
}
.FileDownload-icon {
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    margin-right: 20px;
    background: #AEB455;
    border-radius: 15px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.FileDownload-name span p {
    font-weight: bold;
    font-size: 16px;
    line-height: 23px;
    color: #515C64;
    margin: 0;
    margin-bottom: 10px;
}
.FileDownload-ext {
    text-transform: uppercase;
    font-size: 16px;
    line-height: 22px;
    color: #98AAB3;
}
.FileDownload p {
    border-bottom: 1px solid transparent;
    transition: all .3s ease;
}
.FileDownload:hover p {
    border-color: rgba(81, 92, 100, 0.5);
}

/*new colors*/
/* home top banners */
/*
  Custom Bootstrap breakpoints
*/
.deliveryPoints-banner[data-v-f74d8ada] {
  background: url("/PlayNext/images/tightBanners/delivery_bg.png") no-repeat center/cover;
  background-color: #F7F7F7;
}
@media (max-width: 1019.98px) {
.deliveryPoints-banner[data-v-f74d8ada] {
      background: url("/PlayNext/images/tightBanners/delivery_bg_mob.png") no-repeat center/cover;
      background-position-y: 50%;
      background-color: #F7F7F7;
}
}
.deliveryPoints-banner-button[data-v-f74d8ada] {
    color: #fff;
}
.deliveryPoints-banner-header[data-v-f74d8ada] {
    margin-left: 30px;
}
@media (max-width: 1019.98px) {
.deliveryPoints-banner-header[data-v-f74d8ada] {
        margin-right: 30px;
        padding-top: 20px;
}
}
.deliveryPoints-banner-title[data-v-f74d8ada] {
    margin: 0;
    margin-bottom: 5px;
}
.deliveryPoints-title[data-v-f74d8ada] {
  font-size: 25px;
  font-weight: 400;
  margin: 40px auto;
}
@media (max-width: 1019.98px) {
.deliveryPoints-title[data-v-f74d8ada] {
      font-size: 22px;
      font-weight: 300;
      width: 100%;
      padding: 0 20px;
}
}
.deliveryPoints-bottomTable tr td[data-v-f74d8ada] {
  width: 60%;
}
.deliveryPoints-bottomTable tr td[data-v-f74d8ada]:nth-child(2) {
    width: 40%;
    text-align: right;
}

/*new colors*/
/* home top banners */
/*
  Custom Bootstrap breakpoints
*/
.tightBanner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: #F7F7F7;
  width: 100%;
  height: 105px;
}
.tightBanner .bannerButtons {
    display: flex;
}
.tightBanner .button {
    margin-right: 30px;
}
.tightBanner-button {
    white-space: nowrap;
    color: #fff;
}
.tightBanner .external_ico:after {
    content: '';
    background: url("/PlayNext/images/svg/external-link.svg") no-repeat center;
    padding: 1px 12px 0 10px;
}
.tightBanner-title {
    /*padding: 10px;*/
    /*padding-left: 30px;*/
    /*font-weight: 400;*/
    /*font-size: 20px;*/
}
@media (max-width: 1019.98px) {
.tightBanner {
      height: 340px;
      justify-content: normal;
      align-items: start;
}
.tightBanner .bannerButtons {
        flex-wrap: wrap;
        position: absolute;
        bottom: 20px;
        left: 20px;
        width: 50%;
}
.tightBanner .button {
        margin-right: 0;
        margin-top: 10px;
}
.tightBanner-title {
        padding: 20px;
}
}

/*new colors*/
/* home top banners */
/*
  Custom Bootstrap breakpoints
*/
.tabs-header-list {
  display: flex;
  align-items: center;
  margin-bottom: -1px;
  position: relative;
  justify-content: flex-start;
  border-bottom: 1px solid #DFE0E1;
}
@media (min-width: 576px) {
.tabs-header-list {
      overflow: hidden;
}
}
.tabs-header-item {
  margin-right: 35px;
  cursor: pointer;
  flex-shrink: 0;
}
.tabs-header-item:last-child {
    padding-right: 0;
}
.tabs-header-item > h2 {
    display: block;
    font-family: "Rounds Black", sans-serif;
    font-size: 18px;
    line-height: 25px;
    letter-spacing: 0.5px;
    color: #98AAB3;
    padding: 15px 0;
    margin: 0;
    border-top: 1px solid transparent;
    border-bottom: 1px solid transparent;
    transition: color .3s ease;
    text-transform: uppercase;
}
@media (max-width: 1439.98px) {
.tabs-header-item > h2 {
        font-size: 15px;
}
}
@media (max-width: 1019.98px) {
.tabs-header-item > h2 {
        text-transform: unset;
        padding: 18px 0;
        border-bottom: none;
}
}
.tabs-header-item > h2.subTab-item {
    padding: 0 0 20px;
    text-transform: unset;
    font-weight: 400;
}
.tabs-header-item:hover > h2 {
    color: #AEB455;
}
.tabs-header-item_active > h2 {
    color: #AEB455;
}
@media (min-width: 1020px) {
.tabs-header-item_active > h2 {
        border-bottom: 1px solid #AEB455;
}
}
.tabs-header_sliding .tabs-header-item > h2 {
  border-color: transparent !important;
}
.tabs-header-slider {
  position: absolute;
  height: 2px;
  background-color: #AEB455;
  bottom: -1px;
  left: 0;
  width: 0;
  transition: width 0.3s ease, transform 0.3s ease;
}
.tabs-header_sliding .tabs-header-slider {
  opacity: 1;
}
@media (max-width: 1019.98px) {
.tabs-header .tabs-header-item_active > h2 {
    color: #AEB455;
    border-bottom: 1px solid #AEB455;
}
.tabs-header .notSubTabs {
    flex-direction: column;
    justify-content: initial;
    align-items: start;
    border-bottom: none;
}
.tabs-header .notSubTabs .tabs-header-item {
      width: 100%;
      padding: 0;
      border-bottom: 1px solid #DFE0E1;
}
.tabs-header .notSubTabs .tabs-header-item_active > h2 {
        border-bottom: none;
}
.tabs-header .notSubTabs .tabs-header-slider {
      display: none;
}
}

/*new colors*/
/* home top banners */
/*
  Custom Bootstrap breakpoints
*/
.popup[data-v-c4998b96] {
  width: 480px;
  height: 600px;
  min-height: 200px;
  max-height: calc(100vh - 50px);
  background-color: #fff;
  overflow: hidden;
  border-radius: 3px;
}
@media (max-width: 575.98px) {
.popup[data-v-c4998b96] {
      width: 100%;
      height: 100vh;
      max-height: 100vh;
      border-radius: 0;
}
}
.popup textarea[data-v-c4998b96] {
    width: 100%;
    height: 100px;
}
.popup .successPopup[data-v-c4998b96] {
    padding: 70px 50px;
}
.popup .successPopup .popup-content-title[data-v-c4998b96] {
      margin-bottom: 25px;
}
.popup-content[data-v-c4998b96] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 50px;
    width: 100%;
    height: 100%;
    background-color: #fff;
    position: relative;
}
@media (max-width: 575.98px) {
.popup-content[data-v-c4998b96] {
        padding: 40px 0;
}
}
.popup-content-title[data-v-c4998b96] {
      text-align: center;
}
.popup-content-input[data-v-c4998b96] {
      width: 100%;
      height: 50px;
}
.popup-content form[data-v-c4998b96] {
      min-height: 100px;
      overflow-y: auto;
}
.popup-content-icon .svg-icon[data-v-c4998b96] {
      width: 100px;
      height: 100px;
      margin-bottom: 20px;
      fill: #6AC259;
}
.popup_input[data-v-c4998b96] {
    width: 100%;
    height: 45px;
    margin-bottom: 20px;
    outline: none;
    padding-left: 20px;
}
.popup-button[data-v-c4998b96] {
    width: 100%;
    margin-right: 0;
}
.review-form[data-v-c4998b96] {
  padding: 10px;
}
.popup-success[data-v-c4998b96] {
  height: unset;
}

/*new colors*/
/* home top banners */
/*
  Custom Bootstrap breakpoints
*/
.popup[data-v-009fd5cb] {
  width: 570px;
  background-color: #fff;
  overflow: hidden;
  border-radius: 3px;
}
@media (max-width: 575.98px) {
.popup[data-v-009fd5cb] {
      height: 100vh;
}
}
@media (max-width: 1019.98px) {
.popup[data-v-009fd5cb] {
      width: 100%;
      max-width: 570px;
      border-radius: 0;
}
}
.popup-content[data-v-009fd5cb] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 73px;
    width: 100%;
    height: 100%;
    background-color: #fff;
    position: relative;
}
@media (max-width: 575.98px) {
.popup-content[data-v-009fd5cb] {
        padding: 40px 0;
}
}
.popup-content-title[data-v-009fd5cb] {
      text-align: center;
      margin-bottom: 40px;
}
.popup-content p[data-v-009fd5cb] {
      text-align: center;
      margin-bottom: 20px;
}
.popup-close[data-v-009fd5cb] {
    position: absolute;
    top: 0px;
    right: 20px;
    font-family: Times New Roman;
    font-size: 48px;
    cursor: pointer;
    font-weight: 100;
    color: rgba(147, 149, 152, 0.7);
}
.popup-button[data-v-009fd5cb] {
    width: 100%;
    margin-bottom: 30px;
}
@media (max-width: 575.98px) {
.popup-button[data-v-009fd5cb] {
        margin-bottom: 20px;
}
}
.popup-sub-on-availability .category-items-sizes[data-v-009fd5cb] {
  margin-bottom: 20px !important;
}
.popup-sub-on-availability .category-item-size[data-v-009fd5cb] {
  margin-left: 10px !important;
  margin-right: 10px !important;
}
.popup-sub-on-availability input[data-v-009fd5cb] {
  margin: 0 0 20px 0;
  width: 100%;
}
.popup-sub-on-availability .button svg[data-v-009fd5cb] {
  width: 32px;
  margin: 0 8px 0 0;
}
.popup-sub-on-availability__form[data-v-009fd5cb] {
  width: 94%;
  min-height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.popup-sub-on-availability__form form[data-v-009fd5cb] {
    width: 100%;
}
.popup-sub-on-availability__msg[data-v-009fd5cb] {
  text-align: center;
}

/*new colors*/
/* home top banners */
/*
  Custom Bootstrap breakpoints
*/
.popular-products {
  padding-bottom: 0;
}
.popular-products .container {
    position: relative;
}
.popular-products h3 {
    text-align: center;
    margin: 0;
}
.popular-products .product-swiper-slide {
    height: 100%;
}
.popular-products .product-swiper-slide .modal {
      display: none !important;
}
.popular-products .product-swiper-slide .modal-backdrop {
        display: none !important;
}
.popular-products .swiper-wrapper {
    z-index: 2;
}
.popular-products .swiper-container {
    padding: 45px 1.5px;
}
@media (max-width: 1019.98px) {
.popular-products .swiper-container {
        padding: 20px 1.5px;
}
}
.popular-products .swiper-container:hover {
      margin: 0 -19px;
      padding-left: 20.5px;
      padding-right: 20.5px;
}
@media (max-width: 1019.98px) {
.popular-products .swiper-custom-controls {
      position: static;
      margin: 0;
}
}
.popular-products .slider-prev, .popular-products .slider-next {
    position: absolute;
    z-index: 2;
    top: 0;
    bottom: 0;
    width: 25px;
    height: 42px;
    background-color: #fff;
    border: 1px solid #DFE0E1;
    margin: auto 0;
    border-radius: 23px;
    cursor: pointer;
    outline: none;
    overflow: hidden;
    transition: all .3s ease;
}
.popular-products .slider-prev .arrow-thin, .popular-products .slider-next .arrow-thin {
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      width: 13px;
      height: 20px;
      margin: auto;
      fill: #aaa;
      transition: all .3s ease;
}
.popular-products .slider-prev:hover .arrow-thin, .popular-products .slider-next:hover .arrow-thin {
      fill: #AEB455;
}
.popular-products .slider-prev {
    left: 9px;
}
.popular-products .slider-prev .arrow-thin {
      left: -1px;
      transform: rotate(180deg);
}
.popular-products .slider-next {
    right: 9px;
}
.popular-products .slider-next .arrow-thin {
      right: -1px;
}
@media (max-width: 1019.98px) {
.popular-products .slider {
      position: relative;
      margin: 0;
      top: initial;
      bottom: initial;
      width: 30px;
      height: 30px;
}
}
.popular-products .row {
    padding: 40px 20px;
}

/*new colors*/
/* home top banners */
/*
  Custom Bootstrap breakpoints
*/
.delivery-advantages__item[data-v-f48bc796] {
  height: 280px;
  padding: 15px 20px 20px 20px;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  border: 1px solid #DFE0E1;
  border-radius: 10px;
  background-color: #fff;
  background-position: right bottom;
  background-repeat: no-repeat;
  background-origin: content-box;
}
@media (max-width: 1439.98px) {
.delivery-advantages__item[data-v-f48bc796] {
      margin-bottom: 30px;
}
}
.delivery-advantages__item-title[data-v-f48bc796] {
    color: #5C7684;
}
@media (max-width: 1439.98px) {
.delivery-advantages__item-title[data-v-f48bc796] {
        font-size: 25px;
        line-height: 30px;
}
}
@media (max-width: 1439.98px) {
.delivery-advantages__item-subtitle[data-v-f48bc796] {
      font-size: 18px;
      line-height: 25px;
}
}
.delivery-advantages__item-info[data-v-f48bc796] {
    margin: 0;
    margin-top: auto;
    color: #98AAB3;
}

/*new colors*/
/* home top banners */
/*
  Custom Bootstrap breakpoints
*/
#globalSizeFilter .popover {
  box-shadow: none;
}
#globalSizeFilter .popover .arrow {
    display: none;
}

/*new colors*/
/* home top banners */
/*
  Custom Bootstrap breakpoints
*/
.productPage-price-from[data-v-2f1faaf0] {
  font-style: normal;
  font-weight: 900;
  font-size: 40px;
  line-height: normal;
}
@media (max-width: 1439.98px) {
.productPage-price-from[data-v-2f1faaf0] {
      font-size: 28px;
}
}
.productPage-ruble[data-v-2f1faaf0] {
  font-style: normal;
  font-weight: 900;
  font-size: 40px;
  line-height: normal;
}
@media (max-width: 1439.98px) {
.productPage-ruble[data-v-2f1faaf0] {
      font-size: 28px;
}
}
.productPage-rubleOld[data-v-2f1faaf0] {
  font-weight: 900;
  font-size: 30px;
  line-height: normal;
}
@media (max-width: 1439.98px) {
.productPage-rubleOld[data-v-2f1faaf0] {
      font-size: 20px;
}
}
.productPage-el[data-v-2f1faaf0] {
  transform: translateY(3rem);
  opacity: 0;
  transition: all .5s ease;
}
.productPage_initAnimation .productPage-el[data-v-2f1faaf0] {
  opacity: 1;
  transform: translateY(0);
}
.productPage-main[data-v-2f1faaf0] {
  padding-bottom: 40px;
}
.productPage .gallery-thumbs[data-v-2f1faaf0] {
  height: 400px;
  overflow: hidden;
  padding: 5px 0;
  margin: 0;
}
.productPage .banner-info[data-v-2f1faaf0] {
  padding-top: 40px;
  padding-bottom: 40px;
}
.productPage-verticalImage[data-v-2f1faaf0] {
  display: flex;
  width: 125px;
  height: 654px;
  padding-right: 0;
  margin: auto;
  margin-right: 32.5px;
}
@media (max-width: 1439.98px) {
.productPage-verticalImage[data-v-2f1faaf0] {
      display: none;
}
}
.productPage-verticalImage-wrapper[data-v-2f1faaf0] {
    margin: auto;
    width: inherit;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    height: 100%;
}
.productPage-verticalImage-wrapper-slide[data-v-2f1faaf0] {
      width: 110px;
      display: block;
      cursor: pointer;
      margin: 0 auto;
      border-radius: 3px;
      padding: 10px;
      box-sizing: border-box;
}
.productPage-verticalImage-wrapper-slide__image[data-v-2f1faaf0] {
        width: 100%;
        height: 100%;
        background-size: contain;
        background-position: center;
        background-repeat: no-repeat;
}
.productPage-verticalImage-wrapper .swiper-prev-top[data-v-2f1faaf0], .productPage-verticalImage-wrapper .swiper-next-bottom[data-v-2f1faaf0] {
      position: relative;
      cursor: pointer;
      width: 100%;
      height: 30px;
      outline: none;
}
.productPage-verticalImage-wrapper .swiper-prev-top:hover img[data-v-2f1faaf0], .productPage-verticalImage-wrapper .swiper-next-bottom:hover img[data-v-2f1faaf0] {
        filter: brightness(40%);
}
.productPage-verticalImage-wrapper .swiper-prev-top img[data-v-2f1faaf0], .productPage-verticalImage-wrapper .swiper-next-bottom img[data-v-2f1faaf0] {
        position: absolute;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        filter: brightness(100%);
        transition: all .3s ease;
}
.productPage-verticalImage-wrapper .swiper-prev-top img[data-v-2f1faaf0] {
      transform: rotate(-90deg);
}
.productPage-verticalImage-wrapper .swiper-next-bottom img[data-v-2f1faaf0] {
      transform: rotate(90deg);
}
.productPage-verticalImage-wrapper .swiper-slide-active[data-v-2f1faaf0] {
      border: 2px dashed #DDE1EB;
      border-radius: 15px;
}
.productPage-image[data-v-2f1faaf0] {
  display: flex;
  overflow: hidden;
  height: inherit;
}
.productPage-image-container[data-v-2f1faaf0] {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translateX(10rem);
    opacity: 0;
    width: 100%;
    height: 100%;
    margin: auto;
    transition: opacity .8s ease, transform .5s ease;
}
@media (min-width: 1020px) and (max-width: 1439.98px) {
.productPage-image-container[data-v-2f1faaf0] {
        align-items: flex-start;
}
}
.productPage-image-container img[data-v-2f1faaf0] {
      max-width: 100%;
}
.productPage-image-slider[data-v-2f1faaf0] {
    padding: 20px;
}
.productPage-image-slider-wrapper[data-v-2f1faaf0] {
      position: relative;
      width: 100%;
      height: 100%;
}
@media (max-width: 1439.98px) {
.productPage-image-slider-wrapper[data-v-2f1faaf0] {
          height: unset;
}
}
.productPage-image-slider-wrapper .swiper-pagination[data-v-2f1faaf0] {
        position: static;
        display: none;
}
@media (min-width: 1020px) and (max-width: 1439.98px) {
.productPage-image-slider-wrapper .swiper-pagination[data-v-2f1faaf0] {
            display: flex;
            width: 100%;
            justify-content: center;
            margin: auto;
            margin-top: -21px;
}
}
@media (max-width: 1019.98px) {
.productPage-image-slider-wrapper .swiper-pagination[data-v-2f1faaf0] {
            display: flex;
            margin: auto;
}
}
.productPage-image-slider-wrapper .swiper-custom-controls[data-v-2f1faaf0] {
        position: static;
        z-index: 0;
}
@media (max-width: 1019.98px) {
.productPage-image-slider-wrapper .swiper-custom-controls[data-v-2f1faaf0] {
            position: relative;
            width: 100%;
            bottom: 0;
            left: 0;
            right: 0;
            margin: 15px auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
            z-index: 10;
}
}
.productPage-image-slider-wrapper .swiper-prev[data-v-2f1faaf0], .productPage-image-slider-wrapper .swiper-next[data-v-2f1faaf0] {
        position: absolute;
        z-index: 2;
        width: 30px;
        top: 0;
        bottom: 0;
        margin: auto 0;
        cursor: pointer;
        outline: none;
        overflow: hidden;
}
.productPage-image-slider-wrapper .swiper-prev:hover img[data-v-2f1faaf0], .productPage-image-slider-wrapper .swiper-next:hover img[data-v-2f1faaf0] {
          filter: brightness(40%);
}
@media (max-width: 1019.98px) {
.productPage-image-slider-wrapper .swiper-prev[data-v-2f1faaf0], .productPage-image-slider-wrapper .swiper-next[data-v-2f1faaf0] {
            position: relative;
            margin: 0;
            top: initial;
            bottom: initial;
            width: 30px;
            height: 30px;
}
}
.productPage-image-slider-wrapper .swiper-prev img[data-v-2f1faaf0], .productPage-image-slider-wrapper .swiper-next img[data-v-2f1faaf0] {
          position: absolute;
          top: 0;
          bottom: 0;
          left: 0;
          right: 0;
          margin: auto;
          filter: brightness(100%);
          transition: all .3s ease;
}
.productPage-image-slider-wrapper .swiper-prev[data-v-2f1faaf0] {
        left: 20px;
}
.productPage-image-slider-wrapper .swiper-prev img[data-v-2f1faaf0] {
          transform: rotate(180deg);
}
.productPage-image-slider-wrapper .swiper-next[data-v-2f1faaf0] {
        right: 20px;
}
@media (max-width: 1019.98px) {
.productPage-image-slider-wrapper .swiper-prev[data-v-2f1faaf0] {
          left: -10px;
}
.productPage-image-slider-wrapper .swiper-next[data-v-2f1faaf0] {
          right: -10px;
}
}
.productPage-image-slide[data-v-2f1faaf0] {
    height: unset;
    padding-top: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
.productPage-info[data-v-2f1faaf0] {
  display: flex;
  flex-direction: column;
}
@media (max-width: 1019.98px) {
.productPage-info[data-v-2f1faaf0] {
      padding-top: 20px;
}
}
.productPage-info-container[data-v-2f1faaf0] {
    flex-grow: 1;
    display: flex;
}
.productPage-info-content[data-v-2f1faaf0] {
  opacity: 0;
  transition: opacity 1s ease;
  width: 100%;
}
.productPage-info-content .labels[data-v-2f1faaf0] {
    margin-bottom: 20px;
}
.productPage-info-content .labels-item[data-v-2f1faaf0] {
      margin-right: 15px;
}
.productPage-info-content .labels .label-sale[data-v-2f1faaf0] {
      position: relative;
}
.productPage_initAnimation .productPage-info-content[data-v-2f1faaf0] {
  opacity: 1;
}
.productPage_itemColor[data-v-2f1faaf0] {
  display: flex;
  align-items: center;
  padding-bottom: 16px;
}
@media (max-width: 1019.98px) {
.productPage_itemColor[data-v-2f1faaf0] {
      padding-bottom: 0;
}
}
.productPage_itemColor-span[data-v-2f1faaf0] {
    padding-right: 15px;
}
.productPage_itemColor-colors[data-v-2f1faaf0] {
    margin: 0;
}
.productPage_itemColor-item[data-v-2f1faaf0] {
    padding: 5px;
    border-radius: 3px;
    margin: 0 5px;
    cursor: pointer;
    border: 1px solid transparent;
    transition: border .3s;
}
.productPage_itemColor-item[data-v-2f1faaf0]:hover {
      border-color: #b4b5b7;
}
.productPage_itemColor-item-color[data-v-2f1faaf0] {
      display: block;
      margin: auto;
      width: 35px;
      height: 35px;
      border-radius: 1px;
      background-color: #fff;
}
.productPage_itemColor-item-gray[data-v-2f1faaf0] {
      background-color: #b4b5b7;
}
.productPage_itemColor-item-black[data-v-2f1faaf0] {
      background-color: #000;
}
.productPage_itemColor_active[data-v-2f1faaf0] {
    border: 1px solid #b4b5b7;
}
.productPage-prop[data-v-2f1faaf0] {
  margin-bottom: 5px;
  font-size: 16px;
  line-height: 20px;
  color: #98AAB3;
}
.productPage-prop span[data-v-2f1faaf0] {
    color: #515C64;
}
.productPage-status[data-v-2f1faaf0] {
  position: relative;
  margin-top: 5px;
  padding-left: 17px;
  font-size: 14px;
}
.productPage-status .svg-icon[data-v-2f1faaf0] {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    margin: auto;
    width: 12px;
    height: 12px;
}
.productPage-status .svg-icon-available[data-v-2f1faaf0] {
      fill: #AEB455;
}
.productPage-status .svg-icon-notAvailable[data-v-2f1faaf0] {
      fill: red;
}
.productPage-price-block[data-v-2f1faaf0] {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  margin: 0 0 20px 0;
}
.productPage-price-block .productPage-price[data-v-2f1faaf0] {
    margin-bottom: -4px;
}
@media (max-width: 1019.98px) {
.productPage-price-block .productPage-price[data-v-2f1faaf0] {
        margin-bottom: -3px;
}
}
.productPage-price[data-v-2f1faaf0] {
  position: relative;
  margin-right: 20px;
}
@media (max-width: 1439.98px) {
.productPage-price[data-v-2f1faaf0] {
      font-size: 36px;
}
}
.productPage-price-new[data-v-2f1faaf0] {
    font-size: 51px;
    line-height: normal;
    letter-spacing: 0.01em;
    font-family: "Nunito", sans-serif;
    font-weight: 900;
    color: #EF6C68;
}
@media (max-width: 1019.98px) {
.productPage-price-new[data-v-2f1faaf0] {
        font-size: 40px;
}
}
.productPage-price-old[data-v-2f1faaf0] {
    font-weight: 900;
    font-size: 36px;
    line-height: normal;
}
@media (max-width: 1019.98px) {
.productPage-price-old[data-v-2f1faaf0] {
        font-size: 30px;
}
}
.productPage-sizePrice[data-v-2f1faaf0] {
  width: 100%;
  margin-bottom: 20px;
  line-height: normal;
  letter-spacing: 0.01em;
  font-family: "Nunito", sans-serif;
  font-weight: 900;
  color: #EF6C68;
}
.productPage-sizes-form[data-v-2f1faaf0] {
  width: 100%;
  margin-bottom: 20px;
}
.productPage-sizes-form-header[data-v-2f1faaf0] {
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 20px;
}
.productPage-sizes-form-title[data-v-2f1faaf0] {
    margin-right: 10px;
    font-weight: bold;
    font-size: 16px;
    line-height: 18px;
    color: #778E9A;
}
.productPage-buy-block[data-v-2f1faaf0] {
  display: flex;
  align-items: center;
}
.productPage-buy[data-v-2f1faaf0] {
  align-items: center;
  flex: 1;
  margin-right: 20px;
}
.productPage-buy-btn[data-v-2f1faaf0] {
    position: relative;
    width: 100%;
}
.productPage-buy-btn-link[data-v-2f1faaf0] {
      display: block;
      text-align: center;
      margin-top: 5px;
      width: inherit;
}
.productPage-buy-btn-link a[data-v-2f1faaf0] {
        color: #515C64;
        border-bottom: 1px solid rgba(81, 92, 100, 0.5);
        transition: all 0.1s cubic-bezier(0.65, 0.05, 0.36, 1);
        opacity: 0.5;
}
.productPage-buy-btn-link a[data-v-2f1faaf0]:hover {
          opacity: 1;
}
@media (max-width: 1019.98px) {
.productPage-short[data-v-2f1faaf0] {
    display: none;
}
}
.productPage-short-info[data-v-2f1faaf0] {
  max-height: 350px;
  overflow: hidden;
  font-weight: 400;
}
.productPage-short-more[data-v-2f1faaf0] {
  margin-top: 5px;
}
.productPage-short-more-btn[data-v-2f1faaf0] {
    cursor: pointer;
}
.productPage-short p[data-v-2f1faaf0] {
  font-size: 16px;
  margin: 3px 0;
}
.productPage-delivery span .navigationItem-dark[data-v-2f1faaf0] {
  color: black;
  font-weight: 400;
}
.productPage-delivery-info-point[data-v-2f1faaf0], .productPage-delivery-info-courier[data-v-2f1faaf0] {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-top: 10px;
  font-weight: 400;
}
@media (max-width: 575.98px) {
.productPage-delivery-info-point span[data-v-2f1faaf0]:first-child, .productPage-delivery-info-courier span[data-v-2f1faaf0]:first-child {
      width: 230px;
}
}
.productPage-delivery-info-point[data-v-2f1faaf0] {
  margin-top: 20px;
}
.productPage_initAnimation .productPage-image-container[data-v-2f1faaf0] {
  opacity: 1;
  transform: translateX(0);
}
.productPage-image .swiper-custom-controls[data-v-2f1faaf0] {
  opacity: 0;
  transition: opacity .3s ease;
  transition-delay: .5s;
}
.productPage_initAnimation .productPage-image .swiper-custom-controls[data-v-2f1faaf0] {
  opacity: 1;
}
.productPage-tabs[data-v-2f1faaf0], .productPage-tabsMobile[data-v-2f1faaf0] {
  position: relative;
  margin-bottom: 20px;
}
@media (max-width: 1019.98px) {
.productPage-tabs .bordered[data-v-2f1faaf0], .productPage-tabsMobile .bordered[data-v-2f1faaf0] {
      padding-left: 0;
      padding-right: 0;
      padding-bottom: 20px;
}
}
.productPage-tabs .bordered hr[data-v-2f1faaf0], .productPage-tabsMobile .bordered hr[data-v-2f1faaf0] {
    margin-bottom: 0;
}
.productPage-tabs .detailImage[data-v-2f1faaf0], .productPage-tabsMobile .detailImage[data-v-2f1faaf0] {
    padding-bottom: 50%;
    margin-top: 0;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}
@media (max-width: 575.98px) {
.productPage-tabs .detailImage[data-v-2f1faaf0], .productPage-tabsMobile .detailImage[data-v-2f1faaf0] {
        height: 240px;
}
}
.productPage-tabs .detailImage[data-v-2f1faaf0]:first-child, .productPage-tabsMobile .detailImage[data-v-2f1faaf0]:first-child {
      margin-top: 30px;
}
.productPage-tabs h3[data-v-2f1faaf0], .productPage-tabsMobile h3[data-v-2f1faaf0] {
    text-align: center;
}
.productPage-tabs .description-row-flex[data-v-2f1faaf0], .productPage-tabsMobile .description-row-flex[data-v-2f1faaf0] {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
}
.productPage-tabs .description-row-flex h5[data-v-2f1faaf0], .productPage-tabsMobile .description-row-flex h5[data-v-2f1faaf0] {
      margin-bottom: 10px;
}
@media (max-width: 1019.98px) {
.productPage-tabs .description-row-flex h5[data-v-2f1faaf0], .productPage-tabsMobile .description-row-flex h5[data-v-2f1faaf0] {
          margin-top: 20px;
}
}
.productPage-tabs .reviewTab-mobile[data-v-2f1faaf0], .productPage-tabsMobile .reviewTab-mobile[data-v-2f1faaf0] {
    padding: 0 20px;
}
.productPage-tabs .reviewTab-banner[data-v-2f1faaf0], .productPage-tabsMobile .reviewTab-banner[data-v-2f1faaf0] {
    background: url("/PlayNext/images/tightBanners/otzyv_bg.png") no-repeat center;
    background-color: #F7F7F7;
}
@media (max-width: 1019.98px) {
.productPage-tabs .reviewTab-banner[data-v-2f1faaf0], .productPage-tabsMobile .reviewTab-banner[data-v-2f1faaf0] {
        background: url("/PlayNext/images/tightBanners/otzyv_bg_mob.png") no-repeat center/cover;
        background-position-y: 50%;
        background-color: #F7F7F7;
}
}
.productPage-tabsMobile[data-v-2f1faaf0] {
  margin-bottom: 40px;
}
.productPage-tabsMobile hr[data-v-2f1faaf0] {
    margin: 20px 20px 0;
}
.productPage-tabsMobile-tab[data-v-2f1faaf0] {
    overflow: hidden;
    height: 55px;
    transition: height .3s ease;
}
.productPage-tabsMobile-tab .container[data-v-2f1faaf0] {
      padding-top: 40px;
      opacity: 0;
      transition: opacity .3s ease;
}
.productPage-tabsMobile-tab .detailImage[data-v-2f1faaf0] {
      display: none;
}
.productPage-tabsMobile-tab-title[data-v-2f1faaf0] {
      display: block;
      position: relative;
      padding: 16px 0;
      margin-left: 20px;
      margin-right: 20px;
      cursor: pointer;
      font-size: 16px;
      line-height: 1.375em;
      color: #515C64;
      border-bottom: 1px solid #DFE0E1;
      transition: color .3s ease;
}
.productPage-tabsMobile-tab-title[data-v-2f1faaf0]:after {
        content: '';
        -webkit-mask: url("/PlayNext/images/svg/checkmark_arrow.svg") no-repeat center/contain;
        mask: url("/PlayNext/images/svg/checkmark_arrow.svg") no-repeat center/contain;
        background-color: #939598;
        position: absolute;
        width: 20px;
        height: 10px;
        right: 0px;
        top: 0;
        bottom: 0;
        margin: auto 0;
        transform: rotate(-90deg);
        transition: all .3s ease;
}
.productPage-tabsMobile-tab-title[data-v-2f1faaf0]:hover {
        color: #AEB455;
}
.productPage-tabsMobile-tab-title[data-v-2f1faaf0]:hover:after {
          background-color: #AEB455;
}
.productPage-tabsMobile .activeTab[data-v-2f1faaf0] {
    height: inherit;
    transition: height .3s ease;
    margin-bottom: 40px;
}
.productPage-tabsMobile .activeTab .container[data-v-2f1faaf0] {
      opacity: 1;
}
.productPage-tabsMobile .activeTab .detailImage[data-v-2f1faaf0] {
      display: block;
}
.productPage-tabsMobile .activeTab .productPage-tabsMobile-tab-title[data-v-2f1faaf0] {
      color: #AEB455;
}
.productPage-tabsMobile .activeTab .productPage-tabsMobile-tab-title[data-v-2f1faaf0]:after {
        transform: rotate(0);
        background-color: #AEB455;
}
.productPage .popular-products[data-v-2f1faaf0] {
  padding-top: 0;
}
@media (max-width: 1019.98px) {
.productPage-files[data-v-2f1faaf0] {
    margin-left: 0;
    margin-right: 0;
}
}
.productPage-files-item[data-v-2f1faaf0] {
  padding-bottom: 20px;
}

/*new colors*/
/* home top banners */
/*
  Custom Bootstrap breakpoints
*/
.popup[data-v-61ab525e] {
  overflow: hidden;
  border-radius: 3px;
  background-color: #fff;
}
@media (max-width: 575.98px) {
.popup[data-v-61ab525e] {
      width: 100%;
      height: 100%;
      border-radius: 0;
}
}
.popup .closeButton[data-v-61ab525e] {
    top: 11px;
}
@media (min-width: 576px) {
.popup .closeButton[data-v-61ab525e] {
        top: -30px;
        right: 0;
}
}
.popup .closeButton[data-v-61ab525e]:before, .popup .closeButton[data-v-61ab525e]:after {
      background-color: #eee;
}
.popup .closeButton[data-v-61ab525e]:hover:before, .popup .closeButton[data-v-61ab525e]:hover:after {
      background-color: #aaa;
}
.popup-content[data-v-61ab525e] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 73px;
    width: 100%;
    height: 100%;
    background-color: #fff;
    position: relative;
}
@media (max-width: 575.98px) {
.popup-content[data-v-61ab525e] {
        background-color: #345;
        padding: 40px 0 0 !important;
}
}
.popup-content .mapSize[data-v-61ab525e] {
      width: 800px;
      height: 600px;
}
@media (min-width: 576px) and (max-width: 1019.98px) {
.popup-content .mapSize[data-v-61ab525e] {
          width: 80vw;
          height: 80vh;
}
}
@media (max-width: 575.98px) {
.popup-content .mapSize[data-v-61ab525e] {
          width: 100vw;
          height: calc(100vh - 40px);
}
}
.popup-content section[data-v-61ab525e] {
      padding: 0;
}
.popup-close[data-v-61ab525e] {
    position: absolute;
    top: 0px;
    right: 20px;
    font-family: Times New Roman;
    font-size: 48px;
    cursor: pointer;
    font-weight: 100;
    color: rgba(147, 149, 152, 0.7);
}

/*new colors*/
/* home top banners */
/*
  Custom Bootstrap breakpoints
*/
.contactsPage[data-v-38f3470a] {
  padding-bottom: 50px;
}
@media (max-width: 1019.98px) {
.contactsPage[data-v-38f3470a] {
      padding-bottom: 30px;
}
}
.contactsPage-title[data-v-38f3470a] {
    margin-bottom: 50px;
}
@media (max-width: 1019.98px) {
.contactsPage-title[data-v-38f3470a] {
        font-size: 23px;
}
}
.contactsPage-topBanner[data-v-38f3470a] {
    background: url("/PlayNext/images/top_contacts.jpg") 50% 50%/cover no-repeat;
    width: 100%;
    height: 400px;
}
@media (max-width: 1019.98px) {
.contactsPage-topBanner[data-v-38f3470a] {
        height: 320px;
}
}
@media (max-width: 575.98px) {
.contactsPage-topBanner[data-v-38f3470a] {
        background-image: url("/PlayNext/images/banners/top_contacts_mini.jpg");
}
}
.contactsPage span[data-v-38f3470a] {
    text-align: center;
}
.contactsPage .social_h1[data-v-38f3470a] {
    font-size: 30px;
    font-weight: 200;
    text-transform: uppercase;
    margin: 0;
    text-align: center;
}
.contactsPage .boldSpan[data-v-38f3470a] {
    text-align: center;
    font-weight: 400;
    width: 65%;
}
.contactsPage .marginedText[data-v-38f3470a] {
    margin: 20px 0;
}
.contactsPage p.marginedText[data-v-38f3470a] {
    font-size: 16px;
}
.contactsPage .bordered[data-v-38f3470a] {
    border-bottom: 1px solid #000;
}
.contactsPage .highText[data-v-38f3470a] {
    line-height: 1.46em;
}
.contactsPage .address[data-v-38f3470a] {
    background: url("/PlayNext/images/contacts/spbMap.jpg") no-repeat center/cover;
}
.contactsPage-block[data-v-38f3470a] {
    border: 1px solid #DFE0E1;
    height: 400px;
    margin-bottom: 40px;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 0 13.5%;
    position: relative;
    border-radius: 15px;
    transition: height .3s ease;
}
@media (max-width: 1019.98px) {
.contactsPage-block[data-v-38f3470a] {
        padding: 20px;
}
}
.contactsPage-block span[data-v-38f3470a] {
      opacity: 1;
      transition: opacity .3s ease;
}
.contactsPage-block-title[data-v-38f3470a] {
      font-family: "Rounds Black", sans-serif;
      font-size: 25px;
      text-align: center;
      font-weight: 400;
      margin-top: 20px;
      margin-bottom: 20px;
      color: #AEB455;
      letter-spacing: 0.01em;
}
@media (max-width: 1019.98px) {
.contactsPage-block-title[data-v-38f3470a] {
          font-size: 20px;
}
}
.contactsPage-block-work-time-title[data-v-38f3470a] {
      margin: 0;
      color: #AEB455;
}
.contactsPage-block-work-time-top-info[data-v-38f3470a], .contactsPage-block-work-time-bottom-info[data-v-38f3470a] {
      margin: 0;
}
.contactsPage-block-work-time-top-info[data-v-38f3470a] {
      color: #778E9A;
}
.contactsPage-block-work-time-bottom-info[data-v-38f3470a] {
      color: #98AAB3;
}
.contactsPage-block-work-time-img-wrap[data-v-38f3470a] {
      margin: 30px 0;
}
.contactsPage-block-work-time-body[data-v-38f3470a] {
      text-align: center;
}
.contactsPage-block-address[data-v-38f3470a] {
      display: block;
      margin: 20px 0 50px 0;
      font-family: "Rounds Black", sans-serif;
      font-size: 20px;
      line-height: 26px;
      text-align: center;
      letter-spacing: 0.3px;
}
.contactsPage-block-info[data-v-38f3470a] {
      width: 100%;
      text-align: center;
      line-height: 24px;
      color: #98AAB3;
      margin: 0;
      margin-bottom: 40px;
}
.contactsPage-block-info-bottom[data-v-38f3470a] {
        margin: 0;
        margin-top: 30px;
}
.contactsPage-block .boldSpan[data-v-38f3470a] {
      text-transform: uppercase;
}
.contactsPage-block .contactInfo[data-v-38f3470a] {
      font-weight: 200;
      font-size: 36px;
      margin-bottom: 10px;
}
@media (max-width: 1019.98px) {
.contactsPage-block .contactInfo[data-v-38f3470a] {
          font-size: 24px;
          font-weight: 300;
}
}
.contactsPage-block .tip[data-v-38f3470a] {
      /*width: 60%;*/
}
@media (max-width: 1019.98px) {
.contactsPage-block .tip[data-v-38f3470a] {
          width: 100%;
}
}
.contactsPage-block-name[data-v-38f3470a] {
      font-weight: 400;
}
.contactsPage-block .closeIcon[data-v-38f3470a] {
      display: none;
      position: absolute;
      height: 40px;
      left: 0;
      right: 0;
      bottom: 0;
      margin: 0 auto;
      z-index: 5;
      cursor: pointer;
      transition: background-color .2s ease;
}
.contactsPage-block .closeIcon img[data-v-38f3470a] {
        margin: auto;
        transform: rotateX(180deg);
}
.contactsPage-block .closeIcon[data-v-38f3470a]:hover {
        background-color: rgba(0, 0, 0, 0.02);
}
@media (max-width: 1019.98px) {
.contactsPage-block .closeIcon[data-v-38f3470a] {
          display: flex;
}
}
@media (max-width: 1019.98px) {
.contactsPage .smallBlock[data-v-38f3470a] {
      height: 360px;
      flex-wrap: unset;
      justify-content: start;
      padding-top: 40px;
      overflow-y: hidden;
}
}
@media (max-width: 1019.98px) {
.contactsPage .techBlock[data-v-38f3470a] {
      height: 420px;
}
}
@media (max-width: 1019.98px) {
.contactsPage .block_closed[data-v-38f3470a] {
      height: 200px;
}
.contactsPage .block_closed span[data-v-38f3470a] {
        opacity: 0;
}
}
.contactsPage .block_closed .closeIcon[data-v-38f3470a] {
    transform: rotateX(180deg);
}
.contactsPage .formBlock[data-v-38f3470a] {
    height: 500px;
    padding: 0;
}
@media (max-width: 1019.98px) {
.contactsPage .formBlock[data-v-38f3470a] {
        height: 580px;
}
.contactsPage .formBlock .social_h1[data-v-38f3470a] {
          font-size: 20px;
          font-weight: 400;
          margin-bottom: 20px;
          text-transform: none;
}
}
.contactsPage .formBlock .suggestionForm[data-v-38f3470a] {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: center;
}
@media (max-width: 1019.98px) {
.contactsPage .formBlock .suggestionForm[data-v-38f3470a] {
          flex-direction: column;
}
}
.contactsPage .formBlock .suggestionForm-input[data-v-38f3470a] {
        margin: 30px 0 20px;
        width: calc(50% - 10px);
}
@media (max-width: 1019.98px) {
.contactsPage .formBlock .suggestionForm-input[data-v-38f3470a] {
            width: 100%;
            margin-top: 0;
}
}
.contactsPage .formBlock .suggestionForm textarea[data-v-38f3470a] {
        width: 100%;
        height: 140px;
        resize: none;
}
.contactsPage .formBlock .suggestionForm .checkBox-form-label[data-v-38f3470a]:before {
        top: 1px;
}
.contactsPage .formBlock-success-icon[data-v-38f3470a] {
      display: flex;
      justify-content: center;
}
.contactsPage .formBlock-success-icon .svg-icon[data-v-38f3470a] {
        fill: #AEB455;
        width: 140px;
        height: 70px;
        margin-bottom: 30px;
}
.contactsPage .formBlock-success-title[data-v-38f3470a] {
      text-align: center;
}
.contactsPage .formBlock-success-text[data-v-38f3470a] {
      text-align: center;
}
.contactsPage .formBlock-success-text p[data-v-38f3470a] {
        margin: 0;
}
.contactsPage-social-link-body[data-v-38f3470a] {
    border-radius: 15px;
    background: #F7F7F7;
    padding: 40px 0;
    margin-bottom: 40px;
}
.contactsPage .socials[data-v-38f3470a] {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    /*.fb {
			background-color: $facebook;
		}

		.twitter {
			background-color: $twitter;
		}

		.youtube {
			background-color: $youtube;
		}

		.instagram {
			background-color: $instagram;
		}*/
}
.contactsPage .socials .social_h1[data-v-38f3470a] {
      margin-top: 0;
      margin-bottom: 0;
      width: 100%;
      color: #AEB455;
}
@media (max-width: 1019.98px) {
.contactsPage .socials .social_h1[data-v-38f3470a] {
          margin-bottom: 20px;
}
}
.contactsPage .socials .socialIco[data-v-38f3470a] {
      display: inline-flex;
      align-items: center;
      cursor: pointer;
      width: 130px;
      color: #000;
      margin-right: 50px;
}
.contactsPage .socials .socialIco[data-v-38f3470a]:last-child {
        margin-right: 0;
}
@media (max-width: 1019.98px) {
.contactsPage .socials .socialIco[data-v-38f3470a] {
          margin-right: 0;
          width: 100%;
          justify-content: center;
}
}
.contactsPage .socials .socialIco span[data-v-38f3470a] {
        margin-left: 10px;
}
.contactsPage .socials .socialIco:hover .vk[data-v-38f3470a], .contactsPage .socials .socialIco:hover .fb[data-v-38f3470a], .contactsPage .socials .socialIco:hover .twitter[data-v-38f3470a], .contactsPage .socials .socialIco:hover .youtube[data-v-38f3470a], .contactsPage .socials .socialIco:hover .instagram[data-v-38f3470a] {
        opacity: .7;
}
.contactsPage .socials .vk[data-v-38f3470a], .contactsPage .socials .fb[data-v-38f3470a], .contactsPage .socials .twitter[data-v-38f3470a], .contactsPage .socials .youtube[data-v-38f3470a], .contactsPage .socials .instagram[data-v-38f3470a] {
      width: 42px;
      height: 42px;
      border-radius: 3px;
      display: flex;
      transition: opacity .3s ease;
}
.contactsPage .socials .vk img[data-v-38f3470a], .contactsPage .socials .fb img[data-v-38f3470a], .contactsPage .socials .twitter img[data-v-38f3470a], .contactsPage .socials .youtube img[data-v-38f3470a], .contactsPage .socials .instagram img[data-v-38f3470a] {
        margin: auto;
}
.contactsPage .socials .vk[data-v-38f3470a] {
      background-color: #4C6C91;
}
@media (max-width: 1019.98px) {
.contactsPage .socials .social_h1[data-v-38f3470a] {
        font-size: 20px;
}
.contactsPage .socials .socialIco[data-v-38f3470a] {
        margin-bottom: 20px;
}
}
.contactsPage__requisites-table[data-v-38f3470a] {
    margin-bottom: 50px;
}
.contactsPage__requisites-table tr td[data-v-38f3470a]:first-child {
      width: 33%;
}
.contactsPage__requisites-table-bank[data-v-38f3470a] {
      margin-bottom: 50px;
}
.contactsPage__requisites-table-bank td[data-v-38f3470a] {
        width: 33%;
}
.contactsPage__requisites-table-currency-accounts[data-v-38f3470a] {
      margin-bottom: 30px;
}

/*new colors*/
/* home top banners */
/*
  Custom Bootstrap breakpoints
*/
.aboutUs hr {
  width: 100%;
}
.aboutUs h4 {
  color: #778E9A;
}
.aboutUs-tabs {
  padding-top: 40px;
}
.aboutUs-topBanner {
  background: url("/PlayNext/images/top-about.jpg") 50% 50%/cover no-repeat;
  width: 100%;
  height: 400px;
}
@media (max-width: 1019.98px) {
.aboutUs-topBanner {
      height: 320px;
}
}
@media (max-width: 575.98px) {
.aboutUs-topBanner {
      background-image: url("/PlayNext/images/top-about.jpg");
}
}
.aboutUs-middleBanner {
  margin-top: 40px;
}
.aboutUs-middleBanner-container {
    position: relative;
}
.aboutUs-middleBanner-slide {
    height: 600px;
    background: no-repeat center / cover;
}
@media (max-width: 1019.98px) {
.aboutUs-middleBanner-slide {
        height: 320px;
}
}
.aboutUs-middleBanner .swiper-pagination {
    position: static;
    display: block;
}
.aboutUs-middleBanner .swiper-custom-controls {
    margin-top: -50px;
    height: 50px;
    justify-content: center;
}
@media (max-width: 1019.98px) {
.aboutUs-middleBanner .swiper-custom-controls {
        margin-bottom: 0;
}
}
.aboutUs-middleBanner .swiper-prev img {
    transform: rotate(0);
}
.aboutUs-middleBanner .swiper-next img {
    transform: rotate(180deg);
}
.aboutUs .hr {
  margin: 0;
}
.aboutUs-about {
  font-weight: 200;
  line-height: 61px;
  font-size: 51px;
  letter-spacing: 0.01em;
  color: #939598;
  padding: 40px 0;
}
@media (max-width: 1439.98px) {
.aboutUs-about {
      font-size: 47px;
}
}
@media (max-width: 1019.98px) {
.aboutUs-about {
      line-height: 30px;
      font-size: 24px;
}
}
.aboutUs-subtitle {
  font-style: italic;
  font-weight: 300;
  line-height: 18px;
  font-size: 13px;
  text-align: right;
  width: 100%;
}
.aboutUs-topic {
  font-style: normal;
  margin: 40px 0;
  margin-bottom: 30px;
  color: #AEB455;
}
@media (max-width: 1019.98px) {
.aboutUs-topic {
      line-height: 30px;
      font-size: 24px;
      font-weight: 500;
}
}
.aboutUs-features-top {
  margin: 40px 0;
}
@media (max-width: 1019.98px) {
.aboutUs-features-bottom-title {
    margin: 0;
}
}
.aboutUs-wrapper {
  padding-bottom: 20px;
  height: 100%;
}
.aboutUs-wrapper h3 {
    margin: 0;
    line-height: 34px;
}
.aboutUs-inner {
  border: 1px solid #DFE0E1;
  padding: 20px 20px 35px;
  height: 100%;
  border-radius: 10px;
}
.aboutUs-title-info {
  font-family: "Rounds Black", sans-serif;
  color: #AEB455;
  font-size: 26px;
  line-height: 34px;
}
.aboutUs-descr {
  font-family: "Rounds Black", sans-serif;
  font-size: 51px;
  line-height: 54px;
  letter-spacing: 0.01em;
  color: #778E9A;
}
@media (max-width: 1439.98px) {
.aboutUs-descr {
      font-size: 30px;
      line-height: normal;
}
}
.aboutUs-important {
  margin-top: 25px;
  line-height: 26px;
  font-size: 18px;
  color: #778E9A;
}
.aboutUs-important img {
    width: 300px;
    height: 300px;
    margin-right: 15px;
    margin-bottom: 15px;
    border: 1px solid #DFE0E1;
}
@media (max-width: 1019.98px) {
.aboutUs-important img {
        width: 200px;
        height: 200px;
}
}
@media (max-width: 575.98px) {
.aboutUs-important img {
        width: 100%;
        height: inherit;
}
}
.aboutUs-content {
  font-weight: 200;
  line-height: 43px;
  font-size: 36px;
  letter-spacing: 0.01em;
}
.aboutUs-content-light {
    color: #939598;
}
@media (max-width: 1019.98px) {
.aboutUs-content {
      line-height: 30px;
      font-size: 24px;
}
}
.aboutUs .marginTop {
  margin-top: 40px;
}
.aboutUs .marginBottom {
  margin-bottom: 40px;
}
.aboutUs-timeline {
  font-weight: 300;
  line-height: 61px;
  font-size: 51px;
  letter-spacing: 0.01em;
  padding-left: 20px;
}
@media (max-width: 1019.98px) {
.aboutUs-timeline {
      line-height: 30px;
      font-size: 24px;
}
}
.aboutUs-timeline_block {
    display: flex;
}
.aboutUs-timeline_wrap {
    /*padding-left: 35px;*/
    padding-bottom: 55px;
}
.aboutUs-timeline_line {
    border-right: 1px solid #DFE0E1;
    background: url("/PlayNext/images/about/timeline.png") no-repeat center;
    width: 100%;
    max-width: 90px;
    background-position-x: 10px;
    background-position-y: 28px;
}
@media (max-width: 1439.98px) {
.aboutUs-timeline_line {
        background-position-y: 11px;
}
}
.aboutUs-timeline_title {
    font-weight: 300;
    line-height: 43px;
    font-size: 36px;
    letter-spacing: 0.01em;
    padding-bottom: 30px;
}
@media (max-width: 1019.98px) {
.aboutUs-timeline_title {
        line-height: 26px;
        font-size: 20px;
        font-weight: 400;
}
}
.aboutUs-icon {
  height: 76px;
}
.aboutUs .section-wrapper {
  padding: 40px 0;
}
@media (max-width: 1439.98px) {
.aboutUs .section-wrapper_inner {
      padding-bottom: 20px;
}
}
.aboutUs-specialists {
  width: 100%;
}
.aboutUs-specialists__name {
    line-height: 26px;
    font-size: 20px;
    font-weight: 400;
}
.aboutUs-specialists__profession {
    font-weight: 300;
    line-height: 26px;
    font-size: 18px;
}
.aboutUs-specialists__one, .aboutUs-specialists__two, .aboutUs-specialists__three, .aboutUs-specialists__four, .aboutUs-specialists__one-lid, .aboutUs-specialists__two-lid, .aboutUs-specialists__three-lid, .aboutUs-specialists__four-lid {
    padding-top: 100%;
    margin: 25px 0;
    filter: grayscale(100%);
    cursor: pointer;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: .3s;
}
.aboutUs-specialists__one:hover, .aboutUs-specialists__two:hover, .aboutUs-specialists__three:hover, .aboutUs-specialists__four:hover, .aboutUs-specialists__one-lid:hover, .aboutUs-specialists__two-lid:hover, .aboutUs-specialists__three-lid:hover, .aboutUs-specialists__four-lid:hover {
      filter: grayscale(0);
}
.aboutUs-specialists__one {
    background-image: url("/PlayNext/images/other/test-ph.png");
}
.aboutUs-specialists__two {
    background-image: url("/PlayNext/images/other/test-ph2.png");
}
.aboutUs-specialists__three {
    background-image: url("/PlayNext/images/other/test-ph.png");
}
.aboutUs-specialists__four {
    background-image: url("/PlayNext/images/other/test-ph2.png");
}
.aboutUs-specialists__one-lid {
    background-image: url("/PlayNext/images/other/test-ph3.png");
}
.aboutUs-specialists__two-lid {
    background-image: url("/PlayNext/images/other/test-ph4.png");
}
.aboutUs-specialists__three-lid {
    background-image: url("/PlayNext/images/other/test-ph3.png");
}
.aboutUs-specialists__four-lid {
    background-image: url("/PlayNext/images/other/test-ph4.png");
}
.aboutUs .tabs-header-list {
  justify-content: left;
}
.aboutUs-join-banner {
  background: url("/PlayNext/images/banners/office_bg.jpg") no-repeat center;
  justify-content: space-between;
  align-items: center;
  padding: 29px 30px;
  display: flex;
  line-height: 26px;
  font-size: 20px;
  font-weight: 400;
  margin: 40px 0;
}
.aboutUs-join-banner_mobile {
    background: url("/PlayNext/images/banners/office_bg_mobile.jpg") no-repeat center;
    position: relative;
    padding: 20px 0 0 20px;
    width: 100%;
    height: 340px;
}
.aboutUs-join-banner_mobile-text {
    font-weight: 500;
    line-height: 26px;
    font-size: 20px;
}
.aboutUs-join-banner_button-mobile {
    position: absolute;
    bottom: 20px;
    left: 20px;
}
.aboutUs .d-show-sm {
  display: none;
}
@media (max-width: 1019.98px) {
.aboutUs .d-show-sm {
      display: block;
}
}

/*new colors*/
/* home top banners */
/*
  Custom Bootstrap breakpoints
*/
.delivery-topBanner[data-v-14624a2b] {
  background-image: url("/PlayNext/images/top-delivery.jpg");
}
@media (max-width: 1019.98px) {
.delivery-topBanner[data-v-14624a2b] {
      background-image: url("/PlayNext/images/top-delivery.jpg");
}
}
.delivery .deliveryInfo[data-v-14624a2b] {
  margin: 40px 0;
}
.delivery__title[data-v-14624a2b] {
  margin-bottom: 22px;
}
.delivery .topInfo .memo[data-v-14624a2b] {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  height: 100%;
  border: 1px solid #DFE0E1;
  padding: 40px 10%;
  border-radius: 10px;
}
.delivery .topInfo .memo__title[data-v-14624a2b] {
    text-align: center;
}
.delivery .topInfo .delivery-tel-info[data-v-14624a2b] {
  margin-top: 30px;
}
.delivery .topInfo .delivery-tel-info h5[data-v-14624a2b] {
    color: #98AAB3;
}
.delivery .topInfo .delivery-tel-info h2[data-v-14624a2b] {
    color: #AEB455;
}
.delivery .topInfo .delivery-tel-info p[data-v-14624a2b] {
    color: #98AAB3;
}
@media (max-width: 1019.98px) {
.delivery .topInfo .delivery-tel-info[data-v-14624a2b] {
      margin-bottom: 30px;
}
}
.delivery-tabs[data-v-14624a2b] {
  margin-top: 40px;
}
@media (max-width: 1019.98px) {
.delivery-tabs-marginLeft[data-v-14624a2b] {
      margin-left: 50px;
}
}
.delivery-tabs-tab .topTable[data-v-14624a2b] {
    width: 100%;
    margin-bottom: 30px;
    border-collapse: collapse;
}
.delivery-tabs-tab .topTable tr[data-v-14624a2b] {
      border-bottom: 1px solid #DFE0E1;
}
.delivery-tabs-tab .topTable tr td[data-v-14624a2b] {
        text-align: left;
        vertical-align: middle;
        padding: 35px 20px;
}
.delivery-tabs-tab .topTable tr td span[data-v-14624a2b] {
          font-size: 18px;
          line-height: 1.16667em;
}
.delivery-tabs-tab .topTable tr td .alignCenter[data-v-14624a2b] {
          display: flex;
          align-items: center;
}
.delivery-tabs-tab .topTable tr td .alignCenter img[data-v-14624a2b] {
            margin-right: 20px;
}
@media (max-width: 1019.98px) {
.delivery-tabs-tab .topTable tr td .alignCenter img[data-v-14624a2b] {
                width: 30px;
}
}
@media (max-width: 1019.98px) {
.delivery-tabs-tab .topTable tr td[data-v-14624a2b] {
            display: block;
            text-align: left;
            padding: 15px 20px;
}
}
@media (min-width: 1020px) {
.delivery-tabs-tab .topTable tr td[data-v-14624a2b]:first-child {
            width: 48%;
}
}
.delivery-payment-header[data-v-14624a2b] {
  margin-bottom: 40px;
}
.delivery-payment-header p[data-v-14624a2b] {
    font-size: 26px;
    line-height: 34px;
    margin: 0;
}
@media (max-width: 1019.98px) {
.delivery-payment-header p[data-v-14624a2b] {
        font-size: 20px;
        line-height: 1.5em;
}
.delivery-payment-header p[data-v-14624a2b]:first-child {
          color: #000;
}
.delivery-payment-header p[data-v-14624a2b]:last-child {
          color: #AEB455;
          margin-top: 20px;
}
}
.delivery-title[data-v-14624a2b] {
  color: #98AAB3;
}
@media (max-width: 1019.98px) {
.delivery-title[data-v-14624a2b] {
      padding-bottom: 20px;
}
}
.delivery .wrapper[data-v-14624a2b] {
  border-top: 1px solid #DFE0E1;
  padding: 40px 0;
}
.delivery .wrapper .payment-icons[data-v-14624a2b] {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: space-evenly;
}
.delivery .strong[data-v-14624a2b] {
  font-weight: 400;
}
@media (max-width: 1019.98px) {
.delivery .strong[data-v-14624a2b] {
      font-weight: 300;
      color: #AEB455;
}
}
.delivery .border[data-v-14624a2b] {
  margin: 20px 0;
  height: 0;
  padding-bottom: 81px;
  border: 1px solid #DFE0E1;
}
@media (max-width: 575.98px) {
.delivery .border[data-v-14624a2b] {
      padding-bottom: 45%;
      background-size: contain !important;
}
}
.delivery-repeat-info__title[data-v-14624a2b] {
  margin-bottom: 30px;
}
.delivery-conditions[data-v-14624a2b] {
  margin-bottom: 30px;
}

/*new colors*/
/* home top banners */
/*
  Custom Bootstrap breakpoints
*/
@media (max-width: 1019.98px) {
.CompanyDetails-title[data-v-1d97fd08] {
    font-size: 23px;
}
}
.CompanyDetails-topBanner[data-v-1d97fd08] {
  background: url("/PlayNext/images/top_partners.jpg") 50% 50%/cover no-repeat;
  width: 100%;
  height: 400px;
}
@media (max-width: 1019.98px) {
.CompanyDetails-topBanner[data-v-1d97fd08] {
      height: 320px;
}
}
@media (max-width: 575.98px) {
.CompanyDetails-topBanner[data-v-1d97fd08] {
      background-image: url("/PlayNext/images/banners/top_partners_mini.jpg");
}
}
.CompanyDetails .boldSpan[data-v-1d97fd08] {
  text-align: center;
  font-weight: 400;
  width: 65%;
}
.CompanyDetails .highText[data-v-1d97fd08] {
  line-height: 1.46em;
}
.CompanyDetails .wrapper[data-v-1d97fd08] {
  margin-bottom: 90px;
}
@media (max-width: 1019.98px) {
.CompanyDetails .wrapper[data-v-1d97fd08] {
      margin-bottom: 20px;
}
}

/*new colors*/
/* home top banners */
/*
  Custom Bootstrap breakpoints
*/
.Wholesale[data-v-1d725057] {
  margin-bottom: 40px;
}
.Wholesale-title[data-v-1d725057] {
    margin-bottom: 30px;
}
@media (max-width: 1019.98px) {
.Wholesale-title[data-v-1d725057] {
        font-size: 25px;
        margin-bottom: 10px;
}
}
.Wholesale span[data-v-1d725057] {
    text-align: center;
}
.Wholesale .lead-wrap[data-v-1d725057] {
    margin-bottom: 40px;
}
.Wholesale .lead-wrap p[data-v-1d725057] {
      margin: 19px 0;
}
.Wholesale .lead-wrap p[data-v-1d725057]:first-child {
      margin-top: 0;
}
.Wholesale .social_h1[data-v-1d725057] {
    font-size: 30px;
    font-weight: 200;
    text-transform: uppercase;
    margin-top: 0;
    text-align: center;
}
.Wholesale .boldSpan[data-v-1d725057] {
    text-align: center;
    font-weight: 400;
    width: 65%;
}
.Wholesale .marginedText[data-v-1d725057] {
    margin: 20px 0;
}
.Wholesale p.marginedText[data-v-1d725057] {
    font-size: 16px;
}
.Wholesale .bordered[data-v-1d725057] {
    border-bottom: 1px solid #000;
}
.Wholesale .highText[data-v-1d725057] {
    line-height: 1.46em;
}
.Wholesale .address[data-v-1d725057] {
    background: url("/PlayNext/images/contacts/spbMap.jpg") no-repeat center/cover;
}
.Wholesale-block[data-v-1d725057] {
    position: relative;
    border: 1px solid #DFE0E1;
    height: 400px;
    margin: 40px 0;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    padding: 0 12.5%;
    position: relative;
    transition: height .3s ease;
}
.Wholesale-block span[data-v-1d725057] {
      opacity: 1;
      transition: opacity .3s ease;
}
.Wholesale-block-title[data-v-1d725057] {
      margin-bottom: 30px;
      text-align: center;
      padding: 0 10px;
}
@media (max-width: 1019.98px) {
.Wholesale-block-title[data-v-1d725057] {
          font-size: 24px;
          margin-bottom: 20px;
}
}
.Wholesale-block .boldSpan[data-v-1d725057] {
      text-transform: uppercase;
}
.Wholesale-block .contactInfo[data-v-1d725057] {
      font-weight: 200;
      font-size: 36px;
      margin: 20px 0;
}
@media (max-width: 1019.98px) {
.Wholesale-block .contactInfo[data-v-1d725057] {
          font-size: 24px;
          font-weight: 300;
}
}
.Wholesale-block .tip[data-v-1d725057] {
      width: 60%;
}
@media (max-width: 1019.98px) {
.Wholesale-block .tip[data-v-1d725057] {
          width: 100%;
}
}
.Wholesale-block-name[data-v-1d725057] {
      font-weight: 400;
}
.Wholesale-block .closeIcon[data-v-1d725057] {
      display: none;
      position: absolute;
      height: 40px;
      left: 0;
      right: 0;
      bottom: 0;
      margin: 0 auto;
      z-index: 5;
      cursor: pointer;
      transition: background-color .2s ease;
}
.Wholesale-block .closeIcon img[data-v-1d725057] {
        margin: auto;
        transform: rotateX(180deg);
}
.Wholesale-block .closeIcon[data-v-1d725057]:hover {
        background-color: rgba(0, 0, 0, 0.02);
}
@media (max-width: 1019.98px) {
.Wholesale-block .closeIcon[data-v-1d725057] {
          display: flex;
}
}
@media (max-width: 1019.98px) {
.Wholesale .smallBlock[data-v-1d725057] {
      height: 360px;
      flex-wrap: unset;
      justify-content: start;
      padding-top: 40px;
      overflow-y: hidden;
}
}
@media (max-width: 1019.98px) {
.Wholesale .block_closed[data-v-1d725057] {
      height: 200px;
}
.Wholesale .block_closed span[data-v-1d725057] {
        opacity: 0;
}
}
.Wholesale .block_closed .closeIcon[data-v-1d725057] {
    transform: rotateX(180deg);
}
.Wholesale .formBlock[data-v-1d725057] {
    padding: 70px 0;
    height: auto;
}
@media (max-width: 1019.98px) {
.Wholesale .formBlock[data-v-1d725057] {
        padding: 20px 0;
}
.Wholesale .formBlock h1[data-v-1d725057] {
          font-size: 20px;
}
}
.Wholesale .formBlock .suggestionForm[data-v-1d725057] {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      align-items: flex-start;
}
@media (max-width: 1019.98px) {
.Wholesale .formBlock .suggestionForm[data-v-1d725057] {
          flex-direction: column;
}
}
.Wholesale .formBlock .suggestionForm-add-card-btn[data-v-1d725057] {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        height: 80px;
        background: #F3F4F5;
        mix-blend-mode: normal;
        opacity: 0.5;
        border: 1px dashed #CFCFCF;
        border-radius: 3px;
        width: 100%;
        transition: 0.3s;
}
.Wholesale .formBlock .suggestionForm-add-card-btn input.hidden[data-v-1d725057] {
          position: absolute;
          opacity: 0;
          visibility: hidden;
}
.Wholesale .formBlock .suggestionForm-add-card-btn[data-v-1d725057]:hover {
          cursor: pointer;
          border-color: #515C64;
}
.Wholesale .formBlock .suggestionForm-add-card-btn ~ .Wholesale-error[data-v-1d725057] {
          margin-top: 0;
          text-align: center;
}
.Wholesale .formBlock .suggestionForm-input[data-v-1d725057] {
        margin: 0 0 20px;
        width: 100%;
}
@media (max-width: 1019.98px) {
.Wholesale .formBlock .suggestionForm-input[data-v-1d725057] {
            width: 100%;
            margin-top: 0;
}
}
.Wholesale .formBlock .suggestionForm-input-one-line[data-v-1d725057] {
          width: calc(50% - 10px);
}
@media (max-width: 1019.98px) {
.Wholesale .formBlock .suggestionForm-input-one-line[data-v-1d725057] {
              width: 100%;
              margin-top: 0;
}
}
.Wholesale .formBlock .suggestionForm textarea[data-v-1d725057] {
        width: 100%;
        height: 140px;
        resize: none;
}
.Wholesale .formBlock .suggestionForm .checkBox-form-label[data-v-1d725057]:before {
        top: 1px;
}
.Wholesale .formBlock .suggestionForm .fieldset[data-v-1d725057] {
        width: 100%;
        margin: 0;
        padding: 0;
        padding-top: 25px;
        padding-bottom: 20px;
        border: 1px solid #DFE0E1;
        border-bottom: none;
        border-left: none;
        border-right: none;
}
.Wholesale .formBlock .suggestionForm .fieldset legend[data-v-1d725057] {
          font-size: 14px;
          line-height: 18px;
          color: rgba(147, 149, 152, 0.6);
}
.Wholesale-error[data-v-1d725057] {
    color: #E42D24;
    margin-top: -15px;
    margin-bottom: 10px;
    width: 100%;
}
.Wholesale-send-status[data-v-1d725057] {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    background: #fff;
    text-align: center;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s linear;
}
.Wholesale-send-status .popup-content[data-v-1d725057] {
      max-width: 80%;
      margin: auto;
}
.Wholesale-send-status--success[data-v-1d725057] {
      opacity: 1;
      visibility: visible;
}

/*new colors*/
/* home top banners */
/*
  Custom Bootstrap breakpoints
*/
.returns[data-v-2c650648] {
  padding-bottom: 20px;
}
.returns-main-title[data-v-2c650648] {
    margin-bottom: 40px;
}
.returns-title[data-v-2c650648] {
    margin-top: 0;
    color: #98AAB3;
}
@media (max-width: 1019.98px) {
.returns .topInfo[data-v-2c650648] {
      padding-bottom: 20px;
}
}
.returns ol[data-v-2c650648] {
    padding-left: 14px;
}
.returns ol li[data-v-2c650648] {
      list-style: decimal;
      font-weight: 400;
      padding-left: 10px;
}
.returns ol li > p[data-v-2c650648] {
      font-weight: 300;
}
.returns ol a[data-v-2c650648]:hover {
      opacity: 0.5;
}
.returns .mt[data-v-2c650648] {
    margin-top: 35px;
}
.returns .mb[data-v-2c650648] {
    margin-bottom: 90px;
}
@media (max-width: 1019.98px) {
.returns .mb[data-v-2c650648] {
        margin-bottom: 20px;
}
}

/*new colors*/
/* home top banners */
/*
  Custom Bootstrap breakpoints
*/
.ordering-title[data-v-3187640b] {
  margin-top: 0;
  font-weight: 300;
  line-height: 36px;
  font-size: 25px;
  color: #98AAB3;
}
@media (max-width: 1019.98px) {
.ordering-title[data-v-3187640b] {
      font-weight: 400;
      font-size: 20px;
}
}
@media (max-width: 1019.98px) {
.ordering .topInfo[data-v-3187640b] {
    padding-bottom: 20px;
}
}
.ordering ol[data-v-3187640b] {
  padding-left: 14px;
}
.ordering ol li[data-v-3187640b] {
    list-style: decimal;
    font-weight: 400;
    padding-left: 10px;
}
.ordering ol li > p[data-v-3187640b] {
    font-weight: 300;
}
.ordering .boldSpan[data-v-3187640b] {
  font-weight: 500;
}
.ordering .mt[data-v-3187640b] {
  margin-top: 35px;
}
.ordering .mb[data-v-3187640b] {
  margin-bottom: 70px;
}
@media (max-width: 1439.98px) {
.ordering .mb[data-v-3187640b] {
      margin-bottom: 10px;
}
}

/*new colors*/
/* home top banners */
/*
  Custom Bootstrap breakpoints
*/
.faq-topBanner[data-v-94503ca2] {
  background-image: url("/PlayNext/images/banners/faq_banner.jpg");
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  width: 100%;
  height: 400px;
}
@media (max-width: 575.98px) {
.faq-topBanner[data-v-94503ca2] {
      background-image: url("/PlayNext/images/banners/faq_mini.jpg");
}
}
.faq-title[data-v-94503ca2] {
  font-weight: 300;
  line-height: 36px;
  font-size: 25px;
}
@media (max-width: 1019.98px) {
.faq-title[data-v-94503ca2] {
      font-size: 20px;
      font-weight: 400;
}
}
@media (max-width: 1019.98px) {
.faq .topInfo[data-v-94503ca2] {
    padding-bottom: 20px;
}
}
.faq ol[data-v-94503ca2] {
  padding-left: 14px;
}
.faq ol li[data-v-94503ca2] {
    list-style: decimal;
    font-weight: 400;
    padding-left: 10px;
}
.faq ol li > p[data-v-94503ca2] {
    font-weight: 300;
}
.faq .mt[data-v-94503ca2] {
  margin-top: 35px;
}
.faq .mb[data-v-94503ca2] {
  margin-bottom: 90px;
}
@media (max-width: 1439.98px) {
.faq .mb[data-v-94503ca2] {
      margin-bottom: 40px;
}
}

/*new colors*/
/* home top banners */
/*
  Custom Bootstrap breakpoints
*/
.news-title {
  margin-bottom: 20px;
}
.news-item-wrap {
  margin-bottom: 60px;
  display: block;
  cursor: pointer;
}
.news-item-wrap:hover .news-item-title {
    color: #AEB455;
}
.news-item-image {
  padding-top: 55%;
  margin-bottom: 30px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  border-radius: 15px;
  border: 1px solid #E8E9EA;
}
.news-item-title {
  margin-top: 0;
  margin-bottom: 15px;
  transition: all .3s ease;
  color: #515C64;
}
.news-item-date {
  font-weight: 300;
  line-height: 26px;
  font-size: 18px;
  color: rgba(147, 149, 152, 0.6);
  margin-bottom: 15px;
}
.news-item-descr {
  font-weight: 300;
  line-height: 26px;
  font-size: 18px;
  color: #98AAB3;
}
.news .mb--local {
  margin-bottom: 20px;
}
@media (max-width: 1019.98px) {
.news .mb--local {
      margin-bottom: 0px;
}
}
.news .wrap {
  margin-bottom: 50px;
}
.news .mobile-hidden {
  display: flex;
}
@media (max-width: 1019.98px) {
.news .mobile-hidden {
      display: none;
}
}
.news-show-more {
  border-radius: 100px;
}

@charset "UTF-8";
/*new colors*/
/* home top banners */
/*
  Custom Bootstrap breakpoints
*/
.newsone-title {
  margin: 0;
}
.newsone-date {
  font-weight: 300;
  line-height: 22px;
  font-size: 16px;
  text-transform: uppercase;
  color: #333333;
}
@media (max-width: 1019.98px) {
.newsone-date {
      line-height: 16px;
      font-size: 12px;
      letter-spacing: 0.03em;
}
}
.newsone-back {
  display: flex;
  height: 100%;
  justify-content: flex-end;
  margin-top: 15px;
}
.newsone-back-link {
    font-weight: 300;
    line-height: 22px;
    font-size: 16px;
    color: #8A8A8A;
    transition: .3s;
}
.newsone-back-link:hover {
      color: #AEB455;
}
@media (max-width: 1019.98px) {
.newsone-back {
      display: none;
}
}
.newsone-wrap {
  margin-bottom: 80px;
}
.newsone-wrap h5 {
    font-weight: 400;
    line-height: 36px;
    font-size: 25px;
    margin-bottom: 15px;
    margin-top: 60px;
}
.newsone-image {
  padding-top: 55%;
  margin-bottom: 40px;
  /*background: url("/PlayNext/images/news/news_default.jpg") no-repeat;*/
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  border-radius: 15px;
  border: 1px solid #E8E9EA;
  /* заглушка */
}
.newsone-image-stub {
    /*background-image: url("/PlayNext/images/stub-news.svg") !important;*/
}
.newsone-subtitle {
  font-weight: 400;
  line-height: 36px;
  font-size: 25px;
  margin-bottom: 30px;
}
.newsone-subtitle-date {
    margin: 0;
}
.newsone-last-news {
  padding: 30px;
  /*border: 1px solid #DFE0E1;*/
  background: #F7F7F7;
  background-size: cover;
  background-position: center;
  border-radius: 10px;
}
@media (max-width: 1019.98px) {
.newsone-last-news {
      margin-bottom: 50px;
}
}
.newsone-last-news-item {
    width: 100%;
    display: inline-block;
    margin-bottom: 30px;
}
.newsone-last-news-item .list-item {
      cursor: pointer;
}
.newsone-last-news-item .list-item span {
        font-weight: 300;
        font-size: 14px;
        line-height: 18px;
        color: #515C64;
        opacity: 0.3;
}
.newsone-last-news-item .list-item p {
        transition: .3s;
        color: #333333;
}
.newsone-last-news-item .list-item p:hover {
          color: #AEB455;
}
.newsone-last-news-item:last-child {
      margin-bottom: 0;
}

/*new colors*/
/* home top banners */
/*
  Custom Bootstrap breakpoints
*/
.profile-photo[data-v-4beffa42] {
  width: 220px;
  height: 220px;
  border-radius: 3px;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media (max-width: 1019.98px) {
.profile-photo[data-v-4beffa42] {
      width: 100%;
      height: 220px;
}
}
.profile-title[data-v-4beffa42] {
  font-family: "Rounds Black", sans-serif;
  line-height: 26px;
  font-size: 20px;
  margin-bottom: 14px;
}
.profile-title--pass[data-v-4beffa42] {
    color: #98AAB3;
}
.profile .suggestionForm[data-v-4beffa42] {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
}
@media (max-width: 1019.98px) {
.profile .suggestionForm[data-v-4beffa42] {
      flex-direction: column;
}
}
.profile .suggestionForm-input[data-v-4beffa42] {
    margin: 10px 0;
    width: 100%;
}
.profile .suggestionForm .default-input--modify[data-v-4beffa42] {
    transition: .3s;
    padding-left: 18px;
    height: 60px;
}
.profile .suggestionForm .custom-input[data-v-4beffa42] {
    position: relative;
    width: 100%;
}
.profile .suggestionForm .custom-input input[data-v-4beffa42] {
    display: block;
    outline: none;
    width: 100%;
    padding: 13px 15px 0;
    font-size: 16px;
    color: #333;
    font-family: inherit;
    transition: .3s;
}
.profile .suggestionForm .custom-input label[data-v-4beffa42] {
    display: block;
    position: absolute;
    left: 16px;
    top: 28px;
    color: #aaa;
    font-size: 20px;
    transition: .3s, color 0s;
    cursor: text;
}
.profile .suggestionForm .custom-input input[data-v-4beffa42]:focus {
    padding: 15px;
    font-size: 20px;
}
.profile .suggestionForm .custom-input input:focus + label[data-v-4beffa42], .profile .suggestionForm .custom-input input.bbb + label[data-v-4beffa42] {
    top: 18px;
    font-size: 10px;
}
.profile .suggestionForm .custom-input input:focus + label.hidden[data-v-4beffa42] {
    transition: .3s, color 0s;
    color: transparent;
}
.profile .ghost[data-v-4beffa42] {
  visibility: hidden;
}
@media (max-width: 1019.98px) {
.profile .ghost[data-v-4beffa42] {
      display: none;
}
}
.profile .button-wrap[data-v-4beffa42] {
  margin-top: 40px;
  margin-bottom: 40px;
  padding-left: 20px;
}
.profile .button-wrap .button--wide[data-v-4beffa42] {
    padding: 10px 70px 12px;
}
@media (max-width: 1019.98px) {
.profile .button-wrap[data-v-4beffa42] {
      justify-content: center;
      margin-top: 0;
      margin-bottom: 20px;
}
}
.profile .ordering-wrap[data-v-4beffa42] {
  margin-bottom: 40px;
}
.profile .ordering-wrap p[data-v-4beffa42], .profile .ordering-wrap span[data-v-4beffa42] {
    font-size: 18px;
}
.profile .ordering-title[data-v-4beffa42] {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  font-weight: 400;
  line-height: 26px;
  font-size: 20px;
  color: #333333;
  margin-bottom: 30px;
}
@media (max-width: 1019.98px) {
.profile .ordering-title[data-v-4beffa42] {
      width: 100%;
      justify-content: space-between;
}
}
.profile .ordering-title-id[data-v-4beffa42] {
    margin-left: 10px;
    color: #AEB455;
}
.profile .ordering-title .label-warning[data-v-4beffa42] {
    margin-left: 20px;
    font-size: 14px;
}
.profile .ordering-info-point[data-v-4beffa42] {
  display: flex;
  justify-content: space-between;
  padding: 15px 0;
  font-size: 18px;
}
.profile .ordering-info-point span[data-v-4beffa42] {
    /*color: #000000;*/
}
.profile .ordering-info-point span[data-v-4beffa42]:not(.dotted) {
      max-width: 50%;
}
.profile .ordering-info-point span[data-v-4beffa42]:last-child {
      text-align: right;
}
.profile .ordering-info .button--color-text[data-v-4beffa42] {
  color: #515C64;
  padding: 9px 58px 12px;
  margin-top: 40px;
}
.profile .ordering-info .button--color-text[data-v-4beffa42]:hover {
    color: #fff;
}
.profile .table-link[data-v-4beffa42] {
  cursor: pointer;
}
.profile .table-link[data-v-4beffa42]:hover {
    color: #AEB455;
}
.profile-content[data-v-4beffa42] {
  display: flex;
}
@media (max-width: 1019.98px) {
.profile-content[data-v-4beffa42] {
      flex-direction: column;
}
}
@media (max-width: 1019.98px) {
.profile-content-block[data-v-4beffa42]:not(:first-child) {
      margin-bottom: 40px;
}
}
.tabs-header-item[data-v-4beffa42] {
  margin-right: 40px;
}
@media (min-width: 1020px) and (max-width: 1439.98px) {
.dotted[data-v-4beffa42] {
    display: inline;
}
}
.error[data-v-4beffa42] {
  color: #E42D24;
}

/*new colors*/
/* home top banners */
/*
  Custom Bootstrap breakpoints
*/
@media (max-width: 1019.98px) {
.privacy-title[data-v-ca16e6be] {
    padding-bottom: 20px;
}
}
.privacy-subtitle[data-v-ca16e6be] {
  margin-top: 40px;
}
.privacy p[data-v-ca16e6be] {
  margin: 12px 0;
}
.privacy-back[data-v-ca16e6be] {
  display: flex;
  height: 100%;
  justify-content: flex-end;
  margin-top: 15px;
}
.privacy-back-link[data-v-ca16e6be] {
    font-weight: 300;
    line-height: 22px;
    font-size: 16px;
    color: #8A8A8A;
    transition: .3s;
}
.privacy-back-link[data-v-ca16e6be]:hover {
      color: #AEB455;
}
@media (max-width: 1019.98px) {
.privacy-back[data-v-ca16e6be] {
      display: none;
}
}
.privacy .mb[data-v-ca16e6be] {
  margin-bottom: 90px;
}
@media (max-width: 1439.98px) {
.privacy .mb[data-v-ca16e6be] {
      margin-bottom: 40px;
}
}

/*new colors*/
/* home top banners */
/*
  Custom Bootstrap breakpoints
*/
.app-preloader-wrap {
  z-index: 999;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
}
.app-preloader {
  width: 50px;
  height: 50px;
  display: inline-block;
  position: relative;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.app-preloader-bars,
.app-preloader-bars:before,
.app-preloader-bars:after {
  background: #ccc;
  animation: load1 1s infinite ease-in-out;
  width: 10px;
  height: 40px;
}
.app-preloader-bars {
  color: #ccc;
  text-indent: -9999em;
  margin: 0 auto;
  position: relative;
  font-size: 11px;
  transform: translateZ(0);
  animation-delay: -0.16s;
}
.app-preloader-bars:before,
.app-preloader-bars:after {
  position: absolute;
  top: 0;
  content: '';
}
.app-preloader-bars:before {
  left: -15px;
  animation-delay: -0.32s;
}
.app-preloader-bars:after {
  left: 15px;
}
@keyframes load1 {
0%,
  80%,
  100% {
    box-shadow: 0 0;
    height: 40px;
}
40% {
    box-shadow: 0 -20px;
    height: 50px;
}
}

/*new colors*/
/* home top banners */
/*
  Custom Bootstrap breakpoints
*/
.searchPage .app-preloader-wrap {
  display: flex;
}

/*new colors*/
/* home top banners */
/*
  Custom Bootstrap breakpoints
*/
.pickpoint-widget-wrap {
  margin-top: -10px;
  padding-left: 25px;
}
.pickpoint-widget-selected {
  font-size: 14px;
  margin-bottom: 10px;
}
.pickpoint-widget-link {
  display: inline-block;
  margin-bottom: 15px;
  border-bottom: 1px dashed #AEB455;
  font-size: 14px;
  transition: 0.2s ease-out;
}
.pickpoint-widget-link:hover {
    border-bottom-color: transparent;
}

/*new colors*/
/* home top banners */
/*
  Custom Bootstrap breakpoints
*/
.sdek-pvz-widget {
  /*&-btn {
      margin-bottom: 30px;
  }*/
}
.sdek-pvz-widget-wrap {
    padding-left: 25px;
}
.sdek-pvz-widget-container {
    /*margin: 20px 20px 20px 0;
    width: 800px;*/
    height: 600px;
    margin: 0 0 20px 0;
    border: 1px solid #e4e4e5;
}

/*new colors*/
/* home top banners */
/*
  Custom Bootstrap breakpoints
*/
.dropdownList {
  position: relative;
}
.dropdownList-input {
    position: relative;
    margin-bottom: 20px;
}
.dropdownList-input input {
      width: 100%;
      margin: 0;
      cursor: pointer;
}
.dropdownList-input .borderRadiusBottomNone {
      border-bottom-right-radius: 0;
      border-bottom-left-radius: 0;
}
.dropdownList-input .svg-icon {
      position: absolute;
      right: 10px;
      top: 0;
      bottom: 0;
      margin: auto 0;
      width: 12px;
      height: 12px;
      fill: rgba(147, 149, 152, 0.6);
      cursor: pointer;
      transition: all .3s;
}
.dropdownList-items {
    position: absolute;
    top: 50px;
    left: 0;
    width: 100%;
    max-height: 400px;
    overflow-y: auto;
    background-color: #fff;
    border: 1px solid #DFE0E1;
    border-top: none;
    border-radius: 0 0 3px 3px;
    z-index: 999;
}
.dropdownList-items-list {
      margin: 0;
      width: 100%;
      flex-direction: column;
      padding-left: 0px;
      list-style-type: none;
}
.dropdownList-items-list-item {
        width: 100%;
        padding: 15px 20px;
        border-bottom: 1px solid #DFE0E1;
        cursor: pointer;
        transition: all .3s;
}
.dropdownList-items-list-item:hover {
          background-color: #ddd;
}

/*new colors*/
/* home top banners */
/*
  Custom Bootstrap breakpoints
*/
.popover-clearBasket-content[data-v-49e81b74] {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 30px 30px;
}
.popover-clearBasket-content-title[data-v-49e81b74] {
    text-align: center;
    margin: 0;
    margin-bottom: 30px;
}
.popover-clearBasket-content .buttons[data-v-49e81b74] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.popover-clearBasket-content .buttons .button[data-v-49e81b74] {
      width: 90px;
      height: 42px;
      padding: 9px 0 10px;
}
.popover-clearBasket-content .buttons .button-o[data-v-49e81b74] {
        margin-left: 20px;
}

/*new colors*/
/* home top banners */
/*
  Custom Bootstrap breakpoints
*/
.submitCoupon[data-v-13d1970c] {
  max-width: 450px;
  margin-bottom: 40px;
}
.submitCoupon-content[data-v-13d1970c] {
    display: grid;
    grid-template-columns: minmax(min-content, max-content) 1fr 120px;
    grid-gap: 20px;
    align-items: center;
}
@media (max-width: 1019.98px) {
.submitCoupon-content[data-v-13d1970c] {
        grid-template-columns: 1fr;
}
}
.submitCoupon-content-title[data-v-13d1970c] {
      text-align: center;
      margin: 0;
}
.submitCoupon-content-preloader[data-v-13d1970c] {
      display: flex;
      align-items: center;
      justify-content: center;
}
.submitCoupon-content-preloader img[data-v-13d1970c] {
        width: 120px;
}
.submitCoupon input[data-v-13d1970c] {
    width: 100%;
    margin-bottom: 0;
}
.submitCoupon .thinSpan[data-v-13d1970c] {
    margin-bottom: 30px;
}
.submitCoupon .button[data-v-13d1970c] {
    padding: 10px;
    height: 100%;
}

/*new colors*/
/* home top banners */
/*
  Custom Bootstrap breakpoints
*/
.basketPage-title[data-v-4e648abd] {
  position: relative;
  display: flex;
  margin-bottom: 20px;
  align-items: flex-end;
}
.basketPage-title h1[data-v-4e648abd] {
    margin-right: 40px;
    margin-bottom: 0;
}
.basketPage-title .itemsAmount[data-v-4e648abd] {
    margin-bottom: 4px;
    color: rgba(147, 149, 152, 0.6);
    /*@include media-breakpoint-down( sm ) {
        position: absolute;
        right: 0;
        bottom: 0;
        height: 20px;
        margin-bottom: 0;
      }*/
}
@media (max-width: 1019.98px) {
.basketPage-title .itemsAmount[data-v-4e648abd] {
        display: none;
}
}
.basketPage-title .clearBasket[data-v-4e648abd] {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 20px;
    cursor: pointer;
    color: rgba(147, 149, 152, 0.6);
    transition: color .3s;
}
.basketPage-title .clearBasket[data-v-4e648abd]:hover {
      color: #3b3c3d;
}
.basketPage-content[data-v-4e648abd] {
  margin-bottom: 40px;
}
.basketPage-border-bottom[data-v-4e648abd] {
  border-bottom: 1px solid #DFE0E1;
}
.basketPage-item[data-v-4e648abd] {
  position: relative;
  display: flex;
  padding: 20px 0;
  min-height: 169px;
  max-height: 200px;
}
@media (max-width: 1019.98px) {
.basketPage-item[data-v-4e648abd] {
      max-height: unset;
}
}
.basketPage-item-title[data-v-4e648abd] {
    font-size: 18px;
}
@media (max-width: 1019.98px) {
.basketPage-item-title-wrap[data-v-4e648abd] {
        padding-left: 14px;
}
}
@media (max-width: 1019.98px) {
.basketPage-item-title[data-v-4e648abd] {
        font-size: 16px;
        line-height: 22px;
        margin: 0;
}
}
.basketPage-item-title a[data-v-4e648abd] {
      color: #98AAB3;
}
.basketPage-item-title .bordered-link[data-v-4e648abd] {
      border-color: transparent;
}
.basketPage-item-title .bordered-link[data-v-4e648abd]:hover {
        color: #AEB455;
}
@media (max-width: 1019.98px) {
.basketPage-item-additional[data-v-4e648abd] {
      display: none;
}
}
.basketPage-item-image[data-v-4e648abd] {
    padding-top: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
@media (max-width: 1019.98px) {
.basketPage-item-image[data-v-4e648abd] {
        width: 80px;
        height: 80px;
        padding-top: 0;
        margin: 0 auto;
}
}
.basketPage-item-info[data-v-4e648abd] {
    display: flex;
}
.basketPage-item-info-additional[data-v-4e648abd] {
      display: block;
}
@media (max-width: 1019.98px) {
.basketPage-item-info[data-v-4e648abd] {
        margin-bottom: 10px;
}
}
.basketPage-item-discount[data-v-4e648abd] {
    display: flex;
}
.basketPage-item-discount--hidden[data-v-4e648abd] {
      opacity: 0;
}
@media (max-width: 1019.98px) {
.basketPage-item-discount[data-v-4e648abd] {
        align-items: center;
}
}
.basketPage-item-discount .thinSpan[data-v-4e648abd] {
      display: flex;
      align-items: center;
      height: 42px;
}
.basketPage-item-discount-value[data-v-4e648abd] {
      display: flex;
      align-items: center;
      height: 42px;
      margin-left: 10px;
      font-family: "Nunito", sans-serif;
      font-weight: 900;
      font-size: 24px;
      line-height: 26px;
      letter-spacing: 0.3px;
      color: #98AAB3;
}
@media (max-width: 1439.98px) {
.basketPage-item-discount-value[data-v-4e648abd] {
          font-size: 20px;
          line-height: 22px;
}
}
.basketPage-item-amount[data-v-4e648abd] {
    display: flex;
    justify-content: flex-end;
}
@media (max-width: 1019.98px) {
.basketPage-item-amount[data-v-4e648abd] {
        flex-direction: column;
        justify-content: unset;
        align-items: center;
}
}
.basketPage-item-amount span.thinSpan[data-v-4e648abd] {
      display: flex;
      align-items: center;
      height: 42px;
}
@media (max-width: 1019.98px) {
.basketPage-item-amount span.thinSpan[data-v-4e648abd] {
          height: unset;
}
}
.basketPage-item-amount-input[data-v-4e648abd] {
      position: relative;
      margin-left: 10px;
      height: 42px;
}
.basketPage-item-amount-input:hover input[data-v-4e648abd], .basketPage-item-amount-input:focus input[data-v-4e648abd] {
        border: 1px solid #AEB455;
}
@media (max-width: 1019.98px) {
.basketPage-item-amount-input[data-v-4e648abd] {
          margin: 0;
          width: 100%;
}
}
.basketPage-item-amount-input input[data-v-4e648abd] {
        width: 70px;
        height: 100%;
        background-color: #f5f6f7;
        border-radius: 3px;
        border: 1px solid transparent;
        font-size: 18px;
        line-height: 23px;
        transition: all .3s;
}
.basketPage-item-amount-input input[data-v-4e648abd]:focus {
          border: 1px solid #AEB455;
}
@media (max-width: 1019.98px) {
.basketPage-item-amount-input input[data-v-4e648abd] {
            position: absolute;
            left: 0;
            right: 0;
            margin: 0 auto;
            max-width: 100%;
            text-align: center;
}
}
.basketPage-item-amount .custom-input-increase[data-v-4e648abd], .basketPage-item-amount .custom-input-decrease[data-v-4e648abd] {
      position: absolute;
      right: 5px;
      width: 15px;
      height: 50%;
      cursor: pointer;
      transition: all .3s;
}
@media (max-width: 1019.98px) {
.basketPage-item-amount .custom-input-increase[data-v-4e648abd], .basketPage-item-amount .custom-input-decrease[data-v-4e648abd] {
          display: none;
}
}
.basketPage-item-amount .custom-input-increase .svg-icon[data-v-4e648abd], .basketPage-item-amount .custom-input-decrease .svg-icon[data-v-4e648abd] {
        position: absolute;
        width: 10px;
        height: 15px;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        fill: rgba(0, 0, 0, 0.2);
        transition: all .3s;
}
.basketPage-item-amount .custom-input-increase:hover .svg-icon[data-v-4e648abd], .basketPage-item-amount .custom-input-decrease:hover .svg-icon[data-v-4e648abd] {
        fill: #AEB455;
}
.basketPage-item-amount .custom-input-increase[data-v-4e648abd] {
      top: 1px;
}
.basketPage-item-amount .custom-input-decrease[data-v-4e648abd] {
      bottom: 1px;
}
.basketPage-item-amount .custom-input-disabled[data-v-4e648abd] {
      cursor: default;
}
.basketPage-item-amount .custom-input-disabled .svg-icon[data-v-4e648abd] {
        fill: rgba(0, 0, 0, 0.1) !important;
}
.basketPage-item-price[data-v-4e648abd] {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
@media (max-width: 1019.98px) {
.basketPage-item-price[data-v-4e648abd] {
        justify-content: flex-end;
        align-items: unset;
}
}
.basketPage-item-price-all[data-v-4e648abd] {
      margin-top: 5px;
      font-size: 14px;
}
.basketPage-item-price-all .ruble[data-v-4e648abd] {
        font-size: 12px;
}
@media (max-width: 1019.98px) {
.basketPage-item-price-all[data-v-4e648abd] {
          margin-top: 0;
}
}
.basketPage-item-favorite[data-v-4e648abd] {
    position: absolute;
    right: 125px;
    bottom: 30px;
    display: flex;
    align-items: flex-end;
    color: rgba(147, 149, 152, 0.6);
    cursor: pointer;
}
@media (max-width: 1439.98px) {
.basketPage-item-favorite[data-v-4e648abd] {
        bottom: 20px;
}
}
@media (max-width: 1019.98px) {
.basketPage-item-favorite[data-v-4e648abd] {
        right: 55px;
}
}
.basketPage-item-favorite span[data-v-4e648abd] {
      color: rgba(147, 149, 152, 0.6);
      transition: 0.3s;
}
@media (max-width: 1019.98px) {
.basketPage-item-favorite span[data-v-4e648abd] {
          display: none;
}
}
.basketPage-item-favorite svg[data-v-4e648abd] {
      margin-right: 5px;
}
.basketPage-item-favorite svg path[data-v-4e648abd] {
        transition: 0.3s;
}
.basketPage-item-favorite:hover svg path[data-v-4e648abd] {
      fill: #3b3c3d;
}
.basketPage-item-favorite:hover span[data-v-4e648abd] {
      color: #3b3c3d;
}
.basketPage-item-deleteButton[data-v-4e648abd] {
    position: absolute;
    right: 20px;
    bottom: 30px;
    display: flex;
    align-items: flex-end;
    color: rgba(147, 149, 152, 0.6);
    cursor: pointer;
}
@media (max-width: 1439.98px) {
.basketPage-item-deleteButton[data-v-4e648abd] {
        bottom: 20px;
}
}
.basketPage-item-deleteButton[data-v-4e648abd]:hover {
      color: #3b3c3d;
}
.basketPage-item-deleteButton:hover span[data-v-4e648abd] {
        color: #3b3c3d;
}
.basketPage-item-deleteButton .svg-icon[data-v-4e648abd] {
      width: 20px;
      height: 20px;
      margin-right: 5px;
      transition: all .3s;
}
.basketPage-item-deleteButton span[data-v-4e648abd] {
      line-height: 16px;
      color: inherit;
      transition: all .3s;
}
@media (max-width: 1019.98px) {
.basketPage-item-deleteButton span[data-v-4e648abd] {
          display: none;
}
}
.basketPage .default-input[data-v-4e648abd] {
  width: 100%;
}
.basketPage .checkBox-form[data-v-4e648abd] {
  display: flex;
  align-items: flex-end;
}
@media (max-width: 1439.98px) {
.basketPage .checkBox-form .dotted[data-v-4e648abd] {
      display: block;
}
}
.basketPage .checkBox-form-label[data-v-4e648abd] {
    /*margin-right: 4px;*/
}
.basketPage .checkBox-form-label[data-v-4e648abd]:before {
      top: 0;
}
@media (max-width: 1019.98px) {
.basketPage .checkBox-form[data-v-4e648abd] {
      flex-direction: column;
      align-items: flex-start;
}
}
.basketPage .checkBox-form .delivery-text[data-v-4e648abd] {
    display: none;
    font-size: 14px;
}
.basketPage-preloader[data-v-4e648abd] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 200px;
}
.basketPage-preloader img[data-v-4e648abd] {
    max-width: 100%;
}
.basketPage-bottom[data-v-4e648abd] {
  align-items: center;
  margin-top: 20px;
  margin-bottom: 90px;
}
@media (max-width: 1019.98px) {
.basketPage-bottom[data-v-4e648abd] {
      flex-direction: column;
      justify-content: center;
      margin-bottom: 70px;
}
}
.basketPage-bottom-details[data-v-4e648abd] {
    text-align: right;
    margin: 0 0 40px 0;
}
@media (max-width: 1019.98px) {
.basketPage-bottom-details[data-v-4e648abd] {
        text-align: center;
}
}
.basketPage-bottom-coupon .default-input[data-v-4e648abd] {
    margin: 0;
    width: 100%;
}
@media (max-width: 1019.98px) {
.basketPage-bottom-coupon[data-v-4e648abd] {
      display: flex;
      justify-content: center;
}
}
.basketPage-bottom-price[data-v-4e648abd] {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
@media (max-width: 1019.98px) {
.basketPage-bottom-price[data-v-4e648abd] {
        flex-direction: column;
        justify-content: center;
        margin-top: 20px;
}
}
.basketPage-bottom-price-span[data-v-4e648abd] {
      display: flex;
      align-items: flex-end;
      height: 42px;
      margin-right: 5px;
}
@media (max-width: 1019.98px) {
.basketPage-bottom-price-span[data-v-4e648abd] {
          height: unset;
          margin-right: 0;
}
}
.basketPage-bottom .finalPrice[data-v-4e648abd] {
    font-size: 51px;
    line-height: 61px;
    letter-spacing: 0.01em;
    color: #EF6C68;
    font-family: "Nunito", sans-serif;
    font-weight: 900;
}
@media (max-width: 1019.98px) {
.basketPage-bottom .finalPrice[data-v-4e648abd] {
        margin: 10px 0;
}
}
.basketPage-bottom .finalPrice .ruble[data-v-4e648abd] {
      font-size: 36px;
      line-height: 38px;
      color: #EF6C68;
}
.basketPage-bottom-makeOrder[data-v-4e648abd] {
    margin-left: 60px;
    width: 250px;
    height: 42px;
}
@media (max-width: 1019.98px) {
.basketPage-bottom-makeOrder[data-v-4e648abd] {
        width: 220px;
        margin-left: 0;
}
}
.basketPage-bottom-validationMsg[data-v-4e648abd] {
    text-align: right;
    margin: 10px 0 0 0;
}
@media (max-width: 1019.98px) {
.basketPage-bottom-validationMsg[data-v-4e648abd] {
        text-align: center;
}
}
.basketPage-error[data-v-4e648abd] {
  text-align: center;
  font-size: 30px;
  margin: 20px 0;
  color: #AEB455;
  border: 2px solid #AEB455;
  padding: 10px;
}
.basketPage .basket-empty[data-v-4e648abd] {
  text-align: center;
  margin-bottom: 100px;
}
.basketPage .basket-empty h5[data-v-4e648abd] {
    margin: 40px 0;
}
.basketPage .basket-empty button[data-v-4e648abd] {
    margin: 0 auto;
}

/*new colors*/
/* home top banners */
/*
  Custom Bootstrap breakpoints
*/
.popover-submitCoupon-content[data-v-7e1e3a9b] {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 250px;
  height: 228px;
  padding: 30px 30px;
}
.popover-submitCoupon-content-title[data-v-7e1e3a9b] {
    display: inline-block;
    text-align: center;
    margin: 0;
    margin-bottom: 30px;
}
.popover-submitCoupon-content .thinSpan[data-v-7e1e3a9b] {
    margin-bottom: 30px;
}
.popover-submitCoupon-content-preloader[data-v-7e1e3a9b] {
    display: flex;
    align-items: center;
    justify-content: center;
}
.popover-submitCoupon-content-preloader img[data-v-7e1e3a9b] {
      width: 120px;
}
.popover-submitCoupon-content .buttons[data-v-7e1e3a9b] {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.popover-submitCoupon-content .buttons .button[data-v-7e1e3a9b] {
      width: 90px;
      height: 42px;
      padding: 9px 0 10px;
}
.popover-submitCoupon-content .buttons .button-o[data-v-7e1e3a9b] {
        margin-left: 20px;
}
.popover-submitCoupon-input[data-v-7e1e3a9b] {
  text-transform: uppercase;
  text-align: center;
}

/*new colors*/
/* home top banners */
/*
  Custom Bootstrap breakpoints
*/
.basketPage-title[data-v-5a9837b0] {
  position: relative;
  display: flex;
  margin-bottom: 20px;
  align-items: flex-end;
}
@media (max-width: 1019.98px) {
.basketPage-title[data-v-5a9837b0] {
      align-items: flex-start;
}
}
.basketPage-title h1[data-v-5a9837b0] {
    margin-right: 40px;
    margin-bottom: 0;
}
@media (max-width: 1019.98px) {
.basketPage-title h1[data-v-5a9837b0] {
        margin-right: 20px;
}
}
.basketPage-title .itemsAmount[data-v-5a9837b0] {
    margin-bottom: 4px;
    color: rgba(147, 149, 152, 0.6);
}
@media (max-width: 1019.98px) {
.basketPage-title .itemsAmount[data-v-5a9837b0] {
        display: none;
}
}
.basketPage-title .clearBasket[data-v-5a9837b0] {
    position: absolute;
    right: 0;
    bottom: 0;
    height: 20px;
    cursor: pointer;
    color: rgba(147, 149, 152, 0.6);
    transition: color .3s;
}
.basketPage-title .clearBasket[data-v-5a9837b0]:hover {
      color: #3b3c3d;
}
@media (max-width: 1019.98px) {
.basketPage-title .clearBasket[data-v-5a9837b0] {
        position: static;
        margin-left: auto;
}
}
.basketPage-content[data-v-5a9837b0] {
  margin-bottom: 40px;
}
.basketPage-border-bottom[data-v-5a9837b0] {
  border-bottom: 1px solid #DFE0E1;
}
.basketPage-item[data-v-5a9837b0] {
  position: relative;
  display: flex;
  padding: 20px 0;
  min-height: 169px;
  max-height: 200px;
}
@media (max-width: 1019.98px) {
.basketPage-item[data-v-5a9837b0] {
      max-height: unset;
      padding-bottom: 20px;
}
}
@media (max-width: 1019.98px) {
.basketPage-item-title[data-v-5a9837b0] {
      font-size: 16px;
      line-height: 22px;
      margin: 0;
}
}
.basketPage-item-title a[data-v-5a9837b0] {
    color: #98AAB3;
}
.basketPage-item-title .bordered-link[data-v-5a9837b0] {
    border-color: transparent;
}
.basketPage-item-title .bordered-link[data-v-5a9837b0]:hover {
      color: #AEB455;
}
@media (max-width: 1019.98px) {
.basketPage-item-additional[data-v-5a9837b0] {
      display: none;
}
}
.basketPage-item-image[data-v-5a9837b0] {
    padding-top: 100%;
    background-size: contain;
    background-position: center;
    background-repeat: no-repeat;
}
@media (max-width: 1019.98px) {
.basketPage-item-image[data-v-5a9837b0] {
        width: 80px;
        height: 80px;
        padding-top: 0;
        margin: 0 auto;
}
}
.basketPage-item-info[data-v-5a9837b0] {
    display: flex;
}
.basketPage-item-info-additional[data-v-5a9837b0] {
      display: block;
}
@media (max-width: 1019.98px) {
.basketPage-item-info[data-v-5a9837b0] {
        margin-bottom: 10px;
}
}
.basketPage-item-discount[data-v-5a9837b0] {
    display: flex;
}
@media (max-width: 1019.98px) {
.basketPage-item-discount[data-v-5a9837b0] {
        align-items: center;
}
}
.basketPage-item-discount .thinSpan[data-v-5a9837b0] {
      display: flex;
      align-items: center;
      height: 42px;
}
.basketPage-item-discount-value[data-v-5a9837b0] {
      display: flex;
      align-items: center;
      height: 42px;
      margin-left: 10px;
      font-family: "Nunito", sans-serif;
      font-weight: 900;
      font-size: 24px;
      line-height: 26px;
      letter-spacing: 0.3px;
      color: #98AAB3;
}
@media (max-width: 1439.98px) {
.basketPage-item-discount-value[data-v-5a9837b0] {
          font-size: 20px;
          line-height: 22px;
}
}
.basketPage-item-amount[data-v-5a9837b0] {
    display: flex;
    justify-content: flex-end;
}
@media (max-width: 1019.98px) {
.basketPage-item-amount[data-v-5a9837b0] {
        flex-direction: column;
        justify-content: unset;
        align-items: center;
}
}
.basketPage-item-amount span.thinSpan[data-v-5a9837b0] {
      display: flex;
      align-items: center;
      height: 42px;
}
@media (max-width: 1019.98px) {
.basketPage-item-amount span.thinSpan[data-v-5a9837b0] {
          height: unset;
}
}
.basketPage-item-amount-input[data-v-5a9837b0] {
      position: relative;
      margin-left: 10px;
      height: 42px;
}
.basketPage-item-amount-input:hover input[data-v-5a9837b0] {
        border: 1px solid #AEB455;
}
@media (max-width: 1019.98px) {
.basketPage-item-amount-input[data-v-5a9837b0] {
          margin: 0;
          width: 100%;
}
}
.basketPage-item-amount-input input[data-v-5a9837b0] {
        width: 70px;
        height: 100%;
        background-color: #f5f6f7;
        border-radius: 3px;
        border: 1px solid transparent;
        font-size: 18px;
        line-height: 23px;
        transition: all .3s;
}
.basketPage-item-amount-input input[data-v-5a9837b0]:focus {
          border: 1px solid rgba(255, 80, 0, 0.5);
}
@media (max-width: 1019.98px) {
.basketPage-item-amount-input input[data-v-5a9837b0] {
            position: absolute;
            left: 0;
            right: 0;
            margin: 0 auto;
            max-width: 100%;
            text-align: center;
}
}
.basketPage-item-amount .custom-input-increase[data-v-5a9837b0], .basketPage-item-amount .custom-input-decrease[data-v-5a9837b0] {
      position: absolute;
      right: 5px;
      width: 15px;
      height: 50%;
      cursor: pointer;
      transition: all .3s;
}
@media (max-width: 1019.98px) {
.basketPage-item-amount .custom-input-increase[data-v-5a9837b0], .basketPage-item-amount .custom-input-decrease[data-v-5a9837b0] {
          display: none;
}
}
.basketPage-item-amount .custom-input-increase .svg-icon[data-v-5a9837b0], .basketPage-item-amount .custom-input-decrease .svg-icon[data-v-5a9837b0] {
        position: absolute;
        width: 10px;
        height: 15px;
        top: 0;
        bottom: 0;
        left: 0;
        right: 0;
        margin: auto;
        fill: rgba(0, 0, 0, 0.2);
        transition: all .3s;
}
.basketPage-item-amount .custom-input-increase:hover .svg-icon[data-v-5a9837b0], .basketPage-item-amount .custom-input-decrease:hover .svg-icon[data-v-5a9837b0] {
        fill: #AEB455;
}
.basketPage-item-amount .custom-input-increase[data-v-5a9837b0] {
      top: 1px;
}
.basketPage-item-amount .custom-input-decrease[data-v-5a9837b0] {
      bottom: 1px;
}
.basketPage-item-amount .custom-input-disabled[data-v-5a9837b0] {
      cursor: default;
}
.basketPage-item-amount .custom-input-disabled .svg-icon[data-v-5a9837b0] {
        fill: rgba(0, 0, 0, 0.1) !important;
}
.basketPage-item-price[data-v-5a9837b0] {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}
@media (max-width: 1019.98px) {
.basketPage-item-price[data-v-5a9837b0] {
        align-items: flex-start;
        padding-left: 30px;
}
}
.basketPage-item-price-all[data-v-5a9837b0] {
      margin-top: 5px;
      font-size: 14px;
}
.basketPage-item-price-all .ruble[data-v-5a9837b0] {
        font-size: 12px;
}
@media (max-width: 1019.98px) {
.basketPage-item-price-all[data-v-5a9837b0] {
          margin-top: 0;
}
}
.basketPage-item-favorite[data-v-5a9837b0] {
    position: absolute;
    right: 125px;
    bottom: 30px;
    display: flex;
    align-items: flex-end;
    color: rgba(147, 149, 152, 0.6);
    cursor: pointer;
}
@media (max-width: 1439.98px) {
.basketPage-item-favorite[data-v-5a9837b0] {
        bottom: 20px;
}
}
@media (max-width: 1019.98px) {
.basketPage-item-favorite[data-v-5a9837b0] {
        right: 55px;
}
}
.basketPage-item-favorite span[data-v-5a9837b0] {
      color: rgba(147, 149, 152, 0.6);
      transition: 0.3s;
}
@media (max-width: 1019.98px) {
.basketPage-item-favorite span[data-v-5a9837b0] {
          display: none;
}
}
.basketPage-item-favorite svg[data-v-5a9837b0] {
      margin-right: 5px;
}
.basketPage-item-favorite svg path[data-v-5a9837b0] {
        transition: 0.3s;
}
.basketPage-item-favorite:hover svg path[data-v-5a9837b0] {
      fill: #3b3c3d;
}
.basketPage-item-favorite:hover span[data-v-5a9837b0] {
      color: #3b3c3d;
}
.basketPage-item-deleteButton[data-v-5a9837b0] {
    position: absolute;
    right: 20px;
    bottom: 30px;
    display: flex;
    align-items: flex-end;
    color: rgba(147, 149, 152, 0.6);
    cursor: pointer;
}
@media (max-width: 1019.98px) {
.basketPage-item-deleteButton[data-v-5a9837b0] {
        bottom: 78px;
}
}
.basketPage-item-deleteButton[data-v-5a9837b0]:hover {
      color: #3b3c3d;
}
.basketPage-item-deleteButton:hover span[data-v-5a9837b0] {
        color: #3b3c3d;
}
.basketPage-item-deleteButton .svg-icon[data-v-5a9837b0] {
      width: 20px;
      height: 20px;
      margin-right: 5px;
      transition: all .3s;
}
.basketPage-item-deleteButton span[data-v-5a9837b0] {
      line-height: 16px;
      color: inherit;
      transition: all .3s;
}
@media (max-width: 1019.98px) {
.basketPage-item-deleteButton span[data-v-5a9837b0] {
          display: none;
}
}
.basketPage-form[data-v-5a9837b0] {
  margin-top: 40px;
}
.basketPage-form .default-input[data-v-5a9837b0] {
    width: 100%;
}
.basketPage .checkBox-form[data-v-5a9837b0] {
  display: flex;
  align-items: flex-end;
}
@media (max-width: 1439.98px) {
.basketPage .checkBox-form .dotted[data-v-5a9837b0] {
      display: block;
}
}
.basketPage .checkBox-form-label[data-v-5a9837b0] {
    margin-right: 4px;
}
.basketPage .checkBox-form-label[data-v-5a9837b0]:before {
      top: 0;
}
@media (max-width: 1019.98px) {
.basketPage .checkBox-form[data-v-5a9837b0] {
      flex-direction: column;
      align-items: flex-start;
}
}
.basketPage-preloader[data-v-5a9837b0] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 300px;
}
.basketPage-preloader img[data-v-5a9837b0] {
    width: 150px;
}
.basketPage-bottom[data-v-5a9837b0] {
  align-items: center;
  margin-top: 40px;
  margin-bottom: 90px;
}
@media (max-width: 1019.98px) {
.basketPage-bottom[data-v-5a9837b0] {
      flex-direction: column;
      justify-content: center;
      margin-bottom: 70px;
}
}
.basketPage-bottom-details[data-v-5a9837b0] {
    text-align: right;
    margin: 0 0 40px 0;
}
@media (max-width: 1019.98px) {
.basketPage-bottom-details[data-v-5a9837b0] {
        text-align: center;
}
}
.basketPage-bottom-coupon .default-input[data-v-5a9837b0] {
    margin: 0;
    width: 100%;
}
@media (max-width: 1019.98px) {
.basketPage-bottom-coupon[data-v-5a9837b0] {
      display: flex;
      justify-content: center;
}
}
.basketPage-bottom-price[data-v-5a9837b0] {
    display: flex;
    justify-content: flex-end;
    align-items: center;
}
@media (max-width: 1019.98px) {
.basketPage-bottom-price[data-v-5a9837b0] {
        flex-direction: column;
        justify-content: center;
        margin-top: 40px;
}
}
.basketPage-bottom-price-span[data-v-5a9837b0] {
      display: flex;
      align-items: flex-end;
      height: 42px;
      margin-right: 5px;
}
@media (max-width: 1019.98px) {
.basketPage-bottom-price-span[data-v-5a9837b0] {
          height: unset;
          margin-right: 0;
}
}
.basketPage-bottom .finalPrice[data-v-5a9837b0] {
    font-size: 51px;
    line-height: 61px;
    letter-spacing: 0.01em;
    color: #EF6C68;
    font-family: "Nunito", sans-serif;
    font-weight: 900;
}
@media (max-width: 1019.98px) {
.basketPage-bottom .finalPrice[data-v-5a9837b0] {
        margin: 10px 0;
}
}
.basketPage-bottom .finalPrice .ruble[data-v-5a9837b0] {
      font-size: 36px;
      line-height: 38px;
      color: #EF6C68;
}
.basketPage-bottom-makeOrder[data-v-5a9837b0] {
    margin-left: 60px;
    width: 250px;
    height: 42px;
}
@media (max-width: 1019.98px) {
.basketPage-bottom-makeOrder[data-v-5a9837b0] {
        width: 220px;
        margin-left: 0;
}
}
.basketPage-bottom-validationMsg[data-v-5a9837b0] {
    text-align: right;
    margin: 10px 0 0 0;
}
@media (max-width: 1019.98px) {
.basketPage-bottom-validationMsg[data-v-5a9837b0] {
        text-align: center;
}
}
.basketPage-error[data-v-5a9837b0] {
  text-align: center;
  font-size: 30px;
  margin: 20px 0;
  color: #AEB455;
  border: 2px solid #AEB455;
  padding: 10px;
}
.basketPage .basket-empty[data-v-5a9837b0] {
  text-align: center;
}
.basketPage .basket-empty h5[data-v-5a9837b0] {
    margin: 40px 0;
}
.basketPage .basket-empty button[data-v-5a9837b0] {
    margin: 0 auto;
}
.favoritesPage-buy-btn[data-v-5a9837b0] {
  width: 100%;
}
@media (max-width: 1019.98px) {
.favoritesPage-buy-btn[data-v-5a9837b0] {
      margin-top: 10px;
}
}
@media (max-width: 1019.98px) {
.favoritesPage-buy-btn-wrap[data-v-5a9837b0] {
      padding-left: 30px;
}
}
.favoritesPage-item-price[data-v-5a9837b0] {
  color: #98AAB3;
}

/*new colors*/
/* home top banners */
/*
  Custom Bootstrap breakpoints
*/
.orderDetails {
  /*		.button {
                position: relative;
                padding-left: 70px;
                padding-right: 70px;
                left: 50%;
                transform: translateX(-50%);
                margin-bottom: 90px;
            }*/
}
.orderDetails-topBanner {
    background: url("/PlayNext/images/banners/orderResult.jpg") no-repeat center/cover;
    width: 100%;
    height: 400px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    padding-left: 20px;
    padding-right: 20px;
}
@media (max-width: 1439.98px) {
.orderDetails-topBanner {
        height: 360px;
}
}
@media (max-width: 1019.98px) {
.orderDetails-topBanner {
        height: 320px;
}
}
.orderDetails-topBanner span {
      text-align: center;
      color: #fff;
}
.orderDetails-topBanner .biggestHeader {
      margin: 0;
      color: #fff;
      text-transform: uppercase;
      margin-bottom: 20px;
      text-align: center;
}
.orderDetails-topBanner p {
      margin: 0;
      color: #fff;
      text-align: center;
}
.orderDetails-title {
    position: relative;
    display: flex;
    margin-top: 40px;
    margin-bottom: 20px;
    align-items: flex-end;
}
.orderDetails-title h1 {
      margin: 0;
}
.orderDetails-title .goBack {
      position: absolute;
      right: 0;
      bottom: 0;
      height: 20px;
}
.orderDetails-title .goBack .bordered-link {
        border-bottom-color: transparent;
        margin-left: 2px;
}
.orderDetails-title .goBack .bordered-link:hover {
          border-bottom-color: rgba(0, 0, 0, 0.15);
}
@media (max-width: 1019.98px) {
.orderDetails-title .goBack {
          display: none;
}
}
.orderDetails .zebraTable {
    margin: 40px 0;
}
.orderDetails .zebraTable tr:nth-child(even) td {
      background-color: #fff;
}
.orderDetails .zebraTable tr td {
      padding: 0;
      width: auto;
}
.orderDetails .zebraTable tr td:last-child {
        text-align: right;
}
.orderDetails .zebraTable .ruble {
      display: inline;
      padding: 0;
      font-size: 18px;
      line-height: 22px;
}
.orderDetails-buttons {
    padding: 0 0 90px 0;
}
.orderDetails-buttons .button {
      display: block;
      margin: 0 auto;
      padding-left: 40px;
      padding-right: 40px;
}
@media (max-width: 1019.98px) {
.orderDetails .desktopDisplay {
      display: none;
}
}
.orderDetails__payment {
    padding: 15px;
    max-width: 480px;
    margin: 0 auto;
    text-align: center;
}

/*new colors*/
/* home top banners */
/*
  Custom Bootstrap breakpoints
*/
.error404[data-v-a9fbeb32] {
  padding: 0;
  padding-top: 90px;
}
@media (max-width: 1019.98px) {
.error404[data-v-a9fbeb32] {
      padding-top: 40px;
}
}
.error404-title[data-v-a9fbeb32] {
    text-align: center;
    margin: 0 0 40px 0;
}
@media (max-width: 1019.98px) {
.error404-title[data-v-a9fbeb32] {
        font-size: 24px;
        line-height: normal;
}
}
.error404-subtitle[data-v-a9fbeb32] {
    text-align: center;
    margin: 0 0 30px 0;
}
.error404-btn-block[data-v-a9fbeb32] {
    text-align: center;
    margin: 20px 0 40px 0;
}
@media (max-width: 1019.98px) {
.error404-btn-block[data-v-a9fbeb32] {
        margin-bottom: 0;
}
}
.error404-btn[data-v-a9fbeb32] {
    width: 180px;
    height: 42px;
    background: #AEB455;
    padding: 0;
}

/*.image {
    background: url("/PlayNext/images/404.png") no-repeat bottom/100%;
    height: 170px;
    background-size: auto;
}*/

/*new colors*/
/* home top banners */
/*
  Custom Bootstrap breakpoints
*/
.site-map ul[data-v-16254f2e] {
  width: auto;
  display: block;
  list-style: none;
}
.site-map ul li[data-v-16254f2e] {
    background: transparent;
}
.site-map ul li a[data-v-16254f2e] {
      display: block;
      width: -moz-fit-content;
      width: fit-content;
      font-size: 18px;
      line-height: 26px;
      text-decoration: underline;
}
.site-map ul li a.not-link[data-v-16254f2e]:hover {
        opacity: 1;
}
.site-map ul li:hover a[data-v-16254f2e] {
      background: transparent;
      color: #515C64;
}
.site-map ul ul[data-v-16254f2e] {
    padding-top: 10px;
    padding-bottom: 30px;
    padding-left: 40px;
}
@media (max-width: 1439.98px) {
.site-map ul ul[data-v-16254f2e] {
        padding-bottom: 20px;
        padding-left: 20px;
}
}
.site-map ul a[data-v-16254f2e]:hover {
    opacity: 0.5;
}

/*new colors*/
/* home top banners */
/*
  Custom Bootstrap breakpoints
*/
.popup[data-v-5bed3f42] {
  width: 480px;
  height: 532px;
  background-color: #fff;
  overflow: hidden;
  border-radius: 3px;
}
@media (max-width: 575.98px) {
.popup[data-v-5bed3f42] {
      width: 100%;
      height: 100vh;
      border-radius: 0;
}
}
.popup-content[data-v-5bed3f42] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 73px;
    width: 100%;
    height: 100%;
    background-color: #fff;
    position: relative;
}
@media (max-width: 575.98px) {
.popup-content[data-v-5bed3f42] {
        padding: 40px 0;
}
}
.popup-content-icon .svg-icon[data-v-5bed3f42] {
      fill: #AEB455;
      width: 140px;
      height: 70px;
      margin-bottom: 20px;
}
.popup-content-text[data-v-5bed3f42] {
      text-align: center;
}
.popup-content-text p[data-v-5bed3f42] {
        margin: 0;
}
.popup-content-title[data-v-5bed3f42] {
      text-align: center;
      margin-bottom: 30px;
}
.popup-content-input[data-v-5bed3f42] {
      width: 100%;
      height: 50px;
}
.popup-content-input[data-v-5bed3f42]:disabled {
        border: 1px solid red;
}
.popup-button[data-v-5bed3f42] {
    width: 100%;
    margin-bottom: 14px;
    /* @include media-breakpoint-down( xs ) {
			 margin-bottom: 20px;
		 }*/
}
.popup textarea[data-v-5bed3f42] {
    max-height: 100px;
    height: 100%;
    resize: none;
}

/*new colors*/
/* home top banners */
/*
  Custom Bootstrap breakpoints
*/
.popup[data-v-238ce80d] {
  width: 100%;
  height: 100vh;
}
@media (min-width: 576px) {
.popup[data-v-238ce80d] {
      width: 620px;
      height: 640px;
}
}
.popup-geoPosition[data-v-238ce80d] {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 40px 50px;
    height: 100%;
}
@media (max-width: 575.98px) {
.popup-geoPosition[data-v-238ce80d] {
        padding: 0;
}
}
.popup-title[data-v-238ce80d] {
    text-align: center;
    margin-bottom: 40px;
}
.popup-title h3[data-v-238ce80d] {
      margin-bottom: 0;
}
@media (max-width: 575.98px) {
.popup-title[data-v-238ce80d] {
        margin-bottom: 20px;
}
.popup-title h3[data-v-238ce80d] {
          margin-bottom: 20px;
}
}
.popup-search[data-v-238ce80d] {
    width: 100%;
}
.popup-search-input[data-v-238ce80d] {
      width: 100%;
}
.popup-search .magnifierIcon[data-v-238ce80d] {
      top: -4px;
}
.popup-list[data-v-238ce80d] {
    margin-top: 40px;
}
@media (max-width: 1019.98px) {
.popup-list[data-v-238ce80d] {
        margin-top: 20px;
}
}
.popup-list .p-left-10[data-v-238ce80d] {
      padding-left: 10px;
}
.popup-list .p-right-10[data-v-238ce80d] {
      padding-right: 10px;
}
.popup-list .p-10[data-v-238ce80d] {
      padding-left: 10px;
      padding-right: 10px;
}
.popup-list p[data-v-238ce80d] {
      font-size: 16px;
      line-height: 18px;
      cursor: pointer;
}
.popup-list p span[data-v-238ce80d] {
        border-bottom: 1px solid transparent;
        transition: all .3s ease;
}
.popup-list p:hover span[data-v-238ce80d] {
        border-bottom-color: #8A8A8A;
}

/*new colors*/
/* home top banners */
/*
  Custom Bootstrap breakpoints
*/
.popover-basket-content[data-v-5d3c0dc3] {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #F4F5F5;
  max-width: 390px;
  border-radius: 15px;
}
.popover-basket-content .button[data-v-5d3c0dc3] {
    margin: 15px 0;
}
.popover-basket-productList[data-v-5d3c0dc3] {
  background-color: #fff;
  width: 100%;
  max-height: 400px;
  overflow-y: auto;
  border-radius: 10px 10px 0 0;
}
.popover-basket-productList-item[data-v-5d3c0dc3] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    margin: 0 15px;
    height: 80px;
    border: 1px solid transparent;
    border-top-color: #DFE0E1;
}
.popover-basket-productList-item[data-v-5d3c0dc3]:first-child {
      border-top-color: transparent;
}
.popover-basket-productList-item-image[data-v-5d3c0dc3] {
      width: 50px;
      height: 50px;
      margin-right: 20px;
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
}
.popover-basket-productList-item-title[data-v-5d3c0dc3] {
      max-width: 50%;
      font-size: 14px;
      line-height: 18px;
      max-height: 54px;
      overflow: hidden;
      cursor: pointer;
      transition: all .3s;
}
.popover-basket-productList-item-title[data-v-5d3c0dc3]:hover {
        color: #AEB455;
}
.popover-basket-productList-item-price[data-v-5d3c0dc3] {
      white-space: nowrap;
      font-family: "Nunito", sans-serif;
      font-weight: 800;
      font-size: 20px;
      line-height: 1.25rem;
      width: 80px;
      text-align: right;
      color: #515C64;
      margin-right: 5px;
}
.popover-basket-productList-item-price .ruble[data-v-5d3c0dc3] {
        font-size: 16px;
}
.popover-basket-productList-item-delete[data-v-5d3c0dc3] {
      width: 16px;
      height: 22px;
      opacity: .6;
      margin-left: 5px;
      cursor: pointer;
      transition: all .3s;
}
.popover-basket-productList-item-delete .svg-icon[data-v-5d3c0dc3] {
        fill: #3b3c3d;
}
.popover-basket-productList-item-delete[data-v-5d3c0dc3]:hover {
        opacity: 1;
}
.popover-basket-productList-empty[data-v-5d3c0dc3] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    margin: 0 15px;
    height: 80px;
    border: 1px solid transparent;
}
.popover-basket-btn-wrap[data-v-5d3c0dc3] {
  width: 100%;
  padding: 0 20px;
}

/*new colors*/
/* home top banners */
/*
  Custom Bootstrap breakpoints
*/
.popover-basket-content[data-v-f81ee22c] {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #F4F5F5;
  max-width: 390px;
  border-radius: 15px;
}
.popover-basket-content .button[data-v-f81ee22c] {
    margin: 15px 0;
}
.popover-basket-productList[data-v-f81ee22c] {
  background-color: #fff;
  width: 100%;
  max-height: 400px;
  overflow-y: auto;
  border-radius: 10px 10px 0 0;
}
.popover-basket-productList-item[data-v-f81ee22c] {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    margin: 0 15px;
    height: 80px;
    border: 1px solid transparent;
    border-top-color: #DFE0E1;
}
.popover-basket-productList-item[data-v-f81ee22c]:first-child {
      border-top-color: transparent;
}
.popover-basket-productList-item-image[data-v-f81ee22c] {
      width: 50px;
      height: 50px;
      margin-right: 20px;
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
}
.popover-basket-productList-item-title[data-v-f81ee22c] {
      max-width: 50%;
      font-size: 14px;
      line-height: 18px;
      max-height: 54px;
      overflow: hidden;
      cursor: pointer;
      transition: all .3s;
}
.popover-basket-productList-item-title[data-v-f81ee22c]:hover {
        color: #AEB455;
}
.popover-basket-productList-item-price[data-v-f81ee22c] {
      white-space: nowrap;
      font-family: "Nunito", sans-serif;
      font-weight: 800;
      font-size: 20px;
      line-height: 1.25rem;
      width: 80px;
      text-align: right;
      color: #515C64;
      margin-right: 5px;
}
.popover-basket-productList-item-price .ruble[data-v-f81ee22c] {
        font-size: 16px;
}
.popover-basket-productList-item-delete[data-v-f81ee22c] {
      width: 16px;
      height: 22px;
      opacity: .6;
      margin-left: 5px;
      cursor: pointer;
      transition: all .3s;
}
.popover-basket-productList-item-delete .svg-icon[data-v-f81ee22c] {
        fill: #3b3c3d;
}
.popover-basket-productList-item-delete[data-v-f81ee22c]:hover {
        opacity: 1;
}
.popover-basket-productList-empty[data-v-f81ee22c] {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    margin: 0 15px;
    height: 80px;
    border: 1px solid transparent;
}
.popover-basket-btn-wrap[data-v-f81ee22c] {
  width: 100%;
  padding: 0 20px;
}

/*new colors*/
/* home top banners */
/*
  Custom Bootstrap breakpoints
*/
.mainHeader-search-input {
  color: currentColor;
  padding-left: 35px;
  border-color: #939598;
  width: 180px;
}
.mainHeader-search-input::placeholder {
    color: currentColor;
}
@media (max-width: 1439.98px) {
.mainHeader-search-input {
      width: 165px;
}
}
.mainHeader-search-input-wrapper {
    position: relative;
}
.mainHeader-search-input-wrapper .svg-icon {
      position: absolute;
      width: 16px;
      height: 16px;
      top: 50%;
      left: 10px;
      margin-top: -8px;
      fill: currentColor;
}
.mainHeader-search-popover-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #F4F5F5;
  max-width: 390px;
  border-radius: 3px;
}
.mainHeader-search-popover-content .button {
    margin: 15px 0;
}
.mainHeader-search-popover-productList {
  background-color: #fff;
  width: 100%;
  max-height: 400px;
  overflow-y: auto;
  border-radius: 3px;
}
.mainHeader-search-popover-productList-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    margin: 0 15px;
    height: 80px;
    border: 1px solid transparent;
    border-top-color: #DFE0E1;
    cursor: pointer;
}
.mainHeader-search-popover-productList-item:first-child {
      border-top-color: transparent;
}
.mainHeader-search-popover-productList-item-image {
      width: 50px;
      height: 50px;
      margin-right: 20px;
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
}
.mainHeader-search-popover-productList-item-title {
      max-width: 50%;
      font-size: 14px;
      line-height: 18px;
      max-height: 54px;
      overflow: hidden;
      color: inherit;
      transition: all .3s;
}
.mainHeader-search-popover-productList-item:hover {
      color: #AEB455;
}
.mainHeader-search-popover-productList-item-price {
      white-space: nowrap;
      font-size: 20px;
      line-height: 1.25rem;
      font-weight: 300;
      width: 80px;
      text-align: right;
      margin-right: 5px;
      color: #000;
}
.mainHeader-search-popover-productList-item-price .ruble {
        font-size: 16px;
}
.mainHeader-search-popover-productList-item-delete {
      width: 16px;
      height: 22px;
      opacity: .6;
      margin-left: 5px;
      cursor: pointer;
      transition: all .3s;
}
.mainHeader-search-popover-productList-item-delete .svg-icon {
        fill: #3b3c3d;
}
.mainHeader-search-popover-productList-item-delete:hover {
        opacity: 1;
}
.mainHeader-search-popover-productList-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    margin: 0 15px;
    height: 80px;
    border: 1px solid transparent;
}

/*new colors*/
/* home top banners */
/*
  Custom Bootstrap breakpoints
*/
.top-menu {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.top-menu__list {
    margin: 0;
    padding: 0;
    list-style: none;
    height: 100%;
}
.top-menu__list--menu {
      width: 65%;
      display: grid;
      grid-template-columns: repeat(6, minmax(min-content, max-content));
      align-items: center;
      justify-content: space-between;
}
@media (max-width: 1439.98px) {
.top-menu__list--menu {
          width: 70%;
}
}
.top-menu__list--auth {
      display: flex;
      align-items: center;
      justify-content: space-around;
      width: auto;
}
.top-menu__list--auth li {
        display: flex;
        align-items: center;
}
.top-menu__item--reg::before {
    content: "|";
    display: inline-block;
    /*/padding: 0 15px;*/
    color: #fff;
    opacity: 0.5;
}
.top-menu__link {
    border: none;
    font-family: "Rounds Black", sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: 16px;
    line-height: 19px;
    color: #fff;
    background: transparent;
}
.top-menu__link:hover, .top-menu__link:focus {
      cursor: pointer;
      opacity: 0.5;
      background: transparent;
      outline: none;
}
@media (max-width: 1439.98px) {
.top-menu__link {
        font-size: 14px;
}
}
.top-menu a {
    display: flex;
    align-items: center;
    padding: 0 20px;
}
@media (max-width: 1439.98px) {
.top-menu a {
        padding: 0 10px;
}
}
.top-menu li,
  .top-menu a {
    height: 100%;
}

/*new colors*/
/* home top banners */
/*
  Custom Bootstrap breakpoints
*/
#mainHeader {
  width: 100%;
  background: #fff;
}
.header_fixed, .header_absolute {
  top: 0;
  left: 0;
  right: 0;
  width: 100%;
  z-index: 2000;
  transform: translate3d(0, 0, 0);
}
.header_absolute {
  position: absolute;
}
.header_fixed {
  position: fixed;
}
.header-info {
  font-size: 16px;
  line-height: normal;
  letter-spacing: 0.3px;
  color: #5C7684;
}
@media (max-width: 1019.98px) {
.mainHeader {
    display: none;
    margin: 0 auto;
    padding: 0 auto;
}
}
.geo-icon {
  display: inline;
  vertical-align: middle;
  padding-right: 10px;
}
.wrapper-navigation {
  background: #5C7684;
  height: 50px;
  opacity: 1;
  transition: all .5s;
}
@media (max-width: 1019.98px) {
.wrapper-navigation {
      display: none;
}
}
.navigation {
  margin: 0 auto;
  font-size: 14px;
  line-height: normal;
  display: flex;
  width: 100%;
  height: 34px;
  align-items: center;
}
.navigation-item {
    display: flex;
    align-items: center;
    height: 100%;
}
.navigation-item__auth {
      background: transparent !important;
}
.navigation-item__auth-enter .navigation-item__auth-enter:hover, .navigation-item__auth-reg:hover {
        opacity: 1;
}
.navigation-link {
    color: #fff;
    height: 100%;
    padding: 9px 20px;
    cursor: pointer;
    opacity: 0.7;
    transition: all 0.3s;
    border-radius: 30px;
}
.navigation-link:hover {
      opacity: 1;
}
.pseudolink {
  border-bottom: 1px dashed;
  border-color: rgba(255, 80, 0, 0.5);
}
.pseudolink:hover {
    border-color: rgba(255, 80, 0, 0.2);
}
.line {
  background: #fff;
  background: #fff;
  height: 20px;
  width: 1px;
  margin-left: 10px;
  margin-right: 10px;
  opacity: 0.6;
}
.wrapper-header {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  height: 106px;
  transition: height .3s;
}
@media (max-width: 1019.98px) {
.wrapper-header {
      display: none;
}
}
.inner-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 61%;
}
@media (max-width: 1439.98px) {
.inner-wrap {
      width: 74.3%;
      padding-left: 25px;
}
}
.wrap-logo {
  width: -moz-fit-content;
  width: fit-content;
}
.wrap-logo-info {
    width: 187px;
    margin: 0 40px;
}
.header-logo {
  padding-left: 20px;
}
.header-contacts {
  display: flex;
  white-space: nowrap;
  font-weight: 300;
  line-height: 25px;
  color: #5C7684;
}
.header-contacts span {
    color: #5C7684;
    padding-left: 5px;
    font-size: 24px;
    transition: all .3s ease;
}
@media (max-width: 1439.98px) {
.header-contacts span {
        font-size: 22px;
}
}
@media (max-width: 1439.98px) {
.header-contacts {
      font-size: 18px;
      margin-left: 10px;
}
}
.header-contacts .phoneIcon {
    width: 30px;
    height: 30px;
    fill: none;
    stroke: rgba(147, 149, 152, 0.6);
    transition: all .3s ease;
}
.header-contacts-phonelink {
    display: flex;
    align-items: center;
    font-family: "Nunito", sans-serif;
    font-style: normal;
    font-weight: 900;
    font-size: 24px;
    line-height: 29px;
    color: #5C7684;
    opacity: 1;
}
.header-contacts:hover .phoneIcon {
    stroke: #3b3c3d;
}
.header-contacts:hover span {
    color: #3b3c3d;
}
.header-cart {
  display: flex;
  justify-content: center;
  width: 80px;
  cursor: pointer;
}
.header-cart:hover .header-cart-icon {
    fill: #3b3c3d;
}
.header-cart-icon {
    width: 30px;
    height: 30px;
    fill: rgba(147, 149, 152, 0.6);
    transition: all .3s;
}
.header-favorites {
  display: flex;
  justify-content: center;
  width: 80px;
  cursor: pointer;
}
.header-favorites svg path {
    fill: rgba(147, 149, 152, 0.6);
    transition: 0.3s;
}
.header-favorites:hover svg path {
    fill: #3b3c3d;
}
.header-favorites-icon {
    width: 30px;
    height: 30px;
    fill: rgba(147, 149, 152, 0.6);
    transition: all .3s;
}
.cart-items, .favorites-items {
  padding: 4px 4px;
  text-align: center;
  min-width: 24px;
  max-width: 60px;
  border-radius: 50%;
  color: #fff;
  font-size: 15px;
  height: 24px;
  margin: auto;
}
.cart-items {
  background-color: #EF6C68;
}
.favorites-items {
  background: #AEB455;
}
.header-textimg img {
  height: 41px;
}
.cat-bg {
  background: #AEB455;
}
@media (max-width: 1019.98px) {
.cat-bg {
      display: none;
}
}
.wrapper-cat {
  display: flex;
  height: 50px;
  align-items: center;
  margin-bottom: 0;
  margin-top: 0;
  padding: 0 20px !important;
}
@media (max-width: 1019.98px) {
.wrapper-cat {
      display: none;
}
}
.cat-list {
  width: 100%;
  height: inherit;
  position: relative;
  display: flex;
  align-items: center;
  border-radius: 30px;
  transition: 0.3s ease;
  cursor: pointer;
}
.cat-list a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
    z-index: 10;
    border-radius: 30px;
    font-family: "Rounds Black", sans-serif;
    color: #fff;
    text-align: center;
    font-style: normal;
    font-size: 16px;
    line-height: normal;
    letter-spacing: 0.3px;
    text-transform: uppercase;
}
@media (min-width: 1020px) and (max-width: 1439.98px) {
.cat-list a {
        font-size: 14px;
}
}
.cat-list a:after {
      /*  content: '';
              position: absolute;
              mask: url("/PlayNext/images/header/corner.svg");
              width: 20px;
              height: 50px;
              background-color: #CFCFCF;
              top: 0;
              right: -20px;
              z-index: 10;
              transition: 0.3s ease;*/
}
.cat-list:after {
    /* content: '';
         position: absolute;
         background: url("/PlayNext/images/header/shadow.png");
         width: 39px;
         height: 50px;
         top: 0;
         right: -39px;
         transition: 0.3s ease;
         z-index: 9;*/
}
.main-navigation .cat-bg ul {
  display: flex;
  padding-left: 0px;
  justify-content: space-between;
  /*width: 12.5%;*/
}
.main-navigation .cat-bg li {
  list-style: none;
}
.main-navigation .cat-bg li {
  transition: all 0.3s;
}
.main-navigation .cat-bg li:nth-child(1) a {
  margin-left: 0;
  /*padding-left: 20px;*/
}
.main-navigation .cat-bg li:nth-child(1):hover a {
  background-color: #EF6C68;
  color: white;
}
.main-navigation .cat-bg li:nth-child(1):hover a:after {
    background-color: #EF6C68;
}
.main-navigation .cat-bg li:nth-child(1).category-active a {
  color: white;
  background-color: #EF6C68;
}
.main-navigation .cat-bg li:nth-child(1).category-active a:after {
    background-color: #EF6C68;
}
.main-navigation .cat-bg li:nth-child(2):hover a {
  background-color: #505FB0;
  color: white;
}
.main-navigation .cat-bg li:nth-child(2):hover a:after {
    background-color: #505FB0;
}
.main-navigation .cat-bg li:nth-child(2).category-active a {
  color: white;
  background-color: #505FB0;
}
.main-navigation .cat-bg li:nth-child(2).category-active a:after {
    background-color: #505FB0;
}
.main-navigation .cat-bg li:nth-child(3):hover a {
  color: white;
  background-color: #F986B5;
}
.main-navigation .cat-bg li:nth-child(3):hover a:after {
    background-color: #F986B5;
}
.main-navigation .cat-bg li:nth-child(3).category-active a {
  background-color: #F986B5;
  color: white;
}
.main-navigation .cat-bg li:nth-child(3).category-active a:after {
    background-color: #F986B5;
}
.main-navigation .cat-bg li:nth-child(4):hover a {
  background-color: #A1D8FF;
  color: white;
}
.main-navigation .cat-bg li:nth-child(4):hover a:after {
    background-color: #A1D8FF;
}
.main-navigation .cat-bg li:nth-child(4).category-active a {
  background-color: #A1D8FF;
  color: white;
}
.main-navigation .cat-bg li:nth-child(4).category-active a:after {
    background-color: #A1D8FF;
}
.main-navigation .cat-bg li:nth-child(5):hover a {
  background-color: #A8EEDD;
  color: white;
}
.main-navigation .cat-bg li:nth-child(5):hover a:after {
    background-color: #A8EEDD;
}
.main-navigation .cat-bg li:nth-child(5).category-active a {
  background-color: #A8EEDD;
  color: white;
}
.main-navigation .cat-bg li:nth-child(5).category-active a:after {
    background-color: #A8EEDD;
}
.main-navigation .cat-bg li:nth-child(6):hover a {
  background-color: #EFA220;
  color: white;
}
.main-navigation .cat-bg li:nth-child(6):hover a:after {
    background-color: #EFA220;
}
.main-navigation .cat-bg li:nth-child(6).category-active a {
  background-color: #EFA220;
  color: white;
}
.main-navigation .cat-bg li:nth-child(6).category-active a:after {
    background-color: #EFA220;
}
.main-navigation .cat-bg li:nth-child(7):hover a {
  background-color: #ff595a;
  color: white;
}
.main-navigation .cat-bg li:nth-child(7):hover a:after {
    background-color: #ff595a;
}
.main-navigation .cat-bg li:nth-child(7).category-active a {
  background-color: #ff595a;
  color: white;
}
.main-navigation .cat-bg li:nth-child(7).category-active a:after {
    background-color: #ff595a;
}
.main-navigation .cat-bg li:nth-child(8):hover a {
  background-color: #ae7600;
  color: white;
}
.main-navigation .cat-bg li:nth-child(8):hover a:after {
    background-color: #ae7600;
}
.main-navigation .cat-bg li:nth-child(8).category-active a {
  background-color: #ae7600;
  color: white;
}
.main-navigation .cat-bg li:nth-child(8).category-active a:after {
    background-color: #ae7600;
}
.main-navigation .cat-bg li:nth-child(n + 9):hover a {
  background-color: #ae408c;
  color: white;
}
.main-navigation .cat-bg li:nth-child(n + 9):hover a:after {
    background-color: #ae408c;
}
.main-navigation .cat-bg li:nth-child(n + 9).category-active a {
  background-color: #ae408c;
  color: white;
}
.main-navigation .cat-bg li:nth-child(n + 9).category-active a:after {
    background-color: #ae408c;
}
.main-navigation .cat-bg .bold-weight {
  font-weight: 500;
}
.main-navigation .cat-bg ul.navigation li a:hover {
  background: rgba(255, 255, 255, 0.15);
}
.main-navigation .cat-bg .navigation-item__auth {
  background: transparent;
}
.main-navigation .cat-bg .navigation-item__auth-enter, .main-navigation .cat-bg .navigation-item__auth-reg {
    opacity: 1;
}
.main-navigation .cat-bg .navigation-item__auth-enter:hover, .main-navigation .cat-bg .navigation-item__auth-reg:hover {
      background: transparent !important;
      opacity: 0.7;
}
.main-navigation .cat-bg .navigation-item__auth-enter {
    /*font-weight: bold;*/
}

/*new colors*/
/* home top banners */
/*
  Custom Bootstrap breakpoints
*/
.mainHeaderMobile-menu-toggle[data-v-0bc86cbb] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.mainHeaderMobile-menu-icon[data-v-0bc86cbb] {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  justify-content: space-between;
}
.mainHeaderMobile-menu-icon .svg-icon[data-v-0bc86cbb] {
    width: 18px;
    height: 18px;
    fill: #939598;
}
.mainHeaderMobile-menu_open .mainHeaderMobile-menu-icon > span[data-v-0bc86cbb] {
  background-color: #AEB455;
}
.mainHeaderMobile-menu_open .mainHeaderMobile-menu-icon > span[data-v-0bc86cbb]:first-child {
    transform: translateY(-2px);
}
.mainHeaderMobile-menu_open .mainHeaderMobile-menu-icon > span[data-v-0bc86cbb]:last-child {
    transform: translateY(2px);
}
.mainHeaderMobile-menu-container[data-v-0bc86cbb] {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  max-height: calc(100vh - 100%);
  overflow: auto;
  background-color: #f7f7f7;
  z-index: -1;
}
.mainHeaderMobile-menu-nav[data-v-0bc86cbb] {
  display: block;
  position: relative;
  background-color: #F7F7F7;
  height: 50px;
  padding: 15px 0;
  border-bottom: 1px solid #DFE0E1;
  color: #333;
}
.mainHeaderMobile-menu-nav[data-v-0bc86cbb]:last-child {
    border-bottom: none;
}
.mainHeaderMobile-menu-nav .logout[data-v-0bc86cbb] {
    position: absolute;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 16px;
    height: 16px;
    fill: #333;
    opacity: .3;
}
.mainHeaderMobile-menu-phone[data-v-0bc86cbb] {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  background-color: #F7F7F7;
}
.mainHeaderMobile-menu-phone-link[data-v-0bc86cbb] {
    color: #939598;
    font-size: 24px;
    line-height: 25px;
}
.mainHeaderMobile-menu-phone-link[data-v-0bc86cbb]:hover {
      color: #3b3c3d;
}
.mainHeaderMobile-menu-phone-link .phoneIcon[data-v-0bc86cbb] {
      width: 25px;
      height: 25px;
      fill: none;
      stroke: currentColor;
}

/*new colors*/
/* home top banners */
/*
  Custom Bootstrap breakpoints
*/
.mainHeaderMobile-search .app-preloader-wrap {
  display: flex;
  width: 100%;
  height: min-content;
}
.mainHeaderMobile-search-list-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #F4F5F5;
  max-width: 390px;
  border-radius: 3px;
}
.mainHeaderMobile-search-list-content .button {
    margin: 15px 0;
}
.mainHeaderMobile-search-list-productList {
  background-color: #fff;
  width: 100%;
  max-height: 400px;
  overflow-y: auto;
  border-radius: 3px;
}
.mainHeaderMobile-search-list-productList-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 15px 0;
    margin: 0 15px;
    height: 80px;
    border: 1px solid transparent;
    border-top-color: #DFE0E1;
    color: #333333;
}
.mainHeaderMobile-search-list-productList-item:first-child {
      border-top-color: transparent;
}
.mainHeaderMobile-search-list-productList-item-image {
      width: 50px;
      height: 50px;
      margin-right: 20px;
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
}
.mainHeaderMobile-search-list-productList-item-title {
      flex: 1;
      font-size: 14px;
      line-height: 18px;
      max-height: 54px;
      overflow: hidden;
}
.mainHeaderMobile-search-list-productList-item-price {
      white-space: nowrap;
      font-size: 20px;
      line-height: 1.25rem;
      font-weight: 300;
      width: 80px;
      text-align: right;
      margin-right: 5px;
}
.mainHeaderMobile-search-list-productList-item-price .ruble {
        font-size: 16px;
}
.mainHeaderMobile-search-list-productList-empty {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px 20px;
    margin: 0 15px;
    height: 80px;
    border: 1px solid transparent;
}
.mainHeaderMobile-search-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.mainHeaderMobile-search-icon {
  cursor: pointer;
}
.mainHeaderMobile-search-icon .svg-icon {
    width: 20px;
    height: 20px;
    fill: rgba(147, 149, 152, 0.6);
}
.mainHeaderMobile-search-window {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 300;
  display: flex;
  flex-direction: column;
}
.mainHeaderMobile-search-window-header {
    border-bottom: 1px solid #e4e4e5;
    background: #fff;
}
.mainHeaderMobile-search-window-header-container {
      display: flex;
      align-items: center;
      padding-top: 15px;
      padding-bottom: 15px;
}
.mainHeaderMobile-search-window-header-input {
      flex-grow: 1;
}
.mainHeaderMobile-search-window-header-close {
      margin-left: 15px;
      cursor: pointer;
      color: #939598;
}
.mainHeaderMobile-search-window-header-close .svg-icon {
        width: 20px;
        height: 20px;
}
.mainHeaderMobile-search-window-body {
    flex-grow: 1;
    background-color: #fff;
    position: relative;
    max-height: 100%;
}
.mainHeaderMobile-search-window-body-container {
      position: absolute;
      top: 0;
      right: 0;
      bottom: 0;
      left: 0;
      width: 100%;
      height: 100%;
}
.mainHeaderMobile-search-window-body-container .container {
        position: relative;
        height: 100%;
}
.mainHeaderMobile-search-window-body-empty {
      text-align: center;
      margin-top: 30px;
}
.mainHeaderMobile-search-window-body-list {
      position: relative;
      overflow: auto;
      height: 100%;
}
.mainHeaderMobile-search-window-body-list-item {
        color: #515C64;
        display: block;
        padding: 10px 0;
}
.searchMobileWindow-enter-active {
  transition: all .8s;
}
.searchMobileWindow-enter-active .mainHeaderMobile-search-window-header {
    transition: opacity .3s ease, transform .3s ease;
}
.searchMobileWindow-enter-active .mainHeaderMobile-search-window-body {
    transition: opacity .5s;
    transition-delay: .3s;
}
.searchMobileWindow-enter .mainHeaderMobile-search-window-header {
  transform: translateY(-100%);
  opacity: 0;
}
.searchMobileWindow-enter .mainHeaderMobile-search-window-body {
  opacity: 0;
}
.searchMobileWindow-leave-active {
  transition: opacity .3s;
}
.searchMobileWindow-leave-to {
  opacity: 0;
}

/*new colors*/
/* home top banners */
/*
  Custom Bootstrap breakpoints
*/
.headerIconBtn {
  position: relative;
}
.headerIconBtn-label {
    position: absolute;
    padding: 3px 6px;
    background-color: #515C64;
    color: #fff;
    border-radius: 2em;
    font-size: 10px;
    font-weight: 400;
    top: 4px;
    right: 3px;
    z-index: 3;
    top: 0;
    right: 0;
}

/*new colors*/
/* home top banners */
/*
  Custom Bootstrap breakpoints
*/
.mainHeaderChangeCityMobile[data-v-7c0272dd] {
  border-bottom: 1px solid #e4e4e5;
  background-color: #F7F7F7;
}
.mainHeaderChangeCityMobile-header[data-v-7c0272dd] {
    cursor: pointer;
    padding: 15px 0;
    height: 50px;
    line-height: 1;
}
.mainHeaderChangeCityMobile-header-row[data-v-7c0272dd] {
      display: flex;
      align-items: center;
}
.mainHeaderChangeCityMobile-header-row > span[data-v-7c0272dd] {
        margin-left: 12px;
}
.mainHeaderChangeCityMobile-header-point[data-v-7c0272dd] {
      color: rgba(147, 149, 152, 0.6);
      width: 15px;
      height: 20px;
}
.mainHeaderChangeCityMobile-header .region[data-v-7c0272dd] {
      opacity: .5;
}
.mainHeaderChangeCityMobile-header-arrow[data-v-7c0272dd] {
      margin-left: auto;
      width: 10px;
      height: 10px;
      opacity: 0.6;
      transition: transform .4s ease;
}

/*new colors*/
/* home top banners */
/*
  Custom Bootstrap breakpoints
*/
.mainHeaderChangeCityMobile[data-v-b28beb04] {
  border-bottom: 1px solid #e4e4e5;
  background-color: #F7F7F7;
}
.mainHeaderChangeCityMobile-header[data-v-b28beb04] {
    cursor: pointer;
    padding: 17px 0;
    height: 50px;
    line-height: 1;
}
.mainHeaderChangeCityMobile-header-row[data-v-b28beb04] {
      display: flex;
      align-items: center;
}
.mainHeaderChangeCityMobile-header-point[data-v-b28beb04] {
      color: rgba(147, 149, 152, 0.6);
      width: 15px;
      height: 20px;
}
.mainHeaderChangeCityMobile-header .region[data-v-b28beb04] {
      opacity: .5;
}
.mainHeaderChangeCityMobile-header-arrow[data-v-b28beb04] {
      margin-left: auto;
      width: 10px;
      height: 10px;
      opacity: 0.6;
      transition: transform .4s ease;
}
.mainHeaderChangeCityMobile-content-item[data-v-b28beb04] {
    display: block;
    position: relative;
    background-color: #fff;
    height: 50px;
    padding: 15px 0;
    border-bottom: 1px solid #DFE0E1;
    color: #333;
}
.mainHeaderChangeCityMobile-content-item[data-v-b28beb04]:last-child {
      border-bottom-color: transparent;
}

/*new colors*/
/* home top banners */
/*
  Custom Bootstrap breakpoints
*/
.mainHeaderMobile-menu-toggle[data-v-f1296ffe] {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  cursor: pointer;
}
.mainHeaderMobile-menu-icon[data-v-f1296ffe] {
  display: flex;
  flex-direction: column;
  width: 20px;
  height: 16px;
  cursor: pointer;
  justify-content: space-between;
}
.mainHeaderMobile-menu-icon > span[data-v-f1296ffe] {
    width: 100%;
    height: 2px;
    background-color: rgba(147, 149, 152, 0.6);
    transition: all .3s ease;
}
.mainHeaderMobile-menu_open .mainHeaderMobile-menu-icon > span[data-v-f1296ffe] {
  background-color: #AEB455;
}
.mainHeaderMobile-menu_open .mainHeaderMobile-menu-icon > span[data-v-f1296ffe]:first-child {
    transform: translateY(-2px);
}
.mainHeaderMobile-menu_open .mainHeaderMobile-menu-icon > span[data-v-f1296ffe]:last-child {
    transform: translateY(2px);
}
.mainHeaderMobile-menu-container[data-v-f1296ffe] {
  position: absolute;
  top: 100%;
  left: 0;
  right: 0;
  max-height: calc(100vh - 100%);
  overflow: auto;
  background-color: #fff;
  z-index: -1;
}
.mainHeaderMobile-menu-nav[data-v-f1296ffe] {
  display: block;
  position: relative;
  background-color: #F7F7F7;
  height: 50px;
  padding: 15px 0;
  border-bottom: 1px solid #DFE0E1;
  color: #333;
}
.mainHeaderMobile-menu-nav .svg-icon[data-v-f1296ffe] {
    position: absolute;
    right: 20px;
    top: 0;
    bottom: 0;
    margin: auto 0;
    width: 12px;
    height: 12px;
}
.mainHeaderMobile-menu-phone[data-v-f1296ffe] {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 70px;
  background-color: #F7F7F7;
}
.mainHeaderMobile-menu-phone-link[data-v-f1296ffe] {
    color: #939598;
    font-size: 24px;
    line-height: 25px;
}
.mainHeaderMobile-menu-phone-link[data-v-f1296ffe]:hover {
      color: #3b3c3d;
}
.mainHeaderMobile-menu-phone-link .phoneIcon[data-v-f1296ffe] {
      width: 25px;
      height: 25px;
      fill: none;
      stroke: currentColor;
}

/*new colors*/
/* home top banners */
/*
  Custom Bootstrap breakpoints
*/
.mainHeaderMobile {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: #fff;
  z-index: 1000;
}
.mainHeaderMobile .container_2 {
    padding-right: 10px;
}
@media (min-width: 1020px) {
.mainHeaderMobile {
      display: none;
}
}
.mainHeaderMobile-container {
    display: flex;
    align-items: center;
    height: 60px;
}
.mainHeaderMobile-logo {
    width: 112px;
    height: 30px;
    background: url("/PlayNext/images/logo-mobile.jpg") no-repeat center/contain;
}
.mainHeaderMobile .mainHeaderMobile-favorite {
    padding-right: 5px;
}
.mainHeaderMobile .mainHeaderMobile-favorite svg {
      width: 22px;
}
.mainHeaderMobile .mainHeaderMobile-favorite svg path {
        fill: rgba(147, 149, 152, 0.6);
        transition: 0.3s;
}
.mainHeaderMobile-right {
    margin-left: auto;
    display: flex;
    align-items: center;
    height: 100%;
}
.mainHeaderMobile-right .basket {
      position: relative;
}
.mainHeaderMobile-right-el {
      margin-top: -1px;
      display: flex;
      align-items: center;
      justify-content: center;
      width: 34px;
      height: 100%;
}
.mainHeaderMobile-right-el .basketItems {
        position: absolute;
        background-color: #EF6C68;
        text-align: center;
        min-width: 18px;
        max-width: 24px;
        border-radius: 50%;
        color: #fff;
        font-size: 12px;
        height: 18px;
        top: 9px;
        right: 0;
        display: flex;
        justify-content: center;
        align-items: center;
        padding-top: 2px;
        padding-left: 1px;
}
.mainHeaderMobile-right-el .favoriteItems {
        background-color: #AEB455;
}
.mainHeaderMobile-right .overlayShadow {
      position: absolute;
      width: 100%;
      height: 100%;
      top: 0;
      left: 0;
      z-index: -1;
      box-shadow: 0 6px 20px rgba(0, 0, 0, 0.15);
}
.mainHeaderMobile-right .basketIcon {
      width: 25px;
      height: 20px;
      fill: none;
}
.mainHeaderMobile-right .basketIcon path {
        fill: rgba(147, 149, 152, 0.6);
}

/*new colors*/
/* home top banners */
/*
  Custom Bootstrap breakpoints
*/
.popup[data-v-fdaea6c8] {
  width: 480px;
  background-color: #fff;
  overflow: hidden;
  border-radius: 3px;
}
@media (max-width: 575.98px) {
.popup[data-v-fdaea6c8] {
      width: 100%;
      height: 100vh;
      border-radius: 0;
}
}
.popup-content[data-v-fdaea6c8] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 73px;
    width: 100%;
    height: 100%;
    background-color: #fff;
    position: relative;
}
@media (max-width: 575.98px) {
.popup-content[data-v-fdaea6c8] {
        padding: 40px 0;
}
}
.popup-content-title[data-v-fdaea6c8] {
      text-align: center;
}
.popup-content-input[data-v-fdaea6c8] {
      width: 100%;
      height: 50px;
}
.popup-close[data-v-fdaea6c8] {
    position: absolute;
    top: 0px;
    right: 20px;
    font-family: Times New Roman;
    font-size: 48px;
    cursor: pointer;
    font-weight: 100;
    color: rgba(147, 149, 152, 0.7);
}
.popup-button[data-v-fdaea6c8] {
    width: 100%;
    margin-bottom: 30px;
}
@media (max-width: 575.98px) {
.popup-button[data-v-fdaea6c8] {
        margin-bottom: 20px;
}
}
.popup .forgetPassword[data-v-fdaea6c8] {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 13px;
    font-weight: 300;
    cursor: pointer;
}
.popup .forgetPassword a[data-v-fdaea6c8] {
      color: #000;
      opacity: .5;
      transition: all .3s ease;
}
.popup .forgetPassword a[data-v-fdaea6c8]:hover {
        opacity: 1;
}
#modal-login .checkBox-form[data-v-fdaea6c8] {
  display: flex;
}
#modal-login .checkBox-form-label[data-v-fdaea6c8]:before {
    /*top:0;*/
}

/*new colors*/
/* home top banners */
/*
  Custom Bootstrap breakpoints
*/
.popup[data-v-0ecaf307] {
  width: 500px;
  height: auto;
  background-color: #fff;
  overflow: hidden;
  border-radius: 3px;
}
@media (max-width: 575.98px) {
.popup[data-v-0ecaf307] {
      width: 100%;
      height: 100vh;
      border-radius: 0;
}
}
.popup-content[data-v-0ecaf307] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 73px;
    width: 100%;
    height: 100%;
    background-color: #fff;
    position: relative;
}
@media (max-width: 575.98px) {
.popup-content[data-v-0ecaf307] {
        padding: 40px 0;
}
}
.popup-content-title[data-v-0ecaf307] {
      text-align: center;
}
.popup-content-input[data-v-0ecaf307] {
      width: 100%;
      height: 50px;
}
.popup-content-input + .error[data-v-0ecaf307] {
        display: none;
        color: red;
        margin-top: -18px;
        margin-bottom: 20px;
        font-size: 14px;
}
.popup-content-input.invalid-input + .error[data-v-0ecaf307] {
        display: block;
}
.popup-content-icon .svg-icon[data-v-0ecaf307] {
      width: 100px;
      height: 100px;
      margin-bottom: 20px;
      fill: #6AC259;
}
.popup .successPopup[data-v-0ecaf307] {
    padding: 70px 50px;
}
.popup .successPopup .popup-content-title[data-v-0ecaf307] {
      margin-bottom: 25px;
}
.popup_input[data-v-0ecaf307] {
    width: 100%;
    height: 45px;
    margin-bottom: 20px;
    outline: none;
    padding-left: 20px;
}
.popup-button[data-v-0ecaf307] {
    width: 100%;
    margin-bottom: 10px;
}
.popup .overflowContainer[data-v-0ecaf307] {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

/*new colors*/
/* home top banners */
/*
  Custom Bootstrap breakpoints
*/
.popup[data-v-4cb49fc5] {
  width: 480px;
  height: 450px;
  background-color: #fff;
  overflow: hidden;
  border-radius: 3px;
}
@media (max-width: 575.98px) {
.popup[data-v-4cb49fc5] {
      width: 100%;
      height: 100%;
      border-radius: 0;
}
}
.popup-content[data-v-4cb49fc5] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 73px;
    width: 100%;
    height: 100%;
    background-color: #fff;
    position: relative;
}
@media (max-width: 575.98px) {
.popup-content[data-v-4cb49fc5] {
        padding: 40px 0;
}
}
.popup-content-icon .svg-icon[data-v-4cb49fc5] {
      width: 100px;
      height: 100px;
      margin-bottom: 20px;
      fill: #F05228;
}
.popup-content-title[data-v-4cb49fc5] {
      text-align: center;
      margin-bottom: 0;
}
.popup-content > span[data-v-4cb49fc5] {
      margin-top: 10px;
      margin-bottom: 60px;
}
.popup-button[data-v-4cb49fc5] {
    width: 100%;
}

/*new colors*/
/* home top banners */
/*
  Custom Bootstrap breakpoints
*/
.popup[data-v-5be94985] {
  width: 480px;
  height: 450px;
  background-color: #fff;
  overflow: hidden;
  border-radius: 3px;
}
@media (max-width: 575.98px) {
.popup[data-v-5be94985] {
      width: 100%;
      height: 100vh;
      border-radius: 0;
}
}
.popup-content[data-v-5be94985] {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 40px 73px;
    width: 100%;
    height: 100%;
    background-color: #fff;
    position: relative;
}
@media (max-width: 575.98px) {
.popup-content[data-v-5be94985] {
        padding: 40px 0;
}
}
.popup-content-title[data-v-5be94985] {
      text-align: center;
}
.popup-content form[data-v-5be94985] {
      width: 100%;
}
.popup-content-input[data-v-5be94985] {
      width: 100%;
      height: 50px;
}
.popup-button[data-v-5be94985] {
    width: 100%;
}
.popup .forgetPassword[data-v-5be94985] {
    position: absolute;
    top: 0;
    right: 0;
    font-size: 13px;
    font-weight: 300;
}
.popup .forgetPassword a[data-v-5be94985] {
      color: #000;
      opacity: .5;
      transition: all .3s ease;
}
.popup .forgetPassword a[data-v-5be94985]:hover {
        opacity: 1;
}

/*new colors*/
/* home top banners */
/*
  Custom Bootstrap breakpoints
*/
.miniHeader {
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.05));
}
.miniHeader .wrapper-header {
    height: 76px;
}
.hiddenTopNavBar .wrapper-navigation {
  height: 0;
  opacity: 0;
  overflow: hidden;
}
#fixedHeader {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1000;
  width: 100%;
  background: #fff;
  padding-right: 0 !important;
}
.paddingRight-modal {
  padding-right: 17px;
}

/*new colors*/
/* home top banners */
/*
  Custom Bootstrap breakpoints
*/
.footer[data-v-5c5c31a6] {
  background: #F5F5F5;
  /*.instagram {
		transition: .3s;

		&:hover {
			background-color: $instagram;
			opacity: 1;
		}
	}

	.fb {
		transition: .3s;

		&:hover {
			background-color: $facebook;
			opacity: 1;
		}
	}

	.youtube {
		transition: .3s;

		&:hover {
			background-color: $youtube;
			opacity: 1;
		}
	}

	.twitter {
		transition: .3s;

		&:hover {
			background-color: $twitter;
			opacity: 1;
		}
	}*/
}
.footer a[data-v-5c5c31a6] {
    color: #5C7684;
}
.footer-wrap[data-v-5c5c31a6] {
    display: flex;
    justify-content: space-between;
}
@media (max-width: 1019.98px) {
.footer-wrap[data-v-5c5c31a6] {
        display: block;
}
}
.footer-wrap__title[data-v-5c5c31a6] {
      margin-top: 40px;
      /*font-size: 25px;*/
      /*font-weight: 400;*/
      padding-bottom: 0;
      color: #5C7684;
}
.footer-wrap__subtitle[data-v-5c5c31a6] {
      line-height: 26px;
      font-size: 18px;
      font-weight: 300;
      padding-right: 10px;
      color: #5C7684;
}
.footer-wrap__map[data-v-5c5c31a6] {
      margin-top: 20px;
      position: relative;
}
.footer-wrap__map-point[data-v-5c5c31a6] {
        position: absolute;
}
.footer-wrap__map img[data-v-5c5c31a6] {
        width: 853px;
        height: 487px;
}
@media (max-width: 575.98px) {
.footer-wrap__map img[data-v-5c5c31a6] {
            display: block;
            margin: 0 auto;
            width: 280px;
            height: 160px;
}
}
@media (min-width: 576px) and (max-width: 1019.98px) {
.footer-wrap__map img[data-v-5c5c31a6] {
            display: block;
            margin: 0 auto;
            width: 510px;
            height: 291px;
}
}
@media (min-width: 1020px) and (max-width: 1439.98px) {
.footer-wrap__map img[data-v-5c5c31a6] {
            width: 510px;
            height: 291px;
}
}
.footer-wrap__phone[data-v-5c5c31a6] {
      line-height: 56px;
      font-size: 40px;
      font-weight: 200;
      font-family: "Rounds Black", sans-serif;
      margin-top: -10px;
      white-space: nowrap;
}
.footer-wrap__phone a[data-v-5c5c31a6] {
        color: #AEB455;
}
.footer-wrap__phone a[data-v-5c5c31a6]:hover, .footer-wrap__phone a[data-v-5c5c31a6]:focus {
          opacity: 0.8;
}
@media (max-width: 1019.98px) {
.footer-wrap__phone[data-v-5c5c31a6] {
          font-size: 25px;
}
}
.footer-wrap__descr[data-v-5c5c31a6] {
      font-family: "Scada", sans-serif;
      font-size: 18px;
      line-height: 26px;
      margin-top: -10px;
      padding-bottom: 30px;
      color: #5C7684;
      opacity: 0.5;
}
.footer-wrap__text[data-v-5c5c31a6] {
      font-size: 16px;
      font-weight: 300;
      line-height: 23px;
      padding-bottom: 30px;
      margin: 0;
      padding-right: 10px;
      color: #5C7684;
}
.footer-wrap__text-right[data-v-5c5c31a6] {
      font-size: 16px;
      margin-bottom: 30px;
}
.footer-wrap__button[data-v-5c5c31a6] {
      margin-top: 10px;
}
.footer-wrap__columns[data-v-5c5c31a6] {
      display: flex;
}
@media (max-width: 1019.98px) {
.footer-wrap__columns[data-v-5c5c31a6] {
          padding-bottom: 15px;
}
}
.footer-wrap__columns-left[data-v-5c5c31a6] {
        flex-direction: column;
        display: flex;
        flex: 50%;
}
.footer-wrap__columns-right[data-v-5c5c31a6] {
        flex-direction: column;
        display: flex;
        flex: 50%;
        padding-left: 10px;
}
.footer-wrap-row[data-v-5c5c31a6] {
      display: flex;
      justify-content: space-between;
      white-space: nowrap;
}
.footer .footer-contact-wrap[data-v-5c5c31a6] {
    width: 100%;
    margin-top: 40px;
    margin-bottom: 40px;
    display: flex;
    justify-content: center;
}
@media (max-width: 1019.98px) {
.footer .footer-contact-wrap[data-v-5c5c31a6] {
        align-items: center;
        flex-direction: column;
}
}
.footer .footer-contact-wrap__row[data-v-5c5c31a6] {
      font-weight: 300;
      font-size: 16px;
      padding: 0 30px;
      text-align-last: center;
      text-align: center;
}
@media (max-width: 1439.98px) {
.footer .footer-contact-wrap__row[data-v-5c5c31a6] {
          font-size: 16px;
          padding: 0 13px;
}
}
@media (max-width: 1019.98px) {
.footer .footer-contact-wrap__row[data-v-5c5c31a6] {
          padding: 15px 0;
}
.footer .footer-contact-wrap__row[data-v-5c5c31a6]:first-child {
            padding-top: 0;
}
.footer .footer-contact-wrap__row[data-v-5c5c31a6]:last-child {
            padding-bottom: 0;
}
}
.footer .footer-contact-wrap__playnext[data-v-5c5c31a6] {
      margin-bottom: 60px;
}
.footer .footer-contact-wrap__playnext .svg-icon[data-v-5c5c31a6] {
        width: 100px;
        height: 30px;
        fill: rgba(147, 149, 152, 0.6);
        cursor: pointer;
        transition: all .3s ease;
}
.footer .footer-contact-wrap__playnext .svg-icon[data-v-5c5c31a6]:hover {
          fill: #e33435;
}
.footer .footer-contact-wrap__copy[data-v-5c5c31a6] {
      display: flex;
      justify-content: center;
      margin: 0 20px 30px;
      text-align: center;
      color: #5C7684;
}
.footer .yaMarket[data-v-5c5c31a6] {
    margin-bottom: 30px;
}
.footer .social[data-v-5c5c31a6] {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}
.footer .social a[data-v-5c5c31a6] {
      overflow: hidden;
}
.footer .social__style[data-v-5c5c31a6] {
      margin: 0 10px;
      width: 42px;
      height: 42px;
      padding: 4px;
      float: left;
}
.footer .social__style[data-v-5c5c31a6]:hover {
        opacity: 0.5;
        cursor: pointer;
}
.footer .social-bitrix[data-v-5c5c31a6] {
      display: inline-flex;
      margin: 0 10px;
      width: 42px;
      height: 42px;
      background: #AEB455;
      border-radius: 3px;
      padding: 4px;
      /*&:first-child {
				margin-left: 0;

				&:hover {
					background: $vk;
				}
			}

			&:nth-child(2):hover {
				background: $facebook;
			}*/
      /*&:last-child {
				margin-right: 0;

				&:hover {
					background: $instagram;
				}
			}*/
}
.footer .social-bitrix[data-v-5c5c31a6]:hover {
        cursor: pointer;
        background: #4C6C91;
}
@media (max-width: 575.98px) {
.footer .desktop[data-v-5c5c31a6] {
      display: none;
}
}
.footer .mobile[data-v-5c5c31a6] {
    display: none;
}
@media (max-width: 575.98px) {
.footer .mobile[data-v-5c5c31a6] {
        display: flex;
        margin: 0 auto;
}
}
.footer .white-line[data-v-5c5c31a6] {
    height: 3px;
    background: #fff;
    margin-top: 45px;
}
.footer .vk[data-v-5c5c31a6] {
    transition: .3s;
    /*&:hover {
			background-color: $vk;
			opacity: 1;
		}*/
}

/*new colors*/
/* home top banners */
/*
  Custom Bootstrap breakpoints
*/
.loadingPage {
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  position: fixed;
  background-color: #fff;
  z-index: 20000;
}
.loadingPage-animation-enter-active, .loadingPage-animation-leave-active {
    transition: opacity .1s;
}
.loadingPage-animation-enter, .loadingPage-animation-leave-to {
    opacity: 0;
}
.loadingPage-animation_first-leave-active {
    transition: opacity .5s;
}
.loadingPage-animation_first-leave-to {
    opacity: 0;
}

/*new colors*/
/* home top banners */
/*
  Custom Bootstrap breakpoints
*/
.promotion-notice__content[data-v-31e82c7c] {
  padding: 30px;
  text-align: center;
}
.promotion-notice__text[data-v-31e82c7c] {
  margin: 0;
}
.promotion-notice__title[data-v-31e82c7c] {
  margin: 0;
  color: #EF6C68;
}
.promotion-notice__code[data-v-31e82c7c] {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
  width: 100%;
  height: 50px;
  background: #F2F5F8;
  border: none;
  border-radius: 5px;
  font-family: "Nunito", sans-serif !important;
  font-weight: 900 !important;
  font-size: 20px;
  line-height: 26px;
  color: #515C64;
  text-transform: uppercase;
  text-align: center;
}
.promotion-notice__btn[data-v-31e82c7c] {
  width: 100%;
  height: 42px;
}
.promotion-notice__btn svg[data-v-31e82c7c] {
    margin-right: 10px;
}

/*new colors*/
/* home top banners */
/*
  Custom Bootstrap breakpoints
*/
#promotionNoticeWrap {
  left: 40px;
  bottom: 40px;
  top: unset;
  right: unset;
  padding: 0 !important;
  box-shadow: 5px 10px 30px rgba(95, 90, 122, 0.3);
  border-radius: 15px;
}
@media (max-width: 1019.98px) {
#promotionNoticeWrap {
      top: 50%;
      left: 50%;
      right: unset;
      bottom: unset;
      transform: translate(-50%, -50%);
}
}
#promotionNoticeWrap .modal-dialog {
    margin: 0;
    max-width: 320px;
}
#promotionNoticeWrap .modal-content {
    border: none;
    border-radius: 15px;
    box-shadow: none;
}

/*new colors*/
/* home top banners */
/*
  Custom Bootstrap breakpoints
*/
.body-pad-for-fixed-header {
  padding-top: 156px;
}
@media (max-width: 1019.98px) {
.body-pad-for-fixed-header {
      padding-top: 60px;
}
}

