/**
 * All of the CSS for your public-facing functionality should be
 * included in this file.
 */

/* Style inputs with type="text", select elements and textareas */
input[type=text], select, textarea {
    width: 100%; /* Full width */
    padding: 12px; /* Some padding */
    border: 1px solid #ccc; /* Gray border */
    border-radius: 4px; /* Rounded borders */
    box-sizing: border-box; /* Make sure that padding and width stays in place */
    margin-top: 6px; /* Add a top margin */
    margin-bottom: 16px; /* Bottom margin */
    resize: vertical /* Allow the user to vertically resize the textarea (not horizontally) */
}

/* Style the submit button with a specific background color etc */
input[type=submit] {
    background-color: #04AA6D;
    color: white;
    padding: 12px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

/* When moving the mouse over the submit button, add a darker green color */
input[type=submit]:hover {
    background-color: #45a049;
}

.container {
    border-radius: 5px;
    /*background-color: #f2f2f2;*/
    padding: 20px;
}
.id_form{
    max-width: 100% !important;
}

.image > img {
    width: 36px;
}

.btn {
    border-radius: 0.625rem;
    font-size: 16px;
    font-weight: bold;
}

.float-right {
    float: right!important;
}

[type=button]:not(:disabled), [type=reset]:not(:disabled), [type=submit]:not(:disabled), button:not(:disabled) {
    cursor: pointer;
}

.btn-custom {
    transition: .3s;
}

.btn-custom {
    background-color: #FFFFFF;
    color: #ce3a4c;
    display: block;
    flex-basis: 100%;
    width: 100%;
}

.btn-custom:hover {
    background-color: #23A0E1;
    color: #FFFFFF;
    border-radius: 1.25rem;
    width: 100%;
}

.custom_val{
    border: 2px solid red !important;
}

.hide{
    display: none;
}

.image{
    filter: brightness(0) invert(1);
}

.iti{
    position: relative;
    display: block !important;
}

.text{
    font-size: 14px !important;
}

#valid-msg, #error-msg , #comune-alert , .span_error{
	color: #0c0c0c;
    border-radius: 5px;
    margin-bottom: 2px;
    padding: 0.1rem 1rem;
    background-color: rgba(255, 233, 0, 0.99);
}