@import "fonts.css";

body {
  font-family: "Atlas Grotesk Web", Helvetica, sans-serif;
  background-color: black;
  background-image: url(i/bg-auth.png);
  background-repeat: repeat;
  display: flex;
  flex-direction: column;
  flex: 1;
  height: 100vh;
  --disable-color: #b3b3b3;
  --font-size-sm: 14px;
  --font-size-md: 14px;
  --radius: 0.125rem;
  --shade-color: #808080;
  --primary-color: #fa6831;
}

a {
  color: #fa6831;
}

a:hover {
  color: #e05d2d;
}

input {
  font-size: var(--font-size-md);
}

input::placeholder {
  color: var(--disable-color) !important;
  font-size: var(--font-size-md);
}

.fade {
  transition: opacity .15s linear;
}

.form-control.is-progress {
  background: url("i/spinner.svg");
  background-repeat: no-repeat;
  /* get from .is-invalid bootstrap core */
  background-position: right calc(0.375em + 0.1875rem) center;
  background-size: calc(0.75em + 0.375rem) calc(0.75em + 0.375rem);
}

.cursor-pointer {
  cursor: pointer;
}

.topnav {
  background: rgb(245, 245, 245) none repeat scroll 0% 0%;
  padding: 0;
}

.navbar {
  padding: 0;
}

.navbar .nav-item {
  display: flex;
  align-items: center;
}

.navbar-logo {
  display: flex;
  justify-content: center;
  transform: translateY(-8%);
  padding: 0;
}

.navbar-logo .brand {
  padding: 0;
}

.navbar-logo .brand img {
  width: 100%;
  height: auto;
  max-width: 10rem;
}

.topnav .nav-link {
  color: #2a2a2a;
  font-size: var(--font-size-md);
  font-weight: 700;
  padding: 0 0.75rem;
}


.topnav .nav-link:hover {
  color: #fa6831;
}

.nav-avatar {
  cursor: pointer;
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.brand {
  color: #2a2a2a;
  font-size: 18px;
  text-transform: uppercase;
  font-weight: 700;
  padding: 15px 10px 0;
  display: block;
}

.brand .logo {
  height: 20px;
  width: 162px;
  display: block;
  margin: 0 auto;
}

main {
  margin-top: 82px;
  margin-bottom: 84px;
  flex: 1;
}

.main-content {
  position: relative;
  background: #fff;
  border-radius: 2px;
  border: 1px solid #f0f0f0;
  max-width: 600px;
  padding: 16px 96px;
}

@media (min-width: 600px) {
  .main-content {
    min-width: 544px;
  }
}

.user-profile-menu {
  padding: 0;
  border-radius: 2px;
  border: 1px solid #b3b3b3;
  top: 38px;
}

.user-profile-menu:before {
  z-index: -1;
  position: absolute;
  top: -6px;
  right: 10px;
  content: "";
  width: 0;
  height: 0;
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-bottom: 5px solid #b3b3b3;
  border-radius: 2px;
}

.user-profile-menu .dropdown-item:hover,
.user-profile-menu .dropdown-item:focus {
  background: none;
  color: var(--primary-color);
}

.user-menu .dropdown-username {
  border: none;
  font-weight: 900;
}

.container-footer {
  background-color: #f5f5f5;
  padding: 46px 94px;
  border-top: 1px solid #e0e0e0;
  /* margin-bottom: 46px; */
  margin-top: -2px;
  /* override parent main container with border radius */
}

.container-footer__title {
  font-size: 16px;
  margin-bottom: 16px;
  font-weight: bold;
}

.container-footer .footer-services {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(165px, 1fr));
  grid-gap: 1rem 1rem;
}

.header {
  display: block;
  position: relative;
  border-bottom: 1px solid #f0f0f0;
  margin: 0 -96px 40px;
  padding: 0 96px 10px;
  text-align: center;
}

h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 34px;
  margin: 0;
}

.header h2 {
  text-align: center;
  font-weight: 600;
  letter-spacing: 0px;
}

.subtitle {
  color: var(--shade-color);
  font-size: 11px;
  line-height: 15px;
  margin: 8px 0;
}

.recaptcha-form .form-group {
  margin-bottom: 1rem;
}

.invalid-feedback.recaptcha {
  display: block;
}

.g-recaptcha {
  justify-content: center;
  display: flex;
}

/* Infobox */
.info-box-wrapper {
  display: block;
  background: #fff;
  color: #40c8e8;
  border-radius: 3px;
  border: 2px solid #40c8e8;
  padding: 15px 20px;
  font-size: var(--font-size-md);
  width: 100%;
  margin-bottom: 46px;
}

.modal-body h2 {
  color: #40c8e8;
}

.info-box-wrapper .ico {
  padding-right: 20px;
}

.info-box-wrapper .ico .fa,
.info-box-wrapper .ico .icon:before {
  font-size: 48px;
  vertical-align: middle;
}

.info-box-success {
  color: #65c900;
  border-color: #65c900;
}

.info-box-success-background {
  background-color: #65c9000d;
}

/* Infobox-end */

.text-primary {
  color: #fa6831 !important;
}

.text-info {
  color: #26b4d5;
}

.text-success {
  color: #5daf0b;
}

.text-success {
  color: #5daf0b;
}

.text-success a:hover,
a.text-success:hover {
  text-decoration: none;
}

.text-smaller {
  font-size: 14px;
}

.btn.btn-info {
  cursor: pointer;
  background-color: #40c8e8;
  border-color: #26b4d5;
}

.btn.btn-info:hover {
  background-color: #26b4d5;
  border-color: #26b4d5;
}

.btn.btn-outline {
  border-color: #e0e0e0;
  color: #fa6831;
  font-size: 14px;
  text-transform: initial;
}

.btn.btn-outline:hover {
  border-color: var(--primary-color);
}

.btn-icon {
  display: flex;
  align-items: center;
  border: 1px solid #e0e0e0;
}

.btn-icon i {
  padding: 0.5rem;
  font-size: 1rem;
  background: white;
  margin-right: 12px;
}

.btn-icon:hover {
  text-decoration: none;
  border-color: var(--primary-color);
}

.modal-body .icon {
  font-size: 72px;
  color: #40c8e8;
}

.modal-body {
  font-size: 14px;
}

.modal-title {
  font-size: 24px;
  font-weight: 700;
}

.modal-header .close {
  font-size: 16px;
}

#user-container {
  margin-top: 8px;
  display: grid;
  grid-auto-flow: column;
  justify-content: center;
}

#user-container .user-image {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-right: 0.5rem;
}

#user-container .user-name {
  line-height: 0;
  font-size: var(--font-size-md);
  line-height: var(--font-size-md);
  margin-bottom: 3px;
  color: #2a2a2a;
  font-weight: bold;
}

#user-container .user-email {
  line-height: 0;
  font-size: var(--font-size-sm);
  line-height: var(--font-size-sm);
  color: var(--shade-color);
}

#user-container .user-is-employee {
  font-size: 14px;
  color: #aaa;
  padding-top: 3px;
  font-style: italic;
}

.print-wrapper {
  display: none;
}

#print-container {
  margin-top: 8px;
  display: flex;
  align-items: center !important;
  -webkit-box-align: center !important;
}

#print-container .print-image {
  width: 54px;
  height: 54px;
}

#print-container .print-name {
  font-size: var(--font-size-md);
  color: #2a2a2a;
  font-weight: bold;
}

#print-container .print-user {
  font-size: var(--font-size-md);
  color: var(--disable-color);
  font-weight: normal;
}

.form-subtitle {
  font-size: 11px;
  color: var(--shade-color);
}

.field-required {
  font-size: 12px;
  color: var(--shade-color);
  font-weight: normal;
}

form label {
  font-weight: 700;
  font-size: var(--font-size-md);
  line-height: 19px;
  margin-bottom: 5px;
}

.form-control {
  border: 1px solid #f0f0f0;
  border-radius: 2px;
}

.form-control:focus {
  color: #495057;
  background-color: #fff;
  border-color: #fa6831;
  outline: 0;
  box-shadow: none;
}

.form-group-submit {
  /* margin-top: 46px; */
}

.btn {
  border-radius: 2px;
  font-size: 16px;
  text-transform: uppercase;
  padding: var(--font-size-md);
  cursor: pointer;
}

.btn-primary {
  background: #fa6831;
  border: 1px solid #e05d2d;
  color: #fff;
  font-weight: 700;
}

.btn-primary:hover,
.btn-primary:focus {
  background: #e05d2d;
  border: 1px solid #e05d2d;
}

.btn-primary:disabled,
.btn-primary.disabled {
  background: #d0d0d0;
  border-color: #d0d0d0;
  /* opacity: 0.65; */
}

.row-desktop {
  height: 3.0625rem;
}

.row-desktop .col-5 {
  display: flex;
  align-items: center;
}

.row-desktop .col-5:last-of-type {
  justify-content: flex-end;
}

.email-cover {
  font-size: var(--font-size-md);
}

.password-cover,
.social-accounts-cover {
  position: relative;
  display: flex;
  flex-wrap: wrap;
}

.social-accounts-cover .login-provider {
  width: 100%;
  margin: 5px 0px 5px 0px;
}

.password-cover .input-group-text {
  border-radius: 0 2px 2px 0;
  border-left: 0;
}

.password-cover .input-group-text:hover {
  cursor: pointer;
}

.password-cover input {
  border-radius: 2px 0 0 2px;
  margin-right: 1px;
  border-right: 1px solid #ced4da;
  flex: 1;
}

.password-cover input:focus {
  border-right: 1px solid #fa6831;
}

.password-cover input::-ms-clear,
.password-cover input::-ms-reveal {
  display: none;
}

.password-cover .asterisk {
  margin-right: 20px;
  font-size: var(--font-size-md);
}

.password-cover a,
.social-accounts-cover a {
  font-size: var(--font-size-md);
}

.cancel-link {
  text-align: center;
  margin-top: 20px;
}

.cancel-link a {
  text-decoration: underline;
  font-size: 11px;
  color: var(--disable-color);
}

.cancel-link a:hover {
  text-decoration: none;
}

.white-bg {
  background: white;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.white-bg .row {
  margin-top: 130px;
  margin-bottom: 100px;
}

.small-info-text {
  color: grey;
  font-size: 1rem;
  margin: 0;
  max-width: 330px;
  font-weight: 400;
}

h1 {
  font-size: 5.875rem;
  font-weight: 900;
  line-height: 1;
}

h1 small {
  font-weight: 900;
  font-size: 1.75rem;
}

.img-fluid {
  width: 100%;
}

.buttons {
  margin-top: 22px;
  display: flex;
}

.buttons-block-equal {
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-column-gap: 2rem;
}

.buttons .btn-primary:active,
.buttons .btn-primary:focus {
  background: #f24706 !important;
  outline: 0 !important;
  box-shadow: none !important;
  border: 1px solid #e05d2d !important;
}

#mobile-menu {
  display: none;
  background-color: white;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 3.0625rem;
  left: 0;
  font-size: 32px;
  font-weight: bold;
  padding: 0;
  overflow-y: auto;
  /* z-index to override footer */
  z-index: 1031;
  border-top: 1px solid #e0e0e0;
}

#mobile-menu .nav-link {
  display: inline;
  padding: 0;
  line-height: 42px;
}

#mobile-menu .select-wrapper {
  max-width: 60px;
  margin: 0 auto;
}

#mobile-menu ul {
  list-style: none;
  padding: 0;
}

#mobile-menu li {
  padding: 0;
  margin-bottom: 48px;
  line-height: 21px;
}

#mobile-menu li:first-child {
  margin-top: 48px;
}

#mobile-menu a {
  color: #2a2a2a;
}

#mobile-menu a:hover {
  color: #e05d2d;
}

#mobile-menu .brand {
  padding: 0;
  font-size: 32px;
}

#mobile-menu .brand img {
  height: 32px;
  width: auto;
  display: initial;
}

.sticky-footer {
  /* position: absolute;
  bottom: 0;
  left: 0;
  right: 0; */
  width: 100%;
  background-color: #2a2a2a;
  color: #fff;
}

.footer-container {
  padding-top: 30px;
  padding-bottom: 27px;
}

.footer-container .logo .logo-light {
  text-transform: uppercase;
  font-weight: 700;
  color: #fff;
  font-size: 1.125rem;
  transition: 0.15s;
}

.footer-container .logo .logo-light:hover {
  text-decoration: none;
  color: #bababa;
}

.footer-container .copyright {
  text-align: center;
  color: #bababa;
  font-size: 0.625rem;
  line-height: 24px;
}

.footer-container .links {
  /* display: inline; */
  font-size: 0.625rem;
  margin-left: 2px;
}

.footer-container .links .list-inline-item:not(:last-child) {
  margin-right: 5px;
}

.footer-container .links a {
  text-decoration: underline;
  color: #bababa;
}

.footer-container .links a:hover {
  text-decoration: none;
}

.footer-container .social svg {
  height: 20px;
  margin-left: 30px;
}

.footer-container .social svg path {
  fill: #fff;
  transition: fill 0.15s ease;
}

.footer-container .social svg:hover path {
  fill: #bababa;
}

/* language select */

.select-wrapper {
  position: relative;
  display: flex;
  height: 100%;
}

.select-wrapper .arrow {
  display: flex;
  font-size: 9.5px;
  align-items: center;
  position: absolute;
  right: 10px;
  top: 2.5px;
  bottom: 0;
  pointer-events: none;
}

.select-wrapper .lang-select {
  color: #2a2a2a;
  font-size: var(--font-size-md);
  min-width: 52px;
  padding-right: 22px;
  width: 100%;
  background: white;
  border: 1px solid #e0e0e0;
  border-radius: 2px;
  padding-left: 10px;
  padding-right: 20px;
  -webkit-appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  appearance: none;
}

.select-wrapper .lang-select:not(:focus) {
  color: #8c8c8c;
}

@media (max-width: 1410px) {
  .navbar {
    padding: 0 0.45rem;
  }

  .topnav .nav-link {
    padding: 0 0.3rem;
  }
}

@media (min-width: 992px) {

  .form-group {
    margin-bottom: 2.25rem;
  }
}

/* MOBILE */
@media (max-width: 992px) {

  .topnav .nav-link {
    color: #2a2a2a;
    font-size: var(--font-size-md);
    padding: var(--font-size-md) 6px 13px;
  }

  main {
    display: block;
    margin-top: 54px;
    margin-bottom: 0;
  }

  .header {
    margin: 0 -32px 40px;
    padding: 0 32px 15px;
  }

  .main-content {
    padding: 16px 32px;
  }

  .nav {
    padding: 0 0.75rem;
  }

  .mobile-nav {
    display: flex;
  }

  #mobile-menu-button {
    padding-left: 0px;
    display: flex;
    align-items: center;
  }

  #mobile-menu-button i {
    color: var(--shade-color);
    margin: 2px 0 0 6px;
    font-size: 25px;
  }

  #mobile-menu .nav-item:last-child {
    padding-bottom: 48px;
  }

  .mobile-nav .nav-item {
    display: flex;
    align-items: center;
  }

  .mobile-nav .nav-item:last-child .nav-link {
    padding-right: 0.5rem;
  }

  .sticky-footer {
    position: inherit;
  }
}

/* .g-recaptcha funky media selectors are for propper responsive resizing :( */

@media (max-width: 768px) {

  .footer-container .logo,
  .footer-container .social {
    text-align: center;
  }

  .footer-container .social {
    padding-top: 8px;
    padding-bottom: 16px;
  }

  .footer-container .social svg {
    margin: 0;
    width: 40px;
  }
}

@media (max-width: 1199px) {
  .g-recaptcha {
    transform: scale(0.85);
  }
}

@media (max-width: 767px) {
  .footer-container .delimiter {
    display: none;
  }

  .g-recaptcha {
    transform: scale(1.475);
    margin-top: 2rem;
  }
}

@media (max-width: 482px) {
  .buttons {
    flex-wrap: wrap;
  }

  h1 {
    font-size: 3.875rem;
  }

  .small-info-text {
    font-size: 0.75rem;
    max-width: 90%;
  }

  .img-fluid {
    max-width: 80%;
  }

  .g-recaptcha {
    transform: scale(1.2);
    margin-top: 0;
  }
}

@media (max-width: 430px) {
  .g-recaptcha {
    transform: scale(0.95);
  }
}

@media (max-width: 380px) {
  .g-recaptcha {
    transform: scale(0.75);
    margin-top: 0;
  }
}

/* TOOLTIPS */
.tooltip .tooltip-inner {
  font-size: 11px;
  color: var(--shade-color);
  background-color: white;
  border: 1px solid var(--disable-color);
  border-radius: var(--radius);
}

.tooltip.bs-tooltip-top>.arrow:before {
  border-top-color: var(--disable-color) !important;
}

.tooltip.bs-tooltip-right>.arrow:before {
  border-right-color: var(--disable-color) !important;
}

.tooltip.bs-tooltip-bottom>.arrow:before {
  border-bottom-color: var(--disable-color) !important;
}

.tooltip.bs-tooltip-left>.arrow:before {
  border-left-color: var(--disable-color) !important;
}

/* Avatar */
.image-placeholder,
.avatar-preview {
  display: flex;
  background-color: #f5f5f5;
  color: var(--shade-color);
  font-weight: normal;
  width: 160px;
  height: 160px;
  border: 1px solid #e0e0e0;
  object-fit: cover;
}

.avatar-preview {
  display: none;
  /* Init value before we have info about image */
}

.image-placeholder:hover,
.avatar-preview:hover {
  opacity: 0.8;
  transition: opacity 0.2s;
}

.text-muted {
  color: #b3b3b3;
  font-size: 11px;
}

a.text-muted {
  text-decoration: underline;
}

a.text-muted:hover {
  text-decoration: none;
}

.text-small {
  font-size: 11px;
}

/* 2FA */

.two-fa__title {
  font-size: 18px;
  color: #2a2a2a;
  font-weight: 900;
  line-height: 26px;
}

.margin-auto {
  margin: 0 auto;
}

#otp input {
  text-align: center;
  margin: 3px;
  font-size: 21px;
  padding: 0.1rem;
}

#otp input:not(:focus) {
  border-color: #e0e0e0;
}

#otp input:not(:focus):valid {
  border-color: #2a2a2a;
}

#otp input:nth-of-type(3) {
  margin-right: calc(12px);
}

/* Chrome, Safari, Edge, Opera */
#otp input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

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

@media (min-width: 768px) {
  #otp input {
    margin: 6px;
    font-size: 32px;
    padding: 0.375rem 0.75rem;
    /* bootstrap default */
  }

  #otp input:nth-of-type(3) {
    margin-right: calc(32px - 6px);
  }
}

.social-wrapper {
  display: flex;
  justify-content: space-between;
}


.social-button.btn.btn-outline:hover {
  border-color: #e0e0e0;
}

.social-submit {
  background: none !important;
  border: none;
  padding: 0 !important;
  cursor: pointer;
  color: #fa6831;
  margin-top: 1px;
  font-size: 16px;
}

.separator-line {
  width: 100%;
  text-align: center;
  border-bottom: 1px solid #e0e0e0;
  line-height: 0.1em;
  margin: 10px 0 25px;
  margin-top: -15px;
}

.separator-line span {
  background-color: #fff;
  padding: 0 10px;
  color: #b3b3b3;
}

.font-12px {
  font-size: 12px;
}

.login-provider img {
  width: 26px;
  height: 26px;
}

.login-provider span {
  font-size: 16px;
  color: #2A2A2A;
  letter-spacing: -0.08px;
  text-align: center;
  font-weight: 500;
  vertical-align: middle;
}

.login-provider span.text-smaller {
  font-size: 14px;
}

.login-provider span.text-smaller.field-required {
  font-size: 12px;
  color: var(--shade-color);
  font-weight: normal;
  padding-top: 2px;
}

.login-providers {
  margin-bottom: 30px;
}

.social-email {
  text-align: left;
}

@media screen and (max-width: 993px) {
  .separator-line {
    margin-top: 0px;
    padding-top: 10px;
  }
}


#main-nav {
  margin-top: 40px;
}

.topnav {
  height: 40px;
}

.nav-login a {
  padding: 1px;
  text-decoration: none;
  display: inline-flex;
  -moz-box-align: center;
  align-items: center;
  margin-top: -10px;
  font-size: 0.85rem;
  color: rgb(128, 128, 128);
}

.nav-login svg {
  color: rgb(42, 42, 42);
  margin-right: 0.4285rem;
  margin-left: 0.4285rem;
  width: 28px;
  height: 28px;
}

@media screen and (max-width: 1024px) {
  .nav-login svg {
    width: 24px;
    height: 24px;
  }

  .nav-login span {
    font-size: 12px;
  }
}

.nav.navbar {
  margin-top: 10px;
}

.nav-avatar svg,
.user-image svg {
  fill: #fff;
  font-size: 10px;
  text-transform: uppercase;
}

.dropdown-toggle.no-arrow::after {
  display: none;
}

.language-switcher {
  cursor: pointer;
  margin: 0px 1.25rem;
  position: relative;
  text-align: left;
  color: rgb(128, 128, 128);
  font-size: 14px;
  padding-right: 35px;
  margin-top: -1px;
}

.noselect {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}

.language-menu a,
.user-profile-menu a {
  display: block;
  text-align: left;
  width: 100%;
  line-height: 1.64286;
  color: rgb(128, 128, 128);
  text-decoration: none;
  transition: color 200ms ease 0s;
  font-size: 14px;
}

.language-menu a:focus,
.user-profile-menu a:focus {
  background: initial;
  color: rgb(128, 128, 128);
}

.language-menu a:last-child {
  border-bottom: none;
}

.language-menu a.selected {
  font-weight: 700;
}

.language-menu.dropdown-menu {
  min-width: initial;
  margin-left: -22.5px;
  padding-top: 0px;
  padding-bottom: 0px;
  margin-top: 5px;
}

.language-menu a:hover,
.user-profile-menu a:hover {
  color: #fa6831;
  background: #ffffff;
}

.language-menu hr,
.user-profile-menu hr {
  margin-top: 0rem;
  margin-bottom: 0rem;
  width: 90%;
}

.row-mobile {
  margin-top: -10px;
}

.user-public-username {
  font-size: 0.85rem;
  color: rgb(128, 128, 128);
  cursor: pointer;
}

@media screen and (max-width: 576px) {
  .user-public-username {
    text-overflow: ellipsis;
    overflow: hidden;
    max-width: 120px;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
  }
}

@media screen and (max-width: 601px) {
  main>div {
    width: 100%;
  }
}

.side {
  flex: 1;
}

.cancel-url {
  flex: 1;
  text-align: right;
}

.cancel-url i {
  color: #808080;
  font-size: 38px;
  opacity: 1;
  -webkit-text-stroke: 1px white;
}

.agree-to-terms {
  font-size: 11px;
  color: var(--shade-color);
}

.agree-to-terms a {
  color: var(--shade-color);
  text-decoration: underline;
}