/**
 * WEBSITE: https://themefisher.com
 * TWITTER: https://twitter.com/themefisher
 * FACEBOOK: https://www.facebook.com/themefisher
 * GITHUB: https://github.com/themefisher/
 */

/*=== MEDIA QUERY ===*/
@import url("https://fonts.googleapis.com/css?family=Anaheim|Quattrocento+Sans:400,700");
@import url("https://fonts.googleapis.com/css?family=Montserrat:400,700|Open+Sans:300,400,600");
html {
  /* background-color: #353b43; */
  color: #737f8a;
}

::root{
  --red: #009649!important;
}

body {
  font-family: "Anaheim", sans-serif;
/*  color: #f3f3f3;*/
  -webkit-font-smoothing: antialiased;
  position: relative;
}

:root{
  --red: #009649;
}

@keyframes pop_up{
  0%   {
    width: 0%;
    top: 100vh;
  }
  25%  {
    width: 25%;
    top: 50vh;
  }
  50%  {
    width: 50%;
    top: 0;
  }
  75%  {
    width: 75%;
  }
  100%  {
    width: 100%;
  }
}


dialog{
  border: none;
  position: relative;

}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
  font-family: "Quattrocento Sans", sans-serif;
  color: #000;
}

p {
  font-family: "Quattrocento Sans", sans-serif;
}

/*=================================================================
  Basic Setup
==================================================================*/
::-moz-selection {
  /* Code for Firefox */
  color: #fff;
  background: #57cbcc;
}

::selection {
  color: #fff;
  background: #009649!important;
}

ol,
ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

figure {
  margin: 0;
}

a {
  color: #000000;
  transition: all 0.3s ease-in 0s;
}

iframe {
  border: 0;
}

a,
a:focus,
a:hover {
  text-decoration: none;
  outline: 0;
}

a:focus,
a:hover {
  color: #009649;
}

.kill-margin-bottom {
  margin-bottom: 0 !important;
}

.padding-0 {
  padding: 0 !important;
}

.btn {
  background-color: transparent;
  color: #fff;
  padding: 10px 30px;
  border-radius: 0;
  transition: all 0.3s ease-in 0s;
}
.btn:focus {
  color: #ddd;
  box-shadow: none;
}

.btn-transparent {
  border: 1px solid #4e595f;
}
.btn-transparent:hover, .btn-transparent:focus {
  background-color: #57cbcc;
  border-color: #009649 !important;
  color: #fff;
}

.laf_form{
  background: white;
  padding: 50px 30px;
  border-radius: 20px;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.1);
  max-width: 550px;
}

@media (max-width: 370px) {
  .laf_form{
    padding: 20px 15px;
  }
}

.laf_form .input_field{
  display: flex;
  align-items: center;
  width: 100%;
  border: none;
  background: white;
  box-shadow: 1px 1px 4px rgba(0, 0, 0, 0.1);
  height: 50px;
  border-radius: 4px;
  overflow: hidden;
}

.laf_form .input_field span{
  background: var(--success);
  width: 50px;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  font-size: 20px;
}

.laf_form label{
  font-weight: 500;
}

.laf_form input, .laf_form select, .laf_form textarea{
  height: 100%;
  width: 100%;
  border: none;
  outline: none;
  padding: 0 10px;
}

.laf_form input[type="checkbox"]{
  width: auto!important;
}



/* dashboard */

.nav_logo{
  width: 100px;
}

.nav_logo img{
  width: 100%;
}

.dash-nav{
  display: flex;
  justify-content: space-between;
  align-items: center;
  height: 100px;
  padding: 0 50px;
  background: white;

}

.dash-nav .nav_profile{
  display: flex;
  column-gap: 10px;
  align-items: center;
}

.dash-nav .profile_picture{
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background: green;
  color: white;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.dash-nav .profile_picture p{
  margin: none!important;
  padding: none;
}

.dash-nav .profile_toggler{
  background: rgb(230, 230, 230);
  display: flex;
  column-gap: 10px;
  align-items: center;
  padding: 5px 10px;
  border-radius: 8px;
  cursor: pointer;
}

@media (max-width: 550px) {
  .profile_name{
    display: none;
  }

  .dash-nav{
    padding: 0 20px;
  }
}


/* side nav bar */
.side_top{
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-left: 40px;
}

.side_top .side_logo{
  width: 100px;
}

.side_logo img{
  width: 100%;
}

.side-closebtn{
  font-size: 22px;
  cursor: pointer;
  display: none;
}


.side-nav{
  width: 280px;
  height: 100%;
  background: white;
  padding: 40px 15px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1;
  transition: all .5s ease-in-out;
}

.side_links ul{
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  margin: 0;
  padding: 0;

}

.side_links ul li{
  list-style: none;
  margin: 10px 0;
  border-radius: 6px;
  padding: 15px 10px;
  width: 100%;
}

.side_links ul li:hover, .side_links ul li.active{
  background: rgb(201, 255, 201);
}

.side_links a{
  display: flex;
  column-gap: 10px;
  color: #202020!important;
  text-decoration: none!important;
}

.side_links .link_icon{
  font-size: 16px;
}

.side_toggler{
  display: none;
}


@media (max-width:1000px) {
  .side-closebtn{
    display: initial;
  }

  .side-nav{
    left: -100%;
  }
}

.show-side_nav{
  left: 0;
}



.main{
  margin-left: 280px;
  padding: 20px 10px;
}

.main .card{
  border: none;
  border-radius: 6px;
  box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.1);
  padding: 20px;
}

@media (max-width:1000px) {
  .main{
    margin-left: 10px;
  }

  .side_toggler{
    cursor: pointer;
    display: flex;
  }
}


.profile_option{
  display: none;
  flex-direction: column;
  width: 150px;
  padding: 10px;
  background: white;
  box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.1);
  position:absolute;
  right:10px;
  top: 100px;
  z-index: 3;
}

.show_profile_nav{
  display: flex!important;
}


.profile_option ul{
  display: flex;
  flex-direction: column;
  margin: 0;
}

.profile_option ul li{
  list-style: none;
  margin: 10px 0;
  display: flex;
  flex-direction: column;
  width: 100%;
}

.profile_option a{
  display: flex;
  column-gap: 5px;
  text-decoration: none!important;
  color: #000000!important;
}



/* update form */
.user_update{
  max-width: 100%!important;
  margin: 0 auto;
}


.fieldset{
  display: flex;
  flex-direction: column;
  height: 70px;
  overflow: hidden;
  width: 90%!important;
  background: white;
  margin: 0 auto;
  border-radius: 12px;
  position: relative;
}

.fieldset .profile_update{
  background: transparent;
  box-shadow: none;
  margin: 0px auto!important;
}

.active_field{
  height: auto!important;
}

.pay_now{
  position: absolute;
  right: 15px;
  top: 15px;
}


.dialog_close{
  position: absolute;
  top: 15px;
  right: 15px;
  font-size: 28px;
  cursor: pointer;
}




































































































/* simple loading */
.simple_dialogue{
    padding: 5px 10px;
    min-width: 300px;
    max-width: 600px;
    background: rgba(255, 255, 255, .9);
    box-shadow: 1px 1px 3px rgba(0, 0, 0, 0.1);
    display: none;
    align-items: center;
    border-radius: 20px;
    position: absolute;
    right: 20px;
    top: 40px;
    z-index: 200;
}



/* Container to hold the bubbles */
.bubble-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1; /* Puts it behind your login card */
  overflow: hidden;
  background-color: #f8f9fa; /* Matches your light gray background */
}

/* Individual Bubble Styling */
.bubble {
  position: absolute;
  bottom: -150px; /* Start below the screen */
  background-color: rgba(0, 128, 0, 0.1); /* Very faint Green to match NIA */
  border-radius: 50%;
  animation: floatUp 15s infinite linear;
}

/* Create the movement */
@keyframes floatUp {
  0% {
    transform: translateY(0) rotate(0deg);
    opacity: 0;
  }
  20% {
    opacity: 0.5;
  }
  100% {
    transform: translateY(-120vh) rotate(720deg);
    opacity: 0;
  }
}

/* Randomize sizes and positions for each bubble */
.bubble:nth-child(1) { width: 80px; height: 80px; left: 10%; animation-duration: 18s; }
.bubble:nth-child(2) { width: 150px; height: 150px; left: 40%; animation-duration: 25s; animation-delay: 2s; }
.bubble:nth-child(3) { width: 60px; height: 60px; left: 70%; animation-duration: 20s; animation-delay: 5s; }
.bubble:nth-child(4) { width: 110px; height: 110px; left: 85%; animation-duration: 22s; animation-delay: 8s; }

