:root {
  /* Colors */
  --primary: #294f53;
  --primary-1: #e6f2fb;
  --primary-2: #e6f2fb;
  --primary-6: #294f73;
  --secondary: #cf8365;
  --light: #f5f5f5;
  --white: #ffffff;
  --black: #000000;
  --gray: #dddddd;
  --info: #dddddd;
  --gray-2: #f0f0f0;
  --text-color: #333333;
  --text-color-light: #777777;
  --border-color-dark: #dddddd;

--text-color-on-primary:#fff; 	
--btn-font-weight:600;
--btn-border-width:1px;
--btn-border-style:solid;
--btn-border-radius:0px;
--btn-text-transform:none;
--btn-letter-spacing:0px;
	
  /* Typography */
  --font-weight-normal: 400;
  --font-weight-semi-bold: 600;
  --font-weight-bold: 700;
  --h1-font-size: 40px;

  /* Layout / radius / shadows */
  --border-radius: 8px;
  --form-border-radius: 4px;
  --shadow-6: 0 10px 30px rgba(0, 0, 0, 0.06);

  /* Transitions */
  --transition-200: all 0.2s ease-in-out;

  /* Form / spacing */
  --form-input-height: 44px;
  --btn-sm-padding-x: 16px;
  --li-margin-bottom: 8px;
}


/*!
 |-----------------------------------------------------------------------------------------
 |
 |
 | eShop Events - Style 1 - Start
 |
 |
 |-----------------------------------------------------------------------------------------
*/
.eshop-events-style-1 .events-item {
  margin-bottom: 30px;
}
.eshop-events-style-1 .events-item-wrap {
  display: flex;
  height: 100%;
  border-radius: var(--border-radius);
  background-color: var(--light);
}
.eshop-events-style-1 .events-item-left,
.eshop-events-style-1 .events-item-right {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 20px 25px;
}
.eshop-events-style-1 .events-item-left {
  color: var(--white);
  border-radius: var(--border-radius) 0 0 var(--border-radius);
  background-color: var(--primary);
}
.eshop-events-style-1 .events-item-right {
  gap: 5px;
}
.eshop-events-style-1 .events-item-right > * {
  margin-bottom: 0;
}
.eshop-events-style-1 .events-item-release {
  line-height: 1.2;
  text-align: center;
  font-weight: var(--font-weight-bold);
  text-transform: uppercase;
}
.eshop-events-style-1 .events-item-release span {
  display: block;
}
.eshop-events-style-1 .events-item-release span:first-of-type {
  font-size: 18px;
}
.eshop-events-style-1 .events-item-release span:last-of-type {
  font-size: 30px;
}
.eshop-events-style-1 .events-item-title a {
  text-decoration: underline;
  -webkit-text-decoration-color: transparent;
          text-decoration-color: transparent;
}
.eshop-events-style-1 .events-item-title a:hover {
  -webkit-text-decoration-color: var(--primary);
          text-decoration-color: var(--primary);
}
.eshop-events-style-1 .events-item-datetime {
  font-size: 14px;
}

/*!
 |-----------------------------------------------------------------------------------------
 |
 |
 | eShop Events - Style 1 - End
 |
 |
 |-----------------------------------------------------------------------------------------
*/
/*!
 |-----------------------------------------------------------------------------------------
 |
 |
 | eShop Events - Calendar - Style 1 - Start
 |
 |
 |-----------------------------------------------------------------------------------------
*/
.eshop-events-calendar-style-1 .mwCalendar {
  margin-bottom: 30px;
  border-radius: var(--border-radius);
  background-color: var(--white);
  box-shadow: var(--shadow-6);
}
.eshop-events-calendar-style-1 .mwCalendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 15px;
  border-bottom: 1px solid var(--border-color-dark);
}
.eshop-events-calendar-style-1 .mwCalendar-header button {
  font-size: 18px;
}
.eshop-events-calendar-style-1 .mwCalendar-header button:hover {
  color: var(--primary);
}
.eshop-events-calendar-style-1 .mwCalendar-currentMonth {
  margin-bottom: 0;
  font-size: 18px;
  color: var(--text-color);
  font-weight: var(--font-weight-bold);
}
.eshop-events-calendar-style-1 .mwCalendar-weeksList {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
  list-style: none !important;
  padding: 0 10px;
  margin-bottom: 0;
  line-height: 1;
}

.eshop-events-calendar-style-1 ul li:before {display:none;}


.eshop-events-calendar-style-1 .mwCalendar-weeksList li {
  padding: 8px 0;
  text-align: center;
  margin: 0;
}
.eshop-events-calendar-style-1 .mwCalendar-weeksList abbr {
  cursor: text;
  font-size: 16px;
  text-decoration: none;
}
.eshop-events-calendar-style-1 .mwCalendar-daysList {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 5px;
  padding: 0 10px 10px;
}
.eshop-events-calendar-style-1 .mwCalendar-day {
  width: auto;
  height: auto;
  padding: 8px 0;
  text-align: center;
  border: 0;
  border-radius: var(--border-radius);
}
.eshop-events-calendar-style-1 .mwCalendar-day time {
  display: block;
  font-size: 16px;
  line-height: 1;
}
.eshop-events-calendar-style-1 .mwCalendar-day.prevMonth time, .eshop-events-calendar-style-1 .mwCalendar-day.nextMonth time {
  display: none;
}
.eshop-events-calendar-style-1 .mwCalendar-day.weekend {
  color: inherit;
}
.eshop-events-calendar-style-1 .mwCalendar-day.today {
  background-color: var(--light);
}
.eshop-events-calendar-style-1 .mwCalendar-day.today time {
  font-weight: var(--font-weight-bold);
}
.eshop-events-calendar-style-1 .mwCalendar-day.event {
  background-color: var(--primary);
}
.eshop-events-calendar-style-1 .mwCalendar-day.event time {
  color: var(--white);
  font-weight: var(--font-weight-bold);
}

.eshop-events-calendar-style-1 .mwCalendar-search {
  display: flex;
  margin-bottom: 30px;
}
.eshop-events-calendar-style-1 .mwCalendar-search .mwInput {
  z-index: 1;
  flex: 1 1 auto;
  border-right-width: 0;
  border-radius: var(--form-border-radius) 0 0 var(--form-border-radius);
}
.eshop-events-calendar-style-1 .mwCalendar-search .btn {
  flex: 0 0 auto;
  margin-bottom: 0;
}
.eshop-events-calendar-style-1 .mwCalendar-search button {
  height: var(--form-input-height);
  padding: 0 var(--btn-sm-padding-x);
  border-radius: 0 var(--form-border-radius) var(--form-border-radius) 0;
}
.eshop-events-calendar-style-1 .mwCalendar-list ul {
  margin-bottom: 30px;
}
.eshop-events-calendar-style-1 .mwCalendar-list li {
  margin-bottom: var(--li-margin-bottom);
}
.eshop-events-calendar-style-1 .mwCalendar-list-title {
  margin-bottom: 15px;
  font-size: 22px;
  color: var(--text-color);
  font-weight: var(--font-weight-bold);
}

.eshop-events-calendar-style-1 .events-item {
  margin-bottom: 30px;
}
.eshop-events-calendar-style-1 .events-item:hover .events-item-img img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.eshop-events-calendar-style-1 .events-item-wrap {
  overflow: hidden;
  height: 100%;
  border-radius: var(--border-radius);
  background-color: var(--white);
}
.eshop-events-calendar-style-1 .events-item-header {
  position: relative;
}
.eshop-events-calendar-style-1 .events-item-img {
  overflow: hidden;
  position: relative;
  aspect-ratio: 5/3;
}
.eshop-events-calendar-style-1 .events-item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: var(--transition-200);
}
.eshop-events-calendar-style-1 .events-item-body {
  padding: 20px 20px 5px;
}
.eshop-events-calendar-style-1 .events-item-release {
  position: absolute;
  top: 0;
  left: 0;
  padding: 15px 20px;
  color: var(--white);
  text-align: center;
  border-radius: 0 0 var(--border-radius) 0;
  background-color: var(--primary);
}
.eshop-events-calendar-style-1 .events-item-release span {
  display: block;
  line-height: 1;
}
.eshop-events-calendar-style-1 .events-item-release span:first-of-type {
  font-size: 18px;
}
.eshop-events-calendar-style-1 .events-item-release span:last-of-type {
  font-size: 30px;
}
.eshop-events-calendar-style-1 .events-item-title {
  margin-bottom: 15px;
}
.eshop-events-calendar-style-1 .events-item-title a {
  text-decoration: none;
}
.eshop-events-calendar-style-1 .events-item-des {
  font-size: 16px;
}
.eshop-events-calendar-style-1 .events-item-btn {
  margin-bottom: 15px;
}

.eshop-events-calendar-style-1.show-thumb-0 .events-item-header {
  padding: 0 20px;
}
.eshop-events-calendar-style-1.show-thumb-0 .events-item-img {
  display: none;
}
.eshop-events-calendar-style-1.show-thumb-0 .events-item-release {
  display: inline-block;
  position: relative;
  top: auto;
  left: auto;
  padding: 10px 20px;
  border-radius: 0 0 var(--border-radius) var(--border-radius);
}

.eshop-events-calendar-style-1 .events-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}

/*!
 |-----------------------------------------------------------------------------------------
 |
 |
 | eShop Events - Calendar - Style 1 - End
 |
 |
 |-----------------------------------------------------------------------------------------
*/
/*!
 |-----------------------------------------------------------------------------------------
 |
 |
 | eShop Events - Calendar - Style 2 - Start
 |
 |
 |-----------------------------------------------------------------------------------------
*/
.eshop-events-calendar-style-2 .eshop-events-top {
  margin-bottom: 60px;
}
@media (max-width: 575px) {
  .eshop-events-calendar-style-2 .eshop-events-top {
    margin-bottom: 30px;
  }
}

.eshop-events-calendar-style-2 .mwCalendar {
  margin-bottom: 30px;
}
.eshop-events-calendar-style-2 .mwCalendar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 30px;
  border-radius: var(--border-radius);
  background-color: var(--light);
}
.eshop-events-calendar-style-2 .mwCalendar-header button {
  font-size: 18px;
}
.eshop-events-calendar-style-2 .mwCalendar-header button:hover {
  color: var(--primary);
}
.eshop-events-calendar-style-2 .mwCalendar-currentMonth {
  margin-bottom: 0;
  font-size: 30px;
  color: var(--text-color);
  font-weight: var(--font-weight-bold);
}
@media (max-width: 991px) {
  .eshop-events-calendar-style-2 .mwCalendar-currentMonth {
    font-size: 20px;
  }
}
.eshop-events-calendar-style-2 .mwCalendar-weeksList {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
  list-style: none;
  padding: 30px 0;
  margin-bottom: 0;
  line-height: 1;
}
.eshop-events-calendar-style-2 ul li:before {display:none;}


.eshop-events-calendar-style-2 .mwCalendar-weeksList li {
  padding: 0;
  margin: 0;
}
.eshop-events-calendar-style-2 .mwCalendar-weeksList abbr {
  cursor: auto;
  font-size: 18px;
  text-decoration: none;
  font-weight: var(--font-weight-semi-bold);
}
@media (max-width: 991px) {
  .eshop-events-calendar-style-2 .mwCalendar-weeksList abbr:first-of-type {
    display: none;
  }
}
.eshop-events-calendar-style-2 .mwCalendar-weeksList abbr:last-of-type {
  display: none;
  text-align: center;
}
@media (max-width: 991px) {
  .eshop-events-calendar-style-2 .mwCalendar-weeksList abbr:last-of-type {
    display: block;
  }
}
.eshop-events-calendar-style-2 .mwCalendar-daysList {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 10px;
}
.eshop-events-calendar-style-2 .mwCalendar-day {
  width: auto;
  height: auto;
  min-height: 160px;
  padding: 15px 10px;
  border: 0;
  border-radius: var(--border-radius);
  background-color: var(--light);
  transition: var(--transition-200);
}
@media (max-width: 991px) {
  .eshop-events-calendar-style-2 .mwCalendar-day {
    min-height: 0;
    padding: 8px 0;
    text-align: center;
  }
}
.eshop-events-calendar-style-2 .mwCalendar-day:hover {
  background-color: var(--primary-1);
}
.eshop-events-calendar-style-2 .mwCalendar-date {
  margin-bottom: 10px;
  font-size: 32px;
  line-height: 1;
  font-weight: var(--font-weight-normal);
}
@media (max-width: 991px) {
  .eshop-events-calendar-style-2 .mwCalendar-date {
    font-size: 16px;
    margin-bottom: 0;
  }
}
@media (max-width: 991px) {
  .eshop-events-calendar-style-2 .mwCalendar-itemsList {
    display: none;
  }
}
.eshop-events-calendar-style-2 .mwCalendar-item {
  position: relative;
  margin-bottom: 8px;
  padding-left: 10px;
}
@media (max-width: 1199px) {
  .eshop-events-calendar-style-2 .mwCalendar-item {
    padding-left: 0;
  }
}
.eshop-events-calendar-style-2 .mwCalendar-item:before {
  content: "";
  position: absolute;
  top: 5px;
  left: 0;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: var(--secondary);
}
@media (max-width: 1199px) {
  .eshop-events-calendar-style-2 .mwCalendar-item:before {
    display: none;
  }
}
.eshop-events-calendar-style-2 .mwCalendar-item-title {
  margin-bottom: 2px;
  font-size: 13px;
  line-height: 1.1;
  font-weight: var(--font-weight-normal);
}
.eshop-events-calendar-style-2 .mwCalendar-item-title a {
  color: var(--black);
  text-decoration: none;
}
.eshop-events-calendar-style-2 .mwCalendar-item-title a:hover {
  color: var(--black);
  text-decoration: underline;
}
.eshop-events-calendar-style-2 .mwCalendar-item-dateTime {
  margin-bottom: 0;
  font-size: 11px;
}
.eshop-events-calendar-style-2 .mwCalendar-day.prevMonth, .eshop-events-calendar-style-2 .mwCalendar-day.nextMonth {
  background-color: transparent;
}
.eshop-events-calendar-style-2 .mwCalendar-day.prevMonth > *, .eshop-events-calendar-style-2 .mwCalendar-day.nextMonth > * {
  display: none;
}
.eshop-events-calendar-style-2 .mwCalendar-day.weekend {
  color: inherit;
}
.eshop-events-calendar-style-2 .mwCalendar-day.today .mwCalendar-date {
  color: var(--primary);
  font-weight: var(--font-weight-bold);
}
.eshop-events-calendar-style-2 .mwCalendar-day.event {
  background-color: var(--primary-1);
}
.eshop-events-calendar-style-2 .mwCalendar-day.event:hover {
  background-color: var(--primary-2);
}

.eshop-events-calendar-style-2 .events-item {
  margin-bottom: 30px;
}
.eshop-events-calendar-style-2 .events-item:hover .events-item-img img {
  -webkit-transform: scale(1.05);
          transform: scale(1.05);
}
.eshop-events-calendar-style-2 .events-item-wrap {
  overflow: hidden;
  height: 100%;
  border-radius: var(--border-radius);
  background-color: var(--white);
}
.eshop-events-calendar-style-2 .events-item-header {
  position: relative;
}
.eshop-events-calendar-style-2 .events-item-img {
  overflow: hidden;
  position: relative;
  aspect-ratio: 5/3;
}
.eshop-events-calendar-style-2 .events-item-img img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: var(--transition-200);
}
.eshop-events-calendar-style-2 .events-item-body {
  padding: 20px 20px 5px;
}
.eshop-events-calendar-style-2 .events-item-release {
  position: absolute;
  top: 0;
  left: 0;
  padding: 15px 20px;
  color: var(--white);
  text-align: center;
  border-radius: 0 0 var(--border-radius) 0;
  background-color: var(--primary);
}
.eshop-events-calendar-style-2 .events-item-release span {
  display: block;
  line-height: 1;
}
.eshop-events-calendar-style-2 .events-item-release span:first-of-type {
  font-size: 18px;
}
.eshop-events-calendar-style-2 .events-item-release span:last-of-type {
  font-size: 30px;
}
.eshop-events-calendar-style-2 .events-item-title {
  margin-bottom: 15px;
}
.eshop-events-calendar-style-2 .events-item-title a {
  text-decoration: none;
}
.eshop-events-calendar-style-2 .events-item-des {
  font-size: 16px;
}
.eshop-events-calendar-style-2 .events-item-btn {
  margin-bottom: 15px;
}

.eshop-events-calendar-style-2.show-thumb-0 .events-item-header {
  padding: 0 20px;
}
.eshop-events-calendar-style-2.show-thumb-0 .events-item-img {
  display: none;
}
.eshop-events-calendar-style-2.show-thumb-0 .events-item-release {
  display: inline-block;
  position: relative;
  top: auto;
  left: auto;
  padding: 10px 20px;
  border-radius: 0 0 var(--border-radius) var(--border-radius);
}

.eshop-events-calendar-style-2 .events-nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  -webkit-column-gap: 30px;
     -moz-column-gap: 30px;
          column-gap: 30px;
}

/*!
 |-----------------------------------------------------------------------------------------
 |
 |
 | eShop Events - Calendar - Style 2 - End
 |
 |
 |-----------------------------------------------------------------------------------------
*/
/*!
 |-----------------------------------------------------------------------------------------
 |
 |
 | eShop Events Details - Style 1 - Start
 |
 |
 |-----------------------------------------------------------------------------------------
*/
.eshop-events-details-style-1 .tabs-panel {
  --h2-font-size: 30px;
  --h3-font-size: 24px;
  --h4-font-size: 20px;
  --h5-font-size: 18px;
  --h6-font-size: 18px;
  --h1-font-size-mobile: calc(var(--h1-font-size) * 0.85);
  --h2-font-size-mobile: calc(var(--h2-font-size) * 0.85);
  --h3-font-size-mobile: calc(var(--h3-font-size) * 0.85);
  --h4-font-size-mobile: calc(var(--h4-font-size) * 0.85);
  --h5-font-size-mobile: 18px;
  --h6-font-size-mobile: 18px;
}

.eshop-events-details-style-1 {
  font-size: 16px;
  margin-bottom: 30px;
}
.eshop-events-details-style-1 .events-details-header .content-card-wrap {
  padding-top: 0;
}
.eshop-events-details-style-1 .events-details-subheader {
  padding: 0 30px 1px;
  margin-bottom: 20px;
}
@media (max-width: 575px) {
  .eshop-events-details-style-1 .events-details-subheader {
    padding: 0 20px 1px;
  }
}
.eshop-events-details-style-1 .events-details-release {
  display: inline-block;
  padding: 15px 30px;
  margin-bottom: 30px;
  line-height: 1.2;
  text-align: center;
  color: var(--white);
  text-transform: uppercase;
  font-weight: var(--font-weight-bold);
  border-radius: 0 0 var(--border-radius) var(--border-radius);
  background-color: var(--primary);
}
.eshop-events-details-style-1 .events-details-release span {
  display: block;
}
.eshop-events-details-style-1 .events-details-release span:first-of-type {
  font-size: 18px;
}
.eshop-events-details-style-1 .events-details-release span:last-of-type {
  font-size: 30px;
}

.eshop-events-details-style-1 .events-details-banner, .eshop-events-details-style-1 .events-details-banner-mobile {
  overflow: hidden;
  position: relative;
  margin-bottom: 30px;
  border-radius: var(--border-radius);
  background-color: var(--gray-2);
}
.eshop-events-details-style-1 .events-details-banner img, .eshop-events-details-style-1 .events-details-banner-mobile img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: var(--transition-200);
}
.eshop-events-details-style-1 .events-details-banner {
  padding-bottom: 56%;
}
@media (max-width: 991px) {
  .eshop-events-details-style-1 .events-details-banner {
    display: none;
  }
}
.eshop-events-details-style-1 .events-details-banner-mobile {
  display: none;
  margin-bottom: 10px;
  padding-bottom: 60%;
}
@media (max-width: 991px) {
  .eshop-events-details-style-1 .events-details-banner-mobile {
    display: block;
  }
}
.eshop-events-details-style-1 .gallery-item-img {
  border-radius: var(--border-radius);
}

.eshop-events-details-style-1 .events-details-rsvp {
  padding-top: 30px;
  margin-bottom: 30px;
  border-top: 1px solid var(--gray);
}
.eshop-events-details-style-1 .events-details-price {
  margin-bottom: 15px;
}
.eshop-events-details-style-1 .events-details-cart-item {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
}
.eshop-events-details-style-1 .events-details-qty {
  display: flex;
  align-items: center;
  -webkit-column-gap: 5px;
     -moz-column-gap: 5px;
          column-gap: 5px;
  margin-bottom: 0;
}
.eshop-events-details-style-1 .events-details-qty .mwInput {
  max-width: 80px;
}
.eshop-events-details-style-1 .events-details-qty .mwInput input {
  text-align: center;
}
.eshop-events-details-style-1 .events-details-qty-inc, .eshop-events-details-style-1 .events-details-qty-dec {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  color: var(--white);
  border-radius: 50%;
  background-color: var(--primary);
}
.eshop-events-details-style-1 .events-details-qty-inc:hover, .eshop-events-details-style-1 .events-details-qty-dec:hover {
  background-color: var(--primary-6);
}
.eshop-events-details-style-1 .events-details-btn-rsvp {
  margin-bottom: 0;
}

.eshop-events-details-style-1 .events-details-metas {
  margin-bottom: 30px;
}
.eshop-events-details-style-1 .events-details-meta {
  display: flex;
  flex-wrap: nowrap;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 15px;
}
.eshop-events-details-style-1 .events-details-meta p, .eshop-events-details-style-1 .events-details-meta ul, .eshop-events-details-style-1 .events-details-meta .btn {
  margin-bottom: 0;
}
.eshop-events-details-style-1 .events-details-meta ul {
  display: flex;
  flex-wrap: wrap;
}
.eshop-events-details-style-1 .events-details-meta > i {
  flex: 0 0 auto;
}
.eshop-events-details-style-1 .events-details-meta-title {
  font-size: 18px;
  margin-bottom: 0;
}

.eshop-events-details-style-1 .tabs-panel h3, .eshop-events-details-style-1 .tabs-panel h4, .eshop-events-details-style-1 .tabs-panel h5, .eshop-events-details-style-1 .tabs-panel h6, .eshop-events-details-style-1 .tabs-panel .h3, .eshop-events-details-style-1 .tabs-panel .h4, .eshop-events-details-style-1 .tabs-panel .h5, .eshop-events-details-style-1 .tabs-panel .h6 {
  margin-bottom: 15px;
}

.eshop-events-details-style-1 .events-details-share {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  padding: 10px 0;
  border-top: 1px solid var(--gray);
}
.eshop-events-details-style-1 .events-details-share-title {
  font-size: 14px;
  color: var(--text-color-light);
  font-weight: var(--font-weight-bold);
  margin-bottom: 0;
}

/*!
 |-----------------------------------------------------------------------------------------
 |
 |
 | eShop Events Details - Style 1 - End
 |
 |
 |-----------------------------------------------------------------------------------------
*/
/*!
 |-----------------------------------------------------------------------------------------
 |
 |
 | eShop Events Submit - Style 1 - Start
 |
 |
 |-----------------------------------------------------------------------------------------
*/
.eshop-events-submit-style-1 {
  font-size: 16px;
  margin-bottom: 30px;
}
.eshop-events-submit-style-1 .events-submit-header .content-card-wrap {
  padding-top: 0;
}
.eshop-events-submit-style-1 .events-submit-release {
  display: inline-block;
  padding: 15px 30px;
  margin-bottom: 30px;
  line-height: 1.2;
  text-align: center;
  color: var(--white);
  text-transform: uppercase;
  font-weight: var(--font-weight-bold);
  border-radius: 0 0 var(--border-radius) var(--border-radius);
  background-color: var(--primary);
}
.eshop-events-submit-style-1 .events-submit-release span {
  display: block;
}
.eshop-events-submit-style-1 .events-submit-release span:first-of-type {
  font-size: 18px;
}
.eshop-events-submit-style-1 .events-submit-release span:last-of-type {
  font-size: 30px;
}
@media (max-width: 991px) {
  .eshop-events-submit-style-1 .section-hq {
    display: none;
  }
}
.eshop-events-submit-style-1 .mwPayment-billing {
  overflow: visible !important;
}

.eshop-events-submit-style-1 .events-submit-banner, .eshop-events-submit-style-1 .events-submit-banner-mobile {
  overflow: hidden;
  position: relative;
  margin-bottom: 30px;
  border-radius: var(--border-radius);
  background-color: var(--gray-2);
}
.eshop-events-submit-style-1 .events-submit-banner img, .eshop-events-submit-style-1 .events-submit-banner-mobile img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  transition: var(--transition-200);
}
.eshop-events-submit-style-1 .events-submit-banner {
  padding-bottom: 56%;
}
@media (max-width: 991px) {
  .eshop-events-submit-style-1 .events-submit-banner {
    display: none;
  }
}
.eshop-events-submit-style-1 .events-submit-banner-mobile {
  display: none;
  margin-bottom: 10px;
  padding-bottom: 60%;
}
@media (max-width: 991px) {
  .eshop-events-submit-style-1 .events-submit-banner-mobile {
    display: block;
  }
}

.eshop-events-submit-style-1 .events-submit-metas {
  margin-bottom: 30px;
}
.eshop-events-submit-style-1 .events-submit-meta {
  display: flex;
  flex-wrap: nowrap;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 15px;
}
.eshop-events-submit-style-1 .events-submit-meta p, .eshop-events-submit-style-1 .events-submit-meta ul, .eshop-events-submit-style-1 .events-submit-meta .btn {
  margin-bottom: 0;
}
.eshop-events-submit-style-1 .events-submit-meta ul {
  display: flex;
  flex-wrap: wrap;
}
.eshop-events-submit-style-1 .events-submit-meta > i {
  flex: 0 0 auto;
}
.eshop-events-submit-style-1 .events-submit-meta-title {
  font-size: 18px;
  margin-bottom: 0;
}

/*!
 |-----------------------------------------------------------------------------------------
 |
 |
 | eShop Events Submit - Style 1 - End
 |
 |
 |-----------------------------------------------------------------------------------------
*/