@import "modal.css";

/* Define variables for primary colors */
:root {
  --ehxevt-primary-color: #000;
  --ehxevt-primary-dark: #333;
  --ehxevt-gray-color: gray;
  --ehxevt-light-gray: lightgray;
  --ehxevt-background-light: #eceff1;
  --ehxevt-border-color: #ccc;
}
.eep-w-100 {
  width: 100%;
}
.eep-flex {
  display: flex;
}
.eep-items-center {
  align-items: center;
}
.eep-event-container {
  max-width: 1280px;
  margin: 0 auto;
}

#eep-heading {
  text-transform: uppercase;
  color: var(--ehxevt-primary-color);
  font-weight: normal;
}

.eep-form {
  text-align: center;
  position: relative;
  margin-top: 20px;
}

.eep-form .eep-fieldset {
  background: white;
  border: 0 none;
  border-radius: 0.5rem;
  box-sizing: border-box;
  width: 100%;
  margin: 0;
  padding-bottom: 20px;
  position: relative;
}

.eep-form-card {
  text-align: left;
}

.eep-form .eep-fieldset:not(:first-of-type) {
  display: none;
}

.eep-form .eep-input-field {
  width: 100%;
  height: 40px;
  padding: 8px 15px !important;
  border: 1px solid var(--ehxevt-border-color) !important;
  border-radius: 0px;
  box-sizing: border-box;
  font-family: montserrat;
  color: #2c3e50;
  background-color: transparent !important;
  font-size: 16px;
  letter-spacing: 1px;
}

.eep-form .eep-input-field:focus {
  -moz-box-shadow: none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important;
  border: 1px solid var(--ehxevt-primary-color);
  outline-width: 0;
}

.eep-step-buttons {
  text-align: left;
}
.eep-form .eep-action-btn {
  min-width: 100px;
  background: var(--ehxevt-primary-color);
  font-weight: bold;
  color: white;
  border: 0 none;
  border-radius: 0px;
  cursor: pointer;
  padding: 10px 8px;
  margin: 10px 0px;
  float: right;
  position: relative;
}
.eep-form button[type="submit"]:disabled {
  opacity: 0.8;
  cursor: not-allowed;
}
.eep-form button[type="submit"]:disabled {
  opacity: 0.8;
  cursor: not-allowed;
}
.eep-form button[type="submit"].eep-action-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.eep-form .eep-action-btn .ehx-btn-loader {
  display: none;
  border: 2px solid #fff;
  border-top: 2px solid #6a6a6a;
  border-radius: 50%;
  width: 10px;
  height: 10px;
  animation: spin 1s linear infinite;
  margin-left: 10px;
}
.eep-form button[type="submit"]:disabled .ehx-btn-loader {
  opacity: 0.8;
  cursor: progress;
}

@keyframes spin {
  0% {
      transform: rotate(0deg);
  }

  100% {
      transform: rotate(360deg);
  }
}

.loading {
  background-color: #ccc;
  pointer-events: none;
}

.eep-form .eep-action-btn:hover,
.eep-form .eep-action-btn:focus {
  background-color: var(--ehxevt-primary-dark);
}

.eep-form .eep-action-btn-previous {
  width: 100px;
  background: #616161;
  font-weight: bold;
  color: white;
  border: 0 none;
  border-radius: 0px;
  cursor: pointer;
  padding: 10px 5px;
  margin: 10px 5px 10px 0px;
  float: right;
}

.eep-form .eep-action-btn-previous:hover,
.eep-form .eep-action-btn-previous:focus {
  background-color: #000000;
}

.eep-card {
  z-index: 0;
  border: none;
  position: relative;
}

.eep-fs-title {
  font-size: 24px;
  color: var(--ehxevt-primary-color);
  margin-bottom: 15px;
  font-weight: normal;
  text-align: left;
}

.purple-text {
  color: var(--ehxevt-primary-color);
  font-weight: normal;
}

.eep-steps {
  font-size: 24px;
  color: var(--ehxevt-gray-color);
  margin-bottom: 10px;
  font-weight: normal;
  text-align: right;
}

.eep-field-labels {
  color: var(--ehxevt-primary-color);
  text-align: left;
  font-weight: 500;
  margin-bottom: 4px;
  display: block;
}

.eep-progressbar {
  margin-bottom: 30px;
  margin-left: 0;
  overflow: hidden;
  color: lightgrey;
}

.eep-progressbar .eep-progress-active {
  color: var(--ehxevt-primary-color);
}

.eep-progressbar li {
  list-style-type: none;
  font-size: 15px;
  width: 50%;
  float: left;
  position: relative;
  font-weight: 400;
}
.eep-progressbar li:before {
  content: attr(data-step);
  width: 50px;
  height: 50px;
  line-height: 45px;
  display: block;
  font-size: 20px;
  color: #ffffff;
  background: var(--ehxevt-light-gray);
  border-radius: 50%;
  margin: 0 auto 10px auto;
  padding: 2px;
}

.eep-progressbar li:after {
  content: "";
  width: 100%;
  height: 2px;
  background: var(--ehxevt-light-gray);
  position: absolute;
  left: 0;
  top: 24px;
  z-index: -1;
}

.eep-progressbar li.eep-progress-active:before,
.eep-progressbar li.eep-progress-active:after {
  background: var(--ehxevt-primary-color);
}

.eep-plan-lists {
  margin-top: 12px;
}
.eep-plan-lists .eep-plan-list {
  width: 100%;
  border: 1px solid #bdbaba;
  display: flex;
  flex-direction: row;
  align-items: flex-end;
  padding: 8px 17px 13px;
  border-radius: 5px;
  transition: all .3s;
  cursor: pointer;
}
@media (min-width: 768px) {
  .eep-plan-lists .eep-plan-list {
    width: 70%;
  }
  .eep-plan-lists .eep-plan-list.eep-plan-list-custom-input {
    width: 40%;
  }
}
.eep-plan-lists .eep-plan-list.eep-plan-list-active,
.eep-plan-lists .eep-plan-list:hover {
  ehxevt-border-color: var(--ehxevt-border-color);
  background: #f1f1f1;
  box-shadow: 0 0 4px 2px var(--ehxevt-background-light);
  transform: translateX(5px);
}
.eep-plan-lists .eep-plan-list:not(:last-child) {
  margin-bottom: 20px;
}
.eep-plan-lists .eep-plan-list div {
  margin-right: 9px;
  white-space: nowrap;
}
.eep-plan-lists .eep-plan-list span {
  display: inline-block;
  vertical-align: baseline;
  line-height: 1.4;
  font-size: 16px;
}
.eep-plan-lists .eep-plan-list .eep-plan-list-currency {
  margin-right: 3px;
}
.eep-plan-lists .eep-plan-list.eep-plan-list-custom-input .eep-plan-list-text {
  padding: 0;
  font-size: 14px;
  margin-right: 15px;
  line-height: 40px;
  white-space: nowrap;
}
.eep-plan-lists .eep-plan-list .eep-plan-list-price {
  font-size: 41px;
  line-height: 1;
}
.eep-plan-lists .eep-plan-list .eep-plan-list-form-field input[type="text"] {
  background: 0 0;
  border: 0;
  font-size: 24px;
  outline: 0 !important;
  width: 97%;
  font-weight: 400;
  padding: 0 13px 0 2px;
  height: 42px;
  line-height: 42px;
  color: #333;
}
.eep-plan-lists .eep-plan-list .eep-plan-list-form-field input.is-empty {
  font-size: 18px;
}

.eep-donation-amounts {
  margin-top: 40px;
}
.eep-donation-amounts .eep-donation-amount {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 0 0 15px;
  max-width: 660px;
  margin-bottom: 7px;
}
.eep-donation-amounts .eep-donation-amount .form-column {
  width: 57%;
}
.eep-donation-amounts .eep-donation-amount .form-column:nth-child(2n) {
  width: 40%;
}
.eep-donation-amounts .eep-donation-amount .form-column .form-row-title {
  display: inline-block;
  vertical-align: top;
  font-size: 15px;
  line-height: 1.2;
}
.eep-donation-amounts .eep-donation-amount .form-column .form-row-title strong {
  font-size: 15px;
  font-weight: 700;
}

.eep-input-fields {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  margin: 20px 0 12px 0;
  gap: 24px;
}
.eep-input-fields .eep-field-50 {
  width: 100%;
}
.eep-input-fields .eep-field-full {
  width: 100%;
}
@media (min-width: 991px) {
  .eep-input-fields .eep-field-50 {
    width: calc(100% / 2 - 16px);
  }
}
.eep-input-fields .eep-input-checkbox {
  display: flex;
  align-items: center;
  gap: 12px;
}
.eep-input-fields .eep-input-checkbox input[type="checkbox"],
.eep-input-fields .eep-input-checkbox input[type="radio"] {
  width: 24px;
  height: 24px;
}


/* PAYMENT CALLBACK MODAL START */
.eep-callback-modal .eep-modal-content {
  text-align: center;
  padding: 30px 0;
}
.eep-callback-modal .eep-modal-content .eep-modal-icon {
  margin-bottom: 24px;
}
.eep-callback-modal .eep-modal-content .eep-modal-icon .feather-check-circle {
  color: green;
}
.eep-callback-modal .eep-modal-content .eep-modal-icon .feather-x-circle {
  color: red;
}
.eep-callback-modal h1 {
  font-size: 150%;
  margin: 0 0 15px;
}
/* PAYMENT CALLBACK MODAL END */


/* EVENT AREA START */
.eep-ticket-area {
  border: 1px solid #e3e3e3;
  padding: 24px;
  max-width: 300px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-radius: 12px;
  position: sticky;
  top: 60px;
}
/* @media (max-width: 575px) {
  .eep-ticket-area {
    position: fixed;
    left: 0;
    bottom: 0;
    background: #fff;
    shadow: 5px 5px 5px #fff;
    border-radius: 0;
    ehxevt-border-color: none;
    width: 100%;
  }
} */
.eep-ticket-area .eep-ticket-name-area {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.eep-ticket-area .eep-ticket-name-area p {
  font-weight: 600;
  margin-bottom: 0;
}
.eep-ticket-area .eep-ticket-qty-area {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.eep-ticket-area .eep-ticket-qty-area .eep-ticket-qty-btn {
  width: 35px;
  height: 35px;
  border-radius: 50%;
  background-color: #333;
  font-size: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0 !important;
}
.eep-ticket-area .eep-ticket-qty-area .eep-ticket-qty-btn:disabled {
  background-color: #817d7d;
  cursor: default;
}
.eep-ticket-area .eep-ticket-qty-area .eep-ticket-qty-input {
  width: 100px;
  height: 38px;
  border-radius: 16px;
  border: 1px solid #cdcdcd;
  text-align: center;
  font-size: 20px;
  padding: 0 !important;
}
.eep-ticket-area .eep-ticket-btn-area .eep-ticket-btn {
  background-color: #000;
  width: 100%;
  text-transform: uppercase;
  border-radius: 12px;
}
.eep-ticket-area .eep-ticket-btn-area .eep-ticket-btn:disabled {
  background-color: #817d7d;
  cursor: default;
}
/* EVENT AREA END */

/* EVENT MODAL START */
.eep-event-modal .eep-modal-dialog .eep-modal-content .eep-modal-header .eep-modal-close {
  background-color: #fff;
  border-radius: 40px;
  height: 40px;
  padding: 8px;
  -webkit-transition: all .4 scubic-bezier(.4,0,.3,1);
  transition: all .4 scubic-bezier(.4,0,.3,1);
  width: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 12px;
  right: 12px;
  box-shadow: 0 0.125rem 0.25rem rgba(0, 0, 0, 0.075);
  z-index: 99;
}
.eep-event-modal .eep-modal-body {
  padding: 0 !important;
}
.eep-event-modal .eep-modal-body .eep-body-content {
  display: flex;
}
.eep-event-modal .eep-modal-body .eep-body-content .eep-body-right {
  width: 0%;
}
@media (min-width: 991px) {
  .eep-event-modal .eep-modal-body .eep-body-content .eep-body-left {
    width: 60%;
  }
}
@media (min-width: 1200px) {
  .eep-event-modal .eep-modal-body .eep-body-content .eep-body-left {
    width: 70%;
  }
}

.eep-event-modal .eep-modal-body .eep-body-content .eep-body-left .eep-body-header {
  text-align: center;
  border-bottom: 1px solid #dddddd;
  padding: 16px 0;
  position: relative;
}
.eep-event-modal .eep-modal-body .eep-body-content .eep-body-left .eep-body-header .eep-body-header-back {
  position: absolute;
  left: 20px;
  top: 20px;
  cursor: pointer;
}
.eep-event-modal .eep-modal-body .eep-body-content .eep-body-left .eep-body-header .eep-body-header-title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: .25px;
  line-height: 2rem;
  margin-bottom: 0;
}
.eep-event-modal .eep-modal-body .eep-body-content .eep-body-left .eep-body-header .eep-body-header-subtitle {
  font-size: .875rem;
  line-height: 1.25rem;
  margin-bottom: 0;
}
@media (min-width: 991px) {
  .eep-event-modal .eep-modal-body .eep-body-content .eep-body-left .eep-body-header .eep-body-header-title {
    font-size: 1.125rem;
    line-height: 1.5rem;
  }
  .eep-event-modal .eep-modal-body .eep-body-content .eep-body-left .eep-body-header .eep-body-header-subtitle {
    font-size: .75rem;
    line-height: 1rem;
  }
}
.eep-event-modal .eep-modal-body .eep-body-content .eep-body-left .eep-body-left-content {
  padding: 24px 32px;
}
@media (min-width: 991px) {
  .eep-event-modal .eep-modal-body .eep-body-content .eep-body-left .eep-body-left-content {
    padding: 24px 80px;
  }
}
.eep-event-modal .eep-modal-body .eep-body-content .eep-body-left .eep-body-left-content .eep-body-content-title {
  font-size: 1.5rem;
  font-weight: 700;
  letter-spacing: .25px;
  line-height: 2rem;
  margin-bottom: 20px;
}
@media (min-width: 991px) {
  .eep-event-modal .eep-modal-body .eep-body-content .eep-body-left .eep-body-left-content .eep-body-content-title {
    font-size: 1.5rem;
    line-height: 2rem;
  }
}
.eep-event-modal .eep-modal-body .eep-body-content .eep-body-right {
  display: none;
  border-top-right-radius: 1rem;
  border-bottom-right-radius: 1rem;
}
@media (min-width: 991px) {
  .eep-event-modal .eep-modal-body .eep-body-content .eep-body-right {
    width: 40%;
    display: block;
    background-color: #f7f7f7;
  }
}
@media (min-width: 1200px) {
  .eep-event-modal .eep-modal-body .eep-body-content .eep-body-right {
    width: 30%;
  }
}
/* .eep-event-modal .eep-modal-body .eep-body-content .eep-body-right .eep-body-right-content .eep-body-right-thumbnail {
  max-height: 280px;
} */
.eep-event-modal .eep-modal-body .eep-body-content .eep-body-right .eep-body-right-content .eep-body-right-thumbnail img {
  border-top-right-radius: 1rem;
  max-width: 100%;
  height: 300px;
  object-fit: cover;
}
.eep-event-modal .eep-modal-body .eep-body-content .eep-body-right .eep-body-right-content .eep-body-content-summary {
  padding: 24px;
}
.eep-event-modal .eep-modal-body .eep-body-content .eep-body-right .eep-body-right-content .eep-body-content-summary .eep-content-summary-title {
  font-size: 1rem;
  font-weight: 600;
  line-height: 1.5rem;
  color: #1e0a3c;
  margin-bottom: 1.5em;
}
.eep-event-modal .eep-modal-body .eep-body-content .eep-body-right .eep-body-right-content .eep-body-content-summary .eep-content-summary-subtitle {
  font-size: 1rem;
  font-weight: 400;
  line-height: 1.5rem;
  margin-bottom: 1.5em;
}
.eep-event-modal .eep-modal-body .eep-body-content .eep-body-right .eep-body-right-content .eep-body-content-summary .eep-content-summary-items .eep-content-summary-item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 0;
  border-bottom: 1px solid #dddddd;
}
.eep-event-modal .eep-modal-body .eep-body-content .eep-body-right .eep-body-right-content .eep-body-content-summary .eep-content-summary-total {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 16px;
  font-size: 1rem;
  font-weight: 600;
}
.eep-event-modal .eep-modal-body .eep-body-content .eep-body-right .eep-body-right-content .eep-body-content-summary .eep-content-summary-total h4 {
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: .25px;
  line-height: 1.75rem;
  margin-bottom: 20px;
}
@media (min-width: 991px) {
  .eep-event-modal .eep-modal-body .eep-body-content .eep-body-right .eep-body-right-content .eep-body-content-summary .eep-content-summary-total h4 {
      font-size: 1.125rem;
      line-height: 1.5rem;
  }
}
/* EVENT MODAL END */


/* EVENT START */
.eep-event-list.edp-layout-grid {
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(1, 1fr);
}
.edp-layout-grid.edp-columns-1 {
  grid-template-columns: repeat(1, 1fr);
}
.edp-layout-grid.edp-columns-2 {
  grid-template-columns: repeat(2, 1fr);
}
@media (min-width: 576px) {
  .edp-layout-grid.edp-columns-3 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (min-width: 1200px) {
  .edp-layout-grid.edp-columns-3 {
    grid-template-columns: repeat(3, 1fr);
  }
}
.edp-layout-grid.edp-columns-4 {
  grid-template-columns: repeat(4, 1fr);
}
.edp-layout-grid.edp-columns-5 {
  grid-template-columns: repeat(5, 1fr);
}
.eep-event-list .eep-event-item {
  border: 1px solid #e9e9e9;
  border-radius: 16px;
  transition: all 0.5s ease;
  height: 100%;
}
.eep-event-list .eep-event-item:hover {
  box-shadow: 0px 10px 40px 0px rgba(128, 139, 165, 0.2);
}
.eep-event-list .eep-event-item .eep-event-card {
  color: inherit;
  text-decoration: none;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.eep-event-list .eep-event-item .eep-event-thumbnail {
  
}
.eep-event-list .eep-event-item .eep-event-thumbnail .eep-event-thumbnail-img {
  width: 100%;
  border-top-left-radius: 16px;
  border-top-right-radius: 16px;
}
.eep-event-list .eep-event-item .eep-event-content {
  padding: 30px;
  position: relative;
  flex-grow: 1;
  display: flex;
  flex-direction: column;
}
.eep-event-list .eep-event-item .eep-event-content .edp-content-title {
  line-height: 1.44;
  font-size: 24px;
  font-weight: 500;
  transition: all 0.2s cubic-bezier(0.455, 0.03, 0.515, 0.955);
}
.eep-event-list .eep-event-item .eep-event-content .edp-content-text {
  font-size: 16px;
  font-weight: 400;
  color: #696F8C;
  line-height: 1.5;
}
.eep-event-list .eep-event-item .eep-event-content .eep-event-btns {
  margin-top: auto;
}
.eep-event-list .eep-event-item .eep-event-content .eep-event-btn {
  border-radius: 8px;
  background-color: transparent;
  border: 1px solid #333;
  color: #000;
  padding: 6px 12px;
  cursor: pointer;
  transition: all 0.5s ease;
}
.eep-event-list .eep-event-item .eep-event-content .eep-event-btn:hover {
  background-color: #333;
  color: #fff;
}
/* EVENT LIST END */

.eep-event-section {
  padding: 80px 0;
}
.eep-event-section .eep-event-content {
  padding: 30px;
}
.eep-event-section .eep-event-content .eep-event-content-headings {
  margin-bottom: 48px;
  text-align: center;
}
.eep-event-section .eep-event-content .eep-event-content-headings .eep-content-date {
  margin-bottom: 0;
  font-size: 18px;
  font-weight: 300;
  line-height: 1.5em;
}
.eep-event-section .eep-event-content .eep-event-cover img {
  width: 100%;
  /* object-fit: cover; */
  border-radius: 24px;
  height: 70vw;
}
.eep-event-section .eep-event-content .eep-event-title {
  font-weight: 500;
  font-size: 48px;
  line-height: 1.2;
  letter-spacing: -0.027em;
  text-transform: none;
  font-style: normal;
  color: #0A0117;
  margin-top: 24px;
  margin-bottom: 0;
}
.eep-event-section .eep-event-content .eep-event-divider {
  display: flex;
  flex-direction: column;
  align-self: auto;
  flex-basis: auto;
  flex-grow: 1;
  flex-shrink: 1;
  gap: 60px;
  height: 100%;
  margin-top: 48px;
}
.eep-event-section .eep-event-content .eep-event-divider .eep-event-divider-content {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 28px;
  border-radius: 16px;
  border: 1px solid #e3e3e3;
  gap: 24px;
}
.eep-event-section .eep-event-content .eep-event-divider .eep-event-divider-content .eep-event-divider-content-title {
  font-size: 22px;
  font-weight: 500;
  line-height: 26px;
  color: rgba(0,0,0);
  margin-bottom: 16px;
}
.eep-event-section .eep-event-content .eep-event-divider .eep-event-divider-content .eep-event-divider-flex {
  display: flex;
  align-items: center;
  gap: 12px;
}
.eep-event-section .eep-event-content .eep-event-divider .eep-event-divider-content .eep-event-divider-content-desc {
  font-size: 18px;
  line-height: 28px;
  color: rgba(0,0,0,0.7);
  margin-bottom: 0;
}
.eep-event-section .eep-event-content .eep-event-divider .eep-event-divider-content .eep-event-divider-content-desc.eep-event-divider-content-desc-sm {
  font-size: 14px;
  line-height: 16px;
}

@media (min-width: 768px) {
  .eep-event-section .eep-event-content .eep-event-contents .eep-event-title {
    font-size: 42px;
    line-height: 1;
  }
  .eep-event-section .eep-event-content .eep-event-divider .eep-event-divider-content {
    padding: 48px;
  }
  .eep-event-section .eep-event-content .eep-event-divider .eep-event-divider-content .eep-event-divider-flex {
    gap: 16px;
  }
  .eep-event-section .eep-event-content .eep-event-divider .eep-event-divider-content .eep-event-divider-content-desc {
    font-size: 20px;
    line-height: 30px;
  }
  .eep-event-section .eep-event-content .eep-event-divider .eep-event-divider-content .eep-event-divider-content-desc.eep-event-divider-content-desc-sm {
    font-size: 18px;
    line-height: 27px;
  }
  .eep-event-section .eep-event-content .eep-event-cover img {
    height: 570px;
  }
}
@media (min-width: 991px) {
  .eep-event-section .eep-event-content .eep-event-divider {
    flex-direction: row;
  }
  .eep-event-section .eep-event-content {
    flex-direction: row;
  }
  /* .eep-event-section .eep-event-content .eep-event-contents {
    width: 70%;
  } */
  .eep-event-section .eep-event-content .eep-event-contents .eep-event-title {
    font-size: 48px;
  }
}
@media (min-width: 1200px) {
  .eep-event-section .eep-event-content .eep-event-contents .eep-event-title {
    font-size: 58px;
    line-height: 1.2;
  }
}