.main-box-container {
    width: 100%;
    position: relative;
    left: 0px;
    top: 0px;
}
.form-header-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    background: #1E99E9;
    padding: 9px;   
}
.form-header-bar h3 {
    font-weight: 600;
    color: white;
    font-size: 17px;
}
.form-header-bar-inside {
    padding: 8px;
    border-radius: 2px;
    background: none;
    margin: 5px 0px;
    border: none;
}
.form-header-bar-inside h6{
    color: #1E99E9;
    font-size: 16px;
    font-weight: 600;
    padding: 1px 0px;
    border-bottom: 1px solid #1E99E9;
}
.card-body-box {
    padding-top: 15px;
    box-shadow: 0 0 1px rgba(0,0,0,0.5);
    border-radius: 3px;
    background: #fafafa;
}
.form-group label{
    font-size: 14px;
}
.header-bar-extra {
    position: absolute;
    right: 0px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0px;
}
.add-new-item {
    height: 100%;
    text-align: center;
    font-size: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    padding: 5px;
    font-weight: bold;
    background: #076db0;
    border-top-right-radius: 0.25rem;
    outline: none;
}
.add-new-item:hover {
    color: white;
    transition: all 0.2s ease-in-out;
}


@media screen and (max-width: 991px){
    .form-header-bar{
        display: flex;
        align-items: center;
        justify-content: flex-start;
    }
}