/* Sidebar */
/* ---------------------------------------------------------------------------- */
.timer-sidebar {
  padding: 1rem 2rem;
  background: #f9f0de;
  box-shadow: 0px 1.885px 3.77px 0px rgba(0, 0, 0, 0.25);
  border-radius: 1rem;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  column-gap: 1rem;
  row-gap: 0.5rem;
}
.timer-sidebar-container {
  display: flex;
  flex-direction: row;
  align-items: center;
  column-gap: 0.75rem;
}
.timer-sidebar-image {
  width: max-content;
}
.timer-sidebar-image img {
  max-width: 100%;
  width: 61px;
  height: 75px;
}
.timer-sidebar-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.timer-sidebar-title {
  font-family: Lato;
  font-weight: 800;
  font-size: 18px;
  color: black;
  text-align: center;
  text-transform: uppercase;
  margin-bottom: 5px;
}
.timer-sidebar-count {
  font-family: Lato;
  font-weight: bold;
  font-size: 27px;
  line-height: normal;
  color: #ffc31b;
  text-align: center;
  text-shadow: 0px 1.885px 3.77px #000;
  letter-spacing: 4.995px;
  background: linear-gradient(180deg, #000 0%, #5c5c5c 100%);
  box-shadow: inset 0 -1px 3px 0 rgba(0, 0, 0, 0.7);
  border-radius: 6px;
  padding: 9px 27px;
  display: inline-block;
}
.timer-sidebar-text {
  font-family: Lato;
  font-size: 18px;
  color: black;
  text-align: left;
  line-height: normal;
}
.timer-sidebar--in-cart {
  justify-content: space-between;
  align-items: center;
  padding: 0.75rem 1.5rem;
}
@media only screen and (max-width: 1200px) and (min-width: 768px) {
  .timer-sidebar--in-cart .timer-sidebar-image {
    display: initial;
  }
}
@media (max-width: 992px) {
  .timer-sidebar--in-cart.timer-sidebar {
    flex-direction: row;
  }
}
.timer-sidebar--in-cart p {
  color: black;
  margin-bottom: 0;
}

/* Topbar */
/* ---------------------------------------------------------------------------- */
.timer-topbar {
  background: #111111;
  /*background-image: linear-gradient(-180deg, #090909 0%, #686868 100%);*/
  box-shadow: inset 0 -1px 3px 0 rgba(0, 0, 0, 0.7);
  text-align: center;
  padding: 5px 0;
  padding-left:3px;
  padding-right:3px;
  overflow: hidden;
}
.timer-topbar-content {
  display: inline-block;
}
.timer-topbar-content img {
  width: 20px;
  display: inline-block;
  position: relative;
  top: -2px;
  margin-right: 10px;
}
.timer-topbar-title {
  font-family: Lato;
  font-weight: bold;
  font-size: 16px;
  color: #ffffff;
  letter-spacing: 1px;
  text-align: center;
  display: inline-block;
  text-transform: uppercase;
  margin-right: 10px;
}
.timer-topbar-count {
  font-family: Lato;
  font-weight: bold;
  font-size: 16px;
  color: #111111;
  text-align: center;
  text-shadow: 0 2px 0 rgba(255, 255, 255, 0.33);
  background: #111111;
  background-image: linear-gradient(0deg, #c99500 1%, #ffc31b 100%);
  border-radius: 6px;
  display: inline-block;
  padding: 2px 6px;
  line-height: 1.4;
  margin-right: 10px;
}
.timer-topbar-text {
  font-family: Lato;
  font-size: 13px;
  color: #ffffff;
  text-align: center;
  display: inline-block;
}

/* ---------------------------------------------------------------------------- */
@media (min-width: 1200px) {
  .timer-topbar {
    position: fixed;
    width: 100%;
    top: 0;
    left: 0;
    z-index: 999999;
    height: 40px;
    line-height: 30px;
  }
}
@media (max-width: 992px) {
  .timer-sidebar {
    flex-direction: column;
    align-items: center;
    justify-content: center;
  }
  .timer-sidebar-text {
    text-align: center;
  }
  .timer-topbar-title {
    margin-bottom: 1.5rem;
  }
}
@media (max-width: 480px) {
  .timer-sidebar {
    padding: 1rem;
  }
  .timer-sidebar-image img {
    width: 50px;
    height: 65px;
  }
  .timer-sidebar-count {
    padding: 8px 20px;
    font-size: 22px;
  }
  .timer-topbar-title {
    margin-bottom: 0px;
  }
  .timer-topbar-text {
    padding-left:50px;
    padding-right:50px;
  }
}
@media only screen and (max-width: 1200px) and (min-width: 768px) {
  .timer-sidebar-image {
    display: none;
  }
  .timer-sidebar-content {
    float: none;
    width: 100%;
  }
}
/*# sourceMappingURL=timerdiscount.css.map */