* {
  padding: 0;
  margin: 0;
  box-sizing: border-box;
  font-family: Arial, Helvetica, sans-serif;
}
.main-ad {
  max-width: 1080px;
  margin: auto;
}
.oi-liveblog {
  margin: 0px 0 0 16px;
  font-size: 16px;
  font-weight: normal;
  text-transform: uppercase;
  padding: 5px 15px 4px 5px;
  color: var(--menu-color);
  vertical-align: middle;
  border-radius: 6px;
  line-height: 17px;
  display: flex;
  align-items: center;
  position: relative;
}
.oi-liveblog span {
  display: inline-block;
  vertical-align: middle;
  letter-spacing: 1px;
}
.oi-live-icon {
  display: inline-block;
  width: 11px;
  height: 12px;
  margin-right: 16px;
  position: relative;
  vertical-align: middle;
}
.oi-live-icon:before,
.oi-live-icon:after {
  content: "";
  border-radius: 15px;
  overflow: hidden;
  width: 11px;
  height: 11px;
  position: absolute;
  border: 2px solid #e11900;
}
.oi-live-icon:before {
  animation: pulsate 1s ease-out infinite;
  border: 3px solid #e11900;
  left: 1px;
  opacity: 0;
  position: absolute;
  top: -2px;
}
.oi-live-icon:after {
  width: 1px;
  height: 1px;
  animation: flickerAnimation 10s ease infinite;
  background: #e11900;
  left: 7px;
  top: 4px;
}
@keyframes pulsate {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.1);
  }
  50% {
    opacity: 1;
  }
  to {
    opacity: 0;
    -webkit-transform: scale(1.2);
  }
}

.main-ad {
  background-color: #f3f4f6;
  width: 100%;
  height: 250px;
  margin: 20px auto 34px;
}
.main-ad p {
  font-family: Arial;
  font-weight: 400;
  font-size: 10px;
  line-height: 30px;
  letter-spacing: 0%;
  vertical-align: middle;
  text-align: center;
  color: #706c6c;
}
.lr-sec {
  display: flex;
  justify-content: center;
  gap: 40px;
}
.main-right {
  width: 300px;
}

.main-left {
  width: 740px;
}
.nav-left {
  font-family: Arial;
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #8f99a3;
}
.left-head h3 {
  font-family: Arial;
  font-weight: 700;
  font-style: Bold;
  font-size: 24px;
  line-height: 30px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #28313a;
  margin-bottom: 12px;
  margin-top: 32px;
}
.left-head p {
  font-family: Arial;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #28313a;
}
.arrow-holder {
  border: 1px solid #e6e6e7;
  border-radius: 50%;
  width: 35px;
  height: 35px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #f9fafb;
}

.calendar-tab {
  display: flex;
  align-items: center;
  gap: 12px;
  background: #f9fafb;
  cursor: pointer;
  padding: 7px 12px;
  border-radius: 12px;
  box-shadow: 0px 1px 4px 0px #0000000a;
}
.left-one-sub {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 24px 0 24px;
}
.arrow-container {
  display: flex;
  align-items: center;
  gap: 20px;
}
.calendar-tab p {
  font-family: Arial;
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #50585fcc;
}
/* ------------- */
.calendar-popup {
  background: #fff;
  border-radius: 8px;
  box-shadow: 0px 8px 10px -6px #0000001a;
  width: 346px;
  padding: 17px;
  background-color: #ffffff;
  border: 1px solid #e5e7eb;
  display: none;
}
.calendar-popup.active {
  display: block;
}

/* Header */
.calendar-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #28313a;
  color: white;
  padding: 12px;
  border-radius: 8px;
}
.calendar-header .arrow {
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
}
.calendar-header .month-year {
  display: flex;
  gap: 6px;
  font-size: 14px;
  font-weight: bold;
}
.calendar-popup .arrow:after {
  display: none;
}
.month-year p {
  display: flex;
  align-items: center;
  gap: 4px;
  font-family: Arial;
  font-weight: 700;
  font-style: Bold;
  font-size: 16px;
  line-height: 24px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
}

/* Weekdays */
.calendar-days {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  margin-top: 10px;
  font-weight: bold;
  color: #6b7280;
  font-size: 13px;
  margin-bottom: 8px;
}
.calendar-days > div {
  font-family: Arial;
  font-weight: 700;
  font-style: Bold;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
  color: #4b5563;
}

/* Dates */
.calendar-dates {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  text-align: center;
  margin-top: 5px;
  font-size: 14px;
}
.calendar-dates div {
  padding: 8px 14px;
  border-radius: 6px;
  font-family: Arial;
  font-weight: 400;
  font-size: 14px;
  line-height: 20px;
  letter-spacing: 0%;
  text-align: center;
  vertical-align: middle;
}
.calendar-dates div:hover {
  background: #e5e7eb;
  cursor: pointer;
}
.calendar-dates .selected {
  background: #374151;
  color: white;
}
.calendar-container {
  position: relative;
}
.calendar-popup {
  position: absolute;
  left: 0;
  right: 0;
  top: 62px;
}
/* -------------- */
.left-two {
  background-color: #f9fafb;
  padding: 23px 26px;
  border-radius: 12px;
  margin-bottom: 40px;
  box-shadow: 0px 1px 5px 0px #0000001a;
}
.st-date {
  font-family: Arial;
  font-weight: 700;
  font-style: Bold;
  font-size: 48px;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #28313a;
}
.sec-two-date > p:nth-of-type(2) {
  font-family: Arial;
  color: #28313a;
  font-weight: 500;
  font-style: Medium;
  font-size: 20px;
  line-height: 100%;
  letter-spacing: 0px;
  vertical-align: middle;
  margin: 28px 0;
}
.sec-two-date {
  background-color: #ffffff;
  box-shadow: 0px 1px 5px 0px #0000001a;
  padding: 16px 33px;
  text-align: center;
  border-radius: 12px;
}
.ap-holder {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.num-ap {
  font-family: Arial;
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  line-height: 100%;
  letter-spacing: 0px;
  vertical-align: middle;
  color: #28313a;
}
.ap-sub {
  display: flex;
  align-items: center;
  gap: 12px;
}
.ap-dis {
  font-family: Arial;
  font-weight: 500;
  font-style: Medium;
  font-size: 18px;
  leading-trim: NONE;
  line-height: 100%;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #28313a;
}
.amavasai {
  background-color: #000000;
  width: 15px;
  height: 15px;
  border-radius: 50%;
}
.sts-des {
  font-family: Arial;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  line-height: 27px;
  letter-spacing: 0px;
  vertical-align: middle;
  margin: 32px 0;
}
.st-st {
  background-color: #ffffff;
  border: 1px solid #e6e6e7;
  border-radius: 12px;
}
.st-text-holder {
  display: flex;
  align-items: center;
  padding-left: 26px;
}
.com-p-one {
  font-family: Arial;
  font-weight: 700;
  font-style: Bold;
  font-size: 16px;
  line-height: 27px;
  letter-spacing: 0px;
  vertical-align: middle;
  color: #28313a;
}
.st-text-holder {
  width: 50%;
}
.st-st {
  display: flex;
  align-items: center;
  padding: 16px 0px;
}
.st-two-text > p:nth-of-type(1),
.st-two-text-one > p:nth-of-type(1) {
  margin-bottom: 8px;
}
.com-p-two {
  font-family: Arial;
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 27px;
  letter-spacing: 0px;
  vertical-align: middle;
  color: #28313a;
  margin-left: 20px;
}
.st-st > div:nth-of-type(1) {
  border-right: 1px solid #e6e6e7;
}
.com-p-holder {
  display: flex;
  align-items: center;
  gap: 20px;
  /* justify-content: center; */
  width: 50%;
}
.st-sf {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 28px 0 20px;
  border-bottom: 1px solid #e6e6e7;
  padding-bottom: 20px;
}
.each-ap {
  display: flex;
  align-items: center;
  /* gap: 12px; */
}
.pournami {
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background-color: #fff;
  border: 1px solid #000;
}
.st-sf-ap {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.main-ad-two {
  width: 100%;
  text-align: center;
  background-color: #f3f4f6;
  margin-bottom: 40px;
}
.main-ad-two > p {
  font-family: Arial;
  font-weight: 400;
  font-style: Regular;
  font-size: 10px;
  leading-trim: none;
  line-height: 30px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #706c6c;
}
.main-head-two {
  font-family: Arial;
  font-weight: 700;
  font-style: Bold;
  font-size: 24px;
  leading-trim: NONE;
  line-height: 30px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #28313a;
  margin-bottom: 24px;
}
.lt-sub-con {
  background-color: #ffffff;
  border-radius: 12px;
  margin-bottom: 40px;
  box-shadow: 0px 1px 5px 0px #0000001a;
}
.each-ct {
  border-bottom: 1px solid #e6e6e7;
  padding: 16px 25px 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.each-ct-left > p:nth-of-type(1) {
  font-family: Arial;
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 27px;
  letter-spacing: 0px;
  vertical-align: middle;
}
.each-ct-left > p:nth-of-type(2) {
  font-weight: 400;
}
.ct-r-p,
.each-ct-left {
  width: 50%;
}
.lt-sub-con > div:nth-last-of-type(1) {
  border-bottom: none;
}
.rasi-p {
  font-family: Arial;
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 27px;
  letter-spacing: 0px;
  vertical-align: middle;
}
.rasi-p span {
  font-weight: 400;
}
.rasi-right-p {
  font-family: Arial;
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 27px;
  letter-spacing: 0px;
  vertical-align: middle;
  color: #28313a;
}
.rasi-each {
  display: flex;
  align-items: center;
  padding: 10px 3px;
  border-bottom: 1px solid #e6e6e7;
}
.rasi-each > div,
.rasi-each > p {
  width: 50%;
}
.lf-sub-container,
.each-moth {
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0px 1px 5px 0px #0000001a;
  margin-bottom: 40px;
}
.rasi-sub {
  display: flex;
  align-items: center;
}
.lf-sub-container > div:nth-last-of-type(1) {
  border-bottom: none;
}

.each-moth {
  margin-bottom: 16px;
}
.month-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 13px 25px;
}
.month-q > p {
  font-family: Arial;
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 27px;
  letter-spacing: 0px;
  vertical-align: middle;
  color: #28313a;
}
.day-left-p {
  font-family: Arial;
  font-weight: 500;
  font-style: Medium;
  font-size: 16px;
  line-height: 27px;
  letter-spacing: 0px;
  vertical-align: middle;
}
.day-left-p > span {
  font-weight: 400;
}
.month-ans {
  padding: 24px 25px 20px;
}
.each-moth.active .month-ans {
  display: block;
}
.each-moth .month-ans {
  display: none;
}
.day-in-month {
  display: flex;
  /* align-items: center; */
  margin-bottom: 20px;
  justify-content: space-between;
}
.day-left {
  display: flex;
  align-items: flex-start;
  gap: 13px;
}
.day-left,
.day-right-p {
  width: 50%;
}
.day-left > p:nth-of-type(1) {
  margin: 8px 0 0;
}
.each-moth.active .month-q img {
  transform: rotate(180deg);
}
.head-four {
  font-family: Arial;
  font-weight: 400;
  font-size: 18px;
  line-height: 30px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #28313a;
  margin-bottom: 16px;
}
.last-p {
  font-family: Arial;
  font-weight: 400;
  font-style: Regular;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 30px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #28313a;
  margin-bottom: 12px;
}
.last-p span {
  font-weight: 700;
}

/* --------------carousel------------- */
.carousel-container {
  position: relative;
  max-width: 700px;
  margin: auto;
  overflow: hidden;
}

.carousel-track {
  display: flex;
  transition: transform 0.3s ease;
}

.card {
  margin-right: 34px;
  min-width: 250px;
  margin-bottom: 10px;
  border-radius: 8px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.card img {
  width: 100%;
  height: 120px;
  object-fit: cover;
  border-radius: 8px 8px 0 0;
}

.card p {
  font-family: Arial;
  font-weight: 400;
  font-size: 16px;
  line-height: 30px;
  letter-spacing: 0%;
  vertical-align: middle;
  color: #28313a;
}

/* Arrows inside the carousel */
.carousell-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: white;
  border: 1px solid #ccc;
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 18px;
  font-weight: bold;
  z-index: 10;
  transition: background 0.2s;
  opacity: 0.9;
}

.carousell-arrow:hover {
  background: #f0f0f0;
}

.carousell-arrow.left {
  left: 5px;
}
.carousell-arrow.right {
  right: 5px;
}

.carousell-arrow.disabled {
  opacity: 0.3;
  display: none;
  pointer-events: none;
}
.carousel-con {
  background-color: #f9fafb;
  border-radius: 12px;
  padding: 24px 13px 24px 24px;
  margin-bottom: 30px;
  box-shadow: 0px 1px 5px 0px #00000014;
}
.carousel-head {
  font-family: Arial;
  font-weight: 700;
  font-style: Bold;
  font-size: 24px;
  leading-trim: NONE;
  line-height: 30px;
  letter-spacing: 0%;
  vertical-align: middle;
  margin-bottom: 19px;
}
.carousel-con .carousell-arrow:after {
  display: none;
}
.right-head-one {
  font-family: Arial;
  font-weight: 700;
  font-style: Bold;
  font-size: 16px;
  line-height: 27px;
  letter-spacing: 0px;
  vertical-align: middle;
  color: #28313a;
  padding: 8px 11px;
  border-bottom: 1px solid #e6e6e7;
  background-color: #f9fafb;
}
.rigt-con-one {
  border: 1px solid #e6e6e7;
  border-radius: 11px;
  overflow: hidden;
  margin-bottom: 40px;
}
.right-li a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 19px;
  gap: 20px;
}
.head-right-two {
  margin-bottom: 12px;
  text-align: left;
  font-family: Arial;
  font-weight: 700;
  font-style: Bold;
  font-size: 16px;
  leading-trim: NONE;
  line-height: 30px;
  letter-spacing: 0%;
  vertical-align: middle;
}
.sec-rig-ul a p {
  font-family: Arial;
  font-weight: 400;
  font-size: 15px;
  line-height: 22px;
  letter-spacing: 0px;
  vertical-align: middle;
  color: #28313a;
  /* margin-bottom: 8px; */
}
.sec-rig-ul a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
}
.sec-rig-ul {
  padding: 14px 14px 13px 19px;
  background-color: #ffffff;
  border-radius: 12px;
  box-shadow: 0px 1px 5px 0px #0000001a;
}
.sec-rig-ul a img {
  width: 7px;
}
.right-con-two {
  margin-bottom: 40px;
}
.month-wise {
  margin-bottom: 40px;
}
.st-sf > div:nth-last-of-type(1) {
  padding-left: 24px;
}
.rigt-con-one ul {
  padding: 8px 0 12px;
}
.st-sf .com-p-two {
  margin-left: 0;
}
.left-fiv-dif .day-left > p:nth-of-type(1) {
  margin: 0px;
}
.right-li a p {
  font-family: Arial;
  font-weight: 500;
  font-style: Medium;
  font-size: 15px;
  line-height: 27px;
  letter-spacing: 0px;
  vertical-align: middle;
  color: #28313a;
}
.content-body {
    margin-bottom: 40px;
}



.theme-light {
  --bg-color-primary: #ffffff;
  --bg-color-secondary: #f2f5f5;
  --bg-color-tertiary: #141a20;
  --bg-color-fourth: #013332;
  --bg-video-time: #00000033;
  --bg-lifestyle-widget: #ededed;
  --bg-gadgets-btn: #141a20;
  --bg-page-btn: #2c2c2c;

  --ad-bg-color: #f2f5f5;
  --ad-text-color: #292929;
  --deeplinks-bg-color: #f2f5f5;
  --deeplinks-text-color: #141a20;
  --menu-bg: #013332;
  --menu-color: #28313a;
  --font-color-primary: #141a20;
  --font-color-secondary: #013332;
  --title-font-color: #013332;
  --footer-list-color: #0a0e12;
  --all-border-color: #ededed;
  --vid-time-color: #ffffff;
  --font-primary: #000000;
  --header-logo: url(./assets/oneindia-logo.svg);
  --menu-toggle: url(./assets/toggle-menu-btn.svg);
  --footer-logo: url(./assets/oneindia-footer-logo.svg);
  --more-city-logo: url(./assets/more-city-icon.svg);
  --footer-facebook-logo: url(./assets/f-fb.svg);
  --footer-insta-logo: url(./assets/f-insta.svg);
  --footer-youtube-logo: url(./assets/f-youtube.svg);
  --footer-x-logo: url(./assets/f-x.svg);
  --dark-img: url(./assets/dark.svg);
  --light-img: url(./assets/light-mode.svg);
  --notification-icon: url(./assets/notification-bell.svg);
  --user-icon: url(./assets/user-icon.svg);
  --search-icon: url(./assets/search-icon.svg);
  --header-close: url(./assets/header-close.svg);
  --header-search: url(./assets/header-search.svg);
  --next-bg: url(./assets/next.svg);
  --signup: url(./assets/signup.svg);
}

