/*
    Author: CommerceGurus
    Author URI: http://www.commercegurus.com
    License: GNU General Public License version 3.0
    License URI: http://www.gnu.org/licenses/gpl-3.0.html

----------------------------------------------------------------
>>> TABLE OF CONTENTS:
----------------------------------------------------------------
 1.0 - Resets
 2.0 - Header
 3.0 - Logo
 4.0 - Top Bar
 5.0 - Search
 6.0 - Header Widgets
 7.0 - Mobile Menu
 8.0 - Page Heading
 9.0 - Breadcrumbs and Sharing
10.0 - Sidebar and Widgets
11.0 - Blog
12.0 - Comments
13.0 - Forms
14.0 - Styleguide
15.0 - WooCommerce
16.0 - Owl Carousel
17.0 - LayerSlider
18.0 - Footer

*/

/*-------------------------------------------------------------------------*/
/*  1.0  Resets
/*-------------------------------------------------------------------------*/


/* -- Page Loader */

.no-js #loader { 
  display: none;  
}

.js #loader { 
  display: block; 
  position: absolute; 
  left: 100px; 
  top: 0; 
}

.cg-loader {
  position: fixed;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: 9999;
  background: #fff;
}

.spinner {
  width: 40px;
  height: 40px;
  position: relative;
  margin: 0px auto;
  top: 50%;
  margin-top: -20px;
}

.double-bounce1, .double-bounce2 {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  background-color: #3d3f94;
  opacity: 0.6;
  position: absolute;
  top: 0;
  left: 0;
  -webkit-animation: sk-bounce 2.0s infinite ease-in-out;
  animation: sk-bounce 2.0s infinite ease-in-out;
}

.double-bounce2 {
  -webkit-animation-delay: -1.0s;
  animation-delay: -1.0s;
}

@-webkit-keyframes sk-bounce {
  0%, 100% { -webkit-transform: scale(0.0) }
  50% { -webkit-transform: scale(1.0) }
}

@keyframes sk-bounce {
  0%, 100% { 
    transform: scale(0.0);
    -webkit-transform: scale(0.0);
  } 50% { 
    transform: scale(1.0);
    -webkit-transform: scale(1.0);
  }
}
