* {
    box-sizing: border-box;
}

body {
    font-family: 'Source Sans Pro', sans-serif !important;
    font-size: 14px;
}

.loginContainer {
    display: flex;
    flex-wrap: wrap;
}

.leftPanel {
    background: #2eaeb7;
}

.leftPanel, .rightPanel {
    flex-basis: 50%;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 15px;
}

.leftPanel img {
    max-width: 100%;
}

.loginForm {
    min-width: 382px;
    padding: 30px 15px;
}

.loginForm h1 {
    font-size: 24px;
    font-weight: 600;
    color: #1a73e8;
    text-align: center;
    margin: 0px 0px 70px 0px;
}
.loginForm img{
    display: block;
    margin: 25px auto;
}
.loginForm h2 {
    font-size: 16px;
    font-weight: normal;
    margin: 0px 0px 40px 0px;
}

.loginForm label {
    font-weight: normal;
}

.loginForm input[type="checkbox"] {
    margin: 0px;
    width: 20px;
    height: 20px;
    vertical-align: middle;
}

.loginForm input[type="submit"] {
    background: #1a73e8;
}

.mt-15 {
    margin-top: 15px;
}

.mb-10 {
    margin-bottom: 10px;
}

.mb-0 {
    margin-bottom: 0px;
}

.ml-10 {
    margin-left: 10px;
}

@media(max-width:920px) {
    .leftPanel, .rightPanel {
        flex-basis: 100%;
        min-height: 1px;
    }
    .loginContainer {
        flex-direction: column-reverse;
    }
}

.primaryHeader {
    top: 0px;
    position: fixed;
    height: 53px;
    display: flex;
    align-items: center;
    padding: 0px 20px;
    box-shadow: 0px 2px 10px rgba(204, 204, 204, 0.2);
    left: 0px;
    right: 0px;
    z-index: 3;
    background: #fff;
}

.primaryHeader h1 {
    font-size: 18px;
    min-width: 205px;
    color: #1a73e8;
    margin: 0px 20px 0px 0px;
    font-weight: 600;
}

.primaryHeader p {
    margin: 0px 20px;
    margin-left: auto;
}

.primaryHeader p span {
    display: block;
}

.profileImage {
    overflow: hidden;
    align-items: center;
    justify-content: center;
    display: flex;
}

.navIcon {
    padding: 10px;
}

.notificationIcon {
    margin-left: auto;
}

.navigation {
    height: calc(100vh - 53px);
    background: #1a73e8;
    width: 245px;
    position: fixed;
    left: 0px;
    z-index: 55;
    top: 53px;
    transition: left 0.2s ease-in-out;
}

section.navigationClose {
    left: -245px;
}

.navigation ul {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
}

.childMenu {
    display: none;
}

.navigation>ul>li>a, .childMenu a {
    padding: 0px 20px;
    height: 50px;
    display: flex;
    align-items: center;
    color: #fff !important;
    font-weight: 500;
    text-decoration: none !important;
}

.childMenu a {
    padding-left: 52px;
}

.navigation>ul>li>a:hover, .activeMenu, .childMenu a:hover {
    background: #1766cf;
}

.navigation>ul>li>a>img {
    margin-right: 12px;
    width: 20px;
    height: 20px;
}

.navigation .icon {
    margin-left: auto;
    padding: 10px;
}

.dataContainer {
    margin: 53px 0px 0px 0px;
}

section.dataContainerOpen {
    margin: 53px 0px 0px 0px;
}

.pageHeader {
    background: #f8f9fa;
    display: flex;
    align-items: center;
    height: 50px;
    padding: 0px 30px;
}
.inputGroup label{
    font-weight: normal;
}
.pageHeader h1 {
    margin: 0px;
    font-size: 16px;
    font-weight: 600;
}

.dataSection {
    padding: 15px 30px;
}

.countBox {
    border: 1px solid #ccc;
    border-radius: 5px;
    margin-bottom: 15px;
}

.countHeader {
    display: flex;
    align-items: center;
    border-bottom: 1px solid #ccc;
    height: 40px;
    padding: 0px 15px;
}

.countHeader h1 {
    margin: 0px;
    font-size: 18px;
}

.countHeader img {
    margin-left: auto;
    padding: 15px;
    cursor: pointer;
}

.countInfo {
    display: flex;
    align-items: center;
    padding: 15px 20px;
    min-height: 90px;
}

.countInfo p {
    margin-bottom: 0px;
    font-size: 20px;
    font-weight: 600;
    margin-left: auto;
    text-align: center;
}

.filterSection {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    padding: 15px 0px;
}

.filterSection h1 {
    font-size: 16px;
    margin: 0px 50px 0px 0px;
    font-weight: 600;
}

.mr-10 {
    margin-right: 10px;
    ;
}

.a-r {
    margin-left: auto;
}

.themeTable {
    border-collapse: collapse;
    table-layout: fixed;
    width: 100%;
    font-size: 16px;
}

.themeTable th {
    background: #f8f9fa;
    border-bottom: 1px solid #ccc;
    padding: 15px 10px;
}

.themeTable td {
    border-bottom: 1px solid #ccc;
    padding: 15px 10px;
}

.profileSec {
    display: flex;
    min-width: 210px;
    align-items: center;
}

.tableProfile {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    width: 30px;
    height: 30px;
    overflow: hidden;
    margin-right: 5px;
    flex-basis: 30px;
}

.ml-auto {
    margin-left: auto;
}

.btn-primary {
    background-color: #1a73e8 !important;
    border-color: #1a73e8 !important;
}

.btn-primary:hover {
    background-color: #1364ce !important;
    border-color: #1364ce !important;
}

.filters {
    padding: 15px 30px 5px 30px;
    border-bottom: 1px solid #efefef;
}

.searchBox {
    background-image: url(../images/searchIcon.png);
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 36px;
}

.paginationSec>p {
    margin: 0;
}

.navPagination img {
    padding: 0px 20px;
}

.paginationSec {
    display: flex;
    align-items: center;
    padding-top: 20px;
    padding-bottom: 20px;
}

.mr-5 {
    margin-right: 5px;
}

.docProfile {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100px;
    height: 100px;
    border: 1px solid #ccc;
    overflow: hidden;
    margin: 0px 0px 20px 0px;
}

.overAllInfo h1 {
    margin: 0px 0px 10px 0px;
    font-size: 16px;
    font-weight: 600;
}

.overAllInfo span {
    float: right;
}

.docPersonalInfo {
    margin: 10px 0px;
    padding-top: 10px;
    border-top: 1px solid #efefef;
}

.tabs {
    margin: 0px;
    padding: 0px;
    list-style-type: none;
    display: flex;
    border-top: 1px solid #efefef;
    border-bottom: 1px solid #efefef;
}
.noTopBorder{
    border-top: 0px !important;
}
.tabs>li>a {
    color: #333;
    font-weight: 600;
    font-size: 16px;
    padding: 10px 20px;
    display: block;
    border-bottom: 2px solid transparent;
    text-decoration: none !important;
}

.tabs>li>a:hover, .activeTab {
    border-bottom: 2px solid #1a73e8 !important;
    color: #1a73e8 !important;
}

.docInfo {
    padding: 20px 0px;
    border-bottom: 1px solid #efefef;
    margin-bottom: 20px;
}

.docInfo h1 {
    font-weight: 600;
    margin: 0px 0px 10px 0px;
    font-size: 20px;
}

.docInfo h1 a {
    font-size: 16px;
}

.docInfo ul {
    margin: 0px 0px 30px 0px;
    padding-left: 15px;
}

.docInfo ul li {
    color: #333;
}

.docInfo h2 {
    margin: 15px 0px;
    font-size: 24px;
}

.docInfo p {
    margin-bottom: 20px;
}

.form-title {
    margin: 0px 0px 15px 0px;
    font-size: 18px;
    font-weight: 600;
}

.date {
    background-image: url(../images/date.png);
    background-repeat: no-repeat;
    background-position: right 10px center;
    padding-right: 36px;
    max-width: 130px;
}

.inputGroup {
    margin-bottom: 20px;
}

.uploadProfile {
    display: flex;
    align-items: flex-end;
}

.uploadProfile img {
    width: 110px;
    height: 110px;
}

.ml-5 {
    margin-left: 5px;
}

.checkboxGroup label {
    font-weight: normal;
    vertical-align: middle;
    margin-right: 5px;
    margin-bottom: 0px;
}

.checkboxGroup input[type="radio"] {
    width: 15px;
    height: 15px;
    margin: 0 5px 0px 0px;
    vertical-align: middle;
}

.otherDetails {
    border: 1px solid #efefef;
    margin-bottom: 15px;
    border-radius: 5px;
    min-height: 160px;
}

.otherHeaders {
    display: flex;
    padding: 10px 15px;
    border-bottom: 1px solid #efefef;
    align-items: center;
}

.otherHeaders h1 {
    margin: 0px;
    font-size: 16px;
    font-weight: 600;
}

.otherHeaders a {
    margin-left: auto;
}



.otherPanel {
    padding: 15px;
}
.otherPanel label{
    margin: 0px 0px 0px 10px;
    vertical-align: top;
    font-weight: normal;
    width: calc(100% - 30px);
}
.otherPanel input[type="checkbox"]{
    margin: 0px;
    width: 15px;
    height: 15px;
    vertical-align: middle;
}
.mt-10{
    margin-top: 10px;
}
.addSpeciality{
    display: flex;
    align-items: center;
    padding: 15px 30px;
}
.max-250{
    max-width: 250px;
}
.max-300{
    max-width: 300px;
}
.patientSection{
    padding: 0px 30px;
}
.mt-25{
    margin-top: 25px;
}
.patientBasic {
    display: flex;
    align-items: flex-end;
}
.ml-50{
    margin-left: 50px;
}
.mb-15{
    margin-bottom: 15px;
}
.patientFormGroup{
    padding-bottom: 15px;
    margin-bottom: 15px;
    border-bottom: 1px solid #efefef;
}
@media(max-width:767px) {
    .primaryHeader h1 {
        min-width: 1px;
    }
    .dataContainer {
        margin-left: 0px;
    }
}
.videos{
margin-bottom: 30px;
min-height: 370px;
}
.videos .my-video-dimensions{
    width: 100%;
    height: 265px;
}
.videos h1{
    color: red;
    font-size: 20px;
    margin: 20px 0px 5px 0px;
}
.videos h2{
    margin: 0px;
    font-size: 16px;
    font-weight: normal;
}