header{
    height: 120px;
    background-color: white;
    border-bottom: 1px #cdd2d2 solid;
}
.wrapper {
    display: flex;
    align-items: stretch;
}

#sidebar {
    min-width: 150px;
    max-width: 250px;
    min-height: 100vh;
    border-right: 1px #cdd2d2 solid;
    flex: 2 1 250px;
}

#sidebarCollapse {
    width: 40px;
    height: 40px;
    background: #f5f5f5;
    border-radius: 4px;
    display: none;
}

#sidebarCollapse span {
    width: 80%;
    height: 2px;
    margin: 0 auto;
    display: block;
    background: #555;
    transition: all 0.8s cubic-bezier(0.810, -0.330, 0.345, 1.375);
}

#sidebarCollapse span:first-of-type {
    /* rotate first one */
    transform: rotate(45deg) translate(2px, 2px);
}
#sidebarCollapse span:nth-of-type(2) {
    /* second one is not visible */
    opacity: 0;
}
#sidebarCollapse span:last-of-type {
    /* rotate third one */
    transform: rotate(-45deg) translate(1px, -1px);
}

#sidebarCollapse.active span {
    /* no rotation */
    transform: none;
    /* all bars are visible */
    opacity: 1;
    margin: 5px auto;
}

#sidebar.active {
    margin-left: -250px;
}

.form-group label{
    text-align: right;
}

#content{
    width: 100%;
}

@media (max-width: 768px) {
    #sidebar {
        margin-left: -250px;
    }
    #sidebar.active {
        margin-left: 0;
    }
    #sidebarCollapse{
        display: inline-block;
    }
    .form-group label{
        text-align: left;
    }
    .nav-pills .nav-link span{
        display: none;
    }
}

.card-header-tabs{
    float: right;
}

.home-cost-blue-btn{
    background-color: #00579c
}

.required, .error{
    color: red;
}

footer{
    border-top: 1px #cdd2d2 solid;
    margin-top: 40px;
}

.form-group .text_item{
    margin-top: 7px;
}

#cpanel_error_update,
#cpanel_success_update,
#cpanel_error_update_identity,
#cpanel_success_update_identity {
    display: none;
}

.table caption + thead tr:first-child th, .table colgroup + thead tr:first-child th, .table thead:first-child tr:first-child th, .table caption + thead tr:first-child td, .table colgroup + thead tr:first-child td, .table thead:first-child tr:first-child td {
    border-top: 0;
}

#sidebar ul{
    padding: 15px;
}

#sidebar ul li{
    margin-bottom: 15px;
}

.card{
    margin-top: 20px;
}

.buy_plans{
    margin-top: 20px;
}

.buy_plans_title{
    color: #FFF;
    background-color: rgb(1,87,155);
    padding: 5px 0 5px 25px;
}

.buy_plans_cost{
    font-size: 1.5em;
}

.buy_plans_desc{
    font-size: 1.3em;
}

.buy_plans_i_icon{
    color: rgb(1,87,155);
    padding-right: 10px;
}

.buy_plans_form_input_grey{
    background-color: #F2F2F2;
    font-weight: bold;
    border: 1px solid #000;
}

.width_small span{
    display: inline-block;
    vertical-align: middle;
    padding-bottom: 13px;
    font-size: 2rem;
}

.nav-tabs .nav-link{
    border: 1px solid #ccc;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
}

.conrol_panel_home_lonk{
    display: inline-block;
    border: 1px solid #ccc;
    border-top-left-radius: 0.25rem;
    border-top-right-radius: 0.25rem;
}

.text-underline {
    text-decoration: underline;
}