
.search-ticket-section {
    margin-top: -5em;
    position: relative;
    z-index: 9;
}


/* contenedor buscador*/
.event-search::before, .search-tab::before {
    background-image: -webkit-linear-gradient(
0deg, var(--secondary) 10%, var(--primary) 100%);
    opacity: 0.9;
    position: absolute;
    content: "";
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
}

/* botones categorias*/
.ticket-tab-menu li {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    padding: 5px 10px;
    min-height: 50px;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    width: calc(33.33% - 7px);
    background-color: var(--secondary);
    border-radius: 0px;
    -webkit-transition: all ease 0.3s;
    transition: all ease 0.3s;
    margin-bottom: 10px;
}

/* botones categorias active*/
.ticket-tab-menu li.active {
    background-image: none;
    background-color: var(--secondary);
    box-shadow: 0px 10px 15px 0px rgb(0 0 0 / 50%);
}

/* texto pequeño (welcome)*/
.search-ticket-header .category {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 20px;
}

/* texto grande*/
.search-ticket-header .title {
        color: var(--primary);
        font-size: 24px;
        text-transform: lowercase;
        margin: 1rem 0rem;
}


/* contenedor datos */
.search-tab .tab-area {
    padding: 30px;
    position: relative;
    -webkit-box-shadow: 0px 5px 15px 0px rgb(0 0 0 / 50%);
    box-shadow: 0px 5px 15px 0px rgb(0 0 0 / 50%);
    border-top: none;
    border-bottom: none;
    margin-top: 20px;
}
 /* contenedor datos : capa superior*/
.search-tab .tab-area::before {
    background-color: var(--dark);
    opacity: 0.4;
    width: 100%;
    height: calc(100% + 1px);
    top: 0;
    left: 0;
}


/* input*/
.ticket-search-form .form-group input {
    border: none;
    border-bottom: 1px solid var(--light);
    border-radius: 0;
    padding: 0;
    height: 45px;
    padding-right: 50px;
}

/* buscador input (icono) */
.ticket-search-form .form-group button {
    outline: none;
    background: transparent;
    border: none;
    color: #dee2e6;
    height: 45px;
    width: 45px;
    text-align: right;
    line-height: 45px;
    position: absolute;
    top: 0;
    right: 0;
}

/* texto input */
.ticket-search-form .form-group input::placeholder {
    color: var(--light);
  }

/* datos fijos */
.ticket-search-form .form-group .type {
    color: var(--primary);
}

/* datos variables */
.ticket-search-form .form-group .nice-select {
    background: transparent;
    border: none;
    color: var(--light);

}


@media (max-width: 575px){
    .search-ticket-section {
    margin-top: 0em;
    position: relative;
    z-index: 9;
    }

    .form-cambio-fecha{
        margin-top: 2.5rem ;
    }
}