* {
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
  outline: none !important;
}

html {
  scroll-behavior: smooth;
  min-height: 100vh;
}

body {
  background-color: #fff;
  color: #242b46;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.2;
  padding: 0;
  margin: 0;
}

.container {
  max-width: 1280px;
  width: 100%;
  margin: 0 auto;
  padding: 0 16px;
}

.dropdown_block__js {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.5s ease-out;
}

.accordion_btn__js.active img {
  transform: rotate(180deg);
}

.hover_scale {
  transition: transform 0.2s ease;
}
.hover_scale:hover {
  transform: scale(1.04);
}

.section_title_with_border {
  font-size: 24px;
  font-weight: 600;
  line-height: normal;
  margin: 0;
  margin-bottom: 8px;
  text-transform: uppercase;
}

.upcoming_fixtures_wrap {
  background-color: #fff;
  height: 40px;
  width: 100%;
  position: relative;
  overflow: hidden;
  display: flex;
  margin-bottom: 24px;
  z-index: 10000;
}
.upcoming_fixtures_wrap.show {
  display: block;
}

.main_header_wrap {
  width: 100%;
  background-color: #ffffff;
  box-shadow: 0 15px 30px 0 rgba(119, 123, 146, 0.1);
  height: 61px;
  display: flex;
  align-items: center;
  z-index: 100;
}

.main_header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.header_logo.goldinvestment {
  width: 306px;
}
.header_logo.goldinvestment img {
  width: 100%;
  display: block;
}

.header_logo.stocktrading {
  width: 271px;
}
.header_logo.stocktrading img {
  width: 100%;
  display: block;
}

.header_mobile_menu_btn {
  display: block;
  padding: 0;
  background: none;
  border: none;
  width: 16px;
  height: 16px;
}
.header_mobile_menu_btn svg {
  width: 100%;
  display: block;
}
@media (min-width: 993px) {
  .header_mobile_menu_btn {
    display: none;
  }
}

.header_mobile_menu_overlay {
  position: fixed;
  z-index: 998;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  display: none;
  background-color: rgba(59, 63, 74, 0.5);
}
.header_mobile_menu_overlay.active {
  display: block;
}
@media (min-width: 993px) {
  .header_mobile_menu_overlay {
    display: none;
  }
  .header_mobile_menu_overlay.active {
    display: none;
  }
}

.header_mobile_menu {
  position: fixed;
  min-height: 100vh;
  overflow-y: scroll;
  top: 0;
  right: -250px;
  width: 250px;
  padding: 20px;
  background-color: #ffffff;
  z-index: 999;
  transition: right 0.3s ease;
  list-style-type: none;
  margin: 0;
}
.header_mobile_menu.active {
  right: 0;
}
@media (min-width: 993px) {
  .header_mobile_menu {
    display: none;
  }
  .header_mobile_menu.active {
    display: none;
  }
}

.header_mobile_menu_item a {
  display: block;
  padding: 10px;
  font-size: 15px;
  text-decoration: none;
  color: #242b46;
  font-weight: 500;
  margin: 0 0 5px;
}

.main_header-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0 58px;
}

.header_menu {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  padding: 0;
  margin: 0;
  list-style-type: none;
  gap: 58px;
  padding-left: 58px;
}
@media (max-width: 992px) {
  .header_menu {
    display: none;
  }
}

.header_menu_item,
.header_menu_item_link {
  position: relative;
  color: rgb(36, 43, 70);
  font-size: 14px;
  font-weight: 500;
  line-height: 21px;
  text-decoration: none;
}
.header_menu_item > a,
.header_menu_item_link > a {
  cursor: pointer;
}
.header_menu_item > a svg,
.header_menu_item_link > a svg {
  transition: transform 0.3s ease;
  width: 12px;
  height: 12px;
}
.header_menu_item > a svg.rotate-up,
.header_menu_item_link > a svg.rotate-up {
  transform: rotate(180deg);
}

.dropdown .dropdown_content.stocktrading {
  background-color: rgba(36, 43, 70, 0.8980392157);
}
.dropdown .dropdown_content.stocktrading .dropdown_content-arrow {
  background: rgba(36, 43, 70, 0.8980392157);
}

.dropdown .dropdown_content.goldinvestment {
  background-color: #2b2f43;
}
.dropdown .dropdown_content.goldinvestment .dropdown_content-arrow {
  background: rgba(47, 51, 78, 0.9);
}

.dropdown .dropdown_content {
  position: absolute;
  top: 45px;
  left: -100px;
  border: none;
  box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
  z-index: 10;
  width: fit-content;
  color: #fff;
  margin: 0;
  padding: 14px 20px;
  border-radius: 0 0 8px 8px;
  grid-template-columns: repeat(2, 1fr);
  justify-items: start;
  gap: 0 40px;
  align-items: center;
  display: none;
}
.dropdown .dropdown_content .dropdown_content-arrow {
  clip-path: polygon(50% 15%, 0% 100%, 100% 100%);
  width: 26px;
  height: 11px;
  position: absolute;
  top: -10px;
  left: 43%;
  z-index: 100;
}

.dropdown_item {
  display: block;
  color: #fff;
  text-decoration: none;
  width: 80%;
  padding: 12px 0;
  font-size: 16px;
  font-weight: 500;
  white-space: nowrap;
}

.mobile-only {
  display: none;
}

.desktop-only {
  display: block;
}

@media (max-width: 540px) {
  .desktop-only {
    display: none;
  }
  .mobile-only {
    display: block;
  }
}
.main_header_menu_notifications_btn {
  border: none;
  background: transparent;
  background-repeat: no-repeat;
  background-position: center;
  background-size: contain;
  width: 29px;
  height: 28px;
  cursor: pointer;
  position: relative;
}
.main_header_menu_notifications_btn .main_header_menu_notifications_btn_wrap {
  position: absolute;
  top: -3px;
  right: -12px;
}
.main_header_menu_notifications_btn .main_header_menu_notifications_btn_wrap span {
  display: inline-block;
  background: #19c37d;
  color: #fff;
  padding: 3px;
  border-radius: 50%;
  font-size: 10px;
  font-weight: 700;
  min-width: 16px;
  height: 16px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}

.notification_offer_popup_overlay {
  position: fixed;
  top: 0;
  right: -1000px;
  width: 424px;
  height: 100%;
  overflow: auto;
  color: #fff;
  z-index: 1000;
  transition: left 0.3s ease-in-out;
  box-shadow: -2px 0 10px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}
@media (max-width: 991px) {
  .notification_offer_popup_overlay {
    width: 322px;
  }
}

.notification_offer_popup_overlay.open {
  right: 0;
}

.notification_offer_popup_title_block.goldinvestment {
  background: #242b46;
}

.notification_offer_popup_title_block.stocktrading {
  background: #08157a;
}

.notification_offer_popup_title_block {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 24px 0;
  gap: 8px;
}
.notification_offer_popup_title_block .notification_offer_popup-star {
  width: 100%;
  max-width: 156px;
}
@media (max-width: 991px) {
  .notification_offer_popup_title_block .notification_offer_popup-star {
    max-width: 126px;
  }
}
.notification_offer_popup_title_block .notification_offer_popup_title {
  font-size: 28px;
  font-weight: 600;
  line-height: normal;
  color: #fff;
  text-align: left;
  text-transform: uppercase;
  margin: 0;
}
.notification_offer_popup_title_block .notification_offer_popup_title_btn.stocktrading svg circle {
  display: none;
}
.notification_offer_popup_title_block .notification_offer_popup_title_btn {
  width: 24px;
  height: 24px;
  cursor: pointer;
  position: absolute;
  top: 26px;
  right: 30px;
}

.notification_offer_popup_body_block {
  overflow: auto;
  background-color: #deecff;
  height: 100%;
  padding: 33px 20px;
}
.notification_offer_popup_body_block .offers_wrap {
  display: flex;
  align-items: center;
  flex-flow: column;
  gap: 20px 0;
}
.notification_offer_popup_body_block .notification_offer_item {
  background-color: #ffffff;
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  max-width: 353px;
  min-width: 353px;
  min-height: 313px;
  display: flex;
  flex-direction: column;
  border-radius: 16px;
}
.notification_offer_popup_body_block .notification_offer_item .brand_rates_wrap:after {
  display: none;
}
@media (max-width: 991px) {
  .notification_offer_popup_body_block .notification_offer_item {
    min-width: 268px;
    max-width: 268px;
    min-height: 258px;
    position: relative;
  }
}
.notification_offer_popup_body_block .notification_offer_logo_wrap {
  height: 100px;
  background-color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-shrink: 0;
  padding: 9px 0;
  border-bottom: 3px solid #deecff;
}
@media (max-width: 991px) {
  .notification_offer_popup_body_block .notification_offer_logo_wrap {
    padding: 8px 38px;
  }
}
.notification_offer_popup_body_block .notification_offer_logo {
  height: inherit;
  display: block;
  width: 100%;
  max-width: 191px;
  max-height: 100px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
}
.notification_offer_popup_body_block .notification_offer_content_wrap.goldinvestment {
  padding: 24px;
  gap: 6px;
}
.notification_offer_popup_body_block .notification_offer_content_wrap.stocktrading {
  padding: 32px;
  margin: auto 0;
  gap: 12px;
}
.notification_offer_popup_body_block .notification_offer_content_wrap {
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}
.notification_offer_popup_body_block .notification_offer_content_wrap .notification_offer_coupon_text.goldinvestment {
  color: rgb(30, 115, 190);
  font-size: 24px;
  font-weight: 600;
  line-height: normal;
}
.notification_offer_popup_body_block .notification_offer_content_wrap .notification_offer_coupon_text.stocktrading {
  color: #08157A;
  font-size: 18px;
  font-weight: 600;
  line-height: normal;
  padding: 0 4px;
  max-width: 287px;
}
.notification_offer_popup_body_block .notification_offer_content_wrap .notification_offer_coupon_text {
  text-align: center;
  text-decoration: none;
}
.notification_offer_popup_body_block .notification_offer_content_wrap .notification_offer_text {
  color: rgb(59, 63, 74);
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  text-align: center;
  margin: 0;
}
.notification_offer_popup_body_block .notification_offer_content_wrap .notification_offer_visit_link {
  width: 100%;
  max-width: 175px;
  height: 36px;
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
  line-height: 21px;
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 991px) {
  .notification_offer_popup_body_block .notification_offer_content_wrap .notification_offer_visit_link {
    font-size: 14px;
  }
}
.notification_offer_popup_body_block .notification_offer_content_wrap .notification_offer_visit_link_text.goldinvestment {
  color: rgb(30, 115, 190);
}
.notification_offer_popup_body_block .notification_offer_content_wrap .notification_offer_visit_link_text.stocktrading {
  color: #08157A;
}
.notification_offer_popup_body_block .notification_offer_content_wrap .notification_offer_visit_link_text {
  font-size: 14px;
  font-weight: 700;
  line-height: 18px;
}
@media (max-width: 991px) {
  .notification_offer_popup_body_block .notification_offer_content_wrap {
    padding: 16px 24px;
  }
}
@media (max-width: 991px) {
  .notification_offer_popup_body_block {
    padding: 26px;
  }
}

.header_submenu {
  position: absolute;
  top: 100%;
  left: 0;
  list-style-type: none;
  margin: 0;
  background-color: #ffffff;
  box-shadow: 0 4px 24px rgba(137, 153, 175, 0.25);
  border-radius: 8px;
  padding: 20px;
  width: 203px;
  display: none;
}
.header_submenu:hover {
  display: block;
}

.header_mobile_menu_close_btn {
  border: none;
  background: transparent;
  padding: 0 12px;
  position: absolute;
  top: 2%;
  right: 10px;
}

.header_submenu_item {
  margin: 0 0 30px;
}
.header_submenu_item:last-child {
  margin: 0;
}
.header_submenu_item a {
  text-decoration: none;
  color: #242b46;
  font-size: 14px;
  font-weight: 500;
  display: block;
}
.header_submenu_item a:hover {
  color: #1e73be;
}

.main_title_block_wrap.goldinvestment {
  min-height: 328px;
  padding: 51px 0 13px 0;
}

.main_title_block_wrap.stocktrading {
  min-height: 280px;
  padding: 37px 0 13px 0;
  z-index: 5;
}

.main_title_block_wrap {
  margin: 0;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  position: relative;
  padding: 24px;
}

.main_title_block {
  position: relative;
  z-index: 2;
  color: #ffffff;
}
@media (max-width: 993px) {
  .main_title_block {
    margin-top: 18px;
  }
}

.page_title.goldinvestment {
  font-size: 42px;
  font-weight: 600;
  line-height: 63px;
  margin: 0 0 8px 0;
  display: flex;
  flex-direction: column;
}
.page_title.goldinvestment span {
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  text-transform: uppercase;
}

.page_title.stocktrading {
  font-size: 38px;
  font-weight: 600;
  line-height: 46px;
  margin: 0 0 8px 0;
  max-width: 798px;
  display: flex;
  flex-direction: column;
}
.page_title.stocktrading span {
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
  text-transform: uppercase;
}

.page_subtitle.goldinvestment {
  font-size: 24px;
  font-weight: 500;
  line-height: 36px;
  margin: 0;
}

.page_subtitle.stocktrading {
  font-size: 21px;
  font-weight: 500;
  line-height: 32px;
  margin: 0;
}

.title-info-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 38px;
  max-width: 977px;
}

.last_updated_block {
  background-color: rgb(36, 43, 70);
  color: #fff;
  padding: 8px 16px;
  border-radius: 4px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.last_updated_block p {
  font-size: 14px;
  font-weight: 600;
  line-height: 100%;
  margin: 0;
}
.last_updated_block span {
  color: #19c37d;
}

.main_advantages_block.goldinvestment,
.last_updated_block.goldinvestment {
  background-color: rgb(36, 43, 70);
}

.main_advantages_block.stocktrading,
.last_updated_block.stocktrading {
  background-color: #242b46;
}

.main_advantages_block {
  display: flex;
  align-items: center;
  justify-content: space-around;
  height: 36px;
  gap: 45px;
  background-color: rgb(36, 43, 70);
  color: #fff;
  padding: 8px 22px;
  border-radius: 4px;
}
.main_advantages_block .advantage_item {
  display: flex;
  align-items: center;
  gap: 20px;
}
.main_advantages_block .advantage_item img {
  width: 100%;
  max-width: 37px;
  height: 21px;
}
.main_advantages_block .advantage_item span {
  font-size: 14px;
  font-weight: 600;
  line-height: 100%;
  white-space: nowrap;
}
@media (max-width: 993px) {
  .main_advantages_block {
    margin: 0;
    padding: 4px 28px;
    gap: 0 45px;
    width: 100%;
    height: 24px;
  }
  .main_advantages_block .advantage_item img {
    height: 16px;
    max-width: 25px;
  }
  .main_advantages_block .advantage_item p {
    font-size: 12px;
    margin: 0;
  }
}

.main_ore_block {
  display: flex;
  align-items: center;
  gap: 16px;
}
@media (max-width: 993px) {
  .main_ore_block {
    display: none;
  }
}
.main_ore_block .main_ore_item {
  width: 100%;
  max-width: 195px;
  border-radius: 8px;
  background-color: #fff;
  color: #000;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 26px;
}
.main_ore_block .main_ore_item h4 {
  margin: 0;
}

.content_wrap {
  margin: 14px 0 0;
  padding: 0 16px;
  position: relative;
  min-height: 400px;
  color: #242B46;
}
.content_wrap .container {
  display: flex;
  justify-content: center;
  gap: 18px;
}

.content_block {
  max-width: 977px;
  width: 100%;
}

.review_list {
  width: 100%;
}

.review_list_item.goldinvestment {
  border: 1px solid #1e73be;
}

.review_list_item.stocktrading {
  border: 1px solid #08157a;
}

.review_list_item {
  position: relative;
  border-radius: 4px;
  will-change: transform;
  margin: 0 0 7px;
  background-color: #fff;
}
.review_list_item:hover {
  transform: scale(1.01);
  box-shadow: 0 4px 24px rgba(137, 153, 175, 0.25);
}

.highlight {
  border: 2px solid #d0b26e;
}

.review_list_item:first-of-type .review_list_item__ribbon,
.review_list_item:first-of-type .review_list_item__ribbon::after {
  background: #d7b973;
}

.review_list_item__ribbon.goldinvestment,
.review_list_item__ribbon.goldinvestment::after {
  background-color: #1e73be;
}

.review_list_item__ribbon.stocktrading,
.review_list_item__ribbon.stocktrading::after {
  background-color: #08157a;
}

.review_list_item__ribbon {
  position: absolute;
  top: -2px;
  left: -2px;
  z-index: 10;
  border-radius: 4px 0 0 0;
  height: 25px;
  min-width: 30px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0 2px 0 10px;
  font-size: 14px;
  font-weight: 700;
  color: #ffffff;
  text-transform: uppercase;
  line-height: 1;
  width: fit-content;
}

.review_list_item__ribbon::after {
  content: "";
  position: absolute;
  top: 0;
  right: -23px;
  width: 23px;
  height: 25px;
  clip-path: polygon(0 0, 0% 100%, 100% 0);
}

.review_list_item__visible_part-goldinvestment,
.review_list_item__visible_part-stocktrading {
  padding: 24px 48px 20px;
  position: relative;
  display: grid;
  grid-template-columns: 192px 1fr 186px;
  grid-template-rows: 1fr;
  grid-column-gap: 0;
  grid-row-gap: 0;
  align-items: center;
  min-height: 184px;
}

.review_list_item__visible_mobile_part-goldinvestment,
.review_list_item__visible_mobile_part-stocktrading {
  display: none;
}

.review_list_item__logo_wrap {
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: flex-start;
  flex-direction: column;
  justify-content: space-around;
  padding: 0;
  gap: 30px;
  margin-top: 20px;
}

.review_list_item__logo {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  max-height: 190px;
  width: 100%;
  height: 72px;
  display: block;
}

.review_list_item__promotion_wrap {
  max-width: 400px;
  width: 100%;
  padding-left: 36px;
  margin: 0 auto;
  position: relative;
}

.review_list_item__promotion_wrap::before,
.review_list_item__promotion_wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 120px;
  width: 1px;
  background: #d0b26e;
}

.review_list_item__promotion_wrap::before {
  left: 0;
}

.review_list_item__promotion_wrap::after {
  right: 0;
}

.review_list_item__stub,
.review_list_item__stub-highlight {
  display: none;
}

.hover_min_scale {
  transition: transform 0.3s ease, box-shadow 0.2s ease;
}
.hover_min_scale:hover {
  transform: translateY(-3px);
  box-shadow: 0 4px 24px rgba(137, 153, 175, 0.25);
}

.review_list_item__coupon_wrap {
  width: 100%;
  max-width: 322px;
  min-height: 58px;
  position: relative;
  padding: 3px 5px;
  background-repeat: no-repeat;
  border-radius: 6px;
  margin-bottom: 11px;
}
.review_list_item__coupon_wrap span {
  position: absolute;
  bottom: -16px;
  right: 16px;
}
.review_list_item__coupon_wrap span svg {
  width: 29px;
  height: 24px;
}

.review_list_item__coupon_link {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
}

.review_list_item__coupon.goldinvestment {
  background: linear-gradient(85deg, rgba(185, 157, 93, 0.2) 3.08%, rgba(228, 197, 125, 0.2) 97.39%);
}
.review_list_item__coupon.goldinvestment p {
  font-size: 12px;
  font-weight: 600;
  line-height: normal;
  margin: 0;
}

.review_list_item__coupon.stocktrading {
  background: linear-gradient(85deg, rgba(185, 157, 93, 0.2) 3.08%, rgba(228, 197, 125, 0.2) 97.39%);
}
.review_list_item__coupon.stocktrading p {
  font-size: 10px;
  font-weight: 600;
  line-height: normal;
  margin: 0;
  color: #1b2650;
}

.review_list_item__coupon {
  display: flex;
  align-items: center;
  padding: 7px 8px;
  position: relative;
  border-radius: inherit;
  min-height: 52px;
}
.review_list_item__coupon img {
  display: block;
  flex-shrink: 0;
  margin: 0 8px 0 0;
  width: 35px;
  height: 35px;
}

.review_list_item__save_wrap {
  width: auto;
  max-width: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  border-radius: 50px;
  color: #1E73BE;
  background-color: #F5F5F5;
  padding: 0;
  margin: 0 auto;
}
.review_list_item__save_wrap .review_list_item__save_text {
  font-size: 10px;
  font-weight: 600;
  line-height: 15px;
  padding: 0;
  margin: 0;
}

.review_list_item__advantages {
  padding: 0;
  list-style-type: none;
  max-width: 322px;
  margin: 0;
}
.review_list_item__advantages li {
  display: flex;
  align-items: center;
  margin-bottom: 2px;
}
.review_list_item__advantages li svg {
  display: block;
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  margin-right: 13px;
}
.review_list_item__advantages li span {
  font-size: 13px;
  font-weight: 400;
  line-height: normal;
}

.review_list_item__info_wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.review_list_item__buttons,
.review_btn_block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 8px;
}

.review_list_item__rates_wrap {
  display: grid;
  grid-template-columns: 50px 100px;
  gap: 10px;
  align-content: space-between;
  justify-items: center;
  margin: 0 auto;
}

.review_list_item__block {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 2px;
}

.review_list_item__rates_stars {
  grid-area: 1/1/2/2;
  display: flex;
  align-items: center;
  justify-content: center;
}
.review_list_item__rates_stars img {
  display: block;
  width: 16px;
  height: 16px;
}

.stars_wrap,
.stars_wrap_review {
  pointer-events: none;
  cursor: default;
  font-size: 12px;
}

.review_list_item__rates_score.goldinvestment {
  background-color: #1E73BE;
}

.review_list_item__rates_score.stocktrading {
  background-color: #08157a;
}

.review_list_item__rates_score {
  width: 48px;
  height: 36px;
  font-size: 21px;
  font-weight: 700;
  line-height: 32px;
  margin: 0 auto;
  color: #fff;
  border-radius: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.review_list_item__rates_word {
  font-size: 14px;
  font-weight: 700;
  line-height: 100%;
}

.review_list_item__visit_site {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 34px;
  text-decoration: none;
}

.review_list_item__phone {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  padding: 5px;
  white-space: nowrap;
  width: 100%;
}
.review_list_item__phone img,
.review_list_item__phone svg {
  display: block;
  width: 15px;
  height: 15px;
  flex-shrink: 0;
}
.review_list_item__phone span {
  font-size: 14px;
  font-weight: 700;
}

.review_list_item__visit {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  padding: 0 10px;
}
.review_list_item__visit img {
  width: 21px;
  height: 21px;
}
.review_list_item__visit .review_list_item__visit_text {
  font-size: 8px;
  line-height: 12px;
  font-weight: 500;
}
.review_list_item__visit .review_list_item__visit_link.goldinvestment {
  color: #1E73BE;
}
.review_list_item__visit .review_list_item__visit_link.stocktrading {
  color: #08157A;
}
.review_list_item__visit .review_list_item__visit_link {
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  margin: 0;
}

.review_list_item__show_hide {
  display: flex;
  align-items: center;
  padding: 0 0 7px 37px;
  font-size: 14px;
  font-weight: 500;
  color: #1e73be;
  white-space: nowrap;
  text-decoration: underline;
  cursor: pointer;
}
.review_list_item__show_hide img {
  transition: transform 0.2s ease;
  display: block;
  width: 8px;
  margin: 0 6px 0 0;
  flex-shrink: 0;
}
.review_list_item__show_hide * {
  pointer-events: none;
}
.review_list_item__show_hide.active img {
  transform: rotate(180deg);
}

.review_list_item__hidden_part_wrap {
  overflow-y: hidden;
  max-height: 0;
  transition: max-height 0.3s ease;
}
.review_list_item__hidden_part_wrap.active {
  max-height: fit-content !important;
}

.review_list_item__hidden_part {
  padding: 10px 0;
}

.review_list_item__dropdown_btn {
  display: flex;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
  padding: 10px 0 20px;
  font-size: 14px;
  font-weight: 500;
  color: #1e73be;
  line-height: 1;
}
.review_list_item__dropdown_btn img {
  display: block;
  width: 20px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}
.review_list_item__dropdown_btn * {
  pointer-events: none;
}
.review_list_item__dropdown_btn.active {
  padding: 10px 0;
}

.review_list_item__pros_cons_wrap {
  padding: 0 20px;
}

.review_list_item__pros_cons {
  display: flex;
  margin: 0;
}
.review_list_item__pros_cons.active {
  margin: 10px 0 10px;
}

.pros_cons_list {
  margin: 0;
  padding: 0;
  list-style-type: none;
}
.pros_cons_list:nth-child(1) {
  margin: 0 40px 0 0;
}
.pros_cons_list li {
  display: flex;
  align-items: center;
  font-size: 12px;
  font-weight: 500;
  margin: 0 0 10px;
  line-height: 1;
}
.pros_cons_list li img {
  display: block;
  width: 24px;
  margin: 0 10px 0 0;
}

.review_list_item__systems_and_appliances_wrap {
  padding: 0 20px;
  border-top: 1px solid #f1f1f7;
}
.review_list_item__systems_and_appliances_wrap h3 {
  font-size: 14px;
  font-weight: 400;
  margin: 0 0 35px;
}

.review_list_item__systems_and_appliances {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
}

.review_brand_wrap {
  margin: 25px 0;
}
.review_brand_wrap .review_brand_title {
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
}
.review_brand_wrap .review_brand_list {
  margin: 24px 0;
  display: flex;
  flex-direction: column;
  gap: 25px;
}
@media (max-width: 768px) {
  .review_brand_wrap .review_brand_list {
    gap: 16px;
  }
}
.review_brand_wrap .top_of_category_item {
  display: flex;
  flex-direction: row;
  gap: 56px;
  border: 2px solid #E8F3FB;
  border-radius: 8px;
}
@media (max-width: 768px) {
  .review_brand_wrap .top_of_category_item {
    flex-direction: column;
    gap: 0;
  }
}
.review_brand_wrap .top_of_category_item .top_of_category_item_block_left.goldinvestment {
  padding: 30px 36px;
}
.review_brand_wrap .top_of_category_item .top_of_category_item_block_left.stocktrading {
  padding: 35px 36px;
}
@media (max-width: 768px) {
  .review_brand_wrap .top_of_category_item .top_of_category_item_block_left.stocktrading {
    padding: 33px 16px;
  }
}
.review_brand_wrap .top_of_category_item .top_of_category_item_block_left {
  background: #E8F3FB;
  width: 100%;
  min-width: 408px;
  display: flex;
  flex-direction: column;
  gap: 21px;
}
@media (max-width: 768px) {
  .review_brand_wrap .top_of_category_item .top_of_category_item_block_left {
    min-width: 0;
    padding: 24px 16px;
    gap: 23px;
  }
}
.review_brand_wrap .top_of_category_item .top_of_category_item__logo_wrap.goldinvestment {
  background-color: #fff;
  border-radius: 4px;
  padding: 6px 12px;
  max-width: 247px;
}
.review_brand_wrap .top_of_category_item .top_of_category_item__logo_wrap.stocktrading {
  background: none;
  padding: 0;
  margin-left: 26px;
  max-width: 197px;
}
@media (max-width: 768px) {
  .review_brand_wrap .top_of_category_item .top_of_category_item__logo_wrap.stocktrading {
    max-width: 153px;
  }
}
.review_brand_wrap .top_of_category_item .top_of_category_item__logo_wrap {
  width: 100%;
}
.review_brand_wrap .top_of_category_item .top_of_category_item__logo {
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
  background-size: min(197px, 100%);
  height: 60px;
  width: 100%;
  display: block;
}
.review_brand_wrap .top_of_category_item .top_of_category_item__text {
  font-size: 18px;
  font-weight: 700;
  margin: 0;
  padding: 0;
  line-height: normal;
}
.review_brand_wrap .top_of_category_item .top_of_category_item__reviews {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 8px;
}
.review_brand_wrap .top_of_category_item .review_list_item__reviews_score {
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}
.review_brand_wrap .top_of_category_item .top_of_category__reviews_info {
  display: flex;
  flex-direction: column;
  gap: 21px;
}
.review_brand_wrap .top_of_category_item .top_of_category_item_block_right {
  padding: 40px 40px 40px 0;
}
@media (max-width: 768px) {
  .review_brand_wrap .top_of_category_item .top_of_category_item_block_right {
    padding: 20px;
  }
}
.review_brand_wrap .top_of_category_item .top_of_category_item_title {
  margin: 0;
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 700;
  line-height: 100%;
}
.review_brand_wrap .top_of_category_item .top_of_category_item_title img {
  display: none;
}
@media (max-width: 768px) {
  .review_brand_wrap .top_of_category_item .top_of_category_item_title {
    font-size: 16px;
  }
  .review_brand_wrap .top_of_category_item .top_of_category_item_title img {
    width: 10px;
    height: 10px;
    display: block;
  }
}
.review_brand_wrap .top_of_category_item .top_of_category_item___why_picked {
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
}
@media (max-width: 768px) {
  .review_brand_wrap .top_of_category_item .top_of_category_item___why_picked {
    font-size: 12px;
    font-weight: 400;
    line-height: normal;
    display: none;
  }
}
.review_brand_wrap .top_of_category_item .top_of_category_item__cta {
  width: 100%;
  max-width: 176px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 34px;
  text-decoration: none;
}
@media (max-width: 768px) {
  .review_brand_wrap .top_of_category_item .top_of_category_item__cta {
    display: none;
  }
}
.review_brand_wrap .top_of_category_item .top_of_category_item__cta-mobile {
  display: none;
  width: 100%;
  max-width: 166px;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  padding: 10px 32px;
  text-decoration: none;
}
@media (max-width: 768px) {
  .review_brand_wrap .top_of_category_item .top_of_category_item__cta-mobile {
    display: flex;
  }
}
.review_brand_wrap .top_of_category_item .top_of_category__reviews_info .top_of_category_item__reviews_info_item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.review_brand_wrap .top_of_category_item .top_of_category__reviews_info .top_of_category_item__reviews_info_item .top_of_category_item__reviews_info_content.stocktrading h4 {
  color: #08157a;
}
.review_brand_wrap .top_of_category_item .top_of_category__reviews_info .top_of_category_item__reviews_info_item .top_of_category_item__reviews_info_content.goldinvestment h4 {
  color: #1E73BE;
}
.review_brand_wrap .top_of_category_item .top_of_category__reviews_info .top_of_category_item__reviews_info_item .top_of_category_item__reviews_info_content h4 {
  font-size: 16px;
  font-weight: 600;
  line-height: 24px;
  margin: 0;
}
.review_brand_wrap .top_of_category_item .top_of_category__reviews_info .top_of_category_item__reviews_info_item .top_of_category_item__reviews_info_content p {
  margin: 0;
  font-size: 16px;
  font-weight: 500;
  line-height: 24px;
}
.review_brand_wrap .top_of_category_item .top_of_category__reviews_info .top_of_category_item__reviews_info_item span.goldinvestment {
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
  color: #1E73BE;
}
.review_brand_wrap .top_of_category_item .top_of_category__reviews_info .top_of_category_item__reviews_info_item span.stocktrading {
  font-size: 24px;
  font-weight: 600;
  line-height: 36px;
  color: #08157a;
}

.content_promo_logo img {
  width: 100%;
  max-width: 191px;
}

.content_promo_wrap {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin: 24px 0;
  text-decoration: none;
  background-color: #f3ede0;
  border-radius: 16px;
}
@media (max-width: 768px) {
  .content_promo_wrap {
    flex-direction: column;
    gap: 8px;
    padding: 20px 0;
  }
}
.content_promo_wrap .content_promo_title {
  color: #242b46;
  font-size: 18px;
  font-weight: 700;
  line-height: 27px;
}
@media (max-width: 768px) {
  .content_promo_wrap .content_promo_title h4 {
    margin: 0;
  }
}
.content_promo_wrap .content_promo_cta {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 16px;
  border: none;
  line-height: 1;
  padding: 12px 47px;
  cursor: pointer;
}
@media (max-width: 768px) {
  .content_promo_wrap .content_promo_cta {
    font-size: 14px;
    padding: 10px 20px;
  }
}

.promotion-block {
  display: none;
}

.promotion-block.desktop-show {
  display: block;
}

@media (max-width: 768px) {
  .promotion-block.desktop-show {
    display: none;
  }
  .promotion-block.mobile-show {
    display: block;
  }
}
.faq-block-wrap h2 {
  font-size: 24px;
  font-weight: 700;
  line-height: 36px;
  text-align: center;
  text-transform: uppercase;
  margin: 40px 0 16px 0;
}
.faq-block-wrap .faq-block {
  background-color: #fafafa;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.faq-block-wrap .faq-block .faq-block__item {
  background: #fff;
  border-radius: 16px;
  padding: 20px 16px;
}
.faq-block-wrap .faq-block .faq-block__item .faq-block__item-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 21px;
}
.faq-block-wrap .faq-block .faq-block__item .faq-block__item-header h3 {
  margin: 0;
  padding: 0;
  font-size: 20px;
  font-weight: 700;
  line-height: 100%;
}
.faq-block-wrap .faq-block .faq-block__item .faq-block__item-header button {
  border: none;
  background-color: transparent;
  cursor: pointer;
}
.faq-block-wrap .faq-block .faq-block__item .faq-block__item-header button svg {
  width: 36px;
  height: 36px;
}
.faq-block-wrap .faq-block .faq-block__item .faq-block__item-content {
  font-size: 14px;
  font-weight: 400;
  line-height: 21px;
}
.faq-block-wrap .faq-block .faq-block__item .faq-block__item-content.toggle-content.hide {
  display: none;
}
.faq-block-wrap .faq-block .faq-block__item .faq-block__item-content.toggle-content.show {
  display: block;
}

.review_list_item__full_review,
.review_list_item__full_review_visit {
  font-size: 14px;
  font-weight: 500;
}

.review_list_item__why_picked_wrap {
  padding: 0 20px;
}

.review_list_promo_wrap {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  position: relative;
  margin: 0 0 7px;
  text-decoration: none;
  min-height: 165px;
  border-radius: 16px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.review_list_promo_wrap * {
  pointer-events: none;
}
.review_list_promo_wrap:hover {
  transform: scale(1.01);
}

.review_list_promo__middle.goldinvestment img {
  width: 100%;
  max-width: 231px;
  max-height: 72px;
}

.review_list_promo__middle.stocktrading img {
  width: 100%;
  max-width: 182px;
  max-height: 48px;
}

.review_list_promo__text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 40%;
  padding-left: 60px;
}
.review_list_promo__text .review_list_promo__title {
  font-size: 24px;
  font-weight: 600;
  white-space: normal;
}
.review_list_promo__text .review_list_promo__subtitle {
  font-size: 16px;
  font-weight: 400;
  line-height: 24px;
  white-space: normal;
  text-align: center;
}
.review_list_promo__text .review_list_promo__cta {
  color: #fff;
  white-space: nowrap;
}

.review_list_promo__title {
  font-size: 24px;
  font-weight: 600;
  white-space: nowrap;
  color: #242b46;
}

.review_list_promo__subtitle {
  font-size: 14px;
  margin: 10px 0;
  color: #242b46;
}

.review_list_promo__cta {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 14px;
  color: #fafafa;
  padding: 10px 44px;
  border: none;
  line-height: 1;
  background-color: #1E73BE;
}

.review_list_item__visit_link.goldinvestment {
  color: #1E73BE;
}

.review_list_item__visit_link.stocktrading {
  color: #08157A;
}

.review_list_item__visit_link {
  font-size: 14px;
  font-weight: 600;
  line-height: normal;
  margin: 0 auto;
  text-decoration: none;
}

.best_provider_wrap {
  margin-top: 17px;
  position: relative;
  background-color: #e8f3fb;
  padding: 24px 0;
}
@media (max-width: 768px) {
  .best_provider_wrap {
    margin-top: 7px;
    padding: 19px 0;
  }
}

.text_section h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: normal;
  margin: 12px 0;
}
.text_section p {
  font-size: 14px;
  line-height: normal;
  font-weight: 400;
  margin: 12px 0;
  padding: 0;
}
.text_section ul {
  margin: 0;
}
.text_section ul li {
  font-size: 14px;
  line-height: normal;
  font-weight: 400;
}

.rating_system_disclaimer {
  border-top: 1px solid #DEECFF;
  padding: 16px 0;
  text-align: center;
}
@media (min-width: 1201px) {
  .rating_system_disclaimer {
    display: none;
  }
}
@media (max-width: 425px) {
  .rating_system_disclaimer {
    display: none;
  }
}

.rating_system_disclaimer__title {
  font-size: 18px;
  margin: 0 0 14px;
}

.rating_system_disclaimer__text {
  font-size: 14px;
  margin: 0 0 14px;
}

#backToTopBtn {
  position: fixed;
  width: 56px;
  height: 56px;
  border-radius: 8px;
  cursor: pointer;
  bottom: 30%;
  right: 6%;
  z-index: 9;
  display: none;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 4px grey;
}

.cookie_block_btn {
  position: fixed;
  bottom: 30px;
  right: 30px;
  width: 48px;
  height: 48px;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  z-index: 9;
}

.cookie_popup {
  position: fixed;
  bottom: 96px;
  right: 20px;
  width: 281px;
  padding: 20px;
  border-radius: 12px;
  display: none;
  flex-direction: column;
  gap: 16px;
  align-items: flex-start;
  transition: all 0.3s ease;
  z-index: 9;
}
.cookie_popup.visible {
  display: flex;
  transform: translateY(0);
}
.cookie_popup .cookie_popup_title_wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}
.cookie_popup .cookie_popup_title_wrap .cookie_popup_title {
  font-size: 18px;
  font-weight: 700;
  line-height: 100%;
  margin: 0;
  width: 80%;
}
.cookie_popup .cookie_popup_title_wrap svg {
  width: 22px;
  height: 22px;
  cursor: pointer;
}
.cookie_popup p {
  margin: 0;
  font-size: 10px;
  font-weight: 500;
  line-height: 12px;
}
.cookie_popup .cookie_popup_accept_btn,
.cookie_popup .cookie_popup_customize_btn {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  flex-shrink: 0;
  max-width: 189px;
  width: 100%;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
  transition: box-shadow 0.3s ease-out;
  padding: 0 23px;
  white-space: nowrap;
  cursor: pointer;
  border: none;
}

@media (max-width: 991px) {
  .cookie_block_btn {
    display: none;
  }
}
.main_footer_wrap {
  margin: 100px 0 0;
  background-color: #242b46;
  color: #fff;
  padding: 44px 0;
}

.main_footer {
  display: grid;
  grid-template-columns: 1fr 2fr;
}

.footer_logo {
  display: block;
  width: 100%;
  max-width: 271px;
  margin: 0 0 43px;
}
.footer_logo img {
  display: block;
  width: 100%;
  pointer-events: none;
}

.footer_address {
  margin-bottom: 43px;
}
.footer_address-title {
  margin: 0;
  font-size: 14px;
  font-style: normal;
  font-weight: 700;
}
.footer_address-text {
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
}

.footer_copyright {
  margin: 0;
  font-size: 12px;
  font-weight: 500;
}

.footer_menu {
  padding: 0;
  margin: 0;
  margin-bottom: 24px;
  list-style-type: none;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}
.footer_menu li a {
  text-decoration: none;
  color: #fff;
  font-size: 16px;
  font-weight: 500;
}

.footer_disclosure__text {
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
}
.footer_disclosure__text span {
  font-weight: 700;
}

.special_deal_popup_wrap {
  z-index: 30;
  width: 286px;
  height: 475px;
  left: 24px;
  bottom: 15px;
  box-shadow: 0 4px 24px rgba(137, 153, 175, 0.75);
  border-radius: 16px;
  position: fixed;
  visibility: hidden;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.special_deal_popup_wrap.show {
  visibility: visible;
  opacity: 1;
}

.bottom_offer_popup_overlay {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  height: auto;
  width: 100%;
}
.bottom_offer_popup_overlay.show {
  display: block;
  z-index: 10;
}
.bottom_offer_popup_overlay .bottom_offer_popup_wrap {
  height: 100%;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
}
.bottom_offer_popup_overlay .bottom_offer_popup {
  width: 100%;
  position: relative;
  max-width: 980px;
  margin: 0 auto;
}
.bottom_offer_popup_overlay .bottom_offer_popup_close_btn {
  background-image: url(../images/cancel-icon.svg);
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  background-size: 14px;
  border: none;
  cursor: pointer;
  position: absolute;
  top: 14px;
  right: 10px;
  background-color: #fff;
  border-radius: 50%;
  padding: 14px;
  z-index: 9;
}
.bottom_offer_popup_overlay .offer_wrap {
  display: flex;
  align-items: stretch;
}
@media (max-width: 664px) {
  .bottom_offer_popup_overlay .offer_wrap {
    display: none;
  }
}
.bottom_offer_popup_overlay .bottom_offer_item {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  min-height: 135px;
  margin: 0 auto;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  border: none;
  box-shadow: 0px 0px 5px 0px grey;
  background-repeat: no-repeat;
  background-size: cover;
  background-position: center;
  padding: 0 100px;
  gap: 100px;
}
@media (max-width: 664px) {
  .bottom_offer_popup_overlay .bottom_offer_item {
    display: none;
  }
}
.bottom_offer_popup_overlay .bottom_offer_item_mobile {
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  width: 100%;
  min-height: 200px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  border: none;
  box-shadow: 0px 0px 5px 0px grey;
}
@media (min-width: 664px) {
  .bottom_offer_popup_overlay .bottom_offer_item_mobile {
    display: none;
  }
}
.bottom_offer_popup_overlay .bottom_offer_item__middle.goldinvestment {
  height: 100%;
  max-height: 70px;
  margin: auto 0;
  background-color: #fff;
  padding: 5px 24px;
  border-radius: 8px;
  display: flex;
  align-items: center;
}
.bottom_offer_popup_overlay .bottom_offer_item__middle.goldinvestment img {
  width: 100%;
  max-width: 110px;
}
@media (max-width: 664px) {
  .bottom_offer_popup_overlay .bottom_offer_item__middle.goldinvestment {
    display: none;
  }
}
.bottom_offer_popup_overlay .bottom_offer_item__middle.stocktrading {
  height: 100%;
  max-height: 48px;
  margin: auto 0;
}
.bottom_offer_popup_overlay .bottom_offer_item__middle.stocktrading img {
  width: 100%;
  max-width: 180px;
}
@media (max-width: 664px) {
  .bottom_offer_popup_overlay .bottom_offer_item__middle.stocktrading {
    display: none;
  }
}
.bottom_offer_popup_overlay .bottom_offer_item__middle_mobile {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
  height: 60%;
}
.bottom_offer_popup_overlay .bottom_offer_item__middle_mobile a img {
  width: 60%;
}
@media (min-width: 664px) {
  .bottom_offer_popup_overlay .bottom_offer_item__middle_mobile {
    display: none;
  }
}
.bottom_offer_popup_overlay .bottom_offer_item__middle-mobile {
  display: flex;
  align-items: center;
  justify-content: center;
}
.bottom_offer_popup_overlay .bottom_offer_item__content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.bottom_offer_popup_overlay .bottom_offer_item__content .bottom_offer_item__title {
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 9px;
  padding: 0 20px;
  text-align: center;
}
@media (max-width: 768px) {
  .bottom_offer_popup_overlay .bottom_offer_item__content {
    width: 80%;
  }
}
@media (max-width: 664px) {
  .bottom_offer_popup_overlay .bottom_offer_item__content {
    display: none;
  }
}
.bottom_offer_popup_overlay .bottom_offer_item__cta {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 44px;
  border: none;
  line-height: 1;
  text-decoration: none;
  white-space: nowrap;
}
.bottom_offer_popup_overlay .bottom_offer_item__content_mobile {
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  min-height: 100px;
  padding: 26px;
}
.bottom_offer_popup_overlay .bottom_offer_item__content_mobile .bottom_offer_item__title {
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 28px;
  text-align: center;
}
.bottom_offer_popup_overlay .bottom_offer_item__content_mobile .bottom_offer_item__cta {
  display: flex;
  justify-content: center;
  align-items: center;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 44px;
  border: none;
  line-height: 1;
  text-decoration: none;
  width: 100%;
  max-width: 176px;
  margin: 0 auto;
  white-space: nowrap;
}
@media (min-width: 664px) {
  .bottom_offer_popup_overlay .bottom_offer_item__content_mobile {
    display: none;
  }
}

.special_deal_popup {
  border-radius: 16px;
  background-color: #cbe9f3;
  position: relative;
  padding: 24px 0 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  height: 100%;
}

.special_deal_popup__close {
  width: 32px;
  height: 32px;
  background-color: #1e73be;
  border-radius: 50%;
  background-image: url(../images/cancel-icon2.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: 37.5%;
  top: -16px;
  right: -16px;
  position: absolute;
  cursor: pointer;
  border: none;
  padding: 0;
}

.special_deal_popup__logo {
  width: 180px;
  height: 88px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  margin: 0 0 24px;
}

.special_deal_popup__special_deal {
  text-align: center;
  font-weight: 700;
  text-decoration: none;
}
.special_deal_popup__special_deal h3 {
  font-size: 24px;
  color: #1e73be;
  margin: 0;
  text-transform: uppercase;
  line-height: 28px;
  pointer-events: none;
}
.special_deal_popup__special_deal p {
  font-size: 18px;
  line-height: 21px;
  margin: 0;
  color: #242b46;
  pointer-events: none;
}

.special_deal_popup__cta {
  background-color: #19c37d;
  width: 168px;
  height: 60px;
  border-radius: 50px;
  font-weight: 500;
  color: #ffffff;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: 24px auto 0;
  text-decoration: none;
  transition: transform 0.3s ease;
  position: relative;
  z-index: 2;
}
.special_deal_popup__cta:hover {
  transform: scale(1.03);
}

.special_deal_popup__bg {
  margin: auto 0 0;
  display: block;
  width: 100%;
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
}

.back_to_top {
  width: 56px;
  height: 56px;
  border: none;
  border-radius: 8px;
  background-color: #1e73be;
  right: 115px;
  position: fixed;
  cursor: pointer;
  bottom: -100%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 5;
  transition: bottom 0.3s ease;
  padding: 0;
}
.back_to_top.show {
  bottom: 88px;
}
.back_to_top img {
  display: block;
  height: 26px;
}

.service_popup_overlay {
  display: none;
  background: rgba(59, 63, 74, 0.9);
  position: fixed;
  top: 0;
  left: 0;
  height: 100vh;
  width: 100vw;
  z-index: 101;
  overflow-y: auto;
}
.service_popup_overlay.show {
  display: block;
}

.service_popup_wrap {
  display: flex;
  justify-content: center;
  align-items: center;
  max-width: 730px;
  width: 100%;
  height: 324px;
  min-height: 100vh;
  margin: 0 auto;
}

.service_popup {
  position: relative;
  background-color: #ffffff;
  min-height: 324px;
  min-width: 732px;
  border-radius: 8px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  padding: 32px 44px;
}
.service_popup .offers_wrap {
  display: flex;
  min-height: 490px;
  height: 100%;
}

.service_popup__close_btn {
  background-image: url(../images/cancel-icon.svg);
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  background-size: 14px;
  padding: 10px 20px 40px 30px;
  position: absolute;
  top: 10px;
  right: 10px;
  cursor: pointer;
}

.service_popup__services_wrap {
  padding: 0 20px 0 0;
  width: 50%;
}

.service_popup__services_logo img {
  width: 100%;
  max-width: 140px;
  height: 100%;
  max-height: 50px;
}

.service_popup__service_content {
  display: flex;
  flex-direction: column;
  gap: 8px;
  width: 100%;
  max-width: 300px;
  margin-top: 10px;
}
.service_popup__service_content .service_popup__service_title {
  font-size: 24px;
  font-weight: 600;
  line-height: normal;
  margin: 0;
}
.service_popup__service_content .service_popup__service_text {
  font-size: 14px;
  font-weight: 500;
  line-height: normal;
  margin: 0;
}
.service_popup__service_content .service_popup__service_visit_site {
  display: flex;
  width: 100%;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: 700;
  padding: 12px 34px;
  border-radius: 8px;
  text-decoration: none;
  margin: 4px 0;
  width: 100%;
  max-width: 176px;
}
.service_popup__service_content .service_popup__service__phone {
  border-radius: 8px;
  white-space: nowrap;
  display: flex;
  align-items: center;
  text-decoration: none;
  padding: 5px;
  width: 50%;
}
.service_popup__service_content .service_popup__service__phone img {
  display: block;
  width: 15px;
  height: 15px;
  flex-shrink: 0;
  margin: 0 10px 0 0;
}
.service_popup__service_content .service_popup__service__phone span {
  font-size: 14px;
  font-weight: 700;
}

.main_sidebar {
  width: 240px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.main_sidebar_block {
  box-shadow: 0 4px 24px 0 rgba(208, 212, 215, 0.25);
  padding: 8px 16px;
  border-radius: 8px;
  min-height: 90px;
  background: #FFF;
}
.main_sidebar_block img {
  width: 100%;
  border-radius: 4px;
}
.main_sidebar_block:first-child {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 25px 16px;
  border-radius: 8px;
}
.main_sidebar_block:nth-child(3) {
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  height: 436px;
  padding: 35px 27px 25px;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.main_sidebar_block:nth-child(3) a {
  height: 100%;
  text-decoration: none;
  border-radius: 4px;
}
.main_sidebar_block:nth-child(3) a .main_sidebar_block_wrap.goldinvestment .main_sidebar_block_wrap-image {
  background-color: #fff;
  padding: 6px 15px;
  width: 168px;
  border-radius: 4px;
}
.main_sidebar_block:nth-child(3) a .main_sidebar_block_wrap.goldinvestment .main_sidebar_block_wrap-image img {
  background-color: #fff;
}
.main_sidebar_block:nth-child(3) a .main_sidebar_block_wrap.stocktrading .main_sidebar_block_wrap-image {
  width: 138px;
}
.main_sidebar_block:nth-child(3) a .main_sidebar_block_wrap.stocktrading .main_sidebar_block_top {
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}
.main_sidebar_block:nth-child(3) a .main_sidebar_block_wrap {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  align-items: center;
}
.main_sidebar_block:nth-child(3) a .main_sidebar_block_wrap .main_sidebar_block_wrap-image img {
  width: 100%;
  max-width: 138px;
  max-height: 72px;
  height: 100%;
}
.main_sidebar_block:nth-child(3) a .main_sidebar_block_wrap .main_sidebar_text.goldinvestment {
  background: #1e73be;
}
.main_sidebar_block:nth-child(3) a .main_sidebar_block_wrap .main_sidebar_text.stocktrading {
  background: #08157A;
  text-align: center;
}
.main_sidebar_block:nth-child(3) a .main_sidebar_block_wrap .main_sidebar_text {
  padding: 4px 10px;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 6px;
  color: #fff;
  border-radius: 4px;
}
.main_sidebar_block:nth-child(3) a .main_sidebar_block_wrap .main_sidebar_btn.stocktrading {
  text-align: center;
  max-width: 147px;
  width: 100%;
  padding: 0;
}
.main_sidebar_block:nth-child(3) a .main_sidebar_block_wrap .main_sidebar_btn {
  padding: 4px 10px;
  font-size: 18px;
  font-weight: 700;
  text-align: left;
  border-radius: 4px;
  text-decoration: none;
  border: none;
  cursor: pointer;
}
.main_sidebar_block:nth-child(4) .main_sidebar_block_text {
  text-align: left;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  margin-bottom: 6px;
}
.main_sidebar_block:nth-child(4), .main_sidebar_block:nth-child(5) {
  text-align: center;
}
.main_sidebar_block:nth-child(4) .main_sidebar_title, .main_sidebar_block:nth-child(5) .main_sidebar_title {
  text-align: center;
  margin-top: 14px;
}

.main_sidebar_icon {
  width: 100%;
  max-width: 50px;
  height: 100%;
  max-height: 50px;
}

.block-image {
  padding: 0;
  width: 100%;
  max-width: 240px;
  max-height: 112px;
}

.main_sidebar_title.stocktrading {
  color: rgb(8, 21, 122);
}

.main_sidebar_title.goldinvestment {
  color: #1E73BE;
}

.main_sidebar_title {
  font-size: 18px;
  font-weight: 700;
  line-height: 27px;
}

.main_sidebar_block_text p {
  font-size: 12px;
  font-weight: 500;
  line-height: normal;
  color: #3B3F4A;
  margin: 4px 0;
  padding: 0;
}
.main_sidebar_block_text .text-color.goldinvestment {
  color: #1E73BE;
}
.main_sidebar_block_text .text-color.stocktrading {
  color: rgb(8, 21, 122);
}

.main_sidebar_block .divider.goldinvestment {
  border-bottom: 1px solid #1E73BE;
  margin: 6px auto;
  width: 144px;
}
.main_sidebar_block .divider.stocktrading {
  border-bottom: 1px solid rgb(8, 21, 122);
  margin: 6px auto;
  width: 144px;
}

.main_sidebar_item__text.stocktrading {
  color: rgb(8, 21, 122);
}

.main_sidebar_item__text.goldinvestment h3 {
  color: #1E73BE;
}

.main_sidebar_item__text {
  max-width: 162px;
  width: 100%;
}
.main_sidebar_item__text h3 {
  margin: 0;
  font-size: 21px;
  font-weight: 700;
}
.main_sidebar_item__text p {
  font-size: 12px;
  font-weight: 500;
}

.providers_proposal_item__special_deal--mobile {
  display: none;
}

@media (max-width: 1915px) {
  .special_deal_popup_wrap {
    display: none !important;
  }
}
@media (max-width: 1300px) {
  .main_sidebar {
    display: none;
  }
  .container__inner {
    max-width: unset;
  }
  .providers_proposal_wrap,
  .text_section {
    max-width: 977px;
    width: 100%;
  }
}
@media (max-width: 992px) {
  .service_popup_overlay,
  .service_popup_overlay.show {
    display: none !important;
  }
  .review_list_item__show_hide {
    display: none;
  }
  .main_header_wrap {
    height: 83px;
  }
  .review_list_item__visible_part.goldinvestment,
  .review_list_item__visible_part.stocktrading {
    padding: 10px 20px;
    grid-template-rows: none;
    grid-row-gap: 0;
  }
  .review_list_item__logo_wrap {
    margin-left: 20px;
    margin-top: 8px;
  }
  .review_list_item__visit {
    display: none;
  }
  .header_mobile_menu_btn {
    display: block;
    padding: 0;
    background: none;
    border: none;
    position: relative;
  }
  .header_mobile_menu_btn .icon-menu {
    width: 16px;
    height: 10px;
  }
  .header_mobile_menu_btn .icon-close {
    width: 24px;
    height: 24px;
    position: absolute;
    top: -4px;
    left: 0;
  }
  .main_header_menu_overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100vw;
    height: 100vh;
    z-index: 999;
    display: none;
    justify-content: flex-start;
    align-items: flex-start;
  }
  .main_header_menu_overlay.show {
    display: flex;
  }
  .header_menu.goldinvestment {
    top: 85px;
  }
  .header_menu.stocktrading {
    top: 40px;
  }
  .header_menu {
    position: relative;
    left: -100%;
    width: 80%;
    max-width: 300px;
    height: auto;
    background-color: #242b46;
    display: flex;
    flex-direction: column;
    flex-wrap: nowrap;
    z-index: 1000;
    transition: left 0.3s ease-in-out;
    transform: translateY(-1000px);
    padding: 0;
  }
  .header_menu.show {
    left: 0;
    transform: translateY(0);
    gap: 0;
    max-height: 80%;
    overflow-y: auto;
  }
  .header_menu_item,
  .header_menu_item_link {
    margin: 0;
    font-size: 16px;
    font-weight: 700;
    width: 100%;
    color: #fff;
    text-align: left;
  }
  .header_menu_item svg,
  .header_menu_item_link svg {
    width: 16px;
    height: 16px;
    stroke: #fff;
  }
  .header_menu_item .dropdown_content,
  .header_menu_item_link .dropdown_content {
    position: static;
    top: 0;
    grid-template-columns: none;
    border-radius: 0;
    width: 100%;
  }
  .header_menu_item .dropdown_content .dropdown_content-arrow,
  .header_menu_item_link .dropdown_content .dropdown_content-arrow {
    display: none;
  }
  .header_menu_item .desktop-only,
  .header_menu_item_link .desktop-only {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .header_menu_item .main_header_bar_menu_link,
  .header_menu_item_link .main_header_bar_menu_link {
    color: #fff;
  }
  .header_menu_item .main_header_bar_menu_link svg,
  .header_menu_item_link .main_header_bar_menu_link svg {
    stroke: #fff;
  }
  .padding-link-mobile {
    padding: 17px 35px 17px 23px;
  }
  .menu_close_btn_icon {
    padding: 15px;
    color: #fff;
  }
  .menu_close_btn {
    display: flex;
    justify-content: center;
    align-items: center;
    border: none;
    background: #2F334E;
    font-size: 18px;
    padding: 10px;
    color: #fff;
    font-weight: 500;
    width: 100%;
  }
  .notification_offer_popup_title_block {
    padding: 24px 0 16px 0;
  }
  .notification_offer_popup_title_block .notification_offer_popup_title_btn {
    width: 21px;
    height: 21px;
  }
  .notification_offer_popup_title_block .notification_offer_popup_title {
    font-size: 24px;
    font-weight: 600;
    line-height: 36px;
  }
}
@media (max-width: 864px) {
  .main_header_menu_notifications_btn {
    margin: 0 10px 0 0;
    width: 24px;
    height: 24px;
  }
}
.review_list_item__phone {
  min-height: 36px;
}
.review_list_item__phone img,
.review_list_item__phone svg {
  width: 25px;
}

.providers_proposal_wrap {
  margin: 20px 0;
}

.providers_proposal_list {
  flex-direction: column;
  align-items: center;
}

.providers_proposal_item_wrap {
  padding: 0;
  max-width: 375px;
  margin: 0 0 20px;
}
.providers_proposal_item_wrap:nth-child(1) {
  order: 1;
}
.providers_proposal_item_wrap:nth-child(2) {
  order: 2;
}
.providers_proposal_item_wrap:nth-child(3) {
  order: 3;
}

.providers_proposal_item__header {
  height: 150px;
}

.providers_proposal_item__logo img {
  max-height: unset;
  width: 70%;
  height: auto;
}

.providers_proposal_item__cta {
  margin: 0 0 8px;
}

.providers_proposal_item__special_deal_text {
  min-height: unset;
}

.main_footer_wrap .container {
  padding: 0 30px;
}

.advertising_disclosure_block_wrap {
  width: 100%;
  position: relative;
  background: #fff;
  border-bottom: 1px solid #d6d6d6;
}
.advertising_disclosure_block_wrap .advertising_disclosure_block {
  font-size: 12px;
  color: #242b46;
  letter-spacing: -0.5px;
  padding: 8px 20px;
  text-align: center;
}
@media (max-width: 768px) {
  .advertising_disclosure_block_wrap .advertising_disclosure_block {
    font-size: 10px;
    padding: 4px 10px;
  }
}
@media (max-width: 450px) {
  .advertising_disclosure_block_wrap .advertising_disclosure_block {
    text-align: justify;
  }
}
.advertising_disclosure_block_wrap .advertising_disclosure_block p {
  margin: 0;
  opacity: 0.6;
}
.advertising_disclosure_block_wrap .advertising_disclosure_block .tooltip {
  position: relative;
  display: inline-block;
  text-align: center;
  color: inherit;
}
.advertising_disclosure_block_wrap .advertising_disclosure_block .tooltip .tooltip-title {
  cursor: pointer;
  text-decoration: underline;
  color: inherit;
  opacity: 0.6;
}
.advertising_disclosure_block_wrap .advertising_disclosure_block .tooltip .tooltip-title.active {
  opacity: 1;
}
.advertising_disclosure_block_wrap .advertising_disclosure_block .tooltip .tooltip-text {
  display: none;
  width: 100%;
  max-width: 577px;
  padding: 21px 24px 16px;
  border: 1px solid rgba(214, 214, 214, 0.8);
  background-color: #fff;
  text-align: center;
  border-radius: 6px;
  position: fixed;
  top: 37px;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 3px 7px 0 #b8b6b6;
}
.advertising_disclosure_block_wrap .advertising_disclosure_block .tooltip .tooltip-text.show {
  display: block;
  z-index: 100;
}
@media (max-width: 864px) {
  .advertising_disclosure_block_wrap .advertising_disclosure_block .tooltip .tooltip-text {
    top: 55px;
  }
}
@media (max-width: 450px) {
  .advertising_disclosure_block_wrap .advertising_disclosure_block .tooltip .tooltip-text {
    top: 46px;
  }
}
.advertising_disclosure_block_wrap .advertising_disclosure_block .tooltip:hover .tooltip-title {
  text-decoration: none;
}

@media (max-width: 1024px) {
  .review_list_item__visible_part-goldinvestment .review_list_item__promotion_wrap::before,
  .review_list_item__visible_part-goldinvestment .review_list_item__promotion_wrap::after,
  .review_list_item__visible_part-stocktrading .review_list_item__promotion_wrap::before,
  .review_list_item__visible_part-stocktrading .review_list_item__promotion_wrap::after {
    display: none;
  }
  .review_list_promo__bg_placeholder {
    display: none;
  }
  .review_list_promo__subtitle {
    font-size: 14px;
  }
  .review_list_promo__subtitle {
    font-style: 18px;
  }
  .review_list_promo_wrap {
    min-height: unset;
    padding: 0;
    background-size: cover;
    background-position: left;
  }
  .review_list_promo__title {
    white-space: wrap;
    text-align: center;
  }
  .review_list_promo__text {
    padding: 20px;
  }
  .review_list_promo_wrap {
    width: 100%;
    min-height: unset;
    padding: 0;
    min-height: 88px;
    border-radius: 16px;
  }
  .review_list_promo__middle.stocktrading {
    background: transparent;
  }
  .review_list_promo__middle {
    width: 40%;
    clip-path: none;
    background: #fff;
    height: auto;
    right: 0;
    left: 4%;
    top: 28%;
    max-width: 180px;
    padding: 6px 12px;
    border-radius: 4px;
  }
  .review_list_promo__middle .review_list_promo__title {
    font-size: 14px;
    font-weight: 600;
    color: #1E73BE;
  }
  .review_list_promo__middle .review_list_promo__subtitle {
    font-size: 10px;
    font-weight: 400;
    margin: 4px 0;
  }
  .review_list_promo__middle .review_list_promo__cta {
    width: 136px;
    border-radius: 4px;
  }
  .review_list_promo__logo {
    flex-direction: column;
    margin-right: 20px;
  }
  .review_list_promo__logo img {
    max-height: unset;
    width: 100%;
    height: auto;
  }
}
@media (max-width: 864px) {
  .review_list_item__coupon_wrap {
    width: 100%;
    max-width: none;
  }
  .main_subtitle {
    font-size: 20px;
  }
  .last_updated_block img {
    width: 14px;
  }
  .last_updated_block p {
    font-size: 12px;
  }
  .review_list_item__promotion_wrap::before,
  .review_list_item__promotion_wrap::after {
    display: none;
  }
}
@media (max-width: 768px) {
  .main_subtitle_text,
  .providers_proposal_item__special_deal {
    display: none;
  }
  .main_header_wrap {
    height: 40px;
    top: 50px;
  }
  .main_header_menu_notifications_btn {
    margin: 0 10px 0 0;
    width: 24px;
    height: 24px;
  }
  .header_logo.goldinvestment {
    width: 212px;
  }
  .header_logo.stocktrading {
    width: 203px;
  }
  .header_logo.stocktrading img {
    height: 100%;
  }
  .main_title_block_wrap.stocktrading {
    min-height: 150px;
    padding: 13px 0;
  }
  .main_title_block_wrap.goldinvestment {
    padding: 16px 0;
    min-height: 168px;
  }
  .page_title.stocktrading,
  .page_title.goldinvestment {
    font-size: 21px;
    font-weight: 600;
    line-height: 32px;
    width: 80%;
  }
  .page_title.stocktrading span,
  .page_title.goldinvestment span {
    font-size: 12px;
    font-weight: 700;
    line-height: 18px;
  }
  .title-info-wrapper {
    margin-top: 0;
  }
  .title-info-wrapper .main_advantages_block .advantage_item span {
    font-size: 10px;
    font-weight: 600;
    line-height: 100%;
  }
  .last_updated_block img {
    width: 14px;
  }
  .last_updated_block p {
    font-size: 12px;
  }
  .page_subtitle,
  .last_updated_block {
    display: none;
  }
  .main_title_block {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin: 0;
  }
  h1 {
    font-size: 18px;
    margin: 0;
  }
  .content_wrap-mobile {
    padding: 0;
    margin: 40px 0 0;
  }
  .content_wrap .container {
    padding: 0;
  }
  .text_section {
    padding: 0 16px;
  }
  .top_of_category_item__reviews_info_content {
    width: 75%;
  }
  .top_of_category__reviews_info {
    margin-right: 20px;
  }
  .review_brand_wrap .review_brand_title {
    padding: 0 16px;
  }
  .review_list_item__visible_part-goldinvestment,
  .review_list_item__visible_part-stocktrading {
    padding: 10px 10px 11px 20px;
  }
  .review_list_item__ribbon {
    font-size: 11px;
    height: 19px;
    left: -1px;
    top: -1px;
  }
  .review_list_item__ribbon::after {
    height: 19px;
    width: 17px;
    right: -17px;
  }
  .review_list_item__promotion_wrap {
    max-width: 286px;
    padding: 0;
    display: flex;
    align-items: center;
    border: none;
  }
  .review_list_item__advantages {
    display: none;
  }
  .review_list_item__info_wrap {
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  .review_list_item__rates_wrap {
    display: flex;
    justify-items: center;
    position: relative;
    gap: 8px;
    align-items: center;
  }
  .review_list_item,
  .best_provider_wrap_bg {
    min-height: 151px;
  }
  .review_list_item__rates_stars {
    grid-area: 2/1/2/1;
  }
  .review_list_item__rates_stars img {
    width: 12px;
  }
  .review_list_item__rates_score {
    width: 50px;
    grid-area: 1/1/1/1;
    padding: 4px 15px;
    border-radius: 4px;
    background-color: #1e73be;
    font-size: 18px;
    color: #ffffff;
  }
  .review_list_item__block {
    align-items: center;
  }
  .review_list_item__rates_word {
    grid-area: 3/1/3/1;
    font-size: 12px;
    margin: 0;
  }
  .review_list_item__visit_site {
    font-size: 12px;
    padding: 8px 10px;
    min-width: 170px;
  }
  .review_list_item__phone {
    min-height: 29px;
    padding: 1px 3px;
    width: 100%;
  }
  .review_list_item__phone span {
    font-size: 11px;
    font-weight: 400;
  }
  .providers_proposal_title {
    font-size: 19px;
    margin: 0 0 20px;
  }
  .providers_proposal_item_wrap {
    max-width: 513px;
    margin: 0 0 8px;
  }
  .providers_proposal_item {
    display: flex;
    border: 1px solid #cceaf3;
    box-shadow: none;
  }
  .providers_proposal_item__header {
    height: auto;
    width: 50%;
    background-color: transparent;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 19px 20px;
  }
  .providers_proposal_item__logo {
    width: 113px;
    height: auto;
  }
  .providers_proposal_item__logo img {
    width: 100%;
  }
  .providers_proposal_item__special_deal--mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    text-transform: uppercase;
  }
  .providers_proposal_item__special_deal--mobile h4 {
    margin: 0 0 10px;
    font-weight: 700;
    color: #1e73be;
    line-height: 1.81;
  }
  .providers_proposal_item__special_deal--mobile p {
    margin: 0;
    color: #242b46;
    text-align: center;
    font-size: 12px;
  }
  .providers_proposal_item__body {
    width: 50%;
    padding: 19px 20px;
    background-color: #ffffff;
    justify-content: center;
  }
  .providers_proposal_item__score {
    border: none;
    background-color: #1e73be;
    color: #ffffff;
    font-size: 14px;
    max-width: 51px;
    padding: 4px 14px;
    border-radius: 4px;
    margin: 0 0 4px;
  }
  .providers_proposal_item__rates_stars {
    margin: 0;
  }
  .providers_proposal_item__rates_stars img {
    width: 12px;
  }
  .providers_proposal_item__cta {
    max-width: 136px;
    font-size: 12px;
    padding: 8px 0;
    margin: 5px 0 0;
  }
  .section_title_with_border {
    padding: 24px 0;
  }
  .faq_section_title {
    font-size: 19px;
    text-align: center;
    margin: 0 0 15px;
  }
  .main_footer_wrap {
    margin: 40px 0 0;
    position: relative;
  }
  .back_to_top {
    width: 40px;
    height: 40px;
    bottom: 50px;
    right: 50px;
  }
  .back_to_top img {
    height: 20px;
  }
  .footer_disclosure__title {
    margin: 20px 0 25px;
  }
  .review_list_promo__text {
    width: 50%;
  }
  .review_list_promo__logo {
    flex-direction: column;
    margin-right: 20px;
  }
  .review_list_promo__logo img {
    max-height: unset;
    width: 100%;
    height: auto;
  }
  .section_title_with_border {
    margin: 0;
    padding: 12px 0;
    font-size: 16px;
  }
  .main_footer {
    display: flex;
    flex-direction: column;
  }
  .main_footer .footer_logo {
    margin: 0 0 24px;
    max-width: 203px;
  }
  .main_footer .footer_address {
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 24px;
  }
  .main_footer .review_list_item__coupon_wrap {
    width: 240px;
  }
  .main_footer .review_list_item__coupon_wrap span svg {
    width: 26px;
    height: 21px;
  }
  .main_footer .footer_copyright {
    display: block;
    position: absolute;
    bottom: 12px;
  }
  .main_footer .footer_menu {
    display: flex;
    flex-direction: column;
  }
  .main_footer .footer_menu li a {
    font-size: 14px;
    font-weight: 500;
  }
  .main_footer .footer_disclosure__text {
    font-style: 12px;
  }
  .main_footer .review_list_item__coupon_wrap:before {
    top: 24%;
    right: -27%;
  }
  #backToTopBtn {
    width: 40px;
    height: 40px;
  }
  .review_list_item__visit_link {
    display: none;
  }
  .bottom_offer_popup_overlay .bottom_offer_logo_wrap {
    max-width: 191px;
    min-height: 92px;
    width: 100%;
    margin: 0 auto;
  }
  .bottom_offer_popup_overlay .bottom_offer_content_wrap {
    background-position: bottom;
    clip-path: none;
  }
  .bottom_offer_popup_overlay .bottom_offer_popup_close_btn {
    background-image: url("../images/cancel-icon.svg");
    top: 7px;
    right: 7px;
    padding: 12px;
  }
  .bottom_offer_popup_overlay .bottom_offer_content_wrap {
    display: flex;
    flex-direction: column;
  }
  .bottom_offer_popup_overlay .bottom_offer_content_wrap .bottom_offer_content {
    margin-bottom: 12px;
  }
  .bottom_offer_popup_overlay .bottom_offer_content a {
    font-size: 18px;
    font-weight: 600;
  }
  .bottom_offer_popup_overlay .bottom_offer_get_bonus {
    padding: 10px;
  }
}
@media (max-width: 640px) {
  .notification_offer_popup_body_block.stocktrading .notification_offer_logo {
    max-width: 145px;
    max-height: 76px;
  }
  .notification_offer_popup_body_block.stocktrading .notification_offer_logo_wrap {
    padding: 10px 60px;
  }
  .notification_offer_popup_body_block.stocktrading .notification_offer_content_wrap.stocktrading {
    padding: 18px 13px;
  }
  .notification_offer_popup_body_block.stocktrading .notification_offer_content_wrap .notification_offer_coupon_text.stocktrading {
    font-size: 16px;
  }
  .review_list_item__visit_site {
    margin-top: 0;
    min-width: 145px;
    max-width: 145px;
  }
  .review_list_item__visible_part-goldinvestment.stocktrading {
    padding: 21px 13px 20px;
    gap: 18px 36px;
    align-items: center;
    grid-template-rows: 1fr 32px;
  }
  .review_list_item__visible_part-goldinvestment {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr minmax(58px, min-content);
    padding: 8px 10px 8px 6px;
    gap: 12px 36px;
    min-height: auto;
    align-items: end;
    justify-items: center;
  }
  .review_list_item__visible_part-goldinvestment .review_list_item__logo_wrap {
    min-width: 145px;
    max-width: 145px;
    max-height: 56px;
    margin-top: 0;
    justify-content: flex-end;
    margin: 0;
    margin-left: auto;
  }
  .review_list_item__visible_part-goldinvestment .review_list_item__logo {
    width: 100%;
    max-height: 56px;
    max-width: 125px;
    margin-top: 10px;
  }
  .review_list_item__visible_part-goldinvestment .review_list_item__promotion_wrap {
    padding: 0;
    align-items: center;
    height: auto;
  }
  .review_list_item__visible_part-goldinvestment .review_list_item__info_wrap {
    display: grid;
    grid-template-columns: 145px 145px;
    gap: 0;
    justify-items: center;
    justify-content: normal;
    grid-column: 1/span 2;
    gap: 36px;
    align-items: center;
    height: 100%;
  }
  .review_list_item__visible_part-goldinvestment .review_list_item__rates_wrap {
    position: relative;
    top: 0;
    right: 0;
    gap: 8px;
    margin: 0;
  }
  .review_list_item__visible_part-goldinvestment .review_list_item__rates_score {
    padding: 4px 8px;
    font-size: 16px;
    width: 46px;
    height: 30px;
  }
  .review_list_item__visible_part-goldinvestment .review_list_item__block {
    flex-direction: column;
    gap: 0;
    align-items: start;
  }
  .review_list_item__visible_part-goldinvestment .review_list_item__rates_word {
    font-size: 14px;
    font-weight: 500;
    line-height: 14px;
    white-space: nowrap;
  }
  .review_list_item__visible_part-goldinvestment .review_list_item__coupon_wrap {
    width: 96%;
    padding: 4px;
    margin: 0;
    min-height: 48px;
    width: 145px;
  }
  .review_list_item__visible_part-goldinvestment .review_list_item__coupon_wrap span svg {
    width: 26px;
    height: 21px;
  }
  .review_list_item__visible_part-goldinvestment .review_list_item__coupon.goldinvestment p {
    font-size: 8px;
    font-weight: 600;
  }
  .review_list_item__visible_part-goldinvestment .review_list_item__coupon.stocktrading p {
    font-size: 7px;
    font-weight: 600;
  }
  .review_list_item__visible_part-goldinvestment .review_list_item__coupon {
    padding: 5px;
    min-height: 50px;
    height: 100%;
  }
  .review_list_item__visible_part-goldinvestment .review_list_item__coupon img {
    width: 24px;
    height: 24px;
  }
  .review_list_item__visible_part-stocktrading {
    display: none;
  }
  .review_list_item__visible_mobile_part-stocktrading {
    display: flex;
    padding: 20px 13px 15px;
    min-height: auto;
    justify-content: space-around;
  }
  .review_list_item__visible_mobile_part-stocktrading .review_list_item__visible_mobile_part_wrap-first {
    max-width: 140px;
  }
  .review_list_item__visible_mobile_part-stocktrading .review_list_item__logo_wrap {
    min-width: 132px;
    max-width: 132px;
    margin: 0;
  }
  .review_list_item__visible_mobile_part-stocktrading .review_list_item__logo {
    width: 80%;
    max-height: 40px;
    margin-bottom: 10px;
  }
  .review_list_item__visible_mobile_part-stocktrading .review_list_item__advantages {
    display: block;
    margin: 0;
  }
  .review_list_item__visible_mobile_part-stocktrading .review_list_item__advantages li {
    align-items: flex-start;
  }
  .review_list_item__visible_mobile_part-stocktrading .review_list_item__advantages li:nth-child(n+3) {
    display: none;
  }
  .review_list_item__visible_mobile_part-stocktrading .review_list_item__advantages li svg {
    width: 8px;
    height: 8px;
    margin: 5px 7px 0 0;
  }
  .review_list_item__visible_mobile_part-stocktrading .review_list_item__advantages li span {
    font-size: 10px;
  }
  .review_list_item__visible_mobile_part-stocktrading .review_list_item__visible_mobile_part_wrap-second {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 13px;
    max-width: 157px;
  }
  .review_list_item__visible_mobile_part-stocktrading .review_list_item__rates_score {
    padding: 4px 8px;
    font-size: 16px;
    width: 46px;
    height: 30px;
  }
  .review_list_item__visible_mobile_part-stocktrading .review_list_item__block {
    gap: 0;
    align-items: flex-start;
  }
  .review_list_item__visible_mobile_part-stocktrading .review_list_item__rates_word {
    font-size: 12px;
    font-weight: 500;
  }
  .review_list_item__visible_mobile_part-stocktrading .review_list_item__coupon_wrap span {
    right: 10px;
  }
  .review_list_item__visible_mobile_part-stocktrading .review_list_item__coupon {
    padding: 5px;
    min-height: 50px;
    height: 100%;
  }
  .review_list_item__visible_mobile_part-stocktrading .review_list_item__coupon p {
    font-size: 8px;
    font-weight: 600;
  }
  .review_list_item__visible_mobile_part-stocktrading .review_list_item__coupon img {
    width: 21px;
    height: 20px;
  }
  .review_list_item__stub.goldinvestment {
    display: flex;
    padding: 6px 13px;
    justify-content: space-between;
    align-items: center;
    gap: 45px;
    text-align: center;
    background-color: #f3ede0;
    border-top: 1px solid #1e73be;
    border-radius: 0 0 4px 4px;
  }
  .review_list_item__stub.goldinvestment p {
    font-size: 10px;
    font-weight: 400;
    line-height: 15px;
    margin: 0;
    padding: 0;
    width: 60%;
    text-align: left;
  }
  .review_list_item__stub__visit_site.goldinvestment {
    color: #1E73BE;
  }
  .review_list_item__stub__visit_site.stocktrading {
    color: #08157A;
  }
  .review_list_item__stub__visit_site {
    font-size: 12px;
    font-style: normal;
    font-weight: 500;
    line-height: normal;
  }
  .review_list_item__stub-highlight {
    border-top: 1px solid #d0b26e !important;
  }
  .highlight {
    border: 1px solid #d0b26e;
  }
  .review_list_item__stub.stocktraiding {
    display: none;
  }
  .promotion-block .review_list_promo__middle.goldinvestment {
    width: 100%;
    max-width: 104px;
    height: 44px;
    display: flex;
    padding: 0 9px;
    align-items: center;
  }
  .promotion-block .review_list_promo__middle.goldinvestment img {
    max-width: 86px;
    max-height: 44px;
    height: auto;
  }
  .promotion-block .review_list_promo__middle.stocktrading {
    background: transparent;
    padding: 0;
    margin-right: 30px;
    max-width: 80px;
  }
  .promotion-block .review_list_promo__middle.stocktrading img {
    max-width: 80px;
    max-height: 21px;
  }
  .promotion-block .review_list_promo__text {
    gap: 4px;
  }
  .promotion-block .review_list_promo__text .review_list_promo__title {
    font-size: 12px;
    line-height: 18px;
  }
  .promotion-block .review_list_promo__text .review_list_promo__cta {
    font-size: 12px;
    padding: 6px 40px;
    max-width: 145px;
    width: 100%;
  }
  .promotion-block .review_list_promo__subtitle {
    display: none;
  }
  .section_title_with_border {
    font-size: 16px;
    font-weight: 600;
    line-height: 24px;
    margin: 0;
    padding: 0 0 8px 0;
  }
  .content_wrap.stocktrading .container {
    padding: 0;
  }
  .content_wrap.stocktrading .review_brand_wrap .review_brand_title {
    padding: 0 16px;
  }
  .content_wrap.stocktrading .text_section {
    padding: 0 16px;
  }
  .content_wrap.stocktrading .text_section p,
  .content_wrap.stocktrading .text_section ul li {
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
  }
  .faq-block-wrap h2 {
    font-size: 24px;
    text-transform: capitalize;
  }
  .faq-block-wrap .faq-block .faq-block__item .faq-block__item-header h3 {
    font-size: 18px;
    line-height: 27px;
  }
  .faq-block-wrap .faq-block .faq-block__item .faq-block__item-content {
    font-size: 12px;
    font-weight: 400;
    line-height: 18px;
  }
}
@media (max-width: 600px) {
  .promotion-block .review_list_promo__subtitle {
    font-size: 14px;
  }
  .promotion-block .review_list_promo__subtitle {
    font-style: 18px;
  }
  .promotion-block .review_list_promo_wrap {
    min-height: unset;
    padding: 0;
    background-size: cover;
    background-position: left;
    min-height: 90px;
    justify-content: center;
  }
  .promotion-block .review_list_promo_wrap.stocktrading {
    flex-direction: column;
    align-items: end;
    padding: 7px 20px 8px 0;
  }
  .promotion-block .review_list_promo__title {
    white-space: wrap;
    text-align: center;
  }
  .promotion-block .review_list_promo__text.goldinvestment {
    padding: 20px;
  }
  .promotion-block .review_list_promo__text.stocktrading {
    padding: 0;
    width: auto;
    max-width: 145px;
  }
  .review_list_item__visible_part-goldinvestment .review_list_item__coupon_wrap::before {
    top: 24%;
    right: -10%;
  }
  .review_list_item__visible_part-goldinvestment .review_list_item__coupon_wrap span {
    right: 10px;
    bottom: -14px;
  }
  .review_list_item__visible_mobile_part-stocktrading .review_list_item__coupon_wrap::before {
    top: 24%;
    right: -10%;
  }
  .review_list_item__visible_mobile_part-stocktrading .review_list_item__coupon_wrap span {
    right: 10px;
  }
  .review_brand_wrap {
    margin: 0;
  }
}
@media (max-width: 436px) {
  .review_list_item__buttons,
  .review_btn_block {
    display: flex;
    flex-direction: column;
    gap: 4px;
  }
}
@media (max-width: 400px) {
  .review_list_item__visible_part-goldinvestment.stocktrading {
    gap: 18px 26px;
  }
  .review_list_item__visible_part-goldinvestment {
    gap: 12px 26px;
  }
  .review_list_item__visible_part-goldinvestment .review_list_item__info_wrap {
    gap: 27px;
  }
  .review_list_item__visible_mobile_part-stocktrading {
    gap: 12px 0;
  }
}
@media (max-width: 380px) {
  .review_list_item__visible_part-goldinvestment.stocktrading .review_list_item__logo_wrap {
    margin-left: 0;
    align-items: center;
    max-width: 125px;
    min-width: 125px;
  }
  .review_list_item__visible_part-goldinvestment.stocktrading .review_list_item__info_wrap {
    gap: 13px;
  }
  .review_list_item__visible_part-goldinvestment .review_list_item__visible_part {
    justify-items: center;
  }
  .review_list_item__visible_part-goldinvestment .review_list_item__logo_wrap {
    margin-left: 0;
    align-items: center;
  }
  .review_list_item__visible_part-goldinvestment .review_list_item__rates_wrap {
    margin: 0 auto;
  }
  .review_list_item__visible_part-goldinvestment .review_list_item__coupon_wrap::before {
    top: 23%;
    right: -4%;
  }
  .review_list_item__visible_part-goldinvestment .review_list_item__info_wrap {
    gap: 26px;
  }
  .review_list_item__visible_mobile_part-stocktrading .review_list_item__visit_site {
    max-width: 145px;
  }
  .review_list_item__visible_mobile_part-stocktrading .review_list_item__logo_wrap {
    margin-left: 0;
    min-width: 130px;
    max-width: 130px;
    align-items: center;
  }
  .review_list_item__visible_mobile_part-stocktrading .review_list_item__rates_score {
    width: 46px;
  }
  .review_list_item__visible_mobile_part-stocktrading .review_list_item__coupon_wrap::before {
    top: 23%;
    right: -4%;
  }
}
@media (max-width: 375px) {
  .review_list_item__visible_part-goldinvestment.stocktrading {
    gap: 18px 6px;
  }
  .review_list_item__visible_part-goldinvestment.stocktrading .review_list_item__info_wrap {
    gap: 6px;
  }
  .review_list_item__visible_part-goldinvestment {
    gap: 12px 6px;
  }
  .review_list_item__visible_part-goldinvestment .review_list_item__info_wrap {
    gap: 6px;
  }
}
@media (max-width: 360px) {
  .review_list_item__visible_part-goldinvestment.stocktrading .review_list_item__info_wrap {
    gap: 0px;
  }
  .review_list_item__visible_part-goldinvestment {
    min-height: 154px;
  }
  .review_list_item__visible_mobile_part-stocktrading {
    min-height: 200px;
    gap: 0;
  }
  .review_list_item__visible_mobile_part-stocktrading .review_list_item__buttons {
    margin-left: 0;
  }
}
@media (max-width: 340px) {
  .review_list_item__visible_part-goldinvestment .review_list_item__coupon_wrap {
    padding: 10px;
  }
  .review_list_item__visible_part-goldinvestment .review_list_item__rates_wrap {
    top: 16px;
    gap: 6px;
  }
  .review_list_item__visible_part-goldinvestment .review_list_item__block {
    align-items: center;
  }
  .review_list_item__visible_part-goldinvestment .review_list_item__phone {
    min-height: 29px;
  }
  .review_list_item__visible_part-goldinvestment .review_list_item__logo {
    height: 48px;
  }
  .review_list_item__visible_part-goldinvestment .review_list_item__coupon_wrap::before {
    top: 8%;
    right: 1%;
  }
  .review_list_item__visible_part-goldinvestment .review_list_item__coupon {
    min-height: 40px;
  }
  .review_list_item__visible_part-goldinvestment .review_list_item__coupon img {
    display: none;
  }
  .review_list_item__visible_part-goldinvestment .review_list_item__logo {
    height: 38px;
  }
  .review_list_item__visible_part-goldinvestment .review_list_item__phone img,
  .review_list_item__visible_part-goldinvestment .review_list_item__phone svg {
    width: 10px;
  }
  .review_list_item__visible_part-goldinvestment .review_list_item__phone span {
    font-size: 10px;
  }
  .review_list_item__visible_part-goldinvestment .review_list_item__rates_wrap {
    top: 4px;
    gap: 0;
  }
  .review_list_item__visible_part-goldinvestment .review_list_item__visit_site {
    min-width: 120px;
  }
  .review_list_item__visible_mobile_part-stocktrading .review_list_item__coupon_wrap {
    padding: 10px;
  }
  .review_list_item__visible_mobile_part-stocktrading .review_list_item__rates_wrap {
    top: 16px;
    gap: 6px;
  }
  .review_list_item__visible_mobile_part-stocktrading .review_list_item__block {
    align-items: center;
  }
  .review_list_item__visible_mobile_part-stocktrading .review_list_item__logo {
    height: 48px;
  }
  .review_list_item__visible_mobile_part-stocktrading .review_list_item__coupon_wrap::before {
    top: 8%;
    right: 1%;
  }
  .review_list_item__visible_mobile_part-stocktrading .review_list_item__coupon {
    min-height: 40px;
  }
  .review_list_item__visible_mobile_part-stocktrading .review_list_item__coupon img {
    display: none;
  }
  .review_list_item__visible_mobile_part-stocktrading .review_list_item__logo {
    height: 38px;
  }
  .review_list_item__visible_mobile_part-stocktrading .review_list_item__info_wrap {
    min-width: 112px;
  }
  .review_list_item__visible_mobile_part-stocktrading .review_list_item__rates_wrap {
    top: 4px;
    gap: 0;
  }
  .review_list_item__visible_mobile_part-stocktrading .review_list_item__visit_site {
    min-width: 120px;
  }
  .review_list_promo__cta {
    font-weight: 600;
    font-size: 12px;
    padding: 10px 28px;
  }
}

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