@font-face {
  font-family: "tt_bold";
  src:
    url("../fonts/TTNorms-Bold.woff2") format("woff2"),
    url("../fonts/TTNorms-Bold.woff") format("woff");
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "tt_medium";
  src:
    url("../fonts/TTNorms-Medium.woff2") format("woff2"),
    url("../fonts/TTNorms-Medium.woff") format("woff");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "tt_regular";
  src:
    url("../fonts/TTNorms-Regular.woff2") format("woff2"),
    url("../fonts/TTNorms-Regular.woff") format("woff");
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "tt_black";
  src:
    url("../fonts/TTNorms-Black.woff2") format("woff2"),
    url("../fonts/TTNorms-Black.woff") format("woff");
  font-weight: 900;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "NVIDIASans-Bold";
  src:
    url("../fonts/NVIDIASans-Bold.woff2") format("woff2"),
    url("../fonts/NVIDIASans-Bold.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: "NVIDIASans-Regular";
  src:
    url("../fonts/NVIDIASans-Regular.woff2") format("woff2"),
    url("../fonts/NVIDIASans-Regular.woff") format("woff");
  font-weight: 700;
  font-style: normal;
}

.nvidia_bold {
  font-family: "NVIDIASans-Bold", serif !important;
}

:root {
  /*========== Colors ==========*/
  --black-color: #000;
  --bg-color: #000;
  --white-color: #fff;
  --grenn-color: #a7f000;
  --blue-color: #2cc4f4;
}

/*========== Layout ==========*/

body {
  position: relative;
  background: #04050b url("../img/bkg.webp") no-repeat;
  background-size: 100%;
  background-position: top;
  color: var(--white-color);
  font-family: "tt_regular", sans-serif;
}

@media screen and (max-width: 1309px) {
  body {
    background-size: cover;
  }
}

@media screen and (max-width: 1309px) {
  body {
    background: #04050b;
  }
}

.tt_bold {
  font-family: "tt_bold", sans-serif;
}

.tt_black {
  font-family: "tt_black", sans-serif;
}

.intel__blue-text {
  color: var(--blue-color);
}

.intel__bg-blue {
  background: var(--blue-color);
}

#modelSelector select {
  width: 100%;
  display: block;
  margin: 0 auto;
  padding: 15px 40px 15px 20px;
  color: #000;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url(../img/arrow.webp) 96% / 2.5% no-repeat #fff;
  border-radius: 25px;
}

.bg_nvidia {
  padding: 10px;
  background: #1a1a1a;
}

.gradient-heading {
  background: linear-gradient(to bottom, #e11576, #d12184, #c02e93);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/*========== Top Header ==========*/

#confetti img {
  transition: transform 0.1s linear;
  will-change: transform;
  position: absolute;
  top: 0;
  left: 0;
}

/*========== Formsection ==========*/

.form-pill {
  height: 56px;
  width: 100%;
  border-radius: 0;
  background: #efefef;
  border: 1px solid rgba(0, 0, 0, 0.12);
  padding: 0 32px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(0, 0, 0, 0.75);
  outline: none;
}

.form-pill::placeholder {
  color: rgba(0, 0, 0, 0.55);
}

select.form-pill {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background: url(../img/arrow.webp) 96% / 3% no-repeat #efefef;
  padding-right: 50px;
}

.form-check {
  appearance: none;
  width: 16px;
  height: 16px;
  min-width: 16px;
  min-height: 16px;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.95);
  border-radius: 4px;
  background: transparent;
  cursor: pointer;
}

.form-check:checked {
  background: rgba(255, 255, 255, 0.95);
  box-shadow: inset 0 0 0 3px rgba(0, 0, 0, 0.25);
}

/* gradientowa obwódka w dropzone */
.gradient-ring {
  background: linear-gradient(90deg, #8b2cff 0%, #19a9ff 100%);
}

.formSection {
  margin: 30px auto 20px auto !important;
  text-align: center;
  padding: 10px 10px 25px 10px;

  /* Glassmorphing */
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);

  border: 2px solid #acabb0;
  width: 100%;
  border-radius: 45px;
}

.formSection > h2 {
  font-family: "intel_bold", serif;
  font-size: 36px !important;
}

#form h4 {
  font-family: "intel_bold", serif;
  margin: 30px auto !important;
}

#form ::placeholder {
  color: rgba(0, 0, 0, 0.6);
}

.formSection .formSection__form {
  width: 700px;
  margin: 0 auto;
}

.formSection .formSection__form .oneInput,
.formSection .formSection__form .twoInput {
  margin: 10px auto;
}

.formSection .formSection__form .twoInput {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0 15px;
}

.formSection .formSection__form .threeInput {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0 15px;
  align-items: center;
}

.formSection .formSection__form .oneInput input,
.formSection .formSection__form .twoInput input,
.formSection .formSection__form .threeInput input {
  width: 100%;
  padding: 15px 0 15px 12px;
  border-radius: 9px;
  color: #000;
  border: 1px solid #d5d5d5;
  font-family: "intel_regular", serif;
  font-size: 13px;
}

.formSection .formSection__form select {
  font-family: "intel_regular", serif;
  width: 100%;
  font-size: 13px;
  padding: 10px 10px 10px 30px;
  height: 50px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background: url(../img/arrow.webp) 93% / 2.5% no-repeat #fff;
  border-radius: 9px;
  border: 1px solid #d5d5d5;
  color: #000;
}

.formSection .formSection__form .oneInput select {
  background: url(../img/arrow.webp) 96.5% / 2.2% no-repeat #fff;
}

.formSection .formSection__form #fileSection {
  background: #fff;
  border: 1px solid #d5d5d5;
  color: #000;
  border-radius: 9px;
  padding: 30px 23px 20px 23px;
  width: 100%;
}

#form #btnSend {
  letter-spacing: 2px;
  text-transform: uppercase;
  font-family: "tt_bold", serif;
  padding: 18px 10px !important;
  text-decoration: none !important;
  text-align: center !important;
  font-weight: bold !important;
  font-size: 18px !important;
  width: 440px !important;
  transition: 0.15s !important;
  cursor: pointer !important;
  z-index: 5 !important;
}

@media screen and (max-width: 709px) {
  #form #btnSend {
    width: 100% !important;
  }
}

#form #btnSend:hover {
  transform: scale(0.95);
}

#form .exampleFile {
  margin-top: 5px;
}

#form .exampleFile .btn-tertiary {
  padding: 9px 0;
  font-size: 14px;
}

#form .exampleFile .btn-tertiary2 {
  padding: 9px 0;
  font-size: 13px;
}

#form .exampleFile .btn-tertiary:hover {
  color: #fff;
  text-decoration: none;
}

@media screen and (max-width: 1279px) {
  .formSection {
    width: 100%;
  }
}

@media screen and (max-width: 999px) {
  .formSection .formSection__form {
    width: 95% !important;
  }
}

@media screen and (max-width: 759px) {
  .formSection .formSection__form {
    width: 90%;
  }

  .formSection .formSection__form .twoInput,
  .formSection .formSection__form .threeInput {
    display: block;
  }

  .formSection .formSection__form .twoInput input:nth-child(2),
  .formSection .formSection__form .twoInput select:nth-child(2) {
    margin-top: 10px;
  }
}

/* Checkbox */

.flex-checkbox {
  position: relative;
  z-index: 10;
  margin-top: 10px;
  margin-bottom: 10px;
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
  text-align: left;
  color: #fff !important;
}

.flex-checkbox a {
  text-decoration: underline !important;
}

.flex-checkbox label {
  margin-left: 10px;
  font-size: 12px;
  margin-top: 2px;
}

input[type="checkbox"] {
  cursor: pointer;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  outline: 0;
  background: none;
  height: 16px;
  width: 16px;
  min-width: 16px;
  min-height: 16px;
  flex-shrink: 0;
  border: 1px solid #fff;
}

input[type="checkbox"]:checked {
  background: #fff;
}

input[type="checkbox"]:hover {
  filter: brightness(90%);
}

input[type="checkbox"]:disabled {
  background: none;
  opacity: 0.6;
  pointer-events: none;
}

input[type="checkbox"]:after {
  content: "";
  position: relative;
  left: 40%;
  top: 20%;
  width: 15%;
  height: 40%;
  border: 1px solid #fff;
  transform: rotate(45deg);
  display: none;
}

input[type="checkbox"]:checked:after {
  display: block;
}

input[type="checkbox"]:disabled:after {
  border-color: #7b7b7b;
}

/* == LOADER == */

#form .loader {
  display: none;
  padding: 50px 0;
  position: relative;
  color: #fff;
  text-align: center;
  font-size: 24px;
}

#loading-bar-spinner.spinner {
  left: 50%;
  margin-left: -20px;
  top: 50%;
  margin-top: -20px;
  position: absolute;
  z-index: 19 !important;
  -webkit-animation: loading-bar-spinner 350ms linear infinite;
  animation: loading-bar-spinner 350ms linear infinite;
}

#loading-bar-spinner.spinner .spinner-icon {
  width: 40px;
  height: 40px;
  border: solid 3px transparent;
  border-top-color: #fff !important;
  border-left-color: #fff !important;
  border-radius: 50%;
}

@-webkit-keyframes loading-bar-spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@keyframes loading-bar-spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}

@media screen and (max-width: 909px) {
}
