html {
	height: 100%;
	padding: 0px;
	margin: 0px;
}

* {
    scrollbar-width: thin;
    scrollbar-color: #EB7F1F #f0f0f0;
}
*::-webkit-scrollbar-thumb:hover {
    background-color: #cb6d1b;
}
*::-webkit-scrollbar-track {
    background-color: #f0f0f0;
    border-radius: 10px;
}


@font-face {
	font-family: title-font;
	src: url(Poppins/Poppins-Bold.ttf);
}

@font-face {
	font-family: sub-title-font;
	src: url(Poppins/Poppins-Medium.ttf);
}

@font-face {
	font-family: body-font;
	src: url(Poppins/Poppins-Regular.ttf);
}

:root{
	--primary-color: #042555;
	--secondary-color: #FF6900;
	--body-color: #000;
	--bg-white: #fff;
	--text-white: #fff;
	--link-color: #328ab3;
	--sub-body-color: #444;
	--sub-body-color2: #383838;
	--text-color: #7c7c7c;
	--body-bg-color: #f8f8f8;
	--bg-color: #f8f8f8;
  --bg-color2: #e7e7e7;
	--sub-white-color: #eeeeee;
	--close-color: #f00;
	--active-color: #090;
	--active-color2: #98CD99;
	--sub-text-color: #D7353A;



  --bowcares-orange: #ff6900;
    --text-dark: #15191d;
    --text-gray: #626870;
    --border-color: #eeeeee;
}


h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: title-font;
  padding: 0px;
  margin: 0px;
}

p {
  padding: 0px;
  margin: 0px;
}

ul {
  padding: 0px;
  margin: 0px;
}

body {
  margin: 0px;
  padding: 0px;
  font-family: body-font;
  font-size: 15px;
}

a {
  text-decoration: none;
  color: inherit;
}

/*------text field--------------------------------------------------------------------------------------------*/
.text_field_container {
  width: 100%;
  position: relative;
  height: 60px;
}

.text_field_container .placeholder {
  position: absolute;
  top: 55%;
  transform: translateY(-50%);
  left: 30px;
  color: #999;
  pointer-events: none;
  background: transparent;
  z-index: 100;
  height: 30px;
  width: calc(80% - 30px);
  transition: all 0.2s ease-in 0.2s;
}

.text_field_container .text_field {
  min-width: 100%;
  width: calc(100% - 60px);
  padding: 0px 30px;
  height: 60px;
  border: #e2e2e2 1px solid;
  background: var(--bg-white);
  font-size: 15px;
  border-radius: 10px;
  font-family: body-font;
  box-sizing: border-box;
  color: #1e1e1e;
  -webkit-text-fill-color: #1e1e1e;
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none !important;
}

.text_field_container .select_text_field {
  width: 100%;
}

.text_field_container .selectSearch {
  width: 100%;
}

.text_field_container:has(.select_text_field) {
  min-height: unset;
  height: 60px;
}

.text_field_container .text_field:focus {
  background: #fff;
  border: #ff6a00cc 1px solid;
}

.text_field_container .issue {
  background: #fff;
  border: #f00 1px solid;
}

.text_field_container .issueText {
  margin-top: 1px;
  color: #f00;
  font-family: body-font;
  font-size: 10px;
  font-style: italic;
}

.text_field_container .text_field:focus + .placeholder,
.text_field_container .text_field:not(:placeholder-shown) + .placeholder {
  height: auto;
  top: 20%;
  font-size: 11px;
  background: none;
}
.text_field_container .searchPanel {
  height: auto;
  overflow: auto;
  background: #fff;
  border: #ccc 1px solid;
  position: relative;
 z-index: 99999;
  border-radius: 5px;
  display: none;
  flex-direction: column;
  gap: 10px;
}

.text_field_container .searchPanel .searchTxt {
  width: calc(100% - 20px);
  height: 40px;
  border: none;
  border-bottom: #e2e2e2 1px solid;
  background: #f8f8f8;
  padding: 0px 10px;
  font-size: 12px;
  font-family: body-font;
  color: #1e1e1e;
  -webkit-appearance: none;
  -moz-appearance: none;
  outline: none !important;
  transition: all 0.2s ease-in 0.2s;
}

.text_field_container .searchPanel ul {
  margin: 0px;
  padding: 0px;
  display: flex;
  flex-direction: column;
  gap: 5px;
  min-height: 50px;
  max-height: 250px;
  overflow: auto;
}

.text_field_container .searchPanel ul li {
  list-style: none;
  padding: 20px;
  min-height: 10px;
  line-height: 10px;
  font-size: 13px;
  cursor: pointer;
  background: rgba(156, 156, 156, 0.1);
  transition: all 0.2s ease-in 0.2s;
  color: #444;
}

.text_field_container .searchPanel ul li:hover {
  color: var(--primary-color);
  padding-left: 30px;
}

/* Password toggle icon */
.toggle-password {
  position: absolute;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  cursor: pointer;
  color: var(--text-color);
  z-index: 200;
  display: none;
}

.toggle-password i {
  font-size: 16px !important;
}

/* Add space so text doesn't overlap icon */
.text_field_container .text_field[type="password"],
.text_field_container .text_field[type="text"] {
  padding-right: 55px;
}

/*--------------------------------------------------------------------------------------------------*/
#get-more-div {
  width: 100%;
  height: 100%;
  position: fixed;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px) brightness(0.8) contrast(1.2);
  -webkit-backdrop-filter: blur(10px) brightness(0.8) contrast(1.2);
  z-index: 900;
  overflow: auto;
  display: none;
}

#get-form-more-div {
  width: 100%;
  height: 100%;
  position: fixed;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px) brightness(0.8) contrast(1.2);
  -webkit-backdrop-filter: blur(10px) brightness(0.8) contrast(1.2);
  overflow: hidden;
  z-index: 900;
  display: none;
}

#get-more-div-secondary {
  width: 100%;
  height: 100%;
  position: fixed;
  background: rgba(0, 0, 0, 0.8);
  z-index: 950;
  display: none;
}

#get-more-third-layer {
  width: 100%;
  height: 100%;
  position: fixed;
  background: rgba(0, 0, 0, 0.8);
  z-index: 1000;
  display: none;
}

.alert-loading-div {
  min-height: 50px;
  padding: 0px 20px;
  font-size: 14px;
  color: #fff;
  cursor: pointer;
  background: rgba(0, 106, 53, 0.2);
  border: rgba(0, 106, 53, 1) 1px solid;
  border-radius: 5px;
  display: flex;
  gap: 10px;
  justify-content: center;
  align-items: center;
}

.ajax-loader {
  position: absolute;
  width: 60px;
  height: 60px;
  border-radius: 10px;
  background: none;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  overflow: hidden;
  z-index: 700;
}

.ajax-loader img {
  width: 100%;
  object-fit: cover;
}

/*--------------------------------------------------------------------------------------------------*/
.live-help-div {
  position: fixed;
  left: 2%;
  width: 60px;
  height: 80px;
  bottom: 15px;
  font-size: 10px;
  text-shadow: #000 1px 1px;
  color: #fff;
  text-align: center;
  font-weight: bold;
  line-height: 15px;
  cursor: pointer;
  -moz-transition: all 0.2s ease-in 02s;
  transition: all 0.2s ease-in 0.2s;
  -webkit-transition: all 0.2s ease-in 0.2s;
  -ms-transition: all 0.2s ease-in 0.2s;
  -o-transition: all 0.2s ease-in 0.2s;
  z-index: 300;
}
.live-help-div:hover {
  -moz-transform: scale(1.1) translate(1px, 0px);
  -webkit-transform: scale(1.1) translate(1px, 0px);
}

.live-help-div .pix-div {
  width: 56px;
  height: 56px;
  padding: 2px;
  background: #fff;
  box-shadow: 0px 0px 2px 1px rgba(0, 0, 0, 0.4);
  overflow: hidden;
  border-radius: 100%;
}
.live-help-div .pix-div img {
  width: 100%;
}

@media all and (max-width: 980px) {
 .live-help-div {
  bottom: 60px;
}
}

/*--------------------------------------------------------------------------------------------------*/
#back2Top {
  width: 40px;
  height: 30px;
  padding-top: 10px;
  position: fixed;
  z-index: 999;
  bottom: 100px;
  right: 2%;
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  background-size: 100%;
  background-position: left;
  transition:
    background-position 0.4s ease-in-out,
    transform 0.2s ease-in-out;
  color: #fff;
  display: none;
  cursor: pointer;
  text-align: center;
  font-size: 20px;
  border-radius: 7px;
  -moz-transition: all 0.2s ease-in 0.2s;
  transition: all 0.2s ease-in 0.2s;
  -webkit-transition: all 0.2s ease-in 0.2s;
  -ms-transition: all 0.2s ease-in 0.2s;
  -o-transition: all 0.2s ease-in 0.2s;
}

#back2Top:hover {
  background-size: 200% 100%;
  background-position: right;
  transform: scale(1.05); /* subtle hover grow */
}

/*------Media Link--------------------------------------------------------------------------------------------*/
.media-link-div {
  position: fixed;
  height: auto;
  width: 50px;
  right: 0px;
  top: calc(50% - 100px);
  z-index: 500;
}

.media-link-div li {
  list-style: none;
  width: 50px;
  font-size: 20px;
  color: #fff;
  background: #060;
  padding-top: 10px;
  height: 40px;
  text-align: center;
  -moz-transition: all 0.2s ease-in 0.2s;
  transition: all 0.2s ease-in 0.2s;
  -webkit-transition: all 0.2s ease-in 0.2s;
  -ms-transition: all 0.2s ease-in 0.2s;
  -o-transition: all 0.2s ease-in 0.2s;
  cursor: pointer;
  float: right;
}

.media-link-div li:hover {
  padding-right: 5px;
}

@media all and (max-width: 600px) {
  .media-link-div {
    display: none;
  }
}

/*----click acion alert----------------------------------------------------------------------------------------------*/
.all-alert-back-div {
  position: fixed;
  z-index: 2000;
  height: 1px;
  top: 0px;
  width: 100%;
  display: none;
  justify-content: center;
  align-items: center;
}

.all-alert-back-div .success-alert-div,
.all-alert-back-div .failed-alert-div {
  margin-top: 100px;
  min-height: 50px;
  font-size: 14px;
  color: #fff;
  cursor: pointer;
  background: #006a35;
  border-radius: 5px;
  display: flex;
  gap: 10px;
  justify-content: space-between;
}

.all-alert-back-div .success-alert-div .icon,
.all-alert-back-div .failed-alert-div .icon {
  width: 50px;
  border-radius: 5px 0px 0px 5px;
  background: #00ca65;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
}

.all-alert-back-div .success-alert-div .text,
.all-alert-back-div .failed-alert-div .text {
  width: calc(100% - 70px);
  padding-right: 10px;
  color: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: sub-title-font;
}

.all-alert-back-div .failed-alert-div {
  background: #6a0000;
}

.all-alert-back-div .failed-alert-div .icon {
  background: #ca0000;
}

.all-alert-back-div .failed-alert-div .text {
  color: #fff;
}

/*-------form alert div-------------------------------------------------------------------------------------------*/
.alert {
  width: calc(100% - 42px);
  border: rgba(231, 107, 46, 0.4) 1px solid;
  background: rgba(231, 107, 46, 0.05);
  padding: 10px 20px 10px 20px;
  font-size: 12px;
  line-height: 18px;
  color: #7f8c8d;
  margin: 20px auto;
  border-radius: 5px;
  font-family: body-font;
  color: var(--text-color);
}

.alert span {
  color: #3498db;
  cursor: pointer;
  font-size: 12px;
  font-family: sub-title-font;
}

.alert span i {
  font-size: 10px;
}

@media all and (max-width: 450px) {
  .alert span {
    font-size: 11px;
  }
}

.alert .alert-title {
  color: #3498db;
  font-size: 11px;
  font-weight: 500;
  font-family: sub-title-font;
}

.alert-success {
  border: rgba(46, 204, 113, 0.4) 1px solid;
  background: rgba(46, 204, 113, 0.05);
}

.alert-failed {
  border: rgba(231, 76, 60, 0.4) 1px solid;
  background: rgba(231, 76, 60, 0.05);
}

.alert .btn {
  height: 30px;
  margin: -5px 0px;
  padding: 0px 10px;
  border: none;
  border-radius: 3px;
  background: #2daae1;
  color: #fff;
  font-size: 11px;
  cursor: pointer;
  font-family: sub-title-font;
  transition: all ease 0.2s;
  -webkit-transition: all ease 0.2s;
  -ms-transition: all ease 0.2s;
  -o-transition: all ease 0.2s;
  -moz-transition: all ease 0.2s;
}

.alert .btn:hover {
  background: #444;
}

.alert .alert-list-div {
  width: calc(100% - 10px);
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 10px 0px;
}

.alert .alert-list-div .alert-list {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding: 5px 0px;
  border-bottom: #b6b6b6 1px dashed;
}

.alert .alert-list-div .alert-list span {
  font-family: body-font;
  font-size: 12px;
}

.alert .alert-details {
  font-family: body-font;
  font-size: 13px;
  line-height: 25px;
}

@media all and (max-width: 470px) {
  .alert {
    flex-direction: column;
    align-items: flex-start;
  }
  .alert .alert-list-div .alert-list span {
    font-size: 12px;
  }
  .alert .alert-list-div .alert-list {
    font-size: 12px;
  }
}

/*-----live chat and index menu---------------------------------------------------------------------------------------------*/
.sidenavdiv {
  width: 100%;
  height: 100%;
  position: fixed;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px) brightness(0.8) contrast(1.2);
  -webkit-backdrop-filter: blur(10px) brightness(0.8) contrast(1.2);
  z-index: 600;
  margin-left: -100%;
}

.sidenavdiv .sidenavdiv-in {
  width: calc(100% - 252px);
  height: 100%;
  right: 0px;
  position: absolute;
}

/*-----live chat---------------------------------------------------------------------------------------------*/
.live-chat-back-div {
  width: 250px;
  height: 100%;
  overflow: auto;
  position: fixed;
  background: rgba(255, 255, 255, 0.9);
  padding-top: 50px;
  margin-left: -100%;
  z-index: 650;
}

.live-chat-back-div .chat-div {
  padding: 5px 5px 5px 20px;
  -moz-transition: all 0.2s ease-in 02s;
  transition: all 0.2s ease-in 0.2s;
  -webkit-transition: all 0.2s ease-in 0.2s;
  -ms-transition: all 0.2s ease-in 0.2s;
  -o-transition: all 0.2s ease-in 0.2s;
  cursor: pointer;
}

.live-chat-back-div .chat-div:hover {
  padding-left: 15px;
  background: rgba(255, 255, 255, 0.3);
}

.live-chat-back-div .chat-div .icon-div {
  height: 32px;
  width: 40px;
  font-size: 24px;
  padding-top: 8px;
  text-align: center;
  color: #fff;
  float: left;
  border-radius: 100%;
}

.live-chat-back-div .chat-div .text {
  height: 30px;
  margin: 5px;
  float: left;
  background: #fff;
  box-shadow: 0px 0px 2px 1px rgba(204, 204, 204, 0.6);
  color: #000;
  line-height: 30px;
  padding: 0px 10px 0px 10px;
  border-radius: 10px;
}




/*----------- INDEX MENU ------------------------------------------------*/
.index-menu-back-div {
    width: 330px;
    height: calc(100% - 100px);
    position: fixed;
    left: 0;
    top: 0;
    display: flex;
    align-items: center;
    flex-direction: column;
    background: #ffffff;
    z-index: 2500;
    margin-left: -100%;
    box-shadow: 8px 0 30px rgba(0, 0, 0, 0.08);
    gap: 20px;
    overflow: auto;
    padding-bottom: 100px;
}


.index-menu-back-div .top-div {
    width: 100%;
    min-height: 85px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid #f0f0f0;
    padding: 10px 0px;
    flex-shrink: 0;
}

.index-menu-back-div .top-div .logo-div {
    width: 190px;
    overflow: hidden;
}

.index-menu-back-div .top-div .logo-div img {
    width: 100%;
    object-fit: cover;
}

.index-menu-back-div .div-in {
    width: 100%;
    display: flex;
    flex-direction: column;
    padding: 10px 0;
}

.index-menu-back-div .div-in::-webkit-scrollbar {
    width: 0;
}

.index-menu-back-div .div-in .div {
    width: 100%;
    border-bottom: 1px solid #eeeeee;
    transition: all 0.2s ease;
}

.index-menu-back-div .div-in .div:hover {
    background: #fff8f3;
}

.index-menu-back-div .div-in .div li {
    min-height: 60px;
    display: flex;
    align-items: center;
    padding: 0 25px;
    gap: 10px;
    list-style: none;
    color: var(--primary-color);
    font-size: 15px;
    font-family: sub-title-font;
    cursor: pointer;
}

.index-menu-back-div .div-in .div li i{
    color: var(--secondary-color);
    font-size: 17px;
}

.index-menu-back-div .div-in .div #active-li {
    margin: 5px 15px;
    min-height: 58px;
    border-radius: 12px;
    background: #fff4ed;
    color: var(--secondary-color);
}

.index-menu-back-div .div-in .div #active-li i {
    color: var(--secondary-color);
}

.index-menu-back-div .div-in .div li #side-expand {
    width: auto;
    margin: 0;
    color: var(--secondary-color);
    font-size: 18px;
}

.index-menu-back-div .div-in .div .sub-li {
    width: calc(100% - 50px);
    margin: 0 auto 10px;
    display: none;
}


.index-menu-back-div .div-in .div .sub-li li {
    min-height: auto;
    padding: 10px 15px;
    font-size: 13px;
    border-radius: 6px;
}


.index-menu-back-div .div-in .div .sub-li li:hover {
    background: #fff4ed;
}

.mobile-menu-button-wrapper {
    width: calc(90% - 40px);
    display: flex;
    flex-direction: column;
    gap: 18px;
    padding: 13px 20px;
    border-radius: 15px;
    background: linear-gradient(
        135deg,
        #fffaf7,
        #fff4ed
    );
    box-shadow: 0 -5px 20px rgba(0, 0, 0, 0.04);
}

.mobile-menu-button-wrapper .heading-title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 15px;
}

.mobile-menu-button-wrapper .heading-title .content {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.mobile-menu-button-wrapper .heading-title .content h3 {
    color: var(--primary-color);
    font-size: 15px;
    font-family: sub-title-font;
}

.mobile-menu-button-wrapper .heading-title .content p {
    color: var(--sub-body-color);
    font-size: 13px;
    line-height: 1.5;
}

.mobile-menu-button-wrapper .heading-title .menu-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.mobile-menu-button-wrapper .heading-title .menu-icon i {
    color: var(--secondary-color);
    font-size: 45px;
    transform: rotate(-10deg);
}

.mobile-menu-button-wrapper .alert-menu-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}


.mobile-menu-button-wrapper .alert-menu-buttons a {
    width: 100%;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.25s ease;
}

.mobile-menu-button-wrapper .alert-menu-buttons .get-started-btn {
    color: var(--text-white);
    background: var(--secondary-color);
    border: 1px solid var(--secondary-color);
}


.mobile-menu-button-wrapper .alert-menu-buttons .get-started-btn:hover {
    background: var(--primary-color);
    border-color: var(--primary-color);
}


.mobile-menu-button-wrapper .alert-menu-buttons .get-started-btn i {
    font-size: 20px;
}
.mobile-menu-button-wrapper .alert-menu-buttons .join-team-btn {
    color: var(--secondary-color);
    background: var(--bg-white);
    border: 2px solid var(--secondary-color);
}

.mobile-menu-button-wrapper .alert-menu-buttons .join-team-btn:hover {
    color: var(--text-white);
    background: var(--secondary-color);
}

.mobile-menu-button-wrapper .alert-menu-buttons .join-team-btn i {
    font-size: 18px;
}

.empty-state-div {
  padding: 40px 50px;
  width: calc(100% - 100px);
  background: #f8f8f8;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: var(--primary-color);
  border: 1px solid rgba(204, 204, 204, 0.3);
}

.empty-state-div .btn {
  border: none;
  height: 40px;
  font-size: 13px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  border-radius: 25px;
  font-family: sub-title-font;
  padding: 0px 20px;
  color: var(--bg-white);
  background: linear-gradient(
    90deg,
    var(--primary-color),
    var(--secondary-color)
  );
  background-size: 100%;
  background-position: left;
  transition:
    background-position 0.4s ease-in-out,
    transform 0.2s ease-in-out;
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.1);
}

.empty-state-div .btn i {
  font-size: 10px;
}

.empty-state-div .btn:hover {
  background-size: 200% 100%;
  background-position: right;
  transform: scale(1.05); /* subtle hover grow */
}

.empty-state-div .icon {
  width: 120px;
  height: 120px;
  border-radius: 100%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}

.empty-state-div .icon img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.empty-state-div p {
  font-size: 15px;
  font-family: sub-title-font;
}

.content-loading-div {
  width: 100%;
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.content-loading-div img {
  width: 60px;
  height: 60px;
}

.successful-div {
  min-height: 300px;
  width: 400px;
  min-width: 350px;
  background: var(--bg-white);
  border-radius: 8px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.successful-div .success-in {
  padding: 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
}

.successful-div .success-in .gif {
  width: 90px;
  height: 90px;
  overflow: hidden;
}

.successful-div .success-in .gif img {
  width: 100%;
  object-fit: cover;
}

.successful-div .success-in h3 {
  color: var(--sub-body-color);
  font-size: 18px;
  margin: 0px;
  padding: 0px;
  font-family: sub-title-font;
}

.successful-div .success-in .btn {
  width: 100%;
  height: 45px;
  background: var(--primary-color);
  color: var(--text-white);
  border: none;
  border-radius: 5px;
  cursor: pointer;
  font-size: 15px;
  font-family: body-font;
  transition: all 0.2s ease-in 0.2s;
}

.successful-div .success-in .btn:hover {
  background: var(--secondary-color);
  color: var(--text-white);
}

@media all and (max-width: 450px) {
  .successful-div {
    width: 94%;
    min-width: 200px;
  }
  .successful-div .success-in {
    padding: 20px;
  }
  .successful-div .success-in h3 {
    font-size: 15px;
  }
}

/* Modal Layout */ /* /////////////////////////////////////////////////////////////////////////////////////////////////////// */
.modal-overlay {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(5px);
  -webkit-backdrop-filter: blur(5px);
  backdrop-filter: blur(5px) brightness(0.8) contrast(1.2);
  -webkit-backdrop-filter: blur(5px) brightness(0.8) contrast(1.2);
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 1000;
}
.modal-overlay .modal-box {
  width: calc(90% - 80px);
  max-width: 400px;
  background: var(--bg-white);
  border-radius: 10px;
  padding: 40px;
  text-align: center;
  position: relative;
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 15px;
}
.modal-overlay .modal-box .modal-icon {
  width: 70px;
  height: 70px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 30px;
  color: var(--text-white);
}
.modal-overlay .modal-box .bg-warning {
  background-color: var(--secondary-color);
}
.modal-overlay .modal-box .bg-success {
  background-color: var(--active-color);
}
.modal-overlay .modal-box .bg-danger {
  background-color: var(--close-color);
}
.modal-overlay .modal-box .bg-info {
  background-color: var(--link-color);
}
.modal-overlay .modal-box h3 {
  font-size: 25px;
  font-family: sub-title-font;
  color: var(--sub-body-color2);
}
.modal-overlay .modal-box p {
  font-size: 14px;
  color: var(--text-color);
  font-family: body-font;
}
.modal-overlay .modal-box .btn-div {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.modal-overlay .modal-box .btn-div {
  width: 100%;
  display: flex;
  justify-content: center;
  gap: 10px;
}
.modal-overlay .modal-box .btn-div .btn {
  border: none;
  width: 100%;
  height: 55px;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
  border-radius: 30px;
  padding: 0px 25px;
  font-family: sub-title-font;
  font-size: 16px;
  color: var(--text-white);
  background: var(--primary-color);
  background-size: 100%;
  background-position: left;
  transition: background-position 0.4s ease-in-out, transform 0.2s ease-in-out;
  box-shadow: 0px 0px 40px rgba(0, 0, 0, 0.1);
  white-space: nowrap;
}
.modal-overlay .modal-box .btn-div .btn:hover {
  background-size: 200% 100%;
  background-position: right;
  transform: scale(1.05); /* subtle hover grow */
}
.modal-overlay .modal-box .btn-div .false-btn {
  background: linear-gradient(90deg, #faf5e5, #fff);
  color: var(--body-color);
  border: 1px solid rgba(0, 0, 0, 0.2);
}

@media all and (max-width: 500px) {
  .modal-overlay .modal-box .btn-div {
    flex-direction: column;
  }
  .modal-overlay .modal-box .btn-div .btn {
    width: 100%;
  }
}

@media all and (max-width: 400px) {
  .modal-overlay .modal-box .btn-div .btn {
    width: 100%;
    font-size: 14px;
  }
  .modal-overlay .modal-box h3 {
    font-size: 23px;
    line-height: 27px;
  }
}

.modal-preloader {
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-white);
  font-family: sub-title-font;
  font-size: 15px;
  padding: 0px 40px;
}

.spinner {
  width: 35px;
  height: 35px;
  border: 5px solid #dfdfdf;
  border-top: 5px solid var(--primary-color);
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 10px;
}

@keyframes spin {
  100% {
    transform: rotate(360deg);
  }
}



.webcam-div {
  width: 100%;
  height: 100%;
  position: fixed;
  background: rgba(0, 0, 0, 0.3);
  z-index: 2000;
  display: none;
}

.webcam-div .div-in {
  width: 100%;
  height: 100%;
  position: absolute;
  display: flex;
  align-items: center;
  justify-content: center;
}

.webcam-div .webcam-div-in {
  width: 270px;
  min-height: 270px;
  background: #fff;
  padding: 10px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  gap: 15px;
}

.webcam-div .webcam-div-in .btn {
  border: none;
  height: 45px;
  min-width: 150px;
  padding: 0px 20px;
  font-family: sub-title-font;
  background: var(--primary-color);
  color: var(--text-white);
  cursor: pointer;
  transition: all 0.2s ease-in 0.2s;
  border-radius: 5px;
}

.webcam-div .webcam-div-in .btn:hover {
  background: var(--secondary-color);
}