/*
Theme Name: OceanWP Child
Template: oceanwp
*/

/* Enqueue Parent Theme Stylesheet */
/*Commenting since already handling this in functions file no need explicit import*/
/*@import url('../oceanwp/style.css');*/

/* Add Custom Styles for Child Theme Below */


/* For WebKit browsers (Chrome, Safari) */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background-color: rgba(0, 0, 0, 0.1);
}

::-webkit-scrollbar-thumb {
  background-color: #555;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #333;
}

  
/* Hide the scrollbar */
  #right-sidebar::-webkit-scrollbar {
    width: 0px; /* Adjust the width of the scrollbar as needed */
  }
  

/* Add styles for social share buttons */
.social-share {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-start;
  margin-bottom: 40px;
}

.social-share a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 35px;
  height: 35px;
  border-radius: 50%;
  transition: background-color 0.3s ease;
}

.social-share a:hover {
  background-color: rgba(0, 0, 0, 0.2);
}

.social-share .twitter {
  background-color: #1da1f2;
}

.social-share .reddit {
  background-color: #ff4500;
}

.social-share .facebook {
  background-color: #3b5998;
}

.social-share .email {
  background-color: #0166ff;
}

.social-share .pinterest {
  background-color: #bd081c;
}

.social-share .linkedin {
  background-color: #0e76a8;
}

.social-share .whatsapp {
  background-color: #12af0a;
}

.social-share .telegram {
  background-color: #0088cc;
}

.social-share i {
  font-size: 18px;
  color: #fff;
}

.sharethis-text{
  font-weight: 600;
  font-size: 16px;
}
.sharethis-text .share{
  color:#ff5500;
}


@media (max-width: 414px) {
  .social-share a {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    transition: background-color 0.3s ease;
  }
  .social-share i {
    font-size: 14px;
    color: #fff;
  }
  }
