/* ========== Google Font Family =====  */
@import url("https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap");
/* =========================================
   Theme Root Variables (Global Settings)
   Define all reusable design variables here
========================================= */
:root {
  /* ===== Color root Color/Accent  */
  --primary_color: #0052a4;
  --primary_active_color: #002f66;
  --secondary_color: #009ac8;
  --accent_color: #038c7f;
  --accent_color_hover: #07C3B1;
  --success_color: #22c55e;
  --danger_color: #ff1b00e5;
  --danger_dark_color: #7f1d1d;
  --warning_color: #92400e;
  --danger_color_30: #ff1b004d;
  --white_color: #ffffff;
  --black_color: #000000;
  --blue_dark_color: #010326;
  --black_color_6: #0000000f;
  --black_color_8: #00000014;
  --black_color_10: #0000001a;
  --black_color_15: #00000026;
  --black_color_25: #00000040;
  --body_text_color: #1f2937;
  --text_color: #6c757d;;
  --text_color_60: #01032699;
  --background_color: #ffffff;
  --button_border_color: #01032699;
  --group_border_color: #9747ff;
  --body_bg_color: #f7f9fc;
  --navbar_bg_color: #003f82;
  --alert_success_bg_color: #e8f7f0;
  --gay_color: #cacaca;
  --error_bg_color: #fdecea;
  --norbal_border_color: #6278a2;
  /* Input Color  */
  --input_bg_color: #0000000f;
  --input_border_color: #00000014;
  --input_border_Glow_color: #0000007a;
  --heading_h5_color: #243146;

  /* ===== Font Family  */
  --font_inter: "Inter", sans-serif;

  /* ===== Font Size & Line Height */
  --font_size_small_more: 12px;
  --font_size_13: 13px;
  --font_size_13_lineheight: 18px;
  --font_size_small: 14px;
  --font_size_small_lineheight: 20px;
  --font_size_16: 16px;
  --font_size_16_lineheight: 24px;
  --font_size_18: 18px;
  --font_size_18_lineheight: 24px;
  --font_size_20: 20px;
  --font_size_20_lineheight: 30px;
  --font_size_card_small_title: 24px;
  --font_size_card_small_title_lineheight: 36px;
  --font_size_card_title: 28px;
  --font_size_card_title_lineheight: 36px;

  /* ===== font Weight  */
  --font_weight_300: 300;
  --font_weight_400: 400;
  --font_weight_500: 500;
  --font_weight_600: 600;
  --font_weight_700: 700;
  --font_weight_800: 800;
  --font_weight_900: 900;
}
/* ========== Basic / Reusable Css For Project  */
html,
body {
  min-height: 100%;
  margin: 0;
}

body {
  font-family: var(--font_inter);
  background-color: var(--body_bg_color);
  color: var(--body_text_color);
  font-size: var(--font_size_16);

  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

@media (min-width: 1400px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl, .container-xxl {
    max-width: 1140px;
  }
}

@media (min-width: 1200px) {
  .container, .container-lg, .container-md, .container-sm, .container-xl {
    max-width: 1140px;
  }
}
a {
  text-decoration: none;
  transition: all 0.3s linear;
}
button {
  transition: all 0.3s linear;
}
.white_bg {
  background-color: var(--white_color) !important;
}
.black_color{
  color: var(--black_color);
}
h1{
font-weight: var(--font_weight_600);
font-size: var(--font_size_card_title);
line-height: var(--font_size_card_title_lineheight);
letter-spacing: 0%;
color: var(--text_color);
}

h2{
font-weight: var(--font_weight_600);
font-size: var(--font_size_card_small_title);
line-height: var(--font_size_card_small_title_lineheight);
letter-spacing: 0%;
color: var(--primary_active_color);
}

h3{
font-weight: var(--font_weight_600);
font-size: var(--font_size_20);
line-height: var(--font_size_20_lineheight);
letter-spacing: 0%;
color: var(--primary_active_color);
}

h4{
font-weight: var(--font_weight_600);
font-size: var(--font_size_18);
line-height: var(--font_size_18_lineheight);
letter-spacing: 0%;
color: var(--text_color);
margin-bottom: 0px;
}

h5{
font-weight: var(--font_weight_700);
font-size: var(--font_size_small_more);
line-height: var(--font_size_small_lineheight);
letter-spacing: 0%;
color: var(--heading_h5_color);
margin-bottom: 0px;
}

p {
  font-size: var(--font_size_16);
  line-height: var(--font_size_16_lineheight);
  color: var(--body_text_color);
  margin-bottom: 0;
}

.primary_active_color{
  color: var(--primary_active_color);
}
/* ========== Navbar Section Css Start Here =====  */
#header_area{

  background-color: var(--navbar_bg_color);
  height: 70px;
}
.navbar-custom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: var(--navbar_bg_color);
  height: 70px;
  /* padding: 0px 120px; */
}
.m_show_only{
  display: none;
}
.nav-center {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}
.navbar_home img {
  width: 30px;
  height: 30px;
}
.navbar_logo img {
  height: 100%;
  width: auto;
  padding: 10px 0;
}
.nav-menu {
  display: flex;
  gap: 15px;
}
.nav-menu .nav-link {
  border: 1px solid var(--white_color);
  color: var(--white_color);
  padding: 5px 20px;
  border-radius: 10px;
  font-size: var(--font_size_small);
  line-height: var(--font_size_small_lineheight);
  font-weight: var(--font_weight_500);
  text-decoration: none;
  background-color: transparent;
}
.nav-menu .nav-link:hover {
  background-color: var(--secondary_color);
}

/* Small screen spacing fix */
@media (max-width: 576px) {
  .nav-menu a {
    font-size: 14px;
  }
}
/* ========== Navbar Section Css End Here =====  */

/* ========== Main Content Section Css Start Here =====  */
#main_section_area {
  padding: 0px 0 110px 0;
  flex: 1;
}
.order_text{
font-weight: var(--font_weight_600);
font-size: var(--font_size_20);
line-height: var(--font_size_card_title_lineheight);
letter-spacing: 0%;
color: var(--black_color);
margin-top: 10px;
text-align: center;
}
.for_mobile h3.mobile_title{
  display: none;
}
.for_mobile_flex {
	display: flex;
	gap: 12px;
	width: 100%;
}

.notice_card_content_2 p{
  display: none;
}
.notice_card{
  box-shadow: 4px 4px 4px 0px #0000000D;
  max-width: 700px;
  margin: 0 auto;
}
/* ========== Main Content Section Css End Here =====  */
.section_title {
  margin-top: 20px;
}

.section_title h1 {
  font-size:24px;
}

.section_title p {
  font-size:16px;
  font-weight: var(--font_weight_400);
  letter-spacing: 0%;
  margin-bottom: 15px;
}
.code_form_input{
  text-align: center;
  background-color: var(--white_color);
  padding-top: 44px;
  padding-bottom: 20px;
  border-radius: 10px;
  max-width: 700px;
  margin: 0 auto;
  box-shadow: 2px 4px 10px 0px #0000001A;

}
.code_form_input input{
  max-width: 172px;
}
.allow_for_submit_input{
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
  margin-bottom: 20px;
}
.buy_left_card{
  display: flex;
  gap: 10px;
  padding-top: 60px;
  padding-bottom: 60px;
}
.buy_left_card img{
  width: 155px;
  height: 155px;
  object-fit: cover;
  flex: 1;
}
.buy_left_card_list p{
font-weight: var(--font_weight_300);
letter-spacing: 0%;
margin-bottom: 10px;
}
.buy_left_card img.buy_ left _img{
  align-self: center;
}
.buy_left_card_list ul{
  list-style-type: none;
  padding-left: 0px;
}
.buy_left_card_list ul li{
  display: flex;
  gap: 15px;
  margin-bottom: 10px;
}
.buy_left_card_list ul li img{
  width: 20px;
  height: 20px;
}
.buy_left_card_list ul li p{
  align-self: center;
  margin-bottom: 0px;
}
.stepper {
	display: inline-flex;
	align-items: center;
	border: 1px solid #ddd;
	border-radius: 8px;
	overflow: hidden;
	font-family: sans-serif;
	height: 30px;
	align-self: center;
}

.stepper button {
    width: 40px;
    height: 30px;
    border: none;
    background: var(--black_color_6);
    border: 1px solid var(--black_color_10);
    font-weight: var(--font_weight_400);
    letter-spacing: 0%;
    cursor: pointer;
    transition: 0.2s;
}

.stepper button:hover {
    background: #e0e0e0;
}

.stepper input {
    width: 50px;
    height: 30px;
    border: none;
    text-align: center;
    font-weight: var(--font_weight_400);
    font-size: var(--font_size_16);
    line-height: var(--font_size_16_lineheight);
    letter-spacing: 0%;
    color: var(--body_text_color);
    outline: none;
}
.duantity_box {
	display: flex;
	justify-content: space-between;
	padding-bottom: 30px;
	border-bottom: 1px solid var(--black_color_10);
	gap: 20px;
}
.buy_submit_btn img{
  width: 100%;
  margin: 0 auto;
}
.buy_left_card img {
	width: 155px;
	height: 155px;
	object-fit: cover;
	flex: 1;
}
.flex_one_for_all{
  align-self: center;
}
.duantity_box p{
    align-self: center;
    font-weight: var(--font_weight_400);
    letter-spacing: 0%;
    margin-bottom: 0px;
    }
.buy_submit_btn p{
  font-weight: var(--font_weight_400);
  letter-spacing: 0%;
  margin-bottom: 23px;
  margin-top: 23px;
}
.allow_for_submit_input  p{
  font-weight: var(--font_weight_400);
  letter-spacing: 0%;
  margin-bottom: 0px;
  /* flex: 1; */
}
.buy_submit_allow p{
  flex: 1;
}
.width_fix_472{
  max-width: 472px;
}
.user_allow_box  p{
font-weight: var(--font_weight_400);
font-style: Regular;
letter-spacing: 0%;
flex: 1;
}

/* Custom Styling for the UI */
    .size_box {
        cursor: pointer;
        flex: 1;
    }
    .size_box input {
        display: none;
    }
    .box_content {
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: var(--font_weight_400);
        font-size: var(--font_size_16);
        line-height: var(--font_size_16_lineheight);
        letter-spacing: 0%;
        color: var(--body_text_color);
        position: relative;
        padding: 12px 18px;
        border: 1px solid var(--black_color_25);
        border-radius: 13px;
    }
    .box_content::before {
        content: '';
        width: 16px;
        height: 16px;
        border: 1px solid var(--gay_color);
        border-radius: 50%;
        margin-right: 10px;
    }
    .size_box input:checked + .box_content {
        border-color: var(--accent_color);
        background-color: var(--white_color);
    }
    .size_box input:checked + .box_content::before {
        border-color: var(--accent_color);
        background: radial-gradient(var(--accent_color) 40%, transparent 50%);
    }
    .value_badge {
        border: 1px solid var(--gay_color);
        padding: 5px 15px;
        border-radius: 10px;
        min-width: 80px;
        text-align: center;
    }
    .adjust_size p{
        font-weight: var(--font_weight_400);
        letter-spacing: 0%;
    }
    .range_container label{

font-weight: var(--font_weight_400);
font-size: var(--font_size_16);
line-height: var(--font_size_16_lineheight);
letter-spacing: 0%;
color: var(--body_text_color);
    }
    .range_container span{

font-weight: var(--font_weight_400);
font-size: var(--font_size_16);
line-height: var(--font_size_16_lineheight);
letter-spacing: 0%;
color: var(--body_text_color);
    }
    .custom_range::-webkit-slider-runnable-track {
        background: var(--accent_color);
        height: 6px;
        border-radius: 3px;
    }
    .custom_range::-webkit-slider-thumb {
        margin-top: -6px;
        border: 2px solid var(--accent_color);
        box-shadow: 0 2px 5px rgba(0,0,0,0.1);
    }
    /* Range slider-er main body */
.custom_range {
    -webkit-appearance: none;
    width: 100%;
    height: 8px;
    border-radius: 5px;
    outline: none;

    /* ❗ default bg remove */
    background: transparent !important;
}
input.custom_range:focus {
	background: transparent !important;
	border: 0px solid var(--input_border_Glow_color) !important;
}
input.custom_range {
	background: transparent !important;
	border: 0px solid var(--input_border_Glow_color) !important;
  height: 20px !important;
}
/* Track (Chrome) */
.custom_range::-webkit-slider-runnable-track {
    height: 8px;
    border-radius: 5px;
    background: transparent; /* ❗ must */
}

/* Thumb */
.custom_range::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--white_color);
    border: 1px solid var(--accent_color);
    cursor: pointer;
    margin-top: -8px;
}

/* Firefox-er jonno left side color auto kaj kore ei code-e */
.custom_range::-moz-range-progress {
    background-color: var(--accent_color);
    height: 8px;
    border-radius: 5px;
}
.download_right_img img{
  width: 200px;
  height: 310px;
  object-fit: cover;
  margin: 25px auto;
  margin-bottom: 25px;
}
.welcome_section{
  text-align: center;
}
.welcome_section img.welcome_image{
  width: 145px;
  height: 130px;
  width: auto;
  height: auto;
  object-fit: contain;
  margin-bottom: 20px;
}
.welcome_section img.welcome_logo{
  width: 70px;
  height: 90px;
  object-fit: cover;
  margin-bottom: 20px;
}
.welcome_section h1 {
  font-size:24px;
  margin-bottom:10px;
}

.welcome_section p{
font-weight: var(--font_weight_400);
font-size:16px;
letter-spacing: 0%;
text-align: center;
max-width: 400px;
margin: 0 auto;
}
.welcome_card{
  width: 300px;
height: 445px;
opacity: 1;
gap: 40px;
border-radius: 16px;
padding: 20px;
  box-shadow: 2px 4px 10px 0px #0000001A;
text-align: center;
background-color: var(--white_color);
}
.welcome_card img{
  width: 80px;
  height: 80px;
  margin-bottom: 17px;
}
.welcome_card p{
font-weight: var(--font_weight_500);
letter-spacing: 0%;
text-align: center;
margin-top: 22px;
}
.welcome_card ul p{
  margin-top: 0px !important;
  font-size: var(--font_size_small_more);
  line-height: var(--font_size_small_lineheight);
}
.welcome_card ul img{
  margin-bottom: 0px !important;
  align-self: center;
  width: 14px !important;
  height: 14px !important;
}
.welcome_card .my_basic_bttn{
  /* padding: 10px 0px 12px 20px !important; */
  width: 100%;
  position: relative;
}
.welcome_card .my_basic_bttn img {
	width: 14.37px;
	height: 12.50px;
	opacity: 1;
	align-self: center;
	margin-bottom: 0px;
  position: absolute;
  right: 20px;
  top: 53%;
  transform: translateY(-50%);
}
.welcome_card .my_btn_primary{
  /* padding: 10px 0px 12px 20px !important; */
  width: 100%;
  position: relative;
}

.welcome_card .my_btn_primary img {
	width: 14.37px;
	height: 12.50px;
	opacity: 1;
	align-self: center;
	margin-bottom: 0px;
	position: absolute;
  right: 10px;
  top: 53%;
  transform: translateY(-50%);
}
.welcome_two_card{
  display: flex;
  justify-content: center;
  gap: 40px;
  margin-top: 18px;
}
.welcome_two_card img.welcome_login_img {
	width: 126px;
	height: 145px;
	object-fit: cover;
	margin-bottom: 3px;
	margin-top: 10px;
}
.welcome_safe_card{
  max-width: 383px;
border-radius: 16px;
padding-top: 15px;
padding-right: 20px;
padding-bottom: 15px;
padding-left: 20px;
box-shadow: 2px 4px 10px 0px var(--black_color_10);
margin: 27px auto;
display: flex;
gap: 35px;
}
.welcome_safe_card img{
  width: 35px;
}
.welcome_safe_right{
  text-align: start;
  align-self: center;
}
.welcome_safe_right p{
    font-weight: var(--font_weight_500);
    font-style: Medium;
    font-size: 10px;
    line-height: 14px;
    letter-spacing: 0%;
    color: var(--text_color_60);
    margin-bottom: 0px;
}
.allow_for_register  p{
    flex: 1;
}
.welcome_need_help p{
font-weight: var(--font_weight_500);
font-size: var(--font_size_small);
line-height: var(--font_size_18_lineheight);
text-align: center;
color: var(--text_color_60);
margin-top: 20px;
margin-bottom: 5px !important;
}
.welcome_need_help a{
font-weight: var(--font_weight_600);
font-size: var(--font_size_small);
line-height: var(--font_size_18_lineheight);
text-align: center;
color: var(--primary_color);
margin-top: 20px;
margin-bottom: 5px !important;
transition: all .3s linear;
}
.welcome_need_help a:hover{
color: var(--accent_color);
}
.welcome_area_section{
  background-image: url('../img/welcome_bg.png');
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  height: 100%;
  width: 100%;
}
.login_card{
  max-width: 384px;
}
.login_input{
  text-align: start;
  margin-bottom: 15px;
}
.login_input label{
font-weight: var(--font_weight_400);
font-size: var(--font_size_small);
line-height: var(--font_size_small_lineheight);
letter-spacing: 0%;
color: var(--text_color);
text-align: start;
display: block;
margin-bottom: 5px;
}
.login_input input {
	font-weight: var(--font_weight_400);
	font-size: var(--font_size_small);
	line-height: var(--font_size_small_lineheight);
	letter-spacing: 0%;
	color: var(--text_color_60);
	background-color: var(--black_color_6);
	border: 1px solid var(--black_color_8);
	width: 100%;
	height: 40px;
	padding-top: 10px;
	padding-right: 40px;
	padding-bottom: 12px;
	padding-left: 50px;
  border-radius: 10px;
  position: relative;
}

/* focus state */
.login_input input:focus {
    background-color: var(--white_color);
    border: 1px solid var(--black_color_25); /* soft blue border */
    box-shadow: 0 0 0 0px rgba(74, 144, 226, 0.2); /* glow effect */
    outline: none;
}
.icon_input{
  position: relative;
}
.icon_input .login_input_icon{
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 27px;
  height: 27px;
  left: 14px;
}
.login_input .icon-toggle{
  display: unset;
  margin: 0px;
  position: absolute;
  right: 10px;top: 50%;
  transform: translateY(-50%);
}
.login_input .icon-toggle input{
  display: none;
}
.login_input .icon-toggle img{
  width: 18px;
  height: 18px;
  object-fit: contain;
  margin-bottom: 0px;
}

.icon-toggle-input {
  display: none;
}

.icon-toggle-img {
  cursor: pointer;
}
.login_forgott{
  font-family: Inter;
font-weight: var(--font_weight_500);
font-size: var(--font_size_13);
line-height: var(--font_size_13_lineheight);
letter-spacing: 0%;
text-align: right;
color: var(--text_color);
}
.login_enter_btn{
  margin: 25px 0;
}
.login_card{
  height: auto;
}
.allow_for_register{

}
.allow_for_register p{
font-family: Inter;
font-weight: var(--font_weight_500);
font-size: var(--font_size_small);
line-height: var(--font_size_small_lineheight);
letter-spacing: 0%;
color: var(--text_color_60);
text-align: start;
margin-top: 0px;
}
.allow_for_register .switch {
	position: relative;
	display: inline-block;
	width: 35px;
	height: 20px;
}
.allow_for_register .switch input:checked + .slider::before {
	transform: translateX(22px);
	left: -5px;
}
.allow_for_register .slider::before {
	content: "";
	position: absolute;
	height: 16px;
	width: 16px;
	left: 2px;
	top: 2px;
	background-color: var(--white_color);
	border-radius: 50%;
	transition: 0.3s;
}
.person_info_update_button {
	gap: 10px;
	display: flex;
	flex-wrap: wrap;
	justify-content: end;
}
.destop_hide_1{
  display: none;
}
/* ========== Footer Section Css Start Here =====  */
#footer_section {
  background-color: var(--navbar_bg_color);
  padding-top: 10px;
  padding-bottom: 10px;

  margin-top: auto;
}
.footer_logo,
.footer_address_content,
.footer_link_content {
  border-right: 1px solid var(--norbal_border_color);
}
.footer_logo img {
  width: 94px;
  height: auto;
}
.footer_company_address {
  text-align: start;
  align-self: center;
}
.footer_link {
  align-self: center;
  text-align: start;
}
.footer_link_content {
  text-align: start;
  align-self: center;
}
.footer_company_address p {
  font-weight: var(--font_weight_400);
  font-size: var(--font_size_small);
  line-height: 24px;
  letter-spacing: 0%;
  color: var(--white_color);
  margin-bottom: 0px;
}
.footer_link ul {
  list-style-type: none;
  padding-left: 0px;
  align-self: center;
  text-align: start;
  margin-bottom: 0px;
}
.footer_link ul li a {
  list-style-type: none;
  padding-left: 0px;
  display: flex;
  gap: 10px;
  justify-content: center;
  font-weight: var(--font_weight_400);
  font-size: var(--font_size_small);
  line-height: 24px;
  letter-spacing: 0%;
  color: var(--white_color);
  /* text-align: start; */
  display: flex;
  justify-content: start;
}
.footer_social ul {
  display: flex;
  list-style-type: none;
  padding-left: 0;
  margin-bottom: 0px;
}
.footer_social ul li {
  display: flex;
  list-style-type: none;
  margin: 0 5px;
}
.footer_social_content {
  justify-content: center;
  display: flex;
}
.footer_social {
  align-self: center;
}
.footer_bottom_border {
  border-bottom: 1px solid var(--norbal_border_color);
  padding-bottom: 10px;
}
.footer_copyright_text p {
  font-weight: var(--font_weight_400);
  font-size: var(--font_size_small_more);
  line-height: var(--font_size_small_lineheight);
  letter-spacing: 0%;
  color: var(--white_color);
  padding: 10px 0;
}
/* ========== Footer Section Css End Here =====  */

/* ========== Button Style Css  */
/* ========== All Button Components Css Start Here =====  */
/* === Primary Button  */
button.my_btn_primary {
  border-radius: 10px;
  padding: 10px 20px;
  background-color: var(--primary_color);
  font-size: var(--font_size_small);
  line-height: var(--font_size_small_lineheight);
  color: var(--white_color);
  border: none;
  transition: all 0.3s linear;
  font-weight: var(--font_weight_500);
}
a.my_btn_primary {
  border-radius: 10px;
  padding: 10px 20px;
  background-color: var(--primary_color);
  font-size: var(--font_size_small);
  line-height: var(--font_size_small_lineheight);
  color: var(--white_color);
  border: none;
  transition: all 0.3s linear;
  text-decoration: none;
  font-weight: var(--font_weight_500);
}
button.my_btn_primary:hover {
  background-color: var(--secondary_color);
}
a.my_btn_primary:hover {
  background-color: var(--secondary_color);
}

/* == My Basic Button / A  */
button.my_basic_bttn {
  border-radius: 10px;
  padding: 10px 20px;
  background-color: var(--accent_color);
  font-size: var(--font_size_small);
  line-height: var(--font_size_small_lineheight);
  color: var(--white_color);
  border: none;
  transition: all 0.3s linear;
  font-weight: var(--font_weight_500);
}
a.my_basic_bttn {
  border-radius: 10px;
  padding: 10px 20px;
  background-color: var(--accent_color);
  font-size: var(--font_size_small);
  line-height: var(--font_size_small_lineheight);
  color: var(--white_color);
  border: none;
  transition: all 0.3s linear;
  text-decoration: none;
  font-weight: var(--font_weight_500);
}
button.my_basic_bttn:hover {
  background-color: var(--accent_color_hover);
}
a.my_basic_bttn:hover {
  background-color: var(--accent_color_hover);
}

.my_btn_primary img {
  width: 18px;
  height: auto !important;
  margin-top: -1px;
  margin-right: 10px;
}
.add_btn img {
  width: 15px;
  height: auto !important;
}
.save_btn img {
  width: 20px;
  height: auto;
}
/* ===Danger/Delete Button   */
button.my_btn_danger {
  border-radius: 10px;
  padding: 10px 20px;
  background-color: var(--danger_color);
  font-size: var(--font_size_small);
  line-height: var(--font_size_small_lineheight);
  color: var(--white_color);
  border: none;
  transition: all 0.3s linear;
  font-weight: var(--font_weight_500);
}
a.my_btn_danger {
  border-radius: 10px;
  padding: 10px 20px;
  background-color: var(--danger_color);
  font-size: var(--font_size_small);
  line-height: var(--font_size_small_lineheight);
  color: var(--white_color);
  border: none;
  transition: all 0.3s linear;
  text-decoration: none;
  font-weight: var(--font_weight_500);
}
button.my_btn_danger:hover {
  color: var(--blue_dark_color);
  background-color: var(--danger_color_30);
}
a.my_btn_danger:hover {
  color: var(--blue_dark_color);
  background-color: var(--danger_color_30);
}
.my_btn_danger img {
  width: 16px;
  margin-right: 10px;
  margin-top: -1px;
  transition: all 0.3s linear;
  height: auto !important;
}

.my_btn_danger:hover img {
  filter: brightness(0) saturate(100%) invert(6%) sepia(100%) saturate(500%)
    hue-rotate(210deg);
}

/* === Close Button   */
button.my_btn_close,
a.my_btn_close {
  border-radius: 10px;
  padding: 10px 20px;
  background-color: var(--white_color);
  font-size: var(--font_size_small);
  line-height: var(--font_size_small_lineheight);
  color: var(--primary_color);
  border: 1px solid var(--button_border_color);
  transition: all 0.3s linear;
  font-weight: var(--font_weight_500);
  text-decoration: none;

  display: inline-flex;
  align-items: center;
  justify-content: center;
}

button.my_btn_close:hover {
  color: var(--white_color);
  background-color: var(--secondary_color);
}
a.my_btn_close:hover {
  color: var(--white_color);
  background-color: var(--secondary_color);
}
.my_btn_close img {
  width: 14px;
  height: auto;
  margin-right: 10px;
  margin-top: -1px;
  filter: brightness(0) saturate(100%) invert(22%) sepia(92%) saturate(2415%)
    hue-rotate(201deg) brightness(82%) contrast(99%);
  transition: all 0.3s ease;
}
.my_btn_close:hover img {
  filter: brightness(0) invert(1);
}
/* ========== All Button Components Css End Here =====  */

/* ========== Alert Style Css  */
/* ========== All Alert Style Css Start Here =====  */
.my_alert_success {
  display: flex;
  padding: 15px;
  border-radius: 12px;
  background-color: var(--alert_success_bg_color);
  gap: 10px;
  box-shadow: 0px 2px 4px 0px var(--black_color_15);
}
.my_alert_success img {
  width: 20px;
}
.my_alert_success p {
  align-self: center;
  margin-bottom: 0px;
  font-weight: var(--font_weight_500);
  font-size: var(--font_size_small);
  line-height: var(--font_size_small_lineheight);
  letter-spacing: 0%;
  color: var(--success_color);
}
.my_alert_success p span {
  font-weight: var(--font_weight_700);
}
/* ===== Danger Alert Popup/Message  */
.my_alert_danger {
  display: flex;
  padding: 15px;
  border-radius: 12px;
  background-color: var(--error_bg_color);
  gap: 10px;
  box-shadow: 0px 2px 4px 0px var(--black_color_15);
}
.my_alert_danger img {
  width: 20px;
}
.my_alert_danger p {
  align-self: center;
  margin-bottom: 0px;
  font-weight: var(--font_weight_500);
  font-size: var(--font_size_small);
  line-height: var(--font_size_small_lineheight);
  letter-spacing: 0%;
  color: var(--danger_dark_color);
}
.my_alert_danger p span {
  font-weight: var(--font_weight_700);
}
/* ========== All Alert Style Css End Here =====  */

/* ========== Switch/ CheckBox Style Css Start Here =====  */
.switch {
  position: relative;
  display: inline-block;
  width: 44px;
  height: 24px;
}
.switch.not_set {
  display: none;
}

/* Hide default checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* Background */
.slider {
  position: absolute;
  cursor: pointer;
  inset: 0;
  background-color: var(--gay_color);
  border-radius: 50px;
  transition: 0.3s;
}

/* Circle */
.slider::before {
  content: "";
  position: absolute;
  height: 20px;
  width: 20px;
  left: 2px;
  top: 2px;
  background-color: var(--white_color);
  border-radius: 50%;
  transition: 0.3s;
}

/* Checked state */
.switch input:checked + .slider {
  background-color: var(--accent_color);
}

.switch input:checked + .slider::before {
  transform: translateX(22px);
  left: 0px;
}

/* ========== Switch/ CheckBox Style Css End Here =====  */
/* ========== Card Box Style Css Start Here =====  */
.card_area_main {
  display: flex;
  gap: 12px;
  padding: 20px;
  border-radius: 16px;
  background-color: var(--white_color);
  width: 100%;
  box-shadow: 0px 4px 16px 0px var(--black_color_10);
}
.card_area_main img {
  flex: 0 0 104px; /* width fix */
  height: auto;
  object-fit: cover;
  overflow: hidden;
}
.card_area_main.card_with_list img {
  flex: 0 0 150px; /* width fix */
  height: auto;
  object-fit: cover;
  overflow: hidden;
}
.card_content {
  flex: 1;
  align-self: center;
}
.card_title {
  display: flex;
  justify-content: space-between;
}
.card_title h3 {
  margin-bottom: 12px;
}

.card_des_margin {
  margin-top: -10px;
}

.card_des_margin ul {
    list-style-type: none;
    padding-left: 0;
    margin-left: 0;
}

.card_img_margin {
  margin-top: -20px;
}

.card_img_margin_border {
  margin-top: -20px;
}

@media (min-width: 768px) {
    .card_des_margin {
        margin-top: -30px;
    }

    .card_img_margin_border {
      margin-top: 0px;
      padding-top:20px;
      border: 2px dashed #d6dbe3;
      border-radius:25px;
    }

    .card_img_margin {
      margin-top: 0px;
    }
}

.card_des_bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    width: 100%;
    margin-top: -25px;
}

.card_des p {
  font-weight: var(--font_weight_500);
  font-size: var(--font_size_small);
  line-height: var(--font_size_small_lineheight);
  letter-spacing: 0%;
  color: var(--text_color_60);
  margin-bottom: 0%;
}
.with_label{
  text-align: center;
}
.with_label p {
  font-weight: var(--font_weight_400);
  font-size: var(--font_size_13);
  line-height: var(--font_size_13_lineheight);
  letter-spacing: 0%;
  text-align: center;
  color: var(--body_text_color);
  margin-bottom: 6px;
}
.card_des ul {
  list-style-type: none;
  padding-left: 0px;
  margin-bottom: 10px;
}
.card_des ul li p {
  font-weight: var(--font_weight_400);
  font-size: var(--font_size_small_more);
  line-height: 18px;
  letter-spacing: 0%;
  color: var(--text_color);
  padding-bottom: 1px;
}
.card_des ul li p img {
  list-style-type: none;
  padding-left: 0px;
  height: 16px !important;
  width: auto !important;
  margin-right: 10px;
}
p.card_des_p {
  font-weight: var(--font_weight_400);
  font-size: var(--font_size_13);
  line-height: var(--font_size_13_lineheight);
  letter-spacing: 0%;
  color: var(--body_text_color);
  margin-bottom: 0px;
}
.card_action {
  padding: 13.5px 0;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
  border-radius: 16px;
  margin-top: 50px;
}
.card_action img {
  height: 105px;
}
.cta_title {
  align-self: center;
  text-align: center;
  margin-top: 0px;
}

/* ====== Notice card Style  */
.notice_card {
	padding: 20px 22px 24px 22px;
	background-color: var(--black_color_6);
	border-radius: 10px;
	text-align: center;
	max-width: 700px;
}
.notice_card_content {
  display: flex;
  align-items: start;
  gap: 17px; /* optional spacing */
  margin-bottom: 15px;
}
.notice_card_content_2{
  margin-bottom: 0px;
}
.notice_card_content img.notice_img {
	width: 39px;
	height: auto;
	flex-shrink: 0;
	margin-top: 3.5px;
	margin-right: 27px;
}
.notice_card_content img.notice_info_img {
	width: 22.399999618530273;
	height: auto;
	flex-shrink: 0;
	align-self: center;
}
.notice_card_content p {
  font-weight: var(--font_weight_400);
  font-size: var(--font_size_20);
  line-height: var(--font_size_20_lineheight);
  letter-spacing: 0%;
  color: var(--primary_active_color);
  margin-bottom: 0px;
  text-align: start;
}
.notice_card_content p span {
	font-weight: var(--font_weight_700);
	font-size: var(--font_size_20);
	line-height: var(--font_size_20_lineheight);
	letter-spacing: 0%;
	color: var(--primary_active_color);
	align-self: start;

  margin-right: 5px;
}
/* ========== Card Box Style Css End Here =====  */
/* ========== Person/User Infomation Card Style Css End Here =====  */
.person_infomation_list_card {
	display: flex;
	gap: 25px;
	flex-wrap: wrap;
}

.person_name {
  display: flex;
  gap: 15px;
}
.person_name img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}
.person_name p {
  font-weight: var(--font_weight_600) !important;
  font-size: var(--font_size_18);
  line-height: var(--font_size_18_lineheight);
  letter-spacing: 0%;
  color: var(--text_color);
  margin-bottom: 0px;
}
.person_info_list {
  display: flex;
  gap: 15px;
  margin-top: 5px;
}
.person_info_list img.person_icon_list {
  width: 20px;
  height: 20px;
  object-fit: contain;
  align-self: center;
}
.person_info_list img.show_or_hide {
  width: 25px;
  object-fit: contain;
  align-self: center;
  cursor: pointer;
}
.person_info_list p {
  font-weight: var(--font_weight_400);
  font-size: var(--font_size_18);
  line-height: var(--font_size_18_lineheight);
  letter-spacing: 0%;
  color: var(--text_color);
  margin-bottom: 0px;
}
.person_info_list img.person_emty_icon {
  opacity: 0;
  visibility: hidden;
}
.icon-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: end;
  gap: 6px;
  cursor: pointer;
  user-select: none;
  position: relative;
  flex: 1;
}

/* hide checkbox but keep functional */
.icon-toggle-input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

/* icon styling */
.icon-toggle-img {
  width: 25px !important;
  transition: all 0.25s ease;
  transform: scale(1);
}

/* hover effect */
.icon-toggle:hover .icon-toggle-img {
  transform: scale(1.08);
}

/* click (active feel) */
.icon-toggle:active .icon-toggle-img {
  transform: scale(0.92);
}

/* when checked (optional glow effect via JS state sync later) */
.icon-toggle-input:checked + .icon-toggle-img {
  filter: brightness(1.1);
}
.icon-toggle-img {
  transition:
    transform 0.25s ease,
    filter 0.25s ease;
}

/* soft floating effect */
.icon-toggle:hover .icon-toggle-img {
  transform: scale(1.1) rotate(3deg);
}
.persion_update_btn {
  flex: 1;
  align-self: end;
  text-align: end;
}

.person_address {
  margin-left: 10px;
  padding-left: 20px;
}
/* ========== Person/User Infomation Card Style Css End Here =====  */

/* ========== Responsive Table Style Css Start Here =====  */
.custom-table {
  width: 100%;
  border-collapse: collapse;
  border-radius: 12px;
}
.table_box_start {
  background-color: var(--black_color_8);
  border-radius: 12px;
  padding-bottom: 19px;
}

.custom-table thead th {
  padding: 15px 10px;
  font-weight: var(--font_weight_400);
  font-style: Regular;
  font-size: var(--font_size_16);
  line-height: var(--font_size_16_lineheight);
  letter-spacing: 0%;
  color: var(--text_color_60);
  border-left: 1px solid var(--black_color_15);
  border-bottom: 1px solid var(--black_color_15);
}
.custom-table thead th.table_header_top {
  width: 75px;
  text-align: center;
  border-left: none;
}
.custom-table tr td {
  padding: 10px 0px 8px 5px;
}
.custom-table tr td.first_desk_image {
  /* padding: 0; */
  padding-top: 18px 0 10px 0;
}
.table_show_hide_eye {
  height: 26px;
  width: 20px;
  object-fit: fill;
  padding-top: 0px;
}
.table_dask_action {
  display: flex;
  justify-content: center;
  gap: 10px;
}
.table_dask_action img {
  width: 25px;
  object-fit: contain;
}
.custom-table tbody td {
  vertical-align: middle;
  font-weight: var(--font_weight_400);
  font-size: var(--font_size_16);
  line-height: var(--font_size_16_lineheight);
  letter-spacing: 0%;
  color: var(--body_text_color);
}

.img-placeholder {
  width: 26px;
  height: 26px;
  display: inline-block;
  text-align: center;
}
.first_desk_image {
  text-align: center;
}

/* ======================================================= */

/* ======================================================= */
@media (max-width: 768px) {
  .custom-table thead {
    display: none;
  }

  .custom-table tbody tr {
    display: block;
    background: var(--white_color);
    margin-bottom: 0px;
    padding: 0px;
    border-radius: 0px;
    box-shadow: 0 0px 0px var(--black_color_8);
    position: relative;
    border: none;
    margin-bottom: 20px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--black_color_15);
  }
  .custom-table tbody tr:last-child {
    /* example style */
    border-bottom: 0px solid #0d6dfd00;
  }
  .form_row_border_none {
    border: 0px solid var(--black_color_8) !important;
  }
  .table_box_start {
    background-color: var(--white_color);
    border-radius: 12px;
    padding-bottom: 19px;
  }
  .custom-table td {
    display: block;
    width: 100%;
    border: none !important;
    padding: 0 !important;
  }


  .mobile-header-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
  }
  .mobile-header-row .title {
    font-weight: var(--font_weight_600);
    font-size: var(--font_size_20);
    line-height: var(--font_size_20_lineheight);
    letter-spacing: 0%;
    color: var(--primary_active_color);
  }


  .mobile-content-wrapper {
    display: flex;
    gap: 15px;
    margin-bottom: 20px;
    align-items: flex-start;
  }
  .mobile-img {
    width: 45px;
    height: 45px;
    flex-shrink: 0;
    align-self: center;
  }
  .mobile-info-list {
    list-style: none;
    padding: 0;
    margin: 0;
  }
  .mobile-info-list li {
    display: flex;
    align-items: center;
    font-weight: var(--font_weight_400);
    font-size: var(--font_size_small);
    line-height: var(--font_size_small_lineheight);
    letter-spacing: 0%;
    color: var(--text_color);
    margin-bottom: 6px;
    gap: 10px;
  }
  .mobile-info-list li img {
    width: 20px;
  }


  .mobile-btn-group {
    display: flex;
    gap: 10px;
  }
  .btn-m {
    flex: 1;
    padding: 10px;
    text-align: center;
    border-radius: 8px;
    color: var(--white_color);
    text-decoration: none;
    font-weight: 500;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
  }


  .hide-on-mobile {
    display: none !important;
  }
}


@media (min-width: 769px) {
  .show-only-mobile {
    display: none;
  }
}
.form_row_border_none {
  padding: 0px !important;
}
/* ========== Responsive Table Style Css End Here =====  */

/* ========== Config/From and Input Style Css Start Here =====  */
/* ===== Checkbox Css / Eye Icon Chackbox Css  */
.form_one_config {
  padding: 25px;
  background-color: var(--white_color);
  border-radius: 16px;
  box-shadow: 0px 2px 8px 0px var(--black_color_10);
}
.form_row_border {
  border: 1px solid var(--black_color_6);
  padding: 25px 25px 24px 25px;
  border-radius: 12px;
}

.form_title p {
  font-weight: var(--font_weight_400);
  letter-spacing: 0%;
  margin-bottom: 20px;
}

.form_title p span {
  font-weight: var(--font_weight_700);
  margin-bottom: 10px;
}
.form_input_group_title p {
  font-weight: var(--font_weight_400);
  letter-spacing: 0%;
  margin-bottom: 20px;
}
.form_input_group_title p span {
  font-weight: var(--font_weight_700);
  margin-bottom: 10px;
}
/* ==== Image Upload Input Style Css Start  */
/* wrapper */
.image-upload {
	display: inline-flex;
	flex-direction: column;
	align-items: center;
	gap: 20px;
	margin-top: -75px;
}

/* hide real input */
.image-file {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* preview box */
.image-preview {
  width: 222px;
  height: 222px;
  background: var(--gay_color);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  text-align: center;
  overflow: hidden;
  position: relative;
}

/* preview image */
.image-preview img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

/* upload button */
.upload-btn {
  font-weight: var(--font_weight_500);
  font-size: var(--font_size_20);
  line-height: var(--font_size_20_lineheight);
  letter-spacing: 0%;
  color: var(--primary_color);
  cursor: pointer;
  transition: 0.3s;
  padding: 10px;
  border-radius: 12px;
  background-color: var(--black_color_6);
  display: flex;
  justify-content: center;
  gap: 10px;
}
.upload-btn i {
  align-self: center;
}

/* hover */
.upload-btn:hover {
  background: var(--gay_color);
}
/* ==== Image Upload Input Style Css End  */
/* hide checkbox completely */
.eye-input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

/* toggle button */
.eye-toggle {
  width: 50px;
  height: 50px;
  border-radius: 10px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
}

/* icon default (eye) */
.eye-toggle i::before {
  font-family: "FontAwesome";
  content: "\f06e"; /* eye */
  color: var(--white_color);
  font-size: 20px;
}

.eye-input:not(:checked) + .eye-toggle i::before {
  content: "\f070"; /* eye-slash */
}
/* ======== Defult Input Box and Textarea Input Box Style  */
/* ===== FORM LAYOUT ===== */
.form_input {
	display: flex;
	align-items: stretch;
	gap: 10px;
	width: 100%;
	margin: 10px 0;
}
.form-group select {
	padding: 8px 40px 8px 10px;
	width: 100%;
	max-width: 440px;
	background-color: var(--black_color_6);
	border: 1px solid var(--black_color_8);
	border-radius: 10px;
	appearance: none;
	-webkit-appearance: none;
	-moz-appearance: none;
	background-image: url("../img/icons/expand_arrow.svg");
	background-repeat: no-repeat;
	background-position: right 12px center;
	background-size: 30px;
	font-weight: var(--font_weight_400);
	font-size: var(--font_size_16);
	line-height: var(--font_size_16_lineheight);
	letter-spacing: 0%;
	color: var(--primary_active_color);
}
.allow_check p{
font-weight: var(--font_weight_400);
font-size: var(--font_size_20);
line-height: var(--font_size_20_lineheight);
letter-spacing: 0%;
color: var(--body_text_color);
}
/* ===== INPUT AREA ===== */
.form-group {
  position: relative;
  flex: 1;
}
.select_input{
    flex: 1;
}
select {
  /* padding: 10px 40px 10px 10px; right space for icon */
  width: 100%;
  /* max-width: 440px; */
  background-color: var(--black_color_6) !important;
  border: 1px solid var(--black_color_8) !important;
  border-radius: 10px;
  margin: 10px 0;

  /* remove default arrow */
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;

  /* add custom arrow */
  background-image: url("../img/icons/expand_arrow.svg"); /* তোমার PNG path */
  background-repeat: no-repeat;
  background-position: right 12px center;
  background-size: 30px;
  font-weight: var(--font_weight_400) !important;
  font-size: var(--font_size_16) !important;
  line-height: var(--font_size_16_lineheight) !important;
  letter-spacing: 0%;
  color: var(--primary_active_color) !important;
}

.form-select {
	display: block;
	width: 100%;
	padding: 17px 20px 5px 13px !important;
	-moz-padding-start: calc(0.75rem - 3px);
	font-size: 1rem;
	font-weight: 400;
	line-height: 1.5;
	background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23343a40' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='M2 5l6 6 6-6'/%3e%3c/svg%3e");
	background-repeat: no-repeat;
	background-position: right .75rem center;
	background-size: 16px 12px;
	border-radius: .25rem;
	transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
	-webkit-appearance: none;
	-moz-appearance: none;
	appearance: none;
	height: 48px !important;
  border-radius: 10px !important;
}

/* input + textarea */
.input_fix_height{
    height: 44px;
}
input {
  width: 100%;
  height: 100%;
  padding: 8px 20px;
  border: 1px solid var(--input_border_color) !important;
  border-radius: 10px !important;
  outline: none;
  font-size: var(--font_size_18) !important;
  background: var(--input_bg_color) !important;
  transition: 0.3s;
  resize: none;
  font-weight: var(--font_weight_400) !important;
  color: var(--body_text_color);
  height: 48px !important;
}

.form-floating{
flex: 1;
}
.form-floating > label {
	height: 48px !important;
	padding: 10px 10px 10px 13px !important;
}
.SelectBox > label {
	height: 48px !important;
	padding: 20px 10px 10px 13px !important;
}
textarea {
  width: 100%;
  height: 150px !important;
  padding: 8px 20px;
  border: 1px solid var(--input_border_color) !important;
  border-radius: 10px !important;
  outline: none;
  font-size: var(--font_size_18) !important;
  background: var(--input_bg_color) !important;
  transition: 0.3s;
  resize: none;
  font-weight: var(--font_weight_400) !important;
  color: var(--body_text_color);
}
.form-select:focus {
	border-color: #86b7fe;
	outline: 0;
	box-shadow: 0 0 0 0 rgba(13,110,253,.25);
}
.form-control:focus {
	color: #212529;
	background-color: #fff;
	border-color: #86b7fe;
	outline: 0;
	box-shadow: 0 0 0 0 rgba(13,110,253,.25);
}

/* focus effect */
input:focus,
textarea:focus {
  background: var(--white_color) !important;
  border: 1px solid var(--input_border_Glow_color) !important;
}
.SelectBox_group select{
  /* font-size: var(--font_size_18) !important; */
  color: var(--body_text_color);
  color: var(--black_color) !important;
}
.min_my_h{
  height: 60px !important;
}
.SelectBox {
    position: relative;
  }

  .SelectBox .selected-flag {
    position: absolute;
    top: 64%;
    left: 10px;
    transform: translateY(-50%);
    pointer-events: none;
  }

  .SelectBox .country-select {
	padding-left: 35px !important;
	padding-top: 20px !important;
}
/* ===== FLOATING LABEL ===== */

.input_flex{
    display: flex;
    gap: 20px;
    width: 100%;
}
.without_eye_icon{
    flex: 1;
}
.input_flex .select_input select{
    max-width: unset;
    color: var(--body_text_color);
}
.text_flex_with_eye{
    display: flex;
    gap: 20px;
}
.text_flex_with_eye p{
    align-self: center;
font-weight: var(--font_weight_600);
font-size: var(--font_size_18);
line-height: var(--font_size_18_lineheight);
letter-spacing: 0%;
color: var(--text_color);
margin-bottom: 0px;
}
.without_eye_icon {
    width: 50%;
}
.with_eye_icon{
    flex: 1;
}
/* ===== HIDE CHECKBOX ===== */
.eye-input {
	position: absolute;
	opacity: 0;
	pointer-events: none;
	width: 48px !important;
}

/* ===== EYE TOGGLE BUTTON ===== */
.eye-toggle {
  width: 48px;
  min-width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--accent_color);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: 0.3s;
  border: 1px solid var(--alert_success_bg_color);
}

/* icon default (eye) */
.eye-toggle i::before {
  font-family: "FontAwesome";
  content: "\f06e"; /* eye */
  color: var(--white_color);
  font-size: 18px;
}

/* unchecked = eye-slash + red bg */
.eye-input:not(:checked) + .eye-toggle {
  background: var(--input_bg_color);
  border: 1px solid var(--input_border_color);
  color: var(--black_color) !important;
}

.eye-input:not(:checked) + .eye-toggle i::before {
  content: "\f070"; /* eye-slash */
  color: var(--black_color);
}

/* ===== SIMPLE ICON BOX (textarea case) ===== */
.form_input i.fa-eye {
  width: 50px;
  min-width: 50px;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
.form_submit_close_btn {
  margin-top: 50px;
}
/* ========== Config/From and Input Style Css End Here =====  */

.form_input.with_eye_icon {
    position: relative;
}

.form_input.with_eye_icon .form-control {
    padding-right: 3rem;
}

.password-eye-toggle {
    position: absolute;
    top: 50%;
    right: 0.9rem;
    transform: translateY(-50%);
    z-index: 5;
    width: 1.4rem;
    height: 1.4rem;
    padding: 0;
    border: 0;
    background: transparent;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

.password-eye-icon {
    width: 1.25rem;
    height: 1.25rem;
    display: block;
}