@import url("https://fonts.googleapis.com/css2?family=Poppins:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap");
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Poppins", serif;
}
p{
	margin:0;
	padding:0;
}

:root {
  --primary: #595ba8;
  --primary-dark: #272264;
  --secondary: #ffffff;
  --secondary-dark: #f3f4f6;
  --secondary-light: #f9f7fd;
  --light-black: #17181acc;
  --black: #141414;
  --black-primary: #141414CC;
  --gray: #d9d9d9;
}

body {
  /* overflow: hidden; */
  background-color: var(--secondary-light);
}
.text-primary{
  color: var(--primary);
}

.morph-container {
  width: 100%;
  height: 100vh;
  display: flex;
  padding: 0px !important;     
  z-index:1000;
	position:absolute;
	top:0;
}

.sidebar-container {
  width: 15.625rem;
  height: 100%;
  background-color: var(--primary-dark);
  position: fixed;
  top:0;
  padding-left: 16px;
  z-index: 999;
  overflow: auto;
	
}

.sidebar-toggle {
  display: none;
}

.close-icon {
  display: none;
  font-size: 24px;
  position: fixed;
  top: 10px;
  left: 10px;
  cursor: pointer;
  z-index: 1000;
  color: #333;
}
.hamburger {
  display: none;
}

.sidebar-toggle:checked ~ .hamburger {
  display: none;
}

.sidebar-toggle:checked ~ .sidebar-container {
  transform: translateX(0);
}

.sidebar-toggle:checked ~ .close-icon {
  display: block;
}

.logo-container {
  width: 120px;
  overflow: hidden;
  margin-top: 24px;
  margin-inline:auto;
}

.logo-container img {
  width: 100%;
  object-fit: contain;
}

.sidebar-list {
  width: 100%;
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.sidebar-list > li {
  width: 100%;
  list-style-type: none;
}
.sidebar-link {
  width: 100%;
  padding: 12px;
  border-top-left-radius: 12px;
  border-bottom-left-radius: 12px;
  text-decoration: none;
  color: var(--secondary);
  display: inline-flex;
  align-items:center;
  gap: 12px;
  font-size: 14px;
}
.sidebar-link svg path {
  stroke: var(--secondary);
}
.active {
  color: var(--primary-dark);
  background-color: var(--secondary-light);
  position: relative;
}

.active::before {
  content: "";
  position: absolute;
  top: -100px;
  right: 0px;
  width: 100px;
  height: 100px;
  border-bottom-right-radius: 45px;
  box-shadow: 15px 15px 0 var(--secondary-light);
}
.active::after {
  content: "";
  position: absolute;
  bottom: -100px;
  right: 0px;
  width: 100px;
  height: 100px;
  border-top-right-radius: 45px;
  box-shadow: 15px -15px 0 var(--secondary-light);
}

.active svg path {
  stroke: var(--primary-dark);
}

.logout-button {
    width: 80%;
    margin-right: 20%;
    display: flex;
    align-items: center;
    justify-content: start;
    gap: 12px;
    padding: 18px;
    color: white;
    border: none;
    cursor: pointer;
    transition: all 0.3s;
    border-radius: 10px;
    margin-top: 94px;
    margin-bottom: 48px;
    background-color: var(--primary-dark);
    background-image: linear-gradient(to right, #5347BD33, #8F7CC033);
}
.logout-button:hover{
  background-color: #2e2874;
  transition: all 0.3s ease-in-out;
}

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

.container-right {
    width: 100%;
    background-color: var(--secondary-light);
    overflow-y: auto;
    margin-left: 15.625rem;
    margin-right: 0 !important;
    padding-inline: 40px;
    padding-block: 42px;
}

.header-container {
	background-color: var(--secondary-light);
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
	
}
.header-left{
	width:60%;
}
.header-right {
  display: flex;
  align-items: center;
	justify-content:end;
  gap: 24px;
  width: 50%;
}
.header-left> .text-xl{
	color:#141414;
}
.search-bar {
  width: 100%;
  background-color: var(--secondary-dark);
  border-radius: 8px;
  padding-inline: 16px;
  padding-block: 12px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.search-bar input {
  width: 100%;
  background-color: transparent;
  border: none;
  outline: none;
  font-size: 14px;
  color: #141414a6;
}
.notification {
  position: relative;
}
.notification-active {
  width: 8px;
  height: 8px;
  background-color: red;
  border-radius: 100%;
  position: absolute;
  top: 1px;
  right: 3px;
}
.profile-container {
  display: flex;
  align-items: center;
  gap: 8px;
}
.profile-image {
  width: 40px;
  height: 40px;
  border-radius: 100%;
  overflow: hidden;
}
.profile-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
/* --------------------Overriding bootstrap css------------------------- */

.table > thead > tr > th, .table > tbody > tr > th, .table > tfoot > tr > th, .table > thead > tr > td, .table > tbody > tr > td, .table > tfoot > tr > td, table > thead > tr > th, table > tbody > tr > th, table > tfoot > tr > th, table > thead > tr > td, table > tbody > tr > td, table > tfoot > tr > td ,table > tbody > tr:nth-child(odd){
 border: none ;
}
.table thead th {
     border: none ;
}
.table td, .table th {
    padding: 0 ;
    border: none !important;
}
.table td{
    vertical-align: none !important;
}
.table > tbody > tr > td{
	  text-align: left !important;
}

/* ---------------------------------------------------------------- */
.table-wrapper {
    overflow-x: auto !important;
    width: 100%;
  }
.table {
  width: 100%;
	max-width:none !important;
  border-collapse: collapse !important;
  table-layout: auto!important;
  background-color: var(--secondary) !important;
}

.table-head {
  font-weight: 600 !important;
  font-size: 12px !important;
  text-align: left !important;
  background-color: #eff0f2cc;
  color: #141414a6 !important;
  padding-inline: 24px !important;
  padding-block: 16px !important;
}
.table-body {
  font-weight: 400 !important;
  font-size: 14px !important;
  color: #141414CC !important;
  padding: 24px !important;
	vertical-align:middle !important;
}
.table-body > .view-button{
  border: 1px solid #595BA8 !important;
  border-radius: 100px !important;
  padding-inline: 31px !important;
  padding-block: 11px !important;
  color: #595BA8 !important;
  background-color: transparent !important;
  text-decoration: none !important;
}
.table-title{
 width: 350px;
color:#3366FF !important;
}
.table-date{
	width:130px;
}
.table-body > .status{
display: inline-block;
width: 10px;
height: 10px;
  border-radius: 50%;
  background-color: #2AB72C;
  margin-right: 6px;
}
.table-body > .status.Unregistered {
    background-color: red;
}
.status-body {
    height: 90px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}


.table-row:nth-child(even) {
  background-color: #eff0f233 !important;
}

.cart {
  display: flex;
  align-items: center;
  justify-content: end;
  gap: 12px;
  padding: 18px 22px;
  background-color: white;
  border-radius: 8px;
  border: 1px solid #2c2e7833;
  position: relative;
  cursor:pointer;
  text-wrap: nowrap;

}
.cart:hover{
	background-color:#1414141F;
}

.cart > p {
	margin-bottom: 0;
  font-size: 16px;
  font-weight: 500;
  color: #2c2e78;

}

.badge {
  background-color: #ff4842;
  color: #ffffff;
  border: 4px solid #f6f2ff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  border-radius: 100px;
  padding: 8px;
  width: 32px;
  height: 32px;
  position: absolute;
  top: -10px;
  right: -10px;
}

.badge>p {
	margin-bottom: 0px;
}

.card {
  background-color: #fff;
  padding-block: 16px 24px;
  padding-inline: 16px;
  border-radius: 16px;
}

.card-img {
  	height: 200px;
    border-radius: 12px;
	overflow: hidden;

}
.card-img > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.card-img >a> img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top;
}
.card-body {
	padding: 0!important;
  margin-block: 16px 24px;
	
}
.card-title {
  font-size: 20px;
  font-weight: 600;
  line-height: 26px;
  color: #141414;
	display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;  
  overflow: hidden;
}
.card-tags {
  margin-block: 16px;
  display: flex;
  align-items: center;
  gap: 8px;
}
.tag-item {
  background-color: #595ba81a;
  color: #141414cc;
  font-size: 12px;
  padding: 6px 12px;
  border-radius: 100px;
}

.card-description {
  font-size: 14px;
  line-height: 20px;
  color: #141414a6;
	display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;  
  overflow: hidden;
}

.card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap:8px;
  padding:0!important;
  background-color: transparent!important;
  padding-top: 24px!important;
}
.card-footer > p {
	display:flex;
	flex-direction:column;
 	font-size: 24px;
 	font-weight: 500;
 	color: #FF4842;
	display: inline-flex;
	
}
.card-footer > p > del{
	font-size:14px;
	color:#141414FF;
	opacity:0.5;
}
.card-footer > button, .card-footer > a {
  width: 249px;
  padding-block: 16px;
  border: 1px solid #595BA8;
  border-radius: 100px;
  color: #595BA8;
  background-color: transparent;
  font-weight: 600;
  text-align:center;
}
.card-footer > .added_to_cart{
	width: 150px;
	text-transform:capitalize;
	font-size: 14px;
	font-weight:500;
}

/* ------------------Resources Hub----------------- */
.card-container {
  margin-top: 32px;
  gap: 24px;
}

/* -----------------utils----------------- */
.text-primary {
  color: var(--primary);
}

.text-faded {
  color: #141414bf ;
}

.text-2xl {
  font-size: 48px;
}

.text-xl {
  font-size: 44px;
}

.text-lg {
  font-size: 20px;
}

.text-base {
  font-size: 16px;
}

.text-sm {
  font-size: 14px;
}

.text-xs {
  font-size: 12px;
}

.font-thin {
  font-weight: 300;
}

.font-normal {
  font-weight: 400;
}

.font-medium {
  font-weight: 500;
}

.font-semibold {
  font-weight: 600 !important;
}

.font-bold {
  font-weight: 700;
}

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

.uppercase {
  text-transform: uppercase;
}

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

.relative {
  position: relative;
}

.text-black-secondary {
  color: #141414a6;
}

.text-primary {
  color: var(--primary);
}
.text-secondary {
  color: var(--secondary);
}
.text-primary-dark {
  color: var(--primary-dark);
}
.text-secondary-dark {
  color: var(--secondary-dark);
}
.text-secondary-light {
  color: var(--secondary-light);
}
.text-light-black {
  color: var(--light-black);
}
.text-black {
  color: var(--black);
}
.text-black-primary {
  color: var(--black-primary);
}
.bg-secondary {
  background-color: var(--secondary);
}
.bg-gray {
  background-color: var(--gray);
}
.bg-secondary-light {
  background-color: var(--secondary-light);
}
.grid {
  display: grid;
}
.grid-cols-3 {
  grid-template-columns: repeat(3, 1fr);
}

// fix for 
.vczapi-show-by-postid-countdown {
    display: flex;
    width: auto!important;
}

#pagination-container {

    padding-top: 32px !important;
    display: flex;
    gap: 20px;
    align-items: center;
    justify-content: end;


	
}

#pagination-container>.current {
	
	width: 40px!important;
	height:40px!important;
	font-size: 14px!important;
	background-color: #595BA8!important;
	border-radius: 4px;
	display: inline-flex!important;
	color: white;
	align-items: center;
	justify-content: center;
}


#pagination-container>a {
	color: #141414A6!important;
}

// Gallery ko slider image 
.gallery-icon>a>img{
	height: 165px!important;
    object-fit: cover!important;
    object-position: top!important;
}

filter-section> [type=submit], button{
    background-color: var(--secondary);
    border: 1px solid #595ba84d;
    border-radius: 8px;
    padding-inline: 16px;
    padding-block: 20px;
}

.filter-status select{
    outline: none;
	  background-color: var(--secondary);
  border: 1px solid #595ba84d;
  border-radius: 8px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 7px 0!important;
	font-size: 14px;
    color: #141414a6;
}

.event-details-container .event-card.bg-secondary p {
    flex: 1!important;
}

.btn-start-link {
	background-color: #2f2f89!important;
}

.section-container {
    margin-top: 48px;
}
.resources-hub-container .section-container {
    gap: 32px;
    display: flex;
    margin-top: 48px;
}
.resources-hub-container .section-container >  .product-details .product-price, product-regular-price , product-tags{
    margin: 5px 0px 5px 0px;
font-size:14px;
}
.resources-hub-container .section-container >  .product-name{
margin-bottom:24px;
}

ul.sidebar-list li svg {
    max-height: 24px;
}


.vczapi-show-by-postid-countdown {
   
    width: auto;
   
}


#wpadminbar {
    display:none;
	z-index:0;
}
.organizer{
	display:none;
}
.shape-wrapper{
	display:none;
}
.event-wrapper .event-thumb .event-logo {
    overflow: hidden;
    border-radius: 100%;
    height: 76px;
    width: 76px;
    position: absolute;
    left: 15px;
    top: 15px;
}
.event-wrapper .event-thumb .event-logo img {
    border-radius: 0px;
	object-fit:cover;
}
.elementor-kit-16 h2 {
	min-height: 10px!important;
	
}
.event-wrapper.style-one .event-thumb {
    overflow: hidden;
    height: 100px;
    width: 100%;
}
.event-wrapper .event-thumb img {
    width: 100%;
    height: 100%;
    border-radius: 12px;
    -o-object-fit: cover;
    object-fit: cover;
}
.woocommerce div.product{
	    border-radius: 12px;
    padding: 24px;
    background: white;
}
.woocommerce-product-gallery__image{
	overflow: hidden;
    border-radius: 12px;
}
.summary.entry-summary{
	    border-radius: 12px;
    padding: 24px;
    background-color: white;
}
.woocommerce div.product form.cart {
    display: flex;
	justify-content:start;
    padding:0;
	gap:0;
    background-color: transparent;
    border-radius: 0px;
    border: none;
    position: relative;
    cursor: pointer;
    text-wrap: nowrap;
}
.woocommerce-page .product .quantity .qty{
	border-radius:8px;
}
.woocommerce button.button:hover,.woocommerce button.button.alt:hover,.woocommerce-page .product .cart .button:hover{
	background:#2f2f89 !important;
}