/*NOTE: This file is intended for programmers. Aspro technical support is not advised to work with him.*/

/* Examples (uncomment to use):*/

/* Expand site width */
/* body .wrapper { max-width: 1400px !important;  } */

/* Set site background image */
/* body {  background: url(image_source) top no-repeat; }

/* Hide compare button */
/* a.compare_item { display: none !important;  }*/

.right_block .b-catalog__sale-text{
	text-align: right;
    padding-bottom: 10px;
    font-size: 12px;
    color: #FF0063;
    text-transform: lowercase;	
    font-weight: bold;
}
.right_block .b-catalog__sale-text._detail{
	padding: 10px 10px 0 0;
	text-align: left;
}
.menu_top_block.catalog_block .dropdown>li.full._sale>a:after,
.menu_top_block.catalog_block .dropdown>li.full._sale.current>a:after{
	color: #FFF;
}
body .menu_top_block.catalog_block .dropdown >li.full._sale>a{
	background-color: #FF0063;
    color: #FFF;
    font-size: 18px;
}
.menu_top_block.catalog_block .dropdown>li.full._sale:hover>a{
	background: #ffdcdc;
	color: #FF0063 !important;
}
.menu_top_block.catalog_block .dropdown>li.full._sale:hover>a:before{
	background: #FF0063;
}
.menu_top_block.catalog_block .dropdown>li.full._sale:hover>a:after,
.menu_top_block.catalog_block .dropdown>li.full._sale.current:hover>a:after{
	color: #FF0063 !important;
}
.btn-shops{}
.btn-shops .radio-wrap{
    float: left;
    width: 20px;
    margin-top: 2px;  
}
.btn-shops .label-wrap{
    margin-left: 20px;   
}
.btn-shops .label-wrap .name.error{
    color: red;
}
.btn-shops label,
.btn-shops input{
    cursor: pointer;
}
.btn-shops.btn-select{
      display: block;
    position: relative;
    padding: 5px 8px;
    border: 2px solid #222;
    font-size: 14px;
    line-height: 1.5;
    margin-bottom: 10px;
}

.btn-noselect-shops {
   /* margin-top: 20px;*/
}

.btn-shops.btn-select.error{
    border-color: red;
    color: red;
}
.btn-shops.btn-select:before,
.btn-shops.btn-select:after{
    display: block;
    position: absolute;
    content: '';
    right: 15px;
    border: 6px solid transparent;
    width: 0px;
    height: 0px;
}
.btn-shops.btn-select:before{
    top: 50%;
    margin-top: -14px;    
    border-bottom: 6px solid #888888;
}
.btn-shops.btn-select.error:before{
    border-bottom: 6px solid red;
}
.btn-shops.btn-select:after{
    bottom: 50%;
    margin-bottom: -14px;   
    border-top: 6px solid #888888;
}
.btn-shops.btn-select.error:after{
    border-top: 6px solid red;
}
.choice-shop{
    background-color: #ffffff;
    border-radius: 10px 10px 6px 6px;
}
.choice-shop .modal-header{
    position: relative;
    padding: 20px 15px 20px 15px;
    font-size: 24px;  
    background-color: #888888;
    color: #ffffff;
    border-radius: 6px 6px 0 0;
}
.choice-shop .modal-header-after{
    text-align: center;
    font-size: 18px;
    line-height: 1.5;
    padding: 15px 0 0 0;
}
.choice-shop .modal-footer{
    text-align: center;   
    padding-bottom: 15px;
}
.choice-shop .fancybox-skin{
    border-radius: 0;
    -webkit-box-shadow: none;
    -moz-box-shadow: none;
    box-shadow: none;
    background-color: transparent;
    font-size: 16px;
    line-height: 2;
}
.choice-shop .fancybox-skin .fancybox-inner{
    border: 1px solid #000000;  
   
}
.shops_b{
    overflow-y: auto;
    height: 200px;
    padding: 8px;
}
.choice-shop  .modal-close{
    position: absolute;
    top: 0;
    right: 15px;
    color: #ffffff;
    font-size: 38px;
    line-height: 53px;
}
.choice-shop button{
    border: 1px solid #000000;
    border-radius: 4px;
    background-color: #ffffff;
    font-size: 14px;
    line-height: 1.5;
    padding: 10px 25px;
    cursor: pointer;
}


#cube-loader {
  align-items: center;
  display: flex;
  height: 100%;
  width: 100%;
  position: fixed;
  & .caption {
    margin: 0 auto;
  }
  .cube-loader {
    width: 73px;
    height: 73px;
    margin: 0 auto;
    margin-top: 49px;
    position: relative;
    transform: rotateZ(45deg);

    & .cube {
      position: relative;
      transform: rotateZ(45deg);
      width: 50%;
      height: 50%;
      float: left;
      transform: scale(1.1);
    }
    & .cube:before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(52, 73, 94, 1.0);
      animation: cube-loader 2.76s infinite linear both;
      transform-origin: 100% 100%;
    }
    & .loader-2 {
      transform: scale(1.1) rotateZ(90deg);
    }
    & .loader-3 {
      transform: scale(1.1) rotateZ(180deg);
    }
    & .loader-4 {
      transform: scale(1.1) rotateZ(270deg);
    }
    & .loader-2:before {
      animation-delay: 0.35s;
    }
    & .loader-3:before {
      animation-delay: 0.69s;
    }
    & .loader-4:before {
      animation-delay: 1.04s;
    }
  }
}

@keyframes cube-loader {
  0%, 10% {
    transform: perspective(136px) rotateX(-180deg);
    opacity: 0;
  }
  25%, 75% {
    transform: perspective(136px) rotateX(0deg);
    opacity: 1;
  }
  90%, 100% {
    transform: perspective(136px) rotateY(180deg);
    opacity: 0;
  }
}