/* ------------------- */
/* Fonts               */
/* ------------------- */

@font-face {
  font-family: "RobotoCondensed";
  src: url("../fonts/RobotoCondensed-VariableFont_wght.ttf");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "AryaDouble";
  src: url("../fonts/AryaDouble.otf");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: "KorolevBold";
  src: url("../fonts/KorolevBold.otf");
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: "KorolevLight";
  src: url("../fonts/KorolevLight.otf");
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: "KorolevMedium";
  src: url("../fonts/KorolevMedium.otf");
  font-weight: 500;
  font-style: normal;
}

/* ------------------- */
/* Reset               */
/* ------------------- */

/* https://piccalil.li/blog/a-modern-css-reset/ */

* {
  margin: 0;
  padding: 0;
  transition-property: all;
  transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
  transition-duration: 300ms;
}

/* Box sizing */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* make form elements easier to work with */
input,
button,
textarea,
select {
  font: inherit;
}

body {
  min-height: 100vh;
  background: white;

  display: flex;
  flex-direction: column;
}

/* make form elements easier to work with */
input,
button,
textarea,
select {
  font: inherit;
}

/* Reset margins */
body,
h1,
h2,
h3,
h4,
h5,
p,
figure,
picture,
svg {
  margin: 0;
}

/* set up the body */
body {
  line-height: 1.5;
  min-height: 100vh;
}

/* make images easier to work with */
img,
picture,
svg {
  max-width: 100%;
  display: block;
}

/* remove animations for people who've turned them off */
@media (prefers-reduced-motion: reduce) {

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

/* ------------------- */
/* Utility classes     */
/* ------------------- */

.highlight-text {
  color: #7b1222;
}

.flex {
  display: flex;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.grid {
  display: grid;
}

.container-lg {
  max-width: 1320px;
  margin-inline: auto;
}

.p-2 {
  padding: 2rem;
}

.p-3 {
  padding: 3rem;
}

.mtb-1 {
  margin-block: 1rem;
}

.mtb-2 {
  margin-block: 2rem;
}

.mtb-3 {
  margin-block: 3rem;
}

.ml-2 {
  margin-left: 2rem;
}

.light-blue {
  color: #1b325f;
}

.dark-blue {
  color: #120b32;
}

.pink-link {
  color: #b53253;
  box-shadow: none;
  text-decoration: none;
}

.pink-link:hover {
  color: #0693e3;
}

.blue-link {
  color: #0693e3;
  box-shadow: none;
  text-decoration: none;
}

.blue-link:hover {
  color: #b53253;
}

.red-link {
  font-family: "RobotoCondensed", Sans-serif;
  font-size: 0.9em;
  font-weight: 400;
  letter-spacing: 0;
  color: #b53253;
  text-decoration: none;
  margin-left: auto;
}

.red-link:hover {
  color: #0693e3;
}

.purchase-btn {
  font-family: "KorolevBold", Sans-serif;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  padding: 10px;
  background-color: #7b1222;
  color: white;
  text-decoration: none;
  border-radius: 1rem;
  margin-top: 15px;
  font-size: 16px;
  border: none;
  cursor: pointer;
}

.purchase-btn:hover {
  background-color: #1b325f;
}

.purchase-btn.disabled {
  border: none;
  background-color: #aaa;
  cursor: not-allowed;
}

.purchase-btn i {
  margin-right: 8px;
}

.position-bottom {
  margin-top: auto;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  /* added line */
  border: 0;
}

.notice-section {
  width: fit-content;
  max-width: 90%;
  border: #721c24 dashed;
  font-family: "RobotoCondensed", Sans-serif;
  color: white;
  font-size: 1rem;
  padding: 1rem;
}

.notice-section > div {
  background-color: #721c24;
  padding: 1rem;
}

.notice-section a {
  color: white;
  font-weight: bold;
  text-decoration: underline;
}

.notice-btn {
  display: flex;
  justify-content: center;
  background-color: white !important;
  font-weight: bold;
  text-decoration: none;
  text-align: center;
  margin-top: 1rem;
}

.notice-btn > a {
  color: #721c24 !important;
  padding: 1rem !important;
  width: 100%;
  height: 100%;
  text-align: center;
}

@media (992px > width >=1200px) {
  .container-lg {
    max-width: 1140px;
  }
}

@media (768px > width >=992px) {
  .container-lg {
    max-width: 720px;
  }
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 3px solid #4A90E2;
  outline-offset: 2px;
}
