/* Font family utility classes */
.font-montserrat {
  font-family: 'Montserrat', sans-serif;
}

.font-poppins {
  font-family: 'Poppins', sans-serif;
}

.font-pacifico {
  font-family: 'Pacifico', cursive;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: 'Montserrat', sans-serif;
  font-weight: 700;
}

.accent,
.logo,
.special-text {
  font-family: 'Pacifico', cursive;
}

body {
  padding-top: 66px;
  font-family: 'Poppins', sans-serif;
}

@media screen and (max-width:1024px) {
  body {
    padding-top: 55px;
  }
}

.toaster-item {
  padding: 0.75rem 1rem;
  margin-bottom: 0.75rem;
  border-radius: 0.25rem;
  box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
  color: white;
  opacity: 0;
  transform: translateX(100%);
  transition: all 0.3s ease;
  font-family: 'Montserrat', sans-serif;

}

/* animate in */
.toaster-item.show {
  opacity: 1;
  transform: translateX(0);
}

/* Types using Material Design colors */
.toaster-item.error {
  background-color: #f44336;
}

/* Material Red 500 */
.toaster-item.success {
  background-color: #137752;
}

/* Material Green 500 */
.toaster-item.info {
  background-color: #2196f3;
}

/* Material Blue 500 */
.toaster-item.warning {
  background-color: #ff9800;
}

/* Material Orange 500 */



/* Custom Container */
.container {
  width: 95%;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1rem;
  /* default padding */
  padding-right: 1rem;
}

fieldset {
  padding: 0 !important;
  border: 0;
}

/* Primary Navbar */
.primary-navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1050;
}

/* Nav Links */
.nav-links li a {
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s;
  font-family: 'Poppins', sans-serif;


}

.nav-links li a:hover {
  color: #ff4081;
  /* Accent color */
}

/* Toggle button */
.menu-toggle {
  font-size: 2rem;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-links.open {
  display: flex;
   }

/* Responsive */
@media (max-width: 991px) {

  /* Hide nav links on tablet/mobile */

  .nav-links {
    display:none;
    flex-direction: column;
    position: fixed;
    top: 0;
    left: 0;
    width: 250px;
    height:100vh;
    overflow: auto;
    background: #fff;
    padding: 1rem 0;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    justify-content: flex-start;
    align-items: flex-start;
    padding: 1rem;
    gap: 0.75rem;
    z-index: 1100;
    margin:0;
  }

  .nav-links li {
    text-align: left;
    width:100%;
  }

  .nav-links li a{
    display: inline-block;
    width:100%;
    padding:1rem 0;
  }

  /* Show toggle button */
  .menu-toggle {
    display: block;
  }

  /* Center site name */
  .site-name {
    margin: 0 auto;
  }
}

.svg-white svg {
  fill: #fff;
}

.svg-orange svg {
  fill: #ff6300;
}

.svg-red svg {
  fill: #e7040f;
}

select,
input[type="text"],
input[type="number"],
input[type="email"],
input[type="password"] {
  line-height: 1.75;
  /* keep consistent vertical rhythm */
  appearance: none;
  /* remove browser default styling */
  -webkit-appearance: none;
  -moz-appearance: none;
}


select {
  appearance: none;
  /* Removes default arrow */
  -webkit-appearance: none;
  -moz-appearance: none;

  background-image: url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 -960 960 960" fill="%23000"><path d="M480-344 240-584l56-56 184 184 184-184 56 56-240 240Z"/></svg>');
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  /* space from edge */
  background-size: 1.3rem;
  /* arrow size */
}

.upload {
  width: 300px;
  height: 300px;
  background: rgb(238, 238, 238);
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.upload button {
  border: none;
  background: transparent;
  cursor: pointer;
}

.upload button.remove {
  display: none;
}

.upload input[type=file] {
  display: none;
}

.upload.has-bgImage {
  background-size: cover;
  background-repeat: no-repeat;
}

.upload.has-bgImage button.add {
  display: none;
}

.upload.has-bgImage button.remove {
  display: block;
  position: absolute;
  top: 0;
  right: 0;
  z-index: 1000;
}

.upload.has-bgImage button.remove svg {
  fill: #f44336
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.spinner {
  border: 3px solid #f3f3f3;
  border-top: 3px solid #333;
  animation: spin 1s linear infinite;
}

button {
  cursor: pointer;
}

button:disabled {
  opacity: 0.5;
  pointer-events: none;
}

img.profile {
  height: 240px;
  max-height: 240px;
  min-height: 240px;
}

.gap1 {
  gap: 0.25rem; /* 4px */
}

.gap2 {
  gap: 0.5rem;  /* 8px */
}

.gap3 {
  gap: 0.75rem; /* 12px */
}

.gap4 {
  gap: 1rem;    /* 16px */
}

.gap5 {
  gap: 1.25rem; /* 20px */
}


.top--23 {
  top: -23px;
}

aside.filters {
  transition: transform 0.3s ease-in-out;
}

aside.filters.open {
  transform: translateX(0);
  display: block !important;
  z-index: 1100;
  position: fixed;
  top: 0;
  left: 0;
}

.filter-backdrop{
  z-index: 1099;
}
.nav-backdrop {
  z-index: 1040;
}




.rows-loader {
  font-size: 5px;
  width: 1em;
  height: 1em;
  border-radius: 50%;
  position: relative;
  text-indent: -9999em;
  animation: mulShdSpin 1.1s infinite ease;
  transform: translateZ(0);
  display: inline-block;
}

@keyframes mulShdSpin {

  0%,
  100% {
    box-shadow: 0em -2.6em 0em 0em #000000, 1.8em -1.8em 0 0em rgba(0, 0, 0, 0.2), 2.5em 0em 0 0em rgba(0, 0, 0, 0.2), 1.75em 1.75em 0 0em rgba(0, 0, 0, 0.2), 0em 2.5em 0 0em rgba(0, 0, 0, 0.2), -1.8em 1.8em 0 0em rgba(0, 0, 0, 0.2), -2.6em 0em 0 0em rgba(0, 0, 0, 0.5), -1.8em -1.8em 0 0em rgba(0, 0, 0, 0.7);
  }

  12.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(0, 0, 0, 0.7), 1.8em -1.8em 0 0em #000000, 2.5em 0em 0 0em rgba(0, 0, 0, 0.2), 1.75em 1.75em 0 0em rgba(0, 0, 0, 0.2), 0em 2.5em 0 0em rgba(0, 0, 0, 0.2), -1.8em 1.8em 0 0em rgba(0, 0, 0, 0.2), -2.6em 0em 0 0em rgba(0, 0, 0, 0.2), -1.8em -1.8em 0 0em rgba(0, 0, 0, 0.5);
  }

  25% {
    box-shadow: 0em -2.6em 0em 0em rgba(0, 0, 0, 0.5), 1.8em -1.8em 0 0em rgba(0, 0, 0, 0.7), 2.5em 0em 0 0em #000000, 1.75em 1.75em 0 0em rgba(0, 0, 0, 0.2), 0em 2.5em 0 0em rgba(0, 0, 0, 0.2), -1.8em 1.8em 0 0em rgba(0, 0, 0, 0.2), -2.6em 0em 0 0em rgba(0, 0, 0, 0.2), -1.8em -1.8em 0 0em rgba(0, 0, 0, 0.2);
  }

  37.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(0, 0, 0, 0.2), 1.8em -1.8em 0 0em rgba(0, 0, 0, 0.5), 2.5em 0em 0 0em rgba(0, 0, 0, 0.7), 1.75em 1.75em 0 0em #000000, 0em 2.5em 0 0em rgba(0, 0, 0, 0.2), -1.8em 1.8em 0 0em rgba(0, 0, 0, 0.2), -2.6em 0em 0 0em rgba(0, 0, 0, 0.2), -1.8em -1.8em 0 0em rgba(0, 0, 0, 0.2);
  }

  50% {
    box-shadow: 0em -2.6em 0em 0em rgba(0, 0, 0, 0.2), 1.8em -1.8em 0 0em rgba(0, 0, 0, 0.2), 2.5em 0em 0 0em rgba(0, 0, 0, 0.5), 1.75em 1.75em 0 0em rgba(0, 0, 0, 0.7), 0em 2.5em 0 0em #000000, -1.8em 1.8em 0 0em rgba(0, 0, 0, 0.2), -2.6em 0em 0 0em rgba(0, 0, 0, 0.2), -1.8em -1.8em 0 0em rgba(0, 0, 0, 0.2);
  }

  62.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(0, 0, 0, 0.2), 1.8em -1.8em 0 0em rgba(0, 0, 0, 0.2), 2.5em 0em 0 0em rgba(0, 0, 0, 0.2), 1.75em 1.75em 0 0em rgba(0, 0, 0, 0.5), 0em 2.5em 0 0em rgba(0, 0, 0, 0.7), -1.8em 1.8em 0 0em #000000, -2.6em 0em 0 0em rgba(0, 0, 0, 0.2), -1.8em -1.8em 0 0em rgba(0, 0, 0, 0.2);
  }

  75% {
    box-shadow: 0em -2.6em 0em 0em rgba(0, 0, 0, 0.2), 1.8em -1.8em 0 0em rgba(0, 0, 0, 0.2), 2.5em 0em 0 0em rgba(0, 0, 0, 0.2), 1.75em 1.75em 0 0em rgba(0, 0, 0, 0.2), 0em 2.5em 0 0em rgba(0, 0, 0, 0.5), -1.8em 1.8em 0 0em rgba(0, 0, 0, 0.7), -2.6em 0em 0 0em #000000, -1.8em -1.8em 0 0em rgba(0, 0, 0, 0.2);
  }

  87.5% {
    box-shadow: 0em -2.6em 0em 0em rgba(0, 0, 0, 0.2), 1.8em -1.8em 0 0em rgba(0, 0, 0, 0.2), 2.5em 0em 0 0em rgba(0, 0, 0, 0.2), 1.75em 1.75em 0 0em rgba(0, 0, 0, 0.2), 0em 2.5em 0 0em rgba(0, 0, 0, 0.2), -1.8em 1.8em 0 0em rgba(0, 0, 0, 0.5), -2.6em 0em 0 0em rgba(0, 0, 0, 0.7), -1.8em -1.8em 0 0em #000000;
  }
}

input[type="radio"],
input[type="checkbox"] {
  transform: scale(1.5);
  /* 1.5x bigger */
}

@media screen and (min-width: 60em) {

  /* large breakpoint */
  .vh-l {
    visibility: hidden;
  }

  .vv-l {
    visibility: visible;
  }
}

  .tabs { border-bottom: 1px solid #e6e6e6; }
  .tab { display: inline-block; padding: .75rem 1rem; cursor: pointer; }
  .tab[aria-selected="true"] { border-bottom: 3px solid #111; font-weight: 500; background-color: white;}
  .panel { display: none; padding: 1rem 0; }
  .panel.is-active { display: block; }

  main{
    min-height: 100vh;
  }

  .btn-brand-icon{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    border:none;
    padding:0;
    background-color: transparent;
  }
.btn-brand-icon svg{
  width:32px;
  height: 32px;
  stroke: #37474F;
}
.btn-brand-icon button,
.btn-brand-icon a{
  color:#37474F;
}

.home-img--banner{
  background-image: url('/images/home-1.webp');
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center;
  height:400px;
  width:100%;
}

.home-img--banner section{
  height: 470px;
}

.why-choose-us svg{
  width:95%;
  height:200px;
}
.how-to-use svg{
    width:95%;
  height:200px;
}

.how-to-use .flex-basis-50{
  flex-basis: 50%;
}
.min-vh-100 { min-height: 100vh; }

button.password-toggler{
  position:absolute;
  top: 50%;
    right: 15px;
     background:transparent;
  border:none;
}