﻿@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter/Inter-Black.ttf");
  font-display: swap;
  font-weight: 900;
}
@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter/Inter-Bold.ttf");
  font-display: swap;
  font-weight: 700;
}
@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter/Inter-ExtraBold.ttf");
  font-display: swap;
  font-weight: 800;
}
@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter/Inter-ExtraLight.ttf");
  font-display: swap;
  font-weight: 200;
}
@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter/Inter-Light.ttf");
  font-display: swap;
  font-weight: 300;
}
@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter/Inter-Medium.ttf");
  font-display: swap;
  font-weight: 500;
}
@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter/Inter-Regular.ttf");
  font-display: swap;
  font-weight: 400;
}
@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter/Inter-Thin.ttf");
  font-display: swap;
  font-weight: 100;
}
@font-face {
  font-family: "Inter";
  src: url("/fonts/Inter/Inter-SemiBold.ttf");
  font-display: swap;
  font-weight: 600;
}
html {
  font-size: 16px !important;
}

body {
  background-color: white !important;
}

* {
  font-family: Inter;
  color: #333333;
}

a {
  text-decoration: none;
}

img {
  max-width: 100%;
}

input[type=checkbox] {
  accent-color: #32e02d;
}

.custom-primary-bg {
  background-color: #32e02d;
}

.custom-primary-color {
  color: #32e02d;
}

.custom-secondary-color {
  color: #00aeff;
}

.custom-main-text {
  color: #333333;
}

.custom-primary-border {
  border: 1px solid #32e02d;
}

.custom-dark-bg {
  background-color: #333333;
}

.fit-content {
  width: -moz-fit-content;
  width: fit-content;
}

.primary-text {
  color: #32e02d;
}

.accent-text {
  color: #ff5f1f;
}

.light-text {
  color: #7e7e7e;
}

.custom-mb {
  margin-bottom: 6rem;
}

.navbar-brand img {
  max-width: 250px;
}

.cta-image img {
  width: 400px;
}

.input-wrapper {
  position: relative;
  width: 190px;
}
.input-wrapper input {
  width: 100%;
}
.input-wrapper input:focus + img {
  opacity: 0.2;
}
.input-wrapper img {
  right: 16px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
}

.nav-link {
  font-size: 14px;
}
.nav-link:hover {
  opacity: 0.8;
  color: #32e02d;
}

.pulse {
  animation: pulse 2s infinite;
  box-shadow: 0 0 0 20px rgba(50, 224, 45, 0.6);
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(50, 224, 45, 0.6);
  }
  70% {
    -webkit-box-shadow: 0 0 0 20px rgba(50, 224, 45, 0);
  }
  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(50, 224, 45, 0);
  }
}
@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(50, 224, 45, 0.6);
    box-shadow: 0 0 0 0 rgba(50, 224, 45, 0.6);
  }
  70% {
    -moz-box-shadow: 0 0 0 20px rgba(50, 224, 45, 0);
    box-shadow: 0 0 0 20px rgba(50, 224, 45, 0);
  }
  100% {
    -moz-box-shadow: 0 0 0 0 rgba(50, 224, 45, 0);
    box-shadow: 0 0 0 0 rgba(50, 224, 45, 0);
  }
}
.navbar-toggler {
  border: none;
}
.navbar-toggler:focus {
  box-shadow: none;
}

footer {
  margin-top: auto;
}
footer div {
  color: white;
}

.assistant-banner-content {
  width: 75%;
}
.assistant-banner-content h3 {
  color: #f6f6f6 !important;
  font-family: monospace;
  -webkit-text-stroke-width: 1px;
  -webkit-text-stroke-color: #333333;
}
@media (min-width: 576px) {
  .assistant-banner-content h3 {
    font-family: inherit;
    -webkit-text-stroke-width: 0px;
  }
}

#assistantModal {
  backdrop-filter: blur(5px);
}

@media (min-width: 576px) {
  .custom-modal-wrapper .modal-dialog {
    width: 60vw !important;
    max-width: unset !important;
  }
}
.custom-modal-wrapper .modal-dialog-centered {
  justify-content: center !important;
}

.custom-modal {
  min-height: 69vh;
  background: linear-gradient(to bottom, rgba(0, 0, 0, 0.4), rgba(0, 0, 0, 0.3)), url(/Content/Images/GoOn/Principali/customModalBg3.jpg) left/cover no-repeat;
  border-radius: 0.5rem;
}
.custom-modal input, .custom-modal .form-select, .custom-modal .form-check {
  max-width: 260px;
}
.custom-modal .validation-label, .custom-modal label.error {
  margin: 0 40%;
}
.custom-modal img {
  width: 100px;
  padding: 1rem;
}
