/* =============================================
Block - NDBS Custom
============================================= */
/* =============================================================================
Import me into 'individual' scss partials
============================================================================= */
/* =============================================================================
Functions
============================================================================= */
/* Deep-get sass map
=================================================== */
/* =============================================================================
Mixins
============================================================================= */
/* =================================================
Breakpoints
=================================================== */
/* =============================================================================
Breakpoint definition
============================================================================= */
/* =============================================================================
Config
============================================================================= */
.header-wrap.relative, footer {
  display: none !important;
}

::placeholder {
  color: #66727E;
  opacity: 1;
}

:-ms-input-placeholder {
  color: #66727E;
}

::-ms-input-placeholder {
  color: #66727E;
}

#username {
  margin-bottom: 20px;
}

#pass {
  margin-bottom: 13px;
}

#btnRequest {
  border-radius: 30px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  background: #FFB800;
  height: 50px;
  width: 118px;
  display: flex;
  align-items: center;
  cursor: pointer !important;
}
#btnRequest span {
  color: #2F3347;
  text-align: center;
  font-size: 16px;
  font-weight: 400;
  line-height: 22px;
  width: 100%;
}

#inputs h4 {
  color: #000;
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 36px;
}
#inputs label {
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  color: #828282;
  margin-bottom: 8px;
}
@media screen and (max-width: 680px) {
  #inputs label {
    display: inline-block;
  }
}
#inputs label.remember {
  line-height: 22px;
  margin-bottom: 0;
}
@media screen and (max-width: 680px) {
  #inputs label.remember {
    text-align: center;
    margin-bottom: 5px;
  }
}
#inputs input {
  border-radius: 8px;
  border: 0.5px solid var(--black-400, #BDBDBD);
  background: rgba(242, 242, 242, 0.4);
  padding: 12px;
  font-size: 16px;
  font-weight: 400;
  line-height: 20px;
  color: #333;
}
#inputs .flex {
  justify-content: space-between;
}
#inputs .flex .remember input {
  width: 15px;
  margin-right: 5px;
  border-radius: 2px;
  border: 1px solid #828282;
  background: #fff;
}

.block-ndbs-custom {
  position: relative;
  height: auto;
  min-height: 100vh;
  padding-top: 0 !important;
  padding-bottom: 150px;
  background: #000;
}
@media screen and (max-width: 1024px) {
  .block-ndbs-custom {
    padding-bottom: 50px;
  }
}
.block-ndbs-custom .checkbox {
  position: absolute;
  display: block;
  height: 32px;
  width: 32px;
  top: 20px;
  right: 20px;
  z-index: 5;
  opacity: 0;
  cursor: pointer;
}
.block-ndbs-custom .hamburger-lines {
  height: 24px;
  width: 32px;
  position: absolute;
  top: 18px;
  right: 20px;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.block-ndbs-custom .hamburger-lines .line {
  display: block;
  height: 2px;
  width: 100%;
  border-radius: 10px;
  background: #ffb700;
}
.block-ndbs-custom .hamburger-lines .line1 {
  transform-origin: 0% 0%;
  transition: transform 0.4s ease-in-out;
}
.block-ndbs-custom .hamburger-lines .line2 {
  transition: transform 0.2s ease-in-out;
}
.block-ndbs-custom .hamburger-lines .line3 {
  transform-origin: 0% 100%;
  transition: transform 0.4s ease-in-out;
}
.block-ndbs-custom input[type=checkbox]:checked ~ .hamburger-lines .line1 {
  transform: rotate(45deg);
}
.block-ndbs-custom input[type=checkbox]:checked ~ .hamburger-lines .line2 {
  transform: scaleY(0);
}
.block-ndbs-custom input[type=checkbox]:checked ~ .hamburger-lines .line3 {
  transform: rotate(-45deg);
}
.block-ndbs-custom input[type=checkbox]:checked ~ .menu {
  height: 250px;
  transition: all 200ms;
}
@media screen and (min-width: 681px) {
  .block-ndbs-custom input[type=checkbox]:checked ~ .menu {
    height: auto;
  }
}
.block-ndbs-custom .mobile-only {
  display: none;
}
@media screen and (max-width: 680px) {
  .block-ndbs-custom .mobile-only {
    display: flex;
  }
}
.block-ndbs-custom .header {
  border-bottom: 1px solid #797979;
  background: #2C2A2A;
  height: 80px;
  margin-bottom: 41px;
}
.block-ndbs-custom .header img {
  max-width: 122px;
}
@media screen and (max-width: 1024px) {
  .block-ndbs-custom .header img {
    max-width: 85px;
  }
}
.block-ndbs-custom .header .menu {
  display: flex;
}
@media screen and (max-width: 1024px) {
  .block-ndbs-custom .header .menu {
    align-items: baseline;
    position: absolute;
    left: calc(50% - 135px);
    width: calc(50% + 130px);
    justify-content: space-between;
  }
}
@media screen and (max-width: 680px) {
  .block-ndbs-custom .header .menu {
    position: absolute;
    left: 0;
    width: 100%;
    justify-content: start;
    top: 57px;
    flex-direction: column;
    align-items: center;
    background: #2c2a2a;
    z-index: 999;
    padding: 0;
    height: 0;
    transition: all 200ms;
    overflow: hidden;
  }
  .block-ndbs-custom .header .menu.open {
    height: 250px;
    transition: all 200ms;
  }
}
.block-ndbs-custom .header .menu ul {
  list-style: none;
  display: flex;
  margin: 0 65px 0 0;
}
@media screen and (max-width: 1024px) {
  .block-ndbs-custom .header .menu ul {
    align-items: center;
    width: 100%;
  }
}
@media screen and (max-width: 680px) {
  .block-ndbs-custom .header .menu ul {
    align-items: center;
    width: 100%;
    flex-direction: column;
    margin: 0;
  }
}
.block-ndbs-custom .header .menu ul li {
  color: #ddd;
  font-size: 18px;
  line-height: 38px;
  padding: 0 0 0 25px;
  font-weight: 400;
  cursor: pointer;
}
@media screen and (max-width: 1024px) {
  .block-ndbs-custom .header .menu ul li {
    font-size: 12.5px;
  }
}
@media screen and (max-width: 680px) {
  .block-ndbs-custom .header .menu ul li {
    padding: 0;
  }
}
.block-ndbs-custom .header .menu ul li:before {
  content: none !important;
}
.block-ndbs-custom .header .menu ul li:first-child {
  color: #FFB800;
  font-size: 18px;
  font-weight: 600;
  padding: 0;
}
@media screen and (max-width: 1024px) {
  .block-ndbs-custom .header .menu ul li:first-child {
    font-size: 12.5px;
  }
}
.block-ndbs-custom .header .menu .button {
  border-radius: 30px;
  border: 1px solid #FFB800;
  color: #FFB800;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  display: flex;
  justify-content: center;
  width: 80px;
  height: 38px;
  align-items: center;
  margin-right: 10px;
  pointer-events: all !important;
  transition: all 200ms;
  transition-timing-function: linear;
}
@media screen and (max-width: 1024px) {
  .block-ndbs-custom .header .menu .button {
    font-size: 10px;
    width: 56px;
    min-width: 56px;
    height: 27px;
  }
}
@media screen and (max-width: 680px) {
  .block-ndbs-custom .header .menu .button {
    width: inherit;
    min-width: 56px;
    max-width: 250px;
    height: 27px;
    margin: 0 0 20px 0;
  }
}
.block-ndbs-custom .header .menu .button:hover {
  background: #FFB800;
  color: #2F3347;
  transition: all 200ms;
}
.block-ndbs-custom .header .menu .button:last-child {
  margin-right: 20px;
}
@media screen and (max-width: 680px) {
  .block-ndbs-custom .header .menu .button:last-child {
    margin-right: 0;
  }
}
.block-ndbs-custom .header .menu #signup {
  background: #FFB800;
  color: #2F3347;
}
.block-ndbs-custom .header .menu #signup:hover {
  background: none;
  color: #FFB800;
}
.block-ndbs-custom .grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr;
  grid-gap: 20px;
}
@media screen and (max-width: 680px) {
  .block-ndbs-custom .grid {
    grid-template-columns: 1fr 1fr;
  }
}
.block-ndbs-custom .grid.big {
  grid-template-columns: 1fr 1fr 1fr;
}
@media screen and (max-width: 680px) {
  .block-ndbs-custom .grid.big {
    grid-template-columns: 1fr 1fr;
  }
}
.block-ndbs-custom .row {
  max-width: 1090px;
  margin: 0 auto;
}
.block-ndbs-custom .row .headline {
  margin: 24px 0;
  justify-content: space-between;
}
@media screen and (max-width: 680px) {
  .block-ndbs-custom .row .headline {
    margin: 17px 0;
  }
}
.block-ndbs-custom .row .headline h4 {
  color: #DDD;
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
}
@media screen and (max-width: 680px) {
  .block-ndbs-custom .row .headline h4 {
    font-size: 12.6px;
  }
}
.block-ndbs-custom .row .headline a {
  color: #FFB800;
  text-align: right;
  font-size: 18px;
  font-weight: 400;
  line-height: 22px;
}
@media screen and (max-width: 680px) {
  .block-ndbs-custom .row .headline a {
    font-size: 12.6px;
  }
}
.block-ndbs-custom input {
  background: #F4F7FA;
  border-radius: 100px;
  padding: 16px 24px;
  font-size: 17px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  color: #0A003C;
  width: 100%;
}
.block-ndbs-custom > .container {
  padding: 0 20px;
  width: 100%;
  height: 100%;
  align-items: center;
  text-align: center;
  margin-right: auto;
  margin-left: auto;
}
@media screen and (max-width: 680px) {
  .block-ndbs-custom > .container {
    position: relative;
  }
}
.block-ndbs-custom > .container.flex {
  justify-content: space-between;
}
.block-ndbs-custom > .container .addresses {
  margin: 0 auto 25px;
  font-weight: 400;
  font-size: 18px;
  text-align: center;
}
.block-ndbs-custom > .container .addresses p {
  color: #0A003C;
  text-align: center;
  font-size: 17px;
  font-family: Inter, sans-serif;
  line-height: 24px;
}
.block-ndbs-custom > .container .addresses h4 {
  font-weight: 500;
  font-size: 17px;
  line-height: 24px;
  text-align: center;
  color: #0A003C;
}
.block-ndbs-custom .learn-more {
  display: inline-block;
  width: fit-content;
  text-align: left;
  clear: both;
  color: #fff !important;
  border-bottom: 2px solid #ffb800;
  line-height: 30px;
  margin-top: 100px;
}
.block-ndbs-custom .learn-more.hidden {
  display: none;
}
.block-ndbs-custom #popup {
  background: rgba(0, 0, 0, 0.7);
  position: fixed;
  height: 100%;
  width: 100%;
  top: 0;
  opacity: 0;
  pointer-events: none;
  transition: all 200ms linear;
  display: flex;
}
.block-ndbs-custom #popup.active {
  opacity: 1 !important;
  pointer-events: all;
  transition: all 200ms linear;
}
.block-ndbs-custom #popup .popup-window {
  background: #fff;
  border-radius: 6px;
  max-width: 470px;
  margin: auto;
  padding: 40px 50px;
}
@media screen and (max-width: 680px) {
  .block-ndbs-custom #popup .popup-window {
    max-width: 326px;
    padding: 40px 30px;
  }
}
@media screen and (max-width: 680px) {
  .block-ndbs-custom #popup .popup-window .flex.links {
    flex-direction: column;
    margin-top: 15px;
  }
}
@media screen and (max-width: 680px) {
  .block-ndbs-custom #popup .popup-window .buttons {
    justify-content: center;
    margin: 30px auto 0;
  }
}
.block-ndbs-custom #popup.error .addresses {
  margin: 0;
}
.block-ndbs-custom #popup.error #errorText {
  display: inline-block;
}
.block-ndbs-custom #popup.error .buttons {
  justify-content: center;
}
.block-ndbs-custom #popup.error .popup-window {
  padding: 55px 45px;
}
@media screen and (max-width: 680px) {
  .block-ndbs-custom #popup.error .popup-window {
    padding: 40px 30px;
  }
}
.block-ndbs-custom #popup.success .popup-window {
  padding: 50px;
}
.block-ndbs-custom #popup.success .addresses {
  margin: 0 auto 36px;
}
.block-ndbs-custom #popup.success #successText {
  display: inline-block;
}
.block-ndbs-custom #popup.success .buttons {
  justify-content: center;
}
.block-ndbs-custom #popup.success #generalText {
  width: 220px;
}
@media screen and (max-width: 680px) {
  .block-ndbs-custom #popup.success #generalText {
    width: auto;
  }
}
.block-ndbs-custom .solus-container,
.block-ndbs-custom #troubleshooter {
  display: none;
  width: 100%;
  margin: 0 auto 36px;
}
.block-ndbs-custom #troubleshooter-message p {
  margin-bottom: 20px;
}
.block-ndbs-custom #troubleshooter {
  color: #828282;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
}
.block-ndbs-custom #solus-head {
  margin: 15px auto 20px;
  font-weight: 600;
  font-size: 17px;
  line-height: 20px;
  color: #0A003C;
}
.block-ndbs-custom .buttons {
  display: flex;
  justify-content: end;
  width: 100%;
  margin: 20px auto 0;
}
.block-ndbs-custom .buttons.active {
  margin: 0 auto;
}
.block-ndbs-custom #trDetails {
  display: none;
  font-size: 13.25px;
  font-family: "Inter", sans-serif;
  font-weight: 500;
  color: #000;
  line-height: 20px;
  align-items: center;
  justify-content: center;
  margin-top: 16px;
}
.block-ndbs-custom #trDetails img {
  padding-top: 2px;
  margin-left: 5px;
}
.block-ndbs-custom #trDetails:hover {
  text-decoration: underline;
}
.block-ndbs-custom #logger {
  min-height: 70px;
}
.block-ndbs-custom #logger pre {
  display: flex;
  justify-content: space-between;
  margin: 0 0 5px 0;
  padding-bottom: 2px;
  border-bottom: 1px solid #EEE;
  color: #111;
  font-weight: 400;
  font-size: 15px;
  line-height: 24px;
  text-align: center;
  font-family: var(--font-family-body), var(--font-family-fallback-body);
  white-space: pre-wrap;
}
.block-ndbs-custom #logger pre:last-child {
  border-bottom: none;
}
.block-ndbs-custom #logger pre span {
  text-align: right;
}
.block-ndbs-custom #logger pre span:first-child {
  min-width: 110px;
  text-align: left;
}
.block-ndbs-custom #logger pre code {
  font-family: var(--font-family-body), var(--font-family-fallback-body);
}
.block-ndbs-custom #logger pre.alert-danger {
  color: #E00A3D;
  max-width: 280px;
  margin: 0 auto;
}
.block-ndbs-custom #solus_animation {
  display: none;
  font-weight: 400;
  font-size: 18px;
  line-height: 22px;
  color: #ffb800;
  border-radius: 100%;
  border: 2px solid transparent;
  width: 80px;
  height: 80px;
  align-items: center;
  text-align: center;
  justify-content: center;
  margin: 25px auto 0;
  position: relative;
}
.block-ndbs-custom #solus_animation:after {
  content: "";
  width: 80px;
  height: 80px;
  position: absolute;
  left: 0;
  top: 0;
  border-radius: 100%;
  border: 2px solid #ffb800;
  border-top-color: #ffe7e4;
  animation-name: spinning-circle;
  animation-duration: 1s;
  animation-iteration-count: infinite;
}
@-webkit-keyframes spinning-circle {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
.block-ndbs-custom .animated_media {
  max-width: 360px;
  margin: 0 auto;
}

#learnMore {
  pointer-events: all;
}
#learnMore:hover {
  color: rgb(10, 0, 60) !important;
}

.gc-html5-ui-swiper-img {
  max-width: 100%;
  min-height: auto;
}

#successText,
#errorText {
  color: #828282;
  text-align: center;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 18px;
  display: none;
  position: relative;
  margin-bottom: 16px;
  width: 100%;
  margin-left: auto;
  margin-right: auto;
}
#successText h4,
#errorText h4 {
  color: #000;
  text-align: center;
  font-family: Inter, sans-serif;
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
}
#successText img,
#errorText img {
  margin: 0 auto 36px;
}

#generalText {
  color: #828282;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  width: 270px;
  margin: 0 auto;
}
@media screen and (max-width: 680px) {
  #generalText {
    width: auto;
  }
}

#hints {
  text-align: left;
  display: flex;
  align-items: center;
}
@media screen and (max-width: 680px) {
  #hints {
    justify-content: center;
  }
}
#hints p {
  font-size: 14px;
  font-weight: 400;
  line-height: 18px;
  color: #828282;
}
#hints input[type=checkbox] {
  height: 0;
  width: 0;
  visibility: hidden;
}
#hints label {
  cursor: pointer;
  text-indent: -9999px;
  width: 36px;
  height: 22px;
  background: grey;
  display: block;
  border-radius: 40px;
  position: relative;
  margin: 0 0 0 8px;
}
#hints label:after {
  content: "";
  position: absolute;
  top: 3px;
  left: 5px;
  width: 16px;
  height: 16px;
  background: #fff;
  border-radius: 50px;
  transition: all 0.3s;
  box-shadow: -2px 2px 5px rgba(0, 0, 0, 0.2);
}
#hints input:checked + label {
  background-color: #00CD91;
}
#hints input:checked + label:after {
  left: calc(100% - 20px);
  background-image: url("/app/themes/geocomply/assets/img/toggle.svg");
  background-repeat: no-repeat;
  background-size: contain;
  width: 16px;
  background-position: center;
  background-position-y: 2px;
}
#hints input + label:after {
  background-position-y: 2px;
}

body #gc-html5-captcha-check-label:before {
  left: 5px;
}
@media screen and (max-width: 680px) {
  body #gc-html5-captcha-check-label:before {
    top: 0;
  }
}

body #gc-html5-captcha-check-label:after {
  left: 8px;
}
@media screen and (max-width: 680px) {
  body #gc-html5-captcha-check-label:after {
    top: 13px;
  }
}
