@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,300italic,400,400italic,600,600italic,700,700italic,800,800italic);
@font-face {
  font-family: 'Fira Sans Light';
  font-style: normal;
  src: url('../fonts/FiraSans-Light.ttf');
}
@font-face {
  font-family: 'Fira Sans Regular';
  font-style: normal;
  src: url('../fonts/FiraSans-Regular.ttf');
}
@font-face {
  font-family: 'Fira Sans Bold';
  font-style: normal;
  src: url('../fonts/FiraSans-Bold.ttf');
}
@font-face {
  font-family: 'FontAwesome';
  font-style: normal;
  src: url('../universal/fonts/fonts/FontAwesome.otf');
}

.container.container--big,
.container.container--full,
.container.container--small
{
    width: 100% !important;
    max-width: 100% !important;
    min-width: 100% !important;
} 

/*div.parallax {
     Create the parallax scrolling effect 
    background-attachment: fixed;
    background-position: center;
    background-repeat: no-repeat; 
     background-size: cover;
    Background-position: 0px 0px;
    background-color: rgba(0,0,0,0.5);
} */

img{
    max-width: 100%;
    height: auto;
}

.parallax_holder,
#parallax_holder {
  background-color: #000;
  width: 100%;
  height: auto;
  min-height: 400px;
}
/*.parallax,
#parallax {
  background-repeat: no-repeat;
  background-attachment: fixed;
  background-position: 50% center;
  min-height: 400px;
  height: auto;
  margin: 0 auto;
  width: 100%;
  position: relative;
}
.parallax > article,
#parallax > article {
  display: grid;
  min-height: 400px;
}*/

.img-responsive{
    max-width: 100%;
    width: 100%;
    height: auto;
}

.padding_column {
  padding-left: 30px !important;
  padding-right: 30px !important;
}
#addprod-pop {
  border: 3px solid #d12229;
  height: auto;
  width: 400px;
  background-color: #fff;
  color: #000;
  position: fixed;
  z-index: 99;
  padding: 25px;
  display: none;
  z-index: 250;
  max-height: 80%;
  overflow: scroll;
}
#addprod-pop .close {
  position: absolute;
  top: 0px;
  right: 0px;
}
#popup {
  width: auto;
  height: auto;
  margin: 0 auto;
  position: fixed;
  top: 10px;
  left: 10px;
  right: 10px;
  bottom: 10px;
  background-color: rgba(0,0,0,0.7);
}
#popup-container {
  padding-top: 80px;
  padding-bottom: 80px;
  width: 100%;
  height: 100%;
}
.popup-close {
  text-transform: uppercase;
  position: absolute;
  top: 25px;
  right: 25px;
  color: #fff;
  font-size: 25px;
  cursor: pointer;
}

/* CHECK BOX CUSTOM */

/* The container */
.checkbox_item_custom .container {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  font-size: 22px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

/* Hide the browser's default checkbox */
.checkbox_item_custom .container input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
  left: 0;
  top:10px;
}

/* Create a custom checkbox */
.checkbox_item_custom .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #eee;
  border: 1px solid var(--colorfirst);
}

/* On mouse-over, add a grey background color */
.checkbox_item_custom .container:hover input ~ .checkmark {
  background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.checkbox_item_custom .container input:checked ~ .checkmark {
  background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkbox_item_custom .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkbox_item_custom .container input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkbox_item_custom .container .checkmark:after {
    left: 8px;
    top: 3px;
    width: 7px;
    height: 14px;
    border: solid var(--white);
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}

/* FIM CHECK BOX CUSTOM */

.loadingwrapper{
    width: 100%;
    height: 100%;
    position: fixed;
    background-color: rgba(255,255,255,0.8);
    z-index: 99999;
}


/* CSS3 */

/* The whole thing */
.custom-menu {
  display: none;
  z-index: 1000;
  position: absolute;
  overflow: hidden;
  border: 1px solid #CCC;
  white-space: nowrap;
  font-family: sans-serif;
  background: #FFF;
  color: #333;
  border-radius: 5px;
  padding: 0;
}

/* Each of the items in the list */
.custom-menu li {
  padding: 8px 12px;
  cursor: pointer;
  list-style-type: none;
  transition: all .3s ease;
  user-select: none;
}

.custom-menu li:hover {
  background-color: #DEF;
}