body {
  font-family: "Lato", sans-serif;
}

#wrapper {
  padding-bottom: 40px;
}

.container {
  max-width: 1600px;
}

h2.title {
  letter-spacing: 6.5px;
  font-size: 1.7rem;
  font-weight: 600;
}

@media (max-width: 768px) {
  h2.title {
    font-size: 1.2rem;
    letter-spacing: 3px;
  }
}

.login {
  max-width: 550px;
}

.logo {
  max-width: 350px;
}

/*PRODUCTS*/
.products {
  max-height: 500px;
  overflow-y: auto;
}

@media (max-width: 768px) {
  .products {
    max-height: 320px;
  }
}

.content-products .item-line {
  border-bottom: 1px solid #e7e7e7;
}

.product-delete-name {
  font-size: 1.3rem;
}

.product-delete-button {
  cursor: pointer;
}

.icon-delete {
  background: url(/img/delete.svg);
  background-repeat: no-repeat;
  width: 2rem;
  height: 2rem;
  background-position: center center;
}

.icon-arrow {
  background: url(/img/left-arrow.svg);
  background-repeat: no-repeat;
  width: 2rem;
  height: 2rem;
  background-position: center center;
}

.btn-back:hover .icon-arrow {
  filter: brightness(32%) contrast(41) invert(1);
}

/* width */
.products::-webkit-scrollbar {
  width: 8px !important;
}

/* Track */
.products::-webkit-scrollbar-track {
  background: #e6e3df;
  box-shadow: inset 0 0 1px #999 !important;
}

/* Handle */
.products::-webkit-scrollbar-thumb {
  background: #383838 !important;
  outline: 1px solid #383838 !important;
  -webkit-border-radius: 10px;
  -moz-border-radius: 10px;
  border-radius: 10px;
}

.products::-webkit-scrollbar-thumb {
  border: 3px solid #e6e3df;
}

/* Handle on hover */
.products::-webkit-scrollbar-thumb:hover {
  background: #cfd3d6 !important;
}

/*BUTTONS*/
.btn {
  min-height: 77px;
  font-size: 1.25rem;
  max-height: 77px;
  padding: 1.375rem 0.375rem;
}

@media (max-width: 768px) {
  .btn {
    min-height: 52px;
    font-size: 1rem;
  }
}

/*FORMS*/
.form-control {
  min-height: 59px;
}

@media (max-width: 768px) {
  .form-control {
    min-height: 52px;
  }
}

.form-group {
  position: relative;
}

label.labelfocus .text-label {
  background-color: #ffffff;
  display: inline-block;
  padding: 0.1rem 0.8rem;
}

.form-group>label {
  opacity: 1;
  position: absolute;
  -ms-transform-origin: left top;
  transform-origin: left top;
  transition-duration: 166ms;
  font-size: 14px;
  line-height: 20px;
  cursor: text;
  max-width: 100%;
  width: 100%;
  padding: 0;
  margin: 0;
  font-weight: normal;
  top: 18px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  z-index: 99;
  text-align: center;
}

.form-group>label.labelfocus {
  -ms-transform: translateY(-30px) !important;
  transform: translateY(-30px) !important;
  margin-top: 0;
  cursor: default;
  overflow: visible;
  opacity: 1 !important;
  padding: 0 !important;
  margin: 0 auto;
  color: #000000;
  font-size: 13px;
  z-index: 99;
  text-align: center;
}

/*SHOWROOM*/
.showroom {
  max-width: 1200px;
}

.iframe-cont {
  position: relative;
  overflow: hidden;
  width: 100%;
  padding-top: 56.25%;
  /* 16:9 Aspect Ratio (divide 9 by 16 = 0.5625) */
}

/* Then style the iframe to fit in the container div with full height and width */
.responsive-iframe {
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
}