body {
  padding: 0;
  margin: 0;
  font-family: "knowledge-regular", sans-serif;
  color: #201f1f;
  font-size: 14px;
}

/* Dark mode styles */
body.dark-mode {
  background-color: #121212;
  color: white;
}

body.dark-mode h1,
body.dark-mode h2,
body.dark-mode h3,
body.dark-mode h4,
body.dark-mode h5,
body.dark-mode h6 {
  color: #fff;
}

body.dark-mode a {
  color: #fff;
}

body.dark-mode .bg-light {
  background-color: #202020 !important;
}

body.dark-mode .navbar-toggler::before,
body.dark-mode .navbar-toggler::after {
  background-color: #fff;
}

body.dark-mode .navbar-light .navbar-toggler-icon {
  filter: brightness(0) invert(1);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "knowledge-bold", sans-serif;
}

p {
  font-size: 16px;
}

@font-face {
  font-family: "knowledge-regular";
  src: url("../fonts/knowledge-regular.woff2");
}

@font-face {
  font-family: "knowledge-light";
  src: url("../fonts/knowledge-light.woff2");
}

@font-face {
  font-family: "knowledge-medium";
  src: url("../fonts/knowledge-medium.woff2");
}

@font-face {
  font-family: "knowledge-bold";
  src: url("../fonts/knowledge-bold.woff2");
}

strong {
  font-family: "knowledge-medium", sans-serif;
  font-weight: normal;
}

.call-icon {
  width: 13px;
}

a {
  text-decoration: none;
  color: #201f1f;
}

button {
  border: 0;
  box-shadow: none;
}

.btn-with-right-angle-arrow {
  font-family: "knowledge-bold", sans-serif;
  font-size: 14px;
  color: #201f1f;
}

.btn-with-right-angle-arrow span img {
  width: 10px;
  height: 10px;
  object-fit: contain;
  margin-top: -3px;
}

.btn-with-right-angle-arrow:hover {
  color: #201f1f;
}

section {
  padding: 50px 0;
}

header {
  z-index: 99;
  transition: all 300ms ease-in-out;
  background-color: rgb(255 255 255);
  /* backdrop-filter: blur(2px); */
  position: relative;
  top: 0;
  left: 0;
  width: 100%;
}

header.sticky {
  position: fixed;
  top: 0;
  /* width: 100%; */
  /* box-shadow: 0 5px 16px rgba(0, 0, 0, 0.1); */
  /* padding: 8px 0; */
  /* backdrop-filter: blur(10px); */
  animation: slideDown 600ms ease-out;
}

header.sticky .top-header {
  display: none;
  border-top: 0px;
}

header.sticky .main-navbar {
  border-top: 0px;
}

@keyframes slideDown {
  from {
    transform: translateY(-100%);
  }

  to {
    transform: translateY(0);
  }
}

.desc p,
.desc ul li,
.desc ol li {
  font-size: 16px;
  /* font-family: "Gotham-Book"; */
  line-height: 1.8;
}

.desc h6 {
  line-height: 1.6;
  font-weight: inherit;
  font-family: "Gotham-Medium";
}

.navbar-brand {
  padding: 0;
}

.navbar-brand>img {
  width: 130px;
  max-width: 100%;
  transition: all 100ms ease-in-out;
}

header .navbar-nav .nav-item>.nav-link {
  font-size: 14px;
  font-family: "knowledge-medium", sans-serif;
  color: #000;
  opacity: 1;
  padding: 7px 7px;
  text-transform: uppercase;
}

header .navbar-nav .nav-item>.nav-link.active {
  color: #c69d57;
}

.dropdown-item.nav-link {
  font-family: "Gotham-Book";
  font-size: 14px;
  color: #000;
  margin-top: 1px;
}

.dropdown-menu .dropdown-item.nav-link:active,
.dropdown-menu .dropdown-item.nav-link.active {
  background-color: #a78871;
  color: #fff;
}

.navbar-toggler {
  border: 0;
  display: grid;
  height: 24px;
  align-items: center;
  position: relative;
  padding: 0;
}

.navbar-toggler:focus {
  box-shadow: none !important;
}

.navbar-toggler .navbar-toggler-icon {
  background-image: none;
  height: 2px;
  border-radius: 3px;
  display: inline-block;
  background: #000;
  position: relative;
}

.navbar-toggler::before,
.navbar-toggler::after {
  position: absolute;
  content: "";
  right: 0;
  top: -10px;
  background: #000;
  transform: rotate(0deg);
  position: absolute;
  content: "";
  height: 2px;
  width: 20px;
  border-radius: 3px;
  margin: auto;
  transform-origin: right top;
  transform-style: preserve-3D;
  transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  -ms-transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
}

.navbar-toggler::before {
  top: 0;
  bottom: unset;
  transform-origin: right top;
  transform-style: preserve-3D;
}

.navbar-toggler::after {
  top: unset;
  transform-origin: right bottom;
  transform-style: preserve-3D;
  bottom: 0;
}

.navbar-toggler[aria-expanded="true"]::before {
  transform: rotate(-45deg);
  top: 0;
  width: 32px;
}

.navbar-toggler[aria-expanded="true"]::after {
  transform: rotate(45deg);
  bottom: 0;
  width: 32px;
}

.navbar-toggler[aria-expanded="true"] .navbar-toggler-icon {
  background-color: transparent;
}

.btn-custom {
  background-color: #FFB900;
  border: 1px solid #FFB900 !important;
  color: #000;
  border: none;
  padding: 7px 15px;
  font-size: 1em;
  cursor: pointer;
  border-radius: 5px;
  display: inline-block;
  margin-top: 0;
  transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  margin-left: 1px;
  margin-right: 1px;
}

.btn-custom:hover,
.btn-custom:focus,
.btn-custom:active {
  color: #000;
  /* opacity: 0.8; */
  background-color: #f3b303;
}

.top-header {
  padding: 10px 70px;
}

.main-navbar {
  border-top: 1px solid #929292;
  border-bottom: 1px solid #929292;
}

.btn-custom-default {
  background-color: #343744;
  border: 1px solid #343744 !important;
  color: #fff;
  border: none;
  padding: 10px 30px;
  font-size: 1em;
  cursor: pointer;
  border-radius: 5px;
  display: inline-block;
  margin-top: 5px;
  transition: all 300ms ease-in-out;
  -webkit-transition: all 300ms ease-in-out;
  -o-transition: all 300ms ease-in-out;
  -moz-transition: all 300ms ease-in-out;
  margin-left: 1px;
  margin-right: 1px;
}

.btn-custom-default:hover {
  color: #fff;
  background-color: #000;
}

.sections-burger-menu {
  padding: 7px 10px 7px 40px;
  display: inline-block;
  background-image: url(../images/menu.png);
  background-repeat: no-repeat;
  background-position: 10px;
  color: #000;
  background-size: 18px;
  background-color: #EFEFEF;
  border-radius: 3px;
}

.sections-burger-menu:hover {
  color: #000;
}

.search-btn {
  display: inline-block;
  padding: 9px 10px;
  background-color: #EFEFEF;
  border-radius: 3px;
}

.search-btn>img {
  width: 18px;
}

.form-select.edition-select>option:first-child {
  padding-left: 20px;
  background-image: url(../images/bharat.png);
  background-repeat: no-repeat;
  background-position: left start;
  background-size: 14px;
}

.news-lg-item {
  margin-bottom: 20px;
  padding-bottom: 20px;
  padding-right: 20px;
  border-bottom: 1px solid #929292;
}

.news-lg-item:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.oblong-squre-img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

.optionions-wrapper-items {
  padding: 10px 0;
  border-bottom: 1px solid #929292;
}

.optionions-title {
  font-family: "knowledge-bold", sans-serif;
  font-size: 16px;
  transition: all 0.5s ease;
  line-height: normal;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /* number of lines to show */
  line-clamp: 3;
  -webkit-box-orient: vertical;
  margin-bottom: 7px;
}

.optionions-wrapper-items p {
  font-family: "knowledge-medium", sans-serif;
}

.optionions-title:hover {
  color: #c69d57;
}

.news-title {
  font-family: "knowledge-bold", sans-serif;
  font-size: 16px;
  margin-bottom: 10px;
  display: block;
  transition: all 0.5s ease;
  line-height: normal;
}

.news-title:hover {
  /* color: #c69d57; */
}

.news-time-country {
  font-family: "knowledge-bold", sans-serif;
  color: #201f1f;
  font-size: 15px;
}

.news-short-desc p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  /* number of lines to show */
  line-clamp: 3;
  -webkit-box-orient: vertical;
  font-size: 15px;
}

.more-to-explore-news-items:first-child {
  padding-top: 0;
}

.more-to-explore-news-items {
  padding: 13px 0;
  border-bottom: 1px solid #929292;
}

.more-to-explore-news-items:last-child {
  border-bottom: 0;
}

.more-to-explore-news-items a {
  font-size: 16px;
}

.news-wrp-box img {
  height: auto;
  object-fit: cover;
}

.news-box-sec .news-wrp-box-col:nth-child(6n+1) {
  border-right: 1px solid #929292;
  padding-right: 20px;
  padding-left: 20px;
}

.news-box-sec .news-wrp-box-col:nth-child(6n+2) {
  border-right: 1px solid #929292;
  padding-right: 20px;
  padding-left: 20px;
}

.news-box-sec .news-wrp-box-col:nth-child(6n+3) {
  border-right: 0;
}

.news-box-sec .news-wrp-box-col:nth-child(6n+4) {
  border-top: 1px solid #929292;
  border-right: 1px solid #929292;
  padding-right: 20px;
  padding-left: 20px;
}

.news-box-sec .news-wrp-box-col:nth-child(6n+5) {
  border-top: 1px solid #929292;
  border-right: 1px solid #929292;
  padding-right: 20px;
  padding-left: 20px;
}

.news-box-sec .news-wrp-box-col:nth-child(6n+6) {
  border-top: 1px solid #929292;
  border-right: 0;
}

/* ------------------------------ News Category Section CSS Start ------------------------------- */

.news-category-wrapper .news-category-col:nth-child(4n+1) {
  border-right: 1px solid #929292;
  padding-right: 20px;
  padding-left: 20px;
}

.news-category-wrapper .news-category-col:nth-child(4n+2) {
  border-right: 0;
  padding-right: 20px;
  padding-left: 20px;
}

.news-category-wrapper .news-category-col:nth-child(4n+3) {
  border-right: 1px solid #929292;
  border-top: 1px solid #929292;
  padding-right: 20px;
  padding-left: 20px;
}

.news-category-wrapper .news-category-col:nth-child(4n+4) {
  border-right: 0;
  border-top: 1px solid #929292;
  padding-right: 20px;
  padding-left: 20px;
}

/* ------------------------------ Footer Section CSS Start ------------------------------ */
.main-footer {
  background: #000000;
  padding: 40px 0;
}

.f-links ul {
  display: flex;
  justify-content: center;
  padding-left: 0;
  list-style: none;
  margin-top: 20px;
  flex-wrap: wrap;
}

.f-links ul li {
  padding: 5px 15px;
}

.f-links ul li a {
  color: #FFFFFF;
  font-family: "knowledge-medium", sans-serif;
}

.f-social-icon ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  justify-content: center;
}

.f-social-icon ul li {
  margin: 0 3px;
}

.f-social-icon ul li a img {
  filter: brightness(0) invert(1);
  width: 30px;
  height: 30px;
  object-fit: contain;
  border: 1px solid #fff;
  border-radius: 50%;
  padding: 8px;
}

.f-follow-text p {
  font-size: 15px;
}

.bottom-footer {
  padding: 30px 0;
}

.bottom-footer ul {
  list-style: none;
  padding-left: 0;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
}

.bottom-footer ul li {
  margin: 0 10px;
}

.bottom-footer ul li a {
  font-size: 15px;
}

.bottom-footer ul li a:hover {
  color: #c69d57;
}

.copy-right-text p {
  font-size: 15px;
}

.power-by-dev img {
  width: 18px;
  filter: brightness(0.3);
  transition: var(--tm-transition);
  float: right;
}

body.dark-mode .power-by-dev img {
  filter: grayscale(1) brightness(1);
}

.power-by-dev p {
  font-size: 15px;
  margin-bottom: 0;
}

.theme-breadcrumbs li a,
.theme-breadcrumbs li,
.theme-breadcrumbs li.active {
  font-size: 15px;
  font-family: "knowledge-medium", sans-serif;
  color: #000;
}

.news-details h1 {
  font-size: 40px;
}

.news-details h6 {
  font-size: 20px;
}

.news-wri-detail p {
  margin-bottom: 3px;
  font-size: 13px;
}

.news-wri-detail p img {
  width: 13px;
  margin-top: -2px;
}

.news-detail-video-wrp {
  background-color: #E2E2E2;
  padding: 40px 50px;
}

.news-detail-video-wrp img {
  margin-bottom: 0 !important;
}

.news-detail-video-wrp .video-play-button {
  box-sizing: content-box;
  /* display: block; */
  display: flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 44px;
  /* background: #fa183d; */
  border-radius: 50%;
  /* padding: 18px 20px 18px 28px; */
  padding: 18px 20px 18px 22px;
}

.news-detail-video-wrp .video-play-button:before {
  content: "";
  color: #fff;
  position: absolute;
  z-index: 0;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 65px;
  height: 65px;
  background: #fff;
  border-radius: 50%;
  animation: pulse-border 1500ms ease-out infinite;
}

.news-detail-video-wrp .video-play-button span {
  display: block;
  position: relative;
  z-index: 3;
  width: 0;
  height: 0;
  /* border-left: 22px solid #024883; */
  border-left: 22px solid #fff;
  border-top: 12px solid transparent;
  border-bottom: 12px solid transparent;
}

.news-detail-video-wrp .video-play-button:after {
  content: "";
  position: absolute;
  z-index: 1;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  display: block;
  width: 60px;
  height: 60px;
  background: #c69d57;
  border-radius: 50%;
  transition: all 200ms;
  /* margin-top: 20px; */
}

@keyframes pulse-border {
  0% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1);
    opacity: 1;
  }

  100% {
    transform: translateX(-50%) translateY(-50%) translateZ(0) scale(1.5);
    opacity: 0;
  }
}

.story-may-like-img img {
  margin-bottom: 0 !important;
}

.story-may-like-title {
  position: relative;
  z-index: 1;
}

.story-may-like-title h2 {
  background: #fff;
  z-index: 9;
  width: fit-content;
  margin-left: 40px;
  padding: 0 10px;
}

.story-may-like-title::before {
  position: absolute;
  content: '';
  top: 15px;
  left: 0;
  transform: translateY(-50%) !important;
  width: 100%;
  height: 2px;
  border: 1px dashed #878686;
  z-index: -1;
}

.story-may-like-title::after {
  position: absolute;
  content: '';
  bottom: 15px;
  left: 0;
  transform: translateY(-50%) !important;
  width: 100%;
  height: 2px;
  border: 1px dashed #878686;
  z-index: -1;
}

.story-may-like-titles {
  font-family: "knowledge-medium", sans-serif;
  font-size: 16px;
}

.news-details-desc img {
  margin-bottom: 20px;
}

.subscribe-wrp-box {
  background-color: #E2E2E2;
  padding: 40px;
}

.subscribe-inp-wrp {
  max-width: 65%;
  margin: auto;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}

.live-blog-wrap-box {
  position: relative;
  padding-left: 30px;
}

.live-blog-wrap-box::before {
  position: absolute;
  content: '';
  left: 5px;
  top: 10px;
  width: 1px;
  height: 100%;
  border: 1px dashed #FF0000;
}

.live-blog-wrp h5,
.top-story-wrp h5 {
  border-bottom: 1px solid #878686;
}

.live-blog-items {
  padding: 7px 0;
  border-bottom: 1px solid #878686;
  position: relative;
}

.live-blog-items::before {
  position: absolute;
  content: '';
  left: -30px;
  top: 10px;
  width: 13px;
  height: 13px;
  background: #FF0000;
  border-radius: 50%;
}

.live-blog-items a {
  font-size: 15px;
}

.top-story-items {
  margin-bottom: 60px;
}

.top-story-items .news-title-wpr {
  background-color: #fff;
  width: 90%;
  padding: 10px;
  box-shadow: 0px 3px 6px #00000029;
}

.top-story-items .top-story-title {
  font-size: 16px;
  transition: all 0.3s ease;
}

.top-story-items .top-story-title:hover {
  color: #c69d57;
}

.news-detail-col {
  position: relative;
  /* border-left: 1px solid #878686; */
}

.news-detail-col::before {
  position: absolute;
  content: '';
  top: 0;
  left: 0;
  height: 45%;
  width: 1px;
  background-color: #878686;
}

.for-select-tgs .nav-link {
  color: #000;
}

.search-bars-wrapper .form-control {
  height: 60px;
  border-radius: 5px;
  padding: 10px 25px 10px 50px;
  font-size: 16px;
  background-color: #fff;
  background-image: url(../images/search-icon.png);
  background-position-x: 1%;
  background-repeat: no-repeat;
  background-size: 24px;
  background-position-y: center;
  position: relative;
  z-index: 1;
}

.search-bars-wrapper .form-control:focus {
  box-shadow: none;
  border: 1px solid #878686;
}

.search-bars-wrapper .top-seach-items {
  padding-left: 0;
  list-style: none;
}

.search-bars-wrapper .top-seach-items li {
  position: relative;
  padding-left: 25px;
  margin-bottom: 15px;
}

.search-bars-wrapper .top-seach-items li::before {
  position: absolute;
  content: "";
  background-image: url(../images/trending_up_arrow.svg);
  height: 14px;
  width: 14px;
  background-repeat: no-repeat;
  background-position: center;
  left: 0;
  top: 2px;
  margin: auto;
  /* opacity: .5; */
  background-size: contain;
}

.top-seach-items .news-title {
  font-size: 15px;
  font-family: "knowledge-regular";
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* number of lines to show */
  line-clamp: 2;
  -webkit-box-orient: vertical;
}

.for-select-tgs.offcanvas-top {
  height: 45vh;
}

.search-bars-wrapper {
  max-width: 75%;
  margin: auto;
}

/* Styling for the image icon */
#mode-toggle {
  width: 25px;
  height: 25px;
  cursor: pointer;
  transition: opacity 0.3s;
  margin-left: 12px;
}

body.dark-mode #mode-toggle {
  filter: brightness(0) invert(1);
}

body.dark-mode .top-header {
  background: #000;
}

body.dark-mode .main-navbar {
  background: #000;
}

body.dark-mode header .navbar-nav .nav-item>.nav-link {
  color: #fff;
}

body.dark-mode header .navbar-nav .nav-item>.nav-link.active {
  color: #c69d57;
}

body.dark-mode .theme-breadcrumbs li a,
body.dark-mode .theme-breadcrumbs li,
body.dark-mode .theme-breadcrumbs li.active {
  color: #fff;
}

body.dark-mode .news-wri-detail p img {
  filter: brightness(0) invert(1);
}

body.dark-mode .story-may-like-title h2 {
  background: #121212;
}

body.dark-mode .subscribe-wrp-box {
  background-color: #000000;
  border: 1px solid #4e4949;
}

body.dark-mode .top-story-items .news-title-wpr {
  background: #000;
  border: 1px solid #4e4949;
}

body.dark-mode .sections-burger-menu {
  color: #000;
}

body.dark-mode .top-social-icon {
  filter: brightness(0) invert(1);
}

body.dark-mode .btn-with-right-angle-arrow span img {
  filter: brightness(0) invert(1);
}

body.dark-mode a:hover {
  color: #c69d57;
}

body.dark-mode .for-select-tgs a {
  color: #000;
}

body.dark-mode .news-time-country {
  color: #ffffffe0;
}

/* .optionions-img-wrap img{
  width: 60px;
  height: 60px;
  border-radius: 50%;
} */
.optionions-img-wrap img {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  object-fit: contain;
  border: 1px solid #eee;
}

/* .stock-live-d-wrp{
  text-wrap: nowrap;
} */
.stock-live-slider {
  border: 1px solid #c3c3c3;
  padding: 7px;
  margin-bottom: 30px;
}

.stock-live-d-wrp {
  text-align: center;
}

.stock-live-d-wrp p {
  font-size: 13px;
  margin-bottom: 0;
  justify-content: center;
}

.stock-live-d-wrp .value.text-red {
  font-size: 12px;
  color: red;
}

.stock-live-d-wrp .value.text-green {
  color: #046e1f;
  font-size: 12px;
}

body.dark-mode .stock-live-slider {
  background-color: #fff;
}

body.dark-mode .stock-live-d-wrp p {
  color: #000;
}

.owl-dot>span {
  display: inline-block;
  height: 6px;
  width: 6px;
  border-radius: 50%;
  background-color: #343744;
}

.owl-dot.active>span {
  background-color: #878686;
}

.owl-dots {
  text-align: center;
}

.owl-dots .owl-dot {
  margin: 0 3px;
}

.news-detail-video-wrp video {
  width: 100%;
}

.theme-breadcrumbs {
  padding: 15px 0;
}

#firstTimeModal .modal-header {
  border-bottom: 0;
}

#firstTimeModal .modal-content {
  background: transparent;
  box-shadow: none;
  border: none;
  margin: auto;
  max-width: 75%;
  width: 100%;
}

#firstTimeModal .modal-body img {
  border-radius: 20px;
}

#firstTimeModal .modal-body {}

#firstTimeModal .btn-close {
  background-color: #fff;
  background-image: url(../images/close-icon.png);
  opacity: 1;
  border-radius: 50%;
  position: absolute;
  right: 25px;
}

.horizontal-news-sec1-wrp-box>img,
.news-lg-thumb>img {
  aspect-ratio: 1 / 0.6;
  object-fit: contain;
  object-position: center;
}

.power-by-dev a {
  color: #c69d57;
  font-family: "knowledge-medium", sans-serif;

}

.date-and-time {
  font-size: 13px;
}

.post-by {
  font-size: 13px;
  font-style: italic;
  color: #6d6d6d;
}

.share-container {
  position: relative;
  display: inline-block;
}

.share-container .share-button {
  background-color: #FFB900;
  color: white;
  border: none;
  /* padding: 10px 20px; */
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.share-container .share-button img {
  width: 15px;
  height: 15px;
  object-fit: contain;
}

.share-container .social-icons {
  position: absolute;
  bottom: 50px;
  left: 0;
  display: none;
  /* flex-direction: column; */
  gap: 10px;
  background: #fff;
  padding: 5px;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  border-radius: 10px;
}

.share-container .social-icons a {
  text-decoration: none;
  color: white;
  font-size: 20px;
  padding: 5px;
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
}

.share-container .social-icons a img {
  width: 30px;
  height: 30px;
  object-fit: contain;
}

#email-error {
  position: absolute;
  top: 100%;
  left: 0;
}

.top-story-wrap-box {
  height: 555px;
  overflow-y: auto;
}

.news-lg-items-wrapper {
  max-height: 2800px;
  overflow-y: auto;
  scrollbar-color: #888 #f1f1f1;
  scrollbar-width: thin;
}

/* width */
::-webkit-scrollbar {
  width: 5px;
}

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* ----------- 404 Page Section CSS Start  -----------*/
.error-wrap-section {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 100vh;
}

.error-wrap-section .error-text-wrap h2 {
  font-size: 60px;
  color: #c69d57;
  font-weight: 800;
}

.error-wrap-section .error-text-wrap h3 {
  font-size: 30px;
  color: #000;
  font-weight: 700;
  margin: 15px 0;
}

/* ----------- 404 Page Section CSS End  -----------*/
.story-may-like-img>img,
.similer-news-box>img,
.top-story-items>img {
  aspect-ratio: 1 / .6;
  object-fit: cover;
}

.term-of-use-sec .title>h2 {
  font-size: 35px;
  font-weight: 700;
}

.term-of-use-sec .desc h1,
.term-of-use-sec .desc h2,
.term-of-use-sec .desc h3,
.term-of-use-sec .desc h4,
.term-of-use-sec .desc h5,
.term-of-use-sec .desc h6 {
  font-size: 18px !important;
  font-weight: 600;
  color: #000;
}

.term-of-use-sec ul {
  margin: 15px 0;
}

body.dark-mode .term-of-use-sec .desc h1,
body.dark-mode .term-of-use-sec .desc h2,
body.dark-mode .term-of-use-sec .desc h3,
body.dark-mode .term-of-use-sec .desc h4,
body.dark-mode .term-of-use-sec .desc h5,
body.dark-mode .term-of-use-sec .desc h6 {
  color: #fff;
}

.add_wishlist,
.add_feedback {
  background-color: #dfdfdf;
  color: white;
  border: none;
  /* padding: 10px 20px; */
  border-radius: 5px;
  cursor: pointer;
  font-size: 16px;
  width: 35px;
  height: 35px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
}

.add_wishlist img,
.add_feedback img {
  width: 15px;
  height: 15px;
  object-fit: contain;
}

.user-menu {
  position: relative;
  display: flex;
  width: 37px;
  height: 37px;
  cursor: pointer;
  border-radius: 50%;
  background: #ffb900;
  float: right;
  /* margin-right: 15px; */
  align-items: center;
  justify-content: center;
}

.user-menu .user-icon {
  display: flex;
  width: 100%;
  padding: 0;
  width: 20px;
}

.user-menu .dropdown-menu {
  position: absolute;
  top: 45px;
  right: 0;
  display: none;
  background: white;
  box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  z-index: 10;
}

.user-menu .dropdown-menu a {
  display: block;
  padding: 10px 20px;
  color: black;
  text-decoration: none;
  font-size: 16px;
}

.user-menu .dropdown-menu a:hover {
  background: #f1f1f1;
}

/* ---------------- Live Cricket Score Section Start ---------------- */
.cricket-live-score-wrp {
  background-color: #009270;
  padding: 20px;
  border-radius: 5px;
}

.cricket-live-score-wrp .tab-content {
  background-color: #fff;
  padding: 20px 10px 20px 20px;
  /* max-height: 310px;
  overflow-y: auto; */
}

.cricket-live-score-wrp .nav-tabs .nav-item {
  width: 33.33%;
}

.cricket-live-score-wrp .nav-tabs .nav-link {
  border: none;
  color: #fff;
  font-size: 15px;
  font-family: "knowledge-bold", sans-serif;
  text-align: center;
}

.cricket-live-score-wrp .nav-tabs .nav-link.active {
  color: #000;
}

.cricket-live-score-wrp .match-data-wrp:first-child {
  padding-top: 0;
}

.cricket-live-score-wrp .match-data-wrp {
  border-bottom: 1px solid #a9a9a9;
  padding: 15px 0;
}

.cricket-live-score-wrp .match-data-wrp:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.cricket-live-score-wrp .team-name {
  max-width: 70%;
  width: 100%;
}

.cricket-live-score-wrp .team-name p {
  font-family: "knowledge-medium", sans-serif;
  margin-bottom: 5px;
}

.cricket-live-score-wrp .match-time {
  font-size: 15px;
  font-family: "knowledge-regular", sans-serif;
}

.cricket-live-score-wrp .match-status {
  font-size: 14px;
  text-transform: uppercase;
  padding: 3px 7px;
}

.cricket-live-score-wrp .match-status:focus {
  box-shadow: none;
  border: none
}

.cricket-live-score-wrp .match-type {
  color: #bf9015;
  font-family: "knowledge-medium", sans-serif;
  font-size: 15px;
  margin-top: 10px;
  margin-bottom: 0;
}

.score-show-data {
  font-family: "knowledge-regular", sans-serif !important;
}

.cricket-subtabs {
  border-bottom: 0;
  justify-content: center;
}

.cricket-subtabs-tab-content {
  max-height: 310px;
  overflow-y: auto;
}

.cricket-subtabs .nav-item {
  width: auto !important;
}

.cricket-subtabs .nav-link {
  color: #000 !important;
  padding: 10px 10px 5px;
  font-family: "knowledge-medium", sans-serif !important;
  font-size: 13px !important;
}

.cricket-subtabs .nav-link.active {
  color: #009270 !important;
  border-bottom: 1px solid #009270;
}

.cricket-subtabs-wrp-box:first-child {
  padding-top: 0 !important;
}

.cricket-subtabs-wrp-box {
  border-bottom: 1px solid #a9a9a9;
  padding: 15px 0 !important;
}

.cricket-subtabs-wrp-box:last-child {
  border-bottom: 0 !important;
  padding-bottom: 0 !important;
}

.country-flags img {
  height: 14px;
  object-fit: contain;
  margin-top: -3px;
}

/* ---------------- Live Cricket Score Section End ---------------- */

.footer-links {
  display: none !important
}

.livedata {
  position: relative;
}

.livedata::after {
  position: absolute;
  content: "";
  height: 27px;
  width: 80%;
  right: 0;
  left: 0;
  bottom: 10px;
  background-color: #1384fb;
  background: #1384fb;
  margin: 0 auto;
}


/* pading */
.text-title-blink {
  position: relative;
  animation: blinker 1.3s linear infinite;
  color: red;
}

@keyframes blinker {
  50% {
    opacity: 0;
  }
}

.latest-live-blogs-items a {
  font-family: "knowledge-bold", sans-serif;
  font-size: 16px;
  margin-bottom: 5px;
  word-wrap: break-word;
}

.latest-live-blogs-items a:hover {
  color: #c69d57;
}

/* .latest-live-blogs-items:first-child{
    padding-top: 0;
  } */
.latest-live-blogs-items {
  border-bottom: 1px solid #EDEDED;
  padding: 10px 0;
  position: relative;
}

.latest-live-blogs-items::before {
  position: absolute;
  content: '';
  top: 18px;
  left: -19px;
  width: 7px;
  height: 7px;
  background-color: red;
  border-radius: 50%;
}

.latest-live-blogs-items p {
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* number of lines to show */
  line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 0;
}

.latest-live-blogs-wrp {
  border-left: 1px solid #EDEDED;
  padding-left: 15px;
}

/* .table-wrapper tbody{
    background-image: url(../images/stock-data-img.png);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
  } */

.notification-wrapper {
  display: flex;

}

.notification-wrapper .logo img {
  max-width: 105px;
  width: 100%;
}

.notification-wrapper .notification-btn {
  padding: 7px 15px;
  border-radius: 5px;
}

.notification-wrapper .notification-btn.btn-white {
  background-color: #fff;
  color: #000;
  border: 1px solid #000;
}

.notification-wrapper .notification-btn.btn-primary {
  background-color: #0d6efd;
  color: #fff;
  border: 1px solid #0d6efd;
}

.notification-wrapper .notification-btn:focus {
  box-shadow: none;
}

.modal-title1 {
  font-size: 18px;
  color: red;
  font-family: "knowledge-medium", sans-serif;
}

#modal2 .modal-body {
  padding: 0 !important;
}

#modal2 .modal-content {
  background-color: transparent !important;
  border: none !important;
}

#modal2 .modal-header {
  border: none !important;
  padding: 0;
}

#modal2 .btn-close {
  position: absolute;
  top: -27px;
  right: 0;
  background-color: #FFB900;
  opacity: 1;
  border-radius: 50%;
}

#modal2 .modal-body img {
  border-radius: 8px;
}

.max-w-xl.bg-white {
  z-index: 1;
  position: relative;
}

body.dark-mode .table th {
  color: #c69d57
}

body.dark-mode .table td {
  color: #fff;
}

body.dark-mode .right-stock-logo {
  filter: brightness(0) invert(1);
}

/* sff */



.scrollable-table {
  width: 100%;
  border-color: #c7c5c4;
}

.scrollable-table thead,
.scrollable-table tbody tr {
  display: table;
  width: 100%;
  table-layout: fixed;
}

.scrollable-table tbody {
  display: block;
  max-height: 200px;
  /* set your desired max-height */
  overflow-y: auto;
  scrollbar-width: none;
  /* Firefox */
  -ms-overflow-style: none;
  /* IE 10+ */
}

.scrollable-table tbody::-webkit-scrollbar {
  width: 0px;
}

/* .scrollable-table.table-bordered>:not(caption)>*{
  border-bottom: 0;
} */
/* .scrollable-table tbody::-webkit-scrollbar {
  display: none;
} */

.sidebar-stock-data td a:hover {
  color: black;
}

body.dark-mode .sidebar-stock-data td a:hover {
  color: #fff;
}

body.dark-mode .notification-text p {
  color: #000;
}

body.dark-mode .modal-title1 {
  color: red;
}

.sidebar-stock-data .col-scrip>a:hover {
  color: #0d6efd !important;
}