@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;
}

:root {
  --header-color: #1F2A2E;
}

html, body {
  position: relative;
  margin: 0;
  padding: 0;
  font-family: "Roboto", sans-serif;
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  background-color: white;
  padding-top: 104px;
}
@media (max-width: 1000px) {
  body {
    padding-top: 80px;
  }
}

header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  transform: translateY(0);
  opacity: 1;
  transition: transform 0.35s ease, opacity 0.35s ease;
}
header.hide {
  transform: translateY(-100%);
  opacity: 0;
}
header .first {
  background-color: var(--header-color);
  color: white;
}
header .first > div {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 12px;
  padding-bottom: 12px;
}
@media (max-width: 1200px) {
  header .first > div {
    padding: 12px 20px;
  }
}
header .first > div > div:first-of-type {
  flex-grow: 1;
}
header .first > div .auth a {
  display: inline-block;
  color: white !important;
  margin-left: 10px;
}
header .first > div .site-logo img {
  height: 80px;
}
@media (max-width: 760px) {
  header .first > div .site-logo img {
    height: 56px;
  }
}
header .menu-bar .menu-item {
  cursor: pointer;
  text-decoration: none;
  font-size: 15px;
  color: white;
  padding: 8px 20px;
  left: -20px;
  white-space: nowrap;
  display: inline-block;
}
header .menu-bar .menu-item.no-right-padding {
  padding-right: 8px;
}
@media (max-width: 1200px) {
  header .menu-bar .menu-item {
    font-size: 14px;
    left: 0;
  }
}
header .menu-bar .menu-item.selected {
  border-bottom: 4px solid #b99042;
  color: white !important;
}
header .menu-bar .menu-item:hover {
  background-color: rgba(255, 255, 255, 0.1);
}
header .menu-bar .menu-item.trusted {
  font-weight: bold;
  color: #ffd700;
}
header .menu-bar .menu-item.trusted:after {
  content: "";
  display: inline-block;
  background: url("/img/brokers/crown.svg") no-repeat;
  filter: invert(78%) sepia(88%) saturate(4011%) hue-rotate(360deg) brightness(103%) contrast(109%);
  width: 24px;
  height: 24px;
  vertical-align: bottom;
  margin-left: 3px;
  margin-bottom: 2px;
}
header .menu-bar .menu-item.add-button {
  color: #b99042 !important;
  font-size: 24px !important;
  margin-left: 16px;
}
header .menu-bar .wrapper, header .menu-bar .container {
  padding: 0;
}
header .menu-bar .badge {
  background-color: #d7dd07;
  color: black;
  vertical-align: text-bottom;
}

.langContainer {
  text-align: right;
  font-size: 15px;
  font-weight: 300;
}
.langContainer .langSelector {
  display: flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
  color: #cccccc;
}
.langContainer .langSelector img.flag {
  width: 20px;
  height: 20px;
  border-radius: 100px;
}
.langContainer .langSelector > * {
  margin: 0 2px;
}
@media (max-width: 760px) {
  .langContainer .langSelector span {
    margin-left: 8px;
  }
}
.langContainer .langBox {
  cursor: pointer;
  display: none;
  position: absolute;
  background: white;
  width: 167px;
  padding: 10px;
  text-align: left;
  right: 0;
  z-index: 2000;
  box-shadow: 0 0 10px gray;
  margin-top: 5px;
}
@media (max-width: 1000px) {
  .langContainer .langBox {
    top: 0;
    left: 0;
    bottom: 0;
    position: fixed;
    width: unset;
    margin-top: 0;
    background-color: var(--header-color);
    padding: 16px;
  }
}
.langContainer .langBox a {
  display: flex;
  align-items: center;
  margin: 4px 0;
  text-decoration: none;
  color: #777777 !important;
}
@media (max-width: 1000px) {
  .langContainer .langBox a {
    color: #bfbfbf !important;
  }
}
.langContainer .langBox a img.flag {
  margin-right: 5px;
  width: 20px;
  height: 20px;
  border-radius: 100px;
}

.content {
  flex: 1 0 auto;
}

footer {
  flex-shrink: 0;
}

* {
  position: relative;
}

section h2 {
  margin-top: 0;
}

div {
  box-sizing: border-box;
}

h1 {
  font-size: 2rem;
}

h2 {
  font-size: 1.3rem;
}

p {
  font-weight: 400;
}

a {
  color: #19566e;
}

table {
  border-collapse: collapse;
}

.card-header {
  background-color: #4e5c61;
  color: white;
}

.wrapper {
  max-width: 1000px;
  margin: 0 auto;
  padding: 40px 0;
}
@media (max-width: 1200px) {
  .wrapper {
    padding: 40px 20px;
    max-width: 100%;
  }
}
@media (max-width: 900px) {
  .wrapper {
    padding: 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;
}

.btn-primary {
  background-color: #b99042;
  border: 1px solid #a77f34;
}

.btn-outline-gold {
  border-color: #a77f34;
}

.btn-outline-auth {
  border: 1px solid #a77f34;
  color: #a77f34;
}

.btn-primary:hover {
  background-color: #a77f34 !important;
  border: 1px solid #a77f34;
}

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;
}

footer {
  background-color: #1A2428;
  color: #8e909c;
}
footer .links {
  margin-top: 20px;
}
footer .links a {
  color: white;
  margin-right: 20px;
}
footer a.apply {
  background: linear-gradient(-90deg, #333333 0%, #a18a59 100%);
}
footer hr {
  border-color: #444444;
  margin: 24px 0;
}
footer .menu {
  display: flex;
  gap: 32px;
  justify-content: space-around;
}
@media (max-width: 1000px) {
  footer .menu {
    flex-wrap: wrap;
  }
}
footer .menu > div {
  flex-basis: 0;
}
footer .menu > div a {
  display: block;
  color: inherit !important;
  white-space: nowrap;
}
footer .copyright-links-contacts {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  overflow: hidden;
}
@media (max-width: 1000px) {
  footer .copyright-links-contacts {
    justify-content: center;
    text-align: center;
  }
}
footer .copyright-links-contacts > div:last-of-type {
  display: flex;
  align-items: center;
}
footer .copyright-links-contacts > div:last-of-type a {
  margin-left: 10px;
}
footer .contacts {
  text-align: right;
}
footer .proofs {
  display: flex;
  justify-content: center;
  gap: 32px;
}
@media (max-width: 1000px) {
  footer .proofs {
    flex-wrap: wrap;
  }
}
footer .proofs .item {
  display: flex;
  gap: 14px;
  align-items: center;
}
@media (max-width: 1000px) {
  footer .proofs .item {
    flex-direction: column;
    gap: 16px;
  }
}
footer .proofs .item img {
  width: 64px;
  height: 64px;
  object-fit: contain;
}
@media (max-width: 1000px) {
  footer .proofs .item img {
    height: unset;
  }
}
footer .proofs .item .content {
  color: #bf9f54;
}
footer .rebate-group {
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
}
@media (max-width: 1000px) {
  footer .rebate-group {
    flex-wrap: wrap;
    justify-content: center;
  }
}
footer .rebate-group img {
  height: 65px;
  margin: 10px 40px;
}
@media (max-width: 800px) {
  footer .rebate-group img {
    height: 40px;
    margin: 10px 10px;
  }
}
footer .disclaimer {
  opacity: 0.5;
}

.contacts > a {
  display: inline-block;
  margin-right: 5px;
}
.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;
}

.broker-logo {
  display: flex;
  width: 126px;
  height: 126px;
  border-radius: 10px;
  align-items: stretch;
  justify-items: stretch;
  align-content: stretch;
  justify-content: stretch;
  box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.1);
}
.broker-logo .recommended {
  z-index: 100;
  position: absolute;
  background-color: #fff205;
  color: black;
  width: 100%;
  text-align: center;
  font-size: 13px;
  font-weight: bold;
  border-radius: 10px 10px 0 0;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.2);
}
.broker-logo .max-rebate {
  z-index: 100;
  position: absolute;
  bottom: 0;
  background-color: white;
  color: #0f74a8;
  width: 100%;
  text-align: center;
  font-size: 11px;
  font-weight: bold;
  border-radius: 0 0 10px 10px;
}
.broker-logo .max-rebate span.material-icons {
  font-size: 14px;
  vertical-align: text-bottom;
  width: 20px;
  color: #0f74a8;
}
.broker-logo > .broker-logo-image {
  object-fit: cover;
  object-position: 50% 50%;
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  flex-grow: 1;
  flex-shrink: 1;
  border-radius: 10px;
  filter: saturate(0.8);
  max-width: 126px;
  max-height: 126px;
  width: 126px;
  height: 126px;
}

div.grey-bg {
  background-color: white;
}

div.white-bg {
  background-color: white;
  position: relative;
  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;
  }
}

a.link {
  color: #0f74a8 !important;
  text-decoration: underline;
}

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

.btn-outline-primary, .btn-outline-secondary {
  margin: 5px;
  padding: 5px 10px;
  border-radius: 5px;
  border-width: 1px;
}

.btn-outline-primary {
  color: #0f74a8;
  border-color: #0f74a8;
}
.btn-outline-primary:hover {
  background-color: #0f74a8;
  border-color: #0f74a8;
}

@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: 1000px) {
  .decor {
    display: none;
  }
}

.small {
  font-size: 12px !important;
  font-weight: inherit !important;
}

.bold {
  font-weight: bold !important;
}

.hidden {
  display: none !important;
}

.cursor-pointer {
  cursor: pointer !important;
}

.cat-selector {
  cursor: pointer;
  color: black;
}
.cat-selector.active {
  color: white !important;
}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link {
  color: #3c494f !important;
  border-bottom: 4px solid #3c494f;
  border-radius: 0;
  font-weight: bold;
  background-color: unset;
}

.menu-mobile {
  z-index: 10000;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  background-color: var(--header-color);
  display: flex;
  flex-direction: column;
  padding: 12px 20px;
  color: white;
}
.menu-mobile a:not(.apply) {
  color: white;
  line-height: 2;
}
.menu-mobile a:not(.apply) .material-symbols-outlined {
  vertical-align: top;
  color: #bf9f54;
  margin-right: 8px;
}
.menu-mobile a.apply {
  background: linear-gradient(-90deg, #333333 0%, #a18a59 100%);
}
.menu-mobile a.apply:hover {
  filter: brightness(80%);
}
.menu-mobile .close {
  position: absolute;
  top: 28px;
  right: 16px;
  color: white;
}
.menu-mobile .logo-container img {
  width: 175px;
}
.menu-mobile hr {
  margin-top: 1rem;
  margin-bottom: 1rem;
  border-color: #4e4e4e;
  width: 100%;
}
.menu-mobile .photo {
  width: 52px;
  height: 52px;
  background-size: cover;
  border-radius: 100%;
  margin-right: 16px;
}

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

@media (min-width: 600px) {
  .hidden-on-desktop {
    display: none !important;
  }
}

.gap-2 {
  gap: 8px;
}

.gap-3 {
  gap: 16px;
}

.gap-4 {
  gap: 32px;
}

@media (hover: hover) and (pointer: fine) {
  .menu-popup-opener:hover .menu-popup {
    display: block;
  }
}
.menu-popup {
  display: none;
  position: absolute;
  left: -20px;
  padding: 20px 20px 20px 40px;
  background-color: #474E55;
  color: white;
  z-index: 101;
  width: max-content;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
}
.menu-popup .menu-item {
  display: block !important;
}
.menu-popup.two-columns {
  columns: 3;
}
@media (max-width: 1000px) {
  .menu-popup {
    left: 0;
    padding-left: 0;
  }
}
.menu-popup li {
  list-style: none;
}
.menu-popup hr {
  border-color: #777777;
}

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

a.apply, button.apply {
  padding: 12px 36px;
  display: inline-block;
  font-weight: bold;
  background: linear-gradient(90deg, #a79155 0%, #ccb279 100%);
  border-radius: 4px;
  color: white !important;
  min-width: 250px;
  text-align: center;
  cursor: pointer;
  border-bottom: 1px solid #73602e;
  border-right: 1px solid #73602e;
  border-left: 1px solid #6b5d38;
  border-top: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}
@media (max-width: 1000px) {
  a.apply, button.apply {
    margin-bottom: 10px;
    margin-top: 0;
  }
}
a.apply:hover, button.apply:hover {
  background-color: #856635;
  text-decoration: none;
  transform: scale(1.01);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.2);
}
a.apply.secondary, button.apply.secondary {
  background: none;
  border: 1px solid #4a5568;
  padding: 10px;
  text-align: center;
  margin-bottom: 18px;
  font-weight: 600;
  color: #4a5568;
}
a.apply.secondary:hover, button.apply.secondary:hover {
  border-color: #9ea9b8;
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}
@media (max-width: 1000px) {
  a.apply.secondary, button.apply.secondary {
    margin-left: 0;
    background: white;
  }
}

.vertical-align-bottom {
  vertical-align: bottom;
}

.auth-container {
  display: flex;
  justify-content: stretch;
  gap: 32px;
}
@media (min-width: 1000px) {
  .auth-container {
    padding: 32px;
    border-radius: 12px;
    background: linear-gradient(180deg, #fff, #fbfbfb);
    color: black;
    border: 1px solid rgba(255, 255, 255, 0.6);
    box-shadow: 0 8px 30px rgba(34, 34, 34, 0.1);
  }
}
@media (min-width: 1600px) {
  .auth-container {
    margin: 40px 0;
  }
}
@media (max-width: 1000px) {
  .auth-container {
    flex-direction: column;
  }
  .auth-container h1, .auth-container .description {
    text-align: center;
  }
}
.auth-container div.info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-radius: 16px;
}
@media (max-width: 1000px) {
  .auth-container div.info {
    order: 2;
    width: 100%;
    align-items: center;
  }
}
@media (min-width: 1000px) {
  .auth-container div.info {
    background: linear-gradient(135deg, white 50%, rgba(154, 182, 193, 0.4666666667) 100%);
  }
}
.auth-container div.info div.advantages {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
@media (max-width: 1000px) {
  .auth-container div.info div.advantages {
    display: none;
  }
}
.auth-container div.info div.advantages > div .material-symbols-outlined {
  color: white;
  font-size: 18px;
  background-color: #cedde6;
  border-radius: 100%;
  padding: 4px;
  vertical-align: bottom;
  margin-right: 4px;
}
.auth-container div.info img {
  max-width: 300px;
}
.auth-container div.form {
  display: flex;
  flex-direction: column;
  gap: 16px;
  flex-grow: 1;
}
@media (max-width: 1000px) {
  .auth-container div.form {
    width: 100%;
  }
}
.auth-container div.form h1 {
  font-size: 24px;
}
.auth-container .grecaptcha-badge {
  visibility: hidden !important;
  opacity: 0 !important;
  display: none !important;
}

.password-wrapper {
  position: relative;
}

.password-wrapper input {
  padding-right: 45px;
}

.toggle-password {
  position: absolute;
  right: 12px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  user-select: none;
  color: #888;
  font-size: 22px;
}

.toggle-password:hover {
  color: #000;
}

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