/* CUSTOM LESS IMPORTS */
.medium {
  background-image: linear-gradient(135deg, #a8a8a8, #8c8c8c);
}
.dark-grey {
  background-image: linear-gradient(135deg, #6f6f6f, #525252);
}
.dark-warm-grey {
  background-image: linear-gradient(135deg, #7d6c65, #5d504b);
}
.dark-neon-green {
  background-image: linear-gradient(135deg, #537b00, #3c5b00);
}
.dark-kontent-turquoise {
  background-image: linear-gradient(135deg, #007d72, #005d54);
}
.dark-sky-blue {
  background-image: linear-gradient(135deg, #0677a8, #00587e);
}
.dark-ultramarine-blue {
  background-image: linear-gradient(135deg, #3d5dff, #003ddc);
}
.dark-majorelle-blue {
  background-image: linear-gradient(135deg, #774aff, #5c00ef);
}
.dark-xperience-violet {
  background-image: linear-gradient(135deg, #af00fa, #7f09b7);
}
.dark-rose {
  background-image: linear-gradient(135deg, #d90074, #a30056);
}
.dark-red {
  background-image: linear-gradient(135deg, #e10007, #a90004);
}
.dark-kentico-orange {
  background-image: linear-gradient(135deg, #c64300, #953000);
}
.dark-yellow {
  background-image: linear-gradient(135deg, #9e6200, #764800);
}
.light-grey {
  background-image: linear-gradient(135deg, #c6c6c6, #a8a8a8);
}
.light-warm-grey {
  background-image: linear-gradient(135deg, #d1c4bf, #b6a59f);
}
.light-neon-green {
  background-image: linear-gradient(135deg, #96da00, #7eb900);
}
.light-kontent-turquoise {
  background-image: linear-gradient(135deg, #2cd5c4, #00bdac);
}
.light-sky-blue {
  background-image: linear-gradient(135deg, #8fcdff, #00b3fc);
}
.light-ultramarine-blue {
  background-image: linear-gradient(135deg, #b5c4ff, #87a5ff);
}
.light-majorelle-blue {
  background-image: linear-gradient(135deg, #c8bfff, #ac9bff);
}
.light-xperience-violet {
  background-image: linear-gradient(135deg, #dbb8ff, #cb8eff);
}
.light-rose {
  background-image: linear-gradient(135deg, #ffb0c8, #ff7fac);
}
.light-red {
  background-image: linear-gradient(135deg, #ffb3b3, #ff8484);
}
.light-kentico-orange {
  background-image: linear-gradient(135deg, #ffb59b, #ff8852);
}
.light-yellow {
  background-image: linear-gradient(135deg, #ffba31, #db9d00);
}
.snackbar-container {
  transition: all 500ms ease;
  transition-property: top, right, bottom, left, opacity;
  /* CUSTOM FONT */
  /*font-family: Roboto, sans-serif;
  font-size: 14px;*/
  font-family: "GT Walsheim Pro";
  font-style: normal;
  font-size: 16px;
  font-weight: 400;
  src: url("../fonts/GT-Walsheim-Regular.woff2") format("woff2");
  font-display: swap;
  /* /CUSTOM FONT */
  min-height: 14px;
  background-color: #070b0e;
  position: fixed;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: white;
  line-height: 22px;
  padding: 18px 24px;
  bottom: -100px;
  top: -100px;
  opacity: 0;
  z-index: 9999;
  /* CUSTOM BOX-SHADOW */
  box-shadow: 0 0 8px 0 rgba(0, 0, 0, 0.03), 0 8px 14px 0 rgba(0, 26, 112, 0.16);
}
.snackbar-container .action {
  background: inherit;
  display: inline-block;
  border: none;
  font-size: inherit;
  text-transform: uppercase;
  color: #4caf50;
  margin: 0 0 0 24px;
  padding: 0;
  min-width: min-content;
  cursor: pointer;
}
@media (min-width: 640px) {
  .snackbar-container {
    min-width: 288px;
    max-width: 568px;
    display: inline-flex;
    /* CUSTOM BORDER-RADIUS */
    /*border-radius: 2px;*/
    border-radius: 8px;
    margin: 24px;
    /* CUSTOM MARGIN-TOP */
    margin-top: 120px;
  }
}
@media (max-width: 640px) {
  .snackbar-container {
    left: 0;
    right: 0;
    /* CUSTOM BORDER-RADIUS */
    border-radius: 8px;
    width: 100%;
  }
}
.snackbar-pos.bottom-center {
  top: auto !important;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, 0);
}
.snackbar-pos.bottom-left {
  top: auto !important;
  bottom: 0;
  left: 0;
}
.snackbar-pos.bottom-right {
  top: auto !important;
  bottom: 0;
  right: 0;
}
.snackbar-pos.top-left {
  bottom: auto !important;
  top: 0;
  left: 0;
}
.snackbar-pos.top-center {
  bottom: auto !important;
  top: 0;
  left: 50%;
  transform: translate(-50%, 0);
}
.snackbar-pos.top-right {
  bottom: auto !important;
  top: 0;
  right: 0;
}
@media (max-width: 640px) {
  .snackbar-pos.bottom-center,
  .snackbar-pos.top-center {
    left: 0;
    transform: none;
  }
}
