:root {
  --main-color: #d33753;
  --light-color: #fafafa;
  --padding-lg: 5rem;
  --padding-md: 3rem;
  --padding-sm: 1.5rem;
  --shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
}

.create-title {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.create-head-box button a {
  color: var(--main-color);
  text-decoration: underline;
}

.create-head-box {
  width: 100%;
  padding: 1.5rem;
  overflow: hidden;
  background-color: #f9f9f9;
  border-radius: 8px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px, rgb(209, 213, 219) 0px 0px 0px 1px inset;
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}

.create-head-box-text {
  gap: 10px;
  display: flex;
  flex-direction: column;
}

.create-head-box::before {
  content: "";
  width: 150px;
  height: 150px;
  border-radius: 50%;
  top: -100px;
  position: absolute;
  background-color: #ec719b;
  right: 0px;
  z-index: 2;
}

.create-head-box::after {
  content: "";
  width: 200px;
  height: 200px;
  z-index: 1;
  border-radius: 50%;
  top: -150px;
  position: absolute;
  background: linear-gradient(to right, #ca3064, #ec719b);
  right: -100px;
}

.event-title-date {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 12px;
}

.event-title-date i {
  font-size: 16px;
}

.create-head-box h3 {
  font-size: 30px;
  font-weight: 300;
}

.create-title-img {
  width: 40px;
  height: 40px;
  display: flex;
  justify-content: center;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 50%;
  box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}

.create-title-text {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.create-title-text h2 {
  font-size: 18px;
  font-weight: 500;
}

.create-title-text-box {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.create-title-text p {
  font-size: 12px;
}

@media (max-width:640px) {
  .create-title-text p {
    width: 200px;
  }
}

.create-title-active {
  width: 15px;
  border-radius: 50%;
  background-color: #ca3064;
  height: 15px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.create-title-active span {
  background-color: #fff;
  height: 5px;
  width: 5px;
  border-radius: 50%;
}

.form-file-create {
  height: 400px;
  border-radius: 5px;
  overflow: hidden;
}

.create-image-head {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.create-image-head h4 {
  color: var(--main-color);
  font-weight: 500;
  font-size: 15px;
  text-decoration: underline;
}

.create-wrap-around {
  width: 100%;
  display: flex;
  justify-content: center;
  overflow: hidden;
  padding: 0rem 1rem;
}

.form-file-bg {
  width: 100%;
  height: 100%;
  position: absolute;
  filter: brightness(0.5);
  object-fit: cover;
  z-index: -2;
}

.create-image-head p {
  font-size: 10px;
}

.uploaded-images-container-create {
  display: flex;
  margin-top: 1rem;
  gap: 1rem;
  flex-wrap: wrap;
}

.uploaded-image-box-create {
  height: 100px;
  min-width: 150px;
  border-radius: 5px;
  position: relative;
}

.uploaded-image-box-create img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  border-radius: 5px;
}

.uploaded-image-box-create button {
  position: absolute;
  top: -10px;
  left: -10px;
  background-color: #fff;
  border-radius: 50%;
  border: 1px solid var(--main-color);
  width: 25px;
  height: 25px;
  box-shadow: var(--shadow);
}

.uploaded-image-box-create button i {
  font-size: 10px;
  color: var(--main-color);
}

.create-image-svg {
  display: flex;
  flex-direction: column;
  height: 125px;
  width: 150px;
  border-radius: 8px;
  display: flex;
  justify-content: center;
  gap: 5px;
  align-items: center;
  background-color: #fff;
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px,
  rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}

.create-image-svg p {
  font-size: 10px;
  text-align: center;
}

.create-image-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.01);
  backdrop-filter: blur(5px);
  z-index: -1;
}

.create-container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  position: relative;
  align-items: center;
}

.create-wrap {
  width: 800px;
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

@media (max-width: 950px) {
  .create-wrap {
    width: 100%;
  }
}

.create-box {
  border: 3px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  transition: 0.25s ease;
}

@media (max-width:600px) {
  .create-box {
    padding: 1.5rem;
  }
}

.create-box h2 {
  font-size: 18px;
  text-decoration: underline;
}

.create-stamps {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.create-age {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.create-stamp {
  flex: 1;
  min-width: 200px;
  max-width: 100%;
  padding: 15px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  display: flex;
  align-items: center;
  gap: 1rem;
  cursor: pointer;
  transition: 0.25s ease;
}

.create-stamp:hover,
.create-stamp.active {
  border: 1px solid var(--main-color);
}

.create-stamp i {
  color: var(--main-color);
  font-size: 18px;
}

.create-stamp p {
  font-size: 12px;
}

.create-field {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  font-size: 12px;
  transition: 0.25s ease;
}

.create-field p {
  color: rgba(0, 0, 0, 0.75);
}

.create-field h4,
.create-age h4,
.event-content h4,
.create-address h4,
.create-organisers h4,
.create-alternative h4,
.live-content h3 {
  font-size: 12px;
  font-weight: 500;
}

.create-alternative {
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
  max-width: 100%;
  min-width: 200px;
}

.create-field input, .create-alternative input {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 15px;
  font-size: 12px;
  border-radius: 5px;
  flex: 1;
  width: 100%;
}

.promo-form select {
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 15px;
  font-size: 12px;
  border-radius: 5px;
  flex: 1;
  width: 100%;
  background-color: #fff;
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='currentColor' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3e%3cpolyline points='6 9 12 15 18 9'%3e%3c/polyline%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 15px center;
  background-size: 12px;
}

.promo-form select:disabled {
  background-color: #f3f4f6;
  cursor: not-allowed;
  opacity: 0.75;
}

.promo-form select:focus {
  outline: none;
}

.promo-form select option {
  padding: 10px;
  font-size: 12px;
}

.create-event-type {
  display: flex;
  gap: 1rem;
  align-items: center;
  margin-top: 0.5rem;
  flex-wrap: wrap;
}

.create-event-box {
  flex: 1;
  border: 1px solid rgba(0, 0, 0, 0.1);
  padding: 15px;
  min-width: 200px;
  max-width: 100%;
  border-radius: 8px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.live-event-box {
    width: 350px;
    flex: unset;
    min-width: unset;
    max-width: unset;
}

.live-event-box p {
    font-size: 12px;
}

.create-event-box h4, .live-event-box h4 {
  font-weight: 600;
  font-size: 15px;
}

.create-event-box i, .live-event-box i {
  font-size: 18px;
  color: var(--main-color);
}


.create-event-details {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.create-event-select {
  width: 15px;
  height: 15px;
  border: 1px solid var(--main-color);
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.live-event-select {
  width: 15px;
  height: 15px;
  border: 1px solid var(--main-color);
  border-radius: 3px;
  display: flex;
  justify-content: center;
  align-items: center;
}

.live-event-select.checked {
    background: var(--main-color);
}


.create-event-select.active {
  position: relative;
}

.create-event-select.active::before {
  width: 10px;
  height: 10px;
  content: "";
  position: absolute;
  border-radius: 50%;
  background-color: var(--main-color);
}

.live-content h3 {
    margin-bottom: 16px;
}

.event-content-wrap {
  margin-top: 1rem;
  display: flex;
  gap: 10px;
  align-items: start;
  flex-wrap: wrap;
}

.event-content-wrap .event-time {
  flex: 1;
}

@media (max-width:500px) {
  .event-content-wrap {
    flex-direction: column;
  }

  .event-content-wrap .create-field {
    width: 100%;
  }

  .event-time {
    width: 100%;
  }

  .event-time .create-field.thin {
    flex: 1;
  }
}

.filter-item-create {
  margin-top: 1rem;
}

.filter-item-create .filter-input {
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.event-time {
  display: flex;
  gap: 10px;
  align-items: center;
  flex-wrap: wrap;
}

.event-time-box {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.create-field-wrap {
  display: flex;
  gap: 10px;
}

.create-field-wrap .create-field {
  flex: 1;
}

.create-field.thin h4 {
  font-size: 12px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.5);
}

.create-address {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.create-map {
  width: 100%;
  height: 200px;
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.event-content-wrap .filter-item {
  flex: 1;
}

.create-col {
  margin-top: 1rem;
}

.create-col .filter-col-item {
  padding: 15px 25px;
  display: flex;
  justify-content: center;
  align-items: center;
  min-width: unset;
  border: 1px solid rgba(0, 0, 0, 0.1);
  position: relative;
  cursor: pointer;
  border-radius: 5px;
  overflow: hidden;
}

.create-col .filter-col-item span {
  width: 0px;
  height: 0px;
  position: absolute;
  transition: 0.5s ease;
}

.create-col .filter-col-item.active span {
  width: 200px;
  height: 200px;
  position: absolute;
  z-index: -1;
  border-radius: 50%;
}

.create-col .filter-col-item p {
  font-size: 10px;
}

.create-col .filter-col-item.active p {
  color: #fff;
}

.create-col h4 {
  font-weight: 400;
  font-size: 12px;
}

.add-btn-create {
  cursor: pointer;
  font-size: 12px;
  width: fit-content;
}

.agenda-box p {
  font-size: 12px;
}

.add-btn-create span {
  color: var(--main-color);
  margin-right: 5px;
}

.organisers-section {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.create-organisers {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.agendas-container {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.promocodes-container {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}

.agenda-item, .promo-item {
  border-radius: 1rem;
  padding: 1.5rem;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px,
  rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}

.promo-item {
  max-width: 100%;
  min-width: 300px;
  flex: 1;
}

.delete-agenda,
.delete-organiser {
  position: absolute;
  width: 30px;
  height: 30px;
  background-color: var(--main-color);
  color: #fff;
  right: 1rem;
  top: -1rem;
  border-radius: 50%;
}

.delete-organiser {
  left: -0px;
  width: 20px;
  height: 20px;
  top: -0px;
}

.agenda-form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.organisers-container {
  display: flex;
  gap: 1rem;
  align-items: center;
  flex-wrap: wrap;
}

.create-people {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.create-people-img {
  width: 40px;
  height: 40px;
  object-fit: cover;
  border-radius: 50%;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.organiser-item {
  padding: 10px 1rem;
  border: 1px solid var(--main-color);
  border-radius: 3rem;
  position: relative;
  display: flex;
  align-items: center;
  gap: 1rem;
}

.create-people-name {
  font-size: 10px;
  padding-left: 10px;
}

.create-image-upload {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  position: relative;
  border: 1px solid var(--main-color);
}

.create-people-preview {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
}

.submit-create {
  align-self: flex-end;
  padding: 15px 25px;
  border-radius: 5px;
  background: linear-gradient(to right, #ca3064, #ec719b);
  color: #fff;
  font-size: 12px;
}

.add-section-button {
  padding: 15px 25px;
  border: 2px solid rgba(0, 0, 0, 0.25);
  border-radius: 5px;
  font-size: 12px;
  width: fit-content;
}

.ticket-introduct h3 {
  font-weight: bold;
}

.ticket-introduct {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
  gap: 2rem;
  padding: 3rem 0;
}

.ticket-introduct p {
  text-align: center;
  width: 300px;
  font-size: 12px;
}

.ticket-head-img {
  width: 65px;
  height: 65px;
  border-radius: 50%;
  display: flex;
  justify-content: center;
  align-items: center;
  box-shadow: rgba(60, 64, 67, 0.3) 0px 1px 2px 0px, rgba(60, 64, 67, 0.15) 0px 1px 3px 1px;
}

.ticket-head-img img {
  width: 50px;
  height: 50px;
}

.ticket-section-popup {
  position: fixed;
  width: 100%;
  top: 0;
  left: 0;
  height: 100vh;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
  z-index: 100000000;
}

.section-popup-container {
  display: flex;
  height: 400px;
  border-radius: 1rem;
  overflow: hidden;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 0px 0px 1px, rgb(209, 213, 219) 0px 0px 0px 1px inset;
}

.section-popup-container img {
  width: 250px;
  height: 100%;
  object-fit: cover;
}

.section-popup-content {
  width: 325px;
  background-color: #fff;
  padding: 2rem;
  justify-content: center;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  border-left: 3px solid rgba(0, 0, 0, 0.1);
}

.section-popup-content h3 {
  font-size: 18px;
  font-weight: 600;
  color: #ca3064;
}

.section-popup-content p {
  font-size: 12px;
}

.section-field {
  display: flex;
  gap: 10px;
  flex-direction: column;
}

.section-field input {
  width: 100%;
  padding: 15px;
  border-radius: 5px;
  font-size: 12px;
  border: 1px solid rgba(0, 0, 0, 0.5);
}

.section-field h4  {
  font-size: 12px;
  font-weight: 500;
}

.section-buttons {
  display: flex;
  gap: 10px;
  align-items: center;
}

.section-buttons button {
  padding: 10px 20px;
  border: 2px solid rgba(0, 0, 0, 0.1);
  font-size: 12px;
  border-radius: 5px;
}

.section-buttons button:nth-child(2) {
  background-color: #ca3064;
  color: #fff;
}

.sections-list {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.section-card {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.section-card-box {
  width: 100%;
  padding: 1rem;
  border-radius: 5px;
  display: flex;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
  box-shadow: rgba(0, 0, 0, 0.02) 0px 1px 3px 0px, rgba(27, 31, 35, 0.15) 0px 0px 0px 1px;
}

.sections-guide {
  display: flex;
  justify-content: space-between;
  width: 100%;
}

.sections-guide div {
  flex: 1;
  display: flex;
  justify-content: center;
}

.sections-guide span {
  font-size: 12px;
  text-decoration: underline;
}

.sections-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.section-card div {
  flex: 1;
  display: flex;
  justify-content: center;
  align-items: center;
}

.section-card div input {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  width: 100%;
  padding: 10px 15px;
  border-radius: 5px;
}

.sections-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin: 1rem 0;
}

.sections-footer button {
  padding: 15px 20px;
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  border: 1px solid rgba(0, 0, 0, 0.05);
  overflow: hidden;
  border-radius: 8px;
  font-size: 10px;
  position: relative;
}

.sections-footer button::before {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #ca3064;
  left: -30px;
  top: -30px;
}

.sections-footer button::after {
  content: "";
  position: absolute;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #ca3064;
  right: -30px;
  bottom: -30px;
}

.total-capacity h4 {
  font-size: 12px;
  text-decoration: underline;
  color: blue;
}

.ticket-adder {
  border-bottom: 1px solid rgba(0, 0, 0, 0.25);
  border-left: 1px solid rgba(0, 0, 0, 0.25);
  border-right: 1px solid rgba(0, 0, 0, 0.25);
  padding: 15px;
  width: 95%;
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.ticket-button {
  display: flex;
  gap: 10px;
  align-items: center;
  font-size: 12px;
}

.ticket-button span {
  color: var(--main-color);
}

.ticket-type-popup {
  position: fixed;
  left: 0;
  top: 0;
  display: flex;
  width: 100%;
  height: 100vh;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 1rem;
  z-index: 100000000;

}

.ticket-type-container {
  width: 400px;
  background-color: #fff;
  border-radius: 5px;
  display: flex;
  position: relative;
  flex-direction: column;
  height: 400px;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}

@media (max-width:450px) {
  .ticket-type-container {
    width: 100%;
  }
}

.ticket-popup-head {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 15px;
  border-bottom: 2px solid rgba(0, 0, 0, 0.1);
}

.ticket-popup-head h3 {
  font-size: 14px;
  font-weight: 600;
}

.ticket-popup-content {
  overflow: auto;
  padding: 1rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  padding-bottom: 5rem;
  width: 100%;
}

.ticket-type-selection {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ticket-type-selection h4,.ticket-field h4, .ticket-price h4  {
  font-size: 12px;
  text-decoration: underline;
  font-weight: 500;
}

.ticket-radio-group {
  display: flex;
  align-items: center;
  gap: 1rem;
}

.ticket-radio {
  display: flex;
  gap: 5px;
  align-items: center;
  font-size: 12px;
}

.ticket-section-buttons {
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 15px;
  display: flex;
  gap: 1rem;
  left: 0;
  background-color: #fff;
  border-top: 2px solid rgba(0, 0, 0, 0.1);
}

.ticket-field {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.ticket-field input {
  flex: 1;
  padding: 15px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 5px;
}

.quantity-info {
  font-size: 10px;
}

.ticket-price {
  display: flex;
  gap: 10px;
  flex-direction: column;
}

.ticket-price-input {
  display: flex;
  gap: 5px;
  align-items: center;
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 5px;
  padding: 15px;
}

.ticket-check {
  display: flex;
  gap: 5px;
  align-items: center;
}

.ticket-check p {
  font-size: 10px;
}

.ticket-date {
  display: flex;
  gap: 10px;
  align-items: center;
}

.ticket-types-container {
  width: 100%;
}

.ticket-types-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 100%;
}

.ticket-type {
  box-shadow: rgba(0, 0, 0, 0.16) 0px 1px 4px;
  padding: 10px;
  width: 100%;
  font-size: 12px;
  border-radius: 3rem;
}

.tickets-options {
  display: flex;
  align-items: center;
  gap: 5px;
}

.tickets-options button {
  background-color: #ca3064;
  padding: 10px;
  border-radius: 50%;
}

.tickets-options i {
  color: #fff;
  font-size: 14px;
}

.ticket-types-container {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (max-width:640px) {
  .section-popup-container img {
    display: none;
  }
}

.promo-form .create-alternative input {
  padding: 10px 15px;
}

.promo-form .create-alternative h4 {
  font-size: 10px;
}

.fees-popup {
  width: 100%;
  height: 100vh;
  justify-content: center;
  align-items: center;
  background-color: rgba(0, 0, 0, 0.5);
  position: fixed;
  z-index: 100000000;
  top: 0;
  left: 0;
}

.fees-container {
  background-color: #fff;
  padding: 2rem;
  border-radius: 5px;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  width: 300px;
  position: relative;
  box-shadow: rgba(0, 0, 0, 0.05) 0px 6px 24px 0px, rgba(0, 0, 0, 0.08) 0px 0px 0px 1px;
}

.fees-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.fees-header h3 {
  font-size: 15px;
  font-weight: 500;
}

.fees-header button {
  position: absolute;
  top: -1rem;
  right: 1rem;
  background-color: var(--main-color);
  width: 30px;
  height: 30px;
  border-radius: 50%;
}

.fees-header button i {
  color: #fff;
  font-size: 12px;
}

.fees-content {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.fee-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
}

.fee-item:last-child {
  color: blue;
  margin-top: 1rem;
}

.two-create-field {
  display: flex;
  gap: 1rem;
  align-items: center;
}