/* font style */
/* @import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap'); */

/* @import url('https://fonts.googleapis.com/css2?family=Zilla+Slab:ital,wght@0,300;0,400;0,500;0,600;0,700;1,300;1,400;1,500;1,600;1,700;1,900&display=swap'); */
/* ---------------------- Navbar css -------------------------- */
/* News main nave */

:root {
  /* --body-color: #f5f5f5 !important; */
  /* --text-primary-color: #0F1F40;
  --text-secondary-color: #65686D;
  --hover--color: #1A2E51; */
  --primary-font-family: "Zilla Slab", serif;
  --categoryTag-color: #D1D5DC;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* font-family: var(--primary-font-family) !important; */
}

*,
html {
  font-family: var(--primary-font-family) !important;
}

body {
  margin: 0;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: 0.5px;
  background-color: var(--body-color) !important;
  /* -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none; */
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type='number'] {
  -moz-appearance: textfield;
  appearance: textfield;
}

.custom-swiper .swiper-pagination-bullet {
  position: relative;
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 10px);
}

.custom-swiper .swiper-pagination-bullet::before {
  position: absolute;
  content: '';
  border: 2px solid #fff;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  top: 0;
  right: 0;
  left: 0;
  bottom: 0;
  margin: auto;
}

a {
  text-decoration: none;
}

.custom-swiper .swiper-pagination-bullet-active {
  background-color: var(--primary-color) !important;
}

.container,
.container-fluid,
.container-sm,
.container-md,
.container-lg,
.container-xl,
.container-xxl {
  --bs-gutter-x: 30px;
  width: 100%;
  padding-right: calc(var(--bs-gutter-x) / 2);
  padding-left: calc(var(--bs-gutter-x) / 2);
  margin-right: auto;
  margin-left: auto;
}

@media (min-width: 576px) {

  .container,
  .container-sm {
    max-width: 540px;
  }
}

@media (min-width: 768px) {

  .container,
  .container-sm,
  .container-md {
    max-width: 720px;
  }
}

@media (min-width: 992px) {

  .container,
  .container-sm,
  .container-md,
  .container-lg {
    max-width: 960px;
  }
}

@media (min-width: 1200px) {

  .container,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl {
    max-width: 1140px;
  }
}

@media (min-width: 1400px) {

  .container,
  .container-sm,
  .container-md,
  .container-lg,
  .container-xl,
  .container-xxl {
    max-width: 1440px;
  }
}

.custom-card {
  border-radius: 10px;
  padding: 15px;
}

.custom-card .swiper-button-prev,
.custom-card .swiper-button-next {
  bottom: 0;
  top: auto;
}

.custom-card .swiper-wrapper {
  padding-bottom: 100px;
  padding-top: 12px;
}

.custom-card .swiper-button-prev::after,
.custom-card .swiper-button-next::after {
  background-color: var(--primary-color);
  font-size: 20px;
  color: #fff;
  padding: 12px 16px;
  border-radius: 10px;
  font-weight: 900;
  transition: 0.3s all;
}

.custom-card .swiper-button-prev {
  left: 44%;
}

.custom-card .swiper-button-next {
  right: 46%;
}


.custom-card .swiper-button-prev:hover::after,
.custom-card .swiper-button-next:hover::after {
  background-color: var(--hover--color);
}

[data-bs-theme="dark"] .custom-card .swiper-button-prev:hover::after,
[data-bs-theme="dark"] .custom-card .swiper-button-next:hover::after {
  background-color: var(--hover--color);
}

@media (max-width: 575px) {
  .custom-card .swiper-button-prev {
    left: 32%;
  }

  .custom-card .swiper-button-next {
    right: 40%;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  .custom-card .swiper-button-prev {
    left: 42%;
  }

  .custom-card .swiper-button-next {
    right: 42%;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .custom-card .swiper-button-prev {
    left: 42%;
  }

  .custom-card .swiper-button-next {
    right: 42%;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  .custom-card .swiper-button-prev {
    left: 44%;
  }

  .custom-card .swiper-button-next {
    right: 44%;
  }
}

.custom-modal .ant-modal-close {
  position: absolute;
  top: -15px;
  right: -10px;
  background-color: var(--primary-color);
  color: #fff;
  padding: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  font-size: 14px;
}

.custom-modal .ant-modal-close:hover {
  background-color: var(--primary-color);
  color: #fff;
}

.custom-modal .ant-modal-close-x {
  line-height: 0;
}

.custom-modal .ant-modal-body {
  overflow-y: scroll;
  height: 600px;
}

/* width */
.custom-modal .ant-modal-body::-webkit-scrollbar {
  width: 5px;
}

/* Track */
.custom-modal .ant-modal-body::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
.custom-modal .ant-modal-body::-webkit-scrollbar-thumb {
  background: var(--primary-color);
}

/* Handle on hover */
.custom-modal .ant-modal-body::-webkit-scrollbar-thumb:hover {
  background: #555;
}

#tns-modal-header {
  background-color: var(--secondary-color);
  color: #ffffff;
  justify-content: flex-start;
}

.PhoneInputInput {
  flex: 1 1;
  min-width: 0;
  border: 1px solid #ddd;
  border-radius: 5px;
  height: 44px;
  padding-left: 10px;
  width: 100%;
  font-family: 'circular';
  background-color: var(--body-color);
}

.PhoneInputCountrySelect:focus+.PhoneInputCountryIcon--border {
  box-shadow: none;
}

.noData {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 73vh;
}

.App {
  text-align: center;
}

.App-logo {
  height: 40vmin;
  pointer-events: none;
}

@media (prefers-reduced-motion: no-preference) {
  .App-logo {
    animation: App-logo-spin infinite 20s linear;
  }
}

.App-header {
  background-color: #282c34;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: calc(10px + 2vmin);
  color: white;
}

.App-link {
  color: #61dafb;
}

@keyframes App-logo-spin {
  from {
    transform: rotate(0deg);
  }

  to {
    transform: rotate(360deg);
  }
}

.Newsbar {
  font-family: var(--primary-font-family) !important;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 15px 0;
  background-color: var(--body-color);
}

/* News logo */
.navbar_content {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

#NewsLogo {
  height: 60px;
  object-fit: contain;
  width: 180px;
}

/* manu-links and buttons */

.hamburger-manu {
  display: none;
}

.mobile-manu {
  display: none;
}

.Manu-links ul {
  display: flex;
  justify-content: space-around;
  align-items: center;
  margin-bottom: 0;
  padding-left: 0;
  gap: 24px;
}

.Manu-links ul li {
  list-style-type: none;
}


.Manu-links ul li:last-of-type {
  margin-right: 0;
}

[dir="rtl"] .Manu-links ul li:last-of-type {
  margin-right: 30px;
  gap: 8px;
}

.Manu-links ul a {
  text-decoration: none;
}

#nb-popover-body {
  width: 18rem;
  height: fit-content;
  padding: 0%;
  border: none;
}

#Nav-Offcanvas {
  font-family: var(--primary-font-family) !important;
}

[data-bs-theme="dark"] #Nav-Offcanvas {
  background-color: var(--body-color);
}



@media screen and (min-width: 1200px) {
  #Nav-Offcanvas {
    display: none;
  }
}

@media screen and (max-width: 399px) {
  #Nav-Offcanvas {
    width: 84%;
  }
}

.nav-item {
  list-style-type: none;
}

#nav-links {
  position: relative;
  text-decoration: none;
  /* text-transform: uppercase; */
  font-weight: 500;
  color: var(--text-primary-color);
  text-transform: uppercase;
}

#nav-links:hover {
  color: var(--primary-color);
}

@media (max-width: 1200px) {
  .mobile-manu {
    display: none;
  }

  .mobile-manu2 {
    display: contents;
  }

  .Manu-links {
    display: none;
  }

  #cn-main {
    display: none;
  }

  .hamburger-manu {
    display: flex;
  }

  .hamburger-manu svg {
    font-size: 24px;
  }

  #nav-links {
    font-size: 18px;
  }

  .catNav-links {
    font-size: 22px;
    margin-top: 1%;
  }

  .nav-item {
    margin-top: 3%;
    list-style-type: none;
  }

  #Nav-btns {
    margin-top: 10% !important;
    list-style-type: none;
  }

  .offcanvas-title {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
  }

  .offcanvas-title li {
    margin-right: 10px;
  }

  .menu-toggle {
    width: 100%;
    display: flex;
    justify-content: space-between;
  }

  .menu-toggle i {
    background-color: var(--primary-color);
    color: #fff;
    border-radius: 50%;
    float: right;
    width: 30px;
    height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  /* .has-children .sub-menu li::before {
    content: "⁍";
    font-size: 2rem;
    color: var(--primary-color);
    margin-right: 4px;
  } */

  .has-children .mobile_catogories {
    padding-left: 0;
  }

  .offcanvas-body ul {
    padding-left: 0;
  }
}

#navbarSupportedContent {
  font-family: var(--primary-font-family) !important;
}

#NewsNav {
  width: 100%;
  height: 6rem;
}

#nav-link {
  color: var(--secondary-color);
  text-decoration: none;
}

/* nav buttons */

#btnSignIn {
  color: #ffffff;
  font-weight: 600;
  background: var(--primary-color);
  border: none;
}


[dir='rtl'] #btnSignIn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
}


.commonDropDown {
  background: transparent;
  border: none;
  color: var(--text-primary-color);
  font-weight: 600;
  text-transform: uppercase;
}

.navDropdown svg {
  margin-left: 4px !important;
  /* margin-top: -4px; */
  font-weight: 400;
}

.navDropdown .ant-space-item {
  color: var(--secondary-color) !important;
}

.ant-dropdown-menu .ant-dropdown-menu-item:hover {
  background-color: transparent !important;
}

.headerDropdownItem {
  position: relative;
  font-weight: 500 !important;
}

.dropdownItem {
  color: #0f1f40 !important;
  font-weight: 500 !important;
  font-size: 17px;
}

.dropdownItem:hover {
  color: var(--primary-color) !important;
}

.dropdownItem::after,
.headerDropdownItem::after {
  content: '' !important;
  width: 4px !important;
  height: 0px !important;
  background: var(--primary-color) !important;
  position: absolute !important;
  top: 17px !important;
  left: 3px !important;
  border-radius: 50px;
  transition: height 0.1s ease !important;
}

.headerDropdownItem::after {
  top: 2px !important;
  left: -8px !important;
}

.offcanvas .headerDropdownItem::after {
  top: 4px !important;
}

.commonDropDown .headerDropdownItem::after {
  top: 4px !important;
}

.headerDropdownItem:hover::after,
.headerDropdownItem.navLinkActive::after {
  height: 16px !important;
}

.dropdownItem:hover::after {
  height: 14px !important;
}

.dropdownItem.navActive::after {
  height: 14px !important;
}

.navActive {
  color: var(--primary-color) !important;
  font-weight: 600;
}

.navLinkActive {
  color: var(--primary-color) !important;
  font-weight: 600 !important;
}

.ant-dropdown-menu .ant-dropdown-menu-item {
  padding: 10px 14px !important;
}

.languageDropdown .dropdownItem::after {
  top: 12px !important;
}



@media screen and (min-width: 1201px) and (max-width: 1399px) {
  .Manu-links ul {
    gap: 10px;
  }

  .Manu-links ul li {
    font-size: 14px;
  }

  .headerDropdownItem::after {
    top: 0px !important;
    left: -5px !important;
    width: 3px !important;
  }

  .commonDropDown .headerDropdownItem::after {
    top: 2px !important;
  }

  .profileDropDown .headerDropdownItem::after {
    top: 6px !important;
  }

  #NewsLogo {
    width: 140px;
  }

}


@media screen and (max-width: 1200px) {
  #btnSignIn {
    color: #ffffff;
    background: var(--primary-color);
    border: none;
    width: 170px;
    height: 42px;
  }

  .headerDropdownItem {
    font-size: 18px;
  }
}

/* #btnSignIn:hover {
  background: var(--secondary-color);
} */

#btnBookmark {
  text-decoration: none;
  color: #ffffff;
  border: none;
  font-weight: 600;
}

#btnLogout {
  color: #ffffff;
  border: none;
  font-weight: 600;
}

#btnLogout:hover {
  background: var(--primary-color);
}

.btnSignIn {
  color: #ffffff;
  background: var(--primary-color);
  border: none;
}

.btnSignIn:hover {
  background: var(--hover--color);
}

#btnNotification {
  background: #efefef;
  border: none;
  position: relative;
  color: var(--primary-color);
}

.noti_badge_data {
  position: absolute;
  top: 5px;
  right: 11px;
  border-radius: 50%;
  background: var(--primary-color);
  width: 5px;
  height: 5px;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: small;
}

#btnNotification:hover {
  color: #ffffff;
  background: var(--hover--color);
}

[data-bs-theme="dark"] #btnNotification:hover {
  background-color: var(--hover--color);
}

#btnSerch {
  color: var(--primary-color);
  background: var(--body-color);
  margin-right: 110px;
  border: none;
}

#btnSerch:hover {
  color: #ffffff;
  background: var(--hover--color);
}

#serchModal {
  position: absolute;
  background: var(--body-color);
  padding: 0%;
}

#btnSerchForm {
  color: var(--primary-color);
  background: var(--body-color);
}

/* button logo */

#btnLogo {
  margin-bottom: 2px;
  margin-right: 7px;
}

/* ---------------------- respons Navbar css -------------------------- */

/* ---------------------- Header css -------------------------- */

#Header {
  height: 3rem;
  background-color: var(--secondary-color);
  color: #ffffff;
  font-family: var(--primary-font-family) !important;
  gap: 0%;
}

.left-head {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}

.right-head {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}

#head-trend-news {
  margin-top: 20px;
  background: #101d38;
}

/* header buttons */

#btncalendar {
  color: #ffffff;
  background: var(--primary-color);
  justify-content: center;
}

/* logos */
#logoCalendar {
  margin-bottom: 4px;
  margin-right: 7px;
}

#line-head {
  height: 35px;
  width: 0.5px;
  color: #909090;
  background-color: #909090;
}

#btnHead-Socials {
  padding: 0%;
  color: #ffffff;
  background: var(--primary-color);
}

#btnHead-Socials svg {
  margin-bottom: 5%;
}

#drop-head-lang {
  color: #ffffff;
  outline-color: #ffffff;
}

.video_slider_button {
  display: flex;
  /* height: 100%; */
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 99;
  top: 18vh;
}

/* ---------------------------------- cat nav --------------------------- */

#cn-main {
  font-family: var(--primary-font-family) !important;
  border-top: 0.1px solid #0000001c;
  border-bottom: 0.1px solid #0000001c;
  background-color: var(--body-color);
  box-shadow: rgba(50, 50, 93, 0.25) 0px 50px 100px -20px, rgba(0, 0, 0, 0.3) 0px 30px 60px -30px;
}

[data-bs-theme="dark"] #cn-main {
  border-top: 0.1px solid #6c757d;
  border-bottom: 0.1px solid #6c757d;
}

/* For when Data.length > 10 */
.flex-display {
  display: flex;
  justify-content: start;
  align-items: center;
  gap: 60px;
}

/* For when Data.length <= 10 */
.block-display {
  display: block;
  /* Add any other styles you want for the "block" display here */
}

.catContainer {
  width: 100%;
  overflow: hidden;
  overflow-x: auto;
  padding-bottom: 4px;
}


/* width */
.catContainer::-webkit-scrollbar {
  width: 2px;
  height: 6px;
  display: none;
  transition: all 0.3s;
  cursor: pointer;
}

.catContainer:hover::-webkit-scrollbar {
  display: block;
}

/* Track */
.catContainer::-webkit-scrollbar-track {
  border-radius: 10px;
}

/* Handle */
.catContainer::-webkit-scrollbar-thumb {
  background: var(--secondary-color);
  border-radius: 10px;
}

[data-bs-theme="dark"] .catContainer::-webkit-scrollbar-thumb {
  background-color: #6c757d;
}

#cn-main .swiper-slide {
  width: auto !important;
}

#cs-main .swiper-slide .swiper-wrapper {
  transition-timing-function: linear !important;
}

.catNav-links {
  color: var(--text-primary-color);
  text-decoration: none;
  /* margin-right: 2rem; */
}

@import url('https://fonts.googleapis.com/css2?family=Nunito:wght@500&display=swap');

#Link-all {
  text-decoration: none;
  color: var(--secondary-color);
}

/* ----------------------------------- first section -----------------------------------  */

#first-section {
  font-family: var(--primary-font-family) !important;
  color: var(--secondary-color);
  background-color: var(--body-color);
  height: fit-content;
}

#fs-main {
  display: flex;
  flex-direction: column;
}

#body-first-section {
  margin-bottom: 1%;
  margin-top: 2%;
}

/* #style-six-body-section {
  margin-bottom: 1%;
  margin-top: 2%;
  margin-top: -30px;
} */

#body-first-section .swiper-slide {
  z-index: -1;
}

#Left-first-section {
  position: relative;
  padding: 4%;
  background-color: var(--body-color);
  border-radius: 10px;
  height: 30rem;
  width: 55rem;
  justify-content: center;
  display: flex;
  margin-right: -70px;
  flex-direction: column;
  box-shadow: #6c757d2b 0px 0px 20px 8px;
}

.custom-swiper .inner_custom_swiper {
  padding-bottom: 55px !important;
}

.custom-swiper .swiper-pagination-bullet {
  height: 23px;
  width: 23px;
}

.custom-swiper .swiper-pagination-fraction,
.custom-swiper .swiper-pagination-custom,
.custom-swiper .swiper-horizontal>.swiper-pagination-bullets,
.custom-swiper .swiper-pagination-bullets.swiper-pagination-horizontal {
  bottom: 18px !important;
}

#Top-Title {
  font-size: 2.7rem;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

#Top-Description {
  font-size: 34px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin-bottom: 10px;
  font-weight: 600;
}

/* new update slider css */
.fs-Newscard {
  width: 100% !important;
  height: 470px !important;
  border-radius: 16px !important;
  overflow: hidden;
  background-color: transparent;
}

.fs-Newscard::after {
  content: '';
  position: absolute;
  width: 100%;
  bottom: -5px;
  left: 0;
  height: 50%;
  background: linear-gradient(to bottom, transparent, rgba(26, 26, 26, 0.822));
  transition: all 0.5s ease-out;
  z-index: 1;
  overflow: hidden;
}

.fs-Newscard::before {
  content: '';
  position: absolute;
  width: 100%;
  bottom: 0px;
  left: 0;
  height: 300px;
  background: linear-gradient(to bottom, rgb(229 229 229 / 0%), rgba(29, 29, 29, 0.795));
  transition: all 0.5s ease-out;
  z-index: 1;
  overflow: hidden;
}

.fs-Newscard:hover:before {
  height: 100%;
}

.fs-Newscard:hover #Top-Title01 {
  text-decoration: underline;
  cursor: pointer;
}

#fs-Newscard-image01 {
  height: 470px !important;
  object-fit: cover;
  transition: transform 0.5s;
  border-radius: 16px;
  aspect-ratio: 1/1;
  max-width: 100%;
  max-height: 100%;
}

.fs-Newscard:hover #fs-Newscard-image01 {
  transform: scale(1.1);
}

@media (max-width: 575px) {
  .fs-Newscard {
    height: 370px !important;
  }

  #fs-Newscard-image01 {
    height: 370px !important;
  }
}

#Top-Deatils {
  position: absolute;
  bottom: 0;
  color: #fff;
  z-index: 99;
  transition: all 0.3s;
}

.fs-Newscard:hover #Top-Deatils {
  bottom: 12px;
}

#Top-Posttime01 {
  margin-bottom: 0;
  font-weight: 500;
  color: #fff;
  font-size: 18px;
}

#Top-Posttime01 svg {
  margin-right: 12px;
  margin-top: -4px;
}

#Top-Title01 {
  font-size: 32px;
  font-weight: bold;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  text-decoration: none;
  color: #fff !important;
  margin-bottom: 1rem;
}

@media screen and (max-width: 575px) {
  #Top-Title01 {
    font-size: 26px;
  }
}

.video #Top-Description {
  -webkit-line-clamp: 6;
}

@media (min-width: 1200px) {
  #fs-Newscard-image {
    height: 35rem !important;
  }
}

#fs-Newscard-image {
  width: 100%;
  object-fit: cover;
  border-radius: 10px;
}

@media (max-width: 767px) {
  #fs-Newscard-image {
    border-radius: 10px 10px 0 0;
  }

  #Left-first-section {
    border-radius: 0 0 10px 10px;
  }
}

@media (max-width: 1199px) {
  #fs-Newscard-image {
    aspect-ratio: 1/1;
  }

  #Left-first-section {
    margin-right: 0;
    width: 100%;
    height: auto;
  }
}

#fs-Radiobtn {
  width: 23px;
  height: 23px;
  accent-color: var(--primary-color);
}

/* buttons */
#btnCatagory {
  color: #ffffff;
  background: var(--primary-color);
  width: fit-content;
  margin-bottom: 5px;
  font-weight: 600;
  padding: 2px 12px;
  position: relative;
  z-index: 9999;
  cursor: default;
  pointer-events: none;
}

#btnReadMore {
  color: #ffffff;
  background: var(--primary-color);
  width: fit-content;
  margin-bottom: 5px;
  font-size: 24px;
  font-weight: 300;
}

#btnReadMore:hover {
  color: #ffffff;
  background: var(--hover--color);
}

/* .circle {
  position: relative;
}

.circle svg {
  color: var(--primary-color);
  opacity: 0.6;
}

.circle:before,
.circle:after {
  content: "";
  display: block;
  position: absolute;
  top: -9px;
  right: 0;
  bottom: 0;
  left: 0;
  border: 1px solid #ff4343;
  border-radius: 50%;
  height: 40px;
}

@media (max-width: 575px) {
  .circle:before,
  .circle:after {
    top: -9px;
    left: 7px;
  }
}

.circle:before {
  animation: ripple 2s linear infinite;
}

.circle:after {
  animation: ripple 2s linear 1s infinite;
} */

@keyframes ripple {
  0% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.3);
    opacity: 1;
  }

  100% {
    transform: scale(1.6);
    opacity: 0;
  }
}

#btnpaly {
  color: var(--secondary-color);
  margin-left: 2%;
  border: none;
}

#btnpaly-mobile {
  display: none;
}

@media (max-width: 1350px) {
  #Top-Title {
    font-size: 30px;
  }
}

@media (max-width: 1180px) {
  #Top-Title {
    font-size: 25px;
  }

  #Top-Description {
    font-size: 20px;
  }
}

@media (max-width: 1000px) {
  #Top-Title {
    font-size: 20px;
  }

  #Top-Description {
    font-size: 18px;
  }
}

@media (max-width: 922px) {
  #body-first-section {
    display: flex;
    margin-top: 2%;
    margin-bottom: 1%;
  }

  #Top-Title {
    font-size: 20px;
  }
}

@media (max-width: 700px) {
  #Top-Title {
    font-size: 17px;
  }

  #fs-Radiobtn {
    width: 20px;
    height: 20px;
    accent-color: var(--primary-color);
  }

  /* buttons */
  #btnCatagory {
    font-size: 12px;
    color: #ffffff;
    background: var(--primary-color);
    width: fit-content;
    margin-bottom: 5px;
  }

  #btnReadMore {
    color: #ffffff;
    background: var(--primary-color);
    width: fit-content;
    font-size: 12px;
    margin-bottom: 5px;
  }

  #btnpaly-mobile {
    display: contents;
    color: var(--secondary-color);
    border: none;
  }

  #btnpaly-logo {
    margin-left: 2%;
  }
}

/* ------------------------------ Breaking News section -------------------------------------*/
#bns-main-mobile {
  display: none;
}

#bns-main {
  font-family: var(--primary-font-family) !important;
  color: var(--secondary-color);
  padding-top: 2%;
  background-color: #efefef;
  height: fit-content;
  padding-bottom: 1%;
  position: relative;
  overflow: hidden;
}


[data-bs-theme="dark"] #bns-main {
  background-color: var(--secondary-color);
}

#bns-main::before {
  background-image: url('../images/design-top.svg');
  position: absolute;
  content: '';
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
}

#bns-main::after {
  background-image: url('../images/design-bottom.svg');
  position: absolute;
  content: '';
  right: -70%;
  bottom: -43%;
  width: 100%;
  height: 100%;
  background-repeat: no-repeat;
}

[data-bs-theme="dark"] #bns-main::before,
[data-bs-theme="dark"] #bns-main::after {
  filter: brightness(5);
}

@media screen and (max-width: 767px) {

  #bns-main::before,
  #bns-main::after {
    background: transparent;
  }
}

/* width */
#bns-rest-cards::-webkit-scrollbar {
  height: 5px;
}

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

/* Handle */
#bns-rest-cards::-webkit-scrollbar-thumb {
  background: var(--primary-color);
}

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

#bns-main-card {
  height: 83%;
  background: black;
  border-radius: 16px;
  overflow: hidden;
}

#bns-card-body {
  border-radius: 10px;
  position: relative;
}

#bns-logo-row {
  display: none;
}

#bns-main-image {
  object-fit: cover;
  opacity: 0.3;
  height: 100%;
  width: 100%;
}

#bns-main-text {
  color: #ffffff;
  font-size: 40px;
  display: flex;
  justify-content: center;
  flex-direction: column;
  margin-left: 30px;
}

@media screen and (max-width: 575px) {
  #bns-main-text {
    font-size: 30px;
  }
}

#bns-card {
  background-color: transparent;
  border: none;
  display: flex;
  align-items: center;
  padding: 0px 16px;
}

#bns-card::before {
  position: absolute;
  content: '';
  width: 100%;
  height: 80%;
  background-color: var(--body-color);
  bottom: 0;
  box-shadow: 0px 0px 16px #1B2D510F;
  border-radius: 15px;
}


#bns-image {
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 16px;
  position: relative;
  height: 238px;
}

#bns-card-text {
  font-size: 24px;
  margin-top: 12px;
  margin-bottom: 0;
  font-weight: bold;
  line-height: 1.2;
  color: var(--text-primary-color);
  /* overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical; */
}

#btnbnsCatagory {
  color: #ffffff;
  background: var(--primary-color);
  width: fit-content;
  margin-bottom: 5px;
  font-weight: 600;
}

#btnbnsViewAll {
  color: #ffffff;
  background: var(--primary-color);
  width: max-content;
  padding: 6px 20px;
  margin-bottom: 5px;
  font-size: 22px;
  font-weight: 600;
  z-index: 1;
  border: none;
}

#bns-np-btns {
  margin-top: 1%;
  justify-content: center;
  display: flex;
  flex-direction: row;
  gap: 3%;
}

#btnbnsNP {
  color: var(--primary-color);
  background: #edf2f8;
  width: fit-content;
  margin-bottom: 5px;
}

@media (max-width: 1199px) {
  #bns-main {
    font-family: var(--primary-font-family) !important;
    color: var(--secondary-color);
    padding-top: 2%;
    background-color: var(--body-color);
    height: fit-content;
    padding-bottom: 1%;
  }

  #bns-card-text {
    margin-top: 2%;
    /* font-size: 16px; */
    margin-bottom: 0.5rem;
    /* font-weight: 500; */
    line-height: 1.2;
  }
}

/* ------------------------------ Recent news section -------------------------------------*/
#rns-main-mobile {
  display: none;
}

#rns-main {
  background-color: var(--body-color);
  color: var(--secondary-color);
  height: fit-content;
}

#rns-head-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin: 30px 0;
  padding-top: 30px;
}

#rns-main-logo {
  position: relative;
}

#rns-Viewmore {
  font-family: var(--primary-font-family) !important;
  letter-spacing: 1px;
  color: #fff;
  background-color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  padding: 7px 15px;
  border-radius: 5px;
}

#rns-card {
  background-color: #efefef;
  margin-bottom: 22px;
  color: #000;
  padding: 15px;
  font-weight: 400;
  text-decoration: none;
  border: none;
  border-radius: 16px;
  /* height: 356px; */
  height: 472px;
  overflow: hidden;
}

[data-bs-theme="dark"] #rns-card {
  background-color: var(--secondary-color);
  border: 1px solid #113476;
}

/* 
.defaultStyleSect #rns-card {
  height: 342px;
}

@media screen and (min-width: 1200px) and (max-width: 1399px) {
  .defaultStyleSect #rns-card {
    height: 496px;
  }
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  .defaultStyleSect #rns-card {
    height: 445px;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .defaultStyleSect #rns-card {
    height: 254px;
  }
}

@media screen and (min-width: 576px) and (max-width: 991px) {
  .defaultStyleSect #rns-card {
    height: 282px;
  }
}

@media screen and (max-width: 575px) {
  .defaultStyleSect #rns-card {
    height: auto;
  }
} */

.video_style_four #rns-card {
  height: 404px;
}

@media (min-width: 1200px) and (max-width: 1399px) {
  #rns-card {
    height: 402px;
  }

  .video_style_four #rns-card {
    height: 345px;
  }
}

@media (min-width: 992px) and (max-width: 1199px) {
  #rns-card {
    height: 364px;
  }

  .video_style_four #rns-card {
    height: 304px;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  #rns-card {
    height: 390px;
  }

  .video_style_four #rns-card {
    height: 334px;
  }
}

@media (min-width: 576px) and (max-width: 767px) {
  #rns-card {
    height: auto;
  }
}

/* @media (min-width: 576px) and (max-width: 767px) {
  #rns-card {
    height: 318px;
  }

  .video_style_four #rns-card {
    height: 270px;
  }
} */

@media (max-width: 575px) {

  #rns-card,
  .video_style_four #rns-card {
    height: auto;
  }
}

#rns-image {
  aspect-ratio: 1.5/1;
  position: relative;
  object-fit: cover;
  border-radius: 8px;
}

#rns-card-body {
  padding: 10px 10px 0px 0;
  font-size: 24px;
  font-weight: 500;
  line-height: 1.2;
}

#rns-card-body hr {
  margin: 0px;
  color: var(--text-secondary-color);
}

#rns-card-body .readMoreBtn {
  margin-top: 8px;
}

#btnrnsCatagory {
  color: #ffffff;
  background: var(--primary-color);
  width: fit-content;
  position: absolute;
  top: 20px;
  left: 20px;
}

.card-block .card-title {
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
  color: var(--text-primary-color);
  font-size: 24px;
  font-weight: 600;
  margin: 12px 0px;
}

@media (max-width: 575px) {
  .card-block .card-title {
    font-size: 20px;
  }
}

#btnrnsRead {
  padding: 6px 12px;
  border: none;
  border-radius: 6px;
  font-size: 18px;
  width: max-content;
}

/* #btnrnsRead:hover {
  color: #ffffff;
  background-color: var(--primary-color);
  border-color: var(--primary-color);
  padding-left: 10px;
} */

#rns-arrow {
  margin-bottom: 1%;
}

#rns-Catagory-main {
  border-radius: 1%;
  height: 40rem;
}

#rns-cat-nav {
  border: 2px solid var(--primary-color);
  border-radius: 3%;
  color: #ffffff;
  background-color: var(--primary-color);
  justify-content: center;
  height: 3rem;
}

#rns-cat-card {
  width: 96%;
  margin-left: 2%;
  margin-top: 3%;
  background: black;
  overflow: hidden;
  border: none;
}

#rns-cat-image {
  object-fit: cover;
  opacity: 0.5;
  height: 5rem;
  width: 100%;
}

#btnrns-cat-more {
  color: #ffffff;
  background-color: #00000000;
  border: none;
}

@media (max-width: 1250px) {
  #rns-card-body {
    font-size: 22px;
  }
}

@media (max-width: 992px) {
  .newsStyleTitle {
    margin-top: 0px !important;
    font-size: 18px;
  }
}


@media (max-width: 850px) {
  #rns-card-body {
    font-size: 18px;
  }
}

@media (max-width: 450px) {
  #rns-Viewmore {
    text-align: end;
    font-size: 14px;
  }
}

/* ---------------------------------- rns weather card ------------------------------------ */

.right-weather {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}

#rns-weather-card {
  background: var(--secondary-color);
  padding: 10px 0;
}

@media (max-width: 1199px) {
  .right-weather {
    display: none;
  }
}

.calender_icon {
  background-color: var(--primary-color);
  border-radius: 5px;
  padding: 4px;
  display: flex;
  align-items: center;
}

.calender_icon p {
  font-weight: 900;
  font-size: small;
}

.calender_icon p svg {
  margin-top: -4px;
}

.calender_icon svg {
  margin-right: 5px;
}

.location-wcard {
  font-weight: bold;
}

.location-wcard,
.day-Wtype-wcard {
  font-size: small;
}

.weather_icon {
  margin-right: 5px;
  height: 40px;
}

#weather-main-text {
  color: #fff;
  width: 100%;
}

.left-weather {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
}

.slash-line {
  width: 1px;
  background-color: #fff;
  content: '|';
  position: relative;
  height: 20px;
}

.social_media_top {
  margin-left: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.social_media_top a {
  height: 28px;
  width: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.social_media_top a:hover {
  background-color: var(--primary-color) !important;
  border-radius: 4px;
}

.social_media_top .socialMediaIcons {
  width: 16px;
  height: 16px;
}

.language_section {
  list-style: none;
  margin-bottom: 0;
  padding-left: 0;
}

[dir='rtl'] .left-state {
  margin-right: 10px;
}

.language_drop {
  background-color: #fff;
  outline: none !important;
  border: none !important;
  color: #000;
  margin-right: 12px;
  padding: 4px 12px;
  border-radius: 4px;
  cursor: pointer;
}

[dir='rtl'] .language_drop {
  margin-left: 12px;
}

/* .language_drop:hover,
.language_section .dropdown .btn.show {
  background-color: var(--primary-color);
} */



#wcard-footer {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 33%;
  width: 100%;
  background-color: #ffffff49;
  display: flex;
  flex-direction: row;
  gap: 2.5%;
  justify-content: center;
  padding-top: 4%;
}

/* ----------------------------------------- Popular News --------------------------------------- */

#rns-PNews-main {
  border-radius: 1%;
  height: 38rem;
}

#rns-PNews-card {
  width: 96%;
  margin-left: 3%;
  margin-right: 3%;
  margin-top: 3%;
  background: var(--body-color);
  overflow: hidden;
  border: none;
  display: flex;
  flex-direction: row;
}

#rns-PNews-image {
  object-fit: cover;
  height: 7rem;
  width: 30%;
  border-radius: 3%;
}

#PNews-card-body {
  padding-left: 2%;
}

#rns-PNews-card-text {
  margin: 4%;
}

/* -------------------------------------------- tags ----------------------------------------- */

#rns-tags-main {
  border-radius: 5px;
  border: 1px solid #dedede;
  padding-bottom: 16px;
}

#tags-nav {
  border: 2px solid var(--primary-color);
  border-radius: 5px 5px 0 0;
  color: #ffffff;
  background-color: var(--primary-color);
  justify-content: center;
}

/* #rns-nav-logo b {
  font-weight: 500;
} */

#tags-tag {
  margin: 10px auto;
}

#btnTags {
  margin-left: 3%;
  margin-top: 2%;
}

[data-bs-theme="dark"] #btnTags {
  color: var(--text-primary-color);
  border: 1px solid #fff;
}

[data-bs-theme="dark"] #btnTags:hover {
  background-color: var(--hover--color);
}

/* -----------------------------video player sectin ---------------------------------- */

#vps-main {
  height: fit-content;
  padding-bottom: 2%;
  font-family: var(--primary-font-family) !important;
  color: #ffffff;
  /* background-color: var(--secondary-color); */
}

#vps-head-main {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 25px auto;
}

#vps-main-logo {
  position: relative;
  color: #000;
  font-size: 22px;
  font-weight: 600;
  line-height: 1.2;
  margin-bottom: 0;
}

#vps-Viewmore {
  font-family: var(--primary-font-family) !important;
  letter-spacing: 1px;
  color: #fff;
  background-color: var(--primary-color);
  font-weight: 600;
  text-decoration: none;
  padding: 7px 15px;
  border-radius: 5px;
}

@media (max-width: 400px) {
  #vps-Viewmore {
    font-size: small;
  }
}

#vps-main-card,
#vps-image-cards {
  width: 100%;
  border: none;
  margin-bottom: 22px;
  position: relative;
  display: inline-block;
  border-radius: 16px;
  overflow: hidden;
}

#vps-main-card .categoryTag {
  position: absolute;
  z-index: 1;
  top: 20px;
  left: 20px;
}

#vps-main-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  aspect-ratio: 4.5;
  border-radius: 5px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), #000);
}

#vps-image-cards p {
  margin: 0;
}

#vps-image-cards:after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  aspect-ratio: 4.5;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), #000);
  width: 100%;
  height: 250px;
}

#vps-card-overlay {
  height: 65%;
}

#vps-main-image {
  object-fit: cover;
  /* opacity: 0.8; */
  width: 100%;
  aspect-ratio: 1.18/1;
  position: relative;
}

@media (max-width: 1199px) {
  #vps-main-image {
    height: 20rem;
  }
}

#vps-card-body {
  height: 35%;
  width: 100%;
}

#vps-main-title {
  color: #ffffff;
  margin-left: 1%;
  position: relative;
  font-size: 30px;
  top: 30%;
}

#vps-main-date {
  color: #ffffff;
  position: absolute;
  bottom: 3%;
  font-size: 1.2rem;
  margin-left: 1%;
  margin-top: 0;
  margin-bottom: 0.5rem;
  font-weight: 500;
  line-height: 1.2;
}

#vps-body-right {
  display: flex;
  flex-direction: column;
}

#vps-image-cards {
  border-radius: 16px;
  border: none;
  margin-bottom: 22px;
  position: relative;
  overflow: hidden;
}

#vps-image-cards .categoryTag {
  position: absolute;
  top: 20px;
  z-index: 1;
  left: 20px;
}

#vps-secondry-images {
  /* opacity: 0.8; */
  object-fit: cover;
  border-radius: 10px;
  aspect-ratio: 1.9/1;
}

@media screen and (max-width: 575px) {
  #vps-secondry-images {
    height: 300px;
  }
}

.video_style_three #vps-body-right #vps-secondry-images {
  aspect-ratio: 2/1;
}

.second_video #vps-btnVideo,
.third_video #vps-btnVideo {
  border-radius: 50%;
}

#vps-body-left #vps-card-title {
  position: relative;
  background-color: transparent;
  text-decoration: none;
  justify-content: flex-start;
  width: auto;
  padding: 0;
  font-size: 34px;
  color: #000;
  font-weight: 300;
}

#vps-body-left .vps-img-div {
  position: relative;
}

#vps-body-left .vps-img-div .seeAllPhoto {
  position: absolute;
  margin-left: 85% !important;
  margin-top: -7%;
}

@media only screen and (max-width: 767px) {
  #vps-body-left .vps-img-div .seeAllPhoto {
    margin-left: 75% !important;
    margin-top: -12%;
  }
}

@media only screen and (max-width: 400px) {
  #vps-body-left .vps-img-div .seeAllPhoto {
    margin-left: 70% !important;
    margin-top: -15%;
  }
}

#vps-body-left .vps-img-div .seeAllPhoto button {
  padding: 5px 20px;
  border: none;
  border-radius: 4px;
  color: #fff;
  background: var(--primary-color);
  font-weight: 600;
}

#vps-body-left a {
  text-decoration: none;
  border-radius: 50%;
}

#vps-card-title {
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 15px;
  color: #ffffff;
  font-size: 22px;
  line-height: 1.2;
  border-radius: 10px;
  width: 100%;
  display: flex;
  justify-content: flex-start;
  align-items: center;
  right: 0;
  z-index: 1;
  text-transform: capitalize;
}

@media (max-width: 1200px) {
  #vps-main-title {
    top: 20%;
  }
}

@media (max-width: 400px) {
  #vps-card-overlay {
    height: 65%;
  }

  #vps-main-image {
    object-fit: cover;
    /* opacity: 0.8; */
    height: auto;
    width: 100%;
    aspect-ratio: 1/1;
  }

  #vps-image-cards {
    background-color: #000000;
    border: none;
  }
}

/* -----------------------------modal css -------------------------------------------------- */
#vps-modal-btnclose {
  border: none;
  position: absolute;
  background: var(--primary-color);
  box-shadow: 1px 1px 5px 0px #000000;
  top: -12px;
  right: -12px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 10;
}

#btnClose-logo {
  color: #ffffff;
  border-radius: 10px;
  width: 10px;
}

#vps-modal-header {
  border: none;
}

#vps-modal-body {
  padding: 0;
}

#vps-btnVideo {
  color: #ffffff;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
}

.video_style_five #vps-btnVideo {
  top: -80px;
}

/* @media (max-width: 575px) {
  .video_style_three #vps-body-left .card-img-overlay {
    transform: translate(38%, 38%);
  }
  .video_style_three #vps-body-right .card-img-overlay {
    transform: translate(38%, 60%);
  }

  .video_style_five #rns-img-overlay {
    transform: translate(45%, 50%);
  }
} */

.video_style_four #rns-img-overlay #vps-btnVideo {
  top: -60px;
}

.pulse {
  display: block;
  border-radius: 50%;
  border: 4px solid white;
  background: var(--secondary-color) !important;
  padding: 8px;
  width: 50px;
  height: 50px;
  cursor: pointer;
  box-shadow: none !important;
  /* animation: pulse 2s linear infinite both; */
  position: relative;
  /* z-index: 999 !important; */
}

.pulse svg {
  font-size: 20px;
}

.pulse::before {
  content: '';
  box-shadow: 0 0 0 rgba(255, 0, 0, 0.329);
  animation: pulse2 2s linear 1s infinite both;
  border-radius: 50%;
  border-radius: 50%;
  display: block;
  width: 50px;
  height: 50px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  margin: auto;
  z-index: 999;
}

.pulse:hover {
  animation: none;
}

@-webkit-keyframes pulse {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.329);
  }

  70% {
    -webkit-box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
  }
}

@keyframes pulse {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.329);
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.329);
  }

  70% {
    -moz-box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
    box-shadow: 0 0 0 40px rgba(204, 169, 44, 0);
  }

  100% {
    -moz-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
    box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
  }
}

@-webkit-keyframes pulse2 {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.329);
  }

  70% {
    -webkit-box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
  }

  100% {
    -webkit-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
  }
}

@keyframes pulse2 {
  0% {
    -moz-box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.329);
    box-shadow: 0 0 0 0 rgba(255, 0, 0, 0.329);
  }

  70% {
    -moz-box-shadow: 0 0 0 10px rgba(204, 169, 44, 0);
    box-shadow: 0 0 0 60px rgba(204, 169, 44, 0);
  }

  100% {
    -moz-box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
    box-shadow: 0 0 0 0 rgba(204, 169, 44, 0);
  }
}

#hns-center-col #vps-btnVideo-logo {
  height: 30px;
}

/* #vps-btnVideo-logo {
  margin-left: 10%;
} */

#vps-videoPlayer {
  padding: 3% 3% 1% 3%;
}

#vps-multi-video {
  display: flex;
  flex-direction: row;
  gap: 3%;
  margin-top: 1%;
  height: 12rem;
  justify-content: center;
}

#multi-video-btn {
  display: flex;
  flex-direction: row;

  width: 25%;
  height: 10rem;
  border: none;
}

#vns-btn-image {
  height: auto;
  opacity: 0.3;
  width: 33%;
  border-radius: 50%;
  object-fit: cover;
  margin-top: 0.5%;
}

#vns-btn-text {
  margin-top: 7%;
  bottom: 7%;
}

#vns-btn-date {
  position: absolute;
  margin-top: 0.5%;
  margin-left: 1%;
  font-size: small;
}

/* -----------------------------health news section------------------------- */

#hns-head {
  font-family: var(--primary-font-family) !important;
  color: var(--secondary-color);
}

#hns-head-main {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* margin-bottom: 20px; */
  margin: 20px 0px;
  margin-top: 30px;
  gap: 18px 0px;
  flex-wrap: wrap;
}

/* #hns-head-main .left-sec {
  width: 88%;
} */

#hns-main-logo {
  line-height: 1.2;
  font-size: 24px;
  font-weight: bold;
  color: var(--text-primary-color);
}

#hns-Viewmore {
  letter-spacing: 1px;
  background-color: transparent;
  text-decoration: none;
  padding: 7px 15px;
  border-radius: 5px;
  font-weight: 700;
  color: var(--secondary-color);
  border: 1px solid var(--secondary-color);
}

#hns-main {
  margin-top: 20px;
  font-family: var(--primary-font-family) !important;
  color: var(--secondary-color);
  height: fit-content;
  padding-bottom: 20px;
}

#hns-main-mobile {
  display: none;
}

#hns-main-card {
  overflow: hidden;
  border: none;
  margin-bottom: 20px;
}

#hns-main-image {
  object-fit: cover;
  width: 100%;
  height: 28rem;
}

#hns-main-body {
  color: #ffffff;
}

#hns-main-text {
  position: absolute;
  bottom: 2%;
  background-color: rgba(0, 0, 0, 0.5);
  padding: 3%;
  width: 90%;
  border-radius: 10px;
  text-align: center;
  margin: auto;
  left: 0;
  right: 0;
}

#hns-card {
  width: 100%;
  height: 6rem;
  border: none;
  display: flex;
  flex-direction: row;
  margin-bottom: 22px;
}

#hns-card-image {
  object-fit: cover;
  height: 100%;
  border-radius: 5px;
  width: 100px;
}

.hns-card-body {
  width: 100%;
  margin-left: 10px;
}

[dir='rtl'] .hns-card-body {
  margin-right: 10px;
}

[dir='rtl'] .modal-header .btn-close {
  margin: 0 !important;
}

#hns-card-text {
  font-size: 16px;
  margin-bottom: 0.5rem;
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

#btnhnsCatagory {
  color: #ffffff;
  background: var(--primary-color);
  margin-left: 10px;
}

#btnhnsCatagorysub {
  color: #ffffff;
  background: var(--primary-color);
}

@media (max-width: 1420px) {
  #btnhnsCatagorysub {
    color: #ffffff;
    background: var(--primary-color);
  }
}

@media (max-width: 600px) {
  #hns-main-logo {
    position: relative;
    font-size: 18px;
    margin-bottom: 0.5rem;
    line-height: 1.2;
  }

  #hns-Viewmore {
    font-size: 14px;
  }
}

#footer-nav {
  color: #fff;
  font-weight: 500;
  font-size: 18px;
  border-bottom: 1px solid #ffffff29;
  /* text-transform: uppercase; */
  letter-spacing: 1px;
  margin-bottom: 22px;
}

#footer {
  padding-top: 2%;
  background: var(--secondary-color);
  height: fit-content;
  width: 100%;
}

.News {
  color: #ffffff;
}

#cB {
  top: 4%;
  width: 76%;
  margin-left: 12%;
  color: #ffffff;
  background-color: #0d2047;
  border: 2px solid #ffffff;
}

#footer h5 {
  padding-left: 10px;
  border-bottom: 1px solid #777575;
  padding-bottom: 6px;
  margin-bottom: 20px;
  color: #ffffff;
  text-transform: uppercase;
}

#footer a {
  color: #ffffff;
  text-decoration: none !important;
  text-transform: capitalize;
  -webkit-text-decoration-skip: objects;
  text-align: start;
}

#footer a:hover {
  color: var(--primary-color);
}

#footer .category-list,
.newscate {
  column-count: 2;
  column-gap: 25px;
}

@media (max-width: 991px) {

  #footer .category-list,
  .newscate {
    column-count: 1;
    column-gap: 0;
  }
}

.social_media {
  display: flex;
  flex-direction: column;
}

.lorem {
  color: #fff;
  font-size: smaller;
  margin-top: 35px;
}

.hide-mobile a:hover {
  color: #ffffff;
}

#footer ul.newscate {
  list-style-type: none;
  padding-left: 0px;
}

ul.newscate>li {
  display: flex;
  align-items: center;
  font-size: 14px;
  margin-bottom: 15px;
}

/* usefull link */
#footer ul.useL {
  list-style-type: none;
  padding-left: 0px;
}

ul.useL>li {
  display: flex;
  align-items: center;
  font-size: 14px;
  margin-bottom: 15px;
}

@media only screen and (max-width: 1300px) and (min-width: 690px) {
  #footer ul.useL {
    list-style-type: none;
  }
}

#footer ul li::marker {
  color: var(--primary-color);
}

#footer .copyright {
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  /* text-align: center;   */
  padding: 12px 0px;
}

#e-f {
  height: 60px;
  width: 500px;
  position: relative;
  top: 2rem;
}

.hr_line {
  background-color: var(--body-color);
}

.newsLetter {
  font-size: small;
}

.error-msg-sub {
  padding-top: 0%;
  color: var(--primary-color);
}

@media only screen and (max-width: 1200px) and (min-width: 1100px) {
  #e-f {
    width: 330px;
  }

  .newsLetter {
    font-size: 10px;
  }
}

@media (max-width: 1100px) {
  #cB {
    display: none;
  }
}

#ES {
  position: relative;
  float: right;
  right: 10px;
  top: -22px;
  margin: 5px;
  color: #fff;
  background-color: var(--primary-color);
  height: auto;
  width: fit-content;
}

#ES:hover {
  background-color: var(--hover--color);
}

#footer .copyright p {
  color: #fff;
  text-transform: none;
  padding-left: 8px;
  font-weight: 400;
  margin-bottom: 0;
  line-height: 24px;
}

#footer .webName {
  font-weight: bold;
}

#social_platforms {
  color: #fff;
  background-color: var(--secondary-color);
  padding-left: 0;
}

a#social_platforms svg:hover {
  color: #ffffff;
  background-color: var(--primary-color);
}

#contact-us {
  display: none;
}

@media only screen and (max-width: 945px) and (min-width: 700px) {
  #footer-nav {
    color: #fff;
    font-size: 16px;
    border-bottom: 1px solid #ffffff;
    text-transform: uppercase;
  }

  #contact-us {
    display: flex;
    flex-direction: column;
  }
}

@media (max-width: 700px) {
  #footer {
    background: var(--secondary-color);
    height: fit-content;
    width: 100%;
  }

  #cB {
    top: 4%;
    width: 76%;
    margin-left: 12%;

    color: #ffffff;
    background-color: #0d2047;
    border: 2px solid #ffffff;
  }

  #footer h5 {
    padding-left: 10px;
    border-bottom: 1px solid #777575;
    padding-bottom: 6px;
    margin-bottom: 20px;
    color: #ffffff;

    text-transform: uppercase;
  }

  #footer a:hover {
    color: var(--primary-color);
  }

  #footer ul.newscate {
    list-style-type: none;
  }

  #footer ul.useL {
    list-style-type: none;
  }

  #footer ul li::marker {
    color: var(--primary-color);
  }

  /* #footer .copyright {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
  } */

  #e-f {
    height: 90%;
    width: 500px;
  }

  .newsLetter {
    font-size: small;
  }

  .error-msg-sub {
    padding-top: 2%;
  }

  #ES {
    position: relative;
    right: 160px;
    top: 10%;
    color: #fff;
    background-color: var(--primary-color);
    height: 70%;
    width: 150px;
  }

  #ES:hover {
    background-color: var(--hover--color);
  }

  .news_footer {
    margin-top: 3%;
    margin-left: 5%;
    margin-right: 5%;
  }

  #social_platforms {
    color: #fff;
    background-color: var(--secondary-color);
    width: fit-content;
  }

  a#social_platforms:hover {
    color: #ffffff;
    background-color: var(--primary-color);
  }

  #cB {
    display: none;
  }
}

@media (max-width: 570px) {
  #contact-us {
    display: flex;
    flex-direction: row;
  }
}

#bs-no-main {
  text-align: center;
  background-color: var(--body-color);
  padding: 20px;
  border-radius: 6px;
}

#bs-no-image {
  width: 15rem;
}

[data-bs-theme="dark"] #bs-no-image {
  filter: invert(0.8);
}

#bs-no-title {
  font-size: 40px;
  color: var(--text-primary-color);
}

#bs-no-text {
  font-size: 20px;
  font-weight: 500;
  color: var(--text-secondary-color);
}

#bs-card {
  width: 100%;
  border: none;
}

[data-bs-theme="dark"] #bs-card {
  background-color: var(--secondary-color);
}

[data-bs-theme="dark"] #bs-card-body {
  padding: 0px 12px;
}

#bs-card-image {
  aspect-ratio: 2/1;
  object-fit: cover;
  position: relative;
}

#bs-card-body {
  padding: 2%;
}

.bs_image_card {
  position: relative;
}

#bs-btnBookmark {
  background-color: var(--secondary-color);
  color: #ffffff;
  border-radius: 50%;
  position: absolute;
  right: 5%;
  bottom: -10%;
  width: 40px;
  height: 40px;
  padding: 0;
  border: 4px solid #fff;
}


[data-bs-theme="dark"] #bs-btnBookmark {
  background-color: #010f27;
}

@media (max-width: 767px) {
  #bs-card-image {
    aspect-ratio: 1/1;
  }

  #bs-card {
    height: auto;
  }

  #bs-btnBookmark {
    bottom: -6%;
  }
}

#bs-btnCatagory {
  color: #ffffff;
  background: var(--primary-color);
  position: absolute;
  top: 10px;
  left: 10px;
  font-weight: 600;
  cursor: default !important;
}

#bs-card-title {
  margin-top: 2%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: var(--text-primary-color);
  font-size: 24px;
  font-weight: 600;
  /* margin-top: 26px; */
}

#bs-card-date {
  color: #1B2D51;
  font-weight: 400;
}

[data-bs-theme="dark"] #bs-card-date {
  color: var(--text-secondary-color);
}

#bs-logoCalendar {
  margin-bottom: 0.6%;
  margin-right: 1%;
}

.bs-ReadMore {
  position: absolute;
  bottom: 3%;
  right: 1%;
  color: #ffffff !important;
  background-color: var(--primary-color) !important;
}

.bs-ReadMore:hover {
  color: #ffffff !important;
  background-color: var(--primary-color) !important;
}

.breadcrumb-item+.breadcrumb-item:before {
  content: var(--bs-breadcrumb-divider, '|');
}

#bcb-main {
  background: var(--body-color);
  padding-top: 1.5rem;
  padding-bottom: 0.1rem;
  font-family: var(--primary-font-family) !important;
  font-size: 20px;
}

#bcb-home-logo {
  margin-bottom: 10%;
}

#bcb-main [role='button'] {
  text-decoration: none;
}

#bcb-link-text {
  text-decoration: none;
  color: var(--secondary-color);
}

#bcb-item {
  text-decoration: none;
  color: var(--text-primary-color);
  font-weight: 600;
}

#bcb-active-item {
  color: var(--primary-color);
  font-weight: 600;
}

#bcb-active-item a {
  text-decoration: none;
  color: var(--primary-color) !important;
}

#bcb-active-item::before {
  content: var(--bs-breadcrumb-divider, '|');
}

#bcb-third-item::before {
  content: var(--bs-breadcrumb-divider, '|');
}

#bcb-fourth-item::before {
  content: var(--bs-breadcrumb-divider, '|');
}

#bcb-fourth-item {
  font-weight: 600;
}

.breadcrumb_data {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  word-break: break-word;
}

.breadcrumb_data li:last-child::before {
  content: '';
  color: transparent;
}

[dir='rtl'] .breadcrumb_data {
  align-items: baseline;
  gap: 6px;
}

#B_NV-main {
  font-family: var(--primary-font-family) !important;
  color: var(--secondary-color);
}

#B_NV-page {
  /* padding: 30px 0; */
  padding-top: 30px;
  padding-bottom: 30px;
}

#btnB_NVCatagory {
  color: #ffffff;
  background: var(--primary-color);
  cursor: default;
  font-weight: 600;
}

#B_NV-right-section {
  display: flex;
  flex-direction: column;
  gap: 1%;
}

#B_NV-body {
  width: 100%;
  max-width: 100%;
}

#B_NV-title {
  margin-top: 10px;
  word-break: break-word;
  color: var(--text-primary-color);
  font-size: 46px;
  font-weight: bold;
}

/* ------------------------------------------------------------------- */

#B_NV-Header {
  display: flex;
  justify-content: space-between;
  background-color: var(--body-color);
  color: var(--secondary-color);
  border-top: 1px solid #c0c5d0;
  border-bottom: 1px solid #c0c5d0;
  font-family: var(--primary-font-family) !important;
  padding: 15px 0;
  flex-wrap: wrap;
}

#B_NV-left-head {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}

#B_NV-right-head {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}

#B_NV-Share-Label {
  margin: 0;
  color: var(--text-primary-color);
  font-weight: 600;
  text-transform: uppercase;
}

#btncalendar {
  color: #ffffff;
  background: var(--primary-color);
  justify-content: center;
}

#head-lables {
  font-size: 16px;
}

#head-logos {
  margin-bottom: 3px;
}

#line-head {
  height: 35px;
  width: 0.5px;
  color: #909090;
  background-color: #909090;
}

#B_NV-image {
  margin-top: 1%;
  margin-bottom: 1%;
  object-fit: cover;
  width: 100%;
  border-radius: 10px;
  max-width: 100%;
  height: auto;
}

#B_NV-functions {
  border-radius: 10px;
  background-color: var(--body-color);
  padding: 15px;
}

#B_NV-functions-left {
  display: flex;
  flex-direction: column;
}

#B_NV-function-pair {
  margin-left: 10%;
  margin-top: 1.7rem;
  justify-content: center;
}

#B_NV-function {
  border: none;
  padding: 0%;
  color: var(--secondary-color);
  text-decoration: none;
  margin: 1%;
}

#B_NV-function-text {
  font-size: small;
}

#B_NV-font-lable {
  margin-top: 0.5rem;
}

#B_NV-FontRange {
  color: var(--secondary-color);
  width: 100%;
}

#B_NV-FontRange-labels {
  font-size: small;
}

#B_NV-functions-right {
  display: none;
  flex-direction: row;
  justify-content: right;
}

#B_NV-description {
  margin-top: 20px;
  width: 100%;
  color: var(--text-primary-color);
}

#B_NV-description img {
  max-width: 100% !important;
  height: auto;
}

#B_NV-description video {
  max-width: 100%;
  max-height: 40rem;
  height: auto;
}

#BNV-main {
  background-color: var(--body-color);
  padding: 30px 0;
}

#BNV-card {
  width: 100%;
  border: none;
  margin-bottom: 10px;
  background-color: var(--body-color);
}

#BNV-card-image {
  width: 100%;
  aspect-ratio: 1.5/1;
  object-fit: cover;
}

#BNV-card-body {
  padding: 1%;
  height: 30%;
}

#BNV-btnCatagory {
  padding-top: 10px;
  color: #ffffff;
  background: var(--primary-color);
  width: fit-content;
}

#BNV-card-title {
  padding-top: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: var(--text-primary-color);
  font-size: 24px;
  font-weight: 600;
}

#btnBNVRead {
  color: var(--primary-color);
  background: #d1d1d1;
  border: none;
}

#BNV-card-date {
  font-size: large;
}

#BNV-logoCalendar {
  margin-bottom: 0.6%;
  margin-right: 1%;
}

#BNV-btnVideo {
  float: inline-end;
  color: #ffffff;
  background: var(--body-color);
  border-radius: 50%;
  display: inline-flex;
  position: absolute;
  right: 5%;
  top: 5%;
}

#BNV-btnVideo:hover {
  box-shadow: 0 0 1px 8px rgba(255, 255, 255, 0.4), 0 0 1px 16px rgba(255, 255, 255, 0.1);
}

#BNV-btnVideo-logo {
  margin-left: 10%;
}

#cat-main {
  font-family: var(--primary-font-family) !important;
}

#cat-section-card {
  width: 96%;
  margin-left: 2%;
  margin-top: 3%;
  background: black;
  overflow: hidden;
  border: none;
}

#cat-section-card-image {
  object-fit: cover;
  opacity: 0.3;
  height: 5rem;
  width: 100%;
}

#cat-section-card-body {
  color: #ffffff;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#btn-cat-more {
  color: #ffffff;
  background-color: #00000000;
  border: none;
}

#btn-cat-more img {
  object-fit: contain;
  width: 50px;
  height: 50px;
}

#cv-main {
  font-family: var(--primary-font-family) !important;
}

#cv-card {
  width: 100%;
  border: none;
  margin-top: 1%;
}

#cv-card-image {
  width: 100%;
  padding: 10px;
  aspect-ratio: 1/1;
  object-fit: contain;
  position: relative;
}

#cv-card-body {
  padding: 1%;
  height: 40%;
}

#cv-btnCatagory {
  position: absolute;
  top: 10px;
  left: 10px;
  font-weight: 600;
}

#cv-card-title {
  font-size: 20px;
  font-weight: 500;
  line-height: 1.2;
  margin-top: 2%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  color: var(--text-primary-color);
  font-weight: 600;
  text-align: start;
}

.card-description {
  font-size: 16px;
  line-height: 1.2;
  margin-top: 2%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  color: var(--text-primary-color);
  font-weight: 400;
  text-align: start;

}

#btncvRead {
  color: var(--primary-color);
  background: #d1d1d1;
  border: none;
}

#cv-card-date {
  font-size: large;
  color: #1B2D51;
}

[data-bs-theme="dark"] #cv-card-date {
  color: var(--text-secondary-color);
}



#cv-logoCalendar {
  margin-bottom: 0.6%;
  margin-right: 1%;
}

#submitbutton {
  border: 3px solid transparent;
  background-color: var(--primary-color);
  color: #fff;
  font-size: 22px;
  font-weight: 500;
}

@media screen and (min-width: 992px) {
  #ModalWrapper11 {
    min-width: 820px;
    height: fit-content;
    display: flex;
    flex-direction: row;
    border-radius: 20px;
  }

  .logo-text2 {
    color: #000;
    text-align: center;
    width: 50%;
    position: absolute;
    bottom: 3%;
  }

  #logo2 {
    width: 25%;
    height: auto;
  }

  #ModalImg2 {
    width: 100%;
    height: 39rem;
    opacity: 0.5;
    object-fit: cover;
  }

  #modal-content2 {
    width: 100%;
    background-color: var(--body-color);
    border-radius: 0 20px 20px 0;
  }
}

@media screen and (max-width: 700px) {
  #login_img2 {
    display: none;
  }

  #ModalWrapper {
    background-color: var(--body-color);
  }
}

#LN-main {
  font-family: var(--primary-font-family) !important;
}

#LN-card {
  width: 100%;
  border: none;
  margin-bottom: 10px;
  background-color: var(--body-color);
  overflow: hidden;
}

#LN-card-image {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
}

#LN-card-body {
  padding: 1%;
  height: 30%;
}

#LN-btnCatagory {
  margin-top: 3%;
  color: #ffffff;
  background: var(--primary-color);
  width: fit-content;
}

#LN-card-title {
  margin-top: 5%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

#btnLNRead {
  color: var(--primary-color);
  background: #d1d1d1;
  border: none;
}

#LN-card-date {
  font-size: large;
}

#LN-logoCalendar {
  margin-bottom: 0.6%;
  margin-right: 1%;
}

#LN-btnVideo {
  float: inline-end;
  color: #ffffff;
  background: var(--body-color);
  border-radius: 50%;
  display: inline-flex;
  position: absolute;
  right: 5%;
  top: 5%;
}

#LN-btnVideo:hover {
  box-shadow: 0 0 1px 8px rgba(255, 255, 255, 0.4), 0 0 1px 16px rgba(255, 255, 255, 0.1);
}

#LN-btnVideo-logo {
  margin-left: 10%;
}

@media screen and (min-width: 992px) {
  .fonton {
    background-color: #edf2f8;
  }

  .welcom-back {
    margin-top: 3%;
    margin-bottom: 3%;
  }

  .bordert:after {
    content: 'OR';
    position: absolute;
    top: -13px;
    left: 45%;
    background-color: var(--body-color);
    padding: 0px 8px;
  }

  .logo-img-overlay {
    position: absolute;
    top: 3%;
    left: 3%;
  }

  [dir='rtl'] .logo-img-overlay {
    left: 70%;
  }

  .logo-text {
    color: #000;
    text-align: center;
    width: 50%;
    position: absolute;
    bottom: 3%;
  }

  #logo1 {
    width: 120px;
    height: auto;
    border-radius: 4px;
  }

  .ModalImg {
    width: 100%;
    height: 43rem;
    border-radius: 7px 0 0 7px;
    opacity: 0.5;
    object-fit: cover;
  }

  [dir='rtl'] .ModalImg {
    border-radius: 0px 20px 20px 0px;
  }

  #mainmodal {
    margin-top: 2%;
    margin-right: 37rem !important;
    margin-left: 20rem !important;
  }

  .footer {
    text-align: center;

    font-size: 120%;
    padding-top: 2%;
  }

  #loginbutton {
    color: #ffffff;
    background: var(--primary-color);
    cursor: pointer;
    font-size: 24px;
    font-weight: 600;
    /* border: 3px solid transparent; */
  }

  #loginbutton:hover {
    background-color: var(--body-color);
    color: var(--primary-color);
    /* border: var(--primary-color) solid 3px; */
    font-weight: bold;
  }
}

#login-social1,
#login-social2,
#login-social3 {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-bottom: 10px;
}

#login-social1 svg,
#login-social2 svg,
#login-social3 svg {
  height: 10px;
  margin-right: 3px;
}

#login-social1 p,
#login-social2 p,
#login-social3 p {
  margin-bottom: 0;
}

.error-msg {
  font-size: smaller;
  color: rgb(250, 50, 50);
  text-align: justify;
  margin-left: 0.5rem;
}

#login-social1 {
  border: none;
  color: #ffffff;
  background-color: #3b5998;
  padding: 10px;
  width: 100%;
  font-weight: 600;
}

#login-social2 {
  color: #ffffff;
  background-color: var(--primary-color);
  padding: 10px;
  width: 100%;
  border: none;
  font-weight: bold;
}

#login-social3 {
  border: none;
  color: #ffffff;
  background-color: var(--secondary-color) !important;
  padding: 10px;
  width: 100%;
  font-weight: 600;
}

.footer h6 {
  text-transform: capitalize;
}

@media screen and (max-width: 1199px) {
  #ModalWrapper {
    background-color: var(--body-color);
    border-radius: 20px;
    display: block;
  }

  #login_img1 {
    display: none;
  }

  #modal-content {
    border-radius: 20px;
  }

  #loginbutton {
    color: #ffffff;
    background: var(--primary-color);
  }

  #forgot {
    font: 'small-caption';
    font-family: var(--primary-font-family) !important;
    float: right;
    right: 0;
    cursor: pointer;
  }

  .footer {
    text-align: center;

    font-size: 120%;
    padding-top: 4%;
  }

  .bordert {
    border-top: 1px solid #aaa;
  }

  .bordert:after {
    content: 'OR';
    position: absolute;
    top: 61.5%;
    left: 46%;
    background-color: var(--body-color);
    padding: 0px 8px;
  }
}

@media screen and (max-width: 575px) {
  .bordert:after {
    content: 'OR';
    position: absolute;
    top: 68%;
    left: 43%;
    background-color: var(--body-color);
    padding: 0px 8px;
  }
}

#nv-main {
  font-family: var(--primary-font-family) !important;
  color: var(--secondary-color);
}

#nv-page {
  padding: 10px 0;
}

#btnnvCatagory {
  color: #ffffff;
  background: var(--primary-color);
  width: fit-content;
  font-weight: 600;
}

#nv-right-section {
  display: flex;
  flex-direction: column;
  /* gap: 1%; */
}

#nv-title {
  margin-top: 1%;
  text-transform: capitalize;
  word-break: break-word;
  font-weight: bold;
  font-size: 46px;
  color: var(--text-primary-color);
}

@media screen and (max-width: 575px) {

  #nv-title,
  #B_NV-title {
    font-size: 28px;
    margin: 20px 0px;
  }
}

/* ------------------------------------------------------------------- */

#nv-Header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background-color: var(--body-color);
  color: var(--secondary-color);
  border-top: 1px solid #c0c5d0;
  border-bottom: 1px solid #c0c5d0;
  font-family: var(--primary-font-family) !important;
  padding: 10px 0;
}

@media (max-width: 575px) {
  #nv-Header {
    display: flex;
    align-items: flex-start;
    flex-direction: column;
    padding: 20px 0;
  }
}

#nv-left-head {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
  flex-wrap: wrap;
}

#nv-right-head {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}

/* .moreShareIcon{
  background-color: ;
} */

@media (max-width: 575px) {
  #nv-right-head {
    padding-top: 10px;
    flex-wrap: wrap;
  }

  #nv-left-head {
    margin-bottom: 10px;
  }
}

#btncalendar {
  color: #ffffff;
  background: var(--primary-color);
  justify-content: center;
}

#nv-Share-Label {
  margin-bottom: 0;
  line-height: 0;
  font-weight: 600;
  text-transform: uppercase;
  color: var(--text-primary-color);
}

#head-lables {
  font-weight: 600;
  color: var(--text-primary-color);
  margin-bottom: 0;
}

#head-logos {
  margin-bottom: 3px;
}

#line-head {
  height: 35px;
  width: 0.5px;
  color: #909090;
  background-color: #909090;
}

#nv-image {
  margin-top: 1%;
  margin-bottom: 1%;
  object-fit: cover;
  width: 100%;
  border-radius: 10px;
  max-width: 100%;
  height: auto;
  aspect-ratio: 1/1;
}

#nv-functions {
  border: 1px solid lightgray;
  border-radius: 10px;
  background-color: var(--body-color);
  justify-content: center;
  margin-top: 30px;
  color: var(--text-primary-color);
  font-weight: 600;
}

#nv-functions-left {
  display: flex;
  flex-direction: column;
}

#nv-function {
  border: none;
  padding: 0%;
  color: var(--text-primary-color);
  text-decoration: none;
  margin: 1%;
}

#nv-function-text {
  font-size: small;
  margin-bottom: 0;
}

#nv-font-lable {
  margin-top: 0.5rem;
}

#nv-FontRange {
  color: var(--secondary-color);
  width: 100%;
}

#nv-FontRange-labels {
  font-size: small;
}

.custom-font {
  padding: 10px;
  display: flex;
  flex-wrap: wrap;
}

#nv-functions-right {
  display: flex;
  flex-direction: row;
  justify-content: space-around;
  align-items: center;
}

#nv-description {
  margin-top: 3%;
  width: 100%;
  color: var(--text-primary-color);
}

.nv-description-14 {
  font-size: 14px;
}

.nv-description-16 {
  font-size: 16px;
}

.nv-description-18 {
  font-size: 18px;
}

.nv-description-20 {
  font-size: 20px;
}

.nv-description-22 {
  font-size: 22px;
}

.nv-description-24 {
  font-size: 24px;
}

#nv-description img {
  max-width: 100% !important;
  height: auto;
}

#nv-description video {
  max-width: 100%;
  max-height: 40rem;
  height: auto;
}

/* ---------------------------------- comments ---------------------------------------------- */

#cs-main {
  display: flex;
  flex-direction: column;
}

#cs-main h2,
#nv-body .comment {
  color: var(--text-primary-color);
  font-weight: 600;
  margin-bottom: 20px;
}

#cs-reply-input {
  width: 17rem;
  background-color: #f5f5f5;
  color: #000;
}


#cs-btnsub {
  margin-top: 1rem;
  margin-bottom: 1rem;
  /* background-color: var(--secondary-color); */
  color: #ffffff;
  width: fit-content;
  font-size: 22px;
  font-weight: 500;
}

#cv-comment {
  display: flex;
  flex-direction: row;
  gap: 3%;
  margin-bottom: 2%;
}

#cs-profile {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 10px;
}

/* 
#cs-profile:before {
  content: '!';
  font-size: 64px;
  padding-left: 43%;
   background-color: var(--body-color);
  display: block;
  width: 200px;
  height: 200px;
} */

#cs-card {
  padding: 1%;
  background-color: var(--body-color);
  width: 87%;
  color: var(--text-primary-color);
}

#cs-card h5 {
  font-weight: 600;
}

@media (max-width: 575px) {
  #cs-card {
    width: 100%;
  }
}

#cdbtnReport {
  text-decoration: none;
  color: var(--primary-color);
  position: absolute;
  right: 1%;
  top: 2%;
}

#csbtnLike {
  width: fit-content;
  border: none;
}

.cdbtnReply {
  width: fit-content;
  /* background-color: var(--primary-color); */
  /* color: #ffffff; */
  border: none;
  position: absolute !important;
  right: 1%;
  bottom: 6%;
  font-weight: 500;
}

[dir='rtl'] .cdbtnReply {
  right: auto;
  left: 1%;
}

#cv-reply-propover {
  width: 17rem;
  padding: 0%;
}

#cv-reply-form {
  width: 17rem;
}

#cdbtnsubReply {
  width: 100%;
  /* background-color: var(--secondary-color);
  color: #ffffff; */
  border: none;
}

#cdbtnsubReply:hover {
  width: 100%;
  background-color: var(--primary-color);
  color: #ffffff;
  border: none;
}

#cs-like-dis {
  display: flex;
  flex-direction: row;
}

/* ---------------------------------- reply comments ---------------------------------------------- */

#cv-Rcomment {
  display: flex;
  flex-direction: row;
  gap: 3%;
  margin-bottom: 2%;
  justify-content: right;
}

#cs-Rcard {
  padding: 1%;
  background-color: var(--body-color);

  width: 74%;
}

#card-noti {
  background-color: var(--body-color);
  border-radius: 5px;
}

.bd-title {
  color: var(--text-primary-color);
  font-size: 18px;
  font-weight: 600;
}

#card-noti {
  display: flex;
  flex-direction: row;
  gap: 20px;
  align-items: center;
}

#flexCheckChecked {
  height: 30px;
  width: 30px;
  border-radius: 50px;
  margin-top: 15px;
  background-color: var(--primary-color);
}

#btnNotification1 {
  width: max-content;
  color: #ffffff;
  color: var(--text-primary-color);
  text-align: start;
  font-size: 18px;
  font-weight: 600;
  margin-top: -60px;
  /* background-color: var(--primary-color); */
}

/* #btnNotification1:hover {
  background-color: var(--secondary-color);
} */

#btnNotification11 {
  width: 15%;
  color: #000000;
  background-color: #edf2f8;
}

#btnNotification11:hover {
  color: #ffffff;
  background-color: var(--hover--color);
}

#btnNewsnoti {
  width: 15%;
  color: #000000;
  background-color: #edf2f8;
}

#btnNewsnoti:hover {
  color: #ffffff;
  background-color: var(--hover--color);
}

#btnNewsnoti1 {
  width: 15%;
  color: #ffffff;
  background-color: var(--primary-color);
}

#btnNewsnoti1:hover {
  color: #ffffff;
  background-color: var(--hover--color);
}

#noti_profile {
  object-fit: cover;
  width: 200px;
  height: 200px;
  border-radius: 3%;
  aspect-ratio: 1/1;
}

#btntrash {
  color: var(--text-primary-color);
  border: 1px solid var(--primary-color);
  background-color: rgba(230, 113, 92, 0.345);
  width: 8rem;
  height: 2.1rem;
  padding: 1%;
  font-weight: 600;
}

#btntrash:hover {
  border: 1px solid var(--hover--color);
  background-color: var(--hover--color);
  color: #ffffff;
}

.hide-laptop {
  display: none;
}

@media screen and (max-width: 991px) {
  .hide-mobile {
    display: none;
  }

  #btnNotification11,
  #btnNewsnoti1 {
    width: 50%;
  }

  /* #btnNotification1 {
    width: 50%;
    color: #ffffff;
    background-color: var(--primary-color);
  }

  #btnNotification1:hover {
    background-color: var(--secondary-color);
  } */

  #btnNewsnoti {
    width: 50%;
    color: #000000;
    background-color: #edf2f8;
  }

  #btnNewsnoti:hover {
    color: #ffffff;
    background-color: var(--hover--color);
  }

  #card-noti {
    display: flex;
    flex-direction: column;
  }

  .iconTrash {
    width: 100%;
    margin: auto !important;
  }

  #noti_profile {
    aspect-ratio: 1/1;
    object-fit: cover;
    width: 100%;
    border-radius: 5px;
  }

  #btntrash {
    color: #000000;
    border: 1px solid var(--primary-color);
    background-color: rgba(230, 113, 92, 0.345);
    width: 100%;
  }

  p.hide-laptop {
    margin-bottom: 0;
  }

  #btntrash:hover {
    border: 1px solid var(--hover--color);
    background-color: var(--hover--color);
    color: #ffffff;
  }
}

#submitbutton:hover {
  background-color: var(--body-color);
  color: var(--hover--color);
  border: var(--hover--color) solid 3px;
  font-weight: bold;
}

@media screen and (min-width: 992px) {
  .ModalWrapper55 {
    height: 30rem;
    display: flex;
    flex-direction: row;
    border-radius: 20px;
    overflow: hidden;
    background-color: var(--body-color);
  }

  .Background {
    width: 100%;
    height: 100%;
    position: fixed;
    display: flex;
    justify-content: center;
    align-items: center;
    filter: blur(5px);
  }

  #logo5 {
    width: 25%;
    height: auto;
  }

  .ModalImg5 {
    width: 100%;
    height: 30rem;
    border-radius: 7px 0 0 7px;
    opacity: 0.5;
    object-fit: cover;
  }

  .logo-text5 {
    color: #000;
    text-align: center;
    width: 50%;
    position: absolute;
    bottom: 3%;
  }

  .h {
    margin-top: 6.5rem !important;
    margin-bottom: 3rem !important;
  }

  .otp-field {
    margin: 11px;
    height: 50px;
    width: 50px;
    border: #000;
    border-radius: 5px;
    text-align: center;
    font-family: 'Roboto' sans-serif;
    font-size: 1.2rem;
    background: #b1dde8;
  }

  .userInput {
    display: flex;
    justify-content: center;
  }

  .modal-content {
    width: 100%;
    background-color: transparent !important;
    /* border-radius: 0 20px 20px 0; */
  }
}

@media screen and (max-width: 991px) {
  .otp-container {
    align-items: center;
    justify-content: center;
  }

  .otp-container input[type='password'] {
    min-width: 25px;
    min-height: 25px;
    text-align: center;
    margin-right: 20px;
  }

  #login_img5 {
    display: none;
  }

  .modal-content {
    border-radius: 20px;
  }

  .PhoneInput {
    display: flex;
    align-items: center;
  }

  #resendbutton {
    color: var(--secondary-color);
    width: fit-content;
    align-items: center;
    justify-content: center;
    position: relative;
    padding-left: 0;
    font-weight: 600;
    margin-top: 20px;
    /* left: 25%; */
  }

  #resendbutton:hover {
    background-color: var(--body-color);
    color: var(--primary-color);
    border: var(--primary-color) solid 1px;
  }
}

@media screen and (min-width: 992px) {
  .ModalWrapper44 {
    min-width: 680px;
    height: 36rem;
    display: flex;
    flex-direction: row;
    border-radius: 7px;
    background-color: var(--body-color);
  }

  #logo4 {
    width: 25%;
    height: auto;
  }

  .logo-text4 {
    color: #000;
    text-align: center;
    width: 50%;
    position: absolute;
    bottom: 3%;
  }

  .ModalImg4 {
    width: 100%;
    height: 36rem;
    border-radius: 7px 0 0 7px;
    opacity: 0.5;
    object-fit: cover;
  }
}

@media screen and (max-width: 991px) {
  #login_img4 {
    display: none;
  }

  #modal-content {
    border-radius: 20px;
  }
}

#rnv-card {
  border: none;
  margin-top: 1%;
}

#rnv-card-image {
  aspect-ratio: 1/1;
  object-fit: cover;
  position: relative;
}

#rnv-card-body {
  padding: 1%;
  height: 40%;
}

#rnv-btnCatagory {
  color: #ffffff;
  background: var(--primary-color);
  position: absolute;
  top: 10px;
  left: 10px;
}

#rnv-card-title {
  margin-top: 2%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

#btnrnvRead {
  color: var(--primary-color);
  background: #d1d1d1;
  border: none;
}

#rnv-card-date {
  font-size: large;
}

#rnv-logoCalendar {
  margin-bottom: 0.6%;
  margin-right: 1%;
}

@media (max-width: 1370px) {
  #rnv-card-title {
    font-size: 18px;
    font-weight: 500;
    line-height: 1.2;
    margin-top: 2%;
  }

  #rnv-card-date {
    font-size: 14px;
  }
}

@media (max-width: 1250px) {
  #rnv-card-title {
    font-size: 16px;
    font-weight: 500;
    line-height: 1.2;
    margin-top: 2%;
  }

  #rnv-card-date {
    font-size: 14px;
  }
}

@media (max-width: 1090px) {
  #rnv-card-title {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.2;
    margin-top: 2%;
  }

  #rnv-card-date {
    font-size: 12px;
  }
}

@media (max-width: 850px) {
  #rnv-btnCatagory {
    margin-top: 3%;
    color: #ffffff;
    background: var(--primary-color);
    padding: 1%;
    width: fit-content;
  }
}

@media (max-width: 770px) {
  #rnv-card {
    width: 100%;
    height: 10rem;
    border: none;
    margin-top: 1%;
    flex-direction: row;
  }

  #rnv-card-image {
    max-width: 30%;
    height: 100%;
    object-fit: cover;
  }

  #rnv-card-body {
    padding: 1%;
    width: 70%;
    height: 100%;
  }
}

@media (max-width: 425px) {
  #rnv-card {
    width: 100%;
    height: 8rem;
    border: none;
    margin-top: 1%;
    flex-direction: row;
  }

  #rnv-card-image {
    max-width: 30%;
    height: 100%;
    object-fit: cover;
  }

  #rnv-card-body {
    padding: 1%;
    width: 70%;
    height: 100%;
  }

  #rnv-btnCatagory {
    margin-top: 3%;
    color: #ffffff;
    background: var(--primary-color);
    padding: 1%;
    font-size: 10px;
    width: fit-content;
  }

  #rnv-card-title {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.2;
    margin-top: 2%;
  }

  #rnv-card-date {
    font-size: 10px;
  }
}

#forgot {
  font: 'small-caption';
  font-family: var(--primary-font-family) !important;
  display: flex;
  width: 100%;
  justify-content: flex-end;
  align-items: center;
  padding-top: 0;
  cursor: pointer;
}

#ModalWrapper22 .form-floating>.form-control:focus~label::after {
  background-color: transparent !important;
}


.ModalWrapper .modal-header {
  justify-content: space-between;
}

@media screen and (min-width: 992px) {
  .bordert {
    border-top: 1px solid #aaa;
    position: relative;
  }

  .bordert:after {
    content: 'OR';
    position: absolute;
    top: -17px;
    left: 42%;
    margin: auto;
    right: 0;
    left: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    background: var(--body-color);
    width: 40px;
    height: 44px;
    border-radius: 10px;
  }

  .ModalContent5 {
    width: 56%;
  }

  #ModalWrapper22 {
    min-width: 680px;
    height: 39rem;
    display: flex;
    flex-direction: row;
    border-radius: 7px;
    overflow: hidden;
  }

  .logo-text3 {
    color: #000;
    text-align: center;
    width: 50%;
    position: absolute;
    bottom: 3%;
  }

  #logo3 {
    width: 25%;
    height: auto;
  }

  .ModalImg3 {
    width: 100%;
    height: 43.5rem;
    border-radius: 7px 0 0 7px;
    opacity: 0.5;
    object-fit: cover;
  }

  [dir='rtl'] .ModalImg3 {
    border-radius: 0px 20px 20px 0px;
  }


  .ModelHeader {
    position: relative;
    top: 10px;
    left: 20px;
    height: 32px;
    z-index: 10;
  }

  .form {
    position: relative;
    left: 20px;
    height: 32px;
    padding: 20px;
    z-index: 10;
  }

  .mx-5 {
    margin-right: 37rem !important;
    margin-left: 20rem !important;
  }

  #modal-content {
    width: 100%;
    background-color: var(--body-color);
    border-radius: 0 20px 20px 0;
  }

  [dir='rtl'] #modal-content {
    border-radius: 20px 0px 0px 20px;
  }

  #loginbutton2 {
    color: #ffffff;
    background: var(--primary-color);
    width: 100%;
  }

  #loginbutton2:hover {
    background-color: var(--body-color);
    color: var(--hover--color);
    /* border: var(--hover--color) solid 3px; */
    font-weight: bold;
  }

  .error-msg {
    font-size: smaller;
    color: rgb(250, 50, 50);
    text-align: justify;
    margin-left: 0rem;
  }

  .imageInput {
    height: 8rem;
    width: 100%;
    object-fit: cover;
  }

  /* } */
  #textwithimage {
    display: grid;
    grid-template-columns: 3fr 1fr;
    gap: 5%;
    max-height: 10%;
    margin-top: 5%;
  }
}

.password-icon {
  position: relative;
  bottom: 43px;
  float: right;
  right: 20px;
  cursor: pointer;
}

.Cpassword-icon {
  position: relative;
  bottom: 43px;
  float: right;
  right: 20px;
  cursor: pointer;
}

[dir='rtl'] .password-icon,
[dir='rtl'] .Cpassword-icon {
  right: unset;
  float: left;
  left: 20px;
}

[dir='rtl'] .form-floating>label {
  left: unset;
  right: 0px;
}

#modal-content {
  border-radius: 20px;
}

#loginbutton2 {
  color: #ffffff;
  background: var(--primary-color);
  width: 100%;
}

@media screen and (max-width: 1199px) {
  #login_img3 {
    display: none;
  }
}

#rbn-main {
  border: 1px solid #dedede;
  border-radius: 5px;
}

#rbn-cat-nav {
  border: 2px solid var(--primary-color);
  border-radius: 5px 5px 0 0;
  color: #ffffff;
  background-color: var(--primary-color);
  justify-content: center;
  height: 3rem;
}

/* #nav-logo b {
  font-weight: 500;
} */

#rbn-card {
  margin: 10px;
  overflow: hidden;
  border: none;
  display: flex;
  flex-direction: row;
}

#rbn-image {
  object-fit: cover;
  height: 6rem;
  width: 30%;
  min-width: 30%;
  max-width: 30%;
  border-radius: 5px;
}

#rbn-card-body {
  width: 70%;
  padding-left: 2%;
}

#btnrbnCatagory {
  color: #ffffff;
  background: var(--primary-color);
  width: fit-content;
  margin-top: 3%;
  margin-left: 3%;
}

#rbn-card-text {
  margin: 3%;
}

#RNews-main {
  border-radius: 5px;
  border: 1px solid #dedede;
}

#RNews-cat-nav {
  border: 2px solid var(--primary-color);
  border-radius: 5px 5px 0 0;
  color: #ffffff;
  background-color: var(--primary-color);
  justify-content: center;
}

#RNews-card {
  margin: 10px;
  background-color: #efefef;
  overflow: hidden;
  border: none;
  display: flex;
  flex-direction: row;
}

[data-bs-theme="dark"] #RNews-card {
  background-color: var(--secondary-color);

}

#RNews-image {
  object-fit: cover;
  aspect-ratio: 1/1;
  max-width: 30%;
  border-radius: 5px;
  margin: 10px 0px 10px 10px;
}

#RNews-card-body {
  width: 70%;
  padding-top: 3px;
}

[dir='rtl'] #RNews-card-body {
  padding-right: 2%;
  padding-left: 0;
}

#btnRNewsCatagory {
  color: #1B2D51;
  background: var(--categoryTag-color);
  width: fit-content;
  margin-top: 3%;
  margin-left: 3%;
  font-size: 12px;
  cursor: default;
  pointer-events: none;
  font-weight: 600;
}

#RNews-card-text {
  margin: 3%;
  color: var(--text-primary-color);
  font-weight: 600;
  margin-top: 20px;
}

#spinner {
  position: relative;
  left: 50%;
  padding-top: 10%;
}

#ts-card {
  border: none;
}

#ts-card-image {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  position: relative;
}

#ts-card-body {
  padding: 1%;
  height: 40%;
}

#ts-btnCatagory {
  color: #ffffff;
  background: var(--primary-color);
  position: absolute;
  top: 10px;
  left: 10px;
}

#ts-card-title {
  margin-top: 2%;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

#ts-card-date {
  font-size: large;
}

#ts-logoCalendar {
  margin-bottom: 0.6%;
  margin-right: 1%;
}

#vnv-card {
  width: 100%;
  border: none;
  background-color: var(--body-color);
  cursor: pointer;
}

#vnv-card-image {
  aspect-ratio: 1.5/1;
  position: relative;
  object-fit: cover;
  border-radius: 10px;
}

.video_section_all {
  background-color: var(--body-color);
}

.video_section_all .row {
  gap: 24px 0px;
}

#vnv-card-body {
  padding: 1%;
}

#vnv-btnCatagory {
  padding-top: 10px;
  color: #ffffff;
  background: var(--primary-color);
}

#vnv-card-title {
  padding-top: 10px;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-weight: 600;
  font-size: 24px;
  color: var(--text-primary-color);
}

#btnvnvRead {
  color: var(--primary-color);
  background: #d1d1d1;
  border: none;
}

#vnv-logoCalendar {
  margin-bottom: 0.6%;
  margin-right: 1%;
}

#vnv-btnVideo-logo {
  position: absolute;
  right: 0;
  left: 0;
  top: -25%;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  background-color: red;
  border-radius: 50%;
  height: 50px;
  padding: 6px;
  box-shadow: 0 0 1px 8px rgba(255, 1, 1, 0.19), 0 0 1px 16px rgba(251, 173, 173, 0.22);
}

#wcard-footer {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 33%;
  width: 100%;
  background-color: #ffffff49;
  display: flex;
  flex-direction: row;
  gap: 2.5%;
  justify-content: center;
  padding-top: 4%;
}

#cs-main textarea {
  padding-left: 10px;
  padding-top: 5px;
  border: 1px solid lightgray;
  border-radius: 4px;
  background-color: #efefef;
  color: #051224;
}

#B_NV-main #vps-btnVideo,
#nv-main #vps-btnVideo {
  border-radius: 50%;
  display: inline-flex;
  position: absolute;
  right: 0%;
  top: 0%;
}

.PhoneInputCountry {
  width: 70px;
}

.PhoneInputCountryIcon--border {
  background-color: initial !important;
  border: 1px solid #ddd !important;
  border-radius: 5px !important;
  box-shadow: none !important;
  height: 44px !important;
  padding: 5px !important;
  width: 100% !important;
}

.Toastify__toast-theme--colored.Toastify__toast--success {
  background: var(--primary-color) !important;
}

/* loader  */

.loader-container {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100vh;
}

.loader {
  animation: rotate 1s infinite;
  height: 50px;
  width: 50px;
}

.loader:before,
.loader:after {
  border-radius: 50%;
  content: '';
  display: block;
  height: 20px;
  width: 20px;
}

.loader:before {
  animation: ball1 1s infinite;
  box-shadow: 30px 0 0 var(--primary-color);
  margin-bottom: 10px;
}

.loader:after {
  animation: ball2 1s infinite;
  background-color: var(--primary-color);
  box-shadow: 30px 0 0 #fff;
}

@keyframes rotate {
  0% {
    transform: rotate(0deg) scale(0.8);
  }

  50% {
    transform: rotate(360deg) scale(1.2);
  }

  100% {
    transform: rotate(720deg) scale(0.8);
  }
}

@keyframes ball1 {
  0% {
    box-shadow: 30px 0 0 var(--primary-color);
  }

  50% {
    box-shadow: 0 0 0 var(--primary-color);
    margin-bottom: 0;
    transform: translate(15px, 15px);
  }

  100% {
    box-shadow: 30px 0 0 var(--primary-color);
    margin-bottom: 10px;
  }
}

@keyframes ball2 {
  0% {
    box-shadow: 30px 0 0 #fff;
  }

  50% {
    box-shadow: 0 0 0 #fff;
    margin-top: -20px;
    transform: translate(15px, 15px);
  }

  100% {
    box-shadow: 30px 0 0 #fff;
    margin-top: 0;
  }
}

.link-color.active {
  color: var(--primary-color) !important;
}

.headermodal .btn-close {
  position: absolute;
  top: 10px;
  right: 10px;
}

.otp-container input {
  width: 44px !important;
  height: 44px !important;
}

.ModalWrapper {
  display: flex;
  background: var(--body-color);
  border-radius: 5px;
}

.pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 16px 0px;
}

.pagination li.pagination__link--active a {
  background-color: var(--primary-color);
  color: #fff;
}

.pagination li.pagination__link--active a:hover {
  color: #fff !important;
}

.pagination li a {
  position: relative;
  display: block;
  padding: 0px 15px;
  text-align: center;
  line-height: 45px;
  margin: 0 5px;
  color: #000;
  background-color: #f7f8f9;
  border: 1px solid #f7f8f9;
  border-radius: 5px;
  transition: all 0.5s ease-out 0s;
  text-decoration: none;
}

.pagination li a:hover {
  color: #000 !important;
}

.pagination__link--disabled a {
  cursor: not-allowed;
  background-color: #ebebe4 !important;
  color: #c6c6c6;
}

.inner_card_image {
  position: relative;
}

.bns-card-text,
#vps-card-title b {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  font-size: 38px;
  font-weight: bold;
}

#vps-body-left #vps-card-title b {
  color: var(--text-primary-color);
}

@media screen and (max-width: 575px) {

  .bns-card-text,
  #vps-card-title b {
    font-size: 24px;
  }
}

.no_data_available {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin-bottom: 0;
  color: var(--text-primary-color);
  font-size: 24px;
  font-weight: 600;
}

#btnrnsCatagory,
#btnCatagory {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}

.hns-card-body .card-text {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.switch.btn {
  min-width: 5rem !important;
  min-height: calc(1.5em + 0.75rem + 2px);
}

.manage_preferences .manage_card {
  border: 0.2px solid #1a2e5129;
  background-color: var(--body-color);
  border-radius: 10px;
  margin-bottom: 20px;
  height: 84px;
}

[data-bs-theme="dark"] .manage_preferences .manage_card {
  border: 0.2px solid #6c757d;
}

.manage_preferences .inner_manage {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  padding: 10px;
}

@media screen and (max-width: 991px) {
  .manage_preferences .manage_card {
    height: auto;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .manage_preferences .inner_manage {
    flex-direction: column;
  }
}

.manage_preferences img {
  aspect-ratio: 1/1;
  max-width: 100%;
}

.manage_preferences .manage_image {
  overflow: hidden;
  border-radius: 5px;
  object-fit: cover;
  display: flex;
  width: 64px;
}

.finalsumit_btn {
  background-color: var(--primary-color) !important;
  color: #fff;
  border-radius: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px 30px;
  border: none;
  outline: none;
  margin: auto;
  font-size: 20px;
  font-weight: 600;
}

.morepages {
  padding: 130px 0;
}

.morepages .card {
  background-color: #dbdbdb;
  color: #000;
  border: none;
}

.morepages .more-cat-section-card-body {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.morepages .card-text {
  padding-left: 10px;
}

.morepages #btn-cat-more {
  color: #000;
}

@media (max-width: 991px) {
  .forgot-password {
    display: none;
  }
}

.video_style_one #right-first-section {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.video_style_one .circle {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  color: #fff;
}

.video_style_one #btnpaly-logo {
  background-color: red;
  border-radius: 50%;
  box-shadow: 0 0 1px 8px rgba(255, 1, 1, 0.19), 0 0 1px 16px rgba(251, 173, 173, 0.22);
}

.video_style_three .card-img-overlay,
.video_style_one .circle {
  cursor: pointer;
}

.video_style_four .card-block .card-title {
  -webkit-line-clamp: 2;
  /* font-weight: 400; */
}

.video #rns-card {
  cursor: pointer;
}

.video_style_five #bns-card-text {
  -webkit-line-clamp: 2;
}

.news_style_three #vps-body-left .style_three_cat_name {
  position: unset;
  margin-bottom: 10px;
  border-radius: 5px;
}

.news_style_three .style_three_cat_name {
  background-color: var(--primary-color);
  color: #fff;
  padding: 5px 15px;
  border-radius: 5px;
  text-decoration: none;
  font-weight: 600;
  cursor: pointer;
  z-index: 1;
}

.breaking_news_style_two #hns-main-text {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  line-height: 2;
}

/* .breaking_news_detail  */

.breaking_news_detail #vps-body-left,
.news_detail #vps-body-left {
  position: relative;
}

.breaking_news_detail label {
  color: var(--text-primary-color);
  font-weight: 600;
}

.catNav-links b {
  display: flex;
  font-weight: 700;
  color: var(--text-primary-color);
}

/* .catNav-links:hover {
  color: #fff;
  background-color: var(--secondary-color);
  transition: 0.1s ease-in;
} */

.catNav-links {
  display: flex;
  align-items: center;
  width: 100%;
  /* padding: 0 20px; */
  /* border: 1px solid #dedede80; */
  border-radius: 5px;
  justify-content: center;
  cursor: pointer;
  width: max-content;
}

#catNav-more {
  display: flex;
  align-items: center;
  width: max-content;
  padding: 0 10px;
  border: 1px solid #dedede80;
  border-radius: 5px;
  justify-content: center;
  text-align: center;
  color: var(--text-primary-color);
  font-weight: 700;
  width: 166px;
}

[data-bs-theme="dark"] #catNav-more {
  color: #000;
  background-color: #fff;
}


.live-news #LN-card-image {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.live-news .card-image-overlay {
  position: absolute;
  top: -15%;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  color: #fff;
}

.live-news .line-news-circle {
  background-color: red;
  border-radius: 50%;
  box-shadow: 0 0 1px 8px rgba(255, 1, 1, 0.19), 0 0 1px 16px rgba(251, 173, 173, 0.22);
}

.new_notification .card {
  text-decoration: none;
  color: #000;
}

.mobile_catogories li {
  display: flex;
  align-items: center;
}

.news_detail #btnnvCatagory {
  cursor: unset;
}

.bookmark_page #bs-card-image,
.bookmark_page #bs-card-title,
.bookmark_page #bs-btnCatagory {
  cursor: pointer;
}

.bookmark_page .row {
  gap: 30px 0px;
}


.new_video_style_two {
  background: var(--body-color);
}

.new_video_style_two img {
  aspect-ratio: 1/1;
  object-fit: cover;
  width: 100%;
  border-radius: 10px;
  position: relative;
}

.new_video_style_two .content::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  aspect-ratio: 4.5;
  border-radius: 8px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), #000);
  height: 250px;
  width: 100%;
  z-index: -1;
}

.new_video_style_two .card {
  margin-bottom: 22px;
  background-color: transparent;
  border: none;
  outline: none;
  cursor: pointer;
  overflow: hidden;
  position: relative;
  border-radius: 16px;
}

.new_video_style_two .video_center img {
  aspect-ratio: 1/1;
  object-fit: cover;
  width: 100%;
  height: auto;
}

.new_video_style_two .video_button {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  margin: auto;
  z-index: 2;
}

.new_video_style_two .content {
  position: absolute;
  bottom: 0;
  padding: 10px;
  z-index: 1;
  width: 100%;
}

.new_video_style_two .content p {
  color: #fff;
  font-weight: bold;
  font-size: 24px;
  line-height: 28px;
  z-index: 1;
  position: relative;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  margin: 12px 0px;
}

.new_video_style_two .video_center .content p {
  font-size: 36px;
  line-height: 48px;
}

.new_video_style_two .card:hover .content p {
  text-decoration: underline;
}

@media screen and (min-width: 768px) and (max-width: 991px) {

  .new_video_style_two .content p {
    font-size: 18px;
  }

  .new_video_style_two .video_center .content p {
    font-size: 30px;
  }
}

@media screen and (max-width: 767px) {

  .new_video_style_two .content p,
  .new_video_style_two .video_center .content p {
    font-size: 22px;
    line-height: 28px;
  }
}

/* .new_video_style_two .content span {
  color: #fff;
  margin-left: 10px;
  z-index: 1;
  position: relative;
  background-color: var(--primary-color);
  padding: 5px;
  border-radius: 5px;
  font-weight: 600;
} */


.new_video_style_two .content .view_Date_Wrapper {
  position: relative;
  z-index: 1;
  color: #fff;
  border-top: 1px solid #FFFFFF40;
  display: flex;
  align-items: center;
  /* justify-content: space-between; */
  padding: 10px 0px;
  gap: 16px;
  /* margin-bottom: 6px; */
}


@media screen and (min-width: 992px) and (max-width: 1199px) {

  .new_video_style_two .content .view_Date_Wrapper {
    gap: 8px;
  }

  .new_video_style_two .content .view_Date_Wrapper .gap-2 {
    gap: 1px !important;
  }

  .new_video_style_two .content .view_Date_Wrapper span {
    font-size: 12px;
  }
}


.new_video_style_two .content .view_Date_Wrapper span {
  font-weight: 500;
}


.custom-swiper a {
  text-decoration: none;
}

.news-deatail-section,
.breaking-news-section,
.manage_preferences {
  background-color: var(--body-color);
}

.inner_Card_content {
  position: absolute;
  bottom: 0;
  z-index: 1;
}

.inner_Card_content #vps-card-title {
  position: unset;
  padding-left: 0;
}

.other_url {
  width: 100%;
  height: 35rem;
  background-color: #dedede;
  padding: 5px;
}

.other_url .event_page {
  overflow: hidden;
}

.short_desc {
  color: var(--text-secondary-color);
  font-weight: 400;
  margin-top: 8px;
}

[data-bs-theme="dark"] .short_desc {
  color: var(--text-secondary-color);
}

.card_hover img {
  width: 100%;
  transition: 0.5s all ease-in-out;
}

.card_hover:hover img {
  transform: scale(1.5);
}

#Link-all img {
  position: relative;
  top: 0;
  transition: top ease 0.5s;
}

#Link-all:hover img {
  top: -5px;
}

.banner_thumb {
  position: relative;
  transition: 0.3s;
}

.banner_thumb:hover::before {
  left: 0;
  right: 0;
  opacity: 0;
  transition: all 900ms linear;
}

.banner_thumb::before {
  background: rgba(255, 255, 255, 0.6);
  bottom: 0;
  content: '';
  left: 50%;
  position: absolute;
  right: 51%;
  top: 0;
  opacity: 1;
  pointer-events: none;
}

.banner_thumb img {
  transition: 0.3s;
}

.banner_thumb:hover::after {
  top: 0;
  bottom: 0;
  opacity: 0;
  transition: all 900ms linear;
}

.banner_thumb::after {
  background: rgba(255, 255, 255, 0.6);
  bottom: 50%;
  content: '';
  left: 0;
  position: absolute;
  right: 0;
  top: 50%;
  opacity: 1;
  pointer-events: none;
}

a,
button,
img,
input,
span {
  transition: all 0.3s ease 0s;
}

.ad_spaces .adimage {
  border-radius: 5px;
  margin-top: 10px;
  width: 100%;
  aspect-ratio: unset;
  margin: 40px 0px;
}

@media (min-width: 1400px) {
  .ad_spaces .adimage {
    height: 120px;
  }
}

@media (max-width: 1399px) {
  .ad_spaces .adimage {
    height: auto;
  }
}

@media (max-width: 575px) {
  .ad_spaces .adimage {
    margin: 16px 0px;
    margin-bottom: 12px;
  }
}

.message_icon {
  margin-top: 7px;
  font-size: 24px;
}

.Noti-text {
  width: 100%;
  word-break: break-word;
}

.disabled-link {
  cursor: unset;
}

.redirect_arrow {
  color: var(--primary-color);
  font-size: 24px;
  display: flex;
  align-items: center;
  margin-bottom: 0;
}

.message-title {
  font-weight: 400;
}

.bookmark_page {
  background-color: var(--body-color);
}

.tags_section {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tags_section p {
  background-color: var(--secondary-color);
  color: #fff;
  padding: 3px 25px;
  border-radius: 5px;
}

#nv-FontRange::-webkit-slider-thumb {
  -webkit-appearance: none !important;
  background-color: var(--secondary-color);
  border: 1px solid #cecece;
  height: 15px;
  width: 15px;
}

.video_style_three #vps-body-left,
.video_style_three #vps-image-cards {
  background-color: var(--body-color);
  /* padding: 10px; */
  border-radius: 10px;
}

/* search */

/*---------------------------------------- ## Search Popup ----------------------------------------*/
.td-search-popup.active .search-form {
  visibility: visible;
  opacity: 1;
  width: 40%;
}

@media (max-width: 575px) {
  .td-search-popup.active .search-form {
    width: 90%;
  }
}

.td-search-popup .search-form {
  width: 35%;
  position: absolute;
  position: fixed;
  top: 50%;
  left: 50%;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  visibility: hidden;
  opacity: 0;
  -ms-transform: translate(-50%, -50%);
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 999;
}

.td-search-popup .search-form .form-group .form-control {
  border: none;
  border-bottom-left-radius: 0;
  border-top-right-radius: 6px;
  border-bottom-right-radius: 0px;
  height: 54px;
  padding: 0 75px 0 25px;
  background: #f7f9fb;
  color: #101d38;
}

.td-search-popup .search-form .form-group .form-control::placeholder {
  color: gray;
}

.td-search-popup .search-form .form-group .form-control:hover,
.td-search-popup .search-form .form-group .form-control:focus,
.td-search-popup .search-form .form-group .form-control:active {
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.td-search-popup .search-form .submit-btn {
  position: absolute;
  right: 0;
  top: 0;
  width: 60px;
  height: 55px;
  border: 0;
  border-top-right-radius: 5px;
  border-bottom-right-radius: 0px;
  color: #fff;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  padding: 0;
  text-align: center;
  cursor: pointer;
  background: var(--primary-color);
}

.td-search-popup .search-form .submit-btn:hover,
.td-search-popup .search-form .submit-btn:focus,
.td-search-popup .search-form .submit-btn:active {
  outline: 0;
  -webkit-box-shadow: none;
  box-shadow: none;
}

.body-overlay {
  position: fixed;
  width: 100%;
  height: 100%;
  display: block;
  background: rgba(0, 0, 0, 0.95);
  z-index: 999;
  content: '';
  left: 0;
  top: 0;
  visibility: hidden;
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  cursor: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABUAAAAVBAMAAABbObilAAAAMFBMVEVMaXH////////////////////////////////////////////////////////////6w4mEAAAAD3RSTlMAlAX+BKLcA5+b6hJ7foD4ZP1OAAAAkUlEQVR4XkWPoQ3CUBQAL4SktoKAbCUjgAKLJZ2ABYosngTJCHSD6joUI6BZgqSoB/+Shqde7sS9x3OGk81fdO+texMtRVTia+TsQtHEUJLdohJfgNNPJHyEJPZTsWLoxShqsWITazEwqePAn69Sw2TUxk1+euPis3EwaXy8RMHSZBIlRcKKnC5hRctjMf57/wJbBlAIs9k1BAAAAABJRU5ErkJggg==),
    progress;
}

.body-overlay.active {
  visibility: visible;
  opacity: 0.97;
}

.mfp-zoom-in .mfp-content {
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
  -webkit-transform: scale(0.7);
  -ms-transform: scale(0.7);
  transform: scale(0.7);
}

.mfp-zoom-in.mfp-bg {
  opacity: 0;
  -webkit-transition: all 0.4s ease;
  -moz-transition: all 0.4s ease;
  -o-transition: all 0.4s ease;
  transition: all 0.4s ease;
}

.mfp-zoom-in.mfp-ready .mfp-content {
  opacity: 1;
  -webkit-transform: scale(1);
  -ms-transform: scale(1);
  transform: scale(1);
}

.mfp-zoom-in.mfp-ready.mfp-bg {
  opacity: 0.7;
}

.mfp-zoom-in.mfp-removing .mfp-content {
  -webkit-transform: scale(0.7);
  -ms-transform: scale(0.7);
  transform: scale(0.7);
  opacity: 0;
}

.mfp-zoom-in.mfp-removing.mfp-bg {
  opacity: 0;
}

/************ single-inpur-inner ************/
.single-input-inner {
  margin-bottom: 24px;
  position: relative;
}

.single-input-inner label {
  font-weight: 400;
  font-size: 14px;
  color: var(--text-secondary-color);
  margin-bottom: 0px;
  position: absolute;
  top: 0;
  left: 20px;
  height: 60px;
  line-height: 60px;
}

.single-input-inner input {
  width: 100%;
  height: 60px;
  border: 0;
  border-radius: 0px;
  padding: 0 40px;
  font-size: 14px;
  background: rgba(8, 12, 36, 0.06);
  color: var(--text-secondary-color);
}

.single-input-inner input::placeholder {
  color: var(--text-secondary-color);
}

.single-input-inner input:active,
.single-input-inner input:focus,
.single-input-inner input:hover {
  border: 0;
}

.single-input-inner textarea {
  width: 100%;
  border: 0;
  height: 160px;
  border-radius: 0px;
  padding: 17px 40px;
  background: rgba(8, 12, 36, 0.06);
  color: var(--text-secondary-color);
  margin-bottom: -8px;
}

.single-input-inner textarea::placeholder {
  color: var(--text-secondary-color);
}

.single-input-inner.style-border input {
  border: 1px solid #d6d6d6 !important;
  background: transparent;
  height: 55px;
  padding: 0 20px;
}

.single-input-inner.style-border input::placeholder {
  color: var(--text-secondary-color);
}

.single-input-inner.style-border textarea {
  border: 1px solid rgba(234, 225, 214, 0.6) !important;
}

.single-input-inner.style-border textarea::placeholder {
  color: #bbb;
}

.single-input-inner.style-bg input {
  background: #f5f6f6;
}

.single-input-inner.style-bg input::placeholder {
  color: #3f517e;
}

.single-input-inner.style-bg textarea {
  background: #f5f6f6;
}

.single-input-inner.style-bg textarea::placeholder {
  color: #3f517e;
}

.single-select-inner {
  margin-bottom: 20px;
  display: flex;
  position: relative;
}

.single-select-inner label {
  font-weight: 400;
  font-size: 14px;
  color: var(--text-secondary-color);
  margin-bottom: 0px;
  position: absolute;
  top: 0;
  left: 20px;
  height: 60px;
  line-height: 60px;
}

.single-select-inner .single-select {
  width: 100%;
  height: 60px;
  line-height: 60px;
  border: 0 !important;
  border-radius: 0px;
  font-size: 14px;
  color: var(--text-secondary-color);
  background: rgba(8, 12, 36, 0.06);
  padding: 0 30px 0 40px;
}

.single-select-inner .single-select::placeholder {
  color: var(--text-secondary-color);
}

.single-select-inner .single-select:after {
  right: 20px;
  height: 7px;
  width: 7px;
  border-color: var(--text-secondary-color);
}

.single-select-inner .single-select .list {
  width: 100%;
}

.single-select-inner.style-border .single-select {
  border: 1px solid #d6d6d6 !important;
  background: transparent;
  height: 55px;
  line-height: 55px;
  padding: 0 20px;
}

.single-select-inner.style-bg .single-select {
  background: #f7fafc;
}

.single-select-inner.style-bg .single-select::placeholder {
  color: #3f517e;
}

.single-check-wrap {
  font-size: 14px;
  margin: 0;
  line-height: 26px;
}

.single-check-wrap .form-check-input {
  border-radius: 0;
  border: 1px solid #d6d6d6;
  outline: 0;
  box-shadow: none;
  position: relative;
  height: 20px;
  width: 20px;
}

.single-check-wrap .form-check-input:after {
  content: '';
  position: absolute;
  left: 5px;
  top: 5px;
  height: 8px;
  width: 8px;
  background: var(--primary-color);
  opacity: 0;
  z-index: 1;
}

.single-check-wrap .form-check-input:checked[type='checkbox'] {
  background: transparent;
}

.single-check-wrap .form-check-input:checked[type='checkbox']::after {
  opacity: 1;
}

.single-check-wrap label {
  margin-left: 10px;
}

.booking-form {
  margin-top: -120px;
  z-index: 2;
  position: relative;
}

.booking-form-inner {
  padding: 45px 50px 30px;
  border-radius: 7px;
  background-size: cover;
}

.booking-form-inner h3 {
  color: #fff;
  margin-bottom: 2px;
}

.booking-form-inner p {
  color: #fff;
  margin-bottom: 30px;
}

.search_bar #Link-all img {
  width: 100px;
}

@media (max-width: 575px) {
  .search_bar #Link-all img {
    width: 50px;
  }

  .search_bar #ts-card-title {
    font-size: 14px;
  }
}

.search_bar .card {
  display: flex;
  align-items: center;
  flex-direction: row;
  border-radius: 0;
  padding: 15px;
  border-bottom: 1px solid #e5e5e500 !important;
}

.no_data {
  background-color: var(--body-color);
  color: #000;
  text-align: center;
  padding: 15px;
  border-radius: 0 0 5px 5px;
}

.tag_button {
  border-radius: 5px;
  position: absolute;
  top: 10px;
  left: 10px;
}

.tag_button .tag-button {
  color: #fff;
  background: var(--primary-color);
  margin-right: 5px;
  border-radius: 5px;
}

.tag_button .tag-button:hover {
  color: #ffffff;
  background: var(--primary-color);
}

.new-view-tags {
  cursor: pointer;
}

.ad_spaces {
  cursor: pointer;
}

.tags_section_outer {
  border-top: 1px solid #1a2e5133;
  border-bottom: 1px solid #1a2e5133;
  padding: 10px 0;
  margin-bottom: 10px;
}

[data-bs-theme="dark"] .tags_section_outer {
  border-top: 1px solid #6c757d;
  border-bottom: 1px solid #6c757d;
}

.tags_section_outer .inner_tag {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.tags_section_outer .tag_name {
  padding-left: 10px;
  padding-right: 15px;
  color: var(--text-primary-color);
}


.tags_section_outer .tag_icon {
  color: var(--text-primary-color);
}

/* update profile */
.prop__image {
  width: 120px;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #f9f9f9;
  border-radius: 100%;
  border: 2px solid #efefef;
  position: relative;
  padding: 5px;
  margin: 40px auto;
}

.prop__image img {
  max-width: 100%;
  max-height: 100%;
  border-radius: 100%;
  margin: auto;
  width: 100px;
  height: 100px;
  border-radius: 50%;
  overflow: hidden;
}

.prop__image .select__profile {
  display: block;
}

.prop__image .select__profile [type='file'] {
  height: 0;
  overflow: hidden;
  width: 0;
  float: left;
}

.prop__image .select__profile [type='file']+label {
  cursor: pointer;
  outline: none;
  vertical-align: middle;
  margin: 0;
  position: absolute;
  bottom: 20px;
  right: -6px;
  background: var(--primary-color);
  color: #fff;
  height: 35px;
  width: 35px;
  border-radius: 100%;
  border: 1px solid #fff;
  font-size: 0.75rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.prop__image .select__profile [type='file']+label em {
  font-size: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: auto;
}

.profile_name {
  position: relative;
  margin-top: 20px;
}

.profile_name label {
  position: absolute;
  top: 7px;
  left: 10px;
  font-size: 12px;
  margin-bottom: 10px;
  color: var(--text-primary-color);
}

.profile_name input {
  height: 56px;
  width: 100%;
  border: 1px solid gray;
  border-radius: 5px;
  padding-left: 10px;
  font-weight: 600;
  color: var(--text-primary-color);
  padding-top: 12px;
  background-color: var(--body-color);
}

.profile_submit {
  /* background-color: var(--secondary-color); */
  /* color: #fff; */
  height: 50px;
  width: 100%;
  border-radius: 5px;
  margin-top: 20px;
  box-shadow: none;
  outline: transparent;
  outline: none;
  border: none;
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.5px;
}

[data-bs-theme="dark"] .profile_submit {
  background-color: var(--hover--color);
}


.profile_modal {
  width: 400px !important;
}

.profile_modal .ant-modal-close {
  background-color: rgba(0, 0, 0, 0.07);
}

.profile_modal .ant-modal-title {
  font-size: 22px;
}

.profile_photo {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  margin-right: 4px;
  object-fit: cover;
  border: 2px solid #fff;
  padding: 1px;
}

.main_image {
  overflow: hidden;
}

.main_image [type='file'] {
  height: 0;
  overflow: hidden;
  width: 0;
  float: left;
}

.create_news .form_title {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.create_news .form_title p {
  font-size: 18px;
  font-weight: bold;
  letter-spacing: 0.5px;
  color: var(--text-primary-color);
}

.create_news .input_form input {
  width: 100%;
  height: 40px;
  border-radius: 5px;
  border: 1px solid #ced4da;
  padding: 0px 15px;
  background-color: #ffff;
}

[data-bs-theme="dark"] .create_news input,
[data-bs-theme="dark"] .create_news textarea {
  color: #000;
}


.create_news .input_form input::placeholder {
  color: #dedede;
}

.create_news .input_form textarea {
  width: 100%;
  border-radius: 5px;
  border: 1px solid #ced4da;
  padding-left: 15px;
}

.create_news .input_form textarea::placeholder {
  color: #dedede;
  font-size: 14px;
}

.create_news .show_date {
  position: relative;
}

.create_news .show_date .react-datepicker-wrapper {
  width: 100%;
}

.create_news .show_date input {
  width: 100%;
  height: 40px;
  border-radius: 5px;
  border: 1px solid #ced4da;
  padding-left: 15px;
  padding-right: 40px;
  cursor: pointer;
  background-color: #fff;
}

.create_news .main_image,
.create_news .other_image {
  border: 1px dotted #000;
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100px;
  border-radius: 5px;
  position: relative;
  cursor: pointer;
  background-color: #fff;
}

/* .create_news .imgWrapper{
  height: 200px !important;
} */

.create_news .imgWrapper img {
  object-fit: contain !important;
}

.create_news .main_image label {
  color: #000;
}

.create_news .dropzone {
  color: #000;
}

.create_news .main_image .file_upload,
.create_news .other_image .file_upload {
  opacity: 0;

  /* IE 8 */
  -ms-filter: 'progid:DXImageTransform.Microsoft.Alpha(Opacity=0)';

  /* IE 5-7 */
  filter: alpha(opacity=0);

  /* Netscape or and older firefox browsers */
  -moz-opacity: 0;

  /* older Safari browsers */
  -khtml-opacity: 0;

  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  right: 0;
  width: 100%;
  height: 100%;
  cursor: pointer;
}

.create_news .next-btn {
  width: 100%;
  padding: 10px 0;
  font-weight: 600;
  font-size: 18px;
}

.create_news .form-calender {
  position: absolute;
  right: 15px;
  top: 0;
  bottom: 0;
  margin: auto;
}

.create_news .form-select-lg {
  font-size: 1rem;
  letter-spacing: 0.5px;
  cursor: pointer;
}

.create_news .form-select:focus {
  border-color: #ced4da;
  box-shadow: none;
}

.create_news .video_url #videoInput {
  display: none;
}

.create_news .video_url label {
  border-color: #ced4da;
  border: 1px solid #ced4da;
  border-radius: 5px;
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  padding-left: 15px;
  position: relative;
  cursor: pointer;
}

.create_news .video_url .uploadVideo {
  position: absolute;
  right: 15px;
}

.image_slider img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 10px;
  margin-bottom: 10px;
}

.create_news .editor {
  border: 1px solid #0000001a;
  border-radius: 5px;
}

.create_news .rdw-editor-main {
  padding-left: 15px;
}

.create_news input::placeholder,
.create_news textarea::placeholder,
.create_news .ant-select-selection-placeholder {
  color: gray !important;
  /* font-weight: 500; */
}

.create_news .ql-editor {
  font-size: 16px;
}


@keyframes blink {
  0% {
    opacity: 1;
  }

  50% {
    opacity: 0;
  }

  100% {
    opacity: 1;
  }
}

.editor-container.blinking textarea {
  animation: blink 1s infinite;
}

.create_news .backbtn,
.create_news .subbtn {
  margin-top: 10px;
  width: 100%;
  font-size: 18px;
  font-weight: 600;
}

.create_news .mainimage img {
  margin: auto;
  display: flex;
  justify-content: center;
  object-fit: cover;
  width: 100%;
}

/* manage news */
.manage_news .manage-data {
  display: flex;
  background-color: var(--body-color);
  padding: 10px;
  border-radius: 10px;
  margin-bottom: 15px;
}

.manage_news .deactiveNews {
  background-color: red;
  color: #fff;
  border-radius: 4px;
  padding: 6px;
  font-weight: 600;
}

.manage_news .manage-data .manage-card {
  margin-right: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.manage_news .manage-data .manage-card .manage-img img {
  width: 100px;
  height: 100px;
  object-fit: cover;
  border-radius: 10px;
  cursor: pointer;
}

.manage_news .manage-data p {
  margin-bottom: 0;
}

.manage_news .manage-data .manage-card .manage-title p {
  cursor: pointer;
}

.manage_news .manage-data .manage-card .manage-title p,
.manage_news .manage-data .manage-card .manage-time p {
  text-align: center;
  margin-bottom: 0;
}

.manage_news .manage-right .manage-buttons {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

/* .manage_news .manage-right .manage-buttons .manage-button-edit {
  margin-right: 15px;
} */

.preview {
  border: 1px solid #00000026;
  width: 100%;
  border-radius: 5px;
  height: 34px;
  margin-bottom: 10px;
  text-align: center;
  text-decoration: none;
  color: #000;
  display: flex;
  justify-content: center;
  align-items: center;
}


[data-bs-theme="dark"] .preview {
  border: 1px solid #fff;
  color: #fff;
}

.all_images {
  position: relative;
}

.close-btn {
  position: absolute;
  top: 0;
  right: 17%;
  border-radius: 50%;
  background-color: red;
  color: #fff;
  border: none;
  display: flex;
  justify-content: center;
  align-items: center;
}

.create_news .anticon.anticon-close {
  vertical-align: 0 !important;
}

.create_news .dropzone {
  height: 100%;
  width: 100%;
  text-align: center;
}

.create_news .dropzone:focus,
.create_news .dropzone:focus-visible {
  outline: none;
}

.create_news .dropzone input {
  display: block !important;
  visibility: hidden;
  margin-left: -37%;
}

.create_news .otherImgDiv {
  position: relative;
  width: max-content;
}

.create_news .otherImgDiv span {
  position: absolute;
  right: 0px;
  top: 0px;
  background: #000;
  color: #fff;
  border-radius: 40px;
  width: 20px;
  height: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  cursor: pointer;
}


.profile .profile_content {
  border: 1px solid #dedede;
  border-radius: 5px;
  padding: 10px;
}

.manage-data .manage-date p {
  font-weight: 500;
  text-align: center;
  color: var(--text-primary-color);
  margin-top: 8px;
}

.manage-data .manage-tag {
  display: flex;
  flex-wrap: wrap;
}

.manage-data .manage-tag p {
  background-color: #80808047;
  margin-right: 10px;
  margin-bottom: 10px;
  padding: 0px 10px;
  border-radius: 10px 0 10px 0px;
  cursor: pointer;
}

.manage-data .manage-title p {
  font-weight: 600;
  font-size: 18px;
  color: var(--text-primary-color);
  cursor: pointer;
}

.create-img {
  height: 550px;
  object-fit: contain;
  margin: auto;
  display: block;
  width: 100%;
}

.edit-img {
  height: 750px;
  object-fit: contain;
  margin: auto;
  display: block;
  width: 100%;
}

@media (max-width: 400px) {

  .create-img,
  .edit-img {
    height: auto;
    margin-bottom: 40px;
  }
}

.react-datepicker-popper {
  z-index: 10 !important;
}

.para {
  text-transform: none;
  font-weight: 600;
  font-size: 18px;
}

[data-bs-theme="dark"] .para {
  color: var(--text-secondary-color);
}

.para * {
  font-weight: 300;
}

.top-title {
  text-transform: capitalize;
}

.comment_data {
  display: flex;
  align-items: center;
  gap: 20px;
}

.comment_like,
.comment_dislike,
.comment_dots {
  cursor: pointer;
}

.comment_Modal .comment_delete {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 15px;
}

.comment_Modal .comment_delete p {
  font-weight: 600;
}

.comment_Modal .ant-modal-close {
  margin-top: -10px;
}

.comment_Modal .comment_report .comment_title {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-weight: 600;
  padding-top: 20px;
}

.comment_report textarea {
  width: 100%;
  background-color: transparent;
  color: #000;
  padding: 6px;
}

.comment_report button {
  display: flex;
  justify-content: center;
  align-items: center;
}

#cs-input {
  width: 100%;
  padding: 6px;
}

.categoryview_Section #bcb-active-item {
  text-transform: capitalize;
}

#bcb-third-item {
  text-transform: capitalize;
  font-weight: 600;
}

.top_title {
  background-color: var(--primary-color);
  cursor: pointer;
  color: #fff;
  border-radius: 5px;
  padding: 5px;
  width: max-content;
}

.top-title {
  font-size: 34px;
  margin-bottom: 10px;
  font-weight: 600;
  color: var(--text-primary-color);
}

.custom-input-class {
  padding: 0;
  width: 60px !important;
  height: 60px;
}

@media only screen and (max-width:575px) {

  .top-title {
    font-size: 24px;
  }

  .otp-content {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
  }

  .custom-input-class {
    width: 35px !important;
    height: 35px !important;
  }
}

.otpbox {
  gap: 8px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  flex-wrap: wrap;
}

.video_other_url {
  background-color: #dedede;
  padding: 5px;
  border-radius: 10px;
  height: 40rem;
}

.video_modal .modal-content {
  background-color: transparent;
  border: none;
  align-items: center;
}

.video_modal .modal-content .modal-body {
  width: 100%;
}

@media (min-width: 992px) and (max-width: 1199px) {
  .video_other_url {
    height: 30rem;
  }
}

@media (min-width: 768px) and (max-width: 991px) {
  .video_other_url {
    height: 20rem;
  }
}

@media (max-width: 767px) {
  .video_other_url {
    height: auto;
    width: auto;
  }

  .video_modal .modal-content .modal-body {
    width: auto;
  }
}

#nprogress .bar {
  height: 5px;
  /* Adjust the height as per your preference */
  background: var(--primary-color);
}

#nprogress .peg {
  box-shadow: none;
}

/* Customize the color of the spinner */
#nprogress .spinner-icon {
  display: none;
}

.videoCanvas {
  width: 100% !important;
}

.search_bar::-webkit-scrollbar {
  width: 5px;
}

/* Track */
.search_bar::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px grey;
  border-radius: 10px;
}

/* Handle */
.search_bar::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 10px;
}

.search_bar .load-more-btn {
  background: var(--body-color);
  color: #000;
  width: 100%;
}

.search_bar .load-more-btn button {
  background: var(--primary-color);
  color: #fff;
  outline: none;
  border: transparent;
  padding: 9px 15px;
  border-radius: 10px;
  font-weight: 600;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.confirmpss {
  padding-top: 24px !important;
}

@media (max-width: 991px) {
  .ModalWrapper {
    display: block;
  }
}

.error_button a {
  border: none !important;
}

.error_page {
  text-align: center;
  margin: 50px auto;
}

.error_page img {
  width: 100%;
}

@media screen and (max-width: 575px) {
  .error_page img {
    height: 100%;
  }
}

.create_news .ant-alert-message {
  font-size: x-small;
}

.no_data_found {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 64vh;
  color: var(--text-primary-color);
  font-size: 22px;
  font-weight: 600;
}

.personal_Sec {
  padding-bottom: 150px;
  padding-top: 50px;
}


/* new lightbox css  */

.gallarybox_prevButton {
  position: absolute;
  top: 50%;
  left: 10px;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: #fff;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.gallarybox_nextButton {
  position: absolute;
  top: 50%;
  right: 10px;
  transform: translateY(-50%);
  background: transparent;
  border: none;
  color: #fff;
  font-size: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media only screen and (max-width:1440px) {

  .gallarybox_prevButton,
  .gallarybox_nextButton {
    display: none;
  }
}

.categoryview_Section .subCatTitle {
  color: var(--secondary-color);
  font-size: 18px;
  font-weight: 600;
  margin-bottom: 16px;
  text-decoration: underline;
  text-decoration-thickness: 3px;
}

.categoryview_Section .subcategoryWrapper {
  margin-top: -18px;
}

.catNavWrapper .subcategoryWrapper {
  display: flex;
  align-items: start;
  justify-content: start;
  flex-direction: column;
  gap: 20px;
  border-right: 1px solid lightgray;
  height: 100%;
}

.catNavWrapper .subcategoryWrapper div {
  padding: 22px;
  padding-top: 12px;
  border-bottom: 1px solid lightgray;
  width: 100%;
}

.catNavWrapper .subcategoryWrapper span {
  color: var(--secondary-color);
  font-weight: 700;

}

.catNavWrapper .catNavMenu {
  border: none;
  border-radius: 0px;
  margin-top: 16px;
  width: 73.5vw;
  padding-bottom: 54px;
  transform: unset !important;
  left: 0px;
}

.catNavWrapper .categoryName,
.catNavWrapper .categoryName:hover,
.catNavWrapper .btn.show,
.catNavWrapper .categoryName:focus,
.catNavWrapper.categoryName:focus-visible,
.catNavWrapper .categoryName:active {
  color: var(--hover--color);
  font-weight: 600;
  background-color: transparent;
  border: none;
}

.catNavWrapper .categoryName {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  width: max-content;
}

.catNavWrapper .dropdown-toggle::after {
  display: none;
}

.catNavWrapper #cv-card-image {
  height: 194px;
}

.catSubCatWrapper {
  position: relative;
}

.catSubCatWrapper .subCatDropdown {
  position: absolute;
  top: 37px;
  left: 0px;
  background-color: white;
  width: 100%;
  z-index: 5;
  height: 360px;
  box-shadow: rgba(0, 0, 0, 0.15) 0px 6px 8px;
  transition: all 0.3s;
}

.catSubCatWrapper .allCatBtn {
  position: relative;
}

.catSubCatWrapper .allCatBtn .downArr svg {
  margin-left: 2px;
}

.catSubCatWrapper .sub-menu {
  position: absolute;
  background-color: var(--body-color);
  z-index: 2;
  padding: 12px;
  width: 100%;
  border: 1px solid lightgray;
  border-radius: 4px;
  margin-top: 1px;
}

[data-bs-theme="dark"] .catSubCatWrapper .sub-menu {
  border: 1px solid #6c757d;
}

.catSubCatWrapper .sub-menu li {
  margin: 6px 0px;
  font-weight: 700;
}

.catSubCatWrapper .sub-menu li:first-child {
  margin-top: 0px;
}

.catSubCatWrapper .sub-menu li a:hover,
.catSubCatWrapper .sub-menu .dropdown-toggle:hover {
  color: var(--primary-color);
}

.catSubCatWrapper .sub-menu .dropdown-toggle {
  background-color: transparent;
  border: none;
  color: var(--text-primary-color);
  font-weight: 700;
  padding: 0px;
}

.catSubCatWrapper .sub-menu .dropdown-toggle svg {
  margin-top: -2px;
  margin-left: 2px;
}

.catSubCatWrapper .sub-menu .dropdown-menu.show {
  padding: 0px !important;
}

.catSubCatWrapper .sub-menu .dropdown-menu.show .dropdown-item a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary-color);
  padding: 0px;
}

[data-bs-theme="dark"] .catSubCatWrapper .subCatDropdown {
  background-color: var(--secondary-color);
  box-shadow: 0px 8px 14px hsl(240, 51.3%, 15.3%);
}

.catSubCatWrapper .subCatDataWrappper .row {
  padding-top: 20px;
  gap: 12px 0px;
  padding-right: 16px;
  margin-left: -20px;
}

.catSubCatWrapper .subCatDataWrappper .commonNewsCard {
  height: 100%;
}

.catSubCatWrapper .subCatDataWrappper .row #cv-card {
  align-items: start;
  gap: 12px;
}

.catSubCatWrapper .close {
  position: absolute;
  right: 4px;
  top: 4px;
  font-size: 16px;
  cursor: pointer;
}

.catSubCatWrapper .subCatDropdown .subCatNamesWrapper {
  display: flex;
  flex-direction: column;
  align-items: start;
  justify-content: start;
  gap: 12px;
  border-right: 1px solid lightgray;
  height: 360px;
  /* max-height: 610px; */
  overflow-y: auto;
  position: relative;
}

.catSubCatWrapper .subCatDropdown .no_data_found {
  height: 24vh;
}


/* width */
.catSubCatWrapper .subCatDropdown .subCatNamesWrapper::-webkit-scrollbar {
  width: 3px;
}

/* Track */
.catSubCatWrapper .subCatDropdown .subCatNamesWrapper::-webkit-scrollbar-track {
  border-radius: 10px;
}

/* Handle */
.catSubCatWrapper .subCatDropdown .subCatNamesWrapper::-webkit-scrollbar-thumb {
  background: lightgray;
  border-radius: 10px;
}

.catSubCatWrapper .subCatDropdown .subCatNamesWrapper div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px;
  border-bottom: 1px solid lightgray;
  width: 100%;
  text-align: start;
  cursor: pointer;
}

.catSubCatWrapper .subCatDropdown .subCatNamesWrapper span {
  color: var(--text-primary-color);
  font-weight: 700;
}

.catNav-links svg {
  margin-left: 4px;
}

[data-bs-theme="dark"] .catNav-links svg {
  color: #fff;
}

.subNavActive,
.catSubCatWrapper .subCatDropdown .subCatNamesWrapper div svg {
  color: red !important;
}

.catSubCatWrapper .viewAllWrapper {
  display: flex;
  align-items: end;
  justify-content: end;
}

.catSubCatWrapper .viewAllWrapper button {
  background-color: transparent;
  border: 2px solid var(--text-primary-color);
  color: var(--text-primary-color);
  /* margin-top: 4px; */
  margin-right: 0px;
  padding: 6px;
  border-radius: 6px;
  font-weight: 600;
}

.catSubCatWrapper #cv-card-title {
  font-size: 16px;
}

.offcanvas .subCatdrop .dropdown-toggle {
  background-color: transparent;
  border: none;
  color: var(--text-primary-color);
  font-weight: 600;
  font-size: 22px;
  padding: 0px;
}

.offcanvas .subCatdrop .dropdown-menu {
  background-color: var(--secondary-color);
}

.offcanvas .subCatdrop .dropdown-menu .dropdown-item {
  font-weight: 700;
}

/* .offcanvas .subCatdrop .dropdown-toggle:hover {
  color: white;
} */

.offcanvas .subCatdrop .dropdown-toggle::after {
  border: none;
}

.offcanvas .subCatdrop .dropdown-toggle svg {
  margin-left: 6px;
  margin-top: -4px;
}

/* width */
.offcanvas .offcanvas-body::-webkit-scrollbar {
  width: 6px;
}

/* Track */
.offcanvas .offcanvas-body::-webkit-scrollbar-track {
  border-radius: 10px;
}

/* Handle */
.offcanvas .offcanvas-body::-webkit-scrollbar-thumb {
  background: var(--primary-color);
  border-radius: 10px;
}

.surveysSect .card {
  background-color: var(--body-color);
  padding: 16px;
  border: nono;
  border-radius: 6px;
  gap: 12px;
  position: relative;
  margin-top: 20px;
  padding-bottom: 2px;
}

.surveysSect .card span {
  color: var(--text-primary-color);
  font-weight: 600;
}

.surveysSect .card .question {
  font-size: 20px;
  margin-bottom: 20px;
}

.surveysSect .card .options {
  background-color: white;
  text-align: center;
  padding: 12px;
  border-radius: 6px;
  font-size: 18px;
  cursor: pointer;
}

[data-bs-theme="dark"] .surveysSect .card .options {
  background-color: var(--secondary-color);
}

.surveysSect .card .selectedOption {
  background-color: var(--primary-color) !important;
  color: white;
}

.surveysSect .card .submitBtn {
  border: none;
  border-radius: 6px;
  padding: 12px;
  margin-top: 12px;
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 14px;
}

.surveysSect .resultCard {
  gap: 0px;
}

.surveysSect .resultCard span:nth-child(2) {
  margin-top: 20px;
}

.surveysSect .resultCard span:last-child {
  margin-bottom: -16px;
}

.surveysSect .progress {
  height: 34px;
  background-color: gray;
}


.surveysSect .progress-bar {
  background-color: var(--primary-color);
}

.surveysSect .card .percentage {
  position: relative;
  top: -28px;
  left: 46%;
  margin: auto;
  color: white;
}

.surveysSect .loadMoreBtn {
  width: 100%;
}

/* surveysSect ends here  */

.activeSubDrop {
  position: relative;
}

.activeSubDrop::after {
  content: '';
  position: absolute;
  background-color: var(--primary-color);
  width: 100%;
  height: 3px;
  border-radius: 2px;
  left: -2px;
  bottom: -10px;
}

.formLoaderWrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 20px;
  padding: 05px 10px;
}

.formLoader {
  border: 4px solid #f3f3f3;
  border-top: 4px solid var(--primary-color);
  border-radius: 50%;
  width: 20px;
  height: 20px;
  animation: spin 2s linear infinite;
}

.replyModal {
  display: none !important;
}

.copy_url {
  padding: 5px;
  background: var(--primary-color);
  color: #fff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: bold;
  border: none;
}

.loadMoreBtn {
  border: none;
  border-radius: 8px;
  padding: 12px;
  background-color: var(--secondary-color);
  background-color: var(--primary-color);
  color: #fff;
  display: block;
  margin: auto;
  margin-top: 20px;
  /* width: 100%; */
  font-size: 18px;
  font-weight: 600;
}


.loadMoreSpinnerWrapper {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 20px;
  padding: 05px 10px;
}

.loadMoreSpinner {
  border: 4px solid #f3f3f3;
  border-top: 4px solid var(--primary-color);
  border-radius: 50%;
  margin-top: 20px;
  width: 30px;
  height: 30px;
  animation: spin 2s linear infinite;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

.commonBtn {
  background-color: var(--primary-color);
  color: #fff;
  position: relative;
  overflow: hidden;
  z-index: 1;
  font-weight: 600;
  padding: 6px 12px;
  border: none;
  border-radius: 6px;
}

.commonBtn:hover {
  color: #fff !important;
}

.commonBtn::after {
  content: '';
  position: absolute;
  top: 0px;
  left: 0px;
  width: 0px;
  height: 100%;
  background-color: var(--hover--color);
  z-index: -1;
  transition: all 0.4s;
}


[data-bs-theme="dark"] .commonBtn::after {
  background-color: var(--hover--color);
}


.commonBtn:hover::after {
  width: 100%;
}

.modal-title {
  font-size: 36px;
  font-weight: bold;
  color: var(--text-primary-color);
}

.welcomeText {
  color: var(--text-primary-color);
  font-weight: 600;
}

.forgotText {
  font-size: 24px;
  font-weight: bold;
  color: var(--text-primary-color);
}

.email-input {
  color: var(--text-primary-color);
  font-weight: 600;
  margin-top: 20px;
}

.phoneLoginModal .modal-body {
  height: 70%;
  display: flex;
  align-items: center;
}

.phoneLoginModal .modal-body,
.phoneLoginModal .modal-header {
  margin-left: 12px;
}


.manage_preferences .manage_title {
  color: var(--text-primary-color);
  font-size: 22px;
  font-weight: 600;
}


#resendbutton {
  color: var(--text-primary-color);
  font-weight: 500;
}

.resend-text {
  color: var(--text-primary-color);
  font-weight: 500;
}


.resend-time {
  color: red;
  font-weight: 500;
  font-family: 'circular';
}

@media screen and (max-width: 575px) {
  .modal-title {
    font-size: 26px;
  }

  .forgotText {
    font-size: 16px;
  }
}

.profileDropDownWrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}

@media screen and (min-width: 1200px) and (max-width: 1399px) {
  .profileDropDownWrapper {
    gap: 6px;
  }
}

/* new breadcrumb  */

.breadcrumbWrapper {
  padding: 30px 20px;
  color: var(--text-primary-color);
  font-size: 20px;
  font-weight: 600;
  background-color: #efefef;
}

[data-bs-theme="dark"] .breadcrumbWrapper {
  background-color: var(--secondary-color);
}


.breadcrumbWrapper .pageName a {
  color: var(--text-primary-color);
  text-transform: capitalize;
}

.breadcrumbWrapper .firstElement {
  color: var(--text-primary-color);
}

.breadcrumbWrapper .firstElement svg {
  margin-top: -8px;
}

.ant-breadcrumb-separator {
  color: var(--text-primary-color) !important;
}

.breadcrumbWrapper ol li a {
  color: var(--text-primary-color);
  font-weight: 600;
  text-transform: capitalize;
}

.breadcrumbWrapper ol li a:hover {
  background-color: transparent !important;
}

/* .breadcrumbWrapper ol li:last-child {
  display: none;
} */

/* new footer  */
.footerMediasWrapper {
  margin-top: 30px;
}

.footerMediasWrapper .followUs {
  color: #fff;
  font-size: 18px;
  font-weight: 600;
}

.footerMediasWrapper .mediaIconsWrapper {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

#footer a {
  color: #fff;
}

.footerMediasWrapper .mediaIconsWrapper a,
#footer .contactIcons {
  background-color: #57657dc4;
  color: #fff;
  border-radius: 50px;
  height: 32px;
  width: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}


.footerMediasWrapper .mediaIconsWrapper .socialMediaIcon {
  width: 16px;
  height: 16px;
}

.footerMediasWrapper .mediaIconsWrapper a:hover,
#footer .contactIcons:hover {
  color: #fff !important;
  background-color: var(--primary-color);
  box-shadow: 0px 6px 24px -5px var(--primary-color);
}

/* .footerMediasWrapper .mediaIconsWrapper a svg {
  margin-top: -4px;
} */

.navigationWrapper {
  padding-left: 65px;
}

.contactInfo {
  display: flex;
  flex-direction: column;
  gap: 22px;
  margin-top: 30px;
}

#footer .contactIcons {
  padding: 6px 8px;
  margin-right: 12px;
}

.appWrapper {
  display: flex;
  gap: 12px;
  align-items: center;
  justify-content: start;
  flex-wrap: wrap;
  margin-left: -12px;
}

.appWrapper img {
  width: 164px;
  height: 100%;
  cursor: pointer;
}

.copyRightWrapper {
  /* background-color: #0F1F40; */
  border-top: 0.5px solid #6c757d7a;
  margin-top: 50px;
}

@media screen and (max-width: 991px) {
  .navigationWrapper {
    margin-top: 40px;
    padding-left: 12px;
  }

  .copyRightWrapper {
    margin-top: 30px;
  }
}

.magicofapp {
  color: #fff;
}

.ant-modal .ant-modal-body {
  font-weight: 600;
}

.ant-modal-confirm .ant-modal-confirm-btns button {
  font-weight: 700;
}


.commonNewsCard {
  height: 440px;
}

.tagview .row {
  gap: 30px 0px;
}

/* .commonNewsCard img{
  height: 400px;
} */

@media screen and (min-width: 1200px) and (max-width: 1399px) {
  .commonNewsCard {
    height: 360px;
  }
}

@media screen and (min-width: 768px) and (max-width: 1199px) {
  .commonNewsCard {
    height: 316px;
  }
}

@media screen and (max-width: 767px) {
  .commonNewsCard {
    height: 100%;
  }
}

.commonNewsCard p {
  padding: 0px 12px;
}

.rssFeedCard {
  display: flex !important;
  flex-direction: row;
  align-items: start;
}

.rssFeedCard p {
  padding: 0px 12px;
}

.commonRowGap {
  gap: 30px 0px;
}

.form-control {
  background-color: var(--body-color);
}


/* dark mode css from here  */

.bg-white {
  background-color: var(--body-color) !important;
}

.darkModeToggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-right: 30px;
}

.darkModeToggle .form-check-input:checked {
  background-color: var(--primary-color);
  border-color: var(--primary-color);
}

.darkModeToggle svg:last-child {
  margin-left: -8px;
}

.darkModeToggle input {
  cursor: pointer;
}

.darkModeToggle input:focus {
  box-shadow: none;
}

[dir="rtl"] .darkModeToggle {
  margin-left: 28px;
  flex-direction: row-reverse;
}

[data-bs-theme="dark"] .commonNewsCard {
  background-color: var(--secondary-color);
}

[data-bs-theme="dark"] .react-loading-skeleton,
[data-bs-theme="dark"] .react-loading-skeleton::after {
  background-color: #ebebeb42 !important;
  --base-color: #ffffff00;
  --highlight-color: #ffffff00;
}

[data-bs-theme="light"] .react-loading-skeleton,
[data-bs-theme="light"] .react-loading-skeleton::after {
  background-color: #6c757d17 !important;
  --base-color: #6c757d00;
  --highlight-color: #cccccc03;
}

/* ================================================================================================================ */

/* style skeletons css  */

.commonViewMoreSkeleton {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.textSkeleton {
  position: relative;
}

.textSkeleton .innerDiv {
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: absolute;
  bottom: 12px;
  padding: 0px 12px;
  width: 100%;
}

.styleOneSkeleton #Left-first-section {
  box-shadow: none;
}

.news_style_one .innerDiv,
.news_style_five .styleFive_textSkeleton .innerDiv {
  bottom: 120px;
  left: 20px;
}

#style-six-body-section .styleSix_textSkeleton .innerDiv {
  justify-content: space-between;
  height: 100%;
}

#style-six-body-section .styleSix_textSkeleton .innerDiv .categoryBadge {
  margin-top: 28px;
}

.allCatSkeleton .innerDiv {
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  bottom: 34px;
}

@media screen and (max-width: 1199px) {
  .styleOneSkeleton {
    display: none;
  }
}

/* ============================= skeletons css  ends here =================================================/

/* cookies style from here  */

.cookiesComponent {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999;
  padding: 20px;
  background: #FFFFFF 0% 0% no-repeat padding-box;
  box-shadow: 0px 0px 50px #1B2D511A;
  border-radius: 10px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 30px;
  width: 640px;
  height: 366px;
  padding: 185px 60px;
}

[data-bs-theme="dark"] .cookiesComponent {
  background: #122342 0% 0% no-repeat padding-box;
  box-shadow: 0px 0px 50px #6c757d2b;
}

.cookiesComponent .imgWrapper {
  margin-top: 30px;
}

.cookiesComponent .content {
  display: flex;
  flex-direction: column;
  gap: 16px;
  align-items: center;
  text-align: center;
}

.cookiesComponent .content span:first-child {
  color: var(--text-primary-color);
  font-size: 24px;
  font-weight: bold;
}

.cookiesComponent .content span:last-child {
  color: var(--text-secondary-color);
  font-weight: 600;
}

.cookiesComponent .btnsWrapper {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 20px;
  margin-top: 24px;
  padding-bottom: 30px;
}

.cookiesComponent .btnsWrapper button {
  border: 1px solid var(--text-secondary-color);
  border-radius: 5px;
  padding: 10px 20px;
  color: var(--text-primary-color);
  background-color: transparent;
  font-weight: 600;
}

.cookiesComponent .btnsWrapper button:last-child {
  color: #fff;
  background-color: #0F1F40;
}

[data-bs-theme="dark"] .cookiesComponent .btnsWrapper button:last-child {
  color: #0F1F40;
  background-color: #FFFFFF;
}

@media screen and (min-width: 768px) and (max-width: 992px) {
  .cookiesComponent {
    width: 450px;
    height: 450px;
    padding: 50px;
  }
}

@media screen and (min-width:576px) and (max-width: 767px) {
  .cookiesComponent {
    width: 350px;
    height: 490px;
    padding: 20px;
  }
}

@media screen and (min-width: 0px) and (max-width: 575px) {
  .cookiesComponent {
    bottom: 10px;
    right: 10px;
    width: 300px;
    height: 420px;
    padding: 20px;
  }

  .cookiesComponent .content span:first-child {
    font-size: 18px;
  }

  .cookiesComponent .content span:last-child {
    font-size: 14px;
  }

  .cookiesComponent .btnsWrapper {
    margin-top: 0px;
  }
}


.under_maintance {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 20px;
  height: 100vh;
  text-align: center;
  color: var(--text-primary-color);
}

.under_maintance .title {
  margin-top: 30px;
}

.under_maintance .desc {
  width: 62%;
  margin: auto;
}

@media screen and (max-width: 630px) {
  .under_maintance .desc {
    width: 100%;
  }
}

.under_maintance img {
  width: 100%;
}

@media screen and (max-width: 767px) {
  .under_maintance img {
    width: 250px;
    height: min-content;
  }
}

.ORDiv {
  position: relative;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
}

.ORDiv span {
  margin: auto;
  display: block;
  color: var(--text-primary-color);
}

.ORDiv::before,
.ORDiv::after {
  content: '';
  position: absolute;
  width: 44%;
  height: 1px;
  background-color: var(--text-primary-color);
}

.ORDiv::before {
  left: 0px;
}

.ORDiv::after {
  right: 0px;
}

.categoryTag {
  background-color: var(--categoryTag-color);
  padding: 4px 10px;
  border-radius: 4px;
  color: #1B2D51;
  font-weight: 500;
  border: none;
  width: max-content;
}

.commonViewAllBtn {
  letter-spacing: 1px;
  background-color: transparent;
  text-decoration: none;
  padding: 10px 16px;
  border-radius: 5px;
  font-weight: 700;
  color: var(--text-primary-color);
  border: 1px solid var(--secondary-color);
  display: flex;
  align-items: center;
  gap: 12px;
  transition: all 0.3s;
}

.commonViewAllBtn:hover {
  background-color: var(--hover--color);
  color: #fff;
  border: 1px solid transparent;
}

.readMoreBtn {
  margin-top: 12px;
  display: block;
  color: var(--text-secondary-color);
  font-size: 18px;
  font-weight: 500;
  display: flex;
  gap: 12px;
  align-items: center;
  transition: all 0.3s;
}

.readMoreBtn svg {
  margin-top: 2px;
  transition: all 0.2s;
}

.readMoreBtn:hover {
  color: var(--primary-color);
}

.readMoreBtn:hover svg {
  margin-left: 4px;
}

.dateSpan {
  font-weight: 500;
  color: #fff;
}

.leftDivDateSpan {
  color: var(--text-primary-color);
}

.news_style_four .dateSpan,
.video_style_four .dateSpan,
.views {
  color: var(--text-secondary-color);
  font-size: 16px;
  font-weight: 500;
}

.views svg {
  margin-top: 2px;
}

@media screen and (max-width: 575px) {
  .commonViewAllBtn {
    padding: 6px;
    font-size: 14px;
  }
}


/* [data-bs-theme="dark"] .categoryTag {
  color: #1B2D51;
} */

[data-bs-theme="dark"] .commonViewAllBtn {
  border: 1px solid #FFFFFF80;
}

.defaultLangWrapper {
  width: 100%;
  height: 40px;
  border-radius: 5px;
  border: 1px solid #ced4da;
  padding: 0px 15px;
  background-color: #ffff;
  display: flex;
  align-items: center;
  color: gray !important;
}

.rssFeedSect {
  margin-top: 60px;
  margin-bottom: 100px;
}

.rssFeedSect .mainRow,
.rssFeedSect .rssFeedsRow {
  gap: 30px 0px;
}

.rssFeedSect .rssFeedBox {
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid #1B2D511A;
  border-radius: 6px;
  padding: 10px 20px;
  cursor: pointer;
}

.rssFeedSect .rssFeedBox span {
  height: 30px;
  width: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: #EDA918;
  padding: 4px;
  border-radius: 4px;
  color: #fff;
  font-size: 24px;
}

.rssFeedSect .loadingBox {
  border: 1px solid #1B2D511A;
  border-radius: 6px;
  padding: 10px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.rssFeedSect .rssFeedBox h2 {
  font-size: 18px;
  color: var(--text-primary-color);
  font-weight: 500;
  margin-bottom: 0px;
}

.rssFeedSect .filterDiv h1 {
  font-size: 20px;
  color: var(--text-primary-color);
  font-weight: 600;
  margin-bottom: 0;
}

.rssFeedSect .feedFilterWrapper {
  background-color: transparent;
  border: 1px solid #1B2D511A;
  border-radius: 4px;
  padding: 6px;
}

.rssFeedSect .feedFilterWrapper h2 {
  color: var(--text-primary-color);
  font-weight: 600;
  font-size: 18px;
  margin-bottom: 0;
  text-align: center;
}

.rssFeedSect .feedFilterWrapper .filterSelect,
.rssFeedSect .feedFilterWrapper .allFeed {
  cursor: pointer;
}

.rssFeedSect .feedFilterWrapper .feedFilter {
  border: none;
  background-color: transparent;
}

.rssFeedSect .feedFilterWrapper .feedFilter:focus {
  outline: none;
}

.recentNewsSect #RNews-main {
  border: 1px solid #1B2D511A;
  border-radius: 16px;
}

.recentNewsSect #RNews-cat-nav {
  background-color: transparent;
  border: none;
  border-bottom: 1px solid #1B2D511A;
  color: var(--text-primary-color);
}

.recentNewsSect #RNews-card {
  background-color: transparent;
  border: 1px solid #1B2D511A;
  padding: 4px;
  border-radius: 16px;
  /* margin: 30px; */
  margin: 16px;
}

.rssFeedSect .feedFilterWrapper {
  position: relative;
  width: 250px;
}

.rssFeedSect .sub-menu {
  position: absolute;
  left: 0px;
  background-color: var(--body-color);
  z-index: 2;
  padding: 12px;
  width: 100%;
  border: 1px solid lightgray;
  border-radius: 4px;
  margin-top: 8px;
}

[data-bs-theme="dark"] .rssFeedSect .sub-menu {
  border: 1px solid #6c757d;
}

.rssFeedSect .sub-menu li {
  margin: 6px 0px;
  font-weight: 700;
}

.rssFeedSect .sub-menu li:first-child {
  margin-top: 0px;
}

.rssFeedSect .sub-menu li a:hover,
.rssFeedSect .sub-menu .dropdown-toggle:hover {
  color: var(--primary-color);
}

.rssFeedSect .dropdown-toggle::after {
  content: '';
  border: none;
}

.rssFeedSect .sub-menu .dropdown-toggle {
  background-color: transparent;
  border: none;
  color: var(--text-primary-color);
  font-weight: 700;
  padding: 0px;
}

.rssFeedSect .sub-menu .dropdown-toggle svg {
  margin-top: -2px;
  margin-left: 2px;
}

.rssFeedSect .sub-menu .dropdown-menu.show {
  padding: 0px !important;
}

.rssFeedSect .sub-menu .dropdown-menu.show .dropdown-item a {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-primary-color);
  padding: 0px;
}

[data-bs-theme="dark"] .rssFeedSect .subCatDropdown {
  background-color: var(--secondary-color);
  box-shadow: 0px 8px 14px hsl(240, 51.3%, 15.3%);
}

.rssFeedSect .catNav-links {
  font-size: 14px;
}


[data-bs-theme="dark"] .rssFeedSect .feedFilterWrapper,
[data-bs-theme="dark"] .rssFeedSect .rssFeedBox,
[data-bs-theme="dark"] .recentNewsSect #RNews-main,
[data-bs-theme="dark"] .recentNewsSect #RNews-cat-nav,
[data-bs-theme="dark"] .recentNewsSect #RNews-card {
  border-color: #6c757d;

}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  .recentNewsSect #RNews-card {
    margin: 10px;
  }
}

@media screen and (max-width: 575px) {

  .rssFeedSect,
  .recentNewsSect {
    margin-top: 30px;
  }

  .recentNewsSect #RNews-card {
    margin: 10px;
  }
}

/* ========================================================= manageNewsCard css=========================================================  */

.manage_news .manageNewsCard {
  display: flex;
  gap: 12px;
  flex-direction: column;
  background-color: #fff;
  border-radius: 16px;
  padding: 16px 0px;
}

[data-bs-theme="dark"] .manage_news .manageNewsCard {
  background-color: var(--secondary-color);
}

.manage_news .mainRow {
  gap: 30px 0px;
}

.manage_news .manageNewsCard .upperDiv,
.manage_news .manageNewsCard .midDiv,
.manage_news .manageNewsCard .lowerDiv {
  padding: 0px 16px;
}

.manage_news .manageNewsCard .upperDiv {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.manage_news .manageNewsCard .upperDiv img {
  width: 80px;
  height: 80px;
  border-radius: 100px;
}

.manage_news .manageNewsCard .upperDiv .imgCateWrapper {
  display: flex;
  align-items: center;
  gap: 12px;
}

.manage_news .manageNewsCard .upperDiv .imgCateWrapper .cate {
  color: var(--text-primary-color);
  font-weight: 700;
  font-size: 18px;
  margin-bottom: 0;
}

.manage_news .manageNewsCard .upperDiv .imgCateWrapper .date {
  color: var(--text-secondary-color);
  font-weight: 500;
}

.manage_news .manageNewsCard .upperDiv .imgCateWrapper div {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.manage_news .manageNewsCard .midDiv {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.manage_news .manageNewsCard .midDiv .newsTitle {
  color: var(--text-primary-color);
  font-weight: 700;
  font-size: 22px;
}

.manage_news .manageNewsCard .midDiv .contentDiv {
  display: flex;
  align-items: center;
  gap: 12px;
}

.manage_news .manageNewsCard .midDiv .contentDiv .content {
  font-size: 18px;
  font-weight: 600;
  color: var(--text-primary-color);
}

.manage_news .manageNewsCard .midDiv .contentDiv .desc {
  color: var(--text-secondary-color);
}

.manage_news .manageNewsCard .midDiv .newsStatus {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 30px;
  border-top: 2px solid #1B2D511A;
  padding-top: 10px;
}

.manage_news .manageNewsCard .midDiv .newsStatus span {
  color: #E42B2B;
  font-weight: 600;
  font-size: 20px;
}

.manage_news .manageNewsCard .midDiv .newsStatus .statusIcon svg {
  font-size: 20px;
}

.manage_news .manageNewsCard .midDiv .newsStatus .statusIcon svg,
.manage_news .manageNewsCard .midDiv .newsStatus .statusIcon svg path,
.manage_news .manageNewsCard .midDiv .newsStatus .statusIcon svg g {
  fill: #E42B2B;
}


[data-bs-theme="dark"] .manage_news .manageNewsCard .midDiv .newsStatus span {
  color: #F26573;
}

[data-bs-theme="dark"] .manage_news .manageNewsCard .midDiv .newsStatus .statusIcon svg,
[data-bs-theme="dark"] .manage_news .manageNewsCard .midDiv .newsStatus .statusIcon svg path,
[data-bs-theme="dark"] .manage_news .manageNewsCard .midDiv .newsStatus .statusIcon svg g {
  fill: #F26573;
}

.manage_news .manageNewsCard .midDiv .newsStatus .statusIcon svg {
  width: 22px;
  height: 22px;
  object-fit: cover;
  margin-top: -4px;
}

.manage_news .manageNewsCard .lowerDiv {
  display: flex;
  align-items: center;
  justify-content: end;
}

.manage_news .manageNewsCard .lowerDiv .actionBtns {
  display: flex;
  align-items: center;
  gap: 12px;
}

.manage_news .manageNewsCard .lowerDiv .actionBtns button {
  border: 1px solid var(--text-primary-color);
  background-color: var(--secondary-color);
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 6px;
  color: var(--text-primary-color);
}

.manage_news .manageNewsCard .lowerDiv .actionBtns .edit {
  color: #fff;
}

[data-bs-theme="dark"] .manage_news .manageNewsCard .lowerDiv .actionBtns .edit {
  background-color: #fff;
  color: #122342
}

.manage_news .manageNewsCard .lowerDiv .actionBtns .delete {
  background: transparent;
}

.manage_news .manageNewsCard hr {
  margin: 0px;
  border-top: 2px solid #1B2D511A;
  opacity: 1;
}

[data-bs-theme="dark"] .manage_news .manageNewsCard hr,
[data-bs-theme="dark"] .manage_news .manageNewsCard .midDiv .newsStatus {
  border-top: 2px solid#6c757d;
}


@media screen and (min-width: 1200px) and (max-width: 1399px) {
  .manage_news .manageNewsCard .midDiv .newsStatus {
    gap: 12px;
  }
}

@media screen and (min-width: 768px) and (max-width: 991px) {
  .manage_news .manageNewsCard .midDiv .newsStatus {
    gap: 12px;
  }
}

@media screen and (max-width: 575px) {
  .manage_news .manageNewsCard .midDiv .newsStatus {
    gap: 12px;
  }

  .manage_news .manageNewsCard .midDiv .newsStatus .statusIcon svg {
    width: 20px;
    height: 20px;
  }

  .manage_news .manageNewsCard .midDiv .newsStatus span {
    font-size: 18px;
  }
}

.backToLogin {
  border: none;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  font-weight: 600;
  font-size: 18px;
}