form ul {
    padding: 0;
    margin: 0;
}
input[type="checkbox"] {
    min-width: 15px;
    min-height: 15px;
    cursor: pointer;
}
input:not([type='checkbox']),
select {
    height: 45px;
}
input:not([type='checkbox']),
textarea,
select {
    width: 100%;
    padding: 10px;  
    border: 1px solid #e5e5e5;
    border-radius: 5px;
    color: #a5a5a5!important;
    font-size: 13px!important;  
}
input:not([type='checkbox']),
textarea,
select:hover {    
    color: #2E3342!important;    
}
label {
    padding-bottom: 3px;
    display: block;
    color: #777;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    margin: 0;
}
input::placeholder,
textarea::placeholder {
    color: #a5a5a5!important;    
}
input:focus:not([type='checkbox']),
input:focus([type='checkbox']) {
    border: none;
}
textarea:focus {
    border-color: #59994b;
    box-shadow: 0 0 0 0.2rem rgba(89, 153, 75, 0.8);
}
fieldset {
    position: relative;
    border-left: 5px solid #f5f5f5;
    padding-left: 25px;
    margin-bottom: 60px;
}
button:disabled,
button[disabled] {
    background-color: #c9c9c9;
    cursor: not-allowed;
}
button:disabled:hover,
button[disabled]:hover {
    background-color: #c9c9c9;
}
.forms {
    font-family: 'Poppins', sans-serif;  
}
.forms h2 {
    font-size: 30px;
    text-align: right;
    text-transform: none;
    line-height: 1.4em;
}
.forms h3 {
    font-size: 45px;
    text-align: right;
}
.forms .loading img {
    max-width: 80%;
    margin:0;
}
.forms .attention {
    color: #F5F5F5;
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 25px;
    padding: 10px 15px;
    border-radius: 7px;
    background-color: #59994b;
    text-align: center;
}
.forms .attention i {
    color: #F5F5F5;
}
.forms .td-info input[type="checkbox"] {
    margin-top: 4px;
}
.forms .business-type label.a-choice {
    position: relative;
    flex-direction: column;
    padding: 15px 25px;
    background: #2e3342;
    border-radius: 5px;
    display: flex;
    align-items: center;
}
.forms .business-type label.a-choice::after {
    content: "";
    width: 15px;
    height: 15px;
    display: block;
    background: #2e3342;
    position: absolute;
    top: 25px;
    right: -5px;
    -moz-transform: rotate(45deg);
    -webkit-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}
.forms .business-type label .b-choice {
    color: #f5f5f5;
}
.forms .business-type label .c-choice {
    color: #f5f5f5;
    font-size: 11px;    
}
.forms .checkbox-group {
    display: flex;
    /*column-gap: 7px;*/
    align-items: center;
}
.forms .checkbox-group li {
    display: flex;
    column-gap: 7px;
    align-items: center;
}
.forms .checkbox-group label {
    padding-top: 4px;
    margin-right: 10px;
    cursor: pointer; 
}
.forms .checkbox-group input[type="checkbox"],
.forms .checkbox-group input[type="radio"] {
    width: 15px;
    height: 15px;
}
.forms .checkbox-group input[type="checkbox"]:checked,
.forms .checkbox-group input[type="radio"]:checked {
    background-color: #59994b;
}
.forms .left-column {
    max-width: 30%;
}
.forms span.infos {
    padding: 2px 0 30px;
    display: block;
    color: #2e3342;
    font-size: 15px;
    font-weight: 600;
    font-family: 'Poppins', sans-serif;
  }
.forms .infos::after {
    content: "";
    width: 100%;
    height: 1px;
    border: 1px;
    display: block;
    background-color: #D5D5D5;
}
.forms .infos::after {
    margin-top: 3px;
}
.forms .infos i {
    margin-right: 5px;
}
.forms .single-fields li {
    margin-bottom: 10px;
}
.forms .two-fields {
    display: flex;
    gap: 20px;
    margin-bottom: 10px;
}
.forms .two-fields li {
    width: 50%;  
}
.forms .business-type {
    display: flex;
    border-radius: 5px;
    background: #f5f5f5;
    gap: 30px;
    padding: 5px;
    border: 1px solid #e5e5e5;
    margin-bottom: 10px;
}
.forms .text-search { 
    min-width: 250px;
}
.forms .ct-select:hover {
    cursor: pointer;
}
.forms .ct-select option:hover {
    color: #FFF;
}
.forms .ct-select:focus {
    border-color: #59994b;
    box-shadow: 0 0 0 0.2rem rgba(89, 153, 75, 0.8)
}
.forms .invalid {
    outline: 1px solid red;
}
.forms .validation-message {
    color: red;
    font-size: 14px;
    line-height: 30px;
    font-family: "Poppins", sans-serif;
}
.forms table div.td-info {
    display: flex;
    align-items: flex-start;
}
.forms table div.td-info label {
    margin-left: 15px;
}
.forms table th:nth-child(1) {
    width: 200px;
}
.forms h3 {
    text-align: right;
}
.forms .flex-outer .fields-mandatory  {
    padding-bottom: 3px;
    display: block;
    color: #777;
    font-size: 14px;
    font-weight: 400;
    font-family: 'Poppins', sans-serif;
    margin: 0;
}
.forms .reveal-animation {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    transition: max-height 0.5s ease-out, opacity 0.5s ease-out;
}
.forms .reveal-animation.active {
    max-height: 1000px;
    opacity: 1;
    transition: max-height 0.5s ease-in, opacity 0.5s ease-in;
}
.forms .flex-outer .send {
    position: relative;
}
.forms .flex-outer .loading {
    position: absolute;
    top: 4px;
    left: 175px;
    z-index: 1;
}
.forms .auth label {
    cursor: pointer;  
    padding-left: 10px!important;
    padding-top: 3px!important;
}
.forms ul li.auth {
    display: flex;
    margin-bottom: 15px;
}
@media (max-width:450px) {
    .forms .attention {
        font-size: 15px;
    }
    .forms table.table th:nth-child(2) {
        display: none;
    }
    .forms fieldset {
        border: 0;
        padding: 0;
        margin-bottom: 30px;
    }
    .forms .text-search {
        width: 100%;
    }
    .forms .left-column {
        max-width: 100%;
    }    
    .forms table tr {
        display: flex;
        flex-direction: column;
    }
    .forms table th:nth-child(1) {
        width: 100%;
    }    
    .forms table td {
        display: table-cell;
    }    
    .forms .td-info {
        display: flex;
        align-items: flex-start;
    }
    .forms h3 {
        text-align: center;
    }
    .forms .td-info input[type="checkbox"] {
        margin-top: 4px;
    }
    .forms table div.td-info label {
        margin-left: 9px;
    }
    .forms .two-fields {
        flex-direction: column;
        align-items: normal;
        gap: 10px;
        margin-bottom: 10px;
    }
    .forms .two-fields li {
        width: auto;
    }
    .forms .business-type {
        gap: 0;
        flex-direction: column;
    }
    .forms .business-type label.a-choice::after {
        display: none;
    }
    .forms .checkbox-group {
        gap: 10px;
        padding: 15px 0;
        flex-wrap: wrap;
        justify-content: center;
    }
    .forms ul li.auth label {
        font-size: 11px;
    }
    .forms ul li.auth label {
        padding-left: 6px!important;
    }
    .forms .flex-container .flex-item button {
        width: 100%;
    }
    .forms .flex-outer .loading {    
        top: 3px;
        right: 10px;    
    }
    .forms .flex-outer .loading img {    
        max-width: 20%;
    }
    .forms .flex-outer li p.fields-mandatory {
        margin: 0;
    }
    .forms img {
        width: 90%;
        margin-top: 50px;
    }
    .forms img {
        display: none;
      }
    .forms h2 {
        font-size: 18px;
        text-align: center;
        text-transform: none;
        width: 100%;
    }   
    .forms h3 {
        font-size: 35px;
        text-align: center;
        margin-bottom: 20px;
        line-height: 1.2em!important;
    }  
    .forms ul {
        padding: 0;
    }
    .filter-products li {
        width: 100%;
    }
}