input[type=text],input[type=email],input[type=tel],input[type=number], textarea{
    border-radius: 10px;
}
label{
    
    color: var(--color-font-1);
    
    font-weight: 700;
}
.custom-select{
    
    border-style: solid;
    border-width: 1px;
    border-radius: 10px;
    border-color: #a1a1a1;
    
    
}
.custom-select, .custom-select-option{
    font-size: 16px;  
    border-radius: 10px;
    height: 35px;
    outline: none;
    color: #363636;
    padding: 0;
    background-color: inherit;
    font-family: inherit;
    margin: 0;
    text-decoration: none;
    cursor: pointer;
}
.seta-box{
    background-color: #386eb1;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 50px;
    border-radius:  0 10px 10px 0;
}
.seta {
    border-top: 10px solid #ffffff;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    margin: 0 0px;
    float: left;
}
.custom-select-option-selected{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 0 0 15px;
    box-sizing: border-box;
    
    width: 100%;
    height: 100%;
    border-radius: 10px;

}
.custom-select:hover, .custom-select-option:hover, .seta-box:hover{
   border-radius: 10px 10px 0 0 ;
   background-color: #ddd;
}

.custom-select-content{
    display: none;
    position: absolute;
    background-color: #ffffff;
    min-width: 160px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.2);
    z-index: 1;
    border-radius: 0 0 15px 15px;
    


}
.custom-select-content li {
    float: none;
    color: black;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
    text-align: left;
  }
  .custom-select-content li:hover {
   background-color: #ddd;
  }
.custom-select-Open {
    display: block;
    
}
.link-default{
text-decoration: none;
}
.form-group-m1{
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    gap: 30px;
    margin:  20px 0 0 0;
}
.bt-model-1 , .bt-model-2{
    font-size: 16px;
    width: 100%;
    
    box-sizing: border-box;
    border-style: none;
    padding: 10px 10px;
    color: #ffffff;
    border-radius: 10px;
    margin: 10px 0 0 0 ;
    display: flex;
    justify-content: center;
    align-items: center;
    
}
.bt-model-add{
    background-color: var(--color-1);
    cursor: pointer;
}

.bt-model-add:hover{
    background-color: var(--color-3);

}
.bt-model-add:active{
    background-color: var(--color-2);
    transform: translateY(4px);
}

.bt-model-cancel{
    background-color: #5e5e5e;
}
.bt-model-cancel:hover{
    background-color: #4d4d4d;
}
.bt-model-cancel:active{
    background-color: #3a3a3a;
    transform: translateY(4px);
}
.bt-width-m1{
    width: 500px;
    max-width: 500px;
}
.bt-width-m2{
    width: 150px;
    max-width: 150px;
}
.input-m-1{
width: 500px;
}
.input-m-2{
width: 235px;
}
.input-m-3{
    width: 112.5px;
    }


.bt-model-3{
    font-size: 16px;
    width: 100%;
    height: 40px;
    box-sizing: border-box;
    border-style: none;
    padding: 15px 10px;
    color: #ffffff;
    background-color: var(--color-1);
    border-radius: 10px;
    margin: 10px 0 0 0 ;
    display: flex;
    justify-content: center;
    align-items: center;
    
}
.form-group-right{
    display: flex;
    justify-content: flex-end;
}

/* tira as setinhas do input number */
input[type=number]::-webkit-inner-spin-button,input[type=number]::-webkit-outer-spin-button{

    -webkit-appearance: none;
    margin:0;
}