@charset "utf-8";
/* Title: Nice Industries Party Time Components
** Description: Modular reusable components for Nice Industries Party Time
** Author: Jessica Greenwalt
** Created: 10-22-2025
** Updated: 11-21-2025
************************************** */

/* = Header
** ----------------------- */
header {
    position: absolute;
    top: 0;
    left: 0;
    box-sizing: border-box;
    z-index: 999;
    width: 100%;
    padding: 15px 18px 15px 20px;
}

header .va {
    display: flex;
    float: left;
    align-items: center;
}

/* Navigation */
header .nice-logo {
    display: inline-block;
    width: 70px;
    height: 29px;
    background: url(../img/logo-nice.png) center no-repeat;
    background-size: contain;
}

header .nav {
    display: flex;
    float: right;
    align-items: center;
    margin-top: -2px;
}

header .nav a {
    text-decoration: none;
    font-weight: 600;
    color: #000;
    font-size: 15px;
}

header .auth-profile-button {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    border: 2px solid #e0e0e0;
    background: #fff;
    cursor: pointer;
    padding: 0;
    overflow: hidden;
    transition: border-color 0.2s ease;
}

header .auth-profile-button:hover {
    border-color: #000;
}

header .auth-profile-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

header .auth-profile-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: #000;
    color: #fff;
    font-size: 18px;
    font-weight: 600;
}

/* Navigation Tabs */
.nav-tabs {
    display: flex;
    margin-bottom: 20px;
}

.nav-tab {
    flex: 1;
    background: none;
    border: none;
    font-family: "Figtree", Helvetica, Arial, sans-serif;
    font-size: 18px;
    font-weight: 500;
    color: rgba(0, 0, 0, 0.4);
    cursor: pointer;
    position: relative;
    transition: color 0.3s ease;
}

.nav-tab.active {
    font-weight: 600;
    color: #000;
}

.nav-tab.active::before {
    content: "🎉";
    position: absolute;
    top: -26px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 20px;
    color: #000;
}

/* Info Containers */
.info-contain {
    display: block;
    margin-bottom: 6px;
    border-radius: 4px;
    padding: 15px 20px 20px 20px;
    background: rgba(255, 255, 255, 0.4);
}

/* More Attention Container - more opaque background to make this container stand out */
.info-contain.morat {
    background: rgba(255, 255, 255, 0.8);
}

/* = Flat Long Shadow Box */
.flsbox {
  position: relative;
  /* display: inline-block; */
  margin: 0 20px 0 30px;
  padding: 15px 20px 28px 20px;
  background-color: #fff;
  color: #000;
  border: 4px solid #000;
  box-shadow:
    -1px 1px 0 #000,
    -2px 2px 0 #000,
    -3px 3px 0 #000,
    -4px 4px 0 #000,
    -5px 5px 0 #000,
    -6px 6px 0 #000,
    -7px 7px 0 #000,
    -8px 8px 0 #000,
    -9px 9px 0 #000,
    -10px 10px 0 #000,
    -11px 11px 0 #000,
    -12px 12px 0 #000,
    -13px 13px 0 #000;
}

@media (min-width: 900px) {
    .flsbox {
        padding: 20px 40px 40px 40px;
    }
}


/* = Form After Text */
.formafttxt {
    margin-top: 20px;
}


/* = Form Elements
** ----------------------- */

/* Upload File Box */
.upload-tile {
    box-sizing: border-box;
    margin: 0 auto;
    width: 100%;
    border: 2px solid #fff;
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    background: rgba(255, 255, 255, 0.5);
    cursor: pointer;
    color: #333;
    padding: 20px 10px 30px 10px;
}

.upload-tile:hover {
    background: rgba(255, 255, 255, 0.8);
}

.upload-icon {
    font-size: 32px;
    margin-bottom: 8px;
    opacity: 0.2;
}

/* Ticket Types Container */
.ticket-types-section {
    margin-bottom: 20px;
}

.ticket-types-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.ticket-type-box {
    background: rgba(255, 255, 255, 0.5);
    border-radius: 4px;
    padding: 14px 20px 20px 20px;
    position: relative;
}

.ticket-type-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

/* Ticket Type Dropdown */
.ticket-type-dropdown {
    margin-bottom: 6px;
    width: 100%;
}

/* Ticket option rows */
.ticket-option-row {
    display: flex;
    align-items: flex-start;
    margin-bottom: 6px;
    gap: 10px;
}

.ticket-option-label {
    flex: 0 0 auto;
    font-size: 15px;
    font-weight: 600;
    color: #000;
    text-align: left;
    padding-top: 10px;
    margin-right: 10px;
}

.ticket-option-input {
    flex: 0 0 240px;
  text-align: right;    /* align text/content right inside the column */
  margin-left: auto; 
}

.ticket-option-input input[type="text"],
.ticket-option-input input[type="number"],
.ticket-option-input textarea {
    width: 100%;
}

/* Full-width fields (name and description) */
.ticket-option-row.full-width {
    display: block;
}

.ticket-option-row.full-width .frm-lbl-grp {
    width: 100%;
}

/* Override default form group margins within ticket boxes */
.ticket-type-box .frm-lbl-grp {
    margin-bottom: 0;
}

.ticket-additional-options textarea {
    margin-bottom: 2px;
}

/* Date Time Selection */
.time-grp {
    position: relative;
    display: flex;
    gap: 6px;
    /* margin-bottom: 20px; */
    flex-direction: column;
}

@media (min-width: 550px) {
    .time-grp {
        flex-direction: row;
    }
}

.time-grp .col {
    gap: 6px;
}

.time-grp .row {
    flex-direction: column;
    position: relative;
    gap: 4px;
}

@media (min-width: 550px) {
    .time-grp .row {
        flex-direction: row;
    }
}

.time-grp .frm-lbl-grp {
    margin-bottom: 0;
}

.time-grp .frm-lbl-grp input {
    position: relative;
    padding: 8px 10px 22px 8px;
}

.time-grp .frm-lbl-grp label {
    opacity: 0.6;
}

.time-grp .grp-date-time {
    display: flex;
    gap: 6px;
}

.time-zn {
    right: 0;
    box-sizing: border-box;
    margin-left: 50%;
    height: fit-content;
    width: calc(50% - 3px);
    text-align: left;
    font-size: 14px;
    padding: 5px 10px;
    border-radius: 4px;
    color: #333;
    background: rgba(255, 255, 255, 0.5);
    border: 2px solid #fff;
    white-space: normal;
    line-height: 1.3;
    font-family: "Figtree", Helvetica, Arial, sans-serif;
    font-weight: 500;
}

@media (min-width: 550px) {
    .time-zn {
        position: unset;
        margin-left: unset;
        height: 100%;
        width: unset;
        padding: 2px 5px;
    }
}

.time-zn strong {
    color: #000;
    font-weight: 600;
}

.time-zn:hover,
.time-zn:focus {
    background: rgba(255, 255, 255, 0.9);
}

.time-grp input[type="date"],
.time-grp input[type="time"] {
  appearance: none;
  -webkit-appearance: none;
  position: relative;
  padding-right: 36px;
}

.time-grp input[type="date"]::-webkit-calendar-picker-indicator,
.time-grp input[type="time"]::-webkit-calendar-picker-indicator {
  opacity: 0;
  position: absolute;
  right: 10px;
  width: 24px;
  height: 100%;
  cursor: pointer;
}

.time-grp input[type="date"]:before,
.time-grp input[type="time"]:before {
  font-size: 22px;
}

.time-grp input[type="date"]:before {
  content: "🗓️";
  position: absolute;
  right: 10px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}

.time-grp input[type="time"]:before {
    content: "🕒";
    position: absolute;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    pointer-events: none;
}




/* = Event Details Block */
.eventdetails .details,
.eventdetails .hboxtop,
.eventdetails .details .date,
.eventdetails .details .price-amount {
    text-align: left;
}

.eventdetails .col2 {
    gap: 15px;
}

.eventdetails .col2 .event-media-container {
    padding-top: 10px;
}

.eventdetails .event-media-container {
    flex: 0 0 150px;
    height: 180px; 
}

.eventdetails .col {
    flex: 1;
}

.eventdetails .event-media-container + .col {
    padding-top: 8px;
}

.eventdetails .row {
    gap: 8px;
    margin-bottom: 8px;
}

.eventdetails .actions {
    display: flex;
    gap: 10px;
    margin-top: 15px;
}

.eventdetails .actions .btn-m {
    flex: 1;
}

/* Subtle Note */
.sn {
    display: block;
    font-size: 15px;
    color: #737373;
    font-style: italic;
}

/*
h2.hboxtop {
    margin-bottom: 10px;
    font-size: 20px;
    font-weight: 600;
    font-family:'Roboto Slab', Georgia, Lato, Helvetica, Arial, sans-serif;
}
*/

.eventdetails .details {
    line-height: 22px;
}

.eventdetails .details .date {
    display: block;
    font-weight: 600;
    font-size: 17px;
}

.eventdetails .details .price-amount strong {
    font-weight: 600;
    font-size: 17px;
}

.eventdetails .details .lblsb {
    text-align: left;
    color: #3e3e3e;
    font-size: 14px;
    font-weight: 500;
}

.eventdetails .details .time-main {
    display: inline-block;
    text-align: left;
}

.eventdetails .details .timezone-info,
.eventdetails .details .pmin {
    margin-left: 6px;
    color: #3e3e3e;
    font-size: 14px;
    font-weight: 500;
}

/* = Event Images */
.mediacol,
.event-media-container,
.event-cover-image {
    max-width: 100%;
}

.mediacol {
    width: 100%;
}

.event-media-container {
    margin: 0 auto;
   /* padding: 5px 0 15px 0; */
}

.event-cover-image {
    height: 100%;
    max-height: 500px;
    border-radius: 4px;
    border: 2px solid #FFF;
}

@media (min-width: 900px) {
    .mediacol .event-media-container {
        padding: 0; 
    }

    .mediacol .event-media-container {
        padding-right: 20px;
    }

    .event-cover-image {
        max-height: unset;
    }
}

@media (max-height: 900px) {
    .event-cover-image, .event-cover-video {
        width: auto;
        max-width: 100%;
    }
}


