.CardNewTicket{
    width: 95%;
    margin: 0 auto;
    margin-top: 10px;
}

.CardNewTicket__principal{
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
}

.CardNewTicket__principal>label{
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    margin-bottom: 10px;
}

.CardNewTicket__principal>label>input[type=text],.CardNewTicket__principal>label>textarea{
    width: 100%;
    height: 35px;
}

.CardNewTicket__addcomplement{
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    margin: 10px 0;
    gap: 10px;
}

.CardNewTicket__addcomplement>label:first-child{
    width: 70%;
}

.CardNewTicket__addcomplement>label>input[type=text]{
    width: calc(100% - 60px);
    height: 35px;
}

.CardNewTicket__addcomplement>label>input[type=number]{
    width: 50px;
    height: 35px;
}

.CardNewTicket__addfile{

}

.CardNewTicket__addfile>img{
    width: 50px;
}

.CardNewTicket__addfile>input{
    display: none;
}

.CardNewTicket__addcomplement>button{
    width: 40px;
    border-radius: 2px;
    height: 40px;
    background-color: var(--bg-primary-dark);
    border: none;
    cursor: pointer;
    display: flex;
    justify-content: center;
    align-items: center;
}

.CardNewTicket__itemcomplement{
    width: 100%;
    display: flex;
    justify-content:space-between;
    align-items: center;
}

.CardNewTicket__itemcomplement>img{
    width:120px;
}

.CardNewTicket__search{
    width: 100%;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    flex-direction: column;
    margin: 10px 0;
    position: relative;
}

.CardNewTicket__search>div{
    width: 100%;
    position: absolute;
    bottom: -40px;
    background-color: var(--bg-primary-light);
}

.CardNewTicket__search>input{
    width: 100%;
    height: 35px;
}

.CardNewTicket__values{
    width: 50%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 0 0 0 50%;
}

.CardNewTicket__footer{
    margin-top: 10px;
}

.CardNewTicket__footer>button{
    width: 100%;
    height: 40px;
    background-color: var(--bg-primary-dark);
    font-weight: bold;
    color: var(--color-primary-light);
    border: none;
    cursor: pointer;
    border-radius: 5px;
}