.nav-tabs {
    border-bottom: 3px solid #DDD;
    font-size: 1.3em;
}

.nav-tabs > li.active > a, .nav-tabs > li.active > a:focus, .nav-tabs > li.active > a:hover {
    border-width: 0;
}

.nav-tabs > li > a {
    border: none;
    color: #666;
}

.nav-tabs > li.active > a, .nav-tabs > li > a:hover {
    border: none;
    color: #6aab5e !important;
    background: transparent;
}

.nav-tabs > li > a::after {
    content: "";
    background: #6aab5e;
    height: 3px;
    position: absolute;
    width: 100%;
    left: 0;
    bottom: 0;
    transition: all 250ms ease 0s;
    transform: scale(0);
}

.nav-tabs > li.active > a::after, .nav-tabs > li:hover > a::after {
    transform: scale(1);
}

.tab-nav > li > a::after {
    background: #4a7d27 none repeat scroll 0% 0%;
    color: #fff;
}

.tab-pane {
    padding: 15px 0;
}


.checkbox-container label {
    line-height: 34px;
    display: block;
    position: relative;
    padding-left: 50px;
    margin-bottom: 0;
    cursor: pointer;
    font-size: 18px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    font-weight: 400;
}

/* Hide the browser's default checkbox */
.checkbox-container label input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

/* Create a custom checkbox */
.checkbox-container label .checkmark {
    position: absolute;
    top: 7px;
    left: 15px;
    height: 20px;
    width: 20px;
    background-color: #eee;
}

/* On mouse-over, add a grey background color */
.checkbox-container label:hover input ~ .checkmark {
    background-color: #ccc;
}

/* When the checkbox is checked, add a blue background */
.checkbox-container label input:checked ~ .checkmark {
    background-color: #6aab5e;
}

/* Create the checkmark/indicator (hidden when not checked) */
.checkbox-container label .checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

/* Show the checkmark when checked */
.checkbox-container label input:checked ~ .checkmark:after {
    display: block;
}

/* Style the checkmark/indicator */
.checkbox-container label .checkmark:after {
    left: 8px;
    top: 4px;
    width: 5px;
    height: 10px;
    border: solid white;
    border-width: 0 3px 3px 0;
    -webkit-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    transform: rotate(45deg);
}


.lawyer-form #settings-tabs {
    border-bottom: none;
}

.lawyer-form #settings-tabs li {
    float: none;
    background: #fff;
    margin-bottom: 0;
}

.lawyer-form .tab-content .tab-pane {
    background: #fff;
    padding: 15px;
}
.lawyer-form .nav-tabs > li.active > a, .nav-tabs > li > a:hover {
    border: none;
    color: #6aab5e!important;
    background: #6aab5e30;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    margin: 0;
}
.lawyer-form .nav-tabs > li > a::after {
    display: none;
}

