#form-cotizador .float-counter{
  opacity: 1;
  animation: woofc-shake 0.82s cubic-bezier(0.36, 0.07, 0.19, 0.97) both;
  -webkit-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
  backface-visibility: hidden;
  perspective: 1000px;
  right: 20px;
  left: auto;
  bottom: 20px;
  border: 1px solid #888888;
  width: 60px;
  height: 60px;
  line-height: 60px;
  text-align: center;
  background-color: #ffffff;
  display: block;
  cursor: pointer;
  position: fixed;
  z-index: 99999997;
  box-shadow: rgb(0 0 0 / 15%) 0px 0px 20px;
  transition: all 0.5s;
}
#form-cotizador .float-counter:hover {
  bottom: 40px;
}
#form-cotizador .float-counter > span.number {
  background-color: #3f83bf;
  position: absolute;
  top: -10px;
  right: -10px;
  height: 30px;
  width: 30px;
  font-size: 12px;
  line-height: 30px;
  text-align: center;
  background: #e94b35;
  color: #ffffff;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
}
#form-cotizador .float-counter > div.shopping_cart{
  background-image: url('https://cdn.icon-icons.com/icons2/902/PNG/512/shopping-cart_icon-icons.com_69303.png');
  background-size: contain;
  background-repeat: no-repeat;
  width: 40px;
  height: 40px;
  margin-right: auto;
  margin-left: auto;
  margin-top: 12px
}

#form-cotizador .form-filter {
  margin-top: 10px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
#form-cotizador .form-filter .group{
  display: flex;
  flex-wrap: wrap;
}
#form-cotizador .table-form-cotizador .form{
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  flex-shrink: 0;
}
#form-cotizador .table-form-cotizador .form div{
  flex-shrink: 0;
  flex-grow: 1;
  margin-bottom: 10px;
}
#form-cotizador .table-form-cotizador .form div > input, select, button{
  width: 100%;
}
#form-cotizador img.img-product{
  width: 80px;
  cursor: pointer;
}
/* Modal */
#form-cotizador .modal {
  display: none; /* Hidden by default */
  position: fixed; /* Stay in place */
  z-index: 10000; /* Sit on top */
  padding-top: 100px; /* Location of the box */
  left: 0;
  top: 0;
  width: 100%; /* Full width */
  height: 100%; /* Full height */
  overflow: auto !important; /* Enable scroll if needed */
  background-color: rgb(0,0,0); /* Fallback color */
  background-color: rgba(0,0,0,0.9); /* Black w/ opacity */
}
#form-cotizador .modal-content {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
}
#form-cotizador .caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color: #ccc;
  padding: 10px 0;
  height: 150px;
}
#form-cotizador .modal-content, .caption {
  animation-name: zoom-form-coti;
  animation-duration: 0.6s;
}
@keyframes zoom-form-coti {
  from {transform:scale(0)}
  to {transform:scale(1)}
}
#form-cotizador .close {
  position: absolute;
  top: 15px;
  right: 35px;
  color: #f1f1f1;
  font-size: 40px;
  font-weight: bold;
  transition: 0.3s;
}
#form-cotizador .close:hover, .close:focus {
  color: #bbb;
  text-decoration: none;
  cursor: pointer;
}
@media only screen and (max-width: 700px){
  #form-cotizador .modal-content {
    width: 100%;
  }
}
/* End Modal */

@media only screen and (max-width: 600px) {
  #form-cotizador img.img-product{
    width: 150px;
  }
}
@keyframes woofc-shake {
  10%, 90% {
    transform: translate3d(-1px, 0, 0);
  }
  20%, 80% {
    transform: translate3d(2px, 0, 0);
  }
  30%, 50%, 70% {
    transform: translate3d(-4px, 0, 0);
  }
  40%, 60% {
    transform: translate3d(4px, 0, 0);
  }
}