#filter-products {
    background: white url(../search_icon.png) left no-repeat;
    padding-left: 45px;
}

.text-filter-products input::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color:  #FFFFFF;
  opacity: 1; /* Firefox */
}

.text-filter-products input:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color:  #FFFFFF;
}

.text-filter-products input::-ms-input-placeholder { /* Microsoft Edge */
  color:  #FFFFFF;
}

.text-filter-products input::-webkit-input-placeholder {
   color:  #FFFFFF;
}
  
.text-filter-products input:-moz-placeholder {
   color:  #FFFFFF;
}
  
.text-filter-products input::-moz-placeholder {
   color:  #FFFFFF;
}

#snackbar {
  visibility: hidden;
  min-width: 250px;
  margin-left: -125px;
  background-color: #CC444B;
  color: #FFFFFF;
  text-align: center;
  border-radius: 10px;
  padding: 8px;
  position: fixed;
  z-index: 1;
  left: 50%;
  top: 30px;
  font-size: 17px;
}

#snackbar.show {
  visibility: visible;
  -webkit-animation: fadein 0.5s, fadeout 0.5s 2.5s;
  animation: fadein 0.5s, fadeout 0.5s 2.5s;
}

@-webkit-keyframes fadein {
  from {top: 0; opacity: 0;} 
  to {top: 30px; opacity: 1;}
}

@keyframes fadein {
  from {top: 0; opacity: 0;}
  to {top: 30px; opacity: 1;}
}

@-webkit-keyframes fadeout {
  from {top: 30px; opacity: 1;} 
  to {top: 0; opacity: 0;}
}

@keyframes fadeout {
  from {top: 30px; opacity: 1;}
  to {top: 0; opacity: 0;}
}

@media print {
    .no-print {display: none;}
    .no-screen{}
}


@media screen
{
    .no-print{}
    .no-screen{display:none;}
}

.overlay {
  height: 100%;
  width: 100%;
  display: none;
  position: fixed;
  z-index: 1;
  top: 0;
  left: 0;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0, 0.9);
}


.overlay-content {
  position: relative;
  top: 10%;
  width: 100%;
  text-align: center;
  margin-top: 30px;
}

.overlay a {
  padding: 8px;
  text-decoration: none;
  font-size: 36px;
  color: #e0dcdc;
  display: block;
  transition: 0.3s;
}

.overlay div {
  padding: 8px;
  text-decoration: none;
  font-size: 36px;
  color: #e0dcdc;
  display: block;
  transition: 0.3s;
}


.overlay a:hover, .overlay a:focus {
  color: #f1f1f1;
}

.overlay .closebtn {
  position: absolute;
  top: 10px;
  right: 10px;
  font-size: 60px;
}

@media screen and (max-height: 450px) {
  .overlay a {font-size: 20px}
  .overlay .closebtn {
  font-size: 40px;
  top: 15px;
  right: 35px;
  }
}
