* {
  box-sizing: border-box;
}
body {
  margin: 0;
  background-color: #fff;
  font-family: "Inter", sans-serif;
  font-size: 16px;
  display: flex;
  flex-direction: column;
  height: 100dvh;
  /* max-width: 480px; */
  margin:auto;
  /* display: none; */
}
.main_container {
  flex-grow: 1;
  display: flex;
  background-color: #fff;
  max-width: calc(100% - 40px);
  margin: auto;
  align-items: center;
  justify-content: center;
  width:calc(100% - 40px);
}

.header_container {
  position: sticky;
  top: 0;
  left: 0;
  width: 100%;
  padding:25px 12px 2px 20px;
  border-bottom: 1px solid var(--N-BG, #F2F2F2);
  background-color: #FcFcFc;
  
}

.pvt_header{

  display: flex;
  align-items: center;
  flex-direction: row;
}

.alert_icon{
  margin-right: 10px;
}

.footer_container {
  position: sticky;
  bottom: 0;
  left: 0;
  width: 100%;
  padding: 15px 20px;
}

.footer_container a {
  text-decoration: none;
  color: #000;
}

.success_alert,
.issue_alert {
  justify-content: center;
  align-items: center;
  position: fixed;
  bottom: 18%;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1000;
  width: 93.5%;
  max-width: 390px;
  padding: 12px;
  gap: 12px;
  border-radius: 8px;
  background: #3bb87a;
  color: #fff;
  font-family: Inter;
  font-size: 14px;
  font-style: normal;
  font-weight: 600;
  line-height: 18px;
  display: none;
}

.issue_alert {
  background: #FFF4E5;;
  color: #EF7B2B;
  bottom: 13%;
}

/* Custom Scrollbar Styling */
::-webkit-scrollbar {
  width: 6px; /* Scrollbar width */
}

/* Track */
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey; 
  border-radius: 10px;
}
 
/* Handle */
::-webkit-scrollbar-thumb {
  background: #9c978b;
  border-radius: 8px;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background:#9c978b; 
}

button , a , div {
  -webkit-tap-highlight-color: transparent;
}
@media (min-width: 551px) {
  .main_container{
    margin-top:65px
  }

  .header_container{
    position: fixed;
    z-index: 9;
    padding: 15px 30px;
  }

  .web_footer_wrapper{
    position: static
  }
}

@media (max-width: 500px) {
  body{
    display: flex;
  }

  .web_view{
    display: none !important;
  }

}