/* Общие стили */
body {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  font-family: RobotoCondensed, sans-serif;
  font-size: 16px;
  line-height: 1.5;

  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  min-height: 100vh;
  flex-basis: auto;
}

.grecaptcha-badge {
  visibility: hidden;
}
#footer small {
  display: block;
  margin: 5px 0;
  font-size: 12px;
  line-height: 1em;
  text-align: center;
}

.slick-slide:focus,
button:focus,
input:focus,
textarea:focus {
  outline: none;
}
a {
  color: #002e80;
  transition: .2s ease-in-out;
  text-decoration: none;
}
a:hover {
  color: #30b859;
}

#system-message {
  margin-bottom: 15px;
}
#system-message .alert {
  position: relative;
  padding-bottom: 10px;
  border-bottom: 2px solid #002e80;
}
#system-message .alert .close {
  position: absolute;
  right: 0;
  top: 5px;
  cursor: pointer;
  display: block;
  padding: 5px;
}
#system-message .alert .alert-heading {
  margin: 0;
}
#system-message .alert .alert-message {
  font-size: 14px;
}

.btn {
  cursor: pointer;
  display: inline-block;
  padding: 9px 15px 7px;
  margin: 10px 0;
  background: #30b859;
  color: #fff;
  font-size: 14px;
  text-transform: uppercase;
  outline: none;
  border: 0;
  -webkit-box-shadow: 0 3px 3px rgba(0,0,0,.2);
  box-shadow: 0 3px 3px rgba(0,0,0,.2);
  transition: .2s ease-in-out;
  border-radius: 3px;
  position: relative;
}
.btn:hover {
  color: #fff;
  -webkit-box-shadow: 0 1px 3px rgba(0,0,0,.2);
  box-shadow: 0 1px 3px rgba(0,0,0,.2);
}
.btn .label {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  top: -35px;
  left: -50%;
  right: -50%;
  font-size: 12px;
  line-height: 12px;
  color: #fff;
  background: #999;
  padding: 8px 5px;
  text-align: center;
  transition: .2s ease-in-out;
  border-radius: 3px;
  text-transform: capitalize;
}
.btn .label:after {
  position: absolute;
  bottom: -5px;
  left: calc(50% - 5px);
  content: '';
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 5px 5px 0 5px;
  border-color: #999 transparent transparent transparent;
}
.btn:hover .label {
  opacity: 1;
  visibility: visible;
}

.average {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  margin: 0 -2px;
}
.average-star:before {
  display: block;
  width: 13px;
  height: 13px;
  margin: 0 2px;
  content: '\f005';
  font-family: "Font Awesome 5 Pro";
  font-weight: lighter;
  font-size: 13px;
  text-align: center;
  line-height: 13px;
  color: #FFC109;
}
.average-star.half:before {
  content: '\f5c0';
  font-family: "Font Awesome 5 Pro";
  font-weight: solid;
  font-weight: bold;
}
.average-star.full:before {
  content: '\f005';
  font-family: "Font Awesome 5 Pro";
  font-weight: bold;
}

.input-label {
  display: block;
  width: 100%;
  position: relative;
  margin-bottom: 15px;
}
.input-label span {
  display: block;
  margin-bottom: 5px;
}
.input-label input,
.input-label textarea {
  width: 100%;
  outline: none;
  border: 1px solid #ddd;
  border-radius: 3px;
  padding: 8px 10px 7px;
  font-size: 16px;
  resize: none;
  transition: .2s ease-in-out;
}
.input-label input:focus,
.input-label textarea:focus {
  border: 1px solid #30b859;
}

.pagelogin .btn,
.block_button_register .btn,
.form-validate .btn {
  width: 100%;
}
.register_block {
  text-align: center;
}

#content {
  margin: 0 auto 30px;
  flex-grow: 1;
  flex-basis: auto;
}
#sidebar {
  margin-bottom: 15px;
}

.page-header h1 {
  margin: 0;
  margin-bottom: 15px;
}

/* Стили баннеров */
#atrium-slides {
  position: relative;
  margin: 50px 0;
}
#atrium-slides img {
  max-width: 100%;
}
.atrium-slides-slide a {
  display: block;
}
.atrium-slides-navigation {
  width: 100%;
  height: 80px;
  position: absolute;
  left: 0;
  top: 50%;
  bottom: 50%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: space-between;
  visibility: hidden;
}
.atrium-slides-navigation .arrow {
  opacity: 0;
  visibility: hidden;
  margin: 0 100px;
  transition: .2s ease-in-out;
}
.atrium-slides-navigation.active .arrow {
  opacity: 1;
  visibility: visible;
  display: block;
  width: 0;
  height: 0;
  cursor: pointer;
  margin: 0 60px;
}
.atrium-slides-navigation .arrow-prev {
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-right: 20px solid #002e80;
}
.atrium-slides-navigation .arrow-next {
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-left: 20px solid #002e80;
}
.atrium-slides-navigation .arrow-prev:hover {
  border-right: 20px solid #30b859;
}
.atrium-slides-navigation .arrow-next:hover {
  border-left: 20px solid #30b859;
}

/* Преимущества */
.atrium-advantages {
  margin: 50px 0;
}
.atrium-advantages-item {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  cursor: default;
  margin: 15px 0;
}
.atrium-advantages-item-icon {
  display: block;
  width: 100%;
  max-width: 40px;
  min-width: 40px;
  height: 100%;
  max-height: 40px;
  min-height: 40px;
  line-height: 40px;
  background: #373737;
  border-radius: 50%;
  text-align: center;
  margin-right: 10px;
}
.atrium-advantages-item-icon i {
  font-size: 22px;
  line-height: 40px;
  color: #eee;
}
.atrium-advantages-item-info .title {
  display: block;
  font-size: 16px;
  line-height: 22px;
  font-weight: 700;
  text-transform: uppercase;
  display: block;
  color: #373737;
  margin: 0;
  padding: 0;
  margin-bottom: 5px;
  transition: .2s ease-in-out;
}
.atrium-advantages-item-info p {
  font-size: 14px;
  line-height: 16px;
  color: #aaa;
  margin: 0;
  padding: 0;
}
.atrium-advantages-item:hover .atrium-advantages-item-info .title {
  color: #30b859;
}
.atrium-advantages-item:hover .atrium-advantages-item-icon {
  animation-name: bounceIn;
  animation-duration: 1s;
}

/* Топовые категории */
.atrium-top-categories {
  margin: 50px 0;
}
.atrium-top-categories-item {
  text-align: center;
  margin: 30px 0;
}
.atrium-top-categories-item .atrium-top-categories-item-header {
  display: block;
  font-size: 18px;
  line-height: 18px;
  font-weight: 700;
  text-transform: uppercase;
  color: #373737;
  margin: 0 0 10px;
  border-bottom: 3px solid transparent;
  transition: .3s ease-in-out;
  position: relative;
}
.atrium-top-categories-item .atrium-top-categories-item-header:after {
  content: '';
  height: 2px;
  width: 0;
  display: block;
  background: #30b859;
  position: absolute;
  bottom: -5px;
  top: auto;
  left: 0;
  right: 0;
  margin: 0 auto;
  transition: .3s ease-in-out;
}
.atrium-top-categories-item-image {
  width: 90%;
  margin: 0 auto;
  height: 100%;
  max-height: 200px;
  overflow: hidden;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
}
.atrium-top-categories-item-image img {
  max-width: 100%;
  max-height: 100%;
  transition: .3s ease-in-out;
}
.atrium-top-categories-item:hover .atrium-top-categories-item-header:after {
  width: 60%;
}
.atrium-top-categories-item:hover img {
  transform: scale3d(1.1,1.1,1.1);
}

/* Список категорий */
.category-header {
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 24px;
  text-transform: uppercase;
  color: #373737;
}
.categories-list-item {
  margin-bottom: 30px;
}
.category-block {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  -ms-align-items: center;
  align-items: center;
  margin: 0 auto;
  width: 100%;
  max-width: 240px;
  height: 100%;
  padding: 10px;
  border: 1px solid #eee;
  transition: .2s ease-in-out;
  border-radius: 3px;
}
.category-block:hover {
  border: 1px solid #ddd;
  box-shadow: 0px 0px 10px rgba(0,0,0,.1);
}
.category-block-image {
  width: 100%;
  max-width: 200px;
  height: 200px;
  margin-bottom: 10px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
}
.category-block-image img {
  width: auto;
  height: auto;
  max-width: 200px;
  max-height: 200px;
}
.category-block-name {
  display: block;
  text-align: center;
  font-size: 14px;
  line-height: 16px;
  text-decoration: none;
  font-weight: 400;
  text-transform: uppercase;
}

/* Меню в каталоге */
.categories-menu {
  margin-bottom: 20px;
}
.categories-menu-header,
.account-menu-header {
  font-size: 20px;
  text-align: left;
  background: #002e80;
  color: #fff;
  padding: 5px;
  padding-left: 10px;
  margin: 0;
}
.categories-menu-list,
.account-menu {
  border: 1px solid #002e80;
  padding: 5px;
}
.categories-menu-list,
.categories-menu-list ul,
.account-menu,
.account-menu ul {
  margin: 0;
  list-style: none;
}
.categories-menu-list ul,
.account-menu ul {
  height: 0;
  overflow: hidden;
}
.categories-menu-list ul.active {
  height: 100%;
}
.categories-menu-list li a,
.account-menu li a {
  display: block;
  cursor: pointer;
  padding: 5px;
  position: relative;
  font-size: 15px;
}

/* Карточка товара */
.list-product-item {
  margin-bottom: 30px;
}
.list-product-item-list {
  margin-bottom: 10px;
}
.list-product-item-grid .product-card {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  -ms-align-items: center;
  align-items: center;
  margin: 0 auto;
  width: 100%;
  max-width: 240px;
  min-height: 100%;
  padding: 10px;
  border: 1px solid #eee;
  transition: .2s ease-in-out;
  border-radius: 3px;
  position: relative;
}
.list-product-item-list .product-card {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  justify-content: flex-start;
  -ms-align-items: center;
  align-items: center;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 auto;
  width: 100%;
  padding: 10px;
  border: 1px solid #eee;
  transition: .2s ease-in-out;
  border-radius: 3px;
}
.product-card:hover {
  border: 1px solid #ddd;
  box-shadow: 0px 0px 10px rgba(0,0,0,.1);
}
.list-product-item-grid .product-card-image {
  width: 100%;
  max-width: 200px;
  height: 200px;
  margin-bottom: 10px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  position: relative;
}
.list-product-item-list .product-card-image {
  width: 100%;
  max-width: 60px;
  height: 60px;
  margin-right: 10px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.list-product-item-grid .product-card-image img {
  width: auto;
  height: auto;
  max-width: 200px;
  max-height: 200px;
}
.list-product-item-list .product-card-image img {
  width: auto;
  height: auto;
  max-width: 60px;
  max-height: 60px;
}
.list-product-item-grid .product-card-buttons {
  opacity: 0;
  visibility: hidden;
  position: absolute;
  right: 0px;
  top: 0px;
  z-index: 2;
  transition: .2s ease-in-out;
}
.list-product-item-list .product-card-buttons {
  opacity: 0;
  visibility: hidden;
  transition: .2s ease-in-out;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -ms-align-items: center;
  align-items: center;
  justify-content: flex-end;
}
.product-card:hover .product-card-buttons {
  opacity: 1;
  visibility: visible;
}
.product-card-buttons .product-card-button {
  display: block;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  font-size: 18px;
  background: #002e80;
  border-radius: 50%;
  color: #fff;
  border: 1px solid transparent;
  transition: .2s ease-in-out;
  margin: 3px;
  cursor: pointer;
}
.product-card-buttons .product-card-button:hover {
  background: #fff;
  color: #002e80;
  border: 1px dotted #002e80;
}
.product-card-buttons .product-card-button.added {
  background: #fff;
  color: #30b859;
  border: 1px dotted #30b859;
}
.product-card-category {
  font-size: 12px;
  line-height: 16px;
  margin-bottom: 5px;
  color: #aaa;
}
.list-product-item-grid .product-card-category {
  text-align: center;
  height: 32px;
  max-height: 32px;
  overflow: hidden;
}
.list-product-item-grid .product-card-name {
  display: block;
  text-align: center;
  font-size: 14px;
  line-height: 16px;
  text-decoration: none;
  font-weight: 400;
  text-transform: uppercase;
  flex-grow: 1;
  flex-basis: auto;
  margin-bottom: 10px;
  height: 32px;
  max-height: 32px;
  overflow: hidden;
}
.list-product-item-list .product-card-name {
  display: block;
  font-size: 14px;
  line-height: 16px;
  text-decoration: none;
  font-weight: 400;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.list-product-item-list .product-card-info {
  flex-grow: 1;
  flex-basis: auto;
}
.product-card-price {
  margin-bottom: 0;
  color: #002e80;
  font-weight: 700;
  font-size: 18px;
}
.product-card-price i {
  font-weight: lighter;
  font-size: 16px;
}

/* Фильтры */
.form_sort_count {
  background: #f5f5f5;
  padding: 10px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -ms-align-items: center;
  align-items: center;
  justify-content: space-between;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 5px 0 15px;
}
.form_sort_count .filters .block_sorting_count_to_page {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -ms-align-items: center;
  align-items: center;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
}
}
.list-type-controls {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
}
.list-type-control {
  display: inline-block;
  font-size: 22px;
  line-height: 22px;
  cursor: pointer;
  color: #002e80;
  margin-left: 5px;
}
.list-type-control.active {
  color: #30b859;
}
.form_sort_count .filters .block_sorting_count_to_page {
  font-size: 14px;
  line-height: 14px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  margin: 0 -10px;
}
.form_sort_count .filters .control-group {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  margin: 0 5px;
}
.form_sort_count .filters .control-group .controls {
  margin: 0 5px;
}

.filter_characteristic {
  margin: 15px 0;
}
.characteristic_name {
  padding: 5px 20px 5px 0;
  position: relative;
  cursor: pointer;
  border-bottom: 1px solid #eee;
  text-transform: uppercase;
  font-size: 14px;
  font-weight: bold;
}
.characteristic .characteristic_name:after {
  content: '\f067';
  font-family: "Font Awesome 5 Pro";
  position: absolute;
  right: 0;
}
.characteristic.active .characteristic_name:after {
  content: '\f068';
  font-family: "Font Awesome 5 Pro";
  position: absolute;
  right: 0;
}
.characteristic-list {
  padding: 5px 0;
}
.characteristic.active .characteristic-list {
  display: block;
}
.filter-label input {
  display: none;
}
.filter-label span {
  display: block;
  padding: 5px 10px 5px 20px;
  font-size: 14px;
  line-height: 14px;
  color: #333;
  border-radius: 3px;
  cursor: pointer;
  margin-bottom: 5px;
  position: relative;
}
.filter-label span:before {
  content: '';
  position: absolute;
  left: 0;
  display: block;
  width: 14px;
  height: 14px;
  border: 1px solid #ddd;
  border-radius: 3px;
  transition: .2s ease-in-out;
}
.filter-label input:checked + span {
  color: #30b859;
}
.filter-label input:checked + span:before {
  content: '\f00c';
  font-family: "Font Awesome 5 Pro";
  font-size: 14px;
  line-height: 12px;
  text-align: center;
  font-weight: bold;
  border: 1px solid #30b859;
}

/* Сравнение товаров */
.atrium-compare {
  margin-bottom: 50px;
}
.atrium-compare-categories {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -ms-align-items: stretch;
  align-items: stretch;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  margin: 0 -5px;
}
.atrium-compare-categories-label {
  display: block;
  padding: 7px 15px;
  background: #eee;
  border: 1px solid #eee;
  color: #222;
  cursor: pointer;
  margin: 10px 5px;
}
.atrium-compare-categories-label.active {
  background: #fff;
  border: 1px solid #eee;
}
.atrium-compare-products {
  display: none;
  visibility: hidden;
}
.atrium-compare-products.active {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  visibility: visible;
}
.atrium-compare-product-header {
  text-align: center;
  height: 42px;
  overflow: hidden;
  font-size: 14px;
}
.atrium-compare-product-image {
  margin: 10px auto;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  width: 100%;
  max-width: 200px;
  height: 100%;
  max-height: 200px;
}
.atrium-compare-product-image img {
  max-width: 100%;
  max-height: 190px;
}
.atrium-compare-product-price {
  text-align: center;
  margin: 5px 0;
  color: #002e80;
  font-weight: 700;
  font-size: 18px;
}
.atrium-compare-product-price i {
  font-weight: lighter;
  font-size: 16px;
}
.atrium-compare-product-fields {
  list-style: none;
  margin: 0;
  padding: 0;
  text-align: center;
}
.atrium-compare-product-fields li {
  border: 1px solid #eee;
  padding: 5px;
}
.atrium-compare-product-fields li:nth-child(even) {
  background: #eee;
}
.atrium-compare-product-fields .label {
  font-weight: bolder;
}
.atrium-compare-product-remove a {
  display: block;
  width: 100%;
  text-align: center;
  font-size: 14px;
  margin-bottom: 10px;
}

.atrium-categories-list-wrapper {
  margin: 10px -15px;
}
.atrium-categories-list {
  margin: -5px 0;
  padding: 0;
  list-style: none;
}
.atrium-categories-childs {
  display: none;
  background: #eee;
  border: 2px solid #002e80;
  border-left: 0;
  border-right: 0;
  margin: 10px 0;
}
.atrium-categories-childs .atrium-categories-childs {
  margin: 0;
}
.atrium-categories-item a {
  display: block;
  padding: 7px 30px 7px 15px;
  font-size: 14px;
  line-height: 16px;
  border: 1px solid #002e80;
  margin: 5px 0;
  position: relative;
}
.atrium-categories-childs a {
  border: 1px solid #ddd;
}
.atrium-categories-childs .atrium-categories-item a {
  margin: 0;
  padding: 3px 30px 3px 15px;
}
.atrium-categories-childs .atrium-categories-item a:hover {
  background: #002e80;
  color: #fff;
}
.atrium-categories-parent>a:after {
  content: '\f078';
  position: absolute;
  right: 15px;
  font-family: "Font Awesome 5 Pro";
  font-weight: lighter;
}
.atrium-categories-parent>a.active:after {
  content: '\f077';
}

.cart-item {
  border-bottom: 1px solid #002e80;
  margin: 0;
  padding: 10px 0;
}
.cart-item-image {
  height: 100px;
  margin: 0 auto 10px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
}
.cart-item-name {
  font-size: 14px;
  line-height: 16px;
}
.cart-item-image img {
  width: 100%;
  max-width: 100px;
  max-height: 100px;
}
.cart-item-quantity {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  -webkit-flex-wrap: nowrap;
  -moz-flex-wrap: nowrap;
  -ms-flex-wrap: nowrap;
  -o-flex-wrap: nowrap;
  flex-wrap: nowrap;
}
.wishlist .cart-item-quantity {
  justify-content: flex-end;
}
.cart-item-quantity input[type=text] {
  display: block;
  width: 100%;
  max-width: 40px;
  padding: 6px 7px;
  text-align: center;
  font-size: 14px;
  font-weight: bold;
  outline: none;
  margin: 0 3px;
  border: 1px solid #ddd;
  border-radius: 3px;
}
.cart-item-quantity .btn {
  display: block;
  width: 100%;
  max-width: 40px;
  padding: 8px 5px 6px;
  margin: 0 3px;
  text-align: center;
  font-size: 14px;
  -webkit-box-shadow: initial;
  box-shadow: initial;
}
.cart-item-quantity .btn-remove {
  background: #eee;
  color: #999;
  padding: 5px;
}
.cart-item-price,
.cart-item-total {
  text-align: center;
  font-size: 14px;
  line-height: 14px;
}
.cart-item-price i,
.cart-item-total i {
  font-size: 12px;
  line-height: 16px;
  font-weight: lighter;
}
.cart-total {
  margin: 15px 0;
  text-align: right;
}
.cart-total-label,
.cart-total-price {
  text-align: center;
  display: inline-block;
}
.cart-total-price {
  font-size: 20px;
  line-height: 20%;
  color: #002e80;
}
.cart-total-price i {
  font-size: 16px;
  line-height: 20px;
}
.cart-buttons {
  margin: 20px -15px;
}
.cart-buttons .btn {
  width: 100%;
  text-align: center;
}
.cart-info {
  font-size: 14px;
  line-height: 16px;
  color: #666;
  background: lightyellow;
  padding: 10px;
  border: 1px solid #30b859;
  border-radius: 5px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -ms-align-items: center;
  align-items: center;
  justify-content: flex-start;
  margin: 10px 0;
}
.cart-info i {
  color: #30b859;
  font-size: 24px;
  margin-right: 5px;
}

.account h1 {
  margin-top: 0;
}

.atrium-earlier {
  position: relative;
  margin: 30px 0;
  border-bottom: 3px solid #eee;
  border-top: 3px solid #eee;
  padding: 15px 0 30px;
}
.atrium-earlier-header {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -ms-align-items: center;
  align-items: center;
  justify-content: space-between;
  margin: 0 0 10px;
}
.atrium-earlier-header h2 {
  margin: 0;
}
.atrium-earlier-slider {
  position: relative;
  padding: 0 30px;
}
.atrium-earlier-item {
  text-align: center;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  -ms-align-items: center;
  align-items: center;
  margin: 0 auto;
  width: 100%;
  max-width: 240px;
  min-height: 100%;
  padding: 10px;
  border: 1px solid #eee;
  transition: .2s ease-in-out;
  border-radius: 3px;
}
.atrium-earlier-item-image-wrapper {
  max-width: 100%;
  width: 200px;
  height: 200px;
  margin: 0 auto;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.atrium-earlier-item-image {
  max-width: 100%;
  width: 200px;
  max-height: 200px;
}
.atrium-earlier-item-category {
  font-size: 12px;
  line-height: 16px;
  margin-bottom: 5px;
  color: #aaa;
}
.atrium-earlier-slider-controls {
  position: absolute;
  left: 0;
  top: 50%;
  bottom: 50%;
  width: 100%;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: space-between;
}
.atrium-earlier-slider-control {
  font-size: 34px;
  cursor: pointer;
}

.productfull .left-side .btn {
  width: 100%;
  text-align: center;
  margin: 5px 0;
}
.productfull-image {
  display: block;
  max-width: 100%;
  margin: 0 auto 5px;
}
.productfull-price {
  text-align: center;
  font-size: 24px;
  line-height: 28px;
  color: #30b859;
  font-weight: bold;
  margin-bottom: 5px;
}
.productfull-price .fa-ruble-sign {
  font-size: 22px;
  font-weight: lighter;
}
.productfull .product-card-buttons {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  justify-content: center;
}
.productfull h1 {
  margin: 0px;
  font-size: 24px;
  line-height: 24px;
}
.productfull h2 {
  margin: 0;
  font-size: 18px;
  line-height: 24px;
}
.productfull p {
  margin: 0;
  font-size: 16px;
  line-height: 20px;
}
.productfull .average {
  margin-left: -5px;
}
.product-rating {
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -ms-align-items: center;
  align-items: center;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
  padding-bottom: 5px;
  border-bottom: 3px solid #eee;
  margin-bottom: 10px;
}
.product-rating-item {
  margin: 0 10px;
}
.product-rating-item a {
  font-size: 13px;
}
.product-description,
.product-extra {
  padding-bottom: 5px;
  border-bottom: 3px solid #eee;
  margin-bottom: 10px;
}
.product-extra-table {
  border-spacing: collapse;
  width: 100%;
}
.product-extra-table tr:nth-child(even) {
  background: #eee;
}
.extra_field-label,
.extra_field-value {
  font-size: 14px;
  line-height: 18px;
  padding: 5px;
  width: 50%;
}
.extra_field-label {
  text-transform: uppercase;
  font-weight: bold;
}

#reviews h2 {
  margin: 15px 0 0;
}
.review-form {
  margin: 30px 0;
}
.review-item {
  padding: 5px 10px;
  border-bottom: 3px solid #eee;
}
.review-item .review-header {

}
.review-item .product-rating-item {
  padding: 0;
  margin: 0 -2px;
}
.review-item .review-body {
  margin: 10px 0 0;
  font-size: 16px;
  line-height: 20px;
}

.wishlish_buttons {
  margin: 30px 0
}
.wishlish_buttons .btn {
  width: 100%;
  text-align: center;
}

#footer img {
  max-width: 100%;
}
#footer ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
#footer ul li a {
  display: block;
  font-size: 14px;
  line-height: 14px;
  color: #666;
  padding: 5px 0 5px 10px;
  position: relative;
}
#footer ul li a:hover {
  color: #30b859;
}
#footer ul li a:before {
  content: '\f054';
  position: absolute;
  left: 0;
  font-family: "Font Awesome 5 Pro";
  font-weight: bolder;
  font-size: 10px;
  line-height: 14px;
}
#footer .copyright_company {
  text-align: left;
  font-size: 14px;
}
#footer .copyright_created_by {
  text-align: right;
  font-size: 14px;
}

.orders-list-item {
  padding: 10px 5px;
  border-bottom: 1px solid #eee;
}
.orders-list-item-header {
  margin-bottom: 5px;
  font-size: 14px;
  font-weight: bold;
}
.orders-list-item-description {
  font-size: 14px;
}
.orders-list-item:nth-child(odd) {
  background: #f8f8ff;
}
.orders-list-item .btn {
  margin: 0;
  font-size: 14px;
  text-transform: capitalize;
}
.orders-list-item .col-4 {
  text-align: right;
}

.order-label {
  margin-bottom: 5px;
}
.order-label span {
  display: block;
}
.order-label-label {
  font-weight: bold;
}

.order-items {
  margin: 20px 0;
  text-align: center;
}
.order-items .name{
  text-align: left;
}
.order-items-header {
  border-bottom: 2px solid #ddd;
  border-top: 2px solid #ddd;
  font-weight: bold;
  padding: 5px 10px;
  margin: 10px 0 0;
  /*background: #eee;*/
}
.order-item {
  padding: 5px 10px;
  border-bottom: 1px solid #ddd;
  transition: .2s ease-in-out;
}
.order-item:hover {
  background: #f8f8ff;
}
.order-mobile-label {
  display: none;
}

.contact-page .row {
  margin: 10px -15px;
}
.contact-page-address,
.contact-page-phone,
.contact-page-email {
  font-size: 16px;
  color: #666;
  margin: 5px 0;
  padding-left: 25px;
  position: relative;
}
.contact-page-address:before,
.contact-page-phone:before,
.contact-page-email:before {
  content: '';
  position: absolute;
  left: 0;
  top: 5px;
  font-family: 'Font Awesome 5 Pro';
  font-size: 16px;
  line-height: 16px;
}
.contact-page-address:before {
  content: '\f3c5';
}
.contact-page-phone:before {
  content: '\f095';
}
.contact-page-email:before {
  content: '\f0e0';
}

.tshop-products-brand {
  border-bottom: 1px solid #ddd;
  margin-bottom: 10px;
}
.tshop-products-brand .tshop-products-brand-slide {
  display: block;
  text-transform: uppercase;
  font-weight: bold;
  background: #eee;
  padding: 5px 10px 5px 10px;
  cursor: pointer;
}
.tshop-products-brand .tshop-products-brand-slide i {
  margin-right: 5px;
}
.tshop-products-brand-products {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
}
.tshop-products .tshop-product {
  padding: 5px 0;
  border-bottom: 1px solid #ddd;
}
.tshop-products .tshop-product {
  text-align: center;
}
.tshop-products .tshop-product img {
  display: block;
  width: 100%;
  max-width: 400px;
  margin: 5px auto;
}

#tshop-modals {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  opacity: 0;
  visibility: hidden;
  transition: .2s ease-in-out;
  background: rgba(0,0,0,.3);
  z-index: 999;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -ms-align-items: center;
  align-items: center;
  justify-content: center;
}
#tshop-modals.active {
  opacity: 1;
  visibility: visible;
}
.tshop-modal {
  display: none;
}
.tshop-modal.active {
  display: block;
  background: #fff;
  padding: 15px;
  border: 1px solid #eee;
  -webkit-box-shadow: 0 0 10px rgba(0,0,0,.2);
  box-shadow: 0 0 10px rgba(0,0,0,.2);
  border-radius: 3px;
  width: 100%;
  max-width: 600px;
}
.tshop-modal-close {
  cursor: pointer;
}
.tshop-modal-heder {
  margin-bottom: 10px;
  font-size: 14px;
  font-weight: bold;
}
.tshop-modal-image img {
  max-width: 100%;
}
.tshop-modal-info p {
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 20px;
}
.tshop-modal-info ul {
  padding: 0;
  margin: 10px 0;
  list-style: none;
  font-size: 16px;
  line-height: 20px;
}
#tshop-order-form .input-label {
  margin-bottom: 5px;
}
#tshop-order-form .btn {
  margin: 0;
}

.atrium-selection {
  position: relative;
  margin-bottom: 15px;
}
.atrium-selection-headers {
  list-style: none;
  margin: 0;
  padding: 0;
}
.atrium-selection-header {
  display: inline-block;
  padding: 15px 20px 12px;
  font-size: 16px;
  line-height: 16px;
  background: #eee;
  cursor: pointer;
}
.atrium-selection-header.active {
  background: #ffbb3c;
}
.atrium-selection-header img {
  width: 100%;
  max-width: 36px;
  max-height: 36px;
  margin-right: 10px;
}
.atrium-selection-body {
  display: none;
}
.atrium-selection-body.active {
  background: #eee;
  padding: 10px 0;
  border-top: 3px solid #ffbb3c;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
  -ms-align-items: center;
  align-items: center;
  justify-content: flex-start;
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
}
.select-label {
  display: block;
  width: 100%;
  max-width: 150px;
  margin: 0 15px;
  margin-bottom: 10px;
}
.select-label span {
  display: block;
  margin-bottom: 5px;
  width: 100%;
}
.select-label select {
  width: 100%;
}
.atrium-selection-body-buttons {
  width: 100%;
  padding: 0 15px;
}

/* Анимация */
@keyframes bounceIn {
  from, 20%, 40%, 60%, 80%, to {
    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
  }

  0% {
    opacity: 0;
    transform: scale3d(.3, .3, .3);
  }

  20% {
    transform: scale3d(1.1, 1.1, 1.1);

  }

  40% {
    transform: scale3d(.9, .9, .9);
  }

  60% {
    opacity: 1;
    transform: scale3d(1.03, 1.03, 1.03);
  }

  80% {
    transform: scale3d(.97, .97, .97);
  }

  to {
    opacity: 1;
    transform: scale3d(1, 1, 1);
  }
}

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

.no_products_filter {
  text-align: center;
  margin: 50px;
}

.atrium-tires-filter,
.atrium-discs-filter {
  padding-bottom: 7px;
  border-bottom: 1px solid #ddd;
  margin-bottom: 15px;
}
.atrium-tires-filter .chzn-container.chzn-container-single,
.atrium-discs-filter .chzn-container.chzn-container-single {
  width: initial !important;
}
.atrium-tires-filter__header h4,
.atrium-discs-filter__header h4 {
  font-size: 18px;
  line-height: 18px;
  padding: 0;
  padding-bottom: 7px;
  border-bottom: 1px solid #ddd;
  margin-top: 10px;
  margin-bottom: 7px;
  font-weight: normal;
}
.atrium-tires-filter h5,
.atrium-discs-filter h5 {
  margin: 10px 0 5px;
  padding: 0;
  font-size: 14px;
  line-height: 14px;
  font-weight: normal;
}
.atrium-tires-filter .filters-season {
  
}
.atrium-tires-filter .input-label,
.atrium-discs-filter .input-label,
.atrium-discs-filter__cell {
  width: initial;
  display: inline-block;
  margin: 0;
}
.atrium-tires-filter .input-label.radio input {
  display: none;
}
.atrium-tires-filter .input-label.radio span {
  font-size: 14px;
  display: -webkit-flex;
  display: -moz-flex;
  display: -ms-flex;
  display: -o-flex;
  display: flex;
  -ms-align-items: center;
  align-items: center;
  justify-content: flex-start;
  margin: 5px 10px 5px 0;
  cursor: pointer;
}
.atrium-tires-filter .input-label.radio span:before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  border-radius: 50px;
  border: 1px solid #ccc;
  margin-right: 5px;
  background: transparent;
  transition: .1s ease-in-out;
}
.atrium-tires-filter .input-label.radio input:checked + span:before {
  background: #30b859;
}
.atrium-tires-filter .input-label.radio.sum span:after,
.atrium-tires-filter .input-label.radio.win span:after,
.atrium-tires-filter .input-label.radio.sumwin span:after {
  content: '';
  display: inline-block;
  width: 14px;
  height: 14px;
  margin-left: 5px;
}
.atrium-tires-filter .input-label.radio.sum span:after {
  background: url(../img/summer-marker.png) no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
}
.atrium-tires-filter .input-label.radio.win span:after {
  background: url(../img/winter-marker.png) no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
}
.atrium-tires-filter .input-label.radio.sumwin span:after {
  background: url(../img/sumwin-marker.png) no-repeat;
  -webkit-background-size: cover;
  background-size: cover;
}
.atrium-akb-filter h5,
.atrium-oil-filter h5 {
  margin: 5px 0;
  font-size: 14px;
  font-weight: 400;
}
.atrium-akb-filter select,
.atrium-akb-filter .chzn-container,
.atrium-oil-filter select,
.atrium-oil-filter .chzn-container {
  width: 100%;
  margin-bottom: 10px;
}

.category_slider_filter {
  text-align: center;
}

.category_tag_button {
    width: 100px;
    z-index: 2;
    border: 0;
    background: #30b859;
    color: #fff;
    padding: 5px;
    font-weight: bold;
    box-shadow: 2px 2px 4px rgba(0,0,0,0.3);
    cursor: pointer;
    transition: .2s ease-in-out;
}

.category_tag {
    position: relative;
}

.category_tag_button .show_on_mobile {
    display: none;
}

.chzn-container {
    min-width: 90px;
}

.productfull .product-amount {
  font-weight: bold;
  text-transform: uppercase;
  padding: 10px 0;
}

.product-amount-not-available {
  color: #ffa500;
}

.product-amount-available {
  color: #30b859;
}

.category-header {
  margin-bottom: 20px;
}

#module_jshop_filters {
  margin-bottom: 30px;
}

.atrium-frame {
  width: 100%;
  max-width: 640px;
  margin: 2em auto;
}
.atrium-frame .header {
  font-size: 1.4em;
  margin-bottom: .5em;
  text-align: center;
}
.atrium-frame .frame {
  margin: .5em auto;
  text-align: center;
}
.atrium-frame .frame iframe {
  margin: 0 auto;
}


	/*new*/
	@media (max-width: 767px) {
		#footer {border-top:2px #f2f2f2 solid}
		#footer img {max-height:100px}
		.footer_menu, .copyright_wrapper, #footer > .custom, #footer > small {display:none}
		.categories-menu-list {display:none}
		.categories-menu-header {position:relative;display:block;padding: 8px 30px 8px 10px;cursor:pointer;}
        .categories-menu-header:after {
            content: '';
            position: absolute;
			top: 50%;
            -webkit-transform: translateY(-50%);
            -ms-transform: translateY(-50%);
            transform: translateY(-50%);
            right: 10px;
            display: block;
            width: 10px;
            height: 10px;
            background: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTEiIGhlaWdodD0iNyIgdmlld0JveD0iMCAwIDExIDciIGZpbGw9Im5vbmUiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+CjxwYXRoIGQ9Ik05LjIxMTIzIDAuNzIxNDE5TDUuNTAwMjQgNC40MzI0MUwxLjc4OTI0IDAuNzIxNDE5QzEuNDk0MDIgMC40MjYxOTMgMS4wMTcxMiAwLjQyNjE5MyAwLjcyMTg5IDAuNzIxNDE5QzAuNTc5NTk0IDAuODYzNzE1IDAuNSAxLjA1NjcgMC41IDEuMjU0MTVDMC41IDEuNDQxMzUgMC41NzA4MDQgMS42MzkxMiAwLjcyNDMyNiAxLjc4OTMyTDQuOTY2MjQgNi4wMzEyNEM1LjI1OTk3IDYuMzI4MjkgNS43Mzk3NyA2LjMyNzU4IDYuMDMyOTcgNi4wMzQzOEwxMC4yNzg2IDEuNzg4NzdDMTAuNTczOCAxLjQ5MzU1IDEwLjU3MzggMS4wMTY2NCAxMC4yNzg2IDAuNzIxNDE5QzkuOTgzMzYgMC40MjYxOTQgOS41MDY0NSAwLjQyNjE5NCA5LjIxMTIzIDAuNzIxNDE5WiIgZmlsbD0id2hpdGUiIHN0cm9rZT0id2hpdGUiLz4KPC9zdmc+Cg==) center/contain no-repeat;
            -webkit-transition: -webkit-transform .3s;
            transition: transform .3s;
            -o-transition: transform .3s;
            transition: transform .3s,-webkit-transform .3s;
		}
        .categories-menu-header.active:after {
            -webkit-transform: translateY(-50%) rotate(180deg);
            -ms-transform: translateY(-50%) rotate(180deg);
            transform: translateY(-50%) rotate(180deg);
		}
	}	
.footer-socials a {
  color: #30b859;
  text-decoration: none;
  font-size: 38px;
  line-height: 28px;
  margin: 0 2px;
}
.footer-socials a.instagram {
  font-size: 36px;
}
.footer-socials a.vk {
  font-size: 39px;
}
.downloads {
  width: 100%;
  max-width: 1200px;
  padding: 0 15px;
  margin: 3em auto;
  display: flex !important;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.downloads .item {
  flex: 0 0 150px;
  margin: 0 1em;
}
.downloads .item a {
  display: block; 
  margin-bottom: 1em;
}
.downloads .item img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position:  center;
}
@media screen and ( max-width: 400px ) {
  .downloads {
    flex-direction: column;
  }
  .downloads .item {
    margin: 1em 0;
  }
  .downloads .item img {
    height: auto;
    max-height: initial !important;
  }
}
.cookie-agreement {
  position: fixed;
  z-index: 999;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 8px 15px;
  background: #fff;
  font-size: 14px;
  line-height: 1em;
  text-align: center;
  color: var(--color-1);
  box-shadow: 0 0 4px rgba(0, 0, 0, .3);
}
.cookie-agreement a {
  color: var(--color-1);
  transition: var(--transition);
  display: inline-block;
  margin: 0 25px 0 5px;
}
.cookie-agreement a:hover {
  color: var(--color-4);
}
.cookie-agreement .btn {
  padding: 5px 10px;
  font-size: 14px;
  line-height: 1em;
  margin: 0;
}

@media screen and ( max-width: 767px ) {
  .cookie-agreement .pc {
    display: none
  }
  .cookie-agreement .mobile {
    display: initial !important
  }
}