/*!***************************************************************************************************************************!*\
  !*** css ../node_modules/css-loader/dist/cjs.js!../node_modules/sass-loader/dist/cjs.js!./assets/global-style/style.scss ***!
  \***************************************************************************************************************************/
@font-face {
  font-family: "MuseoSansCyrl";
  font-weight: 300;
  font-style: normal;
  src: url(../assets/fonts/museoSansCyrl-300.woff2) format("woff2"), url(../assets/fonts/museoSansCyrl-300.woff) format("woff");
  font-display: swap;
}
@font-face {
  font-family: "MuseoSansCyrl";
  font-weight: 500;
  font-style: normal;
  src: url(../assets/fonts/museoSansCyrl-500.woff2) format("woff2"), url(../assets/fonts/museoSansCyrl-500.woff) format("woff");
  font-display: swap;
}
@font-face {
  font-family: "MuseoSansCyrl";
  font-weight: 700;
  font-style: normal;
  src: url(../assets/fonts/museoSansCyrl-700.woff2) format("woff2"), url(../assets/fonts/museoSansCyrl-700.woff) format("woff");
  font-display: swap;
}
@font-face {
  font-family: "SBSansDisplay";
  font-weight: 100;
  font-style: normal;
  src: url(../assets/fonts/SBSansDisplay-Thin.woff2) format("woff2"), url(../assets/fonts/SBSansDisplay-Thin.woff) format("woff");
  font-display: swap;
}
@font-face {
  font-family: "SBSansDisplay";
  font-weight: 300;
  font-style: normal;
  src: url(../assets/fonts/SBSansDisplay-Light.woff2) format("woff2"), url(../assets/fonts/SBSansDisplay-Light.woff) format("woff");
  font-display: swap;
}
@font-face {
  font-family: "SBSansDisplay";
  font-weight: 400;
  font-style: normal;
  src: url(../assets/fonts/SBSansDisplay-Regular.woff2) format("woff2"), url(../assets/fonts/SBSansDisplay-Regular.woff) format("woff");
  font-display: swap;
}
@font-face {
  font-family: "SBSansDisplay";
  font-weight: 600;
  font-style: normal;
  src: url(../assets/fonts/SBSansDisplay-SemiBold.woff2) format("woff2"), url(../assets/fonts/SBSansDisplay-SemiBold.woff) format("woff");
  font-display: swap;
}
@font-face {
  font-family: "SBSansDisplay";
  font-weight: 700;
  font-style: normal;
  src: url(../assets/fonts/SBSansDisplay-Bold.woff2) format("woff2"), url(../assets/fonts/SBSansDisplay-Bold.woff) format("woff");
  font-display: swap;
}
/**
Andy Bell
https://hankchizljaw.com/wrote/a-modern-css-reset/
 */
/* Box sizing rules */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Remove default padding */
ul,
ol {
  padding: 0;
}

/* Remove default margin */
body,
h1,
h2,
h3,
h4,
p,
ul,
ol,
li,
figure,
figcaption,
blockquote,
dl,
dd {
  margin: 0;
}

/* Remove list styles on ul, ol elements with a class attribute */
ul,
ol {
  list-style: none;
}

/* A elements that don't have a class get default styles */
a:not([class]) {
  text-decoration-skip-ink: auto;
}

/* Make images easier to work with */
img {
  max-width: 100%;
  display: block;
}

/* Inherit fonts for inputs and buttons */
input,
button,
textarea,
select {
  font: inherit;
}

/* Remove all animations and transitions for people that prefer not to see them */
@media (prefers-reduced-motion: reduce) {
  * {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  /* display: none; <- Crashes Chrome on hover */
  -webkit-appearance: none;
  margin: 0; /* <-- Apparently some margin are still there even though it's hidden */
}

input[type=number] {
  -moz-appearance: textfield; /* Firefox */
}

:root {
  --font-primery: "SBSansDisplay", "MuseoSansCyrl", "Arial", sans-serif;
  --scroll-width: calc(100vw - 100%);
  --color-white: #ffffff;
  --color-black-1: #333f48;
  --color-black-rgba80: rgba(51, 63, 72, 0.8);
  --color-black-rgba60: rgba(51, 63, 72, 0.6);
  --color-black-rgba50: rgba(51, 63, 72, 0.5);
  --color-black-rgba40: rgba(51, 63, 72, 0.4);
  --color-black-rgba30: rgba(51, 63, 72, 0.3);
  --color-gray-1: #8898a5;
  --color-gray-2: #e3e3e3;
  --color-gray-3: #dfdfdf;
  --color-green-1: #19bb4f;
  --color-green-2: #e9faec;
  --color-red-1: #ff0000;
}

:root {
  --bg-body-color: var(--color-white);
  --bg-primery-color: var(--color-black);
  --text-primery-color: var(--color-black-1);
  --icon-primery-color: var(--color-black);
  --error-primery-color: var(--color-red-1);
}

html,
body {
  height: 100%;
}

body {
  padding: 0 calc(17px - var(--scroll-width)) 0 0;
  margin: 0;
  font-weight: 400;
  font-family: var(--font-primery);
  font-size: 16px;
  line-height: 22px;
  color: var(--text-primery-color);
  background-color: var(--color-white);
}
@media screen and (max-width: 480px) {
  body {
    padding: 0 calc(10px - var(--scroll-width)) 0 0;
  }
}

a:hover {
  text-decoration: none;
}

.visually-hidden:not(:focus):not(:active),
input[type=checkbox].visually-hidden,
input[type=radio].visually-hidden,
input[type=file].visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  margin: -1px;
  border: 0;
  padding: 0;
  white-space: nowrap;
  clip-path: inset(100%);
  clip: rect(0 0 0 0);
  overflow: hidden;
}
/*!**************************************************************************************************************************************!*\
  !*** css ../node_modules/css-loader/dist/cjs.js!../node_modules/sass-loader/dist/cjs.js!./components/other/ErrorPage/errorPage.scss ***!
  \**************************************************************************************************************************************/
.errorPage {
  margin-top: 100px;
}
@media screen and (max-width: 767px) {
  .errorPage {
    margin-top: 0;
  }
}
.errorPage__wrapper {
  width: 100%;
  max-width: 1220px;
  padding: 0 50px;
  margin: 0 auto;
  box-sizing: border-box;
}
@media screen and (max-width: 767px) {
  .errorPage__wrapper {
    padding: 0 20px;
  }
}
.errorPage__flex {
  display: grid;
  align-items: center;
  grid-template-columns: auto auto;
  column-gap: 80px;
}
@media screen and (max-width: 767px) {
  .errorPage__flex {
    grid-template-columns: 1fr;
  }
}
@media screen and (max-width: 767px) {
  .errorPage__el--img {
    margin-bottom: 48px;
  }
}
.errorPage__title {
  margin-bottom: 31px;
  color: #333f48;
  font-size: 38px;
  font-weight: 600;
  line-height: 45px;
}
@media screen and (max-width: 479px) {
  .errorPage__title {
    font-size: 20px;
    line-height: 24px;
  }
}
.errorPage__text {
  margin-bottom: 12px;
  color: #333f48;
  font-size: 18px;
  font-weight: 400;
  line-height: 30px;
}
@media screen and (max-width: 479px) {
  .errorPage__text {
    font-size: 15px;
    line-height: 25px;
  }
}
.errorPage__text--mb60 {
  margin-bottom: 60px;
}
@media screen and (max-width: 767px) {
  .errorPage__text--mb60 {
    margin-bottom: 32px;
  }
}
.errorPage__link {
  color: #19bb4f;
  font-size: 18px;
  font-weight: 600;
  line-height: 30px;
  text-decoration-line: underline;
}
.errorPage__link:hover {
  text-decoration: none;
}
.errorPage__button {
  margin-top: -48px;
  max-width: 232px;
}
@media screen and (max-width: 767px) {
  .errorPage__button {
    margin-top: 0;
  }
}
@media screen and (max-width: 479px) {
  .errorPage__button {
    max-width: none;
  }
}

/*# sourceMappingURL=global.css.map*/