@font-face {
  font-family: Galleon; 
  font-weight: normal;
  font-style: normal;
  src: url("AGGalleon Roman.ttf"); 
}
@font-face {
  font-family: Galleon; 
  font-weight: normal;
  font-style: normal;
  src: url("AGGalleon Roman.eot") 
}
.section--main_menu span.img {
  height: initial !important;
}
.site_sections .img {
  margin-bottom: 20px;
}
.delivery-container {
  position: relative;
  margin-top: 1.5rem;
  padding: 10px;
  background: #c19698;
  -webkit-border-radius: 5px;
  border-radius: 5px;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
  z-index: 50;
  cursor: pointer;
}
.delivery-container:hover {
  -webkit-border-radius: 0 0 5px 5px;
  border-radius: 0 0 5px 5px;
}
.delivery-container::before {
  position: absolute;
  width: 100%;
  background: #fff;
  font-weight: bolder;
  top: 0;
  left: 0;
  right: 0;
  content: "При оформлении заказа по предоплате.     Не действует для отдалённых регионов и альбомов для монет. Подробнее в разделе Доставка и оплата ";
  z-index: 40;
  border: 3px solid #d1d1d1;
  border-bottom: none;
  -webkit-border-radius: 5px 5px 0 0;
  border-radius: 5px 5px 0 0;
  padding: 10px;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
  opacity: 0;
  -webkit-transition: 0.2s;
  -o-transition: 0.2s;
  transition: 0.2s;
}
.delivery-container:hover::before {
  opacity: 1;
  -webkit-transform: translateY(-100%);
  -ms-transform: translateY(-100%);
  -o-transform: translateY(-100%);
  transform: translateY(-100%);
}
.delivery-message {
  width: 100%;
  text-align: center;
  font-weight: bold;
}



.youtube-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100000;
  display: none;
  background-color: rgba(255, 255, 255, 0.9);
  cursor: pointer;
}

.youtube-overlay--on {
  display: block;
}

.youtube {
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transform-origin: 50% 50%;
  -ms-transform-origin: 50% 50%;
  -o-transform-origin: 50% 50%;
  transform-origin: 50% 50%;
  z-index: 100500;
  max-width: 560px;
  padding: 10px;
  -webkit-box-sizing: content-box;
  -moz-box-sizing: content-box;
  box-sizing: content-box;
  text-align: center;
  background-color: #fff;
  border: 1px solid #c7c7c7;
  -webkit-box-shadow: 0 5px 10px 0 rgba(0,0,0,.25);
  box-shadow: 0 5px 10px 0 rgba(0,0,0,.25);
  -webkit-border-radius: 7px;
  border-radius: 7px;
  cursor: default;
}

.page + .unisender {
  text-align: center;
  padding-bottom: 3rem;
  float: right;
  margin-right: 4%;
  outline: 3px solid #832F32;
  outline-style: double;
}

@media (max-width:640px) {
  .page + .unisender {
    width: 60%;
    margin-right: 20%;
  }
}
.m-modal-button--checkout {
  background-color: #832f32;
  border: 2px solid #832f32;
}

.m-modal-button--checkout:hover,
.m-modal-button--checkout:focus,
.m-modal-button--checkout:active {
  background-color: #fff;
  color: #832f32;
}
.marquee {
  width: 100%;
}
/*-----------------Боковой фиксированный блок -----------*/
@charset "UTF-8";

/**
* Переключаемая боковая панель навигации
* выдвигающаяся справа
*/

.nav {
  width: 55px;
  min-width: 55px;
  height: 110px;
  position: fixed;
  top: 25%;
  bottom: 0;
  margin: 0;
  right: -60px;
  padding: 10px 0 10px 20px;
  -webkit-transition: right 0.3s;
  -o-transition: right 0.3s;
  transition: right 0.3s;
  /*background: #fff;*/
  -webkit-box-shadow:inset 0px 0 5px 1px rgba(131, 47, 50, 0.4);
  box-shadow:inset 0px 0 5px 1px rgba(131, 47, 50, 0.4);
  -webkit-border-radius: 5px;
  border-radius: 5px;
  z-index: 10001;
}

@media (max-width:640px) {
  .nav {
    position: absolute;
  }
}

/**
* Кнопка переключения панели
* тег <label>
*/

.nav-toggle {
  position: absolute;
  right: 60px;
  top: 40%;
  background: inherit;
  color: #832f32;
  cursor: pointer;
  line-height: 1;
  z-index: 2001;
  -webkit-transition: color .25s ease-in-out;
  -o-transition: color .25s ease-in-out;
  transition: color .25s ease-in-out;
  font: normal normal normal 14px/1 FontAwesome;
}

.nav-toggle:after {
  content: '\f104';
  text-decoration: none;
  font-size: 1.6em;
}

.nav-toggle:hover {

}

[id='nav-toggle'] {
  position: absolute;
  display: none;
}



[id='nav-toggle']:checked ~ .nav > .nav-toggle {
  left: auto;
  right: 15px;
  top: 40%;
}


/**
* Когда флажок установлен, открывается панель
* используем псевдокласс:checked
*/

[id='nav-toggle']:checked ~ .nav {
  right: 0;
  overflow: hidden;
  -webkit-box-shadow: none;
  box-shadow: none;
}


[id='nav-toggle']:checked ~ main > article {
  -webkit-transform: translateX(-320px);
  -ms-transform: translateX(-320px);
  -o-transform: translateX(-320px);
  transform: translateX(-320px);
}

[id='nav-toggle']:checked ~ .nav > .nav-toggle:after {
  content: '\f105';
}

.nav > a {
  background: #832f32;
  position: relative;
  width: 3rem;
  height: 3rem;
  line-height: 1rem;
  font-size: 2rem;
  -webkit-box-shadow: 0px 2px 6px 0px #333333;
  box-shadow: 0px 2px 6px 0px #333333;
  padding: 10px 0.5rem;
  z-index: 1000;
  -webkit-border-radius: 50%;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  border-width: 2px;
  border-style: solid;
  border-color: #832f32;
  margin-bottom: 0.8rem;
}
.nav .button.wishlist{
  padding-top: 13px;
}
.nav .wishlist_count{
  position: absolute;
  top: 5px;
  right: 0px;
  font-size: 14px;
}
.nav   i{
  color: #FFFFFF;
  font-size: 1.375rem;
}
.nav > .cart_widget-icon {
  display: inline-block;
}
.nav > .cart_widget-link .cart_widget-items_count{
  position: absolute;
  top: 5px;
  right: -20px; 
  font-size: 14px;
  color: #fff;
}
body {
  -webkit-animation: bugfix infinite 1s;
}

@-webkit-keyframes bugfix {
  to {
    padding: 0;
  }
}

/* бегущая строка */
@media (max-width:500px) {
  .str_wrap { 
    font-size: 11px !important;
    text-align: center !important;
    line-height: 22px !important;
    overflow: visible!important;
    white-space: normal!important;
  }
  .marquee { display: none !important; }
  .marquee_mob { display: block !important; }
  .section--top_panel {
    position: fixed;
    z-index: 1000;
  }
  .grid-inline.grid-inline-middle {    margin-top: 37px;}
}
.marquee_mob { display: none; }
.co-input-wrapper{
  border-bottom: 1px solid #eee;
}

iframe[src*="youtube.com"] { max-width: 100%; }

.js-filter-wrapper .top_menu { display: none; }


#order_use_bonus_points:checked ~ .bonus_points {
  display: block !important;
}

#modal_buy_credit {
  display: none !important;
}
.sohrannost {
  position: absolute;
  z-index: 99;
  background: #ccc;
  font-size: 12px;
  padding: 5px 10px;
  line-height: 1;
  color: #fff;
}
@media only screen and (min-width : 655px) {
  .cust-product-buy {
    width: 137.047px;
  }
  .cust-product-buy-foot {
    height: 30px;

    display: flex;
    align-items: center;
    margin-left: 0px !important;
    text-transform: uppercase;
    justify-content: center;
    padding: 3px 11px 3px 11px !important;
    letter-spacing: 0.1rem;
  }
}
.cust-blog {
  display: inline-block;
  border: 1px solid black;
  padding: 5px;
  margin-top: 5px;
}
.product .product-info-bl .item a {
  min-height: 60px;
  height: initial;
}
.product .product-info-bl .item {
  padding: 0 5px;
}
@media (max-width: 480px) {
  .adaptive .mc-grid-3 {
    width: 20%;
  }
  .product .product-info-bl .item a  {
    font-size: 11px !important;
  }
}

.cart_widget--header .cart_widget-items_count{
  background-color: #9200ff;
}

@media (max-width: 1100px) {
  table {
    max-width: 100% !important;
    width: auto !important;
  }
}

.play {
  position: absolute;
  z-index: 99;
  bottom: 0;
}
.prod_payment ul {
  display: inline-block;
  margin: 0;
  list-style: none;
  padding: 0;
  position: relative;
  vertical-align: middle;
  max-width: 400px;
}
.widprod_delivery {
  display: flex;
  float: right;
}



.imgs-hover-a {
  position: relative; 
  z-index; 5;
}
.imgs-hover-box {
  position: absolute; 
  z-index: 6; 
  top: 0; bottom: 0; left: 0; right: 0;
  display: flex; 
  justify-content: space-between;
}
.imgs-hover-box-item {
  flex-grow: 1;
}
.imgs-hover-dots {
  position: absolute; 
  z-index: 7; 
  bottom: 10px; left: 0; right: 0;
  display: flex; 
  justify-content: center;
}
.imgs-hover-dot {
  width: 7px; 
  height: 7px; 
  border-radius: 50%; 
  background-color: #832F32; 
  margin: 0 2px 0 2px;
}
.filter-submit:hover,
.filter-clear_all:hover {
  background: #8b00ff !important;
  border-color: #8b00ff !important;
}
.product-buy {
  margin: 0 0;
}
.favorite-user_style {
  font-size: 18px;background-color: #ffffff;color: #832f32;border-color: #832f32;padding: 0.5rem 1rem;box-sizing: border-box;border-width: 2px;border-style: solid;
}

@media screen and (min-width: 641px) {
  .collection_filter__flex_wrapper {
    display: flex;
    flex-flow: row wrap;
    justify-content: space-between;
  }

  .search_widget {
    margin-top: 0 !important;
  }
}
.quantity.quantity--side {
  display: inine-block;
}
.text-center {
  text-align: center;
}
.align-center {
  display: flex;
  align-items: center;
}

.in-preview-box-buy-btn {

}
.in-preview-box-quantity {

}
.box-hide {
  display: none !important;
}

@media screen and (max-width: 600px){
  .in-preview-box-quantity .quantity--side {
    left: 0 !important; 
    bottom; 0 !important; 
    top: 0 !important;
  }
}

.quantity.quantity--side {
  display: flex;
  width: 80px;
  height: 30px;
}
.quantity--side .quantity-button {
  position: relative;
  height: 35px;
  width: 44px;
  bottom: 1px;
}

@media screen and (max-width: 600px)
  .quantity {
    /* bottom: 43px; */
    /* left: 50px; */
}

.quantity--side .quantity-input {
  height: 34px;
}

@media (max-width: 768px)
  .quantity--side .quantity-button {
    position: relative;
    height: 35px;
    width: 45px;
    bottom: 1px;
}

.product .row_flex {
  align-items: flex-start;
  display: flex;
  flex-wrap: wrap;
  width: 90%;       
  flex-direction: row;

}
.product-quantity {
  margin: 0;
}
.product .quantity--side {
  display:flex; 
}
.product .quantity--side .quantity-button {
  height:39px; 
}
.product .quantity--side .quantity-input {
  height:38px; 
}
@media (min-width:1024px) {
  .product .product-quick_checkout {
    flex-basis: 237px;
  }
  .product .user_sale_style {
    text-align: center;
    flex-basis: 130px;
    margin-left: 10px;
  } 
  .product .cust-product-buy {
    width: 139.047px;
    margin-right: 2px;
  }
  .product .cust-product-buy-foot {
    height: 40px;
  }
}
@media (max-width:980px) {
  .product .row_flex {
    width:100%; 
    justify-content: flex-end;
  }
  .product .product-buy {    
    flex: 50vw;
  }  
  .product .adaptive .mc-padded-zero {
    flex: 30px;
  }
  .product .favorite-trigger .favorite-add {
    margin-top: 10px;
    width: 91vw;
    text-align:center;
  }
  .product .quantity {
    bottom: auto;
    left: auto;
  }

  .product .block_sales_user {
    height: 40px;
    width: 118px;
    display: flex;
    justify-content: space-around;
    align-items: center;
    padding:0;
  }
  .product .quantity--side .quantity-button {
    left:1px;
  }

}

div[class="main-menu lg-grid-5 sm-grid-12"] div[class="lg-grid-2 xs-grid-3 dropdown"] {
  width: 25%;
}

.prod_payment .title {
	margin: 0 15px 10px 0;
}
@media (max-width: 980px) {
.product-buy {
    margin: 11px 0 0 0;
}
}
.filter .js-filter_section-toggler {
      width: max-content;
}
#filter_section-48991022 {
  margin-left: 15px;
}
.filter_section-values {
  width: 10rem;
}

.option_selector.option_selector--tip {
  display: none !important;
}
