@import url(https://fonts.googleapis.com/css?family=Montserrat:300,400,600);
@import url(https://fonts.googleapis.com/css?family=Roboto:300,400,600);
@import url(https://fonts.googleapis.com/css?family=Nunito+Sans&display=swap);

@font-face {
  font-family: 'Segoe UI Black';
  src: url('seguibl.ttf') format('truetype');

}
body{
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen", "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif !important;
}

#products{
  display: grid;
  grid-template-columns: 1fr;
}

.product{
  max-width: 276px;
  margin: 0 auto;
}

.product{
  transition: all .2s ease-in-out;
}

.logo{
  height: 15px;
}

@media screen and (min-width: 500px){
  #products{
    grid-template-columns: 1fr 1fr;
    grid-gap: 1em;
  }
}
@media screen and (min-width: 800px){
  #products{
    grid-template-columns: 1fr 1fr 1fr;
    grid-gap: 1em;
  }
}

#parent-categories a {
    text-transform: uppercase;
}

#top-orange {
  height: 8px;
  background-color: #eb6433;
  padding-left: 10px;
  padding-right: 10px;
}

a.nav-item {
  /*color: white;*/
  font-weight: 900;
}

/*
 * Made by Erik Terwan
 * 24th of November 2015
 * MIT License
 *
 *
 * If you are thinking of using this in
 * production code, beware of the browser
 * prefixes.
 */

body {
  margin: 0;
  padding: 0;

  /* make it look decent enough */
  background: #232323;
  color: #cdcdcd;
  font-family: "Avenir Next", "Avenir", sans-serif;
}

a {
  text-decoration: none;
  color: #232323;

  transition: color 0.3s ease;
}

a:hover {
  color: tomato;
}

#menuToggle {
  display: block;
  position: absolute;
  top: 48px;
  left: 20px;

  z-index: 1;

  -webkit-user-select: none;
  user-select: none;
}

#menuToggle input {
  display: block;
  width: 40px;
  height: 32px;
  position: absolute;
  top: -7px;
  left: -5px;

  cursor: pointer;

  opacity: 0; /* hide this */
  z-index: 2; /* and place it over the hamburger */

  -webkit-touch-callout: none;
}

/*
 * Just a quick hamburger
 */
#menuToggle span {
  display: block;
  width: 33px;
  height: 4px;
  margin-bottom: 5px;
  position: relative;

  background: #cdcdcd;
  border-radius: 3px;

  z-index: 1;

  transform-origin: 4px 0px;

  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1),
    background 0.5s cubic-bezier(0.77, 0.2, 0.05, 1), opacity 0.55s ease;
}

#menuToggle span:first-child {
  transform-origin: 0% 0%;
}

#menuToggle span:nth-last-child(2) {
  transform-origin: 0% 100%;
}

/*
 * Transform all the slices of hamburger
 * into a crossmark.
 */
#menuToggle input:checked ~ span {
  opacity: 1;
  transform: rotate(45deg) translate(-2px, -1px);
  background: #232323;
}

/*
 * But let's hide the middle one.
 */
#menuToggle input:checked ~ span:nth-last-child(3) {
  opacity: 0;
  transform: rotate(0deg) scale(0.2, 0.2);
}

/*
 * Ohyeah and the last one should go the other direction
 */
#menuToggle input:checked ~ span:nth-last-child(2) {
  transform: rotate(-45deg) translate(0, -1px);
}

/*
 * Make this absolute positioned
 * at the top left of the screen
 */
#menu {
  position: absolute;
  height: 100vh;
  width: 300px;
  margin: -100px 0 0 -50px;
  padding: 50px;
  padding-top: 125px;

  background: #ededed;
  list-style-type: none;
  -webkit-font-smoothing: antialiased;
  /* to stop flickering of text in safari */

  transform-origin: 0% 0%;
  transform: translate(-100%, 0);

  transition: transform 0.5s cubic-bezier(0.77, 0.2, 0.05, 1);
}

#menu li {
  padding: 10px 0;
  font-size: 22px;
}

/*
 * And let's slide it in from the left
 */
#menuToggle input:checked ~ ul {
  transform: none;
}

em {
  font-weight: 700;
  font-style: normal;
  /*text-decoration: underline;*/
}

.search:focus {
  outline-color: transparent;
}

#cart{
  position: relative;
}
#cart img {
  width: 40px;
}
#cart-qty {
  border-radius: 50%;
  min-width: 18px;
  min-height: 18px;
  background-color: #eb6433;
  color: white;
  display: inline-block;
  text-align: center;
  font-size: 12px;
  font-weight: 500;
  top: -5px;
  left: 31px;
}

.arrow-down {
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-top: 6px solid orange;
  display: relative;
  position: absolute;
  top: 10px;
  right: -21px;
  color :$orange;
}

#account{
  color:white;
  font-size:18px;
  width:160px
}

.dropdown {
  position: relative;
  display: inline-block;
  width: 160px;
}

.dropdown-content {
  display: none;
  position: absolute;
  background-color: #f9f9f9;
  min-width: 160px;
  box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
  z-index: 1;
}

.dropdown-content a {
  color: black;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {background-color: #f1f1f1}

.dropdown:hover .dropdown-content {
  display: block;
  width: 100%;
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}
.dropdown:hover{
  background-color: white;
}
.dropdown:hover #account {
  color: $orange;
  background-color: white;
  display: block;
}

.dropdown:hover .arrow-down {
  width: 0;
  height: 0;
  border-left: 6px solid transparent;
  border-right: 6px solid transparent;
  border-bottom: 6px solid $orange;
  border-top: 0px solid $orange;
  right: 5px;
  color :$orange;
}

textarea{
  outline: none;
}

.hover-orange:hover{
  color: #eb6433;
}

button:focus {
  outline: none!important;
}

@media print {
  .no-print {
    display:none!important;
}
  .new-page { 
    page-break-before: always;
  }
}

input[type=number]::-webkit-inner-spin-button, 
input[type=number]::-webkit-outer-spin-button { 
-webkit-appearance: none!important; 
 margin: 0!important; 
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield!important;
}

#cart{
  padding-right: 20px;
  margin-right: -20px;
}
button:active{
  opacity: 0.7;
}