@import url("https://fonts.googleapis.com/css2?family=M+PLUS+1:wght@100..900&display=swap");
@font-face {
  font-family: font1;
  src: url(../font/Apotek_Bold.otf);
}
@font-face {
  font-family: font2;
  src: url(../font/Apotek_ExtraCond_Regular.otf);
}
@font-face {
  font-family: font3;
  src: url(../font/Apotek_Extended_ExtraLight.otf);
}
:root {
  --primaryColor: #f9dd1f;
}

html,
body {
  font-family: "M PLUS 1", sans-serif;
  margin: 0;
  padding: 0;
  background: black;
}

* {
  box-sizing: border-box;
  padding: 0;
  margin: 0;
}

/* width */
::-webkit-scrollbar {
  width: 0px;
  height: 0px;
}

/* Track */
::-webkit-scrollbar-track {
  background: rgba(0, 0, 0, 0.048);
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: rgb(117, 117, 117);
  border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--primaryColor);
}

.container {
  width: 1440px;
  margin: 0 auto;
}

@media (max-width: 1800px) {
  .container {
    width: calc(100% - 600px);
  }
}
@media (max-width: 1640px) {
  .container {
    width: calc(100% - 400px);
  }
}
@media (max-width: 1540px) {
  .container {
    width: calc(100% - 300px);
  }
}
@media (max-width: 1440px) {
  .container {
    width: calc(100% - 200px);
  }
}
@media (max-width: 1060px) {
  .container {
    width: calc(100% - 100px);
  }
}
@media (max-width: 768px) {
  .container {
    width: calc(100% - 50px);
  }
}
@media (max-width: 480px) {
  .container {
    width: calc(100% - 30px);
  }
}
a,
article,
button,
div,
span,
i,
b,
h1,
h2,
h3,
h4,
h5,
h6,
p,
input,
ul,
li,
select,
label,
textarea {
  -webkit-touch-callout: none;
  -webkit-tap-highlight-color: transparent;
  font-family: "M PLUS 1", sans-serif;
  touch-action: manipulation;
}

input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
  font-family: "M PLUS 1", sans-serif;
}

input {
  -webkit-tap-highlight-color: transparent;
}

::-webkit-datetime-edit-year-field:not([aria-valuenow]),
::-webkit-datetime-edit-month-field:not([aria-valuenow]),
::-webkit-datetime-edit-day-field:not([aria-valuenow]) {
  color: transparent;
}

video::-internal-media-controls-overlay-cast-button {
  display: none;
}

textarea {
  resize: none;
  font-family: "M PLUS 1", sans-serif;
}

::-moz-selection {
  color: white;
  background: #1d1d1d;
}

::selection {
  color: white;
  background: #1d1d1d;
}

p {
  font-family: "M PLUS 1", sans-serif;
}/*# sourceMappingURL=style.css.map */