html {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Open Sans", "Helvetica Neue", "Microsoft Yahei", sans-serif;
}

header {
  position: fixed;
  min-width: 100%;
  width: 100%;
  left: 0;
  top: 0;
  font-size: 0.8rem;
  color: white;
  z-index: 10;
  -webkit-backdrop-filter: blur(20px);
  backdrop-filter: blur(20px);
}

input::-webkit-input-placeholder {
  color: #5D5D5D;
  opacity: 0.8;
}

input::-moz-placeholder {
  color: #5D5D5D;
  opacity: 0.8;
}

input:-ms-input-placeholder {
  color: #5D5D5D;
  opacity: 0.8;
}

input::-ms-input-placeholder {
  color: #5D5D5D;
  opacity: 0.8;
}

input::placeholder {
  color: #5D5D5D;
  opacity: 0.8;
}

.inflow {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
}

.top-bar {
  position: relative;
  z-index: 1;
  height: 2.5rem;
  color: #8D8D8D;
}
.top-bar > .container {
  min-width: 1200px;
  height: 32px;
  overflow: visible;
}
@media screen and (min-width: 1900px) {
  .top-bar > .container {
    min-width: 1400px;
  }
}
@media screen and (min-width: 2500px) {
  .top-bar > .container {
    min-width: 1600px;
  }
}
.top-bar .login-items {
  margin-top: 8px;
  width: 85%;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: end;
}
.top-bar .company-details {
  font-size: 12px;
  margin-right: 12px;
}
.top-bar .company-details .date {
  padding-right: 12px;
}
.top-bar .company-details .date-divider {
  display: inline-block;
  height: 10px;
  border-right: 1px solid black;
}
.top-bar .company-details .time {
  padding-left: 12px;
}
.top-bar .company-details .timenow {
  margin-right: 12px;
}
.top-bar .actions-wrapper {
  margin-left: auto;
}
.top-bar .after-login {
  margin-left: 20px;
}
.top-bar .logo {
  height: 4.2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-transition: height 300ms cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: height 300ms cubic-bezier(0.075, 0.82, 0.165, 1);
}
.top-bar .logo img {
  height: 30px;
  width: auto;
  -webkit-transition: height 300ms cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: height 300ms cubic-bezier(0.075, 0.82, 0.165, 1);
}

.bottom-bar {
  width: 100%;
  margin-top: -28px;
  height: 4.5rem;
  background: transparent;
  color: #000;
  -webkit-transition: height 300ms cubic-bezier(0.075, 0.82, 0.165, 1);
  transition: height 300ms cubic-bezier(0.075, 0.82, 0.165, 1);
}
.bottom-bar > .container {
  height: 100%;
  padding-top: 5px;
  min-width: 1200px;
}
@media screen and (min-width: 1900px) {
  .bottom-bar > .container {
    min-width: 1400px;
  }
}
@media screen and (min-width: 2500px) {
  .bottom-bar > .container {
    min-width: 1600px;
  }
}
.bottom-bar .menu {
  margin-left: auto;
  -webkit-box-pack: right;
  -ms-flex-pack: right;
  justify-content: right;
}
.bottom-bar .menu .menu-item {
  position: relative;
  font-size: 14px;
  text-align: center;
}
.bottom-bar .menu .menu-item a {
  color: #8D8D8D;
  position: relative;
}
.bottom-bar .menu .menu-item.active a {
  color: #FF8307;
}
.bottom-bar .menu .menu-item a:hover {
  color: #FF8307;
}
.bottom-bar .menu .menu-item:not(:last-child)::after {
  content: "";
  display: inline-block;
  margin-left: 34px;
  margin-right: 34px;
  border-right: 1px solid #354660;
  height: 12px;
  z-index: 1;
}
.bottom-bar .actions-wrapper {
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.bottom-bar .login-wrapper {
  width: 20rem;
  -webkit-box-flex: 20rem;
  -ms-flex: 20rem 0 0px;
  flex: 20rem 0 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-box-pack: end;
  -ms-flex-pack: end;
  justify-content: flex-end;
}
.bottom-bar .login-wrapper input.login {
  width: 6.5rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.bottom-bar .button-wrapper {
  -webkit-box-flex: 0;
  -ms-flex-positive: 0;
  flex-grow: 0;
  -ms-flex-negative: 0;
  flex-shrink: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.flex {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.flex.flex-col {
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}
.flex.flex-space-between {
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.flex.flex-space-evenly {
  -webkit-box-pack: space-evenly;
  -ms-flex-pack: space-evenly;
  justify-content: space-evenly;
}
.flex.flex-justify-start {
  -webkit-box-pack: start;
  -ms-flex-pack: start;
  justify-content: flex-start;
}
.flex.flex-align-start {
  -webkit-box-align: start;
  -ms-flex-align: start;
  align-items: flex-start;
}

.flex-start-self {
  -ms-flex-item-align: start;
  align-self: flex-start;
}

body {
  min-width: 1200px;
}

body,
.container {
  min-width: 62.5rem;
}
body.large,
.container.large {
  min-width: 75rem;
}

@media (max-width: 1300px) {
  .container {
    padding-right: 50px;
  }
}
.help-more-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  min-height: 766px;
  width: 1200px;
  padding-top: 10rem;
}
.help-more-container__tab {
  min-width: 200px;
  background: #F0F4F9;
  padding: 40px 16px 40px 16px;
  border: 1px solid #DDDDDD;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
  border-right: none;
}
.help-more-container__tab .tab-header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-left: 24px;
  cursor: pointer;
}
.help-more-container__tab .tab-header:hover {
  opacity: 0.8;
}
.help-more-container__tab h5 {
  color: #506F9F;
  font-size: 18px;
  font-weight: 400;
  margin: 0 0 0 16px;
}
.help-more-container__tab p {
  color: #354660;
}
.help-more-container__tab p.tab-title {
  font-size: 16px;
  margin: 20px 0 0 20px;
}
.help-more-container__tab p.tab-subtitle {
  font-size: 12px;
  margin: 12px 0 0 20px;
}
.help-more-container__tab ul {
  margin: 6px 0 6px 0;
  -webkit-padding-start: 0;
  padding-inline-start: 0;
  color: #167DDE;
  font-size: 14px;
  line-height: 1.8;
  list-style: inside;
  cursor: pointer;
}
.help-more-container__tab ul li {
  padding-left: 24px;
}
.help-more-container__tab ul li:hover {
  opacity: 0.8;
}
.help-more-container__tab ul li.active {
  background: #E1E7F0 0% 0% no-repeat padding-box;
  border-radius: 6px;
}
.help-more-container__content {
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  border: 1px solid #DDDDDD;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 5px;
  background-color: #FFFFFF;
}
.help-more-container__content iframe {
  width: 100%;
  height: 100%;
  border: none;
}
/*# sourceMappingURL=../maps/help-more-novice.css.map */
