@import url(https://fonts.googleapis.com/css?family=Heebo:300,400,500,700|Roboto:300,400,500,700&display=swap&subset=latin-ext);
.p1 {
  font-size: 15px;
  line-height: 22px;
}

.p2 {
  font-size: 15px;
  line-height: 22px;
}
@media all and (min-width: 576px) {
  .p2 {
    font-size: 17px;
    line-height: 25px;
  }
}

.p3 {
  font-size: 20px;
  line-height: 29px;
}
@media all and (min-width: 576px) {
  .p3 {
    font-size: 22px;
    line-height: 32px;
  }
}

body {
  font-family: "Heebo", "Roboto", sans-serif;
  font-style: normal;
  font-weight: normal;
}

.bold,
h3,
.h3,
h2,
.h2,
h1,
.h1,
.header,
header button,
header input[type=submit],
footer button,
footer input[type=submit] {
  font-style: normal;
  font-weight: bold;
}

.header .content .links,
.font-menu {
  font-size: 13px;
  line-height: 19px;
  letter-spacing: 0.05em;
}

header button,
header input[type=submit],
footer button,
footer input[type=submit] {
  font-size: 14px;
  line-height: 100%;
}
@media all and (min-width: 768px) {
  header button,
header input[type=submit],
footer button,
footer input[type=submit] {
    font-size: 16px;
    line-height: 100%;
  }
}

html {
  scroll-behavior: smooth;
}

button.main-fill,
input[type=submit].main-fill {
  border: none;
  border-radius: 3px;
  background: #5da09d;
  color: #fff;
}

button.main-fill {
  box-shadow: 0 4px 37px rgba(0, 0, 0, 0.15);
}

button.main-stroke {
  border-radius: 3px;
  border: 1px solid #5da09d;
  background: rgba(255, 255, 255, 0);
  color: #5da09d;
  transition: color 0.2s, background 0.2s;
}
button.main-stroke:hover {
  border-color: rgba(93, 160, 157, 0);
  background: #5da09d;
  color: #fff;
}

@media all and (min-width: 1440px) {
  .container {
    max-width: 1200px;
  }
}

.header {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  right: 0;
  padding-top: 5px;
  /*padding-bottom: 10px;*/
  background: rgba(255, 255, 255, 0.75);
  background: linear-gradient(180deg, white 0%, rgba(255, 255, 255, 0.5) 65%, rgba(255, 255, 255, 0) 100%);
  z-index: 1;
  transition: background 0.15s ease-in-out;
  color: #000;
}
@media all and (max-width: 991px) {
  .header {
    padding-top: 0;
    padding-bottom: 0;
    font-size: 14px;
    line-height: 18px;
  }
}
.header .up-main {
  width: 65px;
  height: 65px;
}
.header.background {
  background: #fff;
}
.header .expand {
  padding: 10px;
  cursor: pointer;
}
.header a {
  color: #5da09d;
  text-decoration: none;
  transition: color 0.2s;
}
.header a:focus, .header a:hover {
  color: inherit;
  text-decoration: none;
}
.header button {
  padding: 11px 16px;
}
@media all and (min-width: 992px) {
  .header button {
    padding: 16px 20px;
  }
}
.header nav {
  padding-top: 0;
  padding-bottom: 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header .main-fill {
  box-shadow: none;
}
.header .content .right {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  overflow: hidden;
}
.header .content .right a {
  flex-shrink: 1;
}
.header .content .right .login {
  margin-left: 20px;
}
@media all and (min-width: 1200px) {
  .header .content .right .login {
    margin-left: 30px;
  }
}
@media all and (min-width: 1440px) {
  .header .content .right .login {
    margin-left: 50px;
  }
}
.header .content .links {
  flex-shrink: 0;
  letter-spacing: 0.05em;
}
@media all and (max-width: 991px) {
  .header .content .links {
    display: none;
  }
}
@media all and (max-width: 991px) {
  .header .content .right .login {
    display: none;
  }
}
@media all and (min-width: 992px) {
  .header .content .login.center {
    display: none;
  }
}
@media all and (min-width: 992px) {
  .header .content .expand {
    display: none;
  }
}
.header .content ul {
  margin-top: 7px;
  margin-bottom: 7px;
  margin-right: 0 !important;
  margin-bottom: 0;
  align-items: center;
  list-style: none;
}
.header .content li {
  display: inline;
  margin-left: 11px;
  margin-right: 11px;
}
@media all and (min-width: 1200px) {
  .header .content li {
    margin-left: 21px;
    margin-right: 21px;
  }
}
@media all and (min-width: 992px) {
  .header .content li:last-child {
    margin-right: 0;
  }
}
.header .sidebar-background {
  position: absolute;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  opacity: 0;
  background: rgba(0, 0, 0, 0.2);
  visibility: hidden;
  transition: opacity 0.2s ease-in, visibility 0.2s ease-in;
}
@media all and (min-width: 992px) {
  .header .sidebar-background {
    display: none;
  }
}
.header .sidebar-background.active {
  opacity: 1;
  visibility: visible;
}
.header .sidebar {
  position: absolute;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: stretch;
  width: 75vw;
  height: 100vh;
  right: -75vw;
  top: 0;
  padding: 20px;
  overflow: auto;
  background: #fff;
  transition: right 0.2s ease-in, width 0.2s ease-in;
  text-align: right;
}
@media all and (min-width: 992px) {
  .header .sidebar {
    display: none;
  }
}
.header .sidebar.active {
  right: 0;
}
.header .sidebar .login,
.header .sidebar .expand {
  margin-right: 12px;
  margin-left: 12px;
}
.header .sidebar .login {
  padding-bottom: 55px;
}
.header .sidebar .expand {
  margin-bottom: 55px;
  padding-right: 0;
}
.header .sidebar nav {
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  flex-grow: 1;
  align-items: stretch;
}
.header .sidebar ul {
  margin: 0;
  margin-bottom: 55px;
  padding: 0;
  list-style: none;
}
.header .sidebar li {
  padding-top: 25px;
  padding-bottom: 25px;
  padding-right: 12px;
  padding-left: 12px;
  position: relative;
}
.header .sidebar li:first-child::before, .header .sidebar li::after {
  position: absolute;
  display: block;
  width: 100%;
  height: 1px;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.07);
  content: "";
}
.header .sidebar li:first-child::before {
  top: 0;
}
.header .sidebar li::after {
  bottom: 0;
}

footer {
  background: #5da09d;
  color: #f5f9f9;
  padding-top: 30px;
  padding-bottom: 10px;
}
footer h4 {
  margin-bottom: 15px;
  color: #f4f4f4;
  font-size: 16px;
  line-height: 23px;
}
footer a {
  color: inherit;
  text-decoration: none;
}
footer a:focus, footer a:hover {
  color: inherit;
  text-decoration: underline;
}
footer .row {
  margin-left: 0;
  margin-right: 0;
}
footer p {
  margin-bottom: 0;
  font-weight: 300;
}
footer .item {
  margin-bottom: 20px;
}

.qf,
body {
  font-weight: normal;
  font-size: 18px;
  line-height: 24px;
}

.qf2 {
  font-weight: bold;
  font-size: 16px;
  line-height: 24px;
}

h1,
.h1 {
  font-size: 40px;
  line-height: 52px;
  color: #000;
}
@media all and (min-width: 576px) {
  h1,
.h1 {
    font-size: 50px;
    line-height: 65px;
  }
}

h2,
.h2 {
  font-size: 22px;
  line-height: 32px;
  color: #000;
}
@media all and (min-width: 768px) {
  h2,
.h2 {
    font-size: 28px;
    line-height: 32px;
  }
}

h3,
.h3 {
  font-size: 17px;
  line-height: 25px;
}

a,
.a {
  color: #5da09d;
  text-decoration: underline;
}

body {
  background: #f7f7f7;
}

main {
  margin-top: 100px;
}

body.zone-login .background {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background-image: url(../../../img/portal/landing-1.png);
  background-repeat: no-repeat;
  background-size: cover;
  z-index: -1;
}
body.zone-login main {
  position: relative;
  margin-top: 0;
  min-height: 100vh;
  padding: 100px 0;
}
body.zone-login .wrapper {
  width: 100%;
  max-width: 940px;
  margin: 0 auto;
  padding: 30px 50px;
  background: white;
  box-shadow: 0 4px 37px rgba(0, 0, 0, 0.1);
  text-align: center;
}
@media all and (min-width: 768px) {
  body.zone-login .wrapper {
    padding: 30px 60px 30px 60px;
  }
}
@media all and (min-width: 1200px) {
  body.zone-login .wrapper {
    padding: 50px 70px 50px 70px;
  }
}
body.zone-login img {
  margin-bottom: 50px;
}
body.zone-login h1 {
  margin-bottom: 25px;
}
body.zone-login .description {
  color: #999;
}
body.zone-login form {
  margin-top: 50px;
}
body.zone-login input[type=submit] {
  margin-top: 39px;
}
body.zone-login input[type=text],
body.zone-login input[type=password],
body.zone-login input[type=email] {
  width: 340px;
  max-width: 100%;
  margin-bottom: 11px;
}

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

input,
.input-wrapper {
  max-width: 220px;
}

input[type=number],
input[type=text],
input[type=password],
input[type=tel],
input[type=email] {
  height: 56px;
  padding-right: 16px;
  padding-left: 16px;
  padding-top: 19px;
  padding-bottom: 19px;
  border-radius: 4px;
  border: none;
  overflow: hidden;
  transition: color 0.2s, padding 0.2s;
}
input[type=number]:not(.quiet),
input[type=text]:not(.quiet),
input[type=password]:not(.quiet),
input[type=tel]:not(.quiet),
input[type=email]:not(.quiet) {
  color: rgba(0, 0, 0, 0.54);
  /*background: rgba(#000, 0.05);
  border-bottom: 2px solid $color-highlight;*/
}
input[type=number].quiet,
input[type=text].quiet,
input[type=password].quiet,
input[type=tel].quiet,
input[type=email].quiet {
  color: rgba(0, 0, 0, 0.3);
  background: transparent;
}
input[type=number]:not(:placeholder-shown):focus,
input[type=text]:not(:placeholder-shown):focus,
input[type=password]:not(:placeholder-shown):focus,
input[type=tel]:not(:placeholder-shown):focus,
input[type=email]:not(:placeholder-shown):focus {
  color: #5da09d;
}

.textfield-wrapper {
  position: relative;
  display: inline-block;
  max-width: 100%;
  height: 56px;
  border-radius: 4px;
  overflow: hidden;
}
.textfield-wrapper input {
  width: 100%;
  height: 100% !important;
  border-bottom: none !important;
}
.textfield-wrapper input.quiet ~ .underline {
  background: rgba(0, 0, 0, 0.3);
}
.textfield-wrapper input:not(.quiet) + .underline,
.textfield-wrapper input:focus + .underline {
  background: #5da09d;
}
.textfield-wrapper input.with-title:not(:placeholder-shown) {
  padding-top: 27px;
  padding-bottom: 11px;
}
.textfield-wrapper .underline {
  position: absolute;
  height: 2px;
  width: 100%;
  content: "";
  bottom: 0;
  left: 0;
  right: 0;
}
.textfield-wrapper .help-title {
  position: absolute;
  top: 8px;
  left: 16px;
  color: rgba(0, 0, 0, 0.3);
  opacity: 1;
  font-size: 12px;
  line-height: 12px;
  white-space: nowrap;
  pointer-events: none;
  transition: opacity 0.2s;
}
.textfield-wrapper input:placeholder-shown ~ .help-title {
  opacity: 0;
}

.trailer {
  margin-left: 17px;
  color: rgba(0, 0, 0, 0.3);
  font-size: 16px;
  line-height: 23px;
}

main button,
main input[type=submit] {
  border-radius: 3px;
  padding: 15px 40px;
  border: none;
  background: #5da09d;
  color: #fff;
  font-size: 18px;
  font-weight: normal;
}
main button:disabled,
main input[type=submit]:disabled {
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
}
main button.quiet,
main input[type=submit].quiet {
  background: none;
  color: #5da09d;
}
