: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: gray ;
    cursor: pointer;
}
.main-heading {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  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 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;
  height: fit-content;
}
.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 */

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