/* Buttons */
.btn {
  display: block;
  padding: 15px 10px;
  color: var(--dark-gray);
  text-transform: uppercase;
  cursor: pointer;
  border: 1px solid var(--dark-gray);
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 400;
  cursor: pointer;
  transition: all 0.2s ease;
  box-sizing: border-box;
}

.btn.btn-primary {
  background-color: white;
  color: black;
  font-weight: 500;
  text-decoration: none;
}

.btn.btn.btn-primary:hover {
  border-color: var(--mid-gray);
  color: var(--mid-gray);
}

.btn.btn-primary:not(:disabled):hover {
  border: 1px solid black;
}

.btn.btn-full {
  width: 100%;
  text-align: center;
}

.btn:disabled {
  opacity: 0.6;
  pointer-events: none;
  cursor: not-allowed;
}

.btn.btn-secondary {
  border-color: gray; /* $gray */
  text-decoration: none;
}

.btn.btn-secondary:hover {
  border-color: black;
}

/* Animated button */
.btn-anim {
  overflow: hidden;
  position: relative;
  transition: 0.3s all; /* fallback for $defaultTransition */
}

.btn-anim::before {
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black; /* $black */
  content: "";
  transform: translateY(100px);
  transition: 0.3s all;
}

.btn-anim:not(:disabled):hover {
  color: white; /* $white */
}

.btn-anim:hover:not(:disabled)::before {
  transform: translateY(0px);
}

/* Link animation */
.link-anim {
  display: inline-block;
}

.link-anim::after {
  content: "";
  display: block;
  width: 0;
  height: 2px;
  background: black; /* $black */
  transition: 0.3s all;
}

.link-anim:hover::after {
  width: 100%;
}

/* Toast notification */
.toastnotification {
  position: fixed;
  top: 30px;
  right: 30px;
  left: auto;
  bottom: auto;
  z-index: 20;
}

.toastnotification .bx--toast-notification {
  margin: 0 0 10px 0;
}

/* Legal agreement */
.legalagreement {
  position: fixed;
  bottom: 0;
  left: 0;
  z-index: 10;
  background-color: white; /* $white */
  width: 100%;
  height: auto;
  display: none;
}

.legalagreement .inner {
  padding: 20px;
}

.legalagreement .flex-row {
  align-items: center;
  justify-content: space-between;
}

.legalagreement .text {
  font-size: 10px;
  line-height: 16px; /* fallback for $fontSizeR */
}

.legalagreement a {
  font-size: 16px; /* fallback for $fontSizeR */
}

.legalagreement .actions {
  min-width: 120px;
  text-align: right;
}

.legalagreement .actions a {
  font-size: 10px;
}

/* Form narrow */
.form-narrow {
  width: 80%;
  max-width: 1200px; /* fallback for $formWrapperMaxWidth */
  margin: 0 auto;
}

/* Dash divider */
.dash-divider {
  display: inline-block;
  padding: 0 10px;
}

.dash-divider::after {
  content: "\2015";
}

/* Vertical center */
.v-center {
  top: 50%;
  transform: translateY(-50%);
  -ms-transform: translateY(-50%);
}

/* Icon buttons */
.btn-icon {
  width: 35px;
  height: 35px;
  text-decoration: none;
  border: none;
}

.btn-icon:hover,
.btn-icon:focus,
.btn-icon:active {
  text-decoration: none;
  border: none;
}

.btn-icon img {
  width: 100%;
  height: auto;
}

/* Content items */
.content-item .item-text {
  padding: 20px 20px 0 20px;
}

/* Not available overlay */
.not-available .img-wrapp::after {
  content: "NOT AVAILABLE";
  position: absolute;
  left: 0;
  width: 100%;
  height: 35px;
  line-height: 35px;
  background: rgba(255, 255, 255, 1);
  text-align: center;
  top: 0;
  bottom: 0;
  margin: auto 0;
}

/* Not found page */
.not-found {
  width: 500px;
  height: 300px;
  position: relative;
  border: 1px solid black;
  z-index: 1;
  margin: 100px auto;
  text-align: center;
}

.not-found h1 {
  padding: 50px 0;
}
