﻿.background {
    position: fixed;
    z-index: -1;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    object-fit: cover;
    height: 100%;
    width: 100%;
}

.form-btn, .form-btn-cancel, .form-btn-error {
    background: #301a1a;
    color: #fff;
    cursor: pointer;
    border: 1px solid transparent;
    padding: 10px 24px;
    margin-top: 2.25rem;
    position: relative;
    z-index: 0;
    transition: transform 0.28s ease;
    will-change: transform;
    font-size: 16px;
}

    .form-btn::before, .form-btn::after, .form-btn-cancel::before, .form-btn-cancel::after, .form-btn-error::before, .form-btn-error::after {
        position: absolute;
        content: "";
        top: -1px;
        left: -1px;
        right: -1px;
        bottom: -1px;
    }

    .form-btn::before, .form-btn-cancel::before, .form-btn-error::before {
        background: #2881db;
        z-index: -2;
    }

    .form-btn::after, .form-btn-cancel::after, .form-btn-error::after {
        background: #893594;
        z-index: -1;
        opacity: 0;
        transition: opacity 0.28s ease;
        will-change: opacity;
    }

    .form-btn:focus, .form-btn-cancel:focus, .form-btn-error:focus {
        outline: none;
    }

        .form-btn:focus::after, .form-btn:hover::after, .form-btn-cancel:focus::after, .form-btn-cancel:hover::after, .form-btn-error:focus::after, .form-btn-error:hover::after {
            opacity: 0.3;
        }

    .form-btn:active, .form-btn-cancel:active, .form-btn-error:active {
        transform: translateY(1px);
    }

    .form-btn-error::before {
        background: #d9534f;
    }

.form-btn-cancel {
    transition: color 0.28s ease, transform 0.28s ease;
    color: #444444;
    border-color: currentColor;
    will-change: color, transform;
    font-size: 16px;
}

    .form-btn-cancel.-nooutline {
        border-color: transparent;
    }

    .form-btn-cancel::before {
        background: #d1bae7;
        opacity: 1;
        transition: opacity 0.28s ease;
        will-change: opacity;
    }


    .form-btn-cancel::after {
        display: none;
    }

    .form-btn-cancel:focus, .form-btn-cancel:hover {
        color: #fff;
    }

        .form-btn-cancel:focus::before, .form-btn-cancel:hover::before {
            opacity: 1;
        }

.form-btn-block {
    display: block;
    width: 100%;
    padding: 5px;
}

.bold {
    font-weight: 600 !important
}

.form-checkbox, .form-radio {
    position: relative;
    margin-top: -1rem;
    margin-bottom: 2rem;
    text-align: left;
}

.form-checkbox-inline .form-checkbox-label, .form-radio-inline .form-radio-label {
    display: inline-block;
    margin-right: 10px;
    margin-left: -4px;
}

.form-checkbox-legend, .form-radio-legend {
    margin: 0 0 0.125rem 0;
}

.form-checkbox-label, .form-radio-label {
    position: relative;
    cursor: pointer;
    padding-left: 1.5rem;
    text-align: left;
    display: block;
    margin-bottom: 0.5rem;
}

    .form-checkbox-label:hover i, .form-radio-label:hover i {
        color: #337ab7;
    }

    .form-checkbox-label span, .form-radio-label span {
        display: block;
    }

    .form-checkbox-label input, .form-radio-label input {
        width: auto;
        opacity: 0.0001;
        position: absolute;
        left: 0.25rem;
        top: 0.25rem;
        margin: 0;
        padding: 0;
    }

.form-checkbox-button {
    position: absolute;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    display: block;
    color: #999;
    left: 0;
    top: 0.25rem;
    width: 1rem;
    height: 1rem;
    z-index: 0;
    border: 0.125rem solid currentColor;
    border-radius: 0.0625rem;
    transition: color 0.28s ease;
    will-change: color;
}

    .form-checkbox-button::before, .form-checkbox-button::after {
        position: absolute;
        height: 0;
        width: 0.2rem;
        background-color: #337ab7;
        display: block;
        transform-origin: left top;
        border-radius: 0.25rem;
        content: "";
        transition: opacity 0.28s ease, height 0s linear 0.28s;
        opacity: 0;
        will-change: opacity, height;
    }

    .form-checkbox-button::before {
        top: 0.65rem;
        left: 0.38rem;
        transform: rotate(-135deg);
        box-shadow: 0 0 0 0.0625rem #fff;
    }

    .form-checkbox-button::after {
        top: 0.3rem;
        left: 0;
        transform: rotate(-45deg);
    }

.form-checkbox-field:checked ~ .form-checkbox-button {
    color: #337ab7;
}

    .form-checkbox-field:checked ~ .form-checkbox-button::after, .form-checkbox-field:checked ~ .form-checkbox-button::before {
        opacity: 1;
        transition: height 0.28s ease;
    }

    .form-checkbox-field:checked ~ .form-checkbox-button::after {
        height: 0.5rem;
    }

    .form-checkbox-field:checked ~ .form-checkbox-button::before {
        height: 1.2rem;
        transition-delay: 0.28s;
    }

.form-radio-button {
    position: absolute;
    left: 0;
    cursor: pointer;
    display: block;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #5d5b5b;
}

    .form-radio-button::before, .form-radio-button::after {
        content: "";
        position: absolute;
        left: 0;
        top: 0;
        margin: 0.25rem;
        width: 14px;
        height: 14px;
        transition: transform 0.28s ease, color 0.28s ease;
        border-radius: 50%;
        border: 1px solid #404040;
        will-change: transform, color;
    }

    .form-radio-button::after {
        transform: scale(0);
        background-color: #337ab7;
        border-color: #337ab7;
    }

.form-radio-field:checked ~ .form-radio-button::after {
    transform: scale(0.5);
}

.form-radio-field:checked ~ .form-radio-button::before {
    color: #337ab7;
}

.form-has-error .form-checkbox-button, .form-has-error .form-radio-button {
    color: #d9534f;
}

.clientbg {
    background: #e4edfa
}


.form-card {
    border-radius: 2px;
    background: #fff;
    /*box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);*/
    transition: all 0.56s cubic-bezier(0.25, 0.8, 0.25, 1);
    max-width: 700px;
    padding: 0;
    margin: 50px auto;
}

/*.form-card:hover, .form-card:focus {
        box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
    }

    .form-card:focus-within {
        box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
    }*/

.form-actions {
    position: relative;
    display: -ms-flexbox;
    display: flex;
    margin-top: -11px;
    /* padding-bottom: 15px; */
    background: #fff;
    text-align: right;
    padding: 0px 16px 16px;
}

    .form-actions .form-btn-cancel {
        -ms-flex-order: -1;
        order: -1;
    }

    .form-actions::before {
        content: "";
        /* position: absolute; */
        /* width: 100%; */
        /* height: 1px; */
        /* background: #999; */
        /* opacity: 0.3; */
    }

    .form-actions > * {
        -ms-flex: 1;
        flex: 1;
        margin-top: 6px;
        /* right: 0px; */
    }

.form-fieldset {
    padding: 30px;
    border: 0;
}

    .form-fieldset + .form-fieldset {
        margin-top: 15px;
    }

.form-legend {
    padding: 0em 0px 15px;
    margin: 0 0 -0.5em;
    font-size: 1.5rem;
    text-align: center;
}

    .form-legend + p {
        margin-top: 1rem;
    }

.mb25 {
    margin-bottom: 25px !important
}

.form-element {
    position: relative;
    margin-top: 1rem;
    margin-bottom: 2rem;
}

.form-elementpop {
    position: relative;
    margin-top: 2.5rem;
    margin-bottom: 0.25rem;
}

.form-element-hint {
    font-weight: 400;
    color: #a6a6a6;
    display: block;
}

.personalinfo {
    margin: -30px;
    border-bottom: 1px solid #e8e3f3;
    padding: 7px 30px 7px;
    font-weight: 600;
    color: #423f3f;
    background: #ccc2e3;
    margin-top: 20px;
}

.form-element-bar {
    position: relative;
    /*height: 1px;
    background: #999;*/
    display: block;
    border-bottom: 1px solid #989898
}

    .form-element-bar::after {
        content: "";
        position: absolute;
        bottom: -1px;
        left: 0;
        right: 0;
        border-bottom: 1px solid #2a3c61;
        display: block;
        transform: rotateY(90deg);
        transition: transform 0.28s ease;
        will-change: transform;
    }

.m-0 {
    margin: 0px !important
}

.datepleft {
    padding-left: 0px !important
}

.textalignrightbtn {
    text-align: right;
    border-top: 1px solid #d0d0d0;
    padding: 15px 0px;
    margin-top: 15px;
}

.textalignrightadd {
    text-align: right
}

.floatright {
    float: right;
    color: #f2184f;
}

.form-element-label {
    position: absolute;
    top: 0.75rem;
    line-height: 1.5rem;
    pointer-events: none;
    padding-left: 0px;
    z-index: 1;
    font-size: 13px;
    font-weight: normal;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    margin: 0;
    transform: translateY(-50%);
    /* transform-origin: left center; */
    /* transition: transform 0.28s ease, color 0.28s linear, opacity 0.28s linear; */
    /* will-change: transform, color, opacity; */
}

.form-element-field {
    outline: none;
    height: 1.5rem;
    display: block;
    background: none;
    padding-left: 5px;
    font-size: 13px;
    border: 0 solid transparent;
    line-height: 1.5;
    box-shadow: none;
    opacity: 1;
    transition: opacity 0.28s ease;
    will-change: opacity;
    width: 100%;
    border-top: none;
    border-right: none;
    border-left: none;
}

    .form-element-field:-ms-input-placeholder {
        color: #a6a6a6;
        transform: scale(1);
        transform-origin: left top;
    }

    .form-element-field::placeholder {
        color: #a6a6a6;
        transform: scale(1);
        transform-origin: left top;
    }

    .form-element-field:focus ~ .form-element-bar::after {
        transform: rotateY(0deg);
    }

    .form-element-field:focus ~ .form-element-label {
        color: #2a3c61;
    }

    .form-element-field.-hasvalue, .form-element-field:focus {
        opacity: 1;
    }

        .form-element-field.-hasvalue ~ .form-element-label, .form-element-field:focus ~ .form-element-label {
            transform: translateY(-100%) translateY(-.7em) translateY(0px) scale(1);
            cursor: pointer;
            pointer-events: none;
        }

.form-has-error .form-element-label.form-element-label, .form-has-error .form-element-hint {
    color: #d9534f;
}

.form-has-error .form-element-bar, .form-has-error .form-element-bar::after {
    background: #d9534f;
}

.form-is-success .form-element-label.form-element-label, .form-is-success .form-element-hint {
    color: #259337;
}

.form-is-success .form-element-bar::after {
    background: #259337;
}

input.form-element-field:not(:placeholder-shown), textarea.form-element-field:not(:placeholder-shown) {
    opacity: 1;
}

    input.form-element-field:not(:placeholder-shown) ~ .form-element-label, textarea.form-element-field:not(:placeholder-shown) ~ .form-element-label {
        transform: translateY(-100%) translateY(-0.55em) translateY(-2px) scale(1);
        cursor: pointer;
        pointer-events: auto;
    }

textarea.form-element-field {
    min-height: 0rem;
    width: 100% !important
}

textarea {
    resize: auto !important;
}

select.form-element-field {
    cursor: pointer;
}

.form-select-placeholder {
    color: #a6a6a6;
    display: none;
}

.form-select .form-element-bar::before {
    content: "";
    position: absolute;
    height: 0.5em;
    width: 0.5em;
    border-bottom: 1px solid #999;
    border-right: 1px solid #999;
    display: block;
    right: 0.5em;
    bottom: 0;
    transition: transform 0.28s ease;
    transform: translateY(-100%) rotateX(0deg) rotate(45deg);
    will-change: transform;
}

.form-select select:focus ~ .form-element-bar::before {
    transform: translateY(-50%) rotateX(180deg) rotate(45deg);
}

.form-element-field[type="number"] {
    -moz-appearance: textfield;
}

    .form-element-field[type="number"]::-webkit-outer-spin-button, .form-element-field[type="number"]::-webkit-inner-spin-button {
        -webkit-appearance: none;
        margin: 0;
    }

/****** CODE ******/

.file-upload {
    display: block;
    text-align: center;
}

    .file-upload .file-select {
        display: block;
        border-bottom: 1px solid #989898;
        cursor: pointer;
        height: 40px;
        line-height: 40px;
        text-align: left;
        background: #fff;
        overflow: initial;
        position: relative;
        margin-top: -15px;
    }

        .file-upload .file-select .file-select-button {
            background: #ececec;
            padding-right: 5px;
            display: inline-block;
            height: 40px;
            line-height: 40px;
            padding-left: 5px;
            border-bottom: 1px solid #989898;
        }

        .file-upload .file-select .file-select-name {
            line-height: 40px;
            display: inline;
            padding: 0 6px;
            font-size: 12px;
            position: absolute;
            background: #34ce20;
            width: 50%;
            overflow: hidden;
            white-space: nowrap;
        }

.bgwhite {
    background: none
}

.file-upload .file-select .file-select-name .bgcolor {
    line-height: 40px;
    display: inline-flex;
    padding: 0 10px;
    font-size: 12px;
    position: absolute;
    background: green;
}

.errormes {
    color: #f2184f;
    vertical-align: top;
}

.file-upload .file-select:hover {
    border-color: #ec9f1b;
    transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
}

    .file-upload .file-select:hover .file-select-button {
        background: #ec9f1b;
        color: #FFFFFF;
        transition: all .2s ease-in-out;
        -moz-transition: all .2s ease-in-out;
        -webkit-transition: all .2s ease-in-out;
        -o-transition: all .2s ease-in-out;
    }


.file-upload.active .file-select {    
    transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
}

    .file-upload.active .file-select .file-select-button {
        background: #3fa46a;
        color: #FFFFFF;
        transition: all .2s ease-in-out;
        -moz-transition: all .2s ease-in-out;
        -webkit-transition: all .2s ease-in-out;
        -o-transition: all .2s ease-in-out;
    }

.file-upload .file-select input[type=file] {
    z-index: 100;
    cursor: pointer;
    position: absolute;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    opacity: 0;
    filter: alpha(opacity=0);
}

.file-upload .file-select.file-select-disabled {
    opacity: 0.65;
}

    .file-upload .file-select.file-select-disabled:hover {
        cursor: default;
        display: block;
        border: 2px solid #dce4ec;
        color: #34495e;
        cursor: pointer;
        height: 40px;
        line-height: 40px;
        margin-top: 5px;
        text-align: left;
        background: #FFFFFF;
        overflow: hidden;
        position: relative;
    }

        .file-upload .file-select.file-select-disabled:hover .file-select-button {
            background: #dce4ec;
            color: #666666;
            padding: 0 10px;
            display: inline-block;
            height: 40px;
            line-height: 40px;
        }

        .file-upload .file-select.file-select-disabled:hover .file-select-name {
            line-height: 40px;
            display: inline-block;
            padding: 0 10px;
        }

/*------------------------------------------------------datepicker-------------------------------------*/

label {
    position: relative;
    display: block;
}

    label > input {
        position: relative;
        background-color: transparent;
        border: none;
        border-bottom: 1px solid #9e9e9e;
        border-radius: 0;
        outline: none;
        height: 40px;
        width: 100%;
        font-size: 13px;
        padding: 0;
        box-shadow: none;
        box-sizing: content-box;
        transition: all .3s;
        padding: 2px 2px;
    }

        label > input:valid + span {
            transform: translateY(-25px) scale(1);
            transform-origin: 0;
        }

        label > input:valid {
            border-bottom: 1px solid #3F51B5;
        }

    label > span {
        position: absolute;
        top: 18px;
        left: 0;
        font-size: 13px;
        cursor: text;
        transition: .2s ease-out;
        padding: 2px 2px;
    }

    label > input:focus + span {
        transform: translateY(-25px) scale(0.8);
        transform-origin: 0;
        color: #3F51B5;
    }

    label > input:focus {
        border-bottom: 1px solid #3F51B5;
        box-shadow: 0 1px 0 0 #3F51B5;
    }

.datepicker {
    border-radius: 0;
    padding: 0;
}

.datepicker-days table thead, .datepicker-days table tbody, .datepicker-days table tfoot {
    padding: 10px;
    display: list-item;
}

.datepicker-days table thead, .datepicker-months table thead, .datepicker-years table thead, .datepicker-decades table thead, .datepicker-centuries table thead {
    background: #3546b3;
    color: #ffffff;
    border-radius: 0;
}

    .datepicker-days table thead tr:nth-child(2n+0) td, .datepicker-days table thead tr:nth-child(2n+0) th {
        border-radius: 3px;
    }

    .datepicker-days table thead tr:nth-child(3n+0) {
        text-transform: uppercase;
        font-weight: 300 !important;
        font-size: 11px;
        color: #fff;
    }

.table-condensed > tbody > tr > td, .table-condensed > tbody > tr > th, .table-condensed > tfoot > tr > td, .table-condensed > tfoot > tr > th, .table-condensed > thead > tr > td, .table-condensed > thead > tr > th {
    padding: 5px 10px;
}

.datepicker-months table thead td, .datepicker-months table thead th, .datepicker-years table thead td, .datepicker-years table thead th, .datepicker-decades table thead td, .datepicker-decades table thead th, .datepicker-centuries table thead td, .datepicker-centuries table thead th {
    border-radius: 0;
}

.datepicker td, .datepicker th {
    border-radius: 50%;
    padding: 0 12px;
}

.datepicker-days table thead, .datepicker-months table thead, .datepicker-years table thead, .datepicker-decades table thead, .datepicker-centuries table thead {
    background: #202c45;
    color: #ffffff;
    border-radius: 0;
}

.datepicker table tr td.active, .datepicker table tr td.active:hover, .datepicker table tr td.active.disabled, .datepicker table tr td.active.disabled:hover {
    background-image: none;
}

.datepicker .prev, .datepicker .next {
    color: rgba(255, 255, 255, 0.5);
    transition: 0.3s;
    width: 37px;
    height: 37px;
}

    .datepicker .prev:hover, .datepicker .next:hover {
        background: transparent;
        font-size: 13px;
    }

.datepicker .datepicker-switch {
    font-size: 13px;
    font-weight: 400;
    transition: 0.3s;
    text-align: center;
}

    .datepicker .datepicker-switch:hover {
        color: rgba(255, 255, 255, 0.7);
        background: transparent;
    }

.datepicker table tr td span {
    border-radius: 2px;
    margin: 3%;
    width: 27%;
}

    .datepicker table tr td span.active, .datepicker table tr td span.active:hover, .datepicker table tr td span.active.disabled, .datepicker table tr td span.active.disabled:hover {
        background-color: #3546b3;
        background-image: none;
    }

.dropdown-menu {
    border: 1px solid rgba(0,0,0,.1);
    box-shadow: 0 6px 12px rgba(0,0,0,.175);
}

.datepicker-dropdown.datepicker-orient-top:before {
    border-top: 7px solid rgba(0,0,0,.1);
}

.margcheckbox {
    margin: -3px 0px !important
}


/*------------------------------------------------------datepicker end-------------------------------------*/
.nav-pills-custom .nav-link {
    color: #aaa;
    background: #fff;
    position: relative;
}

    .nav-pills-custom .nav-link.active {
        color: #45b649;
        background: #fff;
    }

@media (min-width: 992px) {
    .nav-pills-custom .nav-link::before {
        content: '';
        display: block;
        border-top: 8px solid transparent;
        border-left: 10px solid #fff;
        border-bottom: 8px solid transparent;
        position: absolute;
        top: 50%;
        right: -10px;
        transform: translateY(-50%);
        opacity: 0;
    }
}

.nav-pills-custom .nav-link.active::before {
    opacity: 1;
}




/* This css is for normalizing styles. You can skip this. */
*, *:before, *:after {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

.form-group input {
    padding: 0;
    height: initial;
    width: initial;
    margin-bottom: 0;
    display: none;
    cursor: pointer;
}

.form-group label {
    position: relative;
    cursor: pointer;
}

    .form-group label:before {
        content: '';
        -webkit-appearance: none;
        background-color: transparent;
        border: 2px solid #929292;
        box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05), inset 0px -15px 10px -12px rgba(0, 0, 0, 0.05);
        padding: 6px;
        display: inline-block;
        position: relative;
        vertical-align: sub;
        cursor: pointer;
        margin-right: 5px;
        border-radius: 4px;
    }

.form-group input:checked + label:after {
    content: '';
    display: block;
    position: absolute;
    top: 2px;
    left: 9px;
    width: 6px;
    height: 14px;
    border: solid #0079bf;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkboxaddress {
    display: -webkit-inline-box;
    top: 10px;
}

.mr5 {
    margin-left: 5px;
}




/*-----------------------------------------------------------------------------------------------------------*/


.file-upload .file-select .file-select-namecate {
    line-height: 40px;
    display: inline;
    padding: 7px 6px;
    font-size: 13px;
    /* position: absolute; */
    /* background: #fff; */
    width: 100%;
}

.colorfile .file-select .file-select-button {
    background: #dce4ec;
    padding: 0 10px;
    display: inline-block;
    height: 40px;
    line-height: 40px;
    border-bottom: 1px solid #989898;
}

.colorfile .file-select:hover .file-select-button {
    background: #ec9f1b;
    color: #FFFFFF;
    transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
}

.colorfile.active .file-select {   
    transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    background: #34ce20;
}

    .colorfile.active .file-select .file-select-button {
        background: #ececec;
        color: #333;
        transition: all .2s ease-in-out;
        -moz-transition: all .2s ease-in-out;
        -webkit-transition: all .2s ease-in-out;
        -o-transition: all .2s ease-in-out;
    }


/*-----------------------------------------------------------------------------------------------------------*/


.file-upload .file-select .file-select-namephoto {
    line-height: 40px;
    display: inline;
    padding: 7px 6px;
    font-size: 13px;
    /* position: absolute; */
    /* background: #fff; */
    width: 100%;
}

.Latestphoto .file-select .file-select-button {
    background: #dce4ec;
    padding: 0 10px;
    display: inline-block;
    height: 40px;
    line-height: 40px;
    border-bottom: 1px solid #989898;
}

.Latestphoto .file-select:hover .file-select-button {
    background: #ec9f1b;
    color: #FFFFFF;
    transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
}

.Latestphoto.active .file-select {
    transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    background: #34ce20;
}

    .Latestphoto.active .file-select .file-select-button {
        background: #ececec;
        color: #333;
        transition: all .2s ease-in-out;
        -moz-transition: all .2s ease-in-out;
        -webkit-transition: all .2s ease-in-out;
        -o-transition: all .2s ease-in-out;
    }


/*-----------------------------------------------------------------------------------------------------------*/


.file-upload .file-select .file-select-namedoc {
    line-height: 40px;
    display: inline;
    padding: 7px 6px;
    font-size: 13px;
    /* position: absolute; */
    /* background: #fff; */
    width: 100%;
}

.uploaddoc .file-select .file-select-button {
    background: #dce4ec;
    padding: 0 10px;
    display: inline-block;
    height: 40px;
    line-height: 40px;
    border-bottom: 1px solid #989898;
}

.uploaddoc .file-select:hover .file-select-button {
    background: #ec9f1b;
    color: #FFFFFF;
    transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
}

.uploaddoc.active .file-select {
    transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    background: #34ce20;
    border-bottom: 1px solid #989898;
}

    .uploaddoc.active .file-select .file-select-button {
        background: #ececec;
        color: #333;
        transition: all .2s ease-in-out;
        -moz-transition: all .2s ease-in-out;
        -webkit-transition: all .2s ease-in-out;
        -o-transition: all .2s ease-in-out;
    }
     
    
/*-----------------------------------------------------------------------------------------------------------*/


.file-upload .file-select .file-select-namesign {
    line-height: 40px;
    display: inline;
    padding: 7px 6px;
    font-size: 13px;
    /* position: absolute; */
    /* background: #fff; */
    width: 100%;
}

.uploadsign .file-select .file-select-button {
    background: #dce4ec;
    padding: 0 10px;
    display: inline-block;
    height: 40px;
    line-height: 40px;
    border-bottom: 1px solid #989898;
}

.uploadsign .file-select:hover .file-select-button {
    background: #ec9f1b;
    color: #FFFFFF;
    transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
}

.uploadsign.active .file-select {
    transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -webkit-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    background: #34ce20;
    border-bottom: 1px solid #989898;
}

    .uploadsign.active .file-select .file-select-button {
        background: #ececec;
        color: #333;
        transition: all .2s ease-in-out;
        -moz-transition: all .2s ease-in-out;
        -webkit-transition: all .2s ease-in-out;
        -o-transition: all .2s ease-in-out;
    }
     
