/******* Do not edit this file *******
Simple Custom CSS and JS - by Silkypress.com
Saved: Oct 21 2020 | 18:52:17 */
/*************** RESPONSIVE BREAKPOINTS ***************/

@mixin for-phone-only {
  @media (max-width: 549px) {
      @content;
  }
}
@mixin for-tablet-portrait-up {
  @media (min-width: 550px) {
      @content;
  }
}
@mixin for-tablet-landscape-up {
  @media (min-width: 849px) {
      @content;
  }
}
@mixin for-desktop-up {
  @media (min-width: 1220px) {
      @content;
  }
}
@mixin for-big-desktop-up {
  @media (min-width: 1800px) {
      @content;
  }
}

/*************** HEADER TOP AND MAIN ***************/

.header-top {
 padding-left:15px!important;
 padding-right:15px!important
}
@media (min-width:1220px) {
 .header-top {
  padding-left:65px!important;
  padding-right:65px!important
 }
}
.header .header-inner,
.footer .row {
 padding-left:15px!important;
 padding-right:15px!important
}
@media (min-width:1220px) {
 .header .header-inner,
 .footer .row {
  padding-left:80px!important;
  padding-right:80px!important
 }
}
