@font-face {
  font-family: 'Founder';
  src: url('/assets/fonts/Founder/Founder-Black.woff') format('woff'), /* WOFF формат */
       url('/assets/fonts/Founder/Founder-Black.otf') format('opentype'); /* OTF формат */
  font-weight: 900;
  font-style: normal;
}

@font-face {
  font-family: 'Founder';
  src: url('/assets/fonts/Founder/Founder-Bold.woff') format('woff'), /* WOFF формат */
       url('/assets/fonts/Founder/Founder-Bold.otf') format('opentype'); /* OTF формат */
  font-weight: 700;
  font-style: normal;
}

@font-face {
  font-family: 'Founder';
  src: url('/assets/fonts/Founder/Founder-Medium.woff') format('woff'), /* WOFF формат */
       url('/assets/fonts/Founder/Founder-Medium.otf') format('opentype'); /* OTF формат */
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: 'Founder';
  src: url('/assets/fonts/Founder/Founder-Regular.woff') format('woff'), /* WOFF формат */
       url('/assets/fonts/Founder/Founder-Regular.otf') format('opentype'); /* OTF формат */
  font-weight: 400;
  font-style: normal;
}

@font-face {
  font-family: 'Founder';
  src: url('/assets/fonts/Founder/Founder-Light.woff') format('woff'), /* WOFF формат */
       url('/assets/fonts/Founder/Founder-Light.otf') format('opentype'); /* OTF формат */
  font-weight: 300;
  font-style: normal;
}

@font-face {
  font-family: 'Founder';
  src: url('/assets/fonts/Founder/Founder-Thin.woff') format('woff'), /* WOFF формат */
       url('/assets/fonts/Founder/Founder-Thin.otf') format('opentype'); /* OTF формат */
  font-weight: 100;
  font-style: normal;
}



:root {
    --main-color: #0F0F1E;
    --accent-color: #6855F8;
    --highlight-color: #7DF5FF;

    --gray-color: #7777A6;
    --bg-color: #F7F7F9;
    --white-color: #FFFFFF;
    --border-color: #E1E1EB;

    --mx-width: 1200px;
}




html {
    -webkit-text-size-adjust: 100%;
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}

body {
    font-size: 16px;
    font-family: 'Founder', 'Open Sans', 'Roboto', sans-serif;
    -webkit-font-smoothing: antialiased;

    width: 100%;

    position: relative;
}
h1,h2,h3,h4,h5,h6 {
    text-decoration: none;
    margin: 0; padding: 0;
}
input[type=text]::-ms-clear {display: none; width: 0; height: 0; }
input[type=text]::-ms-reveal { display: none; width: 0; height: 0; }
input[type="search"]::-webkit-search-decoration,
input[type="search"]::-webkit-search-cancel-button,
input[type="search"]::-webkit-search-results-button,
input[type="search"]::-webkit-search-results-decoration { display: none; }
a { text-decoration: none; cursor: pointer; }
a:active, a:focus { outline: none !important; text-decoration: none !important; }
a:hover { text-decoration: none; }
/*li, a { -webkit-tap-highlight-color: rgba(0,0,0,0) !important; -webkit-tap-highlight-color: transparent !important; }*/
input,button,select,optgroup,textarea {
    outline: none;
    margin: 0;
    font-family: inherit;
    font-size: inherit;
    line-height: inherit;
}
button {
    padding: 0;
    box-shadow: unset;
    outline: none;
    border: none;
    background: unset;
}
input:active, textarea:active, input:focus { outline: none; }
button,input { overflow: visible; }
button,select { text-transform: none; }
select { word-wrap: normal; }
button,
[type="button"],
[type="reset"],
[type="submit"] {
    -webkit-appearance: button;
}

button:not(:disabled),
[type="button"]:not(:disabled),
[type="reset"]:not(:disabled),
[type="submit"]:not(:disabled) {
    cursor: pointer;
}

button::-moz-focus-inner,
[type="button"]::-moz-focus-inner,
[type="reset"]::-moz-focus-inner,
[type="submit"]::-moz-focus-inner {
    padding: 0;
    border-style: none;
}

input[type="radio"],
input[type="checkbox"] {
    box-sizing: border-box;
    padding: 0;
}

input[type="date"],
input[type="time"],
input[type="datetime-local"],
input[type="month"] {
    -webkit-appearance: listbox;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

input[type="number"] {
  -moz-appearance: textfield;
}

/*input[type="text"] {
    outline: none;
    border: none;
}

input[type="text"]::placeholder {
    color: #B0B0C8;
}*/

textarea {
    overflow: auto;
    resize: vertical;
}
textarea { resize: none; }
textarea { resize: vertical; }
textarea { resize: horizontal; }
ul { list-style-type: none; padding: 0; }
/*ul::-webkit-scrollbar { width: 0; height: 0; }*/
/** {
    -ms-overflow-style: none;
    overflow: -moz-scrollbars-none;
}*/

ul::-webkit-scrollbar, div::-webkit-scrollbar { display: none; width: 0; height: 0; }
ul, div {
  -ms-overflow-style: none;
  scrollbar-width: none;
}
ul::-webkit-scrollbar {width:0px;}
div::-webkit-scrollbar {width:0px;}


img {
    cursor: default;
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}



.clearfix::after { content: "";display: table;clear: both; }
.no-scroll { overflow: hidden; }

/* Модификаторы цвета для иконок Font Awesome */
.fa-solid.dark,
.fa-regular.dark {
    color: var(--main-color);
}
.fa-solid.gray,
.fa-regular.gray {
    color: var(--gray-color);
}
.fa-solid.white,
.fa-regular.white {
    color: var(--white-color);
}
.fa-solid.highlight,
.fa-regular.highlight {
    color: var(--highlight-color);
}
.fa-solid.accent,
.fa-regular.accent {
    color: var(--accent-color);
}

/* Скрывать кнопки с атрибутом hidden: классы с display:flex перебивают [hidden] из normalize */
button[hidden] {
	display: none !important;
}






