/* Base */
/* Font */
@font-face {
  font-family: ALS Hauss;
  font-weight: 300;
  src: url("../../fonts/ALSHauss-Light.ttf") format("truetype");
}
@font-face {
  font-family: ALS Hauss;
  font-weight: 400;
  src: url("../../fonts/ALSHauss-Regular.woff") format("woff");
}
@font-face {
  font-family: ALS Hauss;
  font-weight: 500;
  src: url("../../fonts/ALSHauss-Medium.woff") format("woff");
}
@font-face {
  font-family: ALS Hauss;
  font-weight: 700;
  src: url("../../fonts/ALSHauss-Bold.woff") format("woff");
}
@font-face {
  font-family: ALS Hauss;
  font-weight: 900;
  src: url("../../fonts/ALSHauss-Black.woff") format("woff");
}
/* Imports */
/* Reset and base styles  */
* {
  padding: 0px;
  margin: 0px;
  border: none;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Links */
a, a:link, a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

/* Common */
aside, nav, footer, header, section, main {
  display: block;
}

h1, h2, h3, h4, h5, h6, p {
  font-size: inherit;
  font-weight: inherit;
  word-wrap: normal;
  white-space: pre-wrap;
  -moz-tab-size: 8;
    -o-tab-size: 8;
       tab-size: 8;
}

ul, ul li {
  list-style: none;
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

img {
  vertical-align: middle;
}

address {
  font-style: normal;
}

/* Form */
input, textarea, button, select {
  font-family: inherit;
  font-size: inherit;
  color: inherit;
  background-color: transparent;
}

input::-ms-clear {
  display: none;
}

button, input[type=submit] {
  display: inline-block;
  box-shadow: none;
  background-color: transparent;
  background: none;
  cursor: pointer;
}

input, input:focus, input:active, label,
button:focus, button:active {
  outline: none !important;
  -webkit-tap-highlight-color: transparent !important;
  -webkit-focus-ring-color: transparent !important;
}

button::-moz-focus-inner {
  padding: 0;
  border: 0;
}

label {
  cursor: pointer;
}

legend {
  display: block;
}

:root {
  /* Font */
  --main-font-family: ALS Hauss, Arial, sans-serif;
  --main-font-weight: 400;
  --base-html-font-size: 10px;
  /* Text Colors */
  --text-primary-color: #252525;
  --text-secondary-color: #777777;
  --text-alternative-color: #ffffff;
  /* State Colors */
  --ui-default-color: #c30341;
  --ui-light-color: #edb1c4;
  --ui-dark-color: #930331;
  /* Other UI Colors */
  --ui-body-background-color: #f5f5f5;
  --ui-section-background-color: #ffffff;
  --ui-border-color: #d7d7d7;
  /* Paddings & Margins & Gaps */
  --ui-section-padding: 24px;
  --ui-section-border-radius: 16px;
  --ui-sections-gap: 24px;
  --ui-action-tag-padding: 8px 16px;
  --ui-action-tag-border-radius: 8px;
}

html {
  font-family: var(--main-font-family);
  font-weight: var(--main-font-weight);
  font-size: var(--base-html-font-size);
  line-height: 1.5;
  text-rendering: optimizeLegibility;
  -webkit-text-size-adjust: 100%;
}

body {
  font-size: 1.6rem;
  color: var(--text-primary-color);
  background-color: var(--ui-body-background-color);
  background-image: url(../../images/bg.svg);
  background-size: 25%;
  opacity: 1;
  transition: 0.3s all;
}

main {
  min-height: calc(100vh - 80px - 38px - 24px);
}

.container {
  width: 100%;
  padding: 0 16px;
  margin: 0 auto;
}
@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}
@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}
@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}
@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}
@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}
@media (min-width: 1600px) {
  .container {
    max-width: 1500px;
  }
}

/* Blocks */
/* Loader style */
.loader {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 9999;
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.75);
  opacity: 0;
  pointer-events: none;
  transition: all 0.3s;
}
.loader--visible {
  opacity: 1;
}

.loader__item {
  position: relative;
  width: 200px;
  height: 140px;
  background: #c30341;
  border-radius: 8px;
  perspective: 1000px;
}
.loader__item::after, .loader__item::before {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  right: 10px;
  border-radius: 8px;
}
.loader__item::after {
  width: calc(50% - 10px);
  background: #fff no-repeat;
  background-image: linear-gradient(#ddd 100px, transparent 0), linear-gradient(#ddd 100px, transparent 0), linear-gradient(#ddd 100px, transparent 0);
  background-position: 50% 30px, 50% 60px, 50% 90px;
  background-size: 60px 10px;
  transform: rotateY(0);
  transform-origin: left center;
  animation: paging 1.5s linear infinite;
}
.loader__item::before {
  left: 10px;
  background: #f5f5f5 no-repeat;
  background-image: linear-gradient(#ddd 100px, transparent 0), linear-gradient(#ddd 100px, transparent 0), linear-gradient(#ddd 100px, transparent 0), linear-gradient(#ddd 100px, transparent 0), linear-gradient(#ddd 100px, transparent 0), linear-gradient(#ddd 100px, transparent 0);
  background-position: 15px 30px, 15px 60px, 15px 90px, 105px 30px, 105px 60px, 105px 90px;
  background-size: 60px 10px;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2509803922);
}

@keyframes paging {
  to {
    transform: rotateY(-180deg);
  }
}
/* Header style */
.header {
  color: var(--text-alternative-color);
  background-color: var(--ui-default-color);
}

.header__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 10px 0;
}

.logo__link {
  display: block;
  width: 138px;
}
.logo__link img {
  width: 100%;
  transition: all 0.3s;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.user__inner {
  display: flex;
  align-items: center;
  gap: 8px;
}

@media (max-width: 450px) {
  .user__content {
    display: none;
  }
}

.user__name {
  font-size: 1.6rem;
  font-weight: 500;
  text-align: right;
}

.user__post {
  font-size: 1.2rem;
  text-align: right;
}

.user__avatar {
  display: block;
  width: 60px;
  height: 60px;
}

/* Header2 style */
.header2 {
  position: sticky;
  top: 0;
  color: var(--text-alternative-color);
  background-color: var(--ui-default-color);
}

.header2__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  padding: 5px 0;
}
.header2__inner .logo2__img > img {
  display: block;
  height: 30px;
}

/* Section style */
.sections {
  display: flex;
  flex-direction: column;
  gap: 24px;
  opacity: 1;
  transition: 0.3s all;
}
.sections > .section:first-child {
  padding-top: 64px;
  border-radius: 0 0 10px 10px;
}
.sections--hidden {
  opacity: 0;
}
.sections--content-center {
  justify-content: center;
  align-items: center;
}

.section {
  padding: var(--ui-section-padding);
  background-color: var(--ui-section-background-color);
  border-radius: var(--ui-section-border-radius);
}

.section__title {
  font-size: 2.4rem;
  font-weight: 500;
  margin-bottom: 16px;
}
.section__title--center {
  text-align: center;
}
.section__title .section__subtitle {
  font-size: 1.8rem;
  font-weight: 400;
  color: var(--text-secondary-color);
}
.section__title .section__subtitle--center {
  text-align: center;
}

.section__content {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section__text {
  color: var(--text-secondary-color);
}
.section__text--center {
  text-align: center;
}
.section__text p b {
  font-weight: 500;
}

/* Input style */
.input {
  display: block;
  line-height: 1;
  color: var(--text-primary-color);
  text-align: inherit;
  padding: var(--ui-action-tag-padding);
  border: 1px solid var(--ui-border-color);
  border-radius: var(--ui-action-tag-border-radius);
  transition: all 0.3s ease-in;
}
.input::-moz-placeholder {
  color: var(--text-secondary-color);
}
.input::placeholder {
  color: var(--text-secondary-color);
}
.input[type=number] {
  width: 150px;
  text-align: center;
}
.input:hover, .input:focus {
  border-color: var(--ui-default-color);
}
.input:-moz-read-only {
  color: var(--text-secondary-color);
  background-color: var(--ui-body-background-color);
  border-color: var(--ui-border-color);
  cursor: not-allowed;
}
.input:disabled, .input:read-only {
  color: var(--text-secondary-color);
  background-color: var(--ui-body-background-color);
  border-color: var(--ui-border-color);
  cursor: not-allowed;
}
.input--width-100-percent {
  width: 100%;
}
.input--without-border {
  padding: 0;
  border: none;
}

.input-button {
  display: flex;
  min-width: 100px;
  position: relative;
}
.input-button input[type=checkbox], .input-button input[type=radio] {
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: -1;
  transform: translate(-50%, -50%);
  opacity: 0;
}
.input-button input[type=checkbox] + label, .input-button input[type=radio] + label {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 8px;
  text-align: center;
  color: var(--text-primary-color);
  padding: var(--ui-action-tag-padding);
  border: 1px solid var(--ui-border-color);
  border-radius: var(--ui-action-tag-border-radius);
  transition: all 0.3s ease-in;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
}
.input-button input[type=checkbox] + label svg, .input-button input[type=checkbox] + label svg *, .input-button input[type=radio] + label svg, .input-button input[type=radio] + label svg * {
  transition: all 0.3s ease-in;
}
.input-button input[type=checkbox] + label svg, .input-button input[type=radio] + label svg {
  flex-shrink: 0;
}
.input-button input[type=checkbox] + label svg .border, .input-button input[type=radio] + label svg .border {
  stroke: var(--ui-border-color);
}
.input-button input[type=checkbox] + label svg .mark, .input-button input[type=radio] + label svg .mark {
  fill: var(--ui-border-color);
}
.input-button input[type=checkbox] + label input, .input-button input[type=radio] + label input {
  text-align: start;
}
.input-button input[type=checkbox]:hover + label, .input-button input[type=checkbox]:focus + label, .input-button input[type=checkbox] + label:hover, .input-button input[type=radio]:hover + label, .input-button input[type=radio]:focus + label, .input-button input[type=radio] + label:hover {
  border-color: var(--ui-default-color);
}
.input-button input[type=checkbox]:hover + label svg .border, .input-button input[type=checkbox]:focus + label svg .border, .input-button input[type=checkbox] + label:hover svg .border, .input-button input[type=radio]:hover + label svg .border, .input-button input[type=radio]:focus + label svg .border, .input-button input[type=radio] + label:hover svg .border {
  stroke: var(--ui-default-color);
}
.input-button input[type=checkbox]:checked + label, .input-button input[type=radio]:checked + label {
  color: var(--text-alternative-color);
  background-color: var(--ui-default-color);
  border-color: var(--ui-default-color);
}
.input-button input[type=checkbox]:checked + label svg .border, .input-button input[type=radio]:checked + label svg .border {
  fill: var(--ui-default-color);
  stroke: var(--ui-default-color);
}
.input-button input[type=checkbox]:checked + label svg .mark, .input-button input[type=radio]:checked + label svg .mark {
  fill: #fff;
}
.input-button input[type=checkbox]:checked + label input, .input-button input[type=radio]:checked + label input {
  background-color: #fff;
}
.input-button input[type=checkbox]:checked:focus + label, .input-button input[type=radio]:checked:focus + label {
  box-shadow: 0 0 5px var(--ui-default-color);
}
.input-button input[type=checkbox]:disabled + label, .input-button input[type=radio]:disabled + label {
  color: var(--text-secondary-color);
  background-color: var(--ui-body-background-color);
  border-color: var(--ui-border-color);
  cursor: not-allowed;
}
.input-button input[type=checkbox]:disabled:checked + label, .input-button input[type=radio]:disabled:checked + label {
  color: var(--text-alternative-color);
  background-color: var(--ui-light-color);
  border-color: var(--ui-light-color);
}
.input-button--rating-button {
  min-width: auto;
}
.input-button--rating-button input[type=checkbox] + label, .input-button--rating-button input[type=radio] + label {
  width: 30px;
  height: 30px;
  padding: 0;
  border-radius: 50%;
}

/* Button style */
.button {
  display: block;
  font-weight: 400;
  font-size: 1.8rem;
  color: var(--text-alternative-color);
  padding: var(--ui-action-tag-padding);
  background-color: var(--ui-default-color);
  border-radius: var(--ui-action-tag-border-radius);
  transition: all 0.3s ease-in;
}
.button:hover, .button:focus {
  background-color: var(--ui-dark-color);
}
.button:disabled {
  background-color: var(--ui-light-color);
  cursor: not-allowed;
}

.field__title {
  display: block;
  font-size: 1.8rem;
  color: var(--text-primary-color);
  text-align: inherit;
  margin-bottom: 4px;
  cursor: default;
}

.field__content {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
.field__content--min-gap {
  gap: 4px;
}
.field__content--column {
  flex-direction: column;
}
.field__content--center {
  justify-content: center;
}
.field__content--space-around {
  justify-content: space-around;
}
.field__content--stretch {
  justify-content: stretch;
}
.field__content--stretch > * {
  flex-grow: 1;
}

.field__input, .field__text {
  width: 100%;
}

.field__text {
  color: var(--text-secondary-color);
  text-align: inherit;
}
.field__text--center {
  text-align: center;
}
.field__text p b {
  font-weight: 500;
}

/* Table style */
.table {
  width: 100%;
  table-layout: fixed;
  color: var(--text-primary-color);
  text-align: center;
  padding: var(--ui-action-tag-padding);
  border: 1px solid var(--ui-border-color);
  border-spacing: 0;
  border-radius: var(--ui-section-border-radius);
  transition: all 0.3s;
}
.table caption {
  font-size: 1.8rem;
  text-align: start;
  color: var(--text-primary-color);
  margin-bottom: 4px;
}
.table th, .table td {
  font-weight: 400;
  text-align: inherit;
  padding: var(--ui-action-tag-padding);
  border-bottom: 1px solid var(--ui-border-color);
}
.table thead th {
  padding-top: 0;
}
.table thead th:first-child {
  width: 25%;
}
.table tbody tr:last-child th, .table tbody tr:last-child td {
  padding-bottom: 0;
  border-bottom: none;
}
.table--with-counter-column thead th:first-child {
  width: 25px;
}
.table--with-counter-column tr th:first-child, .table--with-counter-column tr td:first-child {
  color: var(--text-secondary-color);
  padding-left: 0;
  padding-right: 0;
}
.table--with-counter-column thead th:nth-child(2) {
  width: 25%;
}
.table--with-add-row-button tr:last-child td:first-child {
  width: 100%;
}
.table .field, .table .field__title, .table .field__content {
  width: 100%;
}
.table .field__label, .table .field__title {
  display: none;
}
.table .field__text {
  color: inherit;
}
.table .button {
  width: 100%;
}
@media (max-width: 1250px) {
  .table {
    text-align: start;
  }
  .table thead {
    display: none;
  }
  .table tr {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    border-bottom: 1px solid var(--ui-border-color);
  }
  .table tr:last-child {
    border: none;
  }
  .table tr:last-child th:last-child, .table tr:last-child td:last-child {
    padding-bottom: 0;
  }
  .table tbody tr:last-child th, .table tbody tr:last-child td {
    padding: var(--ui-action-tag-padding);
  }
  .table th, .table td {
    width: 100%;
    border: none;
  }
  .table th[scope=row] {
    width: 100%;
    text-align: center;
  }
  .table th[scope=row] .field__title {
    display: none;
  }
  .table th[scope=row] .field__content {
    width: 100%;
  }
  .table th[scope=row] .field__input {
    width: 100%;
  }
  .table .field {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .table .field__title, .table .field__content, .table .field__input {
    width: 50%;
  }
  .table .field__title {
    display: block;
    margin-bottom: 0;
  }
  .table--with-counter-column tbody tr th:first-child, .table--with-counter-column tbody tr td:first-child {
    width: 25px;
    padding-left: 0;
    padding-right: 0;
  }
  .table--with-counter-column tbody tr th:first-child .field__title, .table--with-counter-column tbody tr td:first-child .field__title {
    display: none;
  }
  .table--with-counter-column th[scope=row] {
    width: calc(100% - 25px);
  }
}
@media (max-width: 750px) {
  .table .field {
    flex-direction: column;
    align-items: start;
  }
  .table .field__title, .table .field__content, .table .field__input {
    width: 100%;
  }
  .table .field__label, .table .field__title {
    margin-bottom: 4px;
  }
  .table .field__input {
    text-align: inherit;
  }
}

/* Footer style */
.footer {
  color: var(--text-alternative-color);
  margin-top: 24px;
  background-color: var(--ui-default-color);
}

.footer__inner {
  padding: 10px 0;
}

.footer__copyrights {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1.2rem;
  color: var(--ui-light-color);
}
@media (max-width: 750px) {
  .footer__copyrights {
    justify-content: center;
    flex-direction: column;
    text-align: center;
  }
}/*# sourceMappingURL=main.css.map */