@import url("https://fonts.googleapis.com/css?family=Roboto:300,400,500,600,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;
  font-family: "Roboto", sans-serif;
  font-size: 16px;
  height: 100%;
}

body {
  display: flex;
  flex-direction: column;
  background-color: #f4f5f8;
}

.content {
  flex: 1 0 auto;
}

footer {
  flex-shrink: 0;
}

* {
  position: relative;
}

section {
  padding: 40px;
  background-color: white;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  margin: 24px 0 32px 0;
}

section h2 {
  margin-top: 0;
}

div {
  box-sizing: border-box;
}

p {
  font-weight: 400;
}

a {
  color: #19566e;
}

table {
  border-collapse: collapse;
}

.card-header {
  background-color: white;
  color: black;
  font-weight: bold;
}

.wrapper {
  max-width: 1100px;
  margin: 0 auto;
}
@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: #039be5;
  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: #039be5;
  border: 1px solid #039be5;
}

.btn-primary:hover {
  background-color: #37a3d7 !important;
  border: 1px solid #039be5;
}

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 {
  background-color: white;
  box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);
  position: relative;
}
header .wrapper {
  display: flex;
  justify-content: space-between;
}
header .wrapper div.left {
  display: flex;
}
header .wrapper div.left .site-logo {
  margin-right: 24px;
}
header .wrapper div.left .site-logo img {
  margin: 16px 0;
  width: 210px;
}
header .wrapper div.right {
  display: flex;
}
@media (max-width: 1200px) {
  header .wrapper div.right {
    padding: 12px 20px;
  }
}
header .wrapper div.right > div:first-of-type {
  flex-grow: 1;
}
header .wrapper div.right .auth a {
  display: inline-block;
  color: #162136 !important;
  margin-left: 10px;
  font-size: 16px;
  font-weight: 500;
}
@media (max-width: 760px) {
  header .wrapper div.right .site-logo img {
    width: 90px;
  }
}
header .wrapper div.right .langBox {
  cursor: pointer;
  display: none;
  position: absolute;
  background: white;
  width: 167px;
  padding: 10px;
  text-align: left;
  right: 0;
  z-index: 200;
  box-shadow: 0 0 10px gray;
  margin-top: 5px;
}
header .wrapper div.right .langBox a {
  display: flex;
  align-items: center;
  margin: 4px 0;
  text-decoration: none;
  color: #777777 !important;
}
header .wrapper div.right .langBox a img {
  margin-right: 5px;
}
header .wrapper div.right .langContainer {
  text-align: right;
  font-size: 15px;
  font-weight: 300;
  display: flex;
}
header .wrapper div.right .langContainer img.flag {
  width: 24px;
  height: 24px;
  border-radius: 1000px;
}
header .wrapper div.right .langSelector {
  display: flex;
  align-items: center;
  text-decoration: none;
  cursor: pointer;
  color: #162136;
}
header .wrapper div.right .langSelector > * {
  margin: 0 2px;
}
@media (max-width: 760px) {
  header .wrapper div.right .langSelector span {
    display: none;
  }
}
header .wrapper .header-menu {
  display: flex;
}
header .wrapper .header-menu .menu-item {
  cursor: pointer;
  text-decoration: none;
  color: #162136;
  padding: 8px 16px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  font-weight: 500;
  font-size: 16px;
}
@media (max-width: 1200px) {
  header .wrapper .header-menu .menu-item {
    font-size: 14px;
    left: 0;
  }
}
header .wrapper .header-menu .menu-item.selected {
  border-bottom: 4px solid #162136;
}
header .wrapper .header-menu .menu-item:hover {
  color: #039be5;
}
header .wrapper .header-menu .menu-item.trusted {
  font-weight: bold;
  color: #ffd700;
}
header .wrapper .header-menu .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;
}

footer {
  background-color: #ebecf1;
  padding: 40px 0;
}
footer .links {
  margin-top: 20px;
}
footer .links a {
  margin-right: 20px;
}
footer .copyright-links-contacts {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  overflow: hidden;
}
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;
}

.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 > div.broker-logo-image {
  background-size: cover;
  background-repeat: no-repeat;
  background-position: 50% 50%;
  flex-grow: 1;
  flex-shrink: 1;
  border-radius: 10px;
  filter: saturate(0.8);
}

div.content {
  padding: 40px 0;
}

div.white-bg {
  clear: both;
  background-color: white;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 40px;
  margin-bottom: 40px;
}
@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;
  }
}

.brokers-popup {
  display: none;
  position: absolute;
  top: 28px;
  left: -20px;
  padding: 20px;
  padding-left: 40px;
  background-color: #4e5c61;
  color: white;
  z-index: 101;
  width: 350px;
  box-shadow: 0 3px 10px rgba(0, 0, 0, 0.2);
  columns: 2;
}
@media (max-width: 1000px) {
  .brokers-popup {
    left: 0;
    padding-left: 0;
  }
}
.brokers-popup li {
  list-style: none;
}

a.link {
  color: #039be5 !important;
}

.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: #039be5;
  border-color: #039be5;
}
.btn-outline-primary:hover {
  background-color: #039be5;
  border-color: #039be5;
}

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

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

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

.nowrap {
  text-wrap: nowrap !important;
}

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

.bold {
  font-weight: bold;
}

.small {
  font-size: 12px;
}

.block {
  clear: both;
  background-color: white;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  padding: 40px;
  margin-bottom: 40px;
}

textarea, input[type=text] {
  width: 100%;
  margin-bottom: 20px;
  padding: 8px 16px;
  border: 1px solid #d6d9e0;
  box-sizing: border-box;
  border-radius: 8px;
  font-size: 18px;
  line-height: 28px;
  color: #212121;
  box-shadow: none;
  appearance: none;
  -webkit-appearance: none;
}

.score {
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 100px;
  border-width: 3px;
  border-style: solid;
  width: 40px;
  height: 40px;
  font-weight: bold;
}
.score.good {
  border-color: green;
  color: green;
}
.score.average {
  border-color: orange;
  color: orange;
}
.score.bad {
  border-color: red;
  color: red;
}

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