/**
    CSS file for NationalWelding    
*/

/* General ************************************/

.no-gutter {
    margin-right: 0;
    margin-left: 0;
}

.no-gutter > [class*="col-"] {
    padding-right: 0;
    padding-left: 0;
}

.wrapper-header {
  padding-left: 0px;
  padding-right: 0px;
}

.free-shipping-badge-svg {
  position: absolute;
  top:0;
  left:0px;
  width:100px;
  height:100px;
}

/* Home ************************************/
.menu-link {
  font-weight: 700;
  font-family: 'Roboto Slab', serif;
  font-size:18px;
  color: white;
  margin-top: 7px;
  display: block;
  margin-left: 15px;
}

/* Side Nav ************************************/
/* based on: https://www.w3schools.com/howto/howto_js_sidenav.asp */

.sidenav {
    height: 100%; /* 100% Full-height */
    width: 0; /* 0 width - change this with JavaScript */
    position: fixed; /* Stay in place */
    z-index: 10; /* Stay on top */
    top: 0; /* Stay at the top */
    left: 0;
    background-color: white; /* Black*/
    overflow-x: hidden; /* Disable horizontal scroll */
    padding-top: 60px; /* Place content 60px from the top */
    transition: 0.5s; /* 0.5 second transition effect to slide in the sidenav */
  }
  
  /* The navigation menu links*/
  .sidenav a {
    /*padding: 3px;*/
    text-decoration: none;
    font-size: 13px;
    color: #111;
    display: block;
    transition: 0.3s;
  }
   
  .sidenav .nav > li > a {
    padding:5px 15px;
  }

  /* When you mouse over the navigation links, change their color   */
  .sidenav a:hover {
    color: #111;
  }

  /* Position and style the close button (top right corner) */
  .sidenav .closebtn {
    position: absolute;
    top: 0;
    right: 25px;
    font-size: 36px;
    margin-left: 50px;
  }
  
  #side-menu .side-drop.collapsed:after {
    content: "\f107";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    float: right;
    color: #000;
  }

  #side-menu .side-drop:after {
    content: "\f106";
    font-family: FontAwesome;
    font-style: normal;
    font-weight: normal;
    float: right;
    color: #000;
    width: 10px;
}

/* Caruosel Changes for outside controls */

#homepageCarousel {
  margin-left: 50px;
  margin-right: 50px;
}

.carousel-control {
  width: 50px;
  color:black;
}

.carousel-control.left {
  margin-left: -50px;
}

.carousel-control.right {
  margin-right: -50px;
}

  /* Style page content - use this if you want to push the page content to the right when you open the side navigation */
.main {
    transition: margin-left .5s;
    /*padding: 20px;*/
  }
  
  /* On smaller screens, where height is less than 450px, change the style of the sidenav (less padding and a smaller font size) */
  @media screen and (max-height: 450px) {
    .sidenav {padding-top: 15px;}
    .sidenav a {font-size: 18px;}
  }