* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
}
a,
a:hover,
a:focus {
  text-decoration: none;
}
a {
  transition: 0.3s;
}
img {
  max-width: 100%;
}
ul {
  list-style-type: none;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
}
.container {
  width: 1230px;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
}
.container-long {
  padding: 0 120px;
}
body,
input,
textarea,
button {
  font-family: 'Roboto', sans-serif;
}
body {
  position: relative;
  overflow-x: hidden;
  background-color: #F2F5F9;
}
.modal {
  width: 100%;
  height: 100%;
  background: rgba(36, 77, 139, 0.8);
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
}
.modal .close-modal {
  color: rgba(213, 213, 213, 0.78);
  font-size: 50px;
  position: absolute;
  right: 15px;
  top: 0px;
  cursor: pointer;
  transition: 0.3s;
}
.modal .close-modal:hover {
  color: #ffffff;
}
.modal .modal-block {
  width: 500px;
  max-width: calc(100% - 30px);
  display: none;
  background-color: #ffffff;
  border-radius: 5px;
  animation: scall 0.7s;
}
.modal .modal-block.long {
  width: 1000px;
}
.modal .modal-block.longer {
  width: 590px;
}
.open-modal {
  cursor: pointer;
}
.menu_mob {
  display: none;
}
.modal-title {
  font-weight: 500;
  font-size: 28px;
  color: #222326;
  padding: 40px;
  border-bottom: 1px solid #EEEFF3;
}
.modal-content {
  padding: 20px 40px 40px;
}
.modal-sub-title {
  font-size: 16px;
  line-height: 1.5;
  text-align: center;
  color: #4A5566;
  margin-bottom: 20px;
}
.input {
  width: 100%;
  height: 60px;
  padding-left: 20px;
  font-size: 16px;
  color: #4A5566;
  border: 1px solid #BBC1C9;
  border-radius: 8px;
  margin-bottom: 20px;
  outline: none;
  transition: 0.3s;
}
.input:focus {
  border: 1px solid #9098b6;
}
.forgot-password {
  border-bottom: 1px solid #E6E8EC;
  margin-bottom: 20px;
  text-align: center;
  padding: 20px 0;
}
.forgot-password-btn {
  font-weight: 500;
  font-size: 16px;
  color: #4A5566;
  cursor: pointer;
}
.forgot-password-btn:hover {
  color: #2571E2;
}
.modal-social {
  display: flex;
  justify-content: center;
}
.modal-social li {
  margin: 0 5px;
}
.modal-social li a:hover {
  opacity: 0.7;
}
.scroll-top {
  position: absolute;
  bottom: 350px;
  right: 20px;
  width: 70px;
  height: 70px;
  display: none;
  background-color: #E5E5E5;
  border: 1px solid #fff;
  border-radius: 50%;
  background-image: url(../img/up-arrow.svg);
  background-size: 18px;
  background-position: center;
  background-repeat: no-repeat;
  opacity: 0;
  transition: all 0.6s ease;
  transform: translateX(150%);
  z-index: 30;
}
.scroll-top:hover {
  background-color: #d3d3d3;
}
.scroll-top.active {
  opacity: 1;
  transform: none;
}
body .m-b-0 {
  margin-bottom: 0;
}
body .m-b-10 {
  margin-bottom: 10px;
}
body .m-b-15 {
  margin-bottom: 15px;
}
body .m-b-20 {
  margin-bottom: 20px;
}
body .m-b-25 {
  margin-bottom: 25px;
}
body .m-b-30 {
  margin-bottom: 30px;
}
body .m-b-40 {
  margin-bottom: 40px;
}
body .m-b-50 {
  margin-bottom: 50px;
}
body .m-b-60 {
  margin-bottom: 60px;
}
body .m-b-80 {
  margin-bottom: 80px;
}
body .full {
  width: 100%;
}
body .m-w-576 {
  max-width: 576px;
}
body .max-width-800 {
  max-width: 800px;
}
body .center {
  text-align: center;
}
body .m-auto {
  margin: auto;
}
@keyframes scall {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}
.btn {
  max-width: 100%;
  height: 60px;
  padding: 0 37px;
  background-color: #2571E2;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: none;
  outline: none;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #FFFFFF;
  cursor: pointer;
  border-radius: 8px;
  transition: 0.3s;
}
.btn:hover {
  background-color: #2462be;
}
.btn.disabled {
  background-color: #EEEFF3;
  color: rgba(74, 85, 102, 0.25);
}
.btn.dark {
  background-color: #3A5897;
}
.btn.dark:hover {
  background-color: #224181;
}
.btn.gray {
  background-color: #4A5566;
}
.btn.gray:hover {
  background-color: #384251;
}
.btn-green {
  max-width: 100%;
  height: 60px;
  padding: 0 37px;
  background-color: #29B08F;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: none;
  outline: none;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #FFFFFF;
  cursor: pointer;
  border-radius: 8px;
  transition: 0.3s;
}
.btn-green:hover {
  background-color: #277d68;
}
.btn-green.disabled {
  background-color: #EEEFF3;
  color: rgba(74, 85, 102, 0.25);
}
.btn-empty {
  max-width: 100%;
  height: 60px;
  padding: 0 37px;
  background-color: transparent;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #2571E2;
  outline: none;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #2571E2;
  cursor: pointer;
  border-radius: 8px;
  transition: 0.3s;
}
.btn-empty:hover {
  color: #ffffff;
  background-color: #2571E2;
}
.btn-empty.green {
  color: #29B08F;
  border: 2px solid #29B08F;
}
.btn-empty.green:hover {
  color: #ffffff;
  background-color: #29B08F;
}
.btn-white {
  max-width: 100%;
  height: 60px;
  padding: 0 37px;
  background-color: #ffffff;
  display: inline-flex;
  justify-content: center;
  align-items: center;
  border: 2px solid #2571E2;
  outline: none;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #2571E2;
  cursor: pointer;
  border-radius: 8px;
  transition: 0.3s;
}
.btn-white:hover {
  color: #ffffff;
  background-color: #2571E2;
}
.btn-white.not-border {
  border: none;
}
.header {
  background-color: #244D8B;
}
.header-block {
  height: 100px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-left {
  display: flex;
  align-items: center;
}
.header-left p {
  margin-left: 45px;
  font-weight: bold;
  font-size: 14px;
  color: #FFFFFF;
}
.logo:hover {
  opacity: 0.7;
}
.switch-language {
  width: 55px;
  position: relative;
  font-size: 0;
}
.switch-language select {
  width: 100%;
}
.switch-language .select2-container--default .select2-selection--single {
  padding-left: 53px;
  background-color: transparent;
  border: none;
  outline: none;
}
.switch-language .select-img {
  position: absolute;
  top: 4px;
  z-index: 1;
  left: 0;
}
.switch-language .select2-container--default .select2-selection--single .select2-selection__rendered {
  color: white;
}
.select2-search--dropdown {
  display: none;
}
.select2-results span {
  font-size: 0;
}
.header-right {
  display: flex;
  align-items: center;
}
.support-header-btn {
  display: flex;
  align-items: center;
  margin-right: 40px;
}
.support-header-btn:hover {
  opacity: 0.7;
}
.support-header-btn span {
  margin-left: 7px;
  font-size: 14px;
  color: #FFFFFF;
}
.header-right-btns {
  height: 60px;
  margin-left: 20px;
  padding-left: 20px;
  border-left: 1px solid #042B65;
  display: flex;
  align-items: center;
}
.header-btn {
  display: flex;
  align-items: center;
}
.header-btn span {
  font-weight: bold;
  font-size: 14px;
  color: #FFFFFF;
  margin-left: 11px;
}
.header-btn:hover {
  opacity: 0.75;
}
.header-btn:not(:last-child) {
  margin-right: 40px;
}
.header-top-line {
  background-color: #FFFFFF;
}
.header-top-block {
  min-height: 100px;
  padding: 10px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.header-top-btns {
  display: flex;
  align-items: center;
}
.header-top-btns .btn-empty {
  margin-right: 40px;
}
.header-menu-btn {
  position: relative;
}
.header-menu-btn:not(:last-child) {
  margin-right: 45px;
}
.header-menu-list {
  display: flex;
}
.header-menu-title {
  font-weight: 500;
  color: #4A5566;
  font-size: 14px;
  line-height: 1.7;
  letter-spacing: 0.05em;
  padding-right: 16px;
  background-image: url(../img/arrow-bottom.svg);
  background-size: 7px 5px;
  background-repeat: no-repeat;
  background-position: right center;
  cursor: pointer;
}
.header-sub-box {
  display: none;
  position: absolute;
  top: 20px;
  left: 0;
  padding: 15px 0 0;
}
.header-sub-menu {
  width: 225px;
  background-color: #ffffff;
  box-shadow: 0 0 8px 4px rgba(0, 0, 0, 0.05);
  border-radius: 5px;
}
.header-sub-menu > li a {
  display: block;
  padding: 10px 20px;
  color: #4A5566;
  font-size: 14px;
}
.header-sub-menu > li a:hover {
  background-color: #4A5566;
  color: #ffffff;
}
.banner {
  min-height: 640px;
  padding: 75px 0 0;
  background-image: url(../img/banner-image.jpg);
  background-size: cover;
  background-position: center;
  text-align: center;
}
.banner h1 {
  font-weight: bold;
  font-size: 30px;
  line-height: 1.33;
  color: #F2F5F9;
  margin-bottom: 60px;
}
.user-mobile-btn {
  display: none;
  align-items: center;
}
.user-mobile-btn span {
  margin-left: 12px;
  font-size: 14px;
  color: #222326;
}
.header-mobile-top {
  padding: 22px 20px;
  display: none;
  justify-content: space-between;
  align-items: center;
}
.header-mob-left {
  display: flex;
}
.momile-flag {
  margin-left: 23px;
}
.header-menu {
  width: 100%;
}
.header-menu-container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.main-top-info {
  padding: 100px 0 80px;
}
.top-info-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.top-info-block {
  width: calc(20% - 55px);
  margin-bottom: 35px;
  text-align: center;
}
.top-info-block p {
  max-width: 185px;
  margin: auto;
  font-size: 16px;
  line-height: 1.5;
  color: #222326;
}
.info-icon {
  height: 75px;
}
.where-to-begin .container {
  padding: 0;
}
.to-begin-box {
  background: #FFFFFF;
  border-radius: 8px;
  padding: 40px 15px;
}
.sub-title {
  margin-bottom: 5px;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: rgba(5, 10, 19, 0.2);
}
.title {
  margin-bottom: 40px;
  text-align: center;
  font-weight: 500;
  font-size: 28px;
  color: #222326;
}
.title.left {
  text-align: left;
}
.title.white {
  color: #ffffff;
}
.where-to-begin center p {
  font-size: 14px;
  line-height: 1.4px;
  color: #050A13;
}
a.to-begin-link {
  text-decoration-line: underline;
  color: #5985C7;
}
a.to-begin-link:hover {
  color: #2571E2;
}
.begin-box-wrap {
  max-width: 800px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  position: relative;
}
.begin-box-wrap:before {
  content: '';
  width: 550px;
  height: 1px;
  position: absolute;
  top: 55px;
  left: calc(50% - 275px);
  border-bottom: 1px dashed #29B08F;
}
.begin-box-block {
  width: calc(33.333% - 10px);
  text-align: center;
}
.begin-box-block h3 {
  font-weight: bold;
  font-size: 40px;
  color: #29B08F;
  margin-bottom: 45px;
  position: relative;
}
.begin-box-block h3:before {
  content: '';
  width: 10px;
  height: 10px;
  background: #29B08F;
  border-radius: 50%;
  position: absolute;
  bottom: -20px;
  left: calc(50% - 10px);
  border: 5px solid #E7F0FF;
}
.begin-box-block p {
  font-size: 18px;
  line-height: 1.33;
  color: #222326;
  margin-bottom: 5px;
}
.begin-box-block a {
  font-size: 14px;
  text-decoration-line: underline;
  color: #5985C7;
}
.begin-box-block a:hover {
  color: #2571E2;
}
.btn.to-begin-btn {
  margin: 40px auto 30px auto;
}
.our-advantages {
  padding: 140px 0 80px;
}
.advantages-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.advantages-block {
  width: calc(33.333% - 13.333px);
  background-color: #FFFFFF;
  border-radius: 8px;
  margin-bottom: 20px;
  padding: 20px;
}
.advantages-block h3 {
  margin-bottom: 10px;
  display: flex;
  align-items: center;
}
.advantages-block h3 span {
  margin-left: 10px;
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: #2571E2;
}
.advantages-block p {
  font-size: 16px;
  line-height: 1.5;
  color: #222326;
}
.optimal-choice {
  padding: 50px 0 30px;
}
.optimal-choice-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.optimal-choice-block {
  width: calc(50% - 45px);
  background-color: #FFFFFF;
  border-radius: 8px;
  padding: 35px 45px;
  margin-bottom: 40px;
}
.optimal-top {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.optimal-top content {
  margin-left: 18px;
}
.optimal-top content p {
  font-size: 16px;
  color: #BBC1C9;
}
.optimal-top content h3 {
  font-weight: 500;
  font-size: 24px;
  text-transform: uppercase;
  color: #222326;
}
.optimal-info-wrap {
  display: flex;
  justify-content: space-between;
}
.optimal-info-wrap h3 {
  font-size: 22px;
  line-height: 36px;
  text-transform: uppercase;
  color: #222326;
  margin-bottom: 10px;
}
.optimal-info-wrap h3 span {
  font-size: 16px;
}
.optimal-info-wrap p {
  font-size: 14px;
  color: #BBC1C9;
}
.btn-empty.arrow {
  padding-right: 60px;
  background-image: url(../img/arrow-blue.svg);
  background-repeat: no-repeat;
  background-position-x: calc(100% - 30px);
  background-position-y: center;
}
.btn-empty.arrow:hover {
  background-image: url(../img/arrow-white.svg);
}
.popular-platform {
  padding: 100px 0 120px;
}
.popular-platform-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 115px;
}
.popular-platform-photo {
  width: 50%;
}
.popular-platform-photo img {
  position: relative;
  top: 100px;
}
.popular-platform-content {
  width: calc(50% - 30px);
}
.metatrader-logo {
  display: block;
  margin-bottom: 30px;
}
.check-list li {
  padding-left: 32px;
  font-size: 16px;
  line-height: 1.4;
  color: #222326;
  background-image: url(../img/check.svg);
  background-repeat: no-repeat;
}
.check-list li:not(:last-child) {
  margin-bottom: 20px;
}
.our-achievements {
  padding: 60px 0 100px;
  background-color: #5097EE;
  background-image: url(../img/our-achievements-bg.png);
  background-size: cover;
}
.achievements-info {
  display: flex;
  justify-content: space-between;
}
.achievements-info content {
  color: #F2F5F9;
  margin-bottom: 40px;
}
.achievements-info content h3 {
  font-weight: 500;
  font-size: 50px;
  color: #F2F5F9;
  margin-bottom: 5px;
}
.achievements-info content p {
  font-size: 14px;
  line-height: 1.43;
}
.achievements-bottom-info {
  background-color: #FFFFFF;
  border-radius: 8px;
  padding: 40px 30px 5px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.achievements-bottom-box {
  width: calc(16.666% - 15px);
  margin-bottom: 35px;
  text-align: center;
}
.achievements-bottom-box h3 {
  font-weight: 500;
  font-size: 16px;
  line-height: 1.5;
  color: #222326;
  margin-top: 18px;
}
.achievements-icon-box {
  width: 80px;
  height: 80px;
  background-color: #F2F5F9;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  border-radius: 50%;
}
.our-awards {
  padding: 110px 0 170px;
}
.awards {
  padding: 40px 100px 5px;
  background-color: #384251;
  border-radius: 8px;
}
.awards-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.awards-block {
  width: calc(20% - 15px);
  text-align: center;
  color: #FFFFFF;
  margin-bottom: 35px;
  background-image: url(../img/awards.png);
  background-repeat: no-repeat;
  background-position: center center;
}
.awards-block h3 {
  font-weight: bold;
  font-size: 36px;
  text-transform: uppercase;
  margin-bottom: 7px;
}
.awards-block p {
  font-weight: bold;
  font-size: 14px;
  line-height: 1.4;
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}
.last-news {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 80px 0 25px;
}
.last-news-block {
  width: calc(50% - 15px);
  margin-bottom: 60px;
}
.last-news-block h3 {
  font-size: 24px;
  color: #222326;
  margin-bottom: 20px;
}
.last-news-box {
  margin-bottom: 14px;
}
.last-news-box p {
  font-size: 14px;
  color: #BBC1C9;
  margin-bottom: 3px;
}
.last-news-box a {
  font-size: 14px;
  color: #222326;
}
.last-news-box a:hover {
  color: #2571E2;
}
.link-arrow {
  font-weight: 500;
  font-size: 14px;
  line-height: 1.5;
  letter-spacing: 0.05em;
  color: #2571E2;
  padding-right: 20px;
  background-image: url(../img/arrow-blue.svg);
  background-repeat: no-repeat;
  background-position: right center;
}
.link-arrow:hover {
  color: #1a59b7;
}
.payment-systems {
  display: flex;
  align-items: center;
  justify-content: center;
}
.payment-systems li {
  margin: 0 20px;
  cursor: pointer;
  filter: saturate(0%);
  opacity: 0.4;
  transition: 0.5s;
}
.payment-systems li:hover {
  opacity: 1;
  filter: saturate(100%);
}
.payment-systems li img {
  max-height: 50px;
}
.footer {
  background-color: #152A45;
}
.footer-logo:hover {
  opacity: 0.7;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  padding: 45px 0 110px;
}
.footer-links {
  text-align: right;
}
.footer-links li {
  margin-bottom: 10px;
}
.footer-links li a {
  font-size: 18px;
  text-align: right;
  color: #F2F5F9;
}
.footer-links li a:hover {
  color: #BBC1C9;
}
.footer-links li a.footer-mail {
  font-size: 16px;
  text-decoration: underline;
}
.footer-bottom {
  padding: 40px 0;
  border-top: 1px solid #11243E;
}
.footer-bottom-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer-bottom-block p {
  font-size: 14px;
  color: #EEEFF3;
}
.footer-bottom-menu {
  display: flex;
}
.footer-bottom-menu li {
  margin-left: 30px;
}
.footer-bottom-menu li a {
  font-size: 14px;
  color: #EEEFF3;
}
.footer-bottom-menu li a:hover {
  color: #BBC1C9;
}
.language-input {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.language-input .select2-container--default .select2-selection--single .select2-selection__arrow {
  top: -1px;
}
.language-input .switch-language {
  width: 25px;
  position: absolute;
  top: 15px;
  left: 20px;
}
.language-input .switch-language .select2-container {
  width: 47px !important;
}
.language-input .input {
  margin: 0;
  padding-left: 130px;
}
.first-number {
  height: 100%;
  position: absolute;
  top: 0;
  left: 77px;
  font-size: 16px;
  color: #BBC1C9;
  border-left: 1px solid #EEEFF3;
  padding-left: 10px;
  display: flex;
  align-items: center;
}
.partner-code {
  display: inline-block;
  font-size: 16px;
  color: #2571E2;
  margin-bottom: 15px;
}
.partner-code:hover {
  color: #134ca0;
}
.checkbox {
  display: block;
  margin-bottom: 20px;
}
.checkbox span {
  display: block;
  padding: 2px 0 1px 30px;
  font-size: 14px;
  line-height: 1.4;
  color: #4A5566;
  cursor: pointer;
}
.checkbox span a {
  color: #2571E2;
  text-decoration: underline;
}
.checkbox span a:hover {
  color: #134ca0;
}
.checkbox input[type=checkbox] {
  display: none;
}
.checkbox input[type=checkbox] + span {
  background: url(../img/chechbox.svg) no-repeat 0 1px;
}
.checkbox input[type=checkbox]:checked + span {
  background: url(../img/chechbox-active.svg) no-repeat 0 1px;
}
.about-us-banner {
  padding: 110px 0 100px;
  background-image: url(../img/about-us-banner.jpg);
  background-size: cover;
}
.about-banner-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.about-banner-content {
  width: calc(100% - 405px);
  max-width: 490px;
}
.about-banner-content h3 {
  font-weight: bold;
  font-size: 30px;
  color: #222326;
  margin-bottom: 20px;
}
.about-banner-content p {
  font-size: 22px;
  color: #222326;
  margin-bottom: 17px;
}
.about-banner-info {
  width: 390px;
  max-width: 100%;
  background-color: #FFFFFF;
  padding: 38px 35px;
  border-radius: 8px;
}
.about-banner-info h4 {
  margin-bottom: 20px;
  font-weight: bold;
  font-size: 22px;
  color: #222326;
}
.history-company {
  padding: 100px 0 110px;
  background-image: url(../img/history-bg.png);
  background-repeat: no-repeat;
  background-position: center bottom;
}
.mini-title {
  font-weight: 500;
  font-size: 28px;
  text-align: center;
  color: #222326;
  margin-bottom: 17px;
}
.sub-content {
  width: 590px;
  max-width: 100%;
  margin: 0 auto 85px auto;
}
.sub-content p {
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #222326;
}
.sub-content p:not(:last-child) {
  margin-bottom: 10px;
}
.representatives-info {
  text-align: center;
  margin-bottom: 40px;
}
.representatives-info h4 {
  font-weight: bold;
  font-size: 50px;
  color: #2571E2;
}
.representatives-info p {
  font-size: 14px;
  color: #222326;
}
.representatives-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.representatives-list li {
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}
.representatives-list li:not(:last-child) {
  margin-right: 40px;
}
.representatives-icon {
  margin-right: 10px;
}
.representatives-icon img {
  width: 40px;
  height: 40px;
  border-radius: 50%;
}
.representatives-name {
  font-size: 16px;
  color: #222326;
}
.news {
  padding: 50px 0 80px;
}
.flex-right {
  display: flex;
  justify-content: flex-end;
}
.select {
  height: 40px;
  padding: 10px 37px 10px 18px;
  outline: none;
  background-color: #FFFFFF;
  border: 1px solid #EEEFF3;
  box-sizing: border-box;
  border-radius: 8px;
  font-size: 12px;
  color: #222326;
  cursor: pointer;
  background-image: url(../img/arrow-select.svg);
  background-repeat: no-repeat;
  background-position-x: calc(100% - 12px);
  background-position-y: 16px;
  background-size: 11px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.select::-ms-expand {
  display: none;
}
.news-list {
  margin-top: 20px;
  background-color: #FFFFFF;
  border-radius: 10px;
  padding: 75px;
}
.news-list li {
  display: flex;
  align-items: center;
}
.news-list li p {
  font-size: 14px;
  color: #222326;
  margin-right: 80px;
}
.news-list li a {
  font-size: 18px;
  text-decoration-line: underline;
  color: #2571E2;
  position: relative;
}
.news-list li a:hover {
  color: #16468b;
}
.news-list li a:before {
  content: '';
  width: 3px;
  height: 3px;
  background-color: #5985C7;
  border-radius: 50%;
  position: absolute;
  top: 9px;
  left: -40px;
}
.news-list li:not(:last-child) {
  margin-bottom: 25px;
}
.news-details {
  padding: 50px 0 80px;
}
.p-l-53 {
  padding-left: 53px;
}
.navigation-page {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.navigation-page li a {
  font-size: 12px;
  color: #2571E2;
}
.navigation-page li a:hover {
  color: #2858a0;
}
.navigation-page li a img {
  position: relative;
  top: 2px;
}
.navigation-page li:not(:last-child) {
  margin-right: 7px;
}
.navigation-page li:not(:last-child):after {
  content: '/';
  padding-left: 7px;
}
.navigation-page li:last-child a {
  color: #222326;
  pointer-events: none;
}
.text {
  font-size: 16px;
  line-height: 1.5;
  color: #222326;
  margin-bottom: 20px;
}
.news-details-info {
  background-color: #ffffff;
  border: 1px solid #BBC1C9;
  border-radius: 8px;
  margin-bottom: 20px;
}
.news-details-title {
  padding: 20px;
  text-align: center;
  border-bottom: 1px solid #BBC1C9;
  font-size: 16px;
  color: #222326;
}
.news-details-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.news-details-block {
  width: 50%;
  padding: 20px;
  font-size: 16px;
  color: #222326;
}
.news-details-block:first-child {
  border-right: 1px solid #BBC1C9;
}
.section-wrap {
  padding: 50px 0 90px;
}
.table-wrap-bid {
  margin-bottom: 20px;
  padding-bottom: 20px;
}
.bid-type-table {
  width: 100%;
  border-collapse: collapse;
}
.bid-type-table thead tr:first-child th {
  padding-top: 50px;
}
.bid-type-table thead tr:first-child th:after {
  border-radius: 8px 8px 0 0;
}
.bid-type-table td,
.bid-type-table th {
  text-align: left;
  line-height: 1.45;
}
.bid-type-table td:not(:first-child),
.bid-type-table th:not(:first-child) {
  position: relative;
  text-align: center;
}
.bid-type-table td:not(:first-child):after,
.bid-type-table th:not(:first-child):after {
  content: '';
  width: calc(100% - 16px);
  height: 100%;
  background-color: #ffffff;
  position: absolute;
  top: 0;
  left: 8px;
  z-index: -1;
}
.bid-type-table th {
  width: 16.667%;
  font-weight: 500;
  font-size: 18px;
  padding: 10px 0;
  color: #000000;
}
.bid-type-table td {
  padding: 15px 0;
}
.bid-type-table td p {
  font-size: 16px;
  color: #222326;
}
.bid-type-table td p span {
  color: #E22525;
}
.bid-type-table td p.green {
  color: #29B08F;
}
.bid-type-table .best-seller:before {
  content: '';
  width: 85px;
  height: 87px;
  background-image: url(../img/best-seller.png);
  background-size: cover;
  position: absolute;
  top: 0;
  right: 8px;
}
.table-info-list {
  max-width: 595px;
}
.table-info-list li {
  margin-bottom: 15px;
  font-size: 16px;
  line-height: 1.5;
  color: #222326;
}
.table-info-list li span {
  color: #E22525;
}
.bottom-block-info {
  height: 260px;
  margin-top: 90px;
  background-color: #C4C4C4;
}
.tab-filter-list {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  padding: 20px 0 50px;
}
.tab-filter-list li {
  margin: 0 40px 10px;
  font-size: 18px;
  text-decoration-line: underline;
  color: #222326;
  cursor: pointer;
  transition: 0.3s;
}
.tab-filter-list li:hover {
  color: #2571E2;
}
.tab-filter-list li.active {
  color: #2571E2;
  text-decoration-line: none;
}
.table-instrument-wrap {
  padding: 40px 0 15px;
  background-color: #FFFFFF;
  border-radius: 8px;
  margin-bottom: 40px;
}
.table-instrument-wrap .title {
  padding-left: 30px;
}
.table-instrument {
  width: 100%;
  border-top: 1px solid #EEEFF3;
}
.table-instrument thead th {
  padding: 14px;
  font-weight: normal;
  font-size: 14px;
  line-height: 20px;
  text-align: center;
  color: #222326;
  border-bottom: 1px solid #EEEFF3;
}
.table-instrument thead th:not(last-child) {
  border-right: 1px solid #EEEFF3;
}
.table-instrument tbody td {
  padding: 5px;
  text-align: center;
  font-size: 14px;
  color: #222326;
}
.table-instrument tbody td:not(last-child) {
  border-right: 1px solid #EEEFF3;
}
.tab-block {
  display: none;
}
.tab-block.active {
  display: block;
}
.deposit-table {
  width: 100%;
  background-color: #FFFFFF;
  border-radius: 8px;
}
.deposit-table thead th {
  width: 25%;
  font-style: normal;
  font-size: 14px;
  color: #222326;
  border-bottom: 1px solid #EEEFF3;
}
.deposit-table tbody tr:not(:last-child) td {
  border-bottom: 1px solid #EEEFF3;
}
.deposit-table tbody td {
  font-size: 14px;
  color: #4A5566;
}
.deposit-table td,
.deposit-table th {
  padding: 20px 15px;
  line-height: 1.45;
  text-align: center;
}
.deposit-table td:not(:last-child),
.deposit-table th:not(:last-child) {
  border-right: 1px solid #EEEFF3;
}
.underline-text {
  width: 60px;
  display: inline-block;
  font-size: 22px;
  color: #4A5566;
  padding-right: 20px;
  position: relative;
}
.underline-text:before {
  content: '';
  width: calc(100% - 12px);
  height: 1px;
  background-color: #E22525;
  position: absolute;
  top: 14px;
  left: -7px;
  transform: rotate(-33deg);
}
.bold-blue {
  font-weight: bold;
  font-size: 22px;
  color: #2571E2;
}
.support {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.support-left {
  width: 33.333%;
  padding: 40px 40px 35px;
  background-color: #FFFFFF;
  border-radius: 8px;
}
.support-right {
  width: calc(66.667% - 20px);
  background-color: #FFFFFF;
  padding-right: 40px;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.support-block h4 {
  margin-bottom: 5px;
  font-size: 18px;
  color: #222326;
}
.support-block:not(:last-child) {
  margin-bottom: 40px;
}
.support-links {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.suport-mail {
  font-size: 14px;
  text-decoration-line: underline;
  color: #2571E2;
}
.suport-mail:hover {
  color: #1857b5;
}
.support-photo {
  display: block;
  max-width: calc(100% - 230px);
}
.support-block-btn {
  display: inline-flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 15px 0;
}
.support-btn {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
}
.support-btn img {
  max-width: 34px;
  margin-bottom: 10px;
}
.support-btn span {
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #222326;
  transition: 0.3s;
}
.support-btn:not(:last-child) {
  margin-bottom: 115px;
}
.support-btn:hover span {
  color: #2571E2;
}
.name-word {
  background-color: #FFFFFF;
  border-radius: 8px;
  padding: 40px 40px 1px;
  margin-top: 40px;
}
.name-word-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.name-word-block {
  width: calc(33.333% - 15px);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 40px;
}
.country-photo-block {
  position: relative;
}
.country-photo {
  width: 88px;
  height: 94px;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
}
.country-flag {
  width: 30px;
  height: 20px;
  border-radius: 6px;
  position: absolute;
  top: 4px;
  left: 4px;
}
.country-content {
  width: calc(100% - 103px);
}
.country-content h4 {
  font-weight: 500;
  font-size: 16px;
  color: #222326;
}
.country-content p {
  font-size: 14px;
  color: #4A5566;
  margin: 7px 0 5px;
}
.country-content a {
  font-size: 14px;
  color: #2571E2;
}
.country-content a:hover {
  color: #1655b1;
}
.textarea {
  width: 100%;
  height: 180px;
  padding: 18px 20px;
  font-size: 16px;
  color: #4A5566;
  border: 1px solid #BBC1C9;
  border-radius: 8px;
  margin-bottom: 20px;
  outline: none;
  resize: none;
  transition: 0.3s;
}
.textarea:focus {
  border: 1px solid #9098b6;
}
.form-text {
  font-size: 16px;
  line-height: 24px;
  color: #4A5566;
  margin-bottom: 10px;
}
.captcha-wrap {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
}
.captcha-wrap .input {
  width: calc(50% - 10px);
  margin: 0;
}
.captcha-block {
  width: calc(50% - 10px);
  height: 60px;
  background-color: #BBC1C9;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  font-size: 16px;
  color: #222326;
}
.select-big {
  width: 100%;
  height: 60px;
  padding-left: 17px;
  padding-right: 33px;
  font-size: 16px;
  color: #4A5566;
  border: 1px solid #BBC1C9;
  border-radius: 8px;
  margin-bottom: 20px;
  outline: none;
  transition: 0.3s;
  cursor: pointer;
  background-image: url(../img/arrow-select.svg);
  background-repeat: no-repeat;
  background-position-x: calc(100% - 17px);
  background-position-y: 24px;
  background-size: 12px;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.select-big::-ms-expand {
  display: none;
}
.text-content-top {
  max-width: 793px;
  margin: 0 auto 40px auto;
  font-size: 18px;
  text-align: center;
  line-height: 1.33;
  color: #222326;
}
.main-product {
  background-color: #FFFFFF;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 40px;
  margin-bottom: 30px;
}
.main-product-content {
  width: calc(50% - 15px);
}
.main-product-photo {
  width: calc(50% - 15px);
}
.product-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 37px;
}
.product-top content {
  width: calc(100% - 80px);
}
.product-top content h4 {
  font-weight: 500;
  font-size: 16px;
  color: #181818;
  margin-bottom: 3px;
}
.product-top content p {
  font-size: 14px;
  color: #4A5566;
}
.product-icon {
  width: 60px;
}
.product-text {
  max-width: 448px;
  min-height: 125px;
  font-size: 16px;
  line-height: 24px;
  color: #222326;
  margin-bottom: 50px;
}
.download-btn {
  font-size: 14px;
  font-weight: bold;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #2571E2;
  padding: 3px 2px 3px 34px;
  background-image: url(../img/download.svg);
  background-repeat: no-repeat;
}
.download-btn:hover {
  opacity: 0.77;
}
.product-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 60px;
}
.product-block {
  width: calc(50% - 10px);
  padding: 40px;
  background-color: #FFFFFF;
  border-radius: 8px;
  margin-bottom: 40px;
}
.mqlSignal-banner {
  min-height: 600px;
  background-color: #2571E2;
  background-image: url(../img/signal-banner.jpg);
  background-size: cover;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  text-align: center;
  padding: 15px 15px 30px;
}
.mqlSignal-banner h2 {
  font-weight: bold;
  font-size: 30px;
  color: #FFFFFF;
  margin-bottom: 85px;
}
.light-bg {
  background-color: #F2F5F9;
}
.top-signal {
  padding: 90px 0 70px;
}
.top-signal-box {
  height: 430px;
  background-color: #C4C4C4;
}
.how-get {
  padding: 105px 0 115px;
  background-color: #EEF1F5;
  background-image: url(../img/how-get-bg.png);
  background-size: cover;
}
.get-step-block {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.get-step-block:not(:last-child) {
  margin-bottom: 150px;
  position: relative;
}
.get-step-block:not(:last-child):before {
  content: '';
  width: 1px;
  height: 100px;
  border-left: 1px dashed #2571E2;
  position: absolute;
  bottom: -125px;
  left: 50%;
}
h1.title {
  font-size: 30px;
  font-weight: bold;
}
.get-step-number {
  width: 80px;
  height: 80px;
  background-color: #FFFFFF;
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: bold;
  font-size: 30px;
  color: #2571E2;
  border-radius: 50%;
  margin-bottom: 20px;
}
.get-step-content {
  width: 100%;
  max-width: 589px;
  display: flex;
  min-height: 128px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background: #FFFFFF;
  border-radius: 8px;
  padding: 40px;
  text-align: center;
  position: relative;
}
.get-step-content h4 {
  font-size: 18px;
  font-weight: bold;
  margin-bottom: 10px;
  color: #222326;
}
.get-step-content p {
  font-size: 18px;
  line-height: 24px;
  color: #222326;
}
.get-step-content p a {
  color: #2571E2;
  text-decoration-line: underline;
}
.get-step-content p a:hover {
  color: #265396;
}
.get-step-content:before {
  content: '';
  width: 100%;
  height: 10px;
  position: absolute;
  bottom: -10px;
  left: 0;
  background-image: url(../img/shadow-bg.png);
  background-size: 100% 100%;
}
.header-language {
  padding-right: 5px;
  z-index: 10;
}
.header-language.active .header-language-flag {
  background-color: #ffffff;
}
.header-language.active .language-menu-box {
  display: block;
}
.header-language-flag {
  padding: 6px 5px 3px;
  border-radius: 10px;
  cursor: pointer;
}
.language-menu-box {
  width: 100vw;
  position: absolute;
  display: none;
  top: 60px;
  left: 0;
  z-index: 5;
  padding: 20px 0 0;
}
.language-menu-block {
  background-color: #ffffff;
  padding: 25px 0 0px;
}
.language-menu-list {
  max-width: 900px;
  margin: auto;
  display: flex;
  flex-wrap: wrap;
}
.language-menu-list li {
  min-width: 160px;
  padding: 0 25px 20px 0;
}
.language-menu-list li a {
  display: flex;
  align-items: center;
  color: #2571E2;
  font-size: 18px;
}
.language-menu-list li a img {
  width: 30px;
  height: 20px;
  box-shadow: 0 0 4px 1px rgba(0, 0, 0, 0.17);
  border-radius: 5px;
}
.language-menu-list li a span {
  margin: 0 0 2px 10px;
}
.language-menu-list li a:hover {
  opacity: 0.7;
}
.valute-list {
  display: flex;
  justify-content: center;
  margin-top: 40px;
}
.valute-list li {
  width: 60px;
  height: 60px;
  background-color: #FFFFFF;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 10px;
}
.zulutrade-banner {
  padding: 90px 0 145px;
  background-image: url(../img/green-bg.jpg);
  background-size: cover;
  background-position: center center;
  text-align: center;
  color: #F2F5F9;
}
.zulutrade-banner h3 {
  font-weight: bold;
  font-size: 22px;
  margin-bottom: 20px;
}
.zulutrade-banner p {
  font-size: 18px;
  line-height: 24px;
}
.begin-box-wrap.five-element {
  max-width: 100%;
}
.begin-box-wrap.five-element .begin-box-block {
  width: calc(20% - 10px);
}
.begin-box-wrap.five-element .begin-box-block h3 {
  color: #2571E2;
}
.begin-box-wrap.five-element .begin-box-block h3:before {
  background-color: #2571E2;
}
.begin-box-wrap.five-element .begin-box-block a {
  color: #2571E2;
  font-size: 16px;
  text-decoration-line: underline;
}
.begin-box-wrap.five-element:before {
  width: 950px;
  left: 110px;
}
.zulutrade-begin {
  position: relative;
  top: -55px;
}
.zulutrade-mobile {
  padding: 35px 0 140px;
}
.circle-list {
  margin-bottom: 35px;
}
.circle-list li {
  font-size: 16px;
  line-height: 24px;
  color: #222326;
  margin-bottom: 12px;
  position: relative;
}
.circle-list li:before {
  content: '';
  width: 4px;
  height: 4px;
  background-color: #2571E2;
  border-radius: 50%;
  position: absolute;
  top: 9px;
  left: -12px;
}
.mobile-load-btns {
  display: flex;
  flex-wrap: wrap;
}
.mobile-load-btns a:first-child {
  margin: 0 20px 20px 0;
}
.mobile-load-btns a:hover {
  opacity: 0.8;
}
.vps-banner {
  padding: 165px 0 300px;
  background-image: url(../img/vps-banner.jpg);
  background-size: cover;
}
.vps-banner .title {
  margin-bottom: 20px;
}
.vps-banner p {
  max-width: 793px;
  margin: auto;
  font-size: 21px;
  line-height: 24px;
  text-align: center;
  color: #F2F5F9;
}
.vps-bottom {
  padding: 85px 0 150px;
}
.vps-info {
  max-width: 1000px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.vps-info > div {
  width: calc(50% - 15px);
}
.vps-content p {
  max-width: 386px;
}
.vps-info-middle {
  max-width: 590px;
  margin: 90px auto 0 auto;
  text-align: center;
}
.robots-banner {
  padding: 70px 0 80px;
  background-color: #FFFFFF;
  background-image: url(../img/chart.png);
  background-repeat: no-repeat;
  background-position: right center;
}
.robots-banner h2 {
  font-weight: bold;
  font-size: 30px;
  color: #222326;
  margin-bottom: 60px;
}
.robots-banner p {
  font-size: 21px;
  line-height: 24px;
  color: #222326;
}
.robots-banner p:not(:last-child) {
  margin-bottom: 18px;
}
.partners-wrap {
  margin: 100px 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.partners-wrap .title {
  width: 100%;
}
.partners-block {
  width: calc(33.333% - 20px);
  margin: 0 10px 44px;
  padding: 30px 15px 20px;
  background-color: #FFFFFF;
  border-radius: 8px;
  text-align: center;
  position: relative;
}
.partners-block p {
  font-size: 16px;
  color: #222326;
}
.partners-block h4 {
  font-weight: bold;
  font-size: 22px;
  color: #222326;
  margin: 15px 0 5px;
}
.partners-block:before {
  content: '';
  width: 100%;
  height: 24px;
  background-image: url(../img/bottom-bg.png);
  background-size: 100% 100%;
  position: absolute;
  bottom: -24px;
  left: 0;
}
.partners-photo {
  height: 65px;
  margin-bottom: 10px;
}
.partners-photo img {
  max-height: 100%;
}
.begin-box-wrap.four-elemnt {
  max-width: 1100px;
}
.begin-box-wrap.four-elemnt .begin-box-block {
  width: calc(25% - 10px);
}
.begin-box-wrap.four-elemnt:before {
  width: 840px;
  left: calc(50% - 420px);
}
.schema {
  padding: 100px 0;
  background-image: url(../img/schema-bg.jpg);
  background-size: cover;
  background-position: center center;
}
.schema-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.schema-block {
  width: calc(50% - 10px);
  background-color: #FFFFFF;
  border-radius: 8px;
}
.schema-block h3 {
  padding: 20px 15px;
  font-size: 18px;
  text-align: center;
  color: #222326;
  border-bottom: 1px solid #EEEFF3;
}
.schema-block h3 span {
  font-weight: 700;
  color: #2571E2;
}
.schema-content {
  padding: 20px 15px 40px;
}
.schema-content h4 {
  font-size: 18px;
  line-height: 24px;
  text-align: center;
  color: #222326;
}
.schema-box {
  margin: 5px 0 40px;
}
.schema-box {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.schema-box li {
  margin: 0 20px;
}
.schema-line {
  width: 40px;
  height: 120px;
  display: flex;
  align-items: flex-end;
  margin-bottom: 10px;
}
.schema-line-block {
  width: 100%;
  background-color: #2571E2;
}
.bg-025 {
  background-color: rgba(37, 113, 226, 0.25);
}
.bg-05 {
  background-color: rgba(37, 113, 226, 0.5);
}
.h-85 {
  height: 85%;
}
.h-20 {
  height: 20%;
}
.h-30 {
  height: 30%;
}
.schema-name {
  font-size: 14px;
  text-align: center;
  color: #222326;
}
.partners-info {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.partners-info-block {
  width: 150px;
  margin: 0 10px 25px;
}
.partners-info-block p {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  text-align: center;
  color: #222326;
}
.partners-info-icon {
  width: 80px;
  height: 80px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #FFFFFF;
  border-radius: 50%;
  margin: 0 auto 20px auto;
}
.partners-wrap.next-partners {
  margin: 40px 0 30px;
}
.box-middle-content {
  max-width: 794px;
  margin: auto;
  text-align: center;
}
.table-instrument-wrap.partner-table-wrap .title {
  font-size: 16px;
  color: #222326;
  margin-bottom: 10px;
}
.table-instrument-wrap.partner-table-wrap .select {
  width: 180px;
  margin: 0 0 40px 30px;
}
.demo-banner {
  min-height: 600px;
  padding: 30px 0 100px;
  display: flex;
  align-items: center;
  background-image: url(../img/demo-bg.jpg);
  background-size: cover;
  text-align: center;
}
.demo-banner h1 {
  margin-bottom: 20px;
}
.demo-banner p {
  font-size: 21px;
  line-height: 29px;
  color: #F2F5F9;
}
.demo-section {
  padding-bottom: 60px;
}
.demo-wrap {
  position: relative;
  top: -60px;
  padding: 40px;
  background-color: #FFFFFF;
  border-radius: 8px;
}
.demo-wrap .check-list {
  max-width: 850px;
  margin: 0 auto 40px auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.demo-wrap .check-list li {
  width: calc(50% - 20px);
  background-image: url(../img/chechbox-blue.svg);
}
.safe-section {
  padding-bottom: 60px;
}
.safe-banner {
  padding: 60px 0 175px;
  display: flex;
  align-items: center;
  background-image: url(../img/safe-banner.jpg);
  background-size: cover;
}
.safe-banner h1 {
  margin-bottom: 20px;
}
.safe-banner p {
  font-size: 21px;
  text-align: center;
  color: #F2F5F9;
  margin-bottom: 100px;
}
.safe-banner .check-list {
  max-width: 850px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.safe-banner .check-list li {
  color: #ffffff;
  width: calc(50% - 20px);
  background-image: url(../img/chechbox-blue.svg);
}
.table-instrument-wrap.safe-table-wrap {
  padding: 0;
}
.table-instrument-wrap.safe-table-wrap thead th,
.table-instrument-wrap.safe-table-wrap tbody td {
  font-size: 16px;
  padding: 20px 14px;
}
.table-instrument-wrap.safe-table-wrap thead th:first-child,
.table-instrument-wrap.safe-table-wrap tbody td:first-child {
  border-left: 1px solid #EEEFF3;
}
.bonus-banner {
  min-height: 400px;
  padding: 60px 0 10px;
  background-image: url(../img/bonus-bg.jpg);
  background-size: cover;
  background-position: left center;
  display: flex;
  align-items: center;
  margin-bottom: 25px;
}
.bonus-banner h4 {
  font-size: 24px;
  color: #F2F5F9;
}
.bonus-banner-title {
  display: flex;
}
.bonus-banner-title h3 {
  font-weight: 200;
  font-size: 170px;
  text-transform: uppercase;
  color: #29B08F;
}
.bonus-banner-title p {
  margin: 20px 0 0 25px;
  font-weight: 300;
  font-size: 64px;
  color: #29B08F;
}
.bonus-banner-title p span {
  display: block;
  font-weight: 200;
  font-size: 32px;
  color: #F2F5F9;
}
.bonus-advantages {
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 8px;
}
.bonus-advantages .check-list {
  max-width: 800px;
  margin: 0 auto 60px auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.bonus-advantages .check-list li {
  width: calc(50% - 15px);
}
.get-step-wrap.get-green .get-step-number {
  color: #29B08F;
}
.get-step-wrap.get-green .get-step-block:not(:last-child):before {
  border-left: 1px dashed #29B08F;
}
.forex-select-box {
  display: flex;
  justify-content: flex-end;
  margin-bottom: 20px;
}
.forex-news-wrap {
  margin-bottom: 40px;
}
.forex-news-block {
  padding: 20px;
  background-color: #FFFFFF;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  margin-bottom: 20px;
}
.forex-news-photo img {
  width: 265px;
  border-radius: 8px;
  object-fit: cover;
  object-position: center;
}
.forex-news-content {
  width: calc(100% - 285px);
  text-align: left;
}
.forex-news-content h6 {
  font-size: 14px;
  color: #BBC1C9;
}
.forex-news-content h3 {
  font-size: 18px;
  line-height: 24px;
  color: #222326;
  margin: 10px 0;
}
.forex-news-content p {
  font-size: 16px;
  line-height: 24px;
  color: #BBC1C9;
  margin-bottom: 10px;
}
.link-then {
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.05em;
  color: #2571E2;
  padding-right: 10px;
  background-image: url(../img/arrow-right.svg);
  background-repeat: no-repeat;
  background-position: right center;
}
.link-then:hover {
  opacity: 0.7;
}
.pagination-page {
  display: flex;
  justify-content: center;
  align-items: center;
}
.pagination-page li {
  width: 40px;
  height: 40px;
  font-size: 12px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  color: #000000;
  cursor: pointer;
  transition: 0.3s;
}
.pagination-page li:hover {
  color: #2571E2;
}
.pagination-page li.active {
  border: 1px solid #2571E2;
  border-radius: 8px;
}
.max-width-794 {
  max-width: 794px;
  margin: auto;
}
.back-page {
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #2571E2;
  padding-left: 22px;
  background-image: url(../img/back-arrow.svg);
  background-repeat: no-repeat;
  background-position-y: 2px;
}
.back-page:hover {
  opacity: 0.8;
}
.news-single-block {
  max-width: 794px;
  background-color: #FFFFFF;
  margin: 40px auto 0 auto;
  padding: 40px;
  border-radius: 8px;
}
.news-single-block h6 {
  font-size: 14px;
  color: #BBC1C9;
  margin-bottom: 20px;
}
.news-single-block p {
  font-size: 16px;
  line-height: 24px;
  color: #222326;
}
.news-single-block p:not(:last-child) {
  margin-bottom: 15px;
}
.news-single-photo {
  width: 100%;
  max-height: 300px;
  display: block;
  border-radius: 8px;
  margin-bottom: 40px;
  object-fit: cover;
  object-position: center;
}
.comission-banner {
  min-height: 490px;
  padding: 25px 0;
  display: flex;
  align-items: center;
  background-image: url(../img/comission-bg.jpg);
  background-size: cover;
  background-position: center;
}
.comission-banner-content {
  padding-left: 500px;
}
.comission-banner-content h1 {
  font-weight: bold;
  font-size: 64px;
  text-transform: uppercase;
  color: #5985C7;
  opacity: 0.8;
  margin-bottom: 10px;
}
.comission-banner-content content {
  display: flex;
  align-items: center;
}
.comission-banner-content content h3 {
  font-weight: 500;
  font-size: 265px;
  line-height: 1;
  text-transform: uppercase;
  color: #F2F5F9;
  margin-right: 30px;
  position: relative;
}
.comission-banner-content content h3:after {
  content: '%';
  font-weight: normal;
  font-size: 44px;
  position: absolute;
  bottom: 30px;
  right: -20px;
}
.comission-banner-content content p {
  font-size: 19px;
  line-height: 140%;
  color: #F2F5F9;
}
.comission-payment-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 25px 0 60px;
}
.comission-payment-wrap li {
  margin: 0 10px;
}
.comission-table-wrap {
  max-width: 570px;
  margin: 100px auto;
}
.comission-table-wrap .bid-type-table {
  text-align: center;
}
.comission-table-wrap .bid-type-table td {
  text-align: center;
}
.comission-table-wrap .bid-type-table td b {
  font-size: 24px;
  color: #2571E2;
}
.comission-table-wrap .bid-type-table th {
  font-weight: normal;
  text-align: center;
}
.comission-table-wrap .bid-type-table thead tr:first-child th {
  padding-top: 20px;
}
.comission-table-wrap .bid-type-table td {
  padding: 0;
}
.comission-wrap {
  max-width: 1000px;
  margin: auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.commision-block {
  width: calc(50% - 11px);
  background-color: #FFFFFF;
  border-radius: 8px;
  margin-bottom: 30px;
}
.commision-box {
  padding: 25px;
}
.commision-box h6 {
  margin-bottom: 24px;
  font-size: 18px;
  color: #222326;
}
.commision-box p {
  font-size: 16px;
  line-height: 24px;
  color: #222326;
}
.commision-box .green {
  color: #29B08F;
}
.commision-box .red {
  color: #E22525;
}
.commision-box b {
  font-weight: 500;
}
.commision-box:not(:last-child) {
  border-bottom: 1px solid #F2F5F9;
}
.commision-info-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.commision-info-block content {
  width: calc(100% - 68px);
}
.commision-info-block:not(:last-child) {
  margin-bottom: 20px;
}
.commision-icon {
  width: 48px;
}
.cost-calculate-text {
  font-size: 26px;
  color: #222326;
  margin: 7px 0;
}
.crypto-banner {
  min-height: 600px;
  background-image: url(../img/crypto-baner.jpg);
  background-size: cover;
  padding: 20px 0 60px;
  display: flex;
  align-items: center;
  text-align: center;
}
.crypto-banner p {
  font-size: 18px;
  color: #F2F5F9;
  margin-bottom: 75px;
}
.dashboard-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.dashboard-top .title {
  margin: 0;
}
.dashboard-btns .btn-green {
  margin-right: 40px;
}
.white-box {
  background-color: #FFFFFF;
  border-radius: 8px;
  padding: 40px;
  margin-bottom: 40px;
}
.white-box.p-b-0 {
  padding-bottom: 0;
}
.table-active {
  width: 100%;
  padding-bottom: 15px;
}
.table-active th {
  text-align: left;
  font-weight: normal;
}
.table-active th,
.table-active td {
  padding: 5px 5px 5px 0;
}
.table-active p {
  font-size: 14px;
  color: #222326;
}
.table-active a {
  font-size: 14px;
  text-decoration-line: underline;
  color: #2571E2;
}
.table-active a:hover {
  color: #2360bb;
}
.table-active b {
  font-weight: bold;
  font-size: 14px;
  color: #222326;
}
.dashboard-shares {
  padding-top: 10px;
}
.link-text {
  font-size: 16px;
  line-height: 24px;
  text-decoration-line: underline;
  color: #5985C7;
}
.link-text:hover {
  color: #3f68a7;
}
.shares-text {
  margin-top: 18px;
  font-size: 16px;
  line-height: 24px;
  color: #222326;
}
.filter-left {
  display: flex;
  align-items: center;
}
.filter-left .title {
  margin: 0 30px 0 0;
}
.filter-left p {
  margin-right: 10px;
  font-size: 14px;
  color: #222326;
}
.svg-icon {
  cursor: pointer;
  fill: #384251;
  transition: 0.4s;
}
.svg-icon:hover {
  fill: #5985C7;
}
.filter-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 25px;
  border-bottom: 1px solid #F2F5F9;
  margin-bottom: 15px;
}
.switch-block {
  display: flex;
  align-items: center;
}
.switch-block p {
  font-weight: 500;
  font-size: 16px;
  color: #BBC1C9;
  cursor: pointer;
}
.switch-block p.active {
  color: #222326;
}
.switch {
  width: 60px;
  height: 34px;
  position: relative;
  display: inline-block;
  margin: 0 20px;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  border-radius: 34px;
  background-color: #EEEFF3;
  -webkit-transition: .4s;
  transition: .4s;
}
.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  border-radius: 50%;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}
input:checked + .slider {
  background-color: #2571E2;
}
input:focus + .slider {
  box-shadow: 0 0 1px #2571E2;
}
input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}
.table-info {
  width: 100%;
}
.table-info td {
  padding: 6px 5px 6px 0;
}
.table-info td p {
  font-size: 14px;
  color: #222326;
}
.table-info td h4 {
  font-size: 18px;
  color: #222326;
}
.table-info tbody tr:last-child td {
  padding-bottom: 20px;
}
.table-info tfoot td {
  padding-top: 20px;
  border-top: 1px solid #F2F5F9;
}
.smal-link {
  font-size: 14px;
  text-decoration-line: underline;
  color: #5985C7;
}
.smal-link:hover {
  color: #416cad;
}
.type-box {
  padding: 2px 8px;
  background-color: #384251;
  border-radius: 4px;
  font-size: 14px;
  color: #FFFFFF;
  margin-right: 10px;
}
.list-svg-icon {
  display: flex;
  align-items: center;
}
.list-svg-icon li:not(:last-child) {
  margin-right: 10px;
}
.double-box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.double-box .white-box {
  width: calc(50% - 10px);
  margin: 0;
}
.changes-top {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
.changes-top .title {
  margin: 0 12px 0 0;
}
.changes-table {
  width: 100%;
}
.changes-table thead th {
  font-weight: normal;
  text-align: left;
  font-size: 14px;
  color: #4A5566;
  padding: 0 5px 5px 0;
}
.changes-table tbody td {
  font-size: 14px;
  padding: 7px 5px 7px 0;
  color: #222326;
}
.changes-table tbody tr:not(:last-child) td {
  border-bottom: 1px solid #EEEFF3;
}
.td-condition {
  padding-left: 25px;
  background-image: url(../img/down.svg);
  background-repeat: no-repeat;
  background-position: left center;
}
.td-condition.condution-up {
  background-image: url(../img/up.svg);
}
.white-box.not-padding {
  padding: 0;
}
.transfer-top {
  padding-top: 40px;
  display: flex;
  border-bottom: 1px solid #EEEFF3;
}
.transfer-top li {
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #BBC1C9;
  padding: 0 40px 20px;
  cursor: pointer;
  text-align: center;
  position: relative;
  top: 1px;
}
.transfer-top li.active {
  color: #2571E2;
  border-bottom: 1px solid;
}
.transfer-box {
  padding: 20px 40px;
}
.transfer-box:not(:last-child) {
  border-bottom: 1px solid #EEEFF3;
}
.transfer-box.p-t-40 {
  padding-top: 40px;
}
.transfer-select-block {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}
.transfer-select-block p {
  width: calc(45% - 15px);
  font-size: 18px;
  color: #222326;
  margin-right: 30px;
}
.transfer-select-block .select-big {
  width: calc(55% - 15px);
  margin: 0;
}
.transfer-select-block:not(:last-child) {
  margin-bottom: 20px;
}
.table-wrap {
  overflow-x: auto;
}
.quotation-wrap {
  display: flex;
  flex-wrap: wrap;
}
.quotation-wrap .checkbox {
  min-width: 150px;
  padding-right: 15px;
}
.modal-block-btns {
  background: #F2F5F9;
  padding: 40px;
}
.btn-modal {
  margin-left: 40px;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #222326;
}
.btn-modal:hover {
  color: #2571E2;
}
.modal-form {
  max-width: 850px;
  display: flex;
  flex-wrap: wrap;
}
.modal-form-block {
  width: calc(33.333% - 27px);
  margin-top: 15px;
}
.modal-form-block p {
  font-size: 16px;
  color: #222326;
  margin-bottom: 8px;
}
.modal-form-block:not(:last-child) {
  margin-right: 40px;
}
.modal-form-block .select-big {
  margin: 0;
}
.new-bill-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.new-bill-list {
  width: 270px;
}
.new-bill-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 40px;
  cursor: pointer;
}
.new-bill-btn.active .new-bill-icon svg,
.new-bill-btn:hover .new-bill-icon svg {
  fill: #5985C7;
}
.new-bill-btn.active .new-bill-name,
.new-bill-btn:hover .new-bill-name {
  color: #5985C7;
}
.new-bill-icon {
  width: 37px;
  text-align: center;
}
.new-bill-icon svg {
  fill: #BBC1C9;
  transition: 0.3s;
}
.new-bill-name {
  width: calc(100% - 65px);
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #4A5566;
  transition: 0.3s;
}
.new-bill-content {
  width: calc(100% - 300px);
  padding: 50px 60px;
  background-color: #FFFFFF;
  border-radius: 8px;
}
.new-bill-content sub {
  display: block;
  margin-bottom: 30px;
  font-size: 16px;
  line-height: 24px;
  color: #BBC1C9;
}
.table-bill-info {
  width: 100%;
  max-width: 500px;
}
.table-bill-info td {
  width: 50%;
  padding: 7px 5px 7px 0;
  font-size: 16px;
  line-height: 24px;
  color: #222326;
}
.table-bill-info td b {
  font-weight: 500;
}
.bill-progress {
  width: 100%;
  max-width: 500px;
  display: flex;
  justify-content: space-between;
  margin: 40px 0;
}
.bill-progress-list {
  width: calc(50% - 20px);
}
.bill-progress-list li {
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.bill-progress-list li span {
  width: 40px;
  height: 40px;
  font-weight: 500;
  font-size: 16px;
  color: #BBC1C9;
  border: 1px solid #EEEFF3;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.bill-progress-list li p {
  width: calc(100% - 50px);
  font-size: 16px;
  color: #222326;
}
.bill-progress-list li.active span {
  color: #2571E2;
  border-color: #2571E2;
}
.bill-progress-list li:not(:last-child) {
  margin-bottom: 20px;
}
.bill-progress-content {
  width: 50%;
}
.header-btn.profile-menu-btn {
  cursor: pointer;
  padding-right: 22px;
  background-image: url(../img/arrow-menu.svg);
  background-repeat: no-repeat;
  background-position: right center;
  position: relative;
  opacity: 1;
}
.header-btn.profile-menu-btn:hover .profile-menu {
  display: block;
}
.profile-menu {
  display: none;
  padding: 12px 0 0;
  position: absolute;
  top: 20px;
  left: 0;
  z-index: 5;
}
.profile-menu-list {
  min-width: 140px;
  padding: 8px 0;
  background-color: #ffffff;
}
.profile-menu-list li a {
  display: block;
  padding: 8px 15px 8px;
  color: #222326;
  font-size: 16px;
  background-color: #ffffff;
}
.profile-menu-list li a:hover {
  color: #2571E2;
  background-color: #e0e0e0;
}
.invite-wrap h6 {
  font-size: 18px;
  color: #222326;
  margin: 20px 0;
}
.invite-info-wrap {
  max-width: 350px;
  display: flex;
  justify-content: space-between;
}
.invite-info-block {
  width: calc(50% - 10px);
  margin-bottom: 35px;
}
.invite-info-block p {
  font-size: 16px;
  line-height: 24px;
  color: #222326;
}
.invite-info-block span {
  font-weight: 500;
}
.min-height-330 {
  min-height: 330px;
}
.transfer-title {
  margin-top: 20px;
  font-weight: bold;
  font-size: 14px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #222326;
}
.earnings-block {
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.earnings-block p {
  min-width: 190px;
  padding-right: 15px;
}
.earnings-block content {
  max-width: 255px;
}
.table-invite .table-instrument {
  padding-left: 30px;
}
.table-invite .table-instrument thead th {
  min-width: 150px;
  padding-left: 0;
  border-right: none;
}
.table-invite .table-instrument thead th:not(:last-child) {
  text-align: left;
}
.table-invite .table-instrument tbody td {
  padding: 10px 0;
  border-right: none;
  border-bottom: 1px solid #EEEFF3;
}
.table-invite .table-instrument tbody td:not(:last-child) {
  text-align: left;
}
.top-sub-text {
  max-width: 793px;
  font-size: 21px;
  line-height: 24px;
  text-align: center;
  color: #222326;
  margin: 0 auto 40px auto;
}
.text.f-21 {
  font-size: 21px;
  line-height: 24px;
}
.bottom-banner {
  height: 225px;
  background-color: #F2F5F9;
  margin-top: 30px;
}
.invite-details-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.invite-details-content {
  width: calc(100% - 310px);
  background-color: #FFFFFF;
  padding: 40px;
  border-radius: 8px;
}
.invite-details-content h4 {
  font-weight: bold;
  font-size: 22px;
  color: #222326;
  margin-bottom: 25px;
}
.invite-details-content p {
  font-size: 18px;
  color: #222326;
  margin-bottom: 25px;
}
.invite-details-content p.m-b-40 {
  margin-bottom: 40px;
}
.invite-details-content p.m-b-0 {
  margin-bottom: 0;
}
.link-page {
  display: inline-block;
  color: #2571E2;
  font-size: 20px;
}
.link-page:hover {
  color: #115ac7;
}
.table-details {
  width: 100%;
  border-collapse: collapse;
}
.table-details tr td {
  padding: 27px 0 27px 20px;
  font-size: 14px;
  color: #222326;
}
.table-details tr td:last-child {
  text-align: center;
}
.table-details tr:nth-child(odd) {
  background-color: #EEEFF3;
}
.table-details tr:nth-child(odd) td {
  padding: 11px 0 11px 20px;
}
.invite-details-navigation {
  width: 285px;
  background-color: #FFFFFF;
  padding: 20px 35px;
  border-radius: 8px;
}
.invite-details-navigation h5 {
  font-weight: 500;
  font-size: 16px;
  color: #222326;
  margin-bottom: 20px;
}
.invite-details-list li {
  margin-bottom: 20px;
}
.invite-details-list li a {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #244D8B;
}
.invite-details-list li a:hover {
  color: #29B08F;
}
.metatrader-wrap {
  width: calc(100% + 40px);
  margin-left: -20px;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}
.metatrader-block {
  width: 250px;
  height: 250px;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
  flex-direction: column;
  border: 1px solid #EEEFF3;
  border-radius: 8px;
  margin: 0 20px 40px;
}
.metatrader-block:hover {
  border: 1px solid #2571E2;
}
.metatrader-block:hover .metatrader-name {
  color: #181818;
}
.metatrader-block:hover .metatrader-icon svg {
  fill: #2571E2;
}
.metatrader-icon {
  height: 60px;
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 20px;
}
.metatrader-icon svg {
  fill: #BBC1C9;
  transition: 0.3s;
}
.metatrader-name {
  font-weight: 500;
  font-size: 16px;
  text-align: center;
  color: #181818;
  transition: 0.3s;
}
.financial-operations {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.financial-operations .white-box {
  width: 692px;
  max-width: 100%;
}
.financial-operations .transfer-top {
  width: 800px;
}
.financial-operations .transfer-select-block {
  max-width: 465px;
}
.overflow-auto {
  overflow: auto;
}
.financial-operatuin-info {
  width: calc(100% - 715px);
  max-width: 387px;
}
.operation-list {
  max-width: 250px;
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
.operation-list li {
  margin: 0 10px 10px 0;
}
.money-wrap {
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
}
.money-content {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}
.money-content p {
  font-size: 18px;
  color: #222326;
}
.money-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #BBC1C9;
  margin-right: 20px;
}
.money-changed-list li {
  margin-bottom: 20px;
}
.money-changed-list li a {
  font-weight: bold;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #5985C7;
}
.money-changed-list li a:hover {
  color: #325b9a;
}
.money-right {
  padding-top: 15px;
}
.currency-exchange {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}
.currency-exchange p {
  font-size: 18px;
  color: #222326;
}
.currency-exchange sub {
  font-size: 16px;
  color: #BBC1C9;
}
.currencies-box {
  width: 260px;
  max-width: 100%;
  display: flex;
}
.currencies-box .input {
  width: 55%;
  border-radius: 8px 0px 0px 8px;
  margin-bottom: 0;
  border-right: none;
}
.currencies-box .select-big {
  width: 45%;
  border-radius: 0px 8px 8px 0px;
  margin-bottom: 0;
}
.currencies-box p {
  width: 100%;
  font-size: 16px;
  color: #222326;
  text-align: center;
}
.operation-history .filter-left {
  margin-top: 15px;
}
.operation-history .changes-table thead th {
  min-width: 200px;
}
.input[type=date] {
  padding-right: 15px;
  background-image: url(../img/calendar.png);
  background-repeat: no-repeat;
  background-position-x: calc(100% - 15px);
  background-position-y: center;
}
.input[type=date]::-webkit-inner-spin-button,
.input[type=date]::-webkit-calendar-picker-indicator {
  opacity: 0;
  /*display: none;
    -webkit-appearance: none;*/
}
.partner-container {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin: 40px 0 0;
}
.partner-content {
  width: calc(100% - 460px);
  max-width: 540px;
}
.partner-content .circle-list {
  padding-left: 14px;
  margin-bottom: 20px;
}
.partner-data {
  width: 440px;
  max-width: 100%;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  background-image: url(../img/arrow-circle.png);
  background-repeat: no-repeat;
  background-position-x: 60px;
  background-position-y: 63px;
}
.partner-data-block {
  width: 210px;
  text-align: center;
}
.partner-data-block p {
  margin-top: 20px;
  font-size: 14px;
  line-height: 20px;
  color: #222326;
}
.partner-data-block:nth-child(1),
.partner-data-block:nth-child(2) {
  padding-bottom: 65px;
}
.partner-data-block:nth-child(2),
.partner-data-block:nth-child(4) {
  width: 175px;
}
.partner-data-icon {
  height: 120px;
}
.partner-data-icon img {
  max-height: 100%;
}
.notification-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 40px;
}
.notification-top .title {
  margin: 0;
}
.notification-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.notification-nav {
  width: 388px;
}
.notification-list li {
  background-color: #ffffff;
  padding: 15px 40px 12px;
}
.notification-list li p {
  font-size: 16px;
  color: #BBC1C9;
  margin-bottom: 5px;
}
.notification-list li a {
  font-size: 16px;
  line-height: 24px;
  color: #222326;
}
.notification-list li a:hover {
  color: #2571E2;
}
.notification-list li:not(:last-child) {
  border-bottom: 1px solid #EEEFF3;
}
.notification-list li.active {
  background-color: #EEEFF3;
}
.notification-content {
  width: calc(100% - 408px);
}
.notification-content .title {
  font-size: 22px;
  text-align: left;
  margin-bottom: 20px;
}
.tab-block {
  display: none;
}
.tab-block.active {
  display: block;
}
.settings-wrap {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
}
.settings-nav {
  width: 240px;
}
.tab-navigation {
  border-right: 1px solid #DCE0E4;
}
.tab-navigation li {
  padding-left: 15px;
  font-weight: 500;
  font-size: 16px;
  line-height: 20px;
  letter-spacing: 0.05em;
  color: #384251;
  position: relative;
  cursor: pointer;
  transition: 0.3s;
}
.tab-navigation li:hover {
  color: #2571E2;
}
.tab-navigation li:not(:last-child) {
  margin-bottom: 30px;
}
.tab-navigation li.active {
  color: #2571E2;
}
.tab-navigation li.active:before {
  content: '';
  width: 4px;
  height: 4px;
  background-color: #2571E2;
  border-radius: 50%;
  position: absolute;
  top: 6px;
  left: 0;
}
.label {
  display: block;
  margin-bottom: 40px;
}
.label input,
.label select {
  margin: 0;
}
.label-name {
  display: block;
  font-size: 16px;
  line-height: 24px;
  color: #222326;
  margin-bottom: 10px;
}
.double-label {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.double-label .label {
  width: calc(50% - 20px);
}
.settings-input {
  position: relative;
}
.settings-input .input {
  padding-right: 45px;
}
.settings-input .open-modal {
  position: absolute;
  top: -4px;
  right: 18px;
}
.settings-input .svg-icon {
  fill: #BBC1C9;
}
.settings-input .svg-icon:hover {
  fill: #2571E2;
}
.tab-block .transfer-box {
  background-color: #ffffff;
}
.tab-block .transfer-box:first-child {
  padding-top: 40px;
}
.tab-block .transfer-box:last-child {
  padding-bottom: 40px;
}
.settings-content {
  width: calc(100% - 300px);
}
.settings-content sub {
  display: block;
  margin-bottom: 40px;
  font-size: 18px;
  line-height: 24px;
  color: #BBC1C9;
}
.settings-content sub.m-b-0 {
  margin-bottom: 0;
}
.settings-content sub.m-b-20 {
  margin-bottom: 20px;
}
.settings-content h5 {
  font-size: 18px;
  line-height: 24px;
  color: #384251;
  margin-bottom: 10px;
}
.settings-content .text {
  margin-bottom: 10px;
}
.settings-content .text.m-b-40 {
  margin-bottom: 40px;
}
.label-block {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  margin-bottom: 40px;
  position: relative;
}
.label-block .label {
  width: calc(50% - 20px);
  margin: 0;
}
.label-block .label-right-info {
  width: calc(50% - 20px);
  font-size: 16px;
  line-height: 24px;
  color: #BBC1C9;
  position: absolute;
  top: 10px;
  right: 0;
}
.label-block .label-right-info p {
  padding-top: 20px;
}
.social-block {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
}
.social-block:not(:last-child) {
  margin-bottom: 40px;
}
.social-info {
  display: flex;
  justify-content: space-between;
  max-width: calc(100% - 270px);
}
.social-info content {
  width: calc(100% - 44px);
  max-width: 400px;
}
.social-info content h4 {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #222326;
  margin-bottom: 10px;
}
.social-info content p {
  font-size: 16px;
  line-height: 24px;
  color: #BBC1C9;
}
.social-icon {
  width: 24px;
  text-align: center;
}
.disable-service {
  font-weight: bold;
  font-size: 15px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #2571E2;
}
.disable-service:hover {
  color: #155abf;
}
.btn-link {
  display: inline-block;
  font-size: 18px;
  line-height: 24px;
  border-bottom: 1px solid;
  color: #2571E2;
  margin-bottom: 14px;
  cursor: pointer;
  transition: 0.3s;
}
.btn-link:hover {
  color: #155abf;
}
.condition-text {
  font-weight: bold;
  font-size: 14px;
  line-height: 20px;
  color: #E22525;
  margin-bottom: 10px;
}
.condition-text.active {
  color: #29B08F;
}
.safety-block {
  display: none;
}
.safety-block.active {
  display: block;
}
.safety-block .back-page {
  display: inline-block;
  font-size: 16px;
  font-weight: normal;
  text-transform: none;
  margin-bottom: 40px;
  cursor: pointer;
}
.authorization-wrap {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  padding: 20px 50px 0 0 ;
}
.authorization-left {
  width: calc(100% - 260px);
  max-width: 375px;
}
.authorization-left .label {
  margin-bottom: 20px;
}
.authorization-right {
  width: 245px;
}
.authorization-photo {
  margin-bottom: 20px;
}
.max-w-165 {
  max-width: 165px;
}
.digit-key-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.digit-key-title p {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #4A5566;
}
.digit-key-icon {
  position: relative;
  top: 2px;
  cursor: pointer;
}
.digit-key-icon:hover {
  opacity: 0.7;
}
.digit-key {
  font-weight: 500;
  font-size: 16px;
  line-height: 24px;
  color: #E22525;
  margin-bottom: 17px;
}
.digit-key-text {
  margin-top: 20px;
  font-size: 14px;
  line-height: 20px;
  color: #222326;
}
.digit-link {
  max-width: calc(100% - 30px);
  color: #2571E2;
  font-size: 18px;
  line-height: 24px;
}
.safety-logs .changes-table {
  margin: 20px 0 35px;
}
.safety-logs .changes-table th:last-child {
  text-align: right;
}
.safety-logs .changes-table td {
  vertical-align: top;
  border-bottom: 1px solid #EEEFF3;
}
.safety-logs .changes-table td:last-child {
  text-align: right;
}
.pagin-text-info {
  margin-top: 20px;
  font-size: 16px;
  text-align: center;
  color: #BBC1C9;
}
.pay-system {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.pay-system .label {
  margin-bottom: 20px;
}
.pay-system .label:nth-child(1) {
  width: 40%;
}
.pay-system .label:nth-child(2) {
  width: calc(27% - 40px);
}
.pay-system .label:nth-child(3) {
  width: 33%;
}
.required-field {
  color: #E22525;
}
.verification-block {
  padding-left: 32px;
}
.verification-block.disabled .verification-title:before {
  background-image: url(../img/disabled.svg);
}
.verification-block.disabled .verification-state {
  color: #E22525;
}
.verification-title {
  position: relative;
}
.verification-title:before {
  content: '';
  width: 20px;
  height: 20px;
  background-image: url(../img/verification.svg);
  background-size: cover;
  position: absolute;
  top: 3px;
  left: -34px;
}
.verification-state {
  font-size: 14px;
  line-height: 20px;
  color: #29B08F;
  margin-bottom: 10px;
}
.verification-info {
  font-size: 14px;
  line-height: 20px;
  color: #4A5566;
}
.verification-info b {
  color: #222326;
}
.verification-info.gray {
  color: #BBC1C9;
}
.verification-info:not(:last-child) {
  margin-bottom: 10px;
}
.verification-info.m-b-20 {
  margin-bottom: 20px;
}
.load-file-box {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.load-file-content {
  width: calc(100% - 200px);
  max-width: 410px;
}
.load-file-content .circle-list {
  padding: 5px 0 0 10px;
}
.load-file-content .circle-list li {
  margin-bottom: 17px;
}
.load-file-photo {
  width: 183px;
  padding-top: 25px;
}
.load-file-label {
  width: 100%;
  height: 60px;
  display: block;
  border: 1px solid #BBC1C9;
  border-radius: 8px;
  position: relative;
  margin-bottom: 20px;
}
.load-file-label .input {
  display: none;
}
.load-file-title {
  background-image: url(../img/clip.svg);
  background-repeat: no-repeat;
  background-position: left center;
  position: absolute;
  top: 18px;
  right: 20px;
  padding: 1px 3px 2px 32px;
  font-weight: 500;
  font-size: 16px;
  color: #4A5566;
  cursor: pointer;
  transition: 0.3s;
}
.load-file-title:hover {
  background-image: url(../img/clip-active.svg);
}
.btn-repeat {
  font-size: 16px;
  line-height: 24px;
  color: #4A5566;
  border-bottom: 1px solid;
  margin-left: 35px;
}
.btn-repeat:hover {
  color: #2571E2;
}
.confirm-number-wrap {
  display: flex;
  align-items: center;
}
.confirm-number-left {
  width: 260px;
}
.send-SMS {
  font-weight: bold;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: #2571E2;
  margin: 30px 0 0 20px;
  cursor: pointer;
}
.send-SMS:hover {
  color: #2661ba;
}
.confirm-core {
  border-top: 1px solid #EEEFF3;
  padding-top: 40px;
  text-align: center;
}
.confirm-core p {
  font-size: 16px;
  line-height: 24px;
  color: #4A5566;
  margin-bottom: 20px;
}
.confirm-core p.black {
  color: #222326;
  margin-bottom: 10px;
}
.confirm-core .input {
  width: 155px;
  margin: 0;
}
.modal-confirm-email .label {
  margin: 0;
}
.table-active.dashboard-table th {
  width: 20%;
}
.transfer-select-block .btn {
  min-width: 183px;
}
.money-wrap {
  padding-right: 50px;
}
