
.loader{
    position: fixed;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    /*background: rgba(255, 255, 255, 0.4);*/
    z-index: 50;
}

.loader:before{
    height: 110px;
    width: 110px;
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    margin: -55px 0 0 -55px;
    background: #323232;
    z-index: 10;
    box-shadow: 0 0 15px -2px rgba(0,0,0,.2)
}
.loader:after{
    content:'';
    display:block;
    position:absolute;
    opacity:0;
    width: 50px;
    height: 50px;
    border: 4px solid rgba(228, 44, 42, 0.23);
    border-right-color: #e42c2a;
    -webkit-border-radius:50%;
    -moz-border-radius:50%;
    border-radius:50%;
    left:50%;
    top:50%;
    
   /* transition:rotate 0.2s linear;*/
   animation:custom .6s linear infinite;

    margin: -25px 0 0 -25px;
    z-index: 20;
}
.loader:after {
    opacity:1;
}
.loader:after{
    /*display: none;*/
}

@keyframes custom {
    0%{
        transform: rotate(0deg);
    }
    100%{
        transform: rotate(360deg);

    }
}
/*@-webkit-keyframes rotate {
    from {-webkit-transform: rotate(0deg);}
    to {-webkit-transform: rotate(360deg);}
}

@-moz-keyframes rotate {
    from {-moz-transform: rotate(0deg);}
    to {-moz-transform: rotate(360deg);}
}*/


.listElement{
    border-top: 1px solid #a9a9a9;
    padding: 10px 0;
}
.listElement p,
.listElement{
    font-size: 13px;
    line-height: 17px;
}

.memberWrap fieldset{
    border: none;
    padding: 0;
    margin-bottom: 15px;
    /*background: #ddd;*/
}
.filterWrap label{
    font-weight: 500;
}
.memberWrap input,
.memberWrap select{
    width: 100%;
    box-sizing: border-box;
    padding: 2px 10px;
    height: 30px;
    line-height: 30px;
    border: 1px solid #aaa;
    border-radius: 3px;
}

.listWrap{
    padding-top: 45px;
}
.filterWrap .column{
    padding-bottom: 4px;
}
.listWrap .row{
    display: flex;
    flex-wrap: wrap;
}

input.datePicker {
    font-size:11px;
}

body .filterWrap .select2-container--default .select2-selection--multiple .select2-selection__choice{
    font-size: 12px;
    background: #f0f0f0;
    border:none;
    max-width: 120px;
    overflow: hidden;
    text-overflow: ellipsis;
}

body .filterWrap .select2-container--default .select2-selection--single{
    width: 100%;
    box-sizing: border-box;
    padding: 2px 10px;
    height: 30px;
    line-height: 30px;
    border: 1px solid #aaa;
    border-radius: 3px;
}
body .filterWrap .select2-container--default .select2-selection--multiple{
    width: 100%;
    box-sizing: border-box;
    padding: 2px 10px;
    height: 30px;
    line-height: 30px;
    border: 1px solid #aaa;
    border-radius: 3px;
}
body .filterWrap .select2-container--default .select2-selection--multiple input{
    height: auto;
    line-height: 25px;
}
body .select2-container.select2-container--default{
    width: 100% !important;
}
.formRow{
    background: #f5f5f5;
    padding: 15px;
    margin-bottom: 10px;
}
.memberFormWrap .formRow input[type=text], .memberFormWrap .formRow input[type=number], body .memberFormWrap .select2-container--default .select2-selection--single{
    background: #fff;
    border-color: transparent;
    color: #333;
    outline: none;
    height: 33px;
    border-radius: 4px;
}
body .memberFormWrap .select2-container--default .select2-selection--single .select2-selection__rendered{
    color: #333;
}
.memberLabel, .formLabelInline{
    color: #333;
    font-size: 14px;
}

.checkInput{
    display: none;
}
.checkWrap{
    display: flex;
    align-items: center;
}
.checkWrap label{
    cursor: pointer;
    display: block;
}
.memberFormWrap .formRow label.checkbox{
    display: flex;
    justify-content: center;
    align-items: center;
    height: 20px;
    width: 20px;
    border: 2px solid #aaa;
    border-radius: 3px;
    margin: 0;
    margin-right: 5px;
    box-sizing: border-box;
}
.checkWrap label.checkbox > .fa{
    opacity: 0;
    font-size: 0;
    transition: all 200ms;
}
.checkWrap:hover label.checkbox > .fa{
    color: #aaa;
    opacity: 1;
    font-size: 12px;
}
.checkInput:checked + label.checkbox{
    border-color: #e42c2a;
    background-color: #e42c2a;
}
.checkInput:checked + label.checkbox > .fa{
    color: #fff;
    opacity: 1;
    font-size: 12px;
}

.shipOwnerTypeRow > .row{
    margin-bottom: 10px;
}
.memberFormWrap .formRow.notValid{
    background: none !important;
}

.memberNav{
    margin-bottom: 45px;
    background: #f5f5f5;
    overflow: hidden;
}
.memberNav ul{
    display: flex;
    flex-wrap: wrap;
}
#wrapper .memberNav li a{
    display: flex;
    line-height: 24px;
    padding: 8px 20px 8px 12px;
    /*color: #fff;*/
    color: #333;
    font-weight: normal;
    position: relative;
/*    border-right: 5px solid #eee;*/
    transition: all 250ms;
    font-size: 12px;
}
@media (max-width:768px) {
    #wrapper .memberNav li{
        width: 100%;
    }
}
#wrapper .memberNav li a:hover{
    background: rgba(0,0,0,.2);
}
#wrapper .memberNav li.active a{
    background: #e42c2a;
    color: #fff;
}
#wrapper .memberNav li.done a{
}
.memberNav li a .number{
    display: block;
    height: 23px;
    width: 23px;
    border-radius: 50%;
    line-height: 23px;
    text-align: center;
    border: 1px solid #333;
    font-weight: bold;
    margin-right: 5px;
    font-size: 11px;
}
#wrapper .memberNav li.active a .number{
    border: 1px solid #fff;

}
.memberContent .formRow .row{
    margin-right: -2px;
    margin-left: -2px;
}
.memberContent .formRow .column{
    padding-left: 2px;
    padding-right: 2px;
}
/*#wrapper .memberNav li a:before,
#wrapper .memberNav li a:after{
    height: 39px;
    width: 37px;
    background: #456388;
    border-left: 2px solid #eee;
    content: '';
    position: absolute;
    right: -25px;
    top: -21px;
    transform: rotate(-45deg);
}
#wrapper .memberNav li a:after{
    top: auto;
    bottom: -21px;
    transform: rotate(45deg);
}*/


#userDataForm div.formRow.shipOwnerTypeRow.hiddenRow{
    display: none;
}

/* fight mpFormvalidate.css */
.formRow .formLabelInline{
    display:inline;
}
