:root {
    --main_color: #ff3f62;
    --white_color: #fff;
    --black_color: #000;
    --font_cairo: "Cairo", sans-serif;
  }
body{
    font-family: var(--font_cairo);
    background-image: url(../img/backgrounds/dots.webp);
}
a {
    text-decoration: none;
    color: var(--black_color);
    transition: color 0.3s;
    
  }
  h1,
  h2,
  h3,
  h4,
  h5,
  h6 {
    font-weight: bold;
  }
  p{line-height: 1.8;}
  p,
  h1,
  h2,
  h3,
  h4,
  h5,
  h6,
  small,
  span,
  li {
    
    margin-bottom: 0;
  }
  small {
    color: var(--white_color);
    font-size: 15px;
    font-weight: bold;
    display: block;
  }
  i {
    color: var(--white_color);
    cursor: pointer;
    transition: color 0.3s;
  }
ul {
    list-style: none;
    margin-bottom: 0;
}
.fa-times{
    font-size: 20px;
    color: var(--white_color);
}
ul li:hover {
    color: #e94364 !important;
    cursor: pointer;
}
.main-heading {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    margin-bottom: 5rem;
    text-align: center;
  }
  .main-heading h2 {
    font-size: 2rem;
    color: var(--main_color);
    font-weight: bold;
    margin-bottom: 1rem;
  }
  .main-heading p {
    font-size: 1.2rem;
    text-align: center;
    color: #4a4a4a;
  }
  @media (max-width: 767px) {
    .main-heading h2 {
      font-size: 2rem;
    }
  }
.form-control:focus,
button:focus {
  box-shadow: 0 0 0 0.25rem rgb(236 82 82 / 25%) !important;
  border-color: var(--main_color) !important;
}
::selection{
  background-color: var(--main_color);
  color: var(--white_color);
}
body::-webkit-scrollbar,
.offcanvas-body::-webkit-scrollbar,
.modal::-webkit-scrollbar {
width: 0.8rem;
}
body::-webkit-scrollbar-track,
.offcanvas-body::-webkit-scrollbar-track,
.modal::-webkit-scrollbar-track  {
background: rgb(250, 207, 207);
}
body::-webkit-scrollbar-thumb,
.offcanvas-body::-webkit-scrollbar-thumb,
.modal::-webkit-scrollbar-thumb {
background-color: var(--main_color);
border-radius: 20px;
border: 5px solid #c6146a31;
}
/* End */
/* For Loading */
.loading {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: -webkit-gradient(
    linear,
    left bottom,
    right top,
    from(var(--main_color)),
    to(#c61469)
  ) !important;
  background: linear-gradient(to top right, #ff264d, #c61469) !important;
  z-index: 999999999999999;
  display: flex;  
}
.loading img{
  width: 75px;
  animation: lds-heart 1.2s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}

@keyframes lds-heart {
  0% {
    transform: scale(0.95);
  }
  5% {
    transform: scale(1.1);
  }
  39% {
    transform: scale(0.85);
  }
  45% {
    transform: scale(1);
  }
  60% {
    transform: scale(0.95);
  }
  100% {
    transform: scale(0.9);
  }
}

/*End For Loading */
/* Start Logo */
.logo{
  position: relative;
  background-color: var(--white_color);
  z-index: 100;
  border-bottom: 1px solid #cccccc4d;
}
.logo a {
  display: flex;
  justify-content: center;
  align-items: center;
}
.logo img {
  width: 45px;
  margin-left: 0.5rem;
  animation: puls 0.7s linear infinite;
}
@keyframes puls {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(1.1);
  }
}
.logo h3 {
  font-size: 1rem;
  margin-bottom: 2px !important;
  font-weight: bold;
  color: var(--main_color);
}
.logo small{
  color: var(--main_color);
  font-size: small;
}
/* End Logo */

/******************************** Start DashHistory Navbar ********************************/
.dashHistory-navbar{
  background-color: var(--white_color);
}

.dashHistory-navbar nav ul li a{
    color: var(--black_color);
    transition: color 0.3s;
}
.dashHistory-navbar nav li:hover a,
.dashHistory-navbar nav li:hover i{
  color: var(--main_color) !important;
}
.dashHistory-navbar nav .fa-bars {
    color: var(--black_color);
    font-size: 18px;
    transition: color 0.3s;
    padding-left: 20px;
}
.dashHistory-navbar nav .bars:hover {
    color: var(--main_color);
}
.links_active{
  color: var(--main_color) !important;
}
.clone_links_active{
  color: var(--main_color) !important;
}
/* For Clone Navbar */
#main-nav{
  position: absolute;
  width: 100%;
  background-color: var(--white_color);
  z-index: 99;
}
#nav-clone{
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: var(--white_color);
  -webkit-transform: translateY(-129.7px);
  transform: translateY(-129.7px);
  transition: all 0.4s;
  z-index: 98;
}
#nav-clone.is-active {
  -webkit-transform: translateY(0);
  transform: translateY(0);
  top: 0;
  left: 0;
}
#nav-clone a{
  color: var(--black_color);
  transition: color 0.3s;
}
#nav-clone i{
  color: var(--black_color);
}
#nav-clone li:hover a,
#nav-clone li:hover i{
color: var(--main_color) !important;
}
#nav-clone .fa-bars {
  color: var(--black_color);
  font-size: 18px;
  transition: color 0.3s;
}
#nav-clone .bars:hover {
  color: var(--main_color);
}
/* End For Clone Navbar */
/* Start offcanvas  */
.offcanvas-top .offcanvas-header .logo{
  border-bottom:none !important;
}
.offcanvas-top .offcanvas-header .logo h3 {
  color: var(--main_color);
  font-size: 1rem;
}
.offcanvas-top .offcanvas-header .logo img {
  width: 35px;
}
.offcanvas-top .offcanvas-header i {
  font-size: 20px;
  font-weight: bold;
  color: var(--main_color);
}
.offcanvas-top .offcanvas-body{
  direction: rtl;
}
.offcanvas-top .offcanvas-body .canv_links a {
  display: block;
  font-size: 1rem;
  padding: 0.5rem;
  color: var(--black_color);
}
.offcanvas-top .offcanvas-body .canv_links i {
  color: var(--main_color);
}
/* End */
/******************************** End DashHistory Navbar ********************************/

/* Start DashHistory */
#dashHistory{
  padding: 6rem 0 3rem;
}
.blood{
    background-image: url(../img/backgrounds/header.svg);
    background-size: cover;
    background-position: center;
    position: relative;
    box-shadow: 0 5px 20px 0 rgba(0 0 0 /30%);
    background-color: var(--white_color);
    border-radius: 5px;
    color: var(--white_color) !important;
}
.blood .blood-title{
    padding: 1.5rem;
    text-align: center;
    color: var(--white_color);
}
.blood .blood-info label{
  color: var(--white_color);
  font-weight: bold;
  margin-bottom: 0.5rem;
}
.blood .form-group {
  position: relative;
}
.blood .form-control{
  padding-right: 40px !important;
  text-align: end;
  color: gray;
  font-size: 18px;
  font-weight: 400;
}
.blood .total-price{
    padding-right: 3.8rem !important;
}
.blood .form-control:focus {
  border-color: var(--main_color);
  -webkit-box-shadow: 0px 0px 0px 2px #e84a7f57 !important;
  -moz-box-shadow: 0px 0px 0px 2px #e84a7f57 !important;
  box-shadow: 0px 0px 0px 2px #e84a7f57 !important;
}
.blood .field-icon {
  position: absolute;
  font-size: 20px;
  right: 10px;
  top: 7px;
  text-shadow: 3px 3px 0px #f48fd540;
}
.blood .field-icon i{
  color: var(--main_color) !important;
}
.btn-send{
  font-family: var(--font_cairo);
  width: fit-content;
  background-color: var(--white_color);
  color: var(--main_color);
  padding: 0.3rem 1.5rem;
  font-size: 15px;
  border-radius: 20px;
  border: 0;
  transition:background-color 0.3s linear;
  font-weight: bold;
  transition: box-shadow 0.3s ,color 0.3s;
}
.btn-send:hover{
    color: var(--black_color);
    box-shadow: 0px 0px 0px 5px #6b213a5e !important;
}

/* End DashHistory */

/******************************** Start footer ********************************/
footer {
  background: var(--black_color);
}
footer .items {
  text-align: right;
  color: var(--white_color);
}
footer .padd {
  padding-top: 0.5rem;
}
footer .items h3 {
  font-size: 1.3rem;
  font-weight: bold;
  margin-bottom: 1rem;
}
footer .foot_logo {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  margin-bottom: 0.5rem;
}
footer .foot_logo img {
  width: 50px;
  margin-left: 0.5rem;
}
footer .foot_logo h3 {
  font-size: 1.3rem;
  margin-bottom: 0 !important;
  font-weight: bold;
}
footer .links a {
  display: block;
  color: var(--white_color);
  padding: 0.2rem 0;
  
}
footer .links a:hover {
  color: var(--main_color);
}
footer form {
  position: relative;
  
}
footer .form-control {
  border: 1px solid #eee !important;
  text-align: end;
  border-radius: 20px;
}
footer .form-control:focus {
  box-shadow: 0 0 0 0.25rem #ec407a9c !important;
}
footer .btn {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  font-weight: bold;
  
  border-top-right-radius: 0px !important;
  border-bottom-right-radius: 0px !important;
  background: -webkit-gradient(
    linear,
    left bottom,
    right top,
    from(var(--main_color)),
    to(#c61469)
  ) !important;
  background: linear-gradient(to top right, var(--main_color), #c61469) !important;
  color: var(--white_color);
}
footer .btn:hover {
  color: var(--white_color) !important;
}
footer form .btn{
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}
.foot_copyright .btn-group .dropdown-menu {
  inset: -70px auto auto !important;
  transform: translate(0) !important;
}
.foot_copyright .foot_links {
  display: flex;
  align-items: center;
}
.foot_copyright .foot_links i:hover {
  color: var(--main_color);
}
footer .foot_copyright .Copyright {
  text-align: end;
  color: var(--white_color);
}
footer .foot_copyright .Copyright a {
  color: var(--white_color);
  font-weight: bold;
}
footer .foot_copyright .Copyright a:hover {
  color: var(--main_color);
}
/******************************** End Footer ********************************/