@charset "UTF-8";
html {
  font-size: 62.5%;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  font-size: 100%;
  font-weight: inherit;
  font-style: inherit;
}

a {
  text-decoration: none;
  font-weight: inherit;
  color: inherit;
}
a img {
  border: 0;
}

li {
  list-style: none;
}

fieldset {
  border: 0;
}

button {
  border: 0;
  text-align: left;
  background: transparent;
}

*:focus {
  outline: none;
}

button, input, textarea {
  font: inherit;
}

@keyframes fadein {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes fadeout {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes spin {
  from {
    transform: rotate(0deg);
  }
  to {
    transform: rotate(360deg);
  }
}
@keyframes reveal-block {
  from {
    transform: scaleX(1);
    transform-origin: right;
  }
  to {
    transform: scaleX(0);
    transform-origin: right;
  }
}
html {
  overflow-y: scroll;
  font-size: 80%;
}
@media screen and (min-width: 1024px) {
  html {
    font-size: 85%;
  }
}
@media screen and (min-width: 1150px) {
  html {
    font-size: 100%;
  }
}

body {
  font-family: Open Sans, sans-serif;
  line-height: 1.7rem;
  color: #7e8083;
  background-color: #ffffff;
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-thumb {
  background-color: #139c9a;
}

::selection {
  background-color: #139c9a;
  color: #ffffff;
}

#wrapper {
  margin: 0 auto;
  max-width: 1500px;
}

.wrap {
  padding: 0 2rem;
  margin: 0 auto;
}
@media screen and (min-width: 750px) {
  .wrap {
    width: 95%;
    padding: 0;
  }
}
@media screen and (min-width: 1375px) {
  .wrap {
    width: 93%;
  }
}

.header {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding-top: 1rem;
  transition: transform 0.5s cubic-bezier(0.65, 0.04, 0.35, 1), opacity 0.5s cubic-bezier(0.65, 0.04, 0.35, 1);
}
body.loading .header {
  transform: scale(0.8);
  opacity: 0;
}
@media screen and (min-width: 650px) {
  .header {
    margin-bottom: 2.5rem;
  }
}

.pobos-link {
  order: 2;
  flex: 1;
  flex-basis: 25%;
}
@media screen and (min-width: 750px) {
  .pobos-link {
    order: 3;
  }
}

.language-select {
  order: 1;
  flex: 4;
  flex-basis: 75%;
}

@media screen and (min-width: 750px) {
  .pobos-link, .language-select {
    flex: 1;
  }
}

.pobos-link img {
  display: block;
  width: 100%;
}

#logo {
  flex: 1 1 100%;
  margin: 0;
  order: 3;
}
@media screen and (min-width: 750px) {
  #logo {
    flex: 7;
    order: 2;
  }
}
#logo a {
  text-align: center;
  display: block;
  width: 15rem;
  height: auto;
  margin: 0 auto;
}
#logo .static {
  width: 18rem;
}
#logo svg {
  display: block;
  width: 100%;
  height: 100%;
}

#main-nav {
  position: relative;
  height: 0;
  transform: scaleY(0);
  transform-origin: top;
  transition: transform 0.1s cubic-bezier(0.65, 0.04, 0.35, 1);
}
body.open-nav #main-nav {
  height: 100%;
  transform: scale(1);
}
@media screen and (min-width: 1024px) {
  #main-nav {
    height: 100%;
    transform: scaleY(1);
  }
}
#main-nav > ul {
  display: block;
}
@media screen and (min-width: 1024px) {
  #main-nav > ul {
    display: flex;
    justify-content: center;
  }
}
#main-nav li:not(:last-child) a {
  margin-right: 2rem;
}
@media screen and (min-width: 1280px) {
  #main-nav li:not(:last-child) a {
    margin-right: 3rem;
  }
}
#main-nav li a {
  position: relative;
  display: block;
  font-family: Karla, sans-serif;
  letter-spacing: 0.02rem;
  line-height: 2;
  font-size: 1.05rem;
}
@media screen and (min-width: 1024px) {
  #main-nav li a {
    line-height: 1;
  }
}
@media screen and (min-width: 1024px) {
  #main-nav li a:after {
    content: "";
    position: absolute;
    bottom: -0.6666666667rem;
    left: 50%;
    width: 100%;
    height: 2px;
    background-color: #139c9a;
    transform: translateX(-50%);
  }
  #main-nav li a:after {
    transform: translate(-50%, -75%);
    opacity: 0;
    transition: opacity 0.2s cubic-bezier(0.65, 0.04, 0.35, 1), transform 0.15s cubic-bezier(0.65, 0.04, 0.35, 1);
  }
  #main-nav li a:hover:after, #main-nav li a:focus:after, #main-nav li a:active:after {
    opacity: 1;
    transform: translate(-50%, 0);
  }
  #main-nav li.active a {
    color: #139c9a;
  }
  #main-nav li.active a:after {
    opacity: 1;
  }
}

.language-select ul {
  display: flex;
  justify-content: flex-start;
}
.language-select ul > *:not(:first-child):before {
  content: "/";
}
.language-select ul li.active a {
  border-bottom: 0.05rem solid #139c9a;
}
.language-select a {
  position: relative;
  font-family: Karla, sans-serif;
  text-transform: uppercase;
  color: #139c9a;
}

.hamburger {
  display: flex;
  justify-content: flex-end;
}

.hamburger-icon {
  position: relative;
  z-index: 100;
  display: block;
  width: 2rem;
  height: 2rem;
  cursor: pointer;
  transition: transform 0.3s, opacity 0.4s;
}
.hamburger-icon:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  box-sizing: border-box;
  display: block;
  height: 2rem;
  width: 2rem;
  margin-top: -1rem;
  border-top: 4px solid #139c9a;
  border-bottom: 4px solid #139c9a;
}
.hamburger-icon:after {
  content: "";
  box-sizing: border-box;
  display: block;
  height: 4px;
  background-color: #139c9a;
}
@media screen and (min-width: 1024px) {
  .hamburger-icon {
    display: none;
  }
}
body.open-nav .hamburger-icon {
  margin-bottom: 2rem;
  transform: scale(0.7) rotate(180deg);
}

.standalone {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  margin: 2rem auto;
  max-width: 1400px;
}
.standalone .title {
  font-family: Karla, sans-serif;
  font-size: 1.5rem;
  line-height: 2;
  font-weight: 700;
}
.standalone .title {
  color: var(--color);
}
.standalone-language-switcher {
  position: absolute;
  top: 0;
  display: flex;
  right: 0;
  gap: 0.8rem;
}
@media screen and (min-width: 1024px) {
  .standalone-language-switcher {
    right: 20%;
  }
}
.standalone-language-switcher__language {
  display: flex;
  align-items: center;
  justify-content: center;
  aspect-ratio: 1/1;
  padding: 0.4rem;
  border-radius: 100px;
  width: 40px;
  height: 40px;
  color: #000000;
  text-align: center;
}
.standalone-language-switcher__language--active {
  text-decoration: underline;
  background-color: #ffffff;
  color: #000000;
}
.standalone__description {
  font-size: 1.2em;
}
.standalone__logo {
  display: flex;
  align-items: center;
  justify-content: center;
}
.standalone__logo img {
  width: 100%;
  max-width: 400px;
  max-height: 100px;
  object-fit: contain;
}
.standalone__content {
  display: flex;
  flex-direction: column;
  position: relative;
  min-height: 80vh;
  gap: 3rem;
}
@media screen and (min-width: 1024px) {
  .standalone__content {
    flex-direction: row;
    gap: 1rem;
  }
}
.standalone__emergency-tel {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2rem;
  font-size: 2em;
  color: var(--color);
}
@media screen and (min-width: 1024px) {
  .standalone__emergency-tel {
    justify-content: flex-start;
  }
}
.standalone__actions {
  position: relative;
}
@media screen and (min-width: 1024px) {
  .standalone__actions {
    width: 30%;
  }
}
.standalone__sticky {
  position: sticky;
  top: 2em;
  left: 0;
  max-width: 500px;
  margin: 0 auto;
}
@media screen and (min-width: 1024px) {
  .standalone__sticky {
    margin: unset;
    max-width: unset;
  }
}
@media screen and (min-width: 1024px) {
  .standalone__sticky a {
    transition: transform 300ms ease-in-out;
    transform-origin: center;
  }
  .standalone__sticky a:hover {
    transform: scale(1.05);
  }
}
.standalone__sticky div {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  justify-content: center;
  grid-gap: 1rem;
  padding-right: 1rem;
  margin-bottom: 2rem;
}
@media screen and (min-width: 1024px) {
  .standalone__sticky div {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media screen and (min-width: 1280px) {
  .standalone__sticky div {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (min-width: 1024px) {
  .standalone__sticky div {
    justify-content: space-between;
    align-items: flex-start;
    width: 100%;
  }
}
.standalone__sticky div > a {
  display: flex;
  align-items: flex-end;
  width: 100%;
  height: auto;
}
.standalone__sticky div > a svg {
  width: 100%;
  height: 100%;
  min-height: unset;
}
@media screen and (min-width: 1280px) {
  .standalone__sticky div > a svg {
    grid-column: 3/5;
    min-height: 90px;
  }
}
@media screen and (min-width: 1280px) {
  .standalone__sticky div > a:not(:last-child) {
    max-width: 90px;
  }
}
.standalone__sticky div > a:last-child {
  grid-column: 3/5;
}
@media screen and (min-width: 1024px) {
  .standalone__sticky div > a:last-child {
    grid-column: 1/3;
  }
}
@media screen and (min-width: 1280px) {
  .standalone__sticky div > a:last-child {
    max-width: 200px;
    grid-column: 3/5;
    min-width: 150px;
  }
}
.standalone__main {
  width: 100%;
  border-width: 0;
  border-left-style: solid;
  border-color: var(--color);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}
@media screen and (min-width: 1024px) {
  .standalone__main {
    padding-left: 2rem;
  }
}
.standalone__main .company__service-read-more:before, .standalone__main .company__service-read-more:after {
  background-color: var(--color);
}
.standalone__main p {
  margin-bottom: 1rem;
}
@media screen and (min-width: 1024px) {
  .standalone__main {
    width: 70%;
    border-left-width: 2px;
  }
}
.standalone .download__title {
  font-weight: bold;
}
.standalone .download__wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
}
.standalone .download__description {
  padding: 0.8rem 2rem;
  background-color: #f7f7f7;
  margin-bottom: 0.25rem;
  width: 100%;
}
.standalone footer {
  display: flex;
  flex-direction: column;
  width: 100%;
  justify-content: space-between;
  border-top: 3px solid grey;
}
@media screen and (min-width: 1024px) {
  .standalone footer {
    flex-direction: row;
  }
}
.standalone footer a {
  text-decoration: underline;
}
.standalone footer .legal {
  margin-top: 1rem;
  text-align: left;
}
@media screen and (min-width: 1024px) {
  .standalone footer .legal {
    text-align: center;
  }
}
@media screen and (min-width: 1280px) {
  .standalone footer .legal {
    text-align: left;
  }
}
.standalone footer .cooperation {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: center;
  justify-content: space-between;
  margin-top: 1rem;
}
.standalone footer .cooperation > span:first-child {
  grid-column: 1/4;
}
.standalone footer .cooperation > span:not(:first-child) {
  text-align: center;
}
@media screen and (min-width: 650px) {
  .standalone footer .cooperation {
    width: max-content;
  }
}
@media screen and (min-width: 750px) {
  .standalone footer .cooperation {
    margin-top: 0;
    display: flex;
    width: 70%;
    justify-content: flex-end;
    gap: 1rem;
  }
}
.standalone footer .cooperation svg {
  max-width: 80px;
}
.standalone footer .cooperation img {
  max-width: 150px;
}

::-webkit-scrollbar-thumb {
  background-color: var(--color);
}

::selection {
  background-color: var(--color);
  color: var(--color);
}

.language-picker {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ffffff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.language-picker__logo img {
  display: block;
  width: 100%;
  max-width: 500px;
}
.language-picker__languages {
  display: flex;
  gap: 2rem;
}
.language-picker__language {
  display: block;
  text-transform: uppercase;
  font-size: 50px;
  line-height: 2;
  color: #ffffff;
  width: 100px;
  height: 100px;
  text-align: center;
  aspect-ratio: 1/1;
  border-radius: 50%;
  transform-origin: center;
  transition: transform 300ms ease-in-out;
}
.language-picker__language:hover {
  transform: scale(1.04);
}

#main {
  padding: 2rem 0;
}
#main h1 {
  font-family: Karla, sans-serif;
  font-size: 2rem;
  text-transform: uppercase;
  margin-bottom: 2rem;
}

.wysiwyg a {
  color: #139c9a;
  text-decoration: underline;
}

#sub-nav {
  position: absolute;
  top: 0;
  left: 0;
  padding: 4rem 0;
  min-width: 20%;
}
#sub-nav ul {
  display: flex;
  justify-content: flex-start;
  flex-direction: column;
}
#sub-nav li {
  margin-bottom: 1rem;
  text-align: center;
  background-color: rgba(255, 255, 255, 0.85);
  transition: background-color 0.35s cubic-bezier(0.65, 0.04, 0.35, 1);
}
#sub-nav li:hover, #sub-nav li:active, #sub-nav li:focus {
  background-color: rgba(255, 255, 255, 0.95);
}
#sub-nav li.active a {
  background-color: #139c9a;
  color: #ffffff;
}
#sub-nav a {
  font-family: Karla, sans-serif;
  line-height: 1.2;
  font-size: 1.3rem;
  display: block;
  padding: 0.6666666667rem 2rem;
  color: #7e8083;
}

#main-header {
  position: relative;
  margin-bottom: 5rem;
}
#main-header #partner-block {
  margin-top: -5rem;
}

.main-header--hidden {
  display: none;
}

#footer {
  overflow-x: hidden;
  padding: 3rem 0 2rem 0;
  border-top: 0.2rem solid #7e8083;
  margin-top: -1rem;
}
#footer .wrapper {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
  margin: 0 -2rem;
}
#footer .wrapper > div {
  flex-basis: 100%;
  padding: 0 2rem;
  margin-bottom: 2rem;
}
@media screen and (min-width: 650px) {
  #footer .wrapper > div {
    flex-basis: 50%;
  }
}
@media screen and (min-width: 1024px) {
  #footer .wrapper > div {
    flex-basis: 25%;
  }
}
#footer h4 {
  text-transform: uppercase;
  font-family: Karla, sans-serif;
  font-size: 1.2rem;
  margin-bottom: 2rem;
  color: #139c9a;
}
#footer p {
  margin-bottom: 1rem;
  color: #7e8083;
  line-height: 1.5;
}
@media screen and (min-width: 1150px) {
  #footer p {
    font-size: 0.8rem;
  }
}

.footer-links-block .footer-links {
  column-count: 2;
  column-gap: 0;
}
.footer-links-block a {
  color: #7e8083;
  line-height: 1.5;
}
@media screen and (min-width: 1150px) {
  .footer-links-block a {
    font-size: 0.8rem;
  }
}
.footer-links-block .conditions {
  display: inline-block;
  margin-top: 1rem;
  margin-right: 1rem;
  padding-bottom: 0.1333333333rem;
  border-bottom: 1px solid #7e8083;
}
.footer-links-block .conditions:last-child {
  margin-right: 0;
}

.footer-social-block {
  display: flex;
  flex-direction: column;
}

.footer-social-block .social {
  display: flex;
  justify-content: flex-start;
  margin-bottom: 2rem;
}
.footer-social-block .social a {
  display: block;
  width: 2rem;
  height: 2rem;
  border-bottom: 0;
  text-indent: -9999px;
  background-size: 2rem 2rem;
  background-position: center center;
  background-repeat: no-repeat;
}
.footer-social-block .social a.facebook {
  background-image: url("img/icon-facebook.svg");
}
.footer-social-block .social a.instagram {
  background-image: url("img/icon-instagram.svg");
}
.footer-social-block .social a.twitter {
  background-image: url("img/icon-twitter.svg");
}
.footer-social-block .social a.linkedin {
  background-image: url("img/icon-linkedin.svg");
}
.footer-social-block .social a + a {
  margin-left: 0.5rem;
}

.footer-social-block .help-button {
  margin-top: auto;
}

.footer-social-block .help-button a {
  display: block;
  padding: 0.5rem 2rem;
  border: none;
  font-size: 0.9rem;
  text-align: center;
  background-color: #139c9a;
  color: #ffffff;
  text-transform: uppercase;
  transition: background-color, 0.25s cubic-bezier(0.65, 0.04, 0.35, 1), color, 0.25s cubic-bezier(0.65, 0.04, 0.35, 1);
  cursor: pointer;
  display: inline-block;
}
.footer-social-block .help-button a:hover, .footer-social-block .help-button a:focus, .footer-social-block .help-button a:active, .footer-social-block .help-button a.active {
  border-color: #16b3b0;
  background-color: #16b3b0;
  color: #ffffff;
}

.footer-partners-block {
  text-transform: uppercase;
  display: flex;
  flex-direction: column;
}
.footer-partners-block .copyright {
  display: block;
  margin-bottom: 2rem;
  color: #7e8083;
  line-height: 1.5;
}
@media screen and (min-width: 1150px) {
  .footer-partners-block .copyright {
    font-size: 0.8rem;
  }
}
.footer-partners-block .partner-block {
  margin-bottom: 2rem;
}
.footer-partners-block .partner-block ul {
  display: flex;
  justify-content: flex-start;
}
.footer-partners-block .partner-block ul li + li {
  margin-left: 1rem;
}
.footer-partners-block .partner-block a {
  display: block;
}
.footer-partners-block .partner-block img {
  height: 2.5rem;
}

#tnt {
  display: block;
  width: 4rem;
  height: 2rem;
  margin-top: auto;
  text-indent: -9999px;
  background-image: url("img/tnt.svg");
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center center;
  transition: opacity 0.25s cubic-bezier(0.65, 0.04, 0.35, 1);
}
#tnt:hover {
  opacity: 0.7;
}

#testimonial-tags {
  margin: 1rem 0;
  font-size: 1.2rem;
}
#testimonial-tags ul {
  display: flex;
  justify-content: flex-start;
  flex-direction: row;
}
#testimonial-tags ul li:not(:last-child) {
  margin-right: 2rem;
}

#news-items {
  margin: 1rem 0;
}
#news-items ul {
  display: flex;
  justify-content: flex-start;
  flex-direction: row;
}
#news-items ul li:not(:last-child) {
  margin-right: 2rem;
}

.company-search-socket__title {
  font-family: Karla, sans-serif;
  font-size: 1.5rem;
  line-height: 2;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  color: #139c9a;
}

.company {
  margin-top: 2rem;
}

.company-item__short-description {
  font-size: 0.85rem;
  line-height: 1.4;
}

.company__content {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  margin-bottom: 1.6rem;
}

.company__content-left-col {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
  margin-bottom: 2rem;
}
@media screen and (min-width: 1024px) {
  .company__content-left-col {
    justify-content: flex-end;
    width: 25%;
    margin-bottom: 0;
  }
}

.company__logo {
  display: flex;
  align-items: center;
  width: 60%;
}
@media screen and (min-width: 650px) {
  .company__logo {
    width: 35%;
  }
}
@media screen and (min-width: 1024px) {
  .company__logo {
    width: 75%;
    justify-content: flex-end;
  }
}
@media screen and (min-width: 1150px) {
  .company__logo {
    width: 60%;
  }
}
@media screen and (min-width: 1500px) {
  .company__logo {
    width: 50%;
  }
}
.company__logo img {
  display: block;
  width: 100%;
}

.company__name {
  display: flex;
  flex-grow: 1;
  align-items: center;
  margin-bottom: 2rem;
  padding: 1rem 1.6rem;
  background-color: #139c9a;
  font-family: Karla, sans-serif;
  line-height: 1.2;
  font-size: 1.3rem;
  font-weight: 700;
  color: #ffffff;
}

.company_content-right-col {
  width: 100%;
}
@media screen and (min-width: 1024px) {
  .company_content-right-col {
    width: 75%;
    padding-left: 7rem;
  }
}

.company__services {
  display: flex;
  margin-top: 3rem;
}

.company__services-wrap {
  width: 100%;
}

.company__service-annotation {
  margin-top: 2rem;
  padding: 1rem 0;
  border-top: 1px solid #139c9a;
  font-style: italic;
  font-size: 0.95rem;
  line-height: 1.5;
}

.company__service {
  padding: 0.8rem 2rem;
  background-color: #f7f7f7;
  margin-bottom: 0.25rem;
  transition: background-color 0.2s;
}
.company__service.active {
  background-color: #e5e5e5;
}
.company__service.active .company__service-body {
  display: block;
}
.company__service.active .company__service-read-more:before {
  transform: rotate(90deg);
}

.company__service-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  user-select: none;
}

.company__service-title {
  margin-right: 2rem;
  font-weight: 700;
  font-size: 0.9rem;
  line-height: 1.4;
}

.company__service-read-more {
  position: relative;
  display: inline-block;
  text-indent: -9999px;
  width: 2rem;
  height: 2rem;
  transform: scale(0.75);
}
.company__service-read-more:after, .company__service-read-more:before {
  content: "";
  position: absolute;
  transition: transform 0.2s;
}
.company__service-read-more:after {
  top: 50%;
  left: 0;
  width: 2rem;
  height: 0.3333333333rem;
  background-color: #139c9a;
  transform: translateY(-50%);
}
.company__service-read-more:before {
  top: 0;
  left: 50%;
  width: 0.3333333333rem;
  height: 2rem;
  background-color: #139c9a;
  transform: translateX(-50%);
}

.company__service-body {
  display: none;
  margin-top: 2rem;
  padding: 0 4rem 0 1rem;
}

.company-overview {
  display: inline-block;
  margin-top: 2rem;
  text-transform: uppercase;
  letter-spacing: 0.05rem;
}

.company-search-bar-wrap {
  position: relative;
}

.company-search-bar {
  position: relative;
  display: flex;
  justify-content: space-between;
  margin: 2rem 0 4rem 0;
  padding: 1rem 2rem 1rem 5rem;
  border: 3px solid #139c9a;
}
.company-search-bar:before {
  content: "";
  position: absolute;
  left: 0.3333333333rem;
  top: 0;
  bottom: 0;
  width: 4rem;
  background-image: url("img/magnifier.svg");
  background-size: 60% 60%;
  background-position: center center;
  background-repeat: no-repeat;
}

.company-search-bar__keyword {
  flex-grow: 1;
  border: none;
  box-shadow: none;
  font-family: Karla, sans-serif;
  line-height: 1.2;
  font-size: 1.3rem;
}

.company-search-bar__submit-button {
  cursor: pointer;
  font-family: Karla, sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.2;
  color: #139c9a;
}

.company-search-bar__suggestions {
  z-index: 3;
  position: absolute;
  top: 4rem;
  right: 0;
  left: 0;
  padding: 1.3333333333rem 0;
  background-color: #ffffff;
  border-bottom: 3px solid #139c9a;
}
.company-search-bar__suggestions li {
  padding: 0.5rem 4rem;
}
.company-search-bar__suggestions li:hover {
  background-color: #f7f7f7;
}
.company-search-bar__suggestions li.active {
  color: #ffffff;
  background-color: #139c9a;
}
.company-search-bar__suggestions li a {
  display: block;
}

.print-result {
  display: flex;
  justify-content: flex-end;
  margin: 4rem 0;
}
@media screen and (min-width: 750px) {
  .print-result {
    margin: 0 0 1rem 0;
  }
}
.print-result button {
  display: block;
  padding: 1rem 2rem;
  border: none;
  font-size: 0.9rem;
  text-align: center;
  background-color: #139c9a;
  color: #ffffff;
  text-transform: uppercase;
  transition: background-color, 0.25s cubic-bezier(0.65, 0.04, 0.35, 1), color, 0.25s cubic-bezier(0.65, 0.04, 0.35, 1);
  cursor: pointer;
}
.print-result button:hover, .print-result button:focus, .print-result button:active, .print-result button.active {
  border-color: #16b3b0;
  background-color: #16b3b0;
  color: #ffffff;
}

#contact-form .content-block {
  margin-top: 2rem;
}

.form-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 -1rem;
}
.form-grid > .input-pair {
  flex-basis: 100%;
  padding: 0 1rem;
  margin-bottom: 2rem;
}
@media screen and (min-width: 1150px) {
  .form-grid {
    flex-wrap: nowrap;
  }
  .form-grid > .input-pair {
    flex: 1;
    margin-bottom: 0;
  }
}

.input-pair fieldset {
  width: 100%;
  margin-bottom: 2rem;
}
.input-pair fieldset.required label:after {
  content: "*";
}
.input-pair fieldset.input-place {
  display: inline-block;
  width: 50%;
}
.input-pair label {
  display: block;
  margin-bottom: 0.3333333333rem;
  letter-spacing: 0.05rem;
}
.input-pair input,
.input-pair textarea,
.input-pair select {
  width: 100%;
  border: none;
  padding: 0.5rem 1rem;
  background-color: #f7f7f7;
}
.input-pair input:focus,
.input-pair textarea:focus,
.input-pair select:focus {
  color: #000000;
}
.input-pair textarea {
  resize: none;
  overflow: auto;
  height: calc(100% - 3rem);
}
.input-pair select {
  appearance: none;
  position: relative;
  box-sizing: border-box;
  border-radius: 0;
  text-shadow: none;
  background-image: url("img/arrow_down.svg");
  background-repeat: no-repeat;
  background-size: 1rem;
  background-position: right 0.6666666667rem center;
}
.input-pair .message {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.input-pair .message fieldset {
  flex: 1;
}
.input-pair .submit {
  margin-top: auto;
  text-align: right;
}
.input-pair .submit button {
  cursor: pointer;
  display: block;
  padding: 1rem;
  border: none;
  font-size: 0.9rem;
  text-align: center;
  background-color: #139c9a;
  color: #ffffff;
  text-transform: uppercase;
  transition: background-color, 0.25s cubic-bezier(0.65, 0.04, 0.35, 1), color, 0.25s cubic-bezier(0.65, 0.04, 0.35, 1);
  cursor: pointer;
  display: inline-block;
}
.input-pair .submit button:hover, .input-pair .submit button:focus, .input-pair .submit button:active, .input-pair .submit button.active {
  border-color: #16b3b0;
  background-color: #16b3b0;
  color: #ffffff;
}
.input-pair .error {
  display: none;
}

.input-pair > .split {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 0 -0.5rem;
}
.input-pair > .split > fieldset,
.input-pair > .split > div {
  flex-basis: 100%;
  padding: 0 0.5rem;
  margin-bottom: 2rem;
  align-items: center;
}
@media screen and (min-width: 650px) {
  .input-pair > .split > fieldset,
  .input-pair > .split > div {
    flex: 1;
  }
}
.input-pair > .split > div > .split {
  display: flex;
  margin: 0 -0.5rem;
}
.input-pair > .split > div > .split fieldset {
  flex: 1;
  padding: 0 0.5rem;
}

.input-pair:last-child {
  display: flex;
  flex-direction: column;
}

.text-block {
  position: relative;
  flex: 1;
  flex-basis: 100%;
}
@media screen and (min-width: 750px) {
  .text-block {
    flex-basis: 58%;
  }
}
.text-block.-bordered {
  padding: 0 2rem;
  border-left: 1px solid #139c9a;
  border-right: 1px solid #139c9a;
}
@media screen and (min-width: 650px) {
  .text-block.-bordered {
    padding: 0 10rem;
  }
}
.text-block.-title {
  margin-top: 3rem;
}
.text-block .subtitle,
.text-block .introduction {
  transform: translateY(0);
}
.text-block .subtitle {
  font-weight: 700;
  margin-bottom: 1rem;
  transition: transform 0.25s cubic-bezier(0.65, 0.04, 0.35, 1);
}
.text-block .introduction {
  transition: transform 0.25s cubic-bezier(0.65, 0.04, 0.35, 1);
  transition-delay: 0.15s;
}
.text-block p:not(:last-child) {
  margin-bottom: 0.6666666667rem;
}
.text-block strong {
  font-weight: 700;
}
.text-block a {
  padding-bottom: 0.1rem;
  border-bottom: 1px solid #7e8083;
}
.text-block ul li {
  position: relative;
  padding-left: 1rem;
  margin-bottom: 0.5rem;
}
.text-block ul li:before {
  content: "";
  position: absolute;
  top: 0.6666666667rem;
  left: 0;
  width: 0.3333333333rem;
  height: 0.3333333333rem;
  background-color: #139c9a;
}
@media print {
  .text-block ul li:before {
    content: "•";
    top: 0;
    background-color: inherit;
  }
}
.text-block ol li {
  list-style-type: decimal;
  margin-left: 1rem;
}
.text-block em {
  font-style: italic;
}

.title-block {
  position: relative;
  z-index: 2;
}
.title-block .title-block-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.title-block .wrapper {
  position: relative;
  display: inline-block;
  flex-basis: 100%;
  padding: 1rem 2rem;
  background-color: #139c9a;
}
@media screen and (min-width: 750px) {
  .title-block .wrapper {
    flex-basis: 35%;
  }
}
.title-block .wrapper:after {
  content: "";
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: block;
  background-color: #ffffff;
  animation: reveal-block 0.5s;
  animation-fill-mode: both;
}
@media print {
  .title-block .wrapper:after {
    content: none;
  }
}
.title-block .title {
  font-family: Karla, sans-serif;
  font-weight: 700;
  font-size: 1.8rem;
  line-height: 1.2;
  margin: 0;
  text-align: center;
  color: #ffffff;
}

.photo-block {
  flex: 1;
  flex-basis: 100%;
  margin-bottom: 2rem;
}
@media (min-width: 920px) {
  .photo-block {
    flex-basis: 42%;
    margin-bottom: 0;
  }
}
.photo-block .photo {
  position: relative;
  display: block;
  height: 100%;
  min-height: 20rem;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  animation: fadein 0.5s ease-in;
}
.photo-block .video {
  position: relative;
  display: block;
  width: 100%;
}
.photo-block .video .photo {
  transition: filter 0.25s cubic-bezier(0.65, 0.04, 0.35, 1);
}
.photo-block .video:hover .photo, .photo-block .video:active .photo, .photo-block .video:focus .photo {
  filter: grayscale(100%);
}
.photo-block .video:hover .video-button, .photo-block .video:active .video-button, .photo-block .video:focus .video-button {
  background-color: #16b3b0;
  transform: translate(-50%, -50%) scale(1.05);
}
.photo-block .video .video-button {
  position: absolute;
  z-index: 1;
  top: 50%;
  left: 50%;
  cursor: pointer;
  width: 4rem;
  height: 4rem;
  border-radius: 50%;
  background-color: #139c9a;
  transform: translate(-50%, -50%);
  animation: fadein 0.5s ease-in;
  transition: background-color 0.25s cubic-bezier(0.65, 0.04, 0.35, 1), transform 0.2s cubic-bezier(0.65, 0.04, 0.35, 1);
}
.photo-block .video .video-button::before {
  position: absolute;
  content: "";
  display: block;
  z-index: 2;
  top: 50%;
  left: 50%;
  width: 0;
  height: 0;
  border-top: 0.7272727273rem solid transparent;
  border-bottom: 0.7272727273rem solid transparent;
  border-left: 0.7272727273rem solid #ffffff;
  transform: translate(-50%, -50%);
}
@media screen and (min-width: 750px) {
  .photo-block .wide.photo {
    height: 60vh;
  }
}

.page-block {
  position: relative;
  margin: 0 auto 4rem auto;
}

.page-block-link {
  display: block;
}
.page-block-link:hover .read-more-block .read-more, .page-block-link:active .read-more-block .read-more, .page-block-link:focus .read-more-block .read-more {
  transform: scale(0.8);
  animation: spin 0.2s;
}

.page-block.alternate .photo-page-block .title-block .wrapper,
.page-block.alternate .standard-page-block .title-block .wrapper {
  background-color: #139c9a;
}
.page-block.alternate .photo-page-block .title-block .title-block-wrap,
.page-block.alternate .standard-page-block .title-block .title-block-wrap {
  flex-direction: row-reverse;
}
.page-block.alternate .photo-page-block .read-more-block .read-more:after, .page-block.alternate .photo-page-block .read-more-block .read-more:before,
.page-block.alternate .standard-page-block .read-more-block .read-more:after,
.page-block.alternate .standard-page-block .read-more-block .read-more:before {
  background-color: #139c9a;
}

.page-block.alternate .standard-page-block .-bordered.text-block {
  border-color: #139c9a;
}

.page-block.alternate .photo-page-block .content-block {
  flex-direction: row-reverse;
}

#partner-block {
  position: relative;
}
#partner-block ul {
  display: flex;
  justify-content: flex-start;
}
#partner-block ul li {
  height: 4rem;
  margin-left: 0.5rem;
  transform: translateY(0);
  box-shadow: 1px 2px 20px -5px #7e8083;
  transition: transform 0.2s cubic-bezier(0.65, 0.04, 0.35, 1);
}
#partner-block ul li:hover, #partner-block ul li:active, #partner-block ul li:focus {
  transform: translateY(-5%);
}
#partner-block ul li.partner-block-trauma-scan {
  padding: 0.6666666667rem;
  background-color: #ffffff;
}
@media screen and (min-width: 650px) {
  #partner-block ul li {
    margin-left: 2rem;
  }
}
@media screen and (min-width: 750px) {
  #partner-block ul li {
    height: 6.5rem;
  }
}
#partner-block ul li:first-child {
  margin-left: 0;
}
#partner-block img {
  display: block;
  height: 100%;
  width: auto;
}

.detail-page-block {
  overflow-x: hidden;
}
.detail-page-block .text-block {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
  margin: 3rem 0;
}
.detail-page-block .text-block > div {
  flex-basis: 100%;
}
@media screen and (min-width: 1024px) {
  .detail-page-block .text-block {
    margin: 3rem -3rem;
  }
  .detail-page-block .text-block > div {
    flex-basis: 40%;
    padding: 0 3rem;
  }
  .detail-page-block .text-block .block-content {
    flex-basis: 60%;
    padding-right: 4rem;
  }
}
.detail-page-block .stick-to-photo {
  margin-top: -2rem;
}
.detail-page-block .photo-block {
  margin-bottom: 0;
}

.header-image-block {
  position: relative;
}

#testimonial-tag-block {
  margin-bottom: 4rem;
}

.testimonial-tags {
  display: flex;
  justify-content: flex-start;
  flex-wrap: wrap;
}
.testimonial-tags li:not(:last-child) {
  margin: 0 1rem 1rem 0;
}
.testimonial-tags a {
  text-transform: uppercase;
  letter-spacing: 0.05rem;
  display: block;
  padding: 0.5rem 1rem;
  border: 1px solid #7e8083;
  font-size: 0.9rem;
  text-align: center;
  background-color: transparent;
  color: #7e8083;
  text-transform: uppercase;
  transition: background-color, 0.25s cubic-bezier(0.65, 0.04, 0.35, 1), color, 0.25s cubic-bezier(0.65, 0.04, 0.35, 1);
  cursor: pointer;
}
.testimonial-tags a:hover, .testimonial-tags a:focus, .testimonial-tags a:active, .testimonial-tags a.active {
  border-color: #139c9a;
  background-color: #139c9a;
  color: #ffffff;
}

#carousel {
  position: relative;
  overflow: hidden;
  transition: transform 0.7s cubic-bezier(0.65, 0.04, 0.35, 1);
}

#carousel .carousel-image {
  float: left;
  width: 100%;
}
#carousel .carousel-image > div {
  width: 100%;
  height: 45vh;
  min-height: 30rem;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
}
@media screen and (min-width: 1150px) {
  #carousel .carousel-image > div {
    height: 50vh;
  }
}
@media screen and (min-width: 1280px) {
  #carousel .carousel-image > div {
    height: 60vh;
  }
}

.carousel-buttons {
  position: absolute;
  z-index: 20;
  right: 2rem;
  bottom: 1.3333333333rem;
  display: flex;
  flex-direction: row;
}

.carousel-bullet {
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background-color: #ffffff;
  cursor: pointer;
  transition: background-color 0.2s cubic-bezier(0.65, 0.04, 0.35, 1);
}
.carousel-bullet:not(:first-child) {
  margin-left: 0.4rem;
}
.carousel-bullet.active, .carousel-bullet:hover, .carousel-bullet:active, .carousel-bullet:focus {
  background-color: #139c9a;
}

@media screen and (min-width: 750px) {
  .photo-page-block .page-block-link:hover .subtitle, .photo-page-block .page-block-link:focus .subtitle, .photo-page-block .page-block-link:active .subtitle {
    transform: translateY(-20%);
  }
  .photo-page-block .page-block-link:hover .introduction, .photo-page-block .page-block-link:focus .introduction, .photo-page-block .page-block-link:active .introduction {
    transform: translateY(-5%);
  }
}

.standard-page-block {
  margin: 0 2rem;
}
.standard-page-block .title-block .wrap {
  width: 100%;
}
@media screen and (min-width: 750px) {
  .standard-page-block {
    margin: 0 3rem;
  }
}
@media screen and (min-width: 1375px) {
  .standard-page-block {
    margin: 0;
  }
}

.read-more-block {
  flex: 1;
  text-align: center;
}
.read-more-block .read-more {
  position: relative;
  display: inline-block;
  width: 2rem;
  height: 2rem;
  transform: scale(1);
  transition: transform 0.15s cubic-bezier(0.65, 0.04, 0.35, 1);
}
.read-more-block .read-more:after, .read-more-block .read-more:before {
  content: "";
  position: absolute;
  transition: transform 0.2s;
}
.read-more-block .read-more:after {
  top: 50%;
  left: 0;
  width: 2rem;
  height: 0.3333333333rem;
  background-color: #139c9a;
  transform: translateY(-50%);
}
.read-more-block .read-more:before {
  top: 0;
  left: 50%;
  width: 0.3333333333rem;
  height: 2rem;
  background-color: #139c9a;
  transform: translateX(-50%);
}

.content-block {
  display: flex;
  justify-content: flex-start;
  align-items: stretch;
  flex-wrap: wrap;
}

.-photo.content-block {
  margin-top: -1.3333333333rem;
}
.-photo.content-block .text-block .wrapper {
  padding: 0 2rem;
}
@media screen and (min-width: 750px) {
  .-photo.content-block .text-block .wrapper {
    padding: 0 6rem;
  }
}
.-photo.content-block .text-block .read-more-block {
  margin-bottom: 1rem;
}
@media screen and (min-width: 750px) {
  .-photo.content-block .text-block .read-more-block {
    margin-bottom: 4rem;
  }
}

.download-block {
  margin-bottom: 2rem;
}
.download-block .title {
  font-family: Karla, sans-serif;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #139c9a;
}
.download-block .title--secondary {
  font-family: Karla, sans-serif;
  font-size: 1.5rem;
  line-height: 2;
  font-weight: 700;
}
.download-block a > .wrapper {
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.download-block .subtitle {
  flex: 5;
  padding: 0.6666666667rem 4rem;
  background-color: #f7f7f7;
}
.download-block .icon-download {
  display: flex;
  flex: 1;
  justify-content: center;
}
.download-block .icon-download .wrapper {
  position: relative;
  width: 2rem;
  height: 2rem;
}
.download-block .icon-download .wrapper:after {
  content: "";
  position: absolute;
  z-index: -1;
  top: 0;
  left: 0;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background-color: #eaeaea;
  transform: scale(0);
  transition: transform 0.35s cubic-bezier(0.65, 0.04, 0.35, 1);
}
.download-block .icon-download .download {
  position: relative;
  width: 100%;
  height: 100%;
}
.download-block .icon-download .icon {
  fill: #139c9a;
}
.download-block:hover .wrapper:after, .download-block:focus .wrapper:after, .download-block:active .wrapper:after {
  transform: scale(1.75);
}

.download-block.alternate .title {
  color: #7e8083;
}
.download-block.alternate .icon-download .icon {
  fill: #7e8083;
}

#header-cta-block {
  position: absolute;
  top: 25%;
  display: block;
  width: 75%;
  transform: translateY(-25%);
}
@media screen and (min-width: 750px) {
  #header-cta-block {
    width: 50%;
  }
}
@media screen and (min-width: 1150px) {
  #header-cta-block {
    width: 35%;
  }
}

.header-quote {
  background-color: rgba(19, 156, 154, 0.75);
  transition: 0.35s cubic-bezier(0.455, 0.03, 0.515, 0.955);
  /*
  a
  {
  	padding-bottom: $rule / 20;
  	border-bottom: 1px solid $accent_color;
  }
  */
}
.header-quote:hover, .header-quote:active {
  background-color: #139c9a;
}
.header-quote p {
  padding: 2rem;
  font-family: Karla, sans-serif;
  line-height: 1.2;
  font-size: 1.3rem;
  line-height: 1.5;
  text-transform: none;
  color: #ffffff;
}

.header-cta {
  display: block;
  padding: 0.5rem 0.6666666667rem;
  border: none;
  font-size: 0.9rem;
  text-align: center;
  background-color: #139c9a;
  color: #ffffff;
  text-transform: uppercase;
  transition: background-color, 0.25s cubic-bezier(0.65, 0.04, 0.35, 1), color, 0.25s cubic-bezier(0.65, 0.04, 0.35, 1);
  cursor: pointer;
  display: flex;
  align-items: center;
  height: 100%;
}
.header-cta:hover, .header-cta:focus, .header-cta:active, .header-cta.active {
  border-color: #16b3b0;
  background-color: #16b3b0;
  color: #ffffff;
}
.header-cta a {
  padding: 0.5rem;
}

.scroll-button {
  position: fixed;
  z-index: 100;
  right: 2rem;
  bottom: 1rem;
  width: 2rem;
  height: 2rem;
  font-size: 0.8rem;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.6s cubic-bezier(0.65, 0.04, 0.35, 1);
  cursor: pointer;
}
.scroll-button:after, .scroll-button:before {
  content: "";
  position: absolute;
  width: 100%;
  height: 100%;
}
.scroll-button:before {
  right: 0;
  bottom: 0;
  background-color: #139c9a;
}
.scroll-button:after {
  top: 0;
  left: 0;
  background-image: url("img/icon-up.svg");
  background-size: 1rem;
  background-repeat: no-repeat;
  background-position: center;
}
@media screen and (min-width: 750px) {
  body.scrolled .scroll-button {
    opacity: 1;
    transform: translateX(0);
  }
}

.lightbox {
  position: fixed;
  z-index: 9999;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(186, 186, 186, 0.5);
  opacity: 1;
  animation-fill-mode: both;
  transition: opacity 0.8s;
}
.lightbox:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  box-sizing: border-box;
  display: block;
  width: 3rem;
  height: 3rem;
  margin-left: -1.5rem;
  margin-top: -1.5rem;
  border: 2px solid #ffffff;
  border-top: 2px solid transparent;
  border-radius: 50%;
  opacity: 0;
  transform: translateX(50%) translateY(50%);
  transition: opacity 0.4s;
  pointer-events: none;
  animation: spin 0.4s linear infinite;
}
.lightbox.hidden {
  display: none;
}
.lightbox.loading > div:after {
  animation: none;
}
.lightbox.loading:after {
  opacity: 1;
}
.lightbox > div {
  position: relative;
  width: 20rem;
  height: 20rem;
  background-color: #f7f7f7;
  transition: height 0.8s ease-in-out, width 0.8s ease-in-out;
}
.lightbox > div > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  animation: fadein 0.4s;
}
.lightbox > div .img-wrapper {
  display: block;
  width: 100%;
  height: 100%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center center;
  animation: fadein 3s;
}
.lightbox > div .video-wrapper {
  display: block;
  width: 100%;
  height: 100%;
  animation: fadein 3s;
}
.lightbox > div .video-wrapper iframe {
  display: block;
  width: 100%;
  height: 100%;
}
.lightbox .lightbox__close {
  position: absolute;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 1.3333333333rem;
  right: 1.6rem;
  width: 2rem;
  height: 2rem;
  cursor: pointer;
  text-align: center;
  border-radius: 50%;
  background-color: #139c9a;
}
.lightbox .lightbox__close:before, .lightbox .lightbox__close:after {
  content: "";
  position: absolute;
  top: 50%;
  height: 2px;
  width: 1.3333333333rem;
  background-color: #ffffff;
  transform-origin: center;
}
.lightbox .lightbox__close:before {
  transform: translateY(-50%) rotate(45deg);
}
.lightbox .lightbox__close:after {
  transform: translateY(-50%) rotate(-45deg);
}
.lightbox .lightbox__next {
  position: absolute;
  bottom: -3rem;
  right: 0;
  z-index: 9999;
  width: 3rem;
  height: 3rem;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 650px) {
  .lightbox .lightbox__next {
    top: 50%;
    right: -4.5rem;
    bottom: auto;
    margin-top: -2rem;
  }
}
.lightbox .lightbox__next:after {
  content: "";
  position: absolute;
  width: 3rem;
  height: 3rem;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}
.lightbox .lightbox__prev {
  position: absolute;
  bottom: -3rem;
  left: 0;
  z-index: 9999;
  width: 3rem;
  height: 3rem;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
@media screen and (min-width: 650px) {
  .lightbox .lightbox__prev {
    top: 50%;
    left: -4.5rem;
    bottom: auto;
    margin-top: -2rem;
  }
}
.lightbox .lightbox__prev:after {
  content: "";
  position: absolute;
  width: 3rem;
  height: 3rem;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

#scan-block {
  margin-bottom: 4rem;
}

.scan-options-block {
  position: sticky;
  top: 0;
  display: flex;
  padding: 1rem 0;
  border-bottom: 1px solid #139c9a;
  background-color: #ffffff;
}
.scan-options-block .spacer {
  flex-basis: 0;
}
.scan-options-block .wrapper {
  display: flex;
  flex-basis: 100%;
  justify-content: flex-end;
}
@media screen and (min-width: 750px) {
  .scan-options-block .wrapper {
    flex-basis: 80%;
  }
  .scan-options-block .spacer {
    flex-basis: 20%;
  }
}
@media print {
  .scan-options-block .wrapper {
    flex-basis: 80%;
  }
  .scan-options-block .spacer {
    flex-basis: 20%;
  }
}
@media screen and (min-width: 1024px) {
  .scan-options-block .wrapper {
    flex-basis: 75%;
  }
  .scan-options-block .spacer {
    flex-basis: 25%;
  }
}
.scan-options-block .option {
  font-size: 0.8rem;
  text-transform: uppercase;
  flex: 1;
  text-align: center;
}
@media screen and (min-width: 750px) {
  .scan-options-block .option {
    font-size: 1rem;
  }
}
@media screen and (min-width: 750px) {
  .scan-options-block .option {
    flex: 0 0 15%;
  }
}
@media print {
  .scan-options-block .option {
    flex: 0 0 15%;
  }
}

.scan-questions {
  margin-bottom: 2rem;
}

.scan-question {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  padding: 1rem 0;
}
.scan-question .question {
  flex-basis: 100%;
  margin-bottom: 1.3333333333rem;
}
@media screen and (min-width: 750px) {
  .scan-question .question {
    flex-basis: 20%;
    margin-bottom: 0;
  }
}
@media print {
  .scan-question .question {
    flex-basis: 20%;
  }
}
@media screen and (min-width: 1024px) {
  .scan-question .question {
    flex-basis: 25%;
  }
}
.scan-question .question .error {
  color: #139c9a;
}

.question-options {
  display: flex;
  flex-basis: 100%;
  align-items: center;
  justify-content: flex-end;
}
@media screen and (min-width: 750px) {
  .question-options {
    flex-basis: 80%;
  }
}
@media print {
  .question-options {
    flex-basis: 80%;
  }
}
@media screen and (min-width: 1024px) {
  .question-options {
    flex-basis: 75%;
  }
}
.question-options .option {
  flex: 1;
  text-align: center;
}
@media screen and (min-width: 750px) {
  .question-options .option {
    flex: 0 0 15%;
    width: 15%;
  }
}
@media print {
  .question-options .option {
    flex: 0 0 15%;
    width: 15%;
  }
}

.scan-form-block .submit {
  display: flex;
  justify-content: flex-end;
}
.scan-form-block .submit button {
  display: block;
  padding: 0.5rem 4rem;
  border: none;
  font-size: 0.9rem;
  text-align: center;
  background-color: #139c9a;
  color: #ffffff;
  text-transform: uppercase;
  transition: background-color, 0.25s cubic-bezier(0.65, 0.04, 0.35, 1), color, 0.25s cubic-bezier(0.65, 0.04, 0.35, 1);
  cursor: pointer;
}
.scan-form-block .submit button:hover, .scan-form-block .submit button:focus, .scan-form-block .submit button:active, .scan-form-block .submit button.active {
  border-color: #16b3b0;
  background-color: #16b3b0;
  color: #ffffff;
}

.cookie-notice {
  position: relative;
  padding: 0.3333333333rem 0;
  opacity: 1;
  font-size: 0.85rem;
  background-color: #7e8083;
  color: #ffffff;
}
.cookie-notice .cookie-notice-content {
  display: flex;
  justify-content: center;
  align-items: center;
}
.cookie-notice .cookie-notice-text {
  text-align: center;
  padding-right: 2rem;
}
.cookie-notice .cookie-notice-text a {
  border-bottom: 1px solid #ffffff;
  color: #ffffff;
}
.cookie-notice #cookie-notice-agree-btn {
  display: block;
  padding: 0.25rem 1rem;
  border: none;
  font-size: 0.9rem;
  text-align: center;
  background-color: #139c9a;
  color: #ffffff;
  text-transform: uppercase;
  transition: background-color, 0.25s cubic-bezier(0.65, 0.04, 0.35, 1), color, 0.25s cubic-bezier(0.65, 0.04, 0.35, 1);
  cursor: pointer;
}
.cookie-notice #cookie-notice-agree-btn:hover, .cookie-notice #cookie-notice-agree-btn:focus, .cookie-notice #cookie-notice-agree-btn:active, .cookie-notice #cookie-notice-agree-btn.active {
  border-color: #16b3b0;
  background-color: #16b3b0;
  color: #ffffff;
}

.styled-checkbox {
  position: relative;
  padding: 0 0 0 2.75rem;
  margin: 0 0 2rem 0;
  font-size: 0.9rem;
  touch-callout: none;
  user-select: none;
}
.styled-checkbox label {
  display: block;
  margin-bottom: 0;
  padding: 0;
  cursor: pointer;
  text-transform: initial;
  line-height: 1.25;
}
.styled-checkbox label:before,
.styled-checkbox label:after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  display: inline-block;
  box-sizing: border-box;
  width: 1rem;
  height: 1rem;
}
.styled-checkbox label:before {
  border: 1px solid #139c9a;
  vertical-align: middle;
}
.styled-checkbox label:after {
  transform: scale(0.2);
  transition: background-color 0.1s, transform 0.15s;
}
.styled-checkbox input:checked + label:after {
  background-color: #139c9a;
  transform: scale(1);
}
.styled-checkbox input {
  position: absolute;
  left: 0;
  width: inherit !important;
  height: inherit !important;
  opacity: 0;
}
.styled-checkbox label span {
  margin-left: 0.3333333333rem;
  color: #139c9a;
}

.print-block {
  display: none;
}
@media print {
  .print-block {
    display: block;
  }
}

@media print {
  .hamburger-icon,
  #main-nav,
  .pobos-link,
  .print-result,
  .language-select,
  footer {
    display: none;
  }
  .page-block .title-block .wrapper .title {
    text-align: left;
    color: #000000;
  }
  .page-block.alternate .standard-page-block .title-block .wrap {
    flex-direction: row;
  }
  .page-block .title-block .wrapper {
    flex-basis: inherit;
    padding: 0;
    background-color: #ffffff !important;
  }
  .page-block .content-block .wrap {
    flex: 1;
  }
  .scan-options-block {
    position: relative;
  }
}
/*# sourceMappingURL=style.css.map */
