@font-face {
  font-family: 'TT Firs Neue Trl';
  src: url('/fonts/TT-Firs-Neue-Trial-Thin.ttf') format('truetype');
  font-weight: 100;
  font-style: normal;
}

@font-face {
  font-family: 'TT Firs Neue Trl';
  src: url('/fonts/TT-Firs-Neue-Trial-Thin-Italic.ttf') format('truetype');
  font-weight: 100;
  font-style: italic;
}

@font-face {
  font-family: 'TT Firs Neue Trl';
  src: url('/fonts/TT-Firs-Neue-Trial-ExtraLight.ttf') format('truetype');
  font-weight: 200;
  font-style: normal;
}

@font-face {
  font-family: 'TT Firs Neue Trl';
  src: url('/fonts/TT-Firs-Neue-Trial-ExtraLight-Italic.ttf') format('truetype');
  font-weight: 200;
  font-style: italic;
}

@font-face {
  font-family: 'TT Firs Neue Trl';
  src: url('/fonts/TT-Firs-Neue-Trial-Light.ttf') format('truetype');
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'TT Firs Neue Trl';
  src: url('/fonts/TT-Firs-Neue-Trial-Light-Italic.ttf') format('truetype');
  font-weight: 300;
  font-style: italic;
}

@font-face {
  font-family: 'TT Firs Neue Trl';
  src: url('/fonts/TT-Firs-Neue-Trial-Regular.ttf') format('truetype');
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'TT Firs Neue Trl';
  src: url('/fonts/TT-Firs-Neue-Trial-Italic.ttf') format('truetype');
  font-weight: normal;
  font-style: italic;
}

@font-face {
  font-family: 'TT Firs Neue Trl';
  src: url('/fonts/TT-Firs-Neue-Trial-Medium.ttf') format('truetype');
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'TT Firs Neue Trl';
  src: url('/fonts/TT-Firs-Neue-Trial-Medium-Italic.ttf') format('truetype');
  font-weight: 500;
  font-style: italic;
}

@font-face {
  font-family: 'TT Firs Neue Trl';
  src: url('/fonts/TT-Firs-Neue-Trial-DemiBold.ttf') format('truetype');
  font-weight: 600;
  font-style: normal;
}

@font-face {
  font-family: 'TT Firs Neue Trl';
  src: url('/fonts/TT-Firs-Neue-Trial-DemiBold-Italic.ttf') format('truetype');
  font-weight: 600;
  font-style: italic;
}

@font-face {
  font-family: 'TT Firs Neue Trl';
  src: url('/fonts/TT-Firs-Neue-Trial-Bold.ttf') format('truetype');
  font-weight: bold;
  font-style: normal;
}

@font-face {
  font-family: 'TT Firs Neue Trl';
  src: url('/fonts/TT-Firs-Neue-Trial-Bold-Italic.ttf') format('truetype');
  font-weight: bold;
  font-style: italic;
}

* {
  outline: none;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: 'TT Firs Neue Trl', sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

a {
  text-decoration: none;
}

.react-datepicker__close-icon {
  right: 2rem !important;
}

@keyframes fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}

@keyframes fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}

@keyframes show-rightwards {
  0% {
    transform: translateX(-20px);
  }
  100% {
    transform: translateX(0);
  }
}

@keyframes zoom-in {
  0% {
    transform: scale(0.5);
    opacity: 0;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

@media (max-width: 768px) {
  html,
  body {
    font-size: 14px;
  }
}

@media (max-width: 425px) {
  html,
  body {
    font-size: 12px;
  }
}

@media (max-width: 315px) {
  html,
  body {
    font-size: 10px;
  }
}

.react-datepicker__view-calendar-icon input {
  padding: 0.75rem 1rem !important;
}

.privacy-policy-container {
  background: linear-gradient(
    rgb(150, 22, 56) 0%,
    rgb(166, 148, 160) 0.01%,
    rgb(73, 28, 58) 100%
  );
  width: 100%;
  min-height: 100vh;
  padding: 5%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  text-align: justify;
}

.privacy-policy-card {
  height: max-content;
  padding: 2.5rem;
  border-radius: 1rem;
  background-color: #ffffff;
  box-shadow: 0px 4px 16px 0px #00000040;
  animation:
    show-downwards 1s ease-out,
    fade-in 1s ease-out;
}

.privacy-policy-header {
  color: #4d4d4d;
  font-size: 2rem;
  font-weight: 700;
  text-align: center;
  margin-top: 0;
}

.privacy-policy-divider {
  width: 70%;
  margin: 0.25rem 0 1.25rem;
  border: 2px solid rgb(73, 28, 58);
}

.privacy-policy-content {
  hyphens: auto;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.privacy-policy-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  list-style-position: inside;

  li::marker {
    font-weight: bold;
  }

  ul > li {
    list-style-type: disc;
  }

  div {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
  }

  ol > li {
    list-style-type: none;
  }
}
