.clear{
    clear: both;
}

.form-padding{
    padding-left: 15px;
}

.underline{
    text-decoration: underline;
}

.black{
    color: black !important;
}

.bolder{
    font-weight: bolder !important;
}

.margin30{
    margin: 20px 30px 0 30px !important;
}

.aside-menu{
    overflow: scroll !important;
}

.menu-box-left .logo, .menu-box-left .logo a {
    color: #2e3751 !important;
}

label.required:before{
    content:'*';
    color: #e71a1a;
}

#form-mirror-login{
    height: 50px;
}

#connexion-form{
    margin: 50px;
}

#inscription-form .fw-desc{
    padding: 10px 0 10px 0;
    text-align: justify;
}

#inscription-form h3, h3.fw-special-title{
    font-size: 20px;
    text-transform: capitalize;
    border-bottom: solid 2px #27ae61;
    padding-bottom: 5px;
}

input[type="radio"]{
    float: none;
    width: auto;
    height: auto;
}

#action-form-bar > div{
    margin-top: 5px;
    margin-right: 30px;
}

#action-form-bar button[type="submit"]{
    text-transform: uppercase;
    margin-top: 15px;
}

#action-form-bar button[type="submit"]:before{
    content: '\f3fe';
    font-family: "ionicons";
    padding-right: 5px;
}

form button {
    float: left;
    width: 100%;
    /*height: 50px;*/
    height: 40px;
    cursor: pointer;
    border: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 14px;
    font-weight: 700;
    background: #27ae61;
    color: #ffffff;
    border: 1px solid transparent;
    -moz-transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
}
form button:hover {
    color: #27ae61;
    background: #ffffff;
    -moz-transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
}

input:not([type="checkbox"]):not([type="radio"]){
    float: left;
    width: 100%;
    margin-bottom: 10px;
    height: 40px;
    padding: 0 20px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: black;
    border: 1px solid #eeeeee;
    border-left: 3px solid;
    -moz-transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
    transition: border-color .5s ease-out;
    border-radius: 5px;
    -moz-border-radius: 5px;
    -webkit-border-radius: 5px;
}

.input-group input{
    width: auto !important;
}

input[type="radio"]{
    margin: 0 10px 10px 10px;
    padding: 0 20px;
}

input:focus {
    -moz-transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;
}
input::-webkit-input-placeholder {
    color: #919191;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
}
input:-moz-placeholder {
    color: #919191;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
}
input::-moz-placeholder {
    color: #919191;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    opacity: 1;
    /* Since FF19 lowers the opacity of the placeholder by default */
}
input:-ms-input-placeholder {
    color: #919191;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
}
input:optional {
    border-left-color: #999;
}
input.error, input:required:invalid, select:required:invalid, input:focus:invalid, select:focus:invalid{
    border-left-color: red;
    color: red;
}
input:required:invalid:not([type="radio"]){
    background: url("../assets/images/icones/invalid.png") no-repeat 95% 50% white;
    background-size: 25px;
}
input:required:valid:not([type="radio"]){
    border-left-color: #27ae61;
    background: url("../assets/images/icones/valid.png") no-repeat 95% 50% white;
    background-size: 25px;
}
input.error::-webkit-input-placeholder { /* Chrome */
    color: red;
}
:focus::-webkit-input-placeholder {
    opacity: 0.5;
}
::-webkit-input-placeholder { /* Chrome */
    opacity: 1;
    transition: opacity 250ms ease-in-out;
}

input.error:-ms-input-placeholder { /* IE 10+ */
    color: red !important;
    transition: opacity 250ms ease-in-out;
}
:focus:-ms-input-placeholder {
    opacity: 0.5;
}
:-ms-input-placeholder { /* IE 10+ */
    opacity: 1;
    transition: opacity 250ms ease-in-out;
}

input.error::-moz-placeholder { /* Firefox 19+ */
    color: red !important;
}
:focus::-moz-placeholder {
    opacity: 0.5;
}
::-moz-placeholder {
    opacity: 1;
    transition: opacity 250ms ease-in-out;
}

input.error:-moz-placeholder { /* Firefox 4 - 18 */
    color: red !important;
}
:focus:-moz-placeholder {
    opacity: 0.5;
}
:-moz-placeholder {
    opacity: 1;
    transition: opacity 250ms ease-in-out;
}

form select {
    width: 100%;
    height: 50px;
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    font-size: 14px;
    color: black;
    background: white;
    border: 1px solid #eeeeee;
    text-indent: 14px;
    margin-bottom: 10px;

    -moz-transition-duration: 0.3s;
    -webkit-transition-duration: 0.3s;
    -o-transition-duration: 0.3s;
    transition-duration: 0.3s;

    -webkit-border-radius: 0!important;
    -moz-border-radius: 0!important;
    border-radius: 0!important;
}

/***** AUTOCOMPLETE *****/
/************************/

.autocomplete-suggestions {
    border: 1px solid #999;
    background: #FFF;
    overflow: auto;
}
.autocomplete-suggestion {
    padding: 2px 5px;
    white-space: nowrap;
    overflow: hidden;
}
.autocomplete-suggestions strong {
    font-weight: normal;
    color: #27ae61;
}
.autocomplete-selected {
    background: #27ae61;
    color: white;
    cursor: pointer
}
.autocomplete-selected strong {
    color: white;
}
.autocomplete-group {
    padding: 2px 5px;
}
.autocomplete-group strong {
    display: block;
    border-bottom: 1px solid #000;
}

/***** BS-CALLOUT *****/
/**********************/

.bs-callout {
    background: white;
    padding: 20px;
    margin: 20px 0;
    border: 1px solid #eee;
    border-left-width: 5px;
    border-radius: 3px;
}
.bs-callout h4 {
    margin-top: 0;
    margin-bottom: 5px;
}
.bs-callout p:last-child {
    margin-bottom: 0;
}
.bs-callout code {
    border-radius: 3px;
}
.bs-callout+.bs-callout {
    margin-top: -5px;
}
.bs-callout-default {
    border-left-color: #777;
}
.bs-callout-default h4 {
    color: #777;
}
.bs-callout-primary {
    border-left-color: #428bca;
}
.bs-callout-primary h4 {
    color: #428bca;
}
.bs-callout-success {
    border-left-color: #5cb85c;
}
.bs-callout-success h4 {
    color: #5cb85c;
}
.bs-callout-danger {
    background: #fdf7f7;
    border-left-color: #d9534f;
    color: #d9534f;
}
.bs-callout-danger h4 {
    color: #d9534f;
}
.bs-callout-warning {
    border-left-color: #f0ad4e;
}
.bs-callout-warning h4 {
    color: #f0ad4e;
}
.bs-callout-info {
    border-left-color: #5bc0de;
}
.bs-callout-info h4 {
    color: #5bc0de;
}
.bs-callout .ionicons{
    float: left;
    font-size: 30px;
    margin-right: 10px;
}

.alert {
    padding: 8px 35px 8px 14px;
    margin-bottom: 18px;
    color: #c09853;
    text-shadow: 0 1px 0 rgba(255, 255, 255, 0.5);
    background-color: #fcf8e3;
    border: 1px solid #fbeed5;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}
.alert-heading {
    color: inherit;
}
.alert .close {
    position: relative;
    top: -2px;
    right: -21px;
    line-height: 18px;
}
.alert-success {
    color: #468847;
    background-color: #dff0d8;
    border-color: #d6e9c6;
}
.alert-danger,
.alert-error {
    color: #b94a48;
    background-color: #f2dede;
    border-color: #eed3d7;
}
.alert-info {
    color: #3a87ad;
    background-color: #d9edf7;
    border-color: #bce8f1;
}

.com-alert-danger{
    background: #fdf7f7 !important;
    border-right: solid 6px #eed3d7 !important;
    color: #b94a48 !important;
}
.com-alert{
    margin: 20px 0;
    padding: 10px;
}

.text-warning{
    color: #f0ad4e;
}

.text-info{
    color: #3a87ad;
}

div.help{
    text-align: justify;
    font-size: 11px;
    padding: 10px;
    color: #3a87ad;
}

div.help > i{
    padding-right: 3px;
}

.g-recaptcha > div, .g-recaptcha iframe, .rc-anchor.rc-anchor-normal{
    width: calc(100% - 2px) !important;
}

.topbar-btn.signout{
    margin-left: 0 !important;
    background: none !important;
    width: 60px !important;
    font-size: 20px !important;
}

.topbar-btn.signout:hover,.topbar-btn.signout:focus{
    background: #dc3545 !important;
}

.ui.vertical.divider.complete:after, .ui.vertical.divider.complete:before{
    height: 100% !important;
}

#form-profile .form-group{
    display: flex;
    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
    margin-right: -15px;
    margin-left: -15px;
    margin-bottom: 0px;
}

.navbar-nav .nav-item i.la{
    font-size: 1.1rem;
}