
:root {
--core-primary:   #7699F5;                    /* primary        */
--core-rgb-prim:  rgba(118,153,245, 0.5);     /* primary rgbs   */
--core-bg-medium: #2F3D62;                    /* primary medium */
--core-bg-dark:   #121f29;                    /* primary dark   */

--core-bg-gray1:  #f8f8f8;  /* gray light  */
--core-bg-gray2:  #b9baba;  /* gray medium */
--core-bg-gray3:  #434545;  /* gray dark   */

--core-text:      #f6f6f6;  /* bg text */

--core-radius:    0px;
--core-radius-sm: 0px;
--core-radius-lg: 20px;

--core-img-1:     url(/web_appt/top/imgs_top/slider-bg-1.png);
--core-img-2:     url(/web_appt/top/imgs_top/slider-bg-2.png);
--core-gradient:  linear-gradient(  rgba(255, 255, 255, 0), rgba(0, 0, 0, 0)  );
}

.dark-mode {
  background-color: var(--core-bg-dark);
  color: #ffffff;
}

body.dark-mode a:not(.alpha-btn) {color: var(--core-text);}
.dark-mode .box-icon-modern-icon {color: var(--core-text);}
.dark-mode .box-comment-text     {color: var(--core-text);}
.dark-mode .contacts-modern-icon {color: var(--core-text);}
.dark-mode .owl-next             {color: var(--core-text);}
.dark-mode .owl-prev             {color: var(--core-text);}

.dark-mode .bg-gray-100         {background-color: var(--core-bg-medium);}
.dark-mode .section-login       {background-color: var(--core-bg-medium);}
.dark-mode .form-input          {background-color: var(--core-bg-gray1);}
.dark-mode .background-custom-1 {background-color: var(--core-bg-dark);}

.dark-mode .overlay-bg::before  {background-color: rgba(64, 114, 148, 0);}


.overlay-bg {
  position: relative;   /* Ensure the pseudo-element is positioned relative to this element */
  z-index: 1;           /* Ensure the content stays above the overlay */
}
.overlay-bg::before {
  content:  "";         /* Required for pseudo-elements */
  position: absolute;   /* Position the overlay over the section */
  z-index:  -1;         /* Place overlay behind the content */
  top:    0;
  left:   0;
  width:  100%;
  height: 100%;
  background: var(--core-gradient);
}

.page-bg-img {
  background: var(--core-img-1) no-repeat center center;
  background-size: cover;
}
.page-bg-img-2 {
  background: var(--core-img-2) no-repeat center center;
  background-size: cover;
  background-position: center center;
  height: 20vh;
}

.page-bg-video {

}


.preloader {
  position: fixed;
  z-index:  10000;
  left:   0;
  top:    0;
  bottom: 0;
  right:  0;
  transition:  .3s all ease;
/*transition:  opacity 0.3s ease-out;*/
  color:       var(--core-bg-gray1);
  display:     flex;
  justify-content: center;
  align-items:     center;
  padding: 20px;

/*background: var(--core-primary);*/
  background: var(--core-gradient),  var(--core-img-1) no-repeat center center;
  background-size: cover;
}
.preloader.loaded {opacity: 0;  visibility: hidden;}
.preloader-body   {text-align: center;}
.preloader-body p {position: relative; right: -8px;}
* + .preloader-title {margin-top: 20px;}

.cssload-spinner {
  display:   flex;
  flex-wrap: wrap;
  justify-content: space-between;
  position: relative;
  margin:   auto;
  width:  100px;
  height: 100px;
}

.cssload-cube {
  background-color: var(--core-bg-gray1);
  width:  15px;
  height: 15px;
  margin-left:   10px;
  margin-bottom: 10px;
  animation: cssload-cubemove 4.6s infinite ease-in-out;
}
.cssload-cube1  { animation-delay: 0.23s;}
.cssload-cube2  { animation-delay: 0.46s;}
.cssload-cube3  { animation-delay: 0.69s;}
.cssload-cube4  { animation-delay: 0.23s;}
.cssload-cube5  { animation-delay: 0.46s;}
.cssload-cube6  { animation-delay: 0.69s;}
.cssload-cube7  { animation-delay: 0.92s;}
.cssload-cube8  { animation-delay: 0.46s;}
.cssload-cube9  { animation-delay: 0.69s;}
.cssload-cube10 { animation-delay: 0.92s;}
.cssload-cube11 { animation-delay: 1.15s;}
.cssload-cube12 { animation-delay: 0.69s;}
.cssload-cube13 { animation-delay: 0.92s;}
.cssload-cube14 { animation-delay: 1.15s;}
.cssload-cube15 { animation-delay: 1.38s;}

@keyframes cssload-cubemove {
  35% { transform: scale(0.005); }
  50% { transform: scale(1.7);   }
  65% { transform: scale(0.005); }
}

.grp-tools {
  position: fixed;
  display:  flex;
  z-index:  1100;
  top:      0;
  right:    455px;
  padding: 0 10px 0 8px;
  border-radius:    var(--core-radius);
  background-color: var(--core-primary);
  align-items:      center;  /* Ensures vertical alignment */
}
.icon-btn {
  display: flex;
  border:  none;
  color:   var(--core-text);
  padding: 0;
  cursor:  pointer;
  padding: 0 7px 0 7px;
  align-items: center;  /* Align icons vertically */
  background:  none;
}
@media (max-width: 576px) {
  .grp-tools {
    right:         75px;
    border-radius: 0;
  }
  .icon-btn {
    font-size:   10px;  /* Smaller icon size on mobile */
    margin-left: 10px;  /* Reduced margin between buttons */
    padding:     0;
  }
}

.btn-bg-w {
  visibility:       visible; 
  animation-name:   fadeInUp;
  padding:          0 8px 0 8px;
  background-color: white;
  border-radius:    var(--core-radius);
/*border-radius:    var(--core-radius) var(--core-radius) 0 0; */
/*background-color: white; */
}

.client-pic {
 background-color: var(--core-bg-gray1);
 border-radius: var(--core-radius);
}

.img-box {
  border-radius: var(--core-radius);
  overflow: hidden;
}

.section-login {
  background-color: var(--core-bg-medium);
}
.boot-frm{
  background-color: white; 
  background-color: var(--core-bg-gray1);
  border-radius:    var(--core-radius-sm);
}

.fs8  {font-size:  8px;}
.fs10 {font-size: 10px;}
.fs12 {font-size: 12px;}
.fs14 {font-size: 14px;}
.fs16 {font-size: 16px;}
.fs18 {font-size: 18px;}
.fs20 {font-size: 20px;}
.fs22 {font-size: 22px;}
.fs24 {font-size: 24px;}
.fs26 {font-size: 26px;}
.fs28 {font-size: 28px;}


.info-w-page {
  min-height:       100vh;
  display:          flex;
  flex-direction:   column;
  justify-content:  center;
  align-items:      center;
  text-align:       center;
  background-color: #f8f9fa;
}
.logo {
  max-width:     100px;
  margin-bottom: 20px;
}
.info-w-content {
  max-width:   600px;
}

.more_btn {
  background-image: linear-gradient(to right, #6fbcfe 0%, #998dff 51%, #6fbcfe 100%);
  padding: 0px 46px;
  background-size: 200% auto;
  z-index: 2;
  display: inline-block;
  transition: all 400ms ease-out;
  text-align:  center;
  color:       #fff;
  font-size:   15px;
  font-family: "Roboto", sans-serif;
  line-height: 55px;
  border: 6px solid rgba(204, 241, 255, 0.5);
  border-radius: 33px;
}
.more_btn:hover {
  background-position: right center;
  color: #fff;
}

.solid_btn {
  background: #6fbcfe;
  padding:    0px 53px;
  z-index:    2;
  display:    inline-block;
  transition: all 400ms ease-out;
  text-align:  center;
  color:       #fff;
  font-size:   15px;
  font-family: "Roboto", sans-serif;
  line-height: 55px;
  border: 6px solid rgba(204, 241, 255, 0.5);
  border-radius: 33px;
}
.solid_btn:hover {
  background-position: right center;
  color: #fff;
}

.submit_btn {
  background-image: linear-gradient(to right, #70bafe 0%, #998dff 51%, #70bafe 100%);
  background-size: 200% auto;
  z-index: 2;
  width:   250px;
  padding: 0px;
  display: inline-block;
  transition: all 400ms ease-out;
  text-align: center;
  outline:    none !important;
  box-shadow: none !important;
  color:      #fff;
  font-size:  15px;
  font-family: "Roboto", sans-serif;
  line-height:   45px;
  border:        7px solid rgba(240, 240, 240, 0.5);
  border-radius: 15px;
}
.submit_btn:hover {
  background-position: right center;
  color:  #fff;
  border: 7px solid rgba(204, 241, 255, 0.5);
}
.submit_btn:focus {
  box-shadow: none;
  outline:    none;
  color:      #fff;
  border:     6px solid rgba(234, 249, 255, 0.5);
}


.strength-meter {
    width: 100%;
    height: 5px;
    background-color: #ddd;
    border-radius: 5px;
    margin-top: 5px;
}
.strength-bar {
    height: 100%;
    width: 0;
    border-radius: 5px;
    transition: width 0.3s ease, background-color 0.3s ease;
}

.show-pass.eye {
    cursor:    pointer;
    color:     #6c757d;     /* Bootstrap secondary color for icons */
    font-size: 1rem;        /* Adjust icon size as needed */
}
.form-control.pe-5 {
    padding-right: 3rem;    /* Space for the icon */
}
.show-pass.eye:hover {
    color: #7699F5;         /* Add hover effect */
}

