

/* small {
    color: var(--black_color);
    font-size: 15px;
    font-weight: bold;
    display: block;
    transition:all ease-in-out .3s ;
}
small:hover{
    color: var(--main_color);
}

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: gray ;
    cursor: pointer;
}

a {
    text-decoration: none;
    color: black;
    transition: color 0.3s;
     */


: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);
  
}
/******************* Start main Global ********************/
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;
}
.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 main Global ********************/
small {
  color: gray;
}
/* 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 Portfolio */
#history{
  padding: 8rem 0 3rem;
}
.history .nav {
    border: none !important;
    padding: 0 15px !important;
    border-radius: 30px;
    direction: rtl;
}

.history .nav button {
    border: none !important;
}

.history .nav .active {
    color: #FF3F62 !important;
}

.history .nav .nav-link {
    color: black;
    font-size: 16px;
    font-weight: 600;
}

.history .history-img{
    width: 500px;
}

.history .history-img img{
    width: 60%;
}
 .history.history-img:hover .over {
    opacity: 1;
}

.history .history-img:hover .over-link {
    opacity: 1;
}
.mix
{
    padding: 15px 15px;
} 
/* End Portfolio */

/* Start DashHistory */
#dashHistory{
    padding: 6rem 0 2rem;
  }
  #dashHistory small{
      color: #c5c5c5;
  }
  #dashHistory h2 {
      color: #e94364;
  }
  
  .post {
      border-radius: 10px;
      box-shadow: 0 6px 20px 0 rgba(0 0 0 /25%);
  }
  
  .per-inf {
      margin-right: 20px;
  }
  
  .per-inf h3,
  .details-inf h3 {
      margin: 2px 0;
      font-weight: 500;
      color: #222;
      font-size: 1rem;
      text-transform: capitalize;
  }
  
  .per-inf p,
  .details-inf p {
      color: gray;
  }
  
  .per-img img {
      width: 45px;
      box-shadow: 0 0 8px 0 rgb(0 0 0 / 12%);
      border-radius: 50%;
  }
  
  .details {
      padding: 1rem;
      background-color: #f4f4f4;
  }
  
  .details span {
      font-size: 3rem;
      color: #e94364;
      font-weight: bold;
  }
  
  .contact {
    border-top: 1px solid #eee;
}

.contact ul li button{
  border: 0;
  border-radius: 20px;
  padding: 0.2rem 1.2rem;
  background: var(--main_color);
  color: var(--white_color);
  font-size: 13px;
  border: 2px solid var(--main_color);
  transition: all 0.3s linear;
}
.contact ul li button:hover{
  background-color: var(--white_color);
  border: 2px solid var(--black_color);
  color: black;
}
.contact ul li button:hover i{
  color: black;
}
@media (max-width:576px) {
    .contact ul li button{
      padding: 0.2rem 0.8rem;
    }
}
  /* Start Comments */
  .comments {
      background-color: #e7e7e7;
      height: 500px;
  }
  
  @media (max-width:767px) {
      .main-comments,
      .comments {
          height: 100vh;
          width: 100%;
      }
  }
  
  .comm-head {
      background-color: #e94364;
      border-top-left-radius: 3px;
      border-top-right-radius: 3px;
  }
  
  .comm-body {
      flex: 1;
      overflow: auto;
  }
  
  .comm-body .comm-img img {
      width: 100px;
  }
  /***************** For Comments inside comm-body  *****************/
  .comm-d-none{
    display: none !important;
  }
  .comm-body .comm-comments .first{
    background-color: #f1efef;
    padding: 0.5rem;
    border-radius: 8px;
  }
  .comm-body .comm-comments .first img{
    width: 60px;
    border-radius: 50%;
    border:3px solid #8b8a8a7a;
    margin-left: 1rem;
  }
  .comm-body .comm-comments .first p{
    font-size: 15px;
  }
  .comm-body .fa-ellipsis-h-alt{
    font-size: 20px;
  }
  .comm-body .comm-comments .first .dropdown-menu  li:first-child{
    float: left;
  }
  .comm-body .comm-comments .first .dropdown-menu  li:nth-child(2){
    float: right;
  }
  .comm-body .comm-comments .first .dropdown-menu{
    padding: 1rem !important;
  }
  .clear{
    clear: both;
  }
  .comm-body .comm-comments .first .dropdown-menu .btn-secondary ,
  .comm-body .comm-comments .first .dropdown-menu .btn-danger{
    font-size: 13px;
  }
  /***************** End For Comments inside comm-body  *****************/
  .comm-footer span {
      width: 40px;
      height: 40px;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #e94364;
      color: var(--white_color);
      border-radius: 50%;
      cursor: pointer;
      transition:background-color 0.3s ease,color 0.3s ease ;
  }
  .comm-footer span:hover {
      background-color: var(--white_color);
      color: #e94364;
  }
  .comm-footer span:hover i {
      color: var(--main_color) !important;
  }
  .arrow-input {
      flex: 1;
      margin-left: 1.5rem;
  }
  
  .comm-footer input {
      border: none;
      height: 40px;
      width: 100%;
      padding: 1rem;
      border-radius: 5px;
      outline: none;
      color: gray;
      text-align: end;
  }
  
  .comm-footer .left_arrow {
      position: absolute;
      top: 0;
      left: -15px;
      width: 0;
      height: 0;
      border-width: 15px;
      border-style: solid;
      border-color: var(--white_color) transparent transparent transparent;
  }
  
  .comm-footer input::placeholder {
      color: #c5c5c5;
      
      font-size: 18px;
  }
  /* End Comments */
  
  /* Start Share */
  .share .comm-body {
      border-bottom-left-radius: 3px;
      border-bottom-right-radius: 3px;
  }
  .share .comm-body li {
      width: 40px;
      height: 40px;
      display: flex;
      justify-content: center;
      align-items: center;
      background-color: #e94364;
      color: var(--white_color);
      border-radius: 50%;
      cursor: pointer;
  }
  .share .comments {
      height: 200px;
     
  }
  
  .share .comments li:hover {
      color: var(--white_color) !important;
  }
  /* End Share */
  
  /* Start Like */
  .contact-like-active{
    color: var(--main_color) !important;
  }
  .i-d-none{
    display: none !important;
  }
  /* End Like */
  
  /* End DashHistory */


/* Vaccine Request */
.center {
    direction: rtl;
    position: relative;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    display: flex;
    justify-content: center;
}
  
  .vaccine_card {
    width: 700px;
    height: 250px;
    background-color: #fff;
    background: linear-gradient(#f8f8f8, #fff);
    box-shadow: 0 8px 16px -8px rgba(0,0,0,0.4);
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    /* margin: 1.5rem; */
  }
  
  .vaccine_card .virus-img {
    width: 150px;
  }
  
  .vaccine_card .virus-img img{
    width: 100%;
  }
  .vaccine_card h1 {
    text-align: center;
  }
  
  .vaccine_card .additional {
    position: absolute;
    width: 150px;
    height: 100%;
    background: #e94364;
    transition: width 0.4s;
    overflow: hidden;
    z-index: 2;
  }
  
  .vaccine_card:hover .additional {
    width: 100%;
    border-radius: 0 5px 5px 0;
  }
  
  .vaccine_card .additional .user-card {
    width: 150px;
    height: 100%;
    position: relative;
    float: left;
  }
  
  .vaccine_card .additional .user-card::after {
    content: "";
    display: block;
    position: absolute;
    top: 10%;
    right: -2px;
    height: 80%;
    border-left: 2px solid rgba(0,0,0,0.025);
  }
  
  .vaccine_card .additional .user-card .level,
  .vaccine_card .additional .user-card .points {
    top: 16px;
    color: #fff;
    text-transform: uppercase;
    font-size: 0.75em;
    font-weight: bold;
    background: rgba(0,0,0,0.15);
    padding: 0.125rem 0.75rem;
    border-radius: 100px;
    white-space: nowrap;
  }
  
  .vaccine_card .additional .user-card .points {
    top: 85%;
  }
  
  .vaccine_card .additional .user-card svg {
    top: 50%;
  }
  
  .vaccine_card .additional .more-info {
    width: 300px;
    float: left;
    position: absolute;
    padding-top: 30px;
    left: 240px;
    height: 100%;
    direction: rtl;
  }
  
  .vaccine_card .additional .more-info h2 {
    color: #fff;
    margin-bottom: 0;
    text-align: center;
  }
  
  
  
  .vaccine_card .additional .coords {
    margin: 0 1rem;
    color: #fff;
    font-size: 1rem;
  }
  
  
  .vaccine_card .general {
    width: 300px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 267px;
    z-index: 1;
    box-sizing: border-box;
    padding: 1rem;
    padding-top: 20px;
    direction: rtl;
  }

  @media (max-width:767px) {
    .vaccine_card{
        width: 700px;
    }
    .vaccine_card .general{
        right: 146;
    }
    /* .vaccine_card .additional{
        width: 125px;
    } */
    .vaccine_card .additional .more-info{
        left: 144;
    }
   
}

@media (max-width:530px) {
    .vaccine_card .general{
        width: 200px;
        font-size: 13px;
    }
    .vaccine_card .additional .user-card{
        width: 140px;
    }
    .vaccine_card .additional .more-info{
        width: 200px;
        left: 144;
    }
}

@media (max-width:376px) {
    .vaccine_card .general {
        width: 224px;
        right: 90px;
        font-size: 15px;
    }
    .vaccine_card .additional {
        width: 100px;
    }
    .vaccine_card .virus-img img{
        width: 85%;
    }
    .vaccine_card .additional .user-card{
        width: 114px;
    }
   
    .vaccine_card .additional .more-info {
        width: 185px;
        left: 117px;
    }
    .vaccine_card .additional .more-info h2{
        font-size: 20px;
    }
    .vaccine_card .additional .coords{
        font-size: 13px;
    }
}

@media (max-width:280px) {
    .vaccine_card .general {
        width: 150px;
        right: 89px;
        font-size: 11px;
    }   
    .vaccine_card .additional {
        width: 100px;
    }
    .vaccine_card .virus-img img{
        width: 85%;
    }
    .vaccine_card .additional .user-card{
        width: 114px;
    }
   
    .vaccine_card .additional .more-info{
        width: 143px;
        left: 89px;
        font-size: 11px;
    }
    .vaccine_card .additional .more-info h2{
        font-size: 20px;
    }
    .vaccine_card .additional .coords{
        font-size: 13px;
    }
}

.success-msg {
    direction: rtl;
    width: 100%;
    padding: 5px 5px;
    border-radius: 20px;
    color: #270;
    background-color: #DFF2BF;
}

  .success-msg i{
      color: #270;
  }

  .error-msg {
    direction: rtl;
    width: 100%;
    padding: 5px 5px;
    border-radius: 20px;
    color: #D8000C;
    background-color: #FFBABA;
  }
  .error-msg i{
      color: #D8000C;
  }
  
/* End Vaccine Request */


/* Blood request */

/* CARDS */

.card {
  padding: 1rem;
  color: var(--white_color);
  text-align: center;
  border-radius: 10px;
  box-shadow: 0px 0px 6px 3px rgba(0, 0, 0, 0.25);
  transform: scale(1);
  transition: transform 0.3s linear; 
}
.card :hover {
  cursor: pointer;
  transform: scale(1.1);
}
.card__icon,.card__exit {
  font-size:22px;
} 
/* CARD BACKGROUNDS */

.card-3 {
  background: radial-gradient(#e94364, #ff3f62);
}
/* End Vaccine */  

.last_card{
  padding: 1rem;
  height: 200px;
  color: var(--white_color);
  text-align: center;
  border-radius: 10px;
  box-shadow: 0px 0px 6px 3px rgba(0, 0, 0, 0.25);
  transform: scale(1);
  transition: transform 0.3s linear; 
}

.card__icon,.card__exit {
  font-size:22px;
} 
/* End Blood Request */
  

/******************************** 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 ********************************/