style.scss 3.83 KB
@import "reset";
@import "mixin";

$bodySizeText:13px;



$main-color: #333;

$green-color:#65ba04;
$green-color-hover:#7BD304;
$green-color-active: #4c9804;


$blue-color:#02a8d2;
$blue-color-hover: #02b2dc;
$blue-color-active: #029cc7;

$disabledColor: #02ccf9;


$link-color:$blue-color;
$link-active: $blue-color-active;




@mixin Shadow {
  //box-shadow: 0 0 12px 0 rgba(187, 187, 187, 0.35);
  box-shadow: 0px 0px 12px 0px rgba(149, 149, 149, 0.75);
}

@mixin Shadow-big {
  box-shadow: 0px 4px 57px 0px rgba(225, 225, 225, 1);
}

//@font-face {
//  font-family: 'icomoon';
//  src:  url('../fonts/icomoon.eot?cekg2c');
//  src:  url('../fonts/icomoon.eot?cekg2c#iefix') format('embedded-opentype'),
//  url('../fonts/icomoon.ttf?cekg2c') format('truetype'),
//  url('../fonts/icomoon.woff?cekg2c') format('woff'),
//  url('../fonts/icomoon.svg?cekg2c#icomoon') format('svg');
//  font-weight: normal;
//  font-style: normal;
//}
//
//@mixin svgIcon {
//  font-family: 'icomoon' !important;
//  speak: none;
//  font-style: normal;
//  font-weight: normal;
//  font-variant: normal;
//  text-transform: none;
//  line-height: 1;
//  -webkit-font-smoothing: antialiased;
//  -moz-osx-font-smoothing: grayscale;
//}

html {

}
body {


  background: #fff;
  font-family: Ubuntu;
  font-size: $bodySizeText;
  color: $main-color;
  line-height: 18px;
  &.hidden_scroll-y {
    overflow-y: hidden;
  }
  &.body-fixed {

    position: fixed;
    width: 100%;
    height: 100%;
    @include Transition(0.3);
  }
  //&.show-block-filters {
  //  transform: translate3d(290px,0,0);
  //  @include Transition(0.5);
  //  .sidebar-filters {
  //    opacity: 1;
  //    z-index: 2;
  //  }
  //}

  &.show-block-mobile {
    transform: translate3d(-290px,0,0);
    @include Transition(0.5);
    .mobile-menu-hidden {
      z-index: 3;
      opacity: 1;
    }
  }
}


a {
  color: $link-color;
  outline: none !important;
  &:hover {
    color: $link-color;
    text-decoration: underline;
  }
  &:active {
    color: $link-active;
  }
}

.style {
  width: 100%;
  float: left;
}
[class*="section-box"], section, footer, header {
  @extend .style;
  position:relative;
}
section, header, nav, article, aside, footer, address { display: block; }
.container {
  //min-width:330px;
  min-width: 303px;
}

@import "buttons";
@import "header";
@import "index";
@import "footer";
@import "menu-mob";
@import "breadcrumbs";
@import "catalog";
@import "pagination";
@import "card";
@import "editor";
@import "forms";
@import "inputs";
@import "support";
@import "add";
@import "radio-checks";
@import "account";
@import "blog";




.modal-link {
  cursor: pointer;
}

.padding-r-none {
  padding-right: 0 !important;
}
.padding-l-none {
  padding-left: 0 !important;
}


.empty {
  color: #707376;
  font-size: 16px;
  padding: 0 15px;
}

.empty-15 {
  .empty {
    padding-left: 15px;
  }
}

.section-box-content {
  overflow: hidden;
}

sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
  top: -0.5em;
}
sub {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
  top: 0.25em;
}
























@media (max-width: 1200px) {

}

@media (max-width: 991px) {

}


@media (max-width: 850px) {

}

@media (max-width: 768px) {

}
@media (max-width: 767px) {
  .container {
    padding-left: 10px !important;
    padding-right: 10px !important;
  }
  .row {
    margin-left: -10px !important;
    margin-right: -10px !important;
  }
  [class*="col-xs-"], [class*="col-sm-"], [class*="col-md-"], [class*="col-lg-"] {
    padding-left: 10px !important;
    padding-right: 10px !important;
    &.items_wr_full {
      padding-left: 0 !important;
      padding-right: 0 !important;
    }
  }

  body {
    &.hidden_scroll-y {}
    &.body-fixed {  }
    //&.show-block-filters {
    //  transform: translate3d(-400px,0,0);
    //}
  }
}






@import "grid-b";