.Ticket{
    width: 70%;
    margin: 0 auto;
}

.Ticket__subtitle{
    margin-top: 20px;
}

.Ticket__information{
    width: 100%;
    margin-top: 20px;
}

.Ticket__dates{
    width: 100%;
    display: grid;
    grid-template-columns: 60% 40%;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 50px;
}

.Ticket__infohead{
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.Ticket__interaction{
    width: 100%;
    padding: 10px 10px;
    background-color: var(--bg-primary-light);
    display: grid;
    grid-template-columns: 25% 50% 25%;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgb(224, 224, 224);
}

.Ticket__complement{
    width: 100%;
    padding: 10px 10px;
    background-color: var(--bg-primary-light);
    display: grid;
    grid-template-columns: 65% 10% 25%;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgb(224, 224, 224);
}

.Ticket__product{
    width: 100%;
    padding: 10px 10px;
    background-color: var(--bg-primary-light);
    display: grid;
    grid-template-columns: 25% 25% 25% 25%;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgb(224, 224, 224);
}

.Ticket__pay{
    width: 100%;
    padding: 10px 10px;
    background-color: var(--bg-primary-light);
    display: grid;
    grid-template-columns: 33.33% 33.33% 33.33%;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid rgb(224, 224, 224);
}

.Ticket__infopays{
    width: 100%;
}

.Ticket__value{
    margin-top: 20px;
}

.Ticket__actions{
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 10px;
    margin-top: 20px;
    margin-bottom: 20px;
}

.Ticket__actions>button{
    height: 40px;
    padding: 0 10px;
    background-color: var(--bg-primary-dark);
    color: var(--color-primary-light);
    font-weight: bold;
    cursor: pointer;
}

.Ticket__newinteraction{
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-end;
    gap: 10px;
}

.Ticket__newinteraction>label{
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}

.Ticket__newinteraction>label>textarea{
    width: 300px;
    height: 50px;
}

.Ticket__newinteraction>label>input{
    display: none;
}

.Ticket__newinteraction>label>img{
    width: 100px;
}

.Ticket__newinteraction>button{
    width: 40px;
    height: 40px;
    background-color: var(--bg-primary-dark);
    color: var(--color-primary-light);
    font-weight: bold;
    cursor: pointer;
    border-radius: 2px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.Ticket__newproduct{
    width: 100%;
    position: relative;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}


.Ticket__newproduct>input{
    width: 100%;
    height: 40px;
}

.Ticket__newproduct>div{
    width: 100%;
    position: absolute;
    top: 60px;
    background-color: var(--bg-primary-light);
}

.Ticket__newproduct>div>button{
    width: 100%;
    display: block;
    height: 40px;
    border: none;
}


@media screen and (min-width:100px) and (max-width:650px) {
    .Ticket{
        width: 95%;
        margin: 0 auto;
    }
    
    .Ticket__dates{
        width: 100%;
        display: grid;
        grid-template-columns: 1fr;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 50px;
    }
    
    .Ticket__infohead{
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        margin-bottom: 20px;
    }
    
    .Ticket__actions{
        width: 100%;
        display: flex;
        justify-content: flex-start;
        align-items: flex-start;
        gap: 10px;
        margin-top: 20px;
        margin-bottom: 20px;
    }
}