* {
  font-family: Manrope-VariableFont_wght !important;
  /* overflow-x: hidden; */
}


@font-face {
  font-family: Inter-Regular;
  src: url("../Fonts/Inter-Regular.ttf");
}

@font-face {
  font-family: Manrope-VariableFont_wght;
  src: url("../Fonts/Manrope-VariableFont_wght.ttf");
}

@font-face {
  font-family: fa-brands-400;
  src: url("../Fonts/fa-brands-400.ttf");
}

@font-face {
  font-family: fa-solid-900;
  src: url("../Fonts/fa-solid-900.ttf");

}

@font-face {
  font-family: Inter-VariableFont;
  src: url("../Fonts/Inter-VariableFont.ttf");
}

html,
body {
  height: 100%;
  margin: 0px;
}

.mainBodyContainer {
  width: 100%;
  overflow: hidden;
  background-color: #1D1D1F;
  display: grid;
}

.top-navbar {
  height: 4vmax;
  width: 100%;
  grid-column: 1;
  grid-row: 1;
  background: linear-gradient(180deg, rgba(18, 25, 33, 0.53) 0%, rgba(36, 45, 56, 0.51) 100%);
  backdrop-filter: blur(22px);
  z-index: 1;
}

.top-navbar-inner {
  width: 90vw;
  height: 4vmax;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  margin-left: auto;
  margin-right: auto;
  align-items: center;
}

.top-navbar ul {
  color: white;
}

.top-menu {
  display: flex;
  flex-direction: row;
}

.page-container {
  overflow-y: scroll;
  width: 100%;
  grid-column: 1;
  grid-row: 2;
  -ms-overflow-style: none;
  /* IE and Edge */
  scrollbar-width: none;
  /* Firefox */
}

/* Hide scrollbar for Chrome, Safari and Opera */
.page-container::-webkit-scrollbar {
  display: none;
}

.page-body {
  width: 100%;
  background-image: url(./../Images/bg2.png);
  background-repeat: no-repeat;
}

.page-footer {
  width: 100%;
  padding-top: 2vh;
  padding-bottom: 2vh;
  background-color: #1D1D1F;
  color: #808080;
  display: grid;
  grid-template-columns: 16vw 16vw 16vw 16vw 16vw 16vw;
  font-family: Inter-Regular !important;
  font-size: 11px;
  font-weight: 400;

}

.page-footer-flex {
  width: fit-content;
  margin-left: auto;
  margin-right: auto;
  padding-top: 10vh;
  padding-bottom: 2vh;
  color: #808080;
  font-size: 11px;
  font-weight: 400;
  display: grid;
  grid-template-columns: 1fr 0.5fr 0.5fr 0.5fr;
  grid-template-areas: "footer-menu-col1 footer-menu-col2 footer-menu-col3 footer-menu-col4";
}

/* Responsive layout - makes a one column layout instead of a two-column layout */
@media (max-width: 1000px) {
  .page-footer-flex {
    grid-template-columns: 1fr 1fr;
    grid-template-areas: "footer-menu-col1 footer-menu-col2"
      "footer-menu-col3 footer-menu-col4";
  }
}

@media (max-width: 500px) {
  .page-footer-flex {
    grid-template-columns: 1fr;
    grid-template-areas: "footer-menu-col1"
      "footer-menu-col2"
      "footer-menu-col3"
      "footer-menu-col4";
  }
}

.logo {
  height: 100%;
  width: 8vmax;
  margin: 2%;
}

.logo-footer {
  height: fit-content;
  width: 100%;
  background-color: transparent;
}

/* dropdown menu */

.dropdown {
  position: relative;
  display: inline-block;
  height: 100%;
}

.dropbtn {
  color: white;
  padding: 0 16px 0 16px;
  font-size: 16px;
  font-weight: 500;

  border: none;
  background-color: transparent;
  height: 60px;
  cursor: pointer;
}

.dropdown-content {
  display: none;
  position: absolute;
  width: max-content;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 1;

  margin: 0;
  position: absolute;
  background: linear-gradient(180deg, rgb(18 25 33) 0%, rgb(36 45 56) 100%);

}

.dropdown-content a {
  color: white;
  padding: 12px 16px;
  text-decoration: none;
  display: block;
}

.dropdown-content a:hover {
  background-color: #070606;
}

.dropdown:hover .dropdown-content {
  display: block;
}

.dropdown:hover .dropbtn {
  border-radius: 5px;
  background-color: #94929697;
}

.vertial-mirror {
  transform: rotateX(180deg);
  display: inline-block;
  font-family: fa-solid-900 !important;
  font-size: 16px;
  line-height: 16px;
  font-weight: 900;
  padding-left: 5px;
}

/* end dropdown menu */

.footer-section {
  border-top: 3px solid #2E3C46;
  backdrop-filter: blur(22px);

}

/* Footer Menu */
.footer-menu-col1 {
  display: flex;
  flex-direction: column;
  grid-column: 2;
  grid-row: 1;
  width: 250px;
  padding-left: 40px;
  grid-area: footer-menu-col1;
}

.footer-copy {
  grid-column: 2/ span 4;
  grid-row: 2;
  text-align: center;
}

.form-input-with-btn {
  width: 100%;
  display: flex;
  margin-top: 1vh;
  margin-bottom: 1vh;
  align-items: center;
}

.form-input-with-btn input {
  height: 2vw;
  width: 10vw;
  padding: 0 0 0 3px;
  border-radius: 5px 0px 0px 5px;
  border: none;
}

.form-input-with-btn button {
  height: 2vw;
  width: 7vw;
  color: white;
  text-align: center;
  background-color: #08A36F;
  border-radius: 0px 5px 5px 0px;
  border: none;
  cursor: pointer;
}

.footer-menu-col2 {
  display: flex;
  flex-direction: column;
  grid-column: 3;
  grid-row: 1;
  list-style-type: none;
  line-height: 18px;
  width: 200px;
  padding-left: 80px;
  grid-area: footer-menu-col2;
}

.footer-menu-col2 li {
  border-bottom: 0.2vh solid #2D2D2D;
  padding-top: 1vh;
  padding-bottom: 1vh;
  cursor: pointer;
}

.footer-menu-col3 {
  display: flex;
  flex-direction: column;
  grid-column: 4;
  grid-row: 1;
  list-style-type: none;
  line-height: 18px;
  width: 200px;
  padding-left: 40px;
  grid-area: footer-menu-col3;
}

.footer-menu-col3 li {
  border-bottom: 0.2vh solid #2D2D2D;
  padding-top: 1vh;
  padding-bottom: 1vh;
  cursor: pointer;
}

.footer-menu-col4 {
  display: flex;
  flex-direction: column;
  grid-column: 5;
  grid-row: 1;
  list-style-type: none;
  line-height: 18px;
  width: 250px;
  padding-left: 40px;
  grid-area: footer-menu-col4;
}

.clearfix {
  overflow: auto;
  padding-bottom: 2vh;
}

.clearfix img {
  float: left;
  padding-left: 1vw;
  padding-right: 1vw;
}

.clearfix div {
  padding-left: 55px;
}

.footer-social-media {
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  /* padding-left: 1vw;*/
  padding-right: 1vw;
  gap: 2vw;
  width: 200px;
  padding-left: 1vw;
  padding-top: 2vh;
}

/* End Footer Menu */

#RefundAndCancellationPolicyText {
  cursor: pointer;
}

#InvestmentAdviseragreementText {
  cursor: pointer;
}

li a {

  text-decoration: none;
  color: #808080;

}

.cart-logo {
  width: 70%;
  margin: 0;
}

.cartLogoCont {
  display: flex;
  flex-direction: row-reverse;
  flex-wrap: nowrap;
  align-items: center;
  justify-content: flex-end;
}

.cartItemNumbers {
  color: white;
  background-color: cadetblue;
  border-radius: 50%;
  display: flex;
  padding: 2% 5% 2% 5%;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  position: absolute;
  font-weight: bold;
  top: 15%;
  left: 15%;
}

/* New css */
.mobile-header {
  display: none;
}

@media only screen and (max-width: 768px) {

  .page-body-risk {
    display: flex !important;
    flex-flow: column;
    justify-content: center !important;
    height: 100%;
    max-width: 100% !important;
    width: 100% !important;
    /* padding: 0 !important; */
    margin: 8vh 0px 30px !important;
    overflow-x: hidden !important;
    min-height: auto !important;
  }

  .top-navbar {
    position: fixed;
    top: 0;
    bottom: 0;
    height: 60px;
    z-index: 1;
  }

  .mobile-header {
    display: flex;
  }

  .top-navbar-inner {
    display: none;
  }

  .footer-menu-col2 {
    padding-left: 40px;
  }

  .page-footer-flex {
    margin: 10px;
  }

  #page-body {
    background-size: cover;
  }
}

.mobile-toggle-menu:hover,
.logo:hover {
  cursor: pointer;
}

.dropdown {
  height: auto;
}

.signInMainPopup {
  padding: 0 !important;
  left: 0 !important;
  transform: none !important;
  width: 90%;
}

.signInMain {
  width: 100%;
  margin: 0;
}



.signInMain .signIn .left div {
  float: none !important;
  text-align: center;
}

.overlay {
  display: none;
  flex-flow: column;
  margin-top: 5rem;
  height: 100vh;
}

.overlay a {
  color: white;
  text-decoration: none;
}

.overlay a:nth-child(1) {
  text-decoration: underline;
}

@media screen and (max-width:768px) {
  .signIn .right {
    display: none;
  }
}

/* Risk profile popup */
.risk-no-button {
  background-color: black;
  color: white;
  min-width: 200px;
  padding: 10px 20px;
  border-radius: 10px;
  cursor: pointer;
  height: 50px;
  margin-top: 1em
}

.risk-no-button:hover::before {
  background: linear-gradient(115deg, #4fcf70, #fad648, #a767e5, #12bcfe, #44ce7b);
  position: absolute;
  top: -2px;
  left: -2px;
  background-size: 400%;
  z-index: -1;
  filter: blur(5px);
  width: calc(100% + 4px);
  height: calc(100% + 4px);
  animation: glowing 20s linear infinite;
  opacity: 0;
  transition: opacity .3s ease-in-out;
  border-radius: 10px;
}

.overlay_risk_profile {
  display: none;
  align-items: center;
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgba(0, 0, 0, 0.7);
  transition: opacity 500ms;
  opacity: 0;
  z-index: 9;
}

.risk-no-button:hover {
  background-color: transparent;
  color: black
}

.overlay_risk_profile:target {
  visibility: visible;
  opacity: 1;
}

.popup {
  margin: 70px auto;
  padding: 20px;
  background: #fff;
  border-radius: 5px;
  width: 30%;
  position: relative;
  transition: all 5s ease-in-out;
}

.popup h2 {
  margin-top: 0;
  color: #333;
  font-family: Tahoma, Arial, sans-serif;
}

.popup .close {
  position: absolute;
  top: 20px;
  right: 30px;
  transition: all 200ms;
  font-size: 30px;
  font-weight: bold;
  text-decoration: none;
  color: #333;
}

.popup .close:hover {
  color: #06D85F;
}

.popup .content {
  max-height: 30%;
  overflow: auto;
}