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

$bodySizeText:14px;

$link-color:#0099d6;
$link-active: #0081b4;

$main-color: #3a3a3e;

$blue-color:#0098d5;
$blue-color-hover: #0081b5;
$blue-color-active: #00719f;

$turquoise-color: #69e6cc;
$turquoise-color-hover: #5dcbb4;
$turquoise-color-active: #4ba491;

$gray-color: #f6f6f6;
$border-gray: #e5e5e5;

$disabledColor:red;
$disabledColor:red;

$yellow-color: #ffd71c;

@mixin gradientBtn {
  background: $turquoise-color;
  background: -moz-linear-gradient(top, $turquoise-color 0%, $blue-color 100%);
  background: -webkit-linear-gradient(top, $turquoise-color 0%,$blue-color 100%);
  background: linear-gradient(to bottom, $turquoise-color 0%,$blue-color 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#69e6cc', endColorstr='#0098d5',GradientType=0 );
}

@mixin gradientBtnHover {
  background: $blue-color;
  background: -moz-linear-gradient(top, $blue-color 0%, $turquoise-color 100%);
  background: -webkit-linear-gradient(top, $blue-color 0%,$turquoise-color 100%);
  background: linear-gradient(to bottom, $blue-color 0%,$turquoise-color 100%);
  filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#0098d5', endColorstr='#69e6cc',GradientType=0 );
}

@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 Shadow35 {
  box-shadow: 0px 0px 24px 0px rgba(151, 151, 151, 0.35);
}
@mixin Shadow75 {
  box-shadow: 0px 0px 24px 0px rgba(151, 151, 151, 0.75);
}

@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: 17px;

  &.hidden_scroll-y {
    overflow-y: hidden;
  }
  &.body-fixed {

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

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


a {
  color: $link-color;
  outline: none !important;
  &:hover {
    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;
}

.title-pages {
  font-size: 28px;
  text-transform: uppercase;
  font-weight: 700;
  line-height: 26px;
}
@media (max-width: 767px) {
  .title-pages {
    font-size: 20px;
    text-align: center;
    line-height: 24px;
  }
}


@import "home-page";

@import "slider-all";

@import "header-style";
@import "footer-style";
@import "footer-btns";
@import "inputs";
@import "forms";
@import "buttons";
@import "menu-mob";
@import "radio-check";
@import "breadcrumb";
@import "price";
@import "service";
@import "editor";
@import "package";
@import "answer-comment-pahe";
@import "pagination";
@import "blog";
@import "contact";

.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;
}

























@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);
    }
  }
}

@media (max-width: 450px) {
  body {
    &.hidden_scroll-y {}
    &.body-fixed {  }
    &.show-block-filters {
      transform: translate3d(-310px,0,0);
    }
    &.show-block-mobile {
      transform: translate3d(-310px,0,0);
    }

  }
}




@import "grid-b";