
/* Add utility classes  */
.hidden {
  display: none;
}

.is-link {
  color: #fff;
  text-decoration: none;
}


/* Currency selector */
.currency-selector {
  width: 190px;
  margin-right: 15px;
  margin-top: -10px;
  color: #fff;
}
.currency-selector input.select-dropdown {
  border-bottom: 1px solid #fff;
  height: 2.5rem;
  line-height: 2.5rem;
}
.currency-selector li.disabled {
  color: #000 !important;
}
.currency-selector .caret {
  color: #fff !important;
}
.currency-selector.center-block {
  color: #000;
}
.currency-selector.center-block input.select-dropdown {
  border-bottom: 1px solid #000;
}
.currency-selector.center-block .caret {
  color: #000 !important;
}
.currency-selector.footer-selector {
}



/* The Cookie Notice. Ech... */
.cookies {
  position: fixed;
  bottom: 0px;
  left: 0px;
  background: #2c2c2c;
  height: 60px;
  width: 100%;
  text-align: center;
  padding: 15px 0px 10px;
  box-shadow: 0 10px 30px rgba(65, 72, 86, 0.06);
  transition: all 400ms ease-in-out;
  z-index: 999;
  transform: translateY(100%) scale(0.8);
  opacity: 0;
  filter: blur(3px);
}
.cookies-inner {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  align-content: center;
  flex-wrap: nowrap;
}
.cookies a {
  color: #039be5;
}
.cookies-icon {
  height: 36px;
  width: 36px;
  animation: spin 2s linear infinite;
}
@media screen and (max-width: 991px) {
  .cookies-icon {
    height: 28px;
    width: 28px;
  }
}
.cookies-message {
  height: 36px;
  padding: 0px 10px;
  line-height: 36px;
  color: #FFFFFF;
  font-size: 16px;
  font-weight: 600;
}
@media screen and (max-width: 991px) {
  .cookies-message {
    font-size: 12px;
  }
}
.cookies-accept {
  height: 30px;
  padding: 0 10px;
  line-height: 30px;
  border: none;
  border-radius: 10px;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 14px;
  text-align: center;
  background: #00a1a1;
  cursor: pointer;
  outline: none;
  transition: background 250ms ease-in-out;
  font-family: 'Montserrat', sans-serif;
  user-select: none;
}
.cookies-accept:hover {
  background: #787878;
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
