.form-wrapper{
    background-color: #eee;
    padding:20px;
}
.form-control:focus{
    box-shadow: none;
    outline: none !important;
}
.input-form{
    width: 30%;
    height: 40px;
    border:1px solid #ccc;
    border-radius: 4px;
    display: inline-block;
    padding-left: 10px;
    padding-right: 10px;
}
.input-form:focus{
    box-shadow: none;
    outline: none !important;
    border:1px solid #33afa3;
   /* background: #e8e7e7;*/    
}
textarea.input-form{
    height: 100px;
    width: 70%;
    display: block;
}

.form-style{
    border-bottom: 1px solid #ccc;
    border-right: 0;
    border-left: 0;
    border-top: 0;
    width: 100%;
    height: 40px;
}
.form-style:focus{
    outline: none !important;
    border-bottom: 2px solid #333;
}


/*Button Layout*/
/*.btn{
    padding-right: 20px;
    padding-left: 20px;
    border:none;
    border-radius: 2px;
    font-size: 14px;
}*/
.btn:focus{
    outline: none !important;
}
.app-btn-primary, .app-btn-primary:hover, .app-btn-primary:focus {
    /* background: #01579b; */
    background: linear-gradient(60deg, #26c6da, #00acc1);
    color: #fff;
    border: 1px solid #26c6da;
}

.btn-create-new, .btn-create-new:hover, .btn-create-new:focus{
    /*background: #2b323a;*/
    background: #2a338e;
    color: #ddd;
    font-size: 13px;
    /* height: 40px;*/
}

.btn-save, .btn-save:hover, .btn-save:focus{
    /*background: #2b323a;*/
    background: linear-gradient(60deg, #26c6da, #00acc1);
    color: #fff;
    border: 1px solid #26c6da;
}
.btn-reset, .btn-reset:focus, .btn-reset:hover{
    background: #ccc;
    color: #333;
    margin-right: 10px;
}
.btn-xs{
    padding: 1px 5px;
    font-size: 12px;
    line-height: 1.5;
    height: unset;
}



/*Modal Layout*/
.app-modal{
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 99999;
    background: rgba(0,0,0,0.7);
    display: none;
}
.app-modal-header{
    padding:0 20px;
    background: #2a338e;
    width: 30%;
    height: 45px;
    margin: 100px auto 0 auto;
    border-top-right-radius: 4px;
    border-top-left-radius: 4px;
}
.app-modal-header h3{
    margin: 0;
    padding: 0;
    padding-top: 13px;
    color:#ccc;
    font-size: 17px;
    text-transform: capitalize;
}

.close-modal{
    font-size: 30px;
    text-align: right;
    margin-top: 0px;
    margin-right: 0px;
    cursor: pointer;
    color: #ccc;
}
.app-modal-content{
    width: 30%;
    margin: 0px auto 0 auto;
    height: auto;
    min-height: 100px;
    background: #fefefe;
    padding:10px 30px;
    max-height: 75%;
    overflow-y: auto;
    display: block;
}
.app-modal-footer{
    width: 30%;
    margin: 0px auto 0px auto;
    height: 56px;
    background: #fefefe;
    padding:0px 20px;
    border-top:1px solid #eee;
    border-bottom-right-radius: 4px;
    border-bottom-left-radius: 4px;
    text-align: right;
}
.app-modal-header-lg, .app-modal-content-lg, .app-modal-footer-lg{
    width: 70%;
}
.app-modal-header-50, .app-modal-content-50, .app-modal-footer-50{
    width: 50%;
}
.app-modal-header-60, .app-modal-content-60, .app-modal-footer-60{
    width: 60%;
}

.success-modal{
    width: 25%;
    margin: 100px auto 0 auto;
    min-height: 100px;
    height: auto;
    background: #fefefe;
    border-radius: 4px;
}

.notification-body{
    width: 25%;
    height: 100%;
    padding:10px 20px;
    background: #fff;
    filter: drop-shadow(0px 0px 1px #eee);
    position: fixed;
    top: 0px;
    right: 0;
    overflow-y: auto;
}

/*Font icon*/
.table tbody tr td span.fa{
    margin-right: 10px;
    cursor: pointer;
}
.edit {
    color: #069;
}
.delete{
    color: red;
}
.badge-light-blue{
    background: #655ebb;
    color: #fff;
}

@media screen and (max-width: 680px) {
    .app-modal-header{
        width: 90%;
    }
    .app-modal-header h3{
        margin: 0;
        padding: 0;
        padding-top: 13px;
        color:#ccc;
        font-size: 17px;
        text-transform: capitalize;
    }
    .app-modal-content{
        width: 90%;
    }
    .app-modal-footer{
        width: 90%;
    }
    .app-modal-header-lg, .app-modal-content-lg, .app-modal-footer-lg{
        width: 90%;
    }

}

