@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,700&subset=cyrillic"); /* The container */
.checkbox {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  vertical-align: middle;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding-top: 4px;
}

/* Hide the browser's default checkbox */
.checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}

/* Create a custom checkbox */
.checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: #fff;
}

/* On mouse-over, add a grey background color */
/* When the checkbox is checked, add a blue background */
.checkbox input:checked ~ .checkmark {
  background-color: #2196F3;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkmark:after {
  content: "";
  position: absolute;
  display: none;
}

/* Show the checkmark when checked */
.checkbox input:checked ~ .checkmark:after {
  display: block;
}

/* Style the checkmark/indicator */
.checkbox .checkmark:after {
  left: 9px;
  top: 5px;
  width: 5px;
  height: 10px;
  border: solid white;
  border-width: 0 3px 3px 0;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
}

.radio {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  padding-top: 4px;
}
.radio .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 25px;
  width: 25px;
  background-color: white;
  border-radius: 50%;
}
.radio input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.radio :hover input ~ .checkmark {
  background-color: #ccc;
}
.radio input:checked ~ .checkmark {
  background-color: #2196F3;
}
.radio .checkmark:after {
  content: "";
  position: absolute;
  display: none;
}
.radio input:checked ~ .checkmark:after {
  display: block;
}
.radio .checkmark:after {
  top: 9px;
  left: 9px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: white;
}

html, body {
  position: relative;
  margin: 0;
  padding: 0;
  height: 100%;
}

html, body, table {
  font-family: "Roboto", sans-serif;
  font-size: 15px;
}

body {
  display: flex;
  flex-direction: column;
}

.content {
  flex: 1 0 auto;
}

footer {
  flex-shrink: 0;
}

* {
  position: relative;
}

section.second {
  background-color: #E6EBF0;
}

section.third {
  background-color: #d4dce5;
}

section h2 {
  margin-top: 0;
  color: #4f626c;
}

div {
  box-sizing: border-box;
}

p {
  font-weight: 400;
}

a {
  color: #19566e;
}

table {
  border-collapse: collapse;
}

.wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 0;
}
@media (max-width: 1000px) {
  .wrapper {
    padding: 40px 20px;
    max-width: 100%;
  }
}

.actionButton {
  display: inline-block;
  background-color: #b99042;
  color: white !important;
  font-size: 14px;
  padding: 8px 25px;
  text-decoration: none;
  margin: 0 0 20px 0;
  border-radius: 3px;
  width: auto;
  cursor: pointer;
  border: none;
}
.actionButton:hover {
  text-decoration: none;
}

.btn-primary {
  background-color: #b99042;
  border: none;
}

.btn-primary:hover {
  background-color: #a77f34 !important;
}

input::placeholder {
  color: #cccccc;
}

.button-translate {
  display: inline-block;
  background-image: url("/img/Google_Translate_logo.svg");
  background-size: contain;
  width: 32px;
  height: 32px;
  cursor: pointer;
}

header .first {
  background-color: #283639;
}
header .first > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 0;
  padding-bottom: 0;
}
@media (max-width: 1000px) {
  header .first > div {
    padding: 0 !important;
  }
}
header .first > div > div:first-of-type {
  flex-grow: 1;
}
header .first > div .auth a {
  display: inline-block;
  color: white;
  font-size: 14px;
  text-decoration: none;
  margin-left: 10px;
  border-radius: 3px;
}
header .first > div .auth a:hover {
  text-decoration: underline;
}
@media (max-width: 1000px) {
  header .first > div .auth a {
    display: block;
    padding: 8px 14px;
    margin-right: 5px;
  }
  header .first > div .auth a:first-of-type {
    margin-bottom: 5px;
  }
}
header .first > div .site-logo {
  display: flex;
  align-items: center;
}
header .first > div .site-logo img {
  height: 85px;
  margin: 10px 0;
}
@media (max-width: 760px) {
  header .first > div .site-logo img {
    margin-left: 16px;
  }
}
header .first > div .langBox {
  cursor: pointer;
  display: none;
  position: absolute;
  background: white;
  width: 167px;
  padding: 10px;
  text-align: left;
  right: 0;
  z-index: 20000;
  box-shadow: 0 0 10px gray;
  margin-top: 5px;
}
header .first > div .langBox a {
  display: flex;
  align-items: center;
  margin: 4px 0;
  text-decoration: none;
  color: #777777 !important;
}
header .first > div .langBox a img.flag {
  margin-right: 5px;
  width: 20px;
  height: 20px;
  border-radius: 100px;
}
header .first > div .langContainer {
  text-align: right;
  font-size: 15px;
  font-weight: 300;
}
header .first > div .langSelector {
  display: flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
  color: #aaaabb;
}
header .first > div .langSelector img.flag {
  width: 20px;
  height: 20px;
  border-radius: 100px;
}
header .first > div .langSelector > * {
  margin: 0 2px;
}
@media (max-width: 760px) {
  header .first > div .langSelector span {
    display: none;
  }
}
header .menu-bar.second {
  background: #3c494f;
}
@media (max-width: 600px) {
  header .menu-bar.second.menu-items-block a {
    display: block;
    text-align: left;
  }
}
header .menu-bar.second .consultation {
  color: #00be40;
}
header .menu-bar.third {
  background: #4e5c61;
}
header .menu-bar a {
  cursor: pointer;
  text-decoration: none;
  font-size: 15px;
  color: white;
  padding: 6px 16px;
  left: -20px;
  white-space: nowrap;
  display: inline-block;
}
@media (max-width: 1200px) {
  header .menu-bar a {
    font-size: 14px;
    left: 0;
  }
}
header .menu-bar a.selected {
  border-bottom: 4px solid #b99042;
  color: white;
}
header .menu-bar a:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
header .menu-bar .dropdown-menu {
  background-color: #3c494f;
}
header .menu-bar .dropdown-menu a {
  display: block;
  left: 0;
}
header .menu-bar .wrapper, header .menu-bar .container {
  padding: 0 !important;
  text-align: left;
}

footer {
  background-color: #283639;
  color: #8e909c;
}
footer .copyright-links-contacts {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  overflow: hidden;
}
@media (max-width: 760px) {
  footer .copyright-links-contacts {
    margin: 20px;
  }
}
footer .copyright-links-contacts .links {
  margin-top: 20px;
}
footer .copyright-links-contacts .links a {
  color: white;
  margin-right: 20px;
  white-space: nowrap;
}
footer .copyright-links-contacts .links a:hover {
  color: #cccccc;
}
footer .copyright-links-contacts > div.store-contacts {
  text-align: right;
}
@media (max-width: 1000px) {
  footer .copyright-links-contacts > div.store-contacts {
    text-align: left;
    width: 100%;
  }
}
footer .copyright-links-contacts > div.store-contacts .storeLink {
  margin-bottom: 15px;
}
@media (max-width: 1000px) {
  footer .copyright-links-contacts > div.store-contacts .storeLink {
    text-align: center;
  }
}
footer .copyright-links-contacts > div.store-contacts .storeLink img {
  width: 150px;
}
@media (max-width: 1000px) {
  footer .copyright-links-contacts > div.store-contacts .storeLink img {
    margin-top: 15px;
    text-align: center;
  }
}

.contacts > a {
  display: inline-block;
  margin-right: 10px;
}
.contacts > a img {
  width: 36px;
}
@media (max-width: 760px) {
  .contacts {
    margin-top: 20px;
    font-size: 14px;
  }
}

.invalid-feedback {
  padding: 10px;
  background-color: #fff591;
  display: block;
  color: black;
  font-size: inherit;
}

.formError {
  text-align: center;
  display: none;
}

.alert {
  padding: 10px;
  margin: 3px;
}

a.apply {
  padding: 10px 30px;
  display: inline-block;
  font-weight: normal;
  background-color: #a07d45;
  box-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
  color: white;
  text-transform: uppercase;
  border-radius: 0;
  min-width: 250px;
  text-align: center;
  cursor: pointer;
}
@media (max-width: 1000px) {
  a.apply {
    margin-bottom: 10px;
    margin-top: 0;
  }
}
a.apply:hover {
  background-color: #856635;
  text-decoration: none;
}
a.apply.secondary {
  background-color: rgba(255, 255, 255, 0.2);
  box-shadow: unset;
  color: #a07d45;
  border: 1px solid #a07d45;
  margin-left: 10px;
}
a.apply.secondary:hover {
  background-color: rgba(255, 255, 255, 0.5);
  text-decoration: none;
}
@media (max-width: 1000px) {
  a.apply.secondary {
    margin-left: 0;
    background: white;
  }
}

.paysystem-logo {
  display: flex;
  width: 64px !important;
  height: 64px !important;
  border-radius: 10px;
  background-color: white;
  align-items: stretch;
  justify-items: stretch;
  align-content: stretch;
  justify-content: stretch;
  box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
}
.paysystem-logo > div {
  background-size: contain;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  flex-grow: 1;
  flex-shrink: 1;
  border-radius: 10px;
}

div.grey-bg {
  background-color: #3c494f;
}
div.grey-bg div.white-bg {
  top: -20px;
}

div.white-bg {
  background-color: white;
  position: relative;
  box-shadow: 0 0 30px rgba(0, 0, 0, 0.4392156863);
  max-width: 1000px;
  margin: 0 auto;
}
@media (max-width: 1000px) {
  div.white-bg {
    padding: 0;
    max-width: 100%;
    top: 0;
  }
}
div.white-bg section .wrapper {
  padding: 40px;
}
@media (max-width: 1000px) {
  div.white-bg section .wrapper {
    padding: 25px;
  }
}

.hidden {
  display: none !important;
}

.btn-outline-primary {
  margin: 5px;
  padding: 5px 10px;
  border-radius: 5px;
  border-width: 1px;
  color: #b99042;
  border-color: #b99042;
}
.btn-outline-primary:hover {
  background-color: #b99042;
  border-color: #b99042;
}

@media (min-width: 1000px) {
  .mobile-popup {
    display: none;
  }
}
@media (max-width: 1000px) {
  .mobile-popup {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 100000;
    background-color: white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4666666667);
    color: black;
    padding: 20px;
  }
  .mobile-popup h3 {
    display: inline-block;
  }
  .mobile-popup #mobile-popup-close {
    color: black;
    position: absolute;
    right: 8px;
    cursor: pointer;
    top: 8px;
    font-size: 14px;
  }
}

@media (max-width: 1000px) {
  .desktop-popup {
    display: none;
  }
}
@media (min-width: 1000px) {
  .desktop-popup {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100000;
    background-color: white;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.4666666667);
    color: black;
    padding: 20px;
    width: 230px;
  }
  .desktop-popup img {
    width: 100%;
    margin-bottom: 20px;
  }
  .desktop-popup h3 {
    display: inline-block;
  }
  .desktop-popup #desktop-popup-close {
    color: black;
    position: absolute;
    right: 8px;
    cursor: pointer;
    top: 8px;
    font-size: 14px;
  }
}
@media (min-width: 2000px) {
  .desktop-popup {
    width: 400px !important;
  }
}

.decor {
  width: 250px;
  height: 250px;
  position: absolute;
  z-index: 1000000;
  left: 0;
  top: 0;
  background-size: cover;
}
@media (max-width: 1200px) {
  .decor {
    display: none;
  }
}

.adaptive-menu {
  z-index: 10000;
}
@media (max-width: 1000px) {
  .adaptive-menu {
    position: fixed;
    top: 96px;
    right: 0;
    left: 0;
    bottom: 0;
    background-color: #4e5c61;
    display: flex;
    flex-direction: column;
  }
  .adaptive-menu #menu-section-auth {
    order: -1;
  }
  .adaptive-menu .button-close {
    padding: 16px;
    text-align: right;
    color: white;
    width: 100%;
    height: 56px;
    display: flex;
    justify-content: end;
  }
  .adaptive-menu .menu-bar {
    border-bottom: 1px solid #768186;
  }
  .adaptive-menu .menu-bar.second {
    background-color: #4e5c61;
  }
  .adaptive-menu .menu-bar .menu-item {
    display: block;
    font-size: 16px;
  }
}

@media (max-width: 600px) {
  .hidden-on-mobile {
    display: none;
  }
}

.gap-2 {
  gap: 8px;
}

.blog-content img {
  min-width: 100%;
  max-width: 100%;
}

/*# sourceMappingURL=layout.css.map */
