@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');
@import url('https://fonts.cdnfonts.com/css/gilroy-bold');
/*  font-family: "Inter", sans-serif; 
    font-family: 'Gilroy-Bold', sans-serif;
    font-family: 'Gilroy-Heavy', sans-serif;
    font-family: 'Gilroy-Light', sans-serif;
    font-family: 'Gilroy-Medium', sans-serif;
    font-family: 'Gilroy-Regular', sans-serif;
*/

*, ::after, ::before {
    box-sizing: border-box;
}
:root{
    --theme-color-dark: #131619;
    --theme-color-white: #ffffff;
    --theme-color-yellow: #FFC327;
    --theme-color-sky: #01CAFE;
    --theme-color-red: #D50B0B;

    --theme-font : "Inter", sans-serif;
    --theme-font-bold : 'Gilroy-Bold', sans-serif;
    --theme-font-heavy : 'Gilroy-Heavy', sans-serif;
    --theme-font-light : 'Gilroy-Light', sans-serif;
    --theme-font-medium : 'Gilroy-Medium', sans-serif;  
}

body {
    font-family: var(--theme-font);
    margin: 0;
    padding: 0;
}
a{
    text-decoration: none;
    line-height: 0%;
}
.container {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}

@media (min-width: 576px) {
  .container {
    max-width: 540px;
  }
}

@media (min-width: 768px) {
  .container {
    max-width: 720px;
  }
}

@media (min-width: 992px) {
  .container {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {
  .container {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {
  .container {
    max-width: 1320px;
  }
}
.container-fluid {
  width: 100%;
  padding-left: 15px;
  padding-right: 15px;
  margin-left: auto;
  margin-right: auto;
  box-sizing: border-box;
}
.row {
  display: flex;
  flex-wrap: wrap;
  margin-left: -15px; 
  margin-right: -15px;
  box-sizing: border-box;
}
.col{
    padding-left: 15px;
    padding-right: 15px;
}

.img-fluid{
    max-width: 100%;
    height: auto;
}
.w-10 { width: 10%;}
.w-20 { width: 20%;}
.w-30 { width: 30%;}
.w-40 { width: 40%;}
.w-50 { width: 50%;}
.w-60 { width: 60%;}
.w-70 { width: 70%;}
.w-75 { width: 75%;}
.w-80 { width: 80%;}
.w-90 { width: 90%;}
.w-100 { width: 100%;}
/* Small devices (≥576px) */
@media (max-width: 767px) {
  .w-sm-10 { width: 10%; }
  .w-sm-20 { width: 20%; }
  .w-sm-30 { width: 30%; }
  .w-sm-40 { width: 40%; }
  .w-sm-50 { width: 50%; }
  .w-sm-60 { width: 60%; }
  .w-sm-70 { width: 70%; }
  .w-sm-80 { width: 80%; }
  .w-sm-90 { width: 90%; }
  .w-sm-100 { width: 100%; }
}

/* Medium devices (≥768px) */
@media (min-width: 768px) {
  .w-md-10 { width: 10%; }
  .w-md-20 { width: 20%; }
  .w-md-30 { width: 30%; }
  .w-md-40 { width: 40%; }
  .w-md-50 { width: 50%; }
  .w-md-60 { width: 60%; }
  .w-md-70 { width: 70%; }
  .w-md-80 { width: 80%; }
  .w-md-90 { width: 90%; }
  .w-md-100 { width: 100%; }
}

/* Large devices (≥992px) */
@media (min-width: 992px) {
  .w-lg-10 { width: 10%; }
  .w-lg-20 { width: 20%; }
  .w-lg-30 { width: 30%; }
  .w-lg-40 { width: 40%; }
  .w-lg-50 { width: 50%; }
  .w-lg-60 { width: 60%; }
  .w-lg-70 { width: 70%; }
  .w-lg-80 { width: 80%; }
  .w-lg-90 { width: 90%; }
  .w-lg-100 { width: 100%; }
}
.card {
  position: relative;
  display: flex;
  flex-direction: column;
  min-width: 0;
  word-wrap: break-word;
  background-color: #fff;
  background-clip: border-box;
  /*border: 1px solid rgba(0, 0, 0, 0.125);*/
  border-radius: 0.375rem; /* 6px */
  /*box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); */
}
.card-body {
  flex: 1 1 auto;
  padding: 1rem; /* 16px */
}
.m-auto{margin:auto;}
/* ========================
Custom mode start
========================= */
.custom-modal {
  position: fixed;
  inset: 0;
  display: none;
  z-index: 9999;
}

.custom-modal.active {
  display: flex;
  align-items: center;
  justify-content: center;
}
.modal-overlay {
    position: absolute;
    inset: 0;
    background: rgb(0 0 0);
}

.modal-content {
  position: relative;
  background: white;
  padding: 2rem;
  border-radius: 10px;
  width:600px;
  max-width: 90%;
  max-height: 90%;
  animation: fadeIn 0.4s ease;
}

/* Close Button */
.modal-close {
  position: absolute;
  top: 0.5rem;
  right: 0.8rem;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Animations */
@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scale(0.9);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes slideLeft {
  from {
    transform: translateX(-100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideRight {
  from {
    transform: translateX(100%);
    opacity: 0;
  }
  to {
    transform: translateX(0);
    opacity: 1;
  }
}

@keyframes slideBottom {
  from {
    transform: translateY(100%);
    opacity: 0;
  }
  to {
    transform: translateY(0);
    opacity: 1;
  }
}

/* Positioning Modifiers */
.modal-left .modal-content {
  margin-left: auto;
  margin-right: auto;
  animation: slideLeft 0.4s ease;
}

.modal-right .modal-content {
  margin-left: auto;
  animation: slideRight 0.4s ease;
}

.modal-center .modal-content {
  animation: fadeIn 0.4s ease;
}

.modal-bottom .modal-content {
  margin-top: auto;
  animation: slideBottom 0.4s ease;
}
/* radio button style */
.custom-radio {
  display: inline-flex;
  align-items: center;
  cursor: pointer;
  position: relative;
}

.custom-radio input[type="radio"] {
  display: none; /* hide native radio */
}

.radio-mark {
  width: 16px;
  height: 16px;
  border: 2px solid var(--theme-color-sky);
  border-radius: 50%;
  display: inline-block;
  position: relative;
  transition: all 0.2s ease-in-out;
}

.radio-mark::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  width: 8px;
  height: 8px;
  background-color: var(--theme-color-sky);
  border-radius: 50%;
  transform: translate(-50%, -50%) scale(0);
  transition: transform 0.2s ease-in-out;
}

.custom-radio input[type="radio"]:checked + .radio-mark::after {
  transform: translate(-50%, -50%) scale(1);
}
/* ========================
Custom mode end
========================= */
