@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
body {
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
  background: #2e0d35;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.sm-show {
  display: none;
}

.sys-container {
  width: 1200px;
  padding: 0 15px;
  max-width: 100%;
  margin: auto;
}

.header-sticky {
  position: fixed;
  right: 0;
  width: 100%;
  height: -moz-max-content;
  height: max-content;
  top: 0;
  left: 0;
  overflow: hidden;
  z-index: 9999;
}

.invest-header-holder .flex-of-menu {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.invest-header-holder .flex-of-menu .logo-and-menu .logo-holder a {
  display: flex;
  align-items: center;
  width: 115px;
}
.invest-header-holder .flex-of-menu .logo-and-menu .logo-holder a img {
  width: 100%;
}
.invest-header-holder .flex-of-menu .main-menu-holder {
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.invest-header-holder .flex-of-menu .main-menu-holder .menu-holder-sec ul {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: center;
}
.invest-header-holder .flex-of-menu .main-menu-holder .menu-holder-sec ul li {
  margin: 0 5px;
}
.invest-header-holder .flex-of-menu .main-menu-holder .menu-holder-sec ul li a {
  color: #fff;
  letter-spacing: 0.25px;
  margin-left: 5px;
  margin-right: 5px;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: 500;
  line-height: 20px;
  text-decoration: none;
}
.invest-header-holder .flex-of-menu .main-menu-holder .action-holder {
  margin-left: 10px;
}
.invest-header-holder .flex-of-menu .main-menu-holder .action-holder .btn-holder a {
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #1a1b1f;
  background-image: radial-gradient(circle at 100% 100%, #fe414d, #70397c);
  border-radius: 5px;
  margin-left: 10px;
  padding: 12px 25px;
  font-family: Poppins, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 20px;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(214, 70, 205, 0.44);
}

.invest-form {
  border-radius: 10px;
  background: var(--Shade-White, #FFF);
  padding: 16px;
}

.invest-form .main-form-holder .top-holder {
  border-radius: 10px;
  background: var(--Shade-Real-White, #FFF);
  box-shadow: 0px 1px 47px 2px rgba(0, 0, 0, 0.08);
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 10px;
  padding-left: 10px;
  margin-bottom: 12px;
}

.invest-form .main-form-holder .top-holder .icon {
  display: flex;
  align-items: center;
  margin-right: 10px;
}

.invest-form .main-form-holder .top-holder p {
  color: #474747;
  margin-bottom: 0;
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
}

.invest-form .main-form-holder .top-holder button {
  background: unset;
  border: unset;
  color: var(--Primary-Primary, #CD9036);
  font-size: 14px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
  /* 150% */
  text-decoration-line: underline;
  display: flex;
  align-items: center;
  justify-content: center;
}

.invest-form .main-form-holder .top-holder button span {
  white-space: nowrap;
}

.invest-form .main-form-holder .top-holder button span:last-child {
  display: flex;
  align-items: center;
  margin-left: 15px;
}

.invest-form .main-form-holder .top-holder .close {
  display: flex;
  align-items: center;
}

.invest-form .main-form-holder .form-self-holder .each-tab-holder {
  border-radius: 10px;
  transition: all 300ms ease-out;
  background: #F8F8F8;
  margin-bottom: 14px;
}

.invest-form .main-form-holder .form-self-holder .each-tab-holder:last-child {
  margin-bottom: 0;
}

.invest-form .main-form-holder .form-self-holder .each-tab-holder .tab-title {
  color: var(--Shade-Real-Black, #000);
  font-size: 20px;
  font-style: normal;
  font-weight: 700;
  line-height: 33.6px;
  /* 140% */
  padding: 18px;
  width: 100%;
  background: unset;
  border: unset;
  text-align: left;
  transition: all 300ms ease-out;
}

.invest-form .main-form-holder .form-self-holder .each-tab-holder .tab-content {
  max-height: 0;
  overflow: hidden;
  transition: all 300ms ease-out;
  width: 100%;
}

.invest-form .main-form-holder .form-self-holder .each-tab-holder .tab-content .each-form-group {
  width: 100%;
  padding: 0 18px;
  margin-bottom: 12px;
  position: relative;
}

.invest-form .main-form-holder .form-self-holder .each-tab-holder .tab-content .each-form-group span.error {
  opacity: 0;
  z-index: 2;
  position: absolute;
  right: 28px;
  background: #e1be65;
  color: #000;
  font-size: 11px;
  padding: 3px 7px;
  display: block;
  border-radius: 5px;
  top: 42px;
  pointer-events: none;
  transition: all 300ms ease-out;
}

.invest-form .main-form-holder .form-self-holder .each-tab-holder .tab-content .each-form-group span.error.active {
  opacity: 1;
}

.invest-form .main-form-holder .form-self-holder .each-tab-holder .tab-content .each-form-group:last-child {
  margin-bottom: 0;
}

.invest-form .main-form-holder .form-self-holder .each-tab-holder .tab-content .each-form-group label {
  color: var(--Shade-Real-Black, #000);
  font-size: 14px;
  margin-bottom: 4px;
  display: block;
  width: 100%;
  text-align: left;
  font-style: normal;
  font-weight: 400;
  line-height: 21px;
  /* 150% */
}

.invest-form .main-form-holder .form-self-holder .each-tab-holder .tab-content .each-form-group input,
.invest-form .main-form-holder .form-self-holder .each-tab-holder .tab-content .each-form-group select {
  border-radius: 16px;
  border: 1px solid var(--Grayscale-Silver-Trans-50, rgba(103, 103, 103, 0.5));
  background: var(--Shade-Real-White, #FFF);
  padding: 15px;
  height: 55px;
  width: 100%;
}

.invest-form .main-form-holder .form-self-holder .each-tab-holder .tab-content .each-form-group .iti {
  width: 100%;
}

.invest-form .main-form-holder .form-self-holder .each-tab-holder .tab-content .each-form-group .iti input {
  padding-left: 65px;
}

.invest-form .main-form-holder .form-self-holder .each-tab-holder .tab-content .each-form-group .iti__flag-container {
  border-right: 1px solid #b3b3b3;
  z-index: 1;
  padding-left: 9px;
}

.invest-form .main-form-holder .form-self-holder .each-tab-holder .tab-content .btn-next {
  margin: 0 18px;
  width: calc(100% - 36px);
  padding: 14px 24px;
  border-radius: 5px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #ffffff;
  text-align: center;
  background-image: radial-gradient(circle at 100% 100%, #fe414d, #70397c);
  box-shadow: 0 4px 20px rgba(214, 70, 205, 0.44);
  font-size: 15px;
  font-style: normal;
  font-weight: 700;
  line-height: 125%;
  /* 20px */
  margin-bottom: 18px;
  cursor: pointer;
  transition: all 300ms ease-in-out;
}

.invest-form .main-form-holder .form-self-holder .each-tab-holder .tab-content .btn-next:disabled {
  background: #ccc;
  pointer-events: none;
  border-color: #ccc;
}

.invest-form .main-form-holder .form-self-holder .each-tab-holder .tab-content .btn-next.loading {
  pointer-events: none;
  background: var(--Primary-Gradient-Primary, linear-gradient(269deg, rgb(254, 137, 137) 0%, #fc6b31 48.33%, rgb(254, 137, 137) 100%));
}

.invest-form .main-form-holder .form-self-holder .each-tab-holder .tab-content .btn-next.loading span:first-child {
  width: 21px;
  display: flex;
  align-items: center;
  margin-right: 10px;
}

.invest-form .main-form-holder .form-self-holder .each-tab-holder .tab-content .note-last-item {
  padding: 0 18px 20px;
  text-align: center;
  font-size: 16px;
}

.invest-form .main-form-holder .form-self-holder .each-tab-holder .tab-content .note-last-item a {
  color: #d29b41;
}

.invest-form .main-form-holder .form-self-holder .each-tab-holder .edit-mode {
  max-height: 0;
  overflow: hidden;
  transition: all 300ms ease-out;
}

.invest-form .main-form-holder .form-self-holder .each-tab-holder .edit-mode .title-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  margin-bottom: 18px;
  padding-top: 10px;
  font-size: 16px;
  font-weight: 900;
}

.invest-form .main-form-holder .form-self-holder .each-tab-holder .edit-mode .title-area button {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  background: unset;
  border: unset;
}

.invest-form .main-form-holder .form-self-holder .each-tab-holder .edit-mode .list {
  padding-bottom: 10px;
}

.invest-form .main-form-holder .form-self-holder .each-tab-holder .edit-mode .list .each-item {
  padding: 0 18px;
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
}

.invest-form .main-form-holder .form-self-holder .each-tab-holder .edit-mode .list .each-item .label {
  font-weight: 400;
}

.invest-form .main-form-holder .form-self-holder .each-tab-holder .edit-mode .list .each-item .value {
  font-weight: 800;
  color: #454545;
}

.invest-form .main-form-holder .form-self-holder .each-tab-holder .top-info-content {
  padding: 0 18px;
  display: flex;
  align-items: center;
  margin-bottom: 18px;
}

.invest-form .main-form-holder .form-self-holder .each-tab-holder .top-info-content .each {
  font-size: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
  margin-right: 40px;
}

.invest-form .main-form-holder .form-self-holder .each-tab-holder .top-info-content .each .title {
  font-weight: normal;
  display: block;
  margin-bottom: 6px;
}

.invest-form .main-form-holder .form-self-holder .each-tab-holder .top-info-content .each .value {
  font-weight: bolder;
  font-size: 16px;
}

.invest-form .main-form-holder .form-self-holder .each-tab-holder .list-of-option {
  padding: 0 18px;
  margin-bottom: 18px;
}

.invest-form .main-form-holder .form-self-holder .each-tab-holder .list-of-option .each-op {
  margin-bottom: 10px;
  font-size: 14px;
}

.invest-form .main-form-holder .form-self-holder .each-tab-holder .list-of-option .each-op:last-child {
  margin-bottom: 0;
}

.invest-form .main-form-holder .form-self-holder .each-tab-holder .list-of-option .each-op input {
  display: none;
}

.invest-form .main-form-holder .form-self-holder .each-tab-holder .list-of-option .each-op label {
  display: flex;
  border-radius: 14px;
  background: #fff;
  align-items: center;
  border: 1px solid transparent;
  justify-content: space-between;
  padding: 14px;
  cursor: pointer;
  transition: all 300ms ease-out;
}

.invest-form .main-form-holder .form-self-holder .each-tab-holder .list-of-option .each-op label .left {
  display: flex;
  flex-direction: column;
}

.invest-form .main-form-holder .form-self-holder .each-tab-holder .list-of-option .each-op label .left .price {
  margin-bottom: 8px;
  font-weight: bold;
  font-size: 19px;
}

.invest-form .main-form-holder .form-self-holder .each-tab-holder .list-of-option .each-op label .right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background: #ce9138;
  padding: 4px 10px;
  border-radius: 11px;
  font-size: 14px;
}

.invest-form .main-form-holder .form-self-holder .each-tab-holder .list-of-option .each-op label .right .count {
  font-weight: 900;
  font-size: 20px;
}

.invest-form .main-form-holder .form-self-holder .each-tab-holder .list-of-option .each-op label:hover {
  background: #f3f3f3;
}

.invest-form .main-form-holder .form-self-holder .each-tab-holder .list-of-option .each-op input:checked ~ label {
  border-color: #CD9036;
  background: #f3f3f3;
}

.invest-form .main-form-holder .form-self-holder .each-tab-holder .calc-holder {
  margin: 0 18px;
  width: calc(100% - 36px);
  background: #fff;
  margin-bottom: 18px;
  padding: 18px;
  border-radius: 16px;
}

.invest-form .main-form-holder .form-self-holder .each-tab-holder .calc-holder .input-holder-calc {
  width: 100%;
  position: relative;
}

.invest-form .main-form-holder .form-self-holder .each-tab-holder .calc-holder .input-holder-calc span {
  position: absolute;
  left: 0;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  width: 44px;
  font-size: 23px;
}

.invest-form .main-form-holder .form-self-holder .each-tab-holder .calc-holder .input-holder-calc input {
  border-radius: 16px;
  border: 1px solid var(--Grayscale-Silver-Trans-50, rgba(103, 103, 103, 0.5));
  background: var(--Shade-Real-White, #FFF);
  padding: 15px;
  height: 60px;
  width: 100%;
  padding-left: 40px;
  font-weight: 500;
  font-weight: bold;
  font-size: 20px;
}

.invest-form .main-form-holder .form-self-holder .each-tab-holder .calc-holder .calc-self {
  margin-top: 20px;
  max-height: 0;
  overflow: hidden;
  transition: all 300ms ease-out;
}

.invest-form .main-form-holder .form-self-holder .each-tab-holder .calc-holder .calc-self.active {
  max-height: -moz-max-content;
  max-height: max-content;
  overflow: unset;
}

.invest-form .main-form-holder .form-self-holder .each-tab-holder .calc-holder .calc-self .show-op .each {
  margin-bottom: 10px;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px;
  background: #f7f7f7;
  border-radius: 13px;
}

.invest-form .main-form-holder .form-self-holder .each-tab-holder .calc-holder .calc-self .show-op .each .value {
  font-weight: "Space Mono";
  font-weight: bold;
  font-size: 20px;
}

.invest-form .main-form-holder .form-self-holder .each-tab-holder .calc-holder .calc-self .note-imp p {
  font-size: 12px;
  margin: 0;
}

.invest-form .main-form-holder .form-self-holder .each-tab-holder.active {
  display: block;
  border: 1px solid #7f3b77;
}

.invest-form .main-form-holder .form-self-holder .each-tab-holder.active .tab-title {
  border-bottom: 1px solid #EBEBEB;
  margin-bottom: 18px;
}

.invest-form .main-form-holder .form-self-holder .each-tab-holder.active .tab-content {
  max-height: -moz-max-content;
  max-height: max-content;
  overflow: unset;
}

.invest-form .main-form-holder .form-self-holder .each-tab-holder.active .edit-mode {
  height: -moz-max-content;
  height: max-content;
}

.invest-form .main-form-holder .form-self-holder .each-tab-holder.done .tab-title {
  border-bottom: 1px solid #EBEBEB;
  margin-bottom: 18px;
  display: none;
}

.invest-form .main-form-holder .form-self-holder .each-tab-holder.done .tab-content {
  max-height: 0px;
  overflow: hidden;
}

.invest-form .main-form-holder .form-self-holder .each-tab-holder.done .edit-mode {
  max-height: -moz-max-content;
  max-height: max-content;
}

.c-w-im {
  color: #fff !important;
}

.footer-logo img {
  width: 115px;
}

.footer-menu ul {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  list-style: none;
}
.footer-menu a {
  color: #ef4052;
  letter-spacing: 0.25px;
  margin-left: 5px;
  margin-right: 5px;
  padding: 5px 10px;
  font-size: 14px;
  font-weight: 400;
  line-height: 20px;
  text-decoration: none;
}

@media screen and (max-width: 991px) {
  .invest-header-holder .flex-of-menu .main-menu-holder .menu-holder-sec {
    position: fixed;
    top: 0;
    right: -300%;
    width: 100%;
    height: 100%;
    background: #2e0d35;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 300ms ease-out;
  }
  .invest-header-holder .flex-of-menu .main-menu-holder .menu-holder-sec.show {
    right: 0;
  }
  .invest-header-holder .flex-of-menu .main-menu-holder .menu-holder-sec ul {
    flex-direction: column;
  }
  .invest-header-holder .flex-of-menu .main-menu-holder .menu-holder-sec ul li {
    margin-bottom: 40px;
  }
  .invest-header-holder .flex-of-menu .main-menu-holder .menu-holder-sec ul li a {
    font-size: 20px;
  }
  .invest-header-holder .flex-of-menu .main-menu-holder .menu-holder-sec .close-menu {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    width: 60px;
    top: 10px;
    left: 10px;
  }
  .invest-header-holder .flex-of-menu .main-menu-holder .menu-holder-sec .close-menu svg {
    width: 100%;
    height: auto;
  }
  .invest-header-holder .flex-of-menu .main-menu-holder .menu-holder-sec .close-menu svg path {
    fill: #fff;
  }
  .invest-header-holder .flex-of-menu .main-menu-holder .action-holder .btn-holder a {
    display: none;
  }
  .invest-header-holder .flex-of-menu .main-menu-holder .action-holder {
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: flex-end;
  }
  .invest-header-holder .flex-of-menu .main-menu-holder .action-holder .sm-show {
    display: flex;
    align-items: center;
    justify-content: center;
    background: unset;
    border: unset;
    width: 45px;
    padding: 0;
  }
  .invest-header-holder .flex-of-menu .main-menu-holder .action-holder .sm-show svg {
    width: 100%;
    height: auto;
  }
  .invest-header-holder .flex-of-menu .main-menu-holder .action-holder .sm-show svg path {
    fill: #fff;
  }
  .invest-form {
    padding: 0 6px;
  }
  .footer-menu {
    margin-top: 5px;
  }
  .footer-menu ul {
    display: grid;
    padding: 0;
    margin: 0;
    grid-template-columns: 1fr 1fr 1fr;
  }
  .footer-menu ul li {
    margin-bottom: 16px;
    text-align: left;
  }
  .footer-menu ul li a {
    text-align: left;
  }
}
.btn-spe a {
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #1a1b1f;
  background-image: radial-gradient(circle at 100% 100%, #fe414d, #70397c) !important;
  border-radius: 5px;
  padding: 12px 25px;
  font-family: Poppins, sans-serif;
  font-size: 12px;
  font-weight: 700;
  line-height: 20px;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(214, 70, 205, 0.44) !important;
}

.colored-bg h3 {
  -webkit-text-fill-color: transparent;
  background-image: linear-gradient(#6c528a, #592564);
  -webkit-background-clip: text;
  background-clip: text;
}

.colored-text h4 {
  background: #ef4052;
  display: inline;
}

.vertical-row {
  background-image: radial-gradient(circle at 0 0, #2e2e2e 33%, #070707);
  border-radius: 10px;
}
.vertical-row > .elementor-container {
  flex-direction: column;
  width: 100%;
}
.vertical-row > .elementor-container > .elementor-column {
  width: 100% !important;
}
.vertical-row .each-item p {
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  margin-bottom: 0;
  padding: 20px;
}
.vertical-row .each-item p img {
  width: 24px;
  display: inline-block;
  margin-right: 15px;
}

.colred-text-red h3 {
  background-image: linear-gradient(to right, #ef4052, #72397b);
  text-align: center;
  letter-spacing: -2px;
  -webkit-text-fill-color: transparent;
  -webkit-background-clip: text;
  background-clip: text;
}

.top-title-list strong {
  color: #000 !important;
}

.list-has-icon svg {
  width: 18px;
  height: auto;
}
.list-has-icon svg path {
  fill: #963c71;
}
.list-has-icon strong {
  color: #000 !important;
}

.list-has-icon-colored svg {
  width: 18px;
  height: auto;
}
.list-has-icon-colored svg path {
  fill: #93304f;
}
.list-has-icon-colored strong {
  color: #ef4052;
}

.img-has-bg-cir {
  position: relative;
  overflow: hidden;
}
.img-has-bg-cir img {
  position: relative;
  z-index: 2;
}
.img-has-bg-cir::after {
  content: " ";
  display: block;
  width: 500px;
  height: 500px;
  background: radial-gradient(rgba(112, 57, 124, 0.5490196078), rgba(112, 57, 124, 0.2196078431), black);
  position: absolute;
  right: calc(50% - 250px);
  top: 0;
  z-index: 1;
}

.has-red-strong strong {
  color: #ef4052;
}

.list-has-icon-colored .elementor-icon-list-item {
  display: flex;
  align-items: flex-start !important;
  justify-content: flex-start;
  width: 100%;
}
.list-has-icon-colored .elementor-icon-list-item .elementor-icon-list-icon {
  margin-top: 7px;
}

.table-row-info {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  border: 1px solid #dbdbdb;
  border-radius: 10px;
  margin: 20px 0;
  overflow: hidden;
}
.table-row-info .w-layout-cell > div p {
  background: #fff;
  text-align: left;
  padding: 10px;
  font-size: 16px;
  margin-bottom: 0 !important;
}
.table-row-info .w-layout-cell > div p:nth-child(odd) {
  background-color: #dfdfdf;
  color: #000;
}
.table-row-info .w-layout-cell > div p:nth-child(even) {
  padding: 22px 10px;
}
.table-row-info .w-layout-cell:nth-child(1) p {
  font-weight: 700;
}
.table-row-info .w-layout-cell:nth-child(2) {
  flex-grow: 1;
}

.landing-form-contact .input-wrapper p {
  width: 100%;
  margin-bottom: 2px;
}
.landing-form-contact .input-wrapper p label {
  color: #fff;
  margin-bottom: 0;
  font-size: 14px;
  font-weight: 300;
  line-height: 150%;
}
.landing-form-contact .input-wrapper p br {
  display: none;
}
.landing-form-contact .input-wrapper p span {
  width: 100%;
  display: block;
}
.landing-form-contact .input-wrapper p span input {
  width: 100%;
  width: 100%;
  height: 38px;
  color: #333;
  vertical-align: middle;
  background-color: #fff;
  border: 1px solid #ccc;
  margin-bottom: 10px;
  padding: 8px 12px;
  font-size: 14px;
  line-height: 1.42857;
  display: block;
  border-radius: 3px;
  padding-top: 30px;
  padding-bottom: 30px;
  font-size: 18px;
  line-height: 28px;
}
.landing-form-contact .btn-spe {
  color: #fff;
  letter-spacing: 1px;
  text-transform: uppercase;
  background-color: #1a1b1f;
  background-image: radial-gradient(circle at 100% 100%, #fe414d, #70397c);
  border-radius: 5px;
  padding: 12px 25px;
  font-family: Poppins, sans-serif;
  font-size: 36px;
  font-weight: 700;
  line-height: 20px;
  transition: all 0.2s;
  box-shadow: 0 4px 20px rgba(214, 70, 205, 0.44);
  border: unset !important;
  width: 100%;
  padding: 27px;
  font-size: 28px;
  margin-top: 10px;
}

.wpcf7 form.invalid .wpcf7-response-output {
  background: #ffb900;
}

.wpcf7 form.sent .wpcf7-response-output {
  background: #46b450;
}

.sm-show {
  display: none !important;
}

@media screen and (max-width: 500px) {
  .sm-hide {
    display: none !important;
  }
  .sm-show {
    display: block !important;
  }
  .btn-spe a {
    width: 100% !important;
  }
  .table-row-info {
    overflow: auto;
  }
  .table-row-info .w-layout-cell > div p {
    color: #000;
    white-space: nowrap;
  }
}/*# sourceMappingURL=invest.css.map */