body {
    margin: 0px;
    font-family: Charter;
    font-weight: 100;
    padding: 15px;
}

a {
    text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 p {
    margin: 0px;
    cursor: default;
    font-weight: 100;
}

table {
    width: 100%;
}


/* ::-webkit-scrollbar {
    display: block;
} */

::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar-thumb {
    background: #7abf00;
    border-radius: 10px;
    cursor: grab;
}

::-webkit-scrollbar-track {
    box-shadow: none;
}

input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
    -webkit-appearance: none;
}

ul {
    list-style: none;
    padding: 0px;
    margin: 0px;
}

@font-face {
    font-family: Charter;
    src: url(fonts/charter/CharterBT.ttf);
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: CharterBold;
    src: url(fonts/charter/CharterBlackBT.ttf);
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: CharterItalic;
    src: url(fonts/charter/CharterItalicBT.ttf);
    font-weight: 400;
    font-style: normal;
}

p,
li,
button,
a,
span,
blockquote,
input,
select,
textarea,
td,
th,
input[placeholder] {
    margin: 0px;
    font-family: Charter;
}

i {
    font-family: CharterItalic;
}

b,
strong {
    font-family: CharterBold;
}

.logo {
    width: 80px;
    display: block;
    margin: 30px auto;
}

section {
    text-align: center;
}

section h1 {
    margin-bottom: 30px;
}

section .search {
    border: 1px solid #e5e5e5;
    border-radius: 30px;
    padding: 15px 20px;
    font-size: 20px;
    width: 100%;
    max-width: 400px;
    margin-bottom: 30px;
    outline: none;
}

.card {
    width: 100%;
    max-width: 250px;
    display: inline-block;
    margin: 10px;
    text-align: left;
    vertical-align: top;
}

.card .header {
    border: 1px solid #e5e5e5;
    padding: 10px;
}

.card .header h2 {
    margin-bottom: 5px;
}

.card .header h3 {
    color: #666;
    font-size: 16px;
}

.card .header h3 small {
    font-size: 11px;
    color: #999;
}

.card .label-text {
    display: block;
    text-transform: uppercase;
    font-size: 9px;
    color: #999;
    background-color: #f1f1f1;
    padding: 10px;
    border: 1px solid #e5e5e5;
    border-top: 0px;
}

.card table {
    padding: 0px 10px;
    border-collapse: collapse;
    display: none;
}

.card table td {
    border: 1px solid #e5e5e5;
    padding: 10px;
    border-top: 0px;
}

.switch {
    position: relative;
    display: inline-block;
    width: 40px;
    height: 24px;
}

.switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .4s;
    transition: .4s;
}

.slider:before {
    position: absolute;
    content: "";
    height: 16px;
    width: 16px;
    left: 4px;
    bottom: 4px;
    background-color: #FFF;
    -webkit-transition: .4s;
    transition: .4s;
}

input:checked+.slider {
    background-color: #7abf00;
}

input:focus+.slider {
    box-shadow: 0 0 1px #7abf00;
}

input:checked+.slider:before {
    -webkit-transform: translateX(16px);
    -ms-transform: translateX(16px);
    transform: translateX(16px);
}


/* Rounded sliders */

.slider.round {
    border-radius: 34px;
}

.slider.round:before {
    border-radius: 50%;
}

.consultants-list img {
    width: 16px;
    cursor: pointer;
    display: inline;
    float: right;
    vertical-align: middle;
}