:root {
  --mfs-font-base: 16px;
  --mfs-font-color: #1a1a1a;
  --mfs-primary: #f84300;
  --mfs-gray-10: #1a1a1a;
  --mfs-gray-400: #666666;
  --mfs-gray-500: #808080;
  --mfs-gray-600: #a8a8a8;
  --mfs-gray-700: #cccccc;
  --mfs-gray-800: #f2f2f2;
  --mfs-white: #fff;
  --mfs-gray-10-12: #1a1a1a1f;
  --mfs-gray-10-40: #1a1a1a66;
  --mfs-green: #00c767;
  --mfs-green-light: #f5fffa;
  --mfs-red: #c7002a;
  --mfs-red-light: #fff5f7;
  --mfs-error: #f7003a;
  interpolate-size: allow-keywords;
}

@font-face {
  font-family: "MBLZ";
  src: url("MBLZ.eot"); /* IE9 Compat Modes */
  src: url("MBLZ.eot?#iefix") format("embedded-opentype"),
    /* IE6-IE8 */ url("MBLZ.ttf") format("truetype");
}

@font-face {
  font-family: "MBLZ";
  src: url("MBLZ_bold.eot"); /* IE9 Compat Modes */
  src: url("MBLZ_bold.eot?#iefix") format("embedded-opentype"),
    /* IE6-IE8 */ url("MBLZ_bold.ttf") format("truetype");
  font-weight: bold;
}

body {
  font-family: "MBLZ";
  font-size: var(--mfs-font-base);
  line-height: 1.5;
  color: var(--mfs-font-color);
  background-color: #ffffff;
  margin: 0;
  box-sizing: border-box;
}

button {
  cursor: pointer;
}

.flex {
  display: flex;
}
.\!flex {
  display: flex !important;
}
.grid {
  display: grid;
}
.grid-cols-8 {
  grid-template-columns: repeat(8, minmax(0, 1fr));
}
.grid-cols-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}
.grid-cols-2 {
  grid-template-columns: 278px 1fr;
}
.flex-1 {
  flex: 1;
}
.inline-flex {
  display: inline-flex;
}
.flex-col {
  flex-direction: column;
}
.flex-row {
  flex-direction: row;
}
.self-start {
  align-self: flex-start;
}
.self-end {
  align-self: flex-end;
}
.flex-middle {
  margin: auto 0;
}
.overflow-y {
  overflow-y: auto;
}
.overflow-y-hidden {
  overflow-y: hidden;
}
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.fixed {
  position: fixed;
}
.top-0 {
  top: 0;
}
.top-\[16px\] {
  top: 16px;
}
.left-0 {
  left: 0;
}
.left-\[16px\] {
  left: 16px;
}
.right-\[12px\] {
  right: 12px;
}
.w-1\/4 {
  width: 25%;
}
.w-1\/8 {
  width: 12.5%;
}
.w-1\/2 {
  width: 50%;
}
.w-full {
  width: 100%;
}
.h-screen {
  height: 100vh;
}

.items-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.justify-end {
  justify-content: flex-end;
}
.justify-between {
  justify-content: space-between;
}
.font-bold {
  font-weight: bold;
}
.font-normal {
  font-weight: normal;
}
.text-lg {
  font-size: 18px;
  line-height: 24px;
}
.text-xl {
  font-size: 20px;
  line-height: 24px;
}
.text-2xl {
  font-size: 24px;
  line-height: normal;
}
.text-3xl {
  font-size: 32px;
  line-height: 32px;
}
.text-base {
  font-size: var(--mfs-font-base);
  line-height: normal;
}
.text-sm {
  font-size: 14px;
  line-height: 24px;
}
.text-xs {
  font-size: 12px;
  line-height: normal;
}
.text-primary {
  color: var(--mfs-primary);
}
.text-gray-400 {
  color: var(--mfs-gray-400);
}
.text-error {
  color: var(--mfs-error) !important;
}
.text-green {
  color: var(--mfs-green);
}

.p-0 {
  padding: 0;
}

.p-\[40px\] {
  padding: 40px;
}

.px-\[24px\] {
  padding-left: 24px;
  padding-right: 24px;
}

.px-\[40px\] {
  padding-left: 40px;
  padding-right: 40px;
}

.py-\[8px\] {
  padding-top: 8px;
  padding-bottom: 8px;
}
.py-\[16px\] {
  padding-top: 16px;
  padding-bottom: 16px;
}
.py-\[24px\] {
  padding-top: 24px;
  padding-bottom: 24px;
}
.pl-\[8px\] {
  padding-left: 8px;
}

.pt-\[120px\] {
  padding-top: 120px;
}
.pb-\[48px\] {
  padding-bottom: 48px;
}

.border-0 {
  border: none;
}

.border-1 {
  border-width: 1px;
  border-style: solid;
}

.border-gray-700 {
  border-color: var(--mfs-gray-700);
}

.border-green {
  border-color: var(--mfs-green);
}
.border-red {
  border-color: var(--mfs-red);
}
.border-error,
.border-errors {
  border-color: var(--mfs-error) !important;
}

.w-\[378px\] {
  width: 378px;
}

.my-0 {
  margin-top: 0;
  margin-bottom: 0;
}

.mx-auto {
  margin-left: auto;
  margin-right: auto;
}

.bg-gray-800 {
  background-color: var(--mfs-gray-800);
}

.bg-green-light {
  background-color: var(--mfs-green-light);
}

.bg-red-light {
  background-color: var(--mfs-red-light);
}

.bg-transparent {
  background-color: transparent;
}

.bottom-0 {
  bottom: 0;
}

.box-border {
  box-sizing: border-box;
}

.gap-\[4px\] {
  gap: 4px;
}
.gap-\[8px\] {
  gap: 8px;
}
.gap-\[10px\] {
  gap: 10px;
}
.gap-\[16px\] {
  gap: 16px;
}
.gap-\[24px\] {
  gap: 24px;
}
.gap-\[32px\] {
  gap: 32px;
}
.gap-\[48px\] {
  gap: 48px;
}

.uppercase {
  text-transform: uppercase;
}

.leading-\[16px\] {
  line-height: 16px;
}

.mfs-form-control {
  position: relative;
  font-size: 16px;
  font-weight: normal;
}
.mfs-form-control input {
  font-family: "MBLZ";
  font-size: var(--mfs-font-base);
  width: 100%;
  padding: 16px;
  border: 1px solid var(--mfs-gray-500);
  color: var(--mfs-font-color);
  border-radius: 2px;
  outline: none;
  box-sizing: border-box;
  height: 56px;
}
.mfs-form-control label {
  font-weight: normal;
  font-size: 18px;
  line-height: 24px;
  background: var(--mfs-white);
  padding: 0 4px;
  transition: 0.2s;
  color: var(--mfs-gray-400);
  pointer-events: none;
}
.mfs-form-control input:hover {
  border: 1px solid var(--mfs-gray-10);
  color: var(--mfs-gray-10);
}
.mfs-form-control input:hover + label {
  color: var(--mfs-gray-10);
}
.mfs-form-control input:not(:focus) + label {
  position: absolute;
  left: 12px;
  top: 14px;
}
.mfs-form-control input:focus + label,
.mfs-form-control input.filled + label {
  position: absolute;
  font-size: 12px;
  left: 12px;
  top: -10px;
}

.mfs-form-control input:focus + label {
  color: var(--mfs-primary);
}

.mfs-form-control input:focus {
  border-color: var(--mfs-primary);
  box-shadow: inset 0 0 0px 1px var(--mfs-primary);
}

.mfs-form-control input:disabled {
  background-color: #fff;
  border-color: #99999929;
  color: var(--mfs-gray-600);
}

.mfs-form-control input:disabled + label {
  color: var(--mfs-gray-600);
}

.no-underline {
  text-decoration-line: none;
}

.text-inherit {
  color: inherit;
}

.text-center {
  text-align: center;
}

.opacity-0 {
  opacity: 0;
}

.cursor-pointer {
  cursor: pointer;
}

.mfs-button {
  border-radius: 1px;
  padding: 16px 24px;
  border: none;
  text-transform: uppercase;
  font-family: "MBLZ";
  font-size: 16px;
  font-weight: bold;
  background-color: var(--mfs-primary);
  color: #fff;
  text-decoration: none;
}

.mfs-button:disabled {
  background-color: var(--mfs-gray-10-12);
  color: var(--mfs-gray-10-40);
}

.mfs-button-secondary {
  width: 100%;
  border-radius: 1px;
  padding: 10px 24px;
  border: 1px solid #000;
  text-transform: uppercase;
  font-family: "MBLZ";
  font-size: 16px;
  line-height: 16px;
  background-color: #fff;
  color: #000;
  text-decoration: none;
  box-sizing: border-box;
  text-align: center;
  font-weight: bold;
}
@media screen and (max-width: 819px) {
  .sm\:flex {
    display: flex !important;
  }
  .sm\:flex-col {
    flex-direction: column !important;
  }
  .sm\:px-\[24px\] {
    padding-left: 24px;
    padding-right: 24px;
  }
  .sm\:py-\[32px\] {
    padding-top: 32px;
    padding-bottom: 32px;
  }
  .sm\:overflow-y-unset {
    overflow-y: unset;
  }
  .sm\:pt-0 {
    padding-top: 0;
  }
  .sm\:relative {
    position: relative;
  }
  .sm\:gap-\[32px\] {
    gap: 32px;
  }
  .sm\:gap-\[48px\] {
    gap: 48px;
  }
  .sm\:items-center {
    align-items: center;
  }
  .sm\:mx-0 {
    margin-left: 0;
    margin-right: 0;
  }
  .sm\:w-full {
    width: 100%;
  }
  .sm\:text-xl {
    font-size: 20px;
    line-height: normal;
  }
  .sm\:h-\[51px\] {
    height: 51px;
  }
  .sm\:-top-\[32px\] {
    top: -32px;
  }
}
