.home-toolbar {
    background: #2771fc; /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(#2771fc, #2796fc, #279dfc, #27b3fc); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(#2771fc, #2796fc, #279dfc, #27b3fc); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(#2771fc, #2796fc, #279dfc, #27b3fc); /* For Firefox 3.6 to 15 */
    background: linear-gradient(#2771fc, #2796fc, #279dfc, #27b3fc); /* Standard syntax */
    height: 250px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.26);
}

.primary-toolbar {
    background: #2771fc !important;
    color: white !important;
    transition: background 0.4s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.26);
}

.profile-toolbar {
    background: #2771fc; /* For browsers that do not support gradients */
    background: -webkit-linear-gradient(#2771fc, #2796fc, #279dfc, #27b3fc); /* For Safari 5.1 to 6.0 */
    background: -o-linear-gradient(#2771fc, #2796fc, #279dfc, #27b3fc); /* For Opera 11.1 to 12.0 */
    background: -moz-linear-gradient(#2771fc, #2796fc, #279dfc, #27b3fc); /* For Firefox 3.6 to 15 */
    background: linear-gradient(#2771fc, #2796fc, #279dfc, #27b3fc); /* Standard syntax */
    height: 180px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.26);
}

.accent-toolbar {
    background: #ff8e39 !important;
    transition: background 0.4s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.26);
}

.accent-prescription-toolbar {
    background: #ff8e39 !important;
    transition: background 0.4s ease;
    min-height: 250px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.26);
}

.video-toolbar {
    background-color: rgba(0, 0, 0, 0.5) !important;
    position: absolute;
    transition: background 0.4s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.26);
}

.video-primary-toolbar {
    background-color: #2771fc;
    position: fixed;
    transition: background 0.4s ease;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.26);
}

.search-container {
    transform: scale(1.111);
    width: 90%;
    height: 45px;
    margin: 0 auto 0 auto;
    background: white;
    border-radius: 2px;
    box-shadow: 1px 1px 4px 1px rgba(0, 0, 0, .2);
    -webkit-transform: scale(1.111);
    -moz-transform: scale(1.111);
    -o-transform: scale(1.111);
}

.circle {
    width: 60px;
    height: 50px;
    background: #ccc;
    -moz-border-radius: 50px;
    -webkit-border-radius: 50px;
    border-radius: 50px;
}

.img-circle {
    border-radius: 50%;
    padding: 10px;
}

.search-toolbar {
    display: none !important;
}

.refer-toolbar {
    background: #2771fc !important;
    color: white !important;
    transition: background 0.4s ease;
}

*:focus {
    outline: none;
}

.sticky-footer {
    z-index: 1;
    bottom: 0;
}

::-webkit-scrollbar {
    -webkit-appearance: none;
    width: 7px;
}

::-webkit-scrollbar-thumb {
    border-radius: 4px;
    background-color: rgba(0, 0, 0, .5);
    -webkit-box-shadow: 0 0 1px rgba(255, 255, 255, .5);
}

button {
    border: none;
}

md-progress-circular .md-spinner-wrapper .md-inner .md-left .md-half-circle {
    border-right-color: #ddd !important;
    border-bottom-color: #ddd !important;
}

md-progress-circular .md-spinner-wrapper .md-inner .md-right .md-half-circle {
    border-left-color: #ddd !important;
    border-bottom-color: #ddd !important;
}

.waiting-screen-button {
    border: solid 1px #9c9c9c;
    border-radius: 5px;
    font-size: 12px;
    color: #9c9c9c;
    height: 36px;
    margin: 0;
}

.waiting-screen-button:hover {
    background: #fff;
}

.waiting-screen-button-raised {
    color: #ff8e39 !important;
    border: 1px solid #ff8e39 !important;
}

.slideInDocInfo {
    animation: slideDoctorInTop 0.2s ease forwards;
}

.slideUpDocInfo {
    animation: slideUpDoctor 0.2s ease forwards;
}

@keyframes slideDoctorInTop {
    0% {
        transform: translate3d(0, 10px, 0);
        -webkit-transform: translate3d(0, 10px, 0);
        -moz-transform: translate3d(0, 10px, 0);
        -o-transform: translate3d(0, 10px, 0);
    }
    100% {
        transform: translate3d(0, 280px, 0);
        -webkit-transform: translate3d(0, 280px, 0);
        -moz-transform: translate3d(0, 280px, 0);
        -o-transform: translate3d(0, 280px, 0);
    }
}

@keyframes slideUpDoctor {
    0% {
        transform: translate3d(0, 280px, 0);
        -webkit-transform: translate3d(0, 280px, 0);
        -moz-transform: translate3d(0, 280px, 0);
        -o-transform: translate3d(0, 280px, 0);
    }
    100% {
        transform: translate3d(0, 0, 0);
        -webkit-transform: translate3d(0, 0, 0);
        -moz-transform: translate3d(0, 0, 0);
        -o-transform: translate3d(0, 0, 0);
    }
}

@keyframes fadein {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Firefox < 16 */
@-moz-keyframes fadein {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadein {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

/* Internet Explorer */
@-ms-keyframes fadein {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

@keyframes fadeoutdoctor {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

/* Firefox < 16 */
@-moz-keyframes fadeout {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

/* Safari, Chrome and Opera > 12.1 */
@-webkit-keyframes fadeout {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

/* Internet Explorer */
@-ms-keyframes fadeout {
    0% {
        opacity: 1;
    }
    100% {
        opacity: 0;
    }
}

[ng\:cloak], [ng-cloak], [data-ng-cloak], [x-ng-cloak], .ng-cloak, .x-ng-cloak {
    display: none !important;
}

.grey-color {
    color: #9b9b9b !important;
}

.white-color {
    color: white;
}

md-input-container {
    width: 100%;
    text-align: left !important;
}

md-toast {
    padding: 0 !important;
    border-radius: 0 !important;
    position: fixed !important;
}

md-toast .md-toast-content {
    border-radius: 0 !important;
}

md-input-container .md-drop-down-icon {
    display: block;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    right: 0;
    position: absolute;
    margin: 5px 0;
    -webkit-transform: translate3d(0, 1px, 0);
    transform: translate3d(0, 1px, 0);
}

md-input-container .md-drop-down-icon:after {
    display: block;
    content: '\25BC';
    position: relative;
    top: 2px;
    speak: none;
    -webkit-transform: scaleY(.6) scaleX(1);
    transform: scaleY(.6) scaleX(1);
}

.hl-messages {
    font-size: 9px;
    color: #DD2C00;
    text-align: initial;
}

.highlight {
    background: rgba(41, 183, 255, 0.32) !important;
}

.wrap-content {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

@media (min-width: 960px) {
    .scale-page {
        max-width: 600px;
    }

    .scale-page-2 {
        max-width: 400px;
    }

    .center-margin-8 {
        margin: 8px auto !important;
    }

    .center-margin-16 {
        margin: 16px auto !important;
    }

    .center-margin-32 {
        margin: 32px auto !important;
    }

}

@media (max-width: 960px) {
    .center-margin-8 {
        margin: 8px 8px !important;
    }

    .center-margin-16 {
        margin: 16px 16px !important;
    }

    .center-margin-32 {
        margin: 32px 32px !important;
    }
}

.videoEndedActionCls {
    position: absolute;
    top: 30%;
}

.videoEndedActionCls .video-action-dialog {
    background: rgb(247, 189, 0);
    padding: 0 10px;
    border-radius: 10px;
    color: #fff;
    margin-top: 15px;
    text-align: center;
}

.videoEndedActionCls .video-action-dialog .md-button {
    background: rgba(2, 2, 2, 0.26);
}

@media (min-width: 960px) {
    .videoEndedActionCls {
        right: 50%;
        width: 30%;
    }
}

@media (max-width: 960px) {

}

.center {
    text-align: center;
}

.center-margin {
    margin: auto !important;
}

a {
    text-decoration: none;
}

.fix {
    box-sizing: initial !important;
}

md-toolbar * {
    box-sizing: initial !important;
}

.md-toolbar-tools {
    padding: 0 !important;
}

.padding-left-16 {
    padding-left: 16px !important;
}

.messageOut {
    margin-right: 20px;
    background-color: #9dbefc;
    padding: 8px;
    border-radius: 10px;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
    max-width: 60%;
}

.messageIn {
    margin-left: 20px;
    display: inline-block;
    position: relative;
    padding: 8px;
    background-color: #e2ecff;
    border-radius: 10px;
    margin-bottom: 10px;
    max-width: 60%;
}

.bot {
    margin: 0 auto 0 auto !important;
    text-align: center;
    display: inline-block;
    padding: 13px;
    color: #8C876C;
    font-weight: 700;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .16), 0 2px 10px 0 rgba(0, 0, 0, .12) !important;
    background-color: #FFF5C4;
    border-radius: 2px;
    z-index: 40;
    max-width: 400px;
}

.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.text-lead {
    color: #565a5c;
}

.star-rating {
    margin: 0;
    padding: 0;
    display: inline-block;
}

.star {
    padding: 5px;
    color: #ddd;
    font-size: 21px;
    text-shadow: .05em .05em #aaa;
    list-style-type: none;
    display: inline-block;
    cursor: pointer;
}

.filled:hover {
    color: #2b75ff; /* For browsers that do not support gradients */
}

.filled {
    color: #2b75ff; /* For browsers that do not support gradients */
}

/*.fade.ng-hide {*/
/*opacity: 0;*/
/*}*/

.fade.ng-show {
    opacity: 1;
}

.fade.ng-hide-remove,
.fade.ng-hide-add {
    display: block !important;
}

.fade.ng-hide-remove {
    transition: all linear 300ms;
}

.fade.ng-hide-add {
    transition: all linear 300ms;
}

md-dialog .md-dialog-content {
    padding: 24px 24px 0 !important;
}

.pane-chat-msgs {
    width: 100%;
    height: 80%;
    position: absolute;
}

.pane-chat-body {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -webkit-flex-direction: column;
    -ms-flex-direction: column;
    flex-direction: column;
    margin-bottom: 60px;
    margin-top: 75px;
    overflow-x: hidden;
    overflow-y: scroll;
    box-sizing: border-box;
    border-left: 1px solid rgba(0, 0, 0, .03);
}

.pane-chat-empty {
    -webkit-box-flex: 1;
    -webkit-flex: 1 1 auto;
    -ms-flex: 1 1 auto;
    flex: 1 1 auto;
    min-height: 12px;
}

.message-list {
    background: #F5F5F5 !important;
    -webkit-box-flex: 0;
    -webkit-flex: 0 0 auto;
    -ms-flex: 0 0 auto;
    flex: 0 0 auto;
    padding-bottom: 8px;
    padding-left: 0;
}

div[md-ink-ripple] {
    position: relative;
}

@media only screen and (min-width: 0) and (max-width: 959px) and (orientation: portrait) {
    .md-toolbar-margin {
        padding-top: 56px;
    }
}

@media only screen and (min-width: 0) and (max-width: 959px) and (orientation: landscape) {
    .md-toolbar-margin {
        padding-top: 48px;
    }
}

@media (min-width: 959px) {
    .md-toolbar-margin {
        padding-top: 64px;
    }
}

#reviews::-webkit-scrollbar {
    display: none;
}

@media (min-width: 992px) {
    .hlContainer {
        width: 1170px;
    }
}

@media (min-width: 992px) {
    .hlContainer {
        width: 750px;
    }
}

@media (min-width: 768px) {
    .hlContainer {
        width: 750px;
    }
}

.hlContainer {
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
}

.termsSection {
    width: 850px;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    padding-top: 70px;
}

.termsHead {
    padding: 20px 0;
    text-align: center;
}

.terms {
    padding: 10px 0;
}

.terms p {
    font-size: 15px;
    text-align: justify;
    line-height: 2em;
    font-weight: 400;
}

.terms .bold {
    font-weight: 700;
}

.topbar-underline {
    border-bottom: 1px solid #ff8e39;
}

.terms .underlines {
    font-weight: 300;
    text-decoration: underline;
}

.accent {
    color: #ff8e39;
}

.animate-doctor-in {
    animation: pulse-doctor 1.5s ease-in-out forwards;
}

.animate-doctor-out {
    animation: fadeoutdoctor 1.5s ease forwards;
}

.hidden {
    visibility: hidden;
    opacity: 0;
    transition: visibility 0s 2s, opacity 2s linear;
}

@keyframes pulse-doctor {
    0% {
        transform: scale(1);
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
    }
    50% {
        transform: scale3d(0.5, 0.5, 0.5);
        -webkit-transform: scale3d(0.5, 0.5, 0.5);
        -moz-transform: scale3d(0.5, 0.5, 0.5);
        -o-transform: scale3d(0.5, 0.5, 0.5);
    }
    100% {
        transform: scale(1);
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
    }
}

.side-nav {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 100;
}

.side-nav--visible {
    pointer-events: auto;
}

.side-nav::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    will-change: opacity;
    transition: opacity 0.3s cubic-bezier(0, 0, 0.3, 1);
}

.side-nav__container {
    position: absolute;
    width: 100%;
    height: 100%;
    transform: translateX(102%);
    -webkit-transform: translateX(102%);
    -moz-transform: translateX(102%);
    -o-transform: translateX(102%);
    display: flex;
    flex-direction: row-reverse;
    will-change: transform;
}

.side-nav--animatable .side-nav__container {
    transition: transform 0.13s cubic-bezier(0, 0, 0.3, 1);
}

.side-nav--visible.side-nav--animatable .side-nav__container {
    transition: transform 0.33s cubic-bezier(0, 0, 0.3, 1);
}

.side-nav--visible::before {
    opacity: 1;
}

.side-nav--visible .side-nav__container {
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    -o-transform: none;
}

.side-nav__hide {
    position: absolute;
    left: 16px;
    top: 16px;
    background: none;
    border: none;
    color: #FFF;
    width: 24px;
    height: 24px;
    padding: 0;
    margin: 0;
}

.search-container {
    transform: scale(1.111);
    -webkit-transform: scale(1.111);
    -moz-transform: scale(1.111);
    -o-transform: scale(1.111);
    width: 90%;
    height: 45px;
    margin: 0 auto 0 auto;
    background: white;
    border-radius: 2px;
    box-shadow: 1px 1px 4px 1px rgba(0, 0, 0, .2);
}

.presc-nav {
    position: fixed;
    right: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
    pointer-events: none;
    z-index: 100;
}

.presc-nav--visible {
    pointer-events: auto;
}

.presc-nav::before {
    content: '';
    display: block;
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.4);
    opacity: 0;
    will-change: opacity;
    transition: opacity 0.3s cubic-bezier(0, 0, 0.3, 1);
}

.presc-nav__container {
    position: absolute;
    width: 100%;
    height: 100%;
    transform: translateX(102%);
    display: flex;
    flex-direction: row-reverse;
    will-change: transform;
    -webkit-transform: translateX(102%);
    -moz-transform: translateX(102%);
    -o-transform: translateX(102%);
}

.presc-nav--animatable .presc-nav__container {
    transition: transform 0.13s cubic-bezier(0, 0, 0.3, 1);
}

.presc-nav--visible.presc-nav--animatable .presc-nav__container {
    transition: transform 0.33s cubic-bezier(0, 0, 0.3, 1);
}

.presc-nav--visible::before {
    opacity: 1;
}

.presc-nav--visible .presc-nav__container {
    transform: none;
    -webkit-transform: none;
    -moz-transform: none;
    -o-transform: none;
}

.presc-nav__hide {
    position: absolute;
    left: 16px;
    top: 16px;
    background: none;
    border: none;
    color: #FFF;
    width: 24px;
    height: 24px;
    padding: 0;
    margin: 0;
}

.show {
    opacity: 1;
}

.hide {
    opacity: 0;
}

.gmail-email-icon {
    background: url(https://a0.muscache.com/airbnb/static/referrals/contact_import/gmail-f32cb7ece2de7ac7b07fc9d1efd09241.png) no-repeat;
}

.yahoo-email-icon {
    background: url(https://a1.muscache.com/airbnb/static/referrals/contact_import/yahoo-73853f105b8b886b1a1dce8ffaf5deea.png) no-repeat;
}

.activate {
    background: #ff8e39;
    color: white;
}

.deactivate {
    background: white;
    color: #000000;
}

.accent-border {
    border: solid 1px #ff8e39 !important;
    border-radius: 1px;
}

.md-label:first-letter {
    text-transform: uppercase !important;
}

md-radio-button .md-container {
    position: absolute !important;
}

.primary-text {
    color: #2771fc !important;
}

.accent-text {
    color: #ff8e39 !important;
}

@media (min-width: 960px) {
    .card {
        width: 850px;
        height: 464px;
        border-radius: 2px;
        background: white;
        box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .2), 0 1px 1px 0 rgba(0, 0, 0, .14), 0 2px 1px -1px rgba(0, 0, 0, .12);
        margin: 20px auto 0;
        position: relative;
    }

    .home-toolbar {
        background: linear-gradient(to right,rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0)), url(/img/netmeds/Web_Banner.jpg) no-repeat;
        background-size: 100% 100%;
        height: 600px;
    }

    .home-toolbar .md-toolbar-tools {
        background: rgba(43, 117, 255, 0.79);
    }

    .color-white {
        color: white !important;
    }

    .full-height {
        height: 100% !important;
    }

    .card-small {
        width: 450px;
        height: 450px;
    }

    .card-xs {
        background: white;
    }

    .finding-doctors {
        position: fixed;
        z-index: 300;
        width: 100%;
        height: 100%;
        top: 0;
    }

    /*.primary-toolbar {*/
    /*background: #2771fc; !* For browsers that do not support gradients *!*/
    /*background: -webkit-linear-gradient(#2771fc, #2796fc, #279dfc, #27b3fc); !* For Safari 5.1 to 6.0 *!*/
    /*background: -o-linear-gradient(#2771fc, #2796fc, #279dfc, #27b3fc); !* For Opera 11.1 to 12.0 *!*/
    /*background: -moz-linear-gradient(#2771fc, #2796fc, #279dfc, #27b3fc); !* For Firefox 3.6 to 15 *!*/
    /*background: linear-gradient(#2771fc, #2796fc, #279dfc, #27b3fc); !* Standard syntax *!*/
    /*height: 250px;*/
    /*box-shadow: 0 2px 5px rgba(0, 0, 0, 0.26);*/
    /*}*/
    .waiting-screen {
        margin-top: -222px;
        z-index: 100;
        position: relative;
    }

    .waiting-screen-outer {
        border: 1px solid rgba(43, 117, 255, .79);
        border-radius: 40px;
        padding: 20px;
        box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.2);
        margin: auto;
        height: 300px;
    }

    .white-background {
        background: #fff;
        padding: 70px 230px;
    }

    .sticky-footer {
        position: absolute;
        width: 50%;
        text-align: center;
    }

    .full-width {
        width: 100% !important;
    }

    .call-type-toolbar {
        background: #2771fc; /* For browsers that do not support gradients */
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.26);
    }

    .video-holder {
        width: 72%;
    }

    .video-buttons {
        bottom: 0;
        text-align: center;
        position: fixed;
        height: 60px;
        background-color: rgba(0, 0, 0, 0.5);
        width: 72%;
        display: table;
        line-height: 60px;
        vertical-align: middle;
    }

    .doctor-info {
        color: white;
        top: 0;
        position: absolute;
        width: 28%;
        right: 0;
        z-index: 5;
        text-align: center;
        background: linear-gradient(#2771fc, #2796fc, #279dfc, #27b3fc);
    }

    .pane-chat-msgs {
        width: 28%;
        right: 0;
        height: 80%;
        position: absolute;
    }

    .chat-footer {
        bottom: 0;
        right: 0;
        text-align: center;
        position: fixed;
        height: 60px;
        background-color: white;
        width: 28%;
        line-height: 60px;
        vertical-align: middle;
    }

    #publisher {
        position: absolute;
        bottom: 73px;
        left: 10px;
        width: 100px;
        height: 75px;
        z-index: 100;
    }

    .home-card-container {
        display: -webkit-box;
        display: -moz-box;
        width: 90%;
        height: 110px;
        margin: -52px auto 27px;
        position: relative;
        z-index: 3;
        overflow-y: hidden;
    }

    .home-card {
        box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .2), 0 1px 1px 0 rgba(0, 0, 0, .14), 0 2px 1px -1px rgba(0, 0, 0, .12);
        /*width: 266px;*/
        height: 108px;
        margin: 16px;
        border-radius: 2px;
        padding: 8px 8px 16px;
        background: white;
    }

    .watch-video-container {
        background: url(/img/video-back.jpg) center center;
        text-align: center;
        background-size: cover;
        height: auto;
        border-radius: 30px;
        min-height: 319px;
    }

    .video-hash {
        background: url(/img/video-hash.png) no-repeat;
        height: auto;
        min-height: 69px;
        background-size: contain;
        width: 250px;
        margin-left: 40px;
    }

    .video-play {
        background: url(/img/play-video.png) no-repeat;
        background-size: contain;
        height: auto;
        width: 60px;
    }

    .body {
        background: #F5F5F5;
        height: initial !important;
    }

    .call-type-container {
        margin: 35px 0 77px 0;
    }

    .attachment-container {
        margin: 35px 0 77px 0;
    }

    .finding-doctors-container {
        margin: 100px;
    }

    .feed-cover {
        background: red;
        height: 200px;
        margin-right: 61px;
        width: 100%;
    }

    .feed-container {
        margin: 50px 155px;
        text-align: left;
    }

    .consult-toolbar {
        background: #2771fc; /* For browsers that do not support gradients */
        background: -webkit-linear-gradient(#2771fc, #2796fc, #279dfc, #27b3fc); /* For Safari 5.1 to 6.0 */
        background: -o-linear-gradient(#2771fc, #2796fc, #279dfc, #27b3fc); /* For Opera 11.1 to 12.0 */
        background: -moz-linear-gradient(#2771fc, #2796fc, #279dfc, #27b3fc); /* For Firefox 3.6 to 15 */
        background: linear-gradient(#2771fc, #2796fc, #279dfc, #27b3fc); /* Standard syntax */
        height: 250px;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.26);
    }

    .heading {
        text-align: center;
        margin-top: 170px;
        font-size: 34px;
        text-shadow: 1px 1px rgba(12, 12, 12, 0.51);
    }

    .explainer-heading {
        font-size: 30px;
        margin: auto;
        font-weight: 400;
    }

    .symptoms-image {
        background: url('/img/Group%208@2x.png') no-repeat;
        background-size: contain;
        height: 130px;
        width: 65%;
    }

    .choose-doctor-image {
        background: url('/img/Group%204@2x.png') no-repeat;
        background-size: contain;
        height: 130px;
        width: 47%;
    }

    .pay-image {
        background: url('/img/Page%201@2x.png') no-repeat;
        background-size: contain;
        height: 130px;
        width: 65%;
    }

    .top-icon-consult {
        background: url(/img/top2.png) no-repeat;
        background-size: contain;
        width: 30px;
        height: 30px;
        margin-right: 15px;
    }

    .top-icon-second {
        background: url(/img/top3.png) no-repeat;
        background-size: contain;
        width: 30px;
        height: 22px;
        margin-right: 15px;
    }

    .top-icon-diag {
        background: url(/img/top4.png) no-repeat;
        background-size: contain;
        width: 30px;
        height: 30px;
        margin-right: 15px;
    }

    .top-icon-home {
        background: url(/img/top5.png) no-repeat;
        background-size: contain;
        width: 30px;
        height: 30px;
        margin-right: 15px;
    }

    .top-icon-treat {
        background: url(/img/top6.png) no-repeat;
        background-size: contain;
        width: 30px;
        height: 30px;
        margin-right: 15px;
    }

    .top-icon-med {
        background: url(/img/top7.png) no-repeat;
        background-size: contain;
        width: 30px;
        height: 30px;
        margin-right: 15px;
    }

    .top-icon-question {
        background: url(/img/top8.png) no-repeat;
        background-size: contain;
        width: 30px;
        height: 30px;
        margin-right: 15px;
    }

    .footer {
        background: black;
        color: white;
        padding: 16px 100px;
    }

    .footer-links {
        padding-top: 80px;
        text-align: left;
        display: inline-flex;
    }

    .footer-social-links {
        right: 0;
        margin: 0 0 0 auto;
        bottom: 0;
    }

    .footer-certi-links {
        left: 0;
        margin: 0 auto 0 0;
        bottom: 0;
    }
    .certiUl{
        padding: 0;
        list-style-type: none;
        display: inline-flex;
        font-size: x-large; margin: 0;
    }
    .quick-links {
        background: #1A1A1A;
        color: white;
        font-size: 12px;
        padding: 12px 100px;
    }

    .footer-info {
        display: inline-flex;
        width: 100%;
        margin: 16px 0 32px;
    }

    .right-item {
        margin-left: auto;
    }

    .play-store-button {
        right: 0;
        bottom: 150px;
        border: white 1px solid;
        border-radius: 4px;
        position: absolute;
        margin-right: 100px;
    }

    .meet-doctor {
        color: white;
        text-align: center;
        height: 460px;
        background: #2771fc; /* For browsers that do not support gradients */
        background: -webkit-linear-gradient(#2771fc, #2796fc, #279dfc, #27b3fc); /* For Safari 5.1 to 6.0 */
        background: -o-linear-gradient(#2771fc, #2796fc, #279dfc, #27b3fc); /* For Opera 11.1 to 12.0 */
        background: -moz-linear-gradient(#2771fc, #2796fc, #279dfc, #27b3fc); /* For Firefox 3.6 to 15 */
        background: linear-gradient(#2771fc, #2796fc, #279dfc, #27b3fc); /* Standard syntax */
        padding-top: 80px;
    }

    .reviews {
        background: #F5F5F5;
        height: 560px;
        text-align: center;
        padding-top: 40px;
    }

    .review-container {
        display: block;
        padding: 0 70px 10px;
        overflow-y: hidden;
        text-align: left;
        width: 650px;
        margin: 24px auto 0;
    }

    .img-circle-doctor {
        border-radius: 50%;
        height: 200px;
        width: 200px;
        background: #fff;
        -webkit-box-shadow: 0 0 5px 1px rgb(112, 112, 112);
        -moz-box-shadow: 0 0 5px 1px rgb(112, 112, 112);
        box-shadow: 0 0 5px 1px rgb(112, 112, 112);
    }

    .review-card {
        box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .2), 0 1px 1px 0 rgba(0, 0, 0, .14), 0 2px 1px -1px rgba(0, 0, 0, .12);
        width: 330px;
        padding: 16px;
        border-radius: 20px;
        margin-top: 20px;
        background: white;
    }

    .dialog-container {
        width: 340px;
        height: 240px;
    }

    .doctor-code-input {
        width: 80%;
        margin: 16px auto;
    }

    .coupon-code {
        bottom: 20px;
    }

    .wrap-content-desktop {
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }

    .logo-blue {
        height: 36px;
        width: 113px;
        margin-right: 12px;
        margin-top: 6px;
        background: url('/img/logo-blue.png') no-repeat;
        background-size: contain;
    }

    .hl-press-icon a > img {
        margin: 5px auto;
    }

    a.bl {
        content: url(/img/greyBL.jpg);
        height: 50px;
    }

    a.vc {
        content: url(/img/greyVC.png);
        height: 50px;
    }

    a.tia {
        content: url(/img/greyTIA.jpg);
        height: 50px;
    }

    a.inc42 {
        content: url(/img/greyINC42.png);
        height: 50px;
    }

    a.ts {
        content: url(/img/greyTS.jpg);
        height: 50px;
    }

    a.et {
        content: url(/img/greyET.jpg);
        height: 50px;
    }

    a.toi {
        content: url(/img/greyTOI.png);
        height: 50px;
    }

    a.bs {
        content: url(/img/greyBS.jpg);
        height: 50px;
    }

    a.yahoo {
        content: url(/img/greyYahoo.jpg);
        height: 50px;
    }

    a.ndtv {
        content: url(/img/greyNDTV.jpg);
        height: 50px;
    }

    a.engdget {
        content: url(/img/engagetGrey.png);
        height: 50px;
    }

    a.huff {
        content: url(/img/huffGrey.jpg);
        height: 50px;
    }

    .hl-pressBox {
        text-align: center;
        padding-top: 60px;
        margin: 0 auto;
    }

    #offerZone, #testimonial, #container-new-1, #ourSpecialities {
        padding: 50px 40px;
    }
}

@media (max-width: 960px) {

    .white-background {
        background: #fff;
        padding: 50px 20px;
    }

    .waiting-screen-inner {
        text-align: center;
    }

    .waiting-screen-mobile {
        margin-top: 40px;
    }

    .body-on-load {
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    .body {
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
    }

    .doctor-code-container {
        margin: 42px 0 42px 0;
    }

    .doctor-code-input-container {
        padding: 50px 20px 0 20px;
    }

    .dialog-container {
        width: 100%
    }

    .check-mobile-heading {
        margin-top: 12px;
    }

    .img-circle-doctor {
        border-radius: 50%;
        height: 95px;
        width: 95px;
        background: white;
        -webkit-box-shadow: 0 0 5px 1px rgb(112, 112, 112);
        -moz-box-shadow: 0 0 5px 1px rgb(112, 112, 112);
        box-shadow: 0 0 5px 1px rgb(112, 112, 112);
    }

    .reviews {
        background: #fff;
        height: 220px;
        text-align: center;
        padding-top: 40px;
    }

    .review-container {
        display: -webkit-box;
        display: -moz-box;
        padding: 10px;
        overflow-y: hidden;
        text-align: left;
        margin-top: 24px;
    }

    .meet-doctor {
        background: #2b75ff;
        color: white;
        text-align: center;
        height: 315px;
        padding-top: 34px;
    }

    .footer-info-item {
        margin-top: 16px;
    }

    .explainer-heading {
        font-size: 20px;
        margin: auto;
        font-weight: 400;
    }

    .heading {
        text-align: center;
        margin-top: 40px;
        font-size: 21px;
    }

    .card {
        background: white;
    }

    .card-small {
        -webkit-user-select: none;
        -moz-user-select: none;
        -ms-user-select: none;
        user-select: none;
        width: 100%;
    }

    .call-type-toolbar {
        background: #2771fc; /* For browsers that do not support gradients */
        background: -webkit-linear-gradient(#2771fc, #2796fc, #279dfc, #27b3fc); /* For Safari 5.1 to 6.0 */
        background: -o-linear-gradient(#2771fc, #2796fc, #279dfc, #27b3fc); /* For Opera 11.1 to 12.0 */
        background: -moz-linear-gradient(#2771fc, #2796fc, #279dfc, #27b3fc); /* For Firefox 3.6 to 15 */
        background: linear-gradient(#2771fc, #2796fc, #279dfc, #27b3fc); /* Standard syntax */
        padding-bottom: 16px;
        transition: background 0.4s ease;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.26);
    }

    .sticky-footer {
        z-index: 1;
        width: 100%;
        position: absolute;
        bottom: 0;
    }

    .card-xs {
        background: white;
        border-radius: 2px;
        box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .2), 0 1px 1px 0 rgba(0, 0, 0, .14), 0 2px 1px -1px rgba(0, 0, 0, .12);
    }

    .video-holder {
        position: fixed;
        width: 100%;
        overflow: hidden;
    }

    .video-buttons {
        bottom: 0;
        text-align: center;
        position: fixed;
        height: 60px;
        background-color: rgba(0, 0, 0, 0.5);
        width: 100%;
        display: table;
        line-height: 60px;
        vertical-align: middle;
    }

    .doctor-info {
        color: white;
        top: -280px;
        background: rgba(44, 62, 80, 0.86);
        position: absolute;
        width: 100%;
        z-index: 5;
        text-align: center;
    }

    .pane-chat-msgs {
        width: 100%;
        height: 80%;
        position: absolute;
    }

    .chat-footer {
        bottom: 0;
        text-align: center;
        position: fixed;
        height: 60px;
        background-color: white;
        width: 100%;
        line-height: 60px;
        vertical-align: middle;
    }

    #publisher {
        position: absolute;
        bottom: 73px;
        right: 10px;
        width: 100px;
        height: 75px;
        z-index: 100;
    }

    .home-card-container {
        display: -webkit-box;
        display: -moz-box;
        width: 90%;
        margin: 16px auto 27px;
        overflow-y: hidden;
    }

    .home-card {
        border: solid rgba(0, 0, 0, 0.12) 1px;
        width: 266px;
        margin-right: 16px;
        border-radius: 2px;
        padding: 8px 8px 16px;
    }

    .watch-video-container {
        background: #414141;
        text-align: center;
        padding: 45px 45px 0 45px
    }

    .call-type-container {
        margin: 16px 0;
    }

    .attachment-container {
        margin: 65px 0 100px 0;
    }

    .finding-doctors-container {
        margin: 24px;
    }

    .summary-heading {
        text-align: right;
    }

    .feed-cover {
        background: red;
        height: 200px;
        width: 100%;
    }

    .feed-container {
        margin: 16px;
        text-align: left;
    }

    .consult-toolbar {
        background: #2771fc !important;
        color: white !important;
        transition: background 0.4s ease;
        box-shadow: 0 2px 5px rgba(0, 0, 0, 0.26);
    }

    .footer {
        background: black;
        padding: 16px;
        color: white;
        text-align: center
    }

    .links {
        margin: 20px 0;
    }

    .quick-links {
        background: #1A1A1A;
        color: white;
        font-size: 12px;
        padding: 12px;
    }

    #offerZone, #testimonial, #ourSpecialities {
        padding: 22px 30px;
    }

    #container-new-1 {
        padding: 60px 30px 22px;
    }
}

.footer {
    font-size: 12px;
}

.quick-link-active {
    border-bottom: solid 2px;
    padding-bottom: 8px;
}

md-autocomplete {
    width: 100%;
    box-shadow: none;
    height: 50px !important;
}

md-autocomplete-wrap {
    height: 50px !important;
}

md-autocomplete input:not(.md-input) {
    height: 50px;
}

.divider-container {
    display: inline-flex;
    width: 100%
}

[ng-click],
[data-ng-click],
[x-ng-click],
[ng-mousedown] {
    cursor: pointer;
}

.LeftPanel {
    height: 321px;
    width: 153px;
    position: absolute;
    top: 180px;
    right: 0;
    z-index: 98;
    transition: transform .4s ease;
}

.LeftPanel:hover {
    transform: translate3d(-350px, 0, 0);
}

.LeftPanel .sub-container {
    height: inherit;
    position: relative;
    width: inherit;
    right: 0;
    -webkit-transition: right .3s, left .3s;
    -moz-transition: right .3s, left .3s;
    -ms-transition: right .3s, left .3s;
    -o-transition: right .3s, left .3s;
    transition: right .3s, left .3s;
}

.LeftPanel .sub-container .hoverAdded {
    background: #ece9e7 !important;
    color: #000 !important;
}

.LeftPanel .sub-container .right-nav-child {
    height: 432px;
}

.LeftPanel .right-nav-child {
    height: inherit;
    padding: 0 25px;
    position: absolute;
    right: -350px !important;
    top: 0;
    width: 300px;
    min-height: 430px;
    z-index: 1000;
    background: #ece9e7;
    color: black;
}

.LeftPanel .buttons {
    text-align: left;
    padding-left: 5px;
    color: #fff;
    font-size: 16px;
    line-height: 63px;
    height: 63px;
    width: 100%;
    float: left;
    display: block;
    margin: auto auto 1px auto;
    position: static !important;
    background: rgba(39, 39, 39, 0.62);
}

.home-splash-examples {
    margin: 10px auto 0;
    text-align: center;
    color: #fff;
    height: 1.6em;
    overflow: hidden;
    text-shadow: 0 1px 0 rgba(0, 0, 0, .05);
    font-size: 15px;
    opacity: .9;
    text-decoration: underline;
}

.home-splash-examples .home-splash-example:first-child {
    margin-left: 0;
}

.home-splash-examples .home-splash-example {
    margin-left: 12px;
}

#doctorCode {
    background: rgba(255, 142, 57, 0.71);
    padding: 16px;
}

#doctorCode .codeLabel {
    font-size: 26px;
    color: #fff;
    opacity: .8;
    padding-right: 15px;
}

#doctorCode input {
    height: auto;
    border: none;
    min-height: 40px;
    background: rgba(255, 248, 243, 0.52);
    border-radius: 4px;
    padding: 0 15px;
}

#doctorCode button {
    background: #fcab6f;
    border-radius: 4px;
    height: auto;
    min-height: 40px;
    color: rgba(255, 255, 255, 0.79);
    font-size: 18px;
}

#offerZone .offer-main-container, #offerZone .offer-secondary .border {
    min-height: inherit
}

#ourSpecialities ul[rn-carousel] {
    width: 90%;
    height: auto;
    min-height: 263px;
}

#ourSpecialities ul[rn-carousel] > li {
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    border-right: 1px dotted;
    padding: 12px;
    margin: 0;
    width: 206px;
    height: auto;
    min-height: 192px;
}

#ourSpecialities .triangle {
    right: 0;
    left: 0;
    width: 0;
    height: 0;
    border-left: 23px solid transparent;
    border-right: 23px solid transparent;
    border-bottom: 23px solid #27abfc;
    position: absolute;
    bottom: -48px;
    text-align: center;
    margin: auto;
}

#ourSpecialities .rn-carousel-control {
    margin-top: -114px;
}

#ourSpecialities .profile-circle {
    width: 156px;
    height: 85px;
    margin: auto 15px auto 0;
    border: 1px solid #fff;
    box-shadow: 1px 1px 3px #bfb9b9;
    background-size: cover !important;
    background-repeat: no-repeat !important;
    background-position: center center !important;
}

#testimonial {
    background: #f7f7f7;
}

#testimonial ul[rn-carousel] {
    width: auto;
    height: auto;
    min-height: 330px;
}

#testimonial ul[rn-carousel] > li {
    color: #000;
    -webkit-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    overflow: visible;
    vertical-align: top;
    position: absolute;
    left: 0;
    right: 0;
    white-space: normal;
    padding: 0;
    margin: 0;
    list-style-type: none;
    width: 100%;
    height: auto;
    display: inline-block;
}

#testimonial .random-card {
    display: inline-flex !important;
    background: white;
    border-radius: 4px;
    box-shadow: 1px 1px 1px #ccc;
    padding: 10px;
    margin: 5px;
    min-height: 125px;
}

#testimonial .yellow-container {
    background: rgba(250, 230, 115, 0.24) !important;
}

@media (min-width: 960px) {
    #ourSpecialities .doctor-profile {
        padding: 0 30px;
    }

    #ourSpecialities .doctor-profile .profile-detail {
        font-size: 13px
    }

    #ourSpecialities .doctor-profile .profile-detail p:first-child {
        font-size: 16px
    }

    #testimonial .container-new-1 {
        padding-top: 40px;
    }

    #testimonial .random-card {
        line-height: 6.5px;
    }

    #testimonial .random-card .mdi {
        font-size: 50px;
    }

    #testimonial .random-card > div {
        margin: 0 40px;
    }

    #testimonial .container-new-2 .video-container-buttons {
        margin-top: 241px;
    }

    #offerZone .offer-main {
        margin: auto 15px auto auto;
    }

    #offerZone .offer-main-font-1 {
        font-size: 38px;
    }

    #offerZone .offer-main-font-2 {
        font-size: 50px;
    }

    #offerZone .offer-margin {
        margin-right: 10px;
    }

    #offerZone .offer-main, #offerZone .offer-secondary {
        min-height: 304px;
        height: auto;
    }
}

@media (max-width: 960px) {
    #offerZone .offer-main, #offerZone .offer-secondary {
        min-height: 100px;
        height: auto;
        margin: 5px 0;
    }

    #offerZone .offer-margin {
        margin-bottom: 10px;
    }

    #offerZone .offer-main-font-1 {
        font-size: 16px;
    }

    #offerZone .offer-main-font-2 {
        font-size: 24px;
    }

    #ourSpecialities .doctor-profile {
        padding: 5px 0;
    }

    #ourSpecialities .doctor-profile .profile-detail {
        font-size: 10px
    }

    #ourSpecialities .doctor-profile .profile-detail p:first-child {
        font-size: 14px
    }

    #ourSpecialities ul[rn-carousel] > li {
        width: 250px !important;
        border-right: none !important;
    }

    #testimonial .container-new-1 {
        padding-top: 18px;
    }

    #testimonial ul[rn-carousel] {
        min-height: 375px !important;
    }

    #testimonial .testimonial-reviews {
        width: 100%;
    }

    #testimonial .random-card .mdi {
        font-size: 30px;
    }

    #testimonial .random-card > div {
        margin: 0 0 0 15px;
        font-size: 11px;
    }

    #testimonial .container-new-2 {
        padding-top: 18px;
    }
}

.rn-carousel-control.rn-carousel-control-next:before, .rn-carousel-control.rn-carousel-control-prev:before {
    vertical-align: middle;
}

ul[rn-carousel] > li {
    color: black;
    -webkit-backface-visibility: hidden;
    -ms-backface-visibility: hidden;
    backface-visibility: hidden;
    overflow: visible;
    vertical-align: top;
    position: absolute;
    left: 0;
    right: 0;
    white-space: normal;
    margin: 0;
    list-style-type: none;
    width: 270px;
    padding: 0 10px 0 0;
    height: 100%;
    display: inline-block;
}

ul[rn-carousel] {
    overflow: hidden;
    padding: 0;
    z-index: 60;
    margin: -52px 82px;
    height: 156px;
    white-space: nowrap;
    position: relative;
    -webkit-perspective: 1000px;
    -ms-perspective: 1000px;
    perspective: 1000px;
    -ms-touch-action: pan-y;
    touch-action: pan-y;
}

.rn-carousel-control {
    -webkit-transition: opacity 0.2s ease-out;
    transition: opacity 0.2s ease-out;
    font-size: 2rem;
    position: absolute;
    cursor: pointer;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, .2), 0 1px 1px 0 rgba(0, 0, 0, .14), 0 2px 1px -1px rgba(0, 0, 0, .12);
    background: white;
    border-radius: 50%;
    width: 45px;
    vertical-align: middle;
    line-height: 35px;
    height: 45px;
    color: #ff8e39;
    z-index: 60;
    margin-top: -75px;
}

div.rn-carousel-indicator span {
    cursor: pointer;
    color: #666;
}

div.rn-carousel-indicator span.active {
    color: white;
}

/* prev/next controls */
.rn-carousel-control {
    -webkit-transition: opacity 0.2s ease-out;
    transition: opacity 0.2s ease-out;
    font-size: 2rem;
    position: absolute;
    opacity: 0.75;
    cursor: pointer;
}

.rn-carousel-control:hover {
    opacity: 1;
}

.rn-carousel-control.rn-carousel-control-prev {
    left: 0.5em;
}

.rn-carousel-control.rn-carousel-control-prev:before {
    content: "<";
}

.rn-carousel-control.rn-carousel-control-next {
    right: 0.5em;
}

.rn-carousel-control.rn-carousel-control-next:before {
    content: ">";
}

.referFriend .sent-referrals .sent-referral:first-child {
    border-top: 0;
}

.referFriend .sent-referrals .sent-referral {
    border-top: 1px solid #c4c4c4;
    padding: 10px 0;
    display: flex;
}

.referFriend .media:before, .media:after {
    content: " ";
    display: table;
}

.referFriend .media-body {
    padding-left: 5px;
    width: 100%
}

/*PARTNER SCRIPT*/

.devClass {
    border-left: 1px solid #c9ced4;
    border-right: 1px solid #c9ced4;
    margin: 0 auto;
}

.devClass .devSideNav {
    overflow-y: auto;
    position: fixed;
    height: 100%;
    width: 200px
}

.devSideNav .devContext {
    font-size: 13px;
    padding: 0 0 120px 0;
}

.devContextBody .mainHead {
    font-size: 15px;
    margin-bottom: 12px;
    font-weight: 600;
}

.devContextBody ul {
    list-style-type: none;
    margin: 0;
    padding: 0;
}

.devContextBody ul li {
    padding: 5px;
}

.devContextBody ul li a {
    color: #4b4f56
}

.devSideNavContext {
    background: #fff;
    height: 100%;
    pointer-events: all;
    padding-left: 200px;
}

.devSideNavContext .devContextBody {
    border: 0;
    border-bottom: 1px solid #e9ebee;
    border-radius: 0;
    margin: 0;
    border-left: 1px solid #e9ebee
}

.devSideNavContext .devContextBody .c_body1 {
    border: 0;
    border-bottom: 1px solid #e9ebee;
    border-radius: 0;
    margin: 0;
    position: relative;
}

.devSideNavContext .devContextBody .c_body2 {
    color: #4b4f56;
    font-size: 14px;
    line-height: 24px;
    padding: 32px;
}

.devSideNavContext .devContextBody .c_body3 {
    color: #4b4f56;
    font-size: 14px;
    line-height: 24px;
    padding: 20px 32px;
}

.devSideNavContext .devContextBody .c_body2 h2 {
    font-size: 20px;
    font-weight: normal;
    line-height: 24px;
    margin-bottom: 24px;
}

.devSideNavContext .devContextBody .c_body2 .codeSnippet {
    font-size: 13px;
    -webkit-box-shadow: 0 0 0 3px #eee;
    box-shadow: 0 0 0 3px #eee;
    overflow: auto !important;
    margin-bottom: 0;
    padding: 10px;
    display: block;
    line-height: 1.6;
    word-break: break-all;
    word-wrap: break-word;
    background-color: #f5f5f5;
    border: 1px solid #cccccc;

}

.devSideNavContext .devContextBody .c_body3 .aBox {
    font-size: 16px;
    padding: 10px;
    color: #666;
    border: 1px solid #3ad0df;
}

.codeSnippet .jd-tag {
    color: #9c3328;
}

.codeSnippet .jd-attribute {
    color: #047d65;
}

.codeSnippet .jd-string {
    color: #b35e14;
}

.codeSnippet .jd-comment {
    color: #75787b;
}

/*PARTNER LANDING*/

#thirdPartyContent {
    width: 100%;
    height: 90%;
    /*background: #a7e4dc;*/
    overflow: hidden;
}

#thirdPartyContent .contentLeft {
    width: 45%;
    height: 100%;
    overflow: hidden;
    /*padding: 2%;*/
    float: left;
    margin-left: 6%;
}

#thirdPartyContent .contentRight {
    width: 49%;
    height: 100%;
    float: left;
    overflow: hidden;
}

#thirdPartyContent .contentRight img {
    width: 79.5%;
    padding-top: 29px;
    padding-left: 65px;
}

#contentHeading h1 {
    color: rgb(38, 72, 99);
}

.light {
    color: rgb(94, 123, 131);
}

@media screen and (max-width: 850px) {
    .light {
        line-height: initial;
    }
}

.step {
    margin-top: 3em;
    line-height: 5px;
}

.step p:nth-child(1) {
    font-weight: bold;
    font-size: 10px;
}

.step p:nth-child(2) {
    font-size: 21px;
}

.button {
    color: rgba(255, 255, 255, 0.87);
    background-color: rgb(38, 72, 99);
    border: none;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .26);
    padding: 10px 15px;
    font-size: 1.1em;
}

.button:hover {
    cursor: pointer;
}

hr {
    display: block;
    height: 1px;
    border: 0;
    border-top: 1px solid rgb(94, 123, 131);
    margin: 1em 0;
    padding: 0;
}

#thirdPartyFooter {
    text-align: center;
    color: white;
    padding: 1%;
    overflow: hidden;
    background: rgb(38, 72, 99);
}

.footerBox {
    width: 33%;
    float: left;
}

#thirdPartyFooter h3 {
    margin-bottom: 3.5%;
}

#partnerButton {
    background: #2771fc;
    padding: 5px 20px;
    font-size: 18px;
    cursor: pointer;
    letter-spacing: .03em;
    border-radius: 3px;
    box-sizing: border-box;
    color: #fff;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    position: relative;
    border: 0;
    display: inline-block;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    margin: 6px 0;
    line-height: 36px;
    min-height: 36px;
    white-space: nowrap;
    min-width: 88px;
    text-align: center;
    font-weight: 600;
    font-style: inherit;
    font-variant: inherit;
    text-decoration: none;
    font-family: inherit;
    overflow: hidden;
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .26);
    transition: box-shadow .4s cubic-bezier(.25, .8, .25, 1), background-color .4s cubic-bezier(.25, .8, .25, 1);
}

@media only screen and (max-width: 1024px) {
    #thirdPartyContent .contentRight img {
        width: 90%;
    }
}

@media only screen and (max-width: 600px) {
    #thirdPartyContent .contentLeft {
        width: 99%;
    }

    #contentSteps {
        width: 90%;
    }

    #thirdPartyContent .contentRight {
        display: none;
    }

    .footerBox img {
        width: 80%;
    }
}

@media only screen and (max-width: 600px) {
    .button {
        padding: 5px 10px;
    }

    .footerBox {
        width: 100%;
        margin: 5% 0 15% 0;
    }

    .footerBox img {
        width: 70%;
    }
}

table {
    background-color: transparent;
}

caption {
    padding-top: 8px;
    padding-bottom: 8px;
    color: #777777;
    text-align: left;
}

th {
    text-align: left;
}

.table {
    width: 100%;
    max-width: 100%;
    margin-bottom: 20px;
}

.table > thead > tr > th,
.table > tbody > tr > th,
.table > tfoot > tr > th,
.table > thead > tr > td,
.table > tbody > tr > td,
.table > tfoot > tr > td {
    padding: 8px;
    line-height: 1.42857143;
    vertical-align: top;
    border-top: 1px solid #dddddd;
}

.table > thead > tr > th {
    vertical-align: bottom;
    border-bottom: 2px solid #dddddd;
}

.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;
}

.table > tbody + tbody {
    border-top: 2px solid #dddddd;
}

.table .table {
    background-color: #ffffff;
}

.table-condensed > thead > tr > th,
.table-condensed > tbody > tr > th,
.table-condensed > tfoot > tr > th,
.table-condensed > thead > tr > td,
.table-condensed > tbody > tr > td,
.table-condensed > tfoot > tr > td {
    padding: 5px;
}

.table-bordered {
    border: 1px solid #dddddd;
}

.table-bordered > thead > tr > th,
.table-bordered > tbody > tr > th,
.table-bordered > tfoot > tr > th,
.table-bordered > thead > tr > td,
.table-bordered > tbody > tr > td,
.table-bordered > tfoot > tr > td {
    border: 1px solid #dddddd;
}

.table-bordered > thead > tr > th,
.table-bordered > thead > tr > td {
    border-bottom-width: 2px;
}

.table-striped > tbody > tr:nth-of-type(odd) {
    background-color: #f9f9f9;
}

.table-hover > tbody > tr:hover {
    background-color: #f5f5f5;
}

table col[class*="col-"] {
    position: static;
    float: none;
    display: table-column;
}

table td[class*="col-"],
table th[class*="col-"] {
    position: static;
    float: none;
    display: table-cell;
}

.table > thead > tr > td.active,
.table > tbody > tr > td.active,
.table > tfoot > tr > td.active,
.table > thead > tr > th.active,
.table > tbody > tr > th.active,
.table > tfoot > tr > th.active,
.table > thead > tr.active > td,
.table > tbody > tr.active > td,
.table > tfoot > tr.active > td,
.table > thead > tr.active > th,
.table > tbody > tr.active > th,
.table > tfoot > tr.active > th {
    background-color: #f5f5f5;
}

.table-hover > tbody > tr > td.active:hover,
.table-hover > tbody > tr > th.active:hover,
.table-hover > tbody > tr.active:hover > td,
.table-hover > tbody > tr:hover > .active,
.table-hover > tbody > tr.active:hover > th {
    background-color: #e8e8e8;
}

.table > thead > tr > td.success,
.table > tbody > tr > td.success,
.table > tfoot > tr > td.success,
.table > thead > tr > th.success,
.table > tbody > tr > th.success,
.table > tfoot > tr > th.success,
.table > thead > tr.success > td,
.table > tbody > tr.success > td,
.table > tfoot > tr.success > td,
.table > thead > tr.success > th,
.table > tbody > tr.success > th,
.table > tfoot > tr.success > th {
    background-color: #dff0d8;
}

.table-hover > tbody > tr > td.success:hover,
.table-hover > tbody > tr > th.success:hover,
.table-hover > tbody > tr.success:hover > td,
.table-hover > tbody > tr:hover > .success,
.table-hover > tbody > tr.success:hover > th {
    background-color: #d0e9c6;
}

.table > thead > tr > td.info,
.table > tbody > tr > td.info,
.table > tfoot > tr > td.info,
.table > thead > tr > th.info,
.table > tbody > tr > th.info,
.table > tfoot > tr > th.info,
.table > thead > tr.info > td,
.table > tbody > tr.info > td,
.table > tfoot > tr.info > td,
.table > thead > tr.info > th,
.table > tbody > tr.info > th,
.table > tfoot > tr.info > th {
    background-color: #d9edf7;
}

.table-hover > tbody > tr > td.info:hover,
.table-hover > tbody > tr > th.info:hover,
.table-hover > tbody > tr.info:hover > td,
.table-hover > tbody > tr:hover > .info,
.table-hover > tbody > tr.info:hover > th {
    background-color: #c4e3f3;
}

.table > thead > tr > td.warning,
.table > tbody > tr > td.warning,
.table > tfoot > tr > td.warning,
.table > thead > tr > th.warning,
.table > tbody > tr > th.warning,
.table > tfoot > tr > th.warning,
.table > thead > tr.warning > td,
.table > tbody > tr.warning > td,
.table > tfoot > tr.warning > td,
.table > thead > tr.warning > th,
.table > tbody > tr.warning > th,
.table > tfoot > tr.warning > th {
    background-color: #fcf8e3;
}

.table-hover > tbody > tr > td.warning:hover,
.table-hover > tbody > tr > th.warning:hover,
.table-hover > tbody > tr.warning:hover > td,
.table-hover > tbody > tr:hover > .warning,
.table-hover > tbody > tr.warning:hover > th {
    background-color: #faf2cc;
}

.table > thead > tr > td.danger,
.table > tbody > tr > td.danger,
.table > tfoot > tr > td.danger,
.table > thead > tr > th.danger,
.table > tbody > tr > th.danger,
.table > tfoot > tr > th.danger,
.table > thead > tr.danger > td,
.table > tbody > tr.danger > td,
.table > tfoot > tr.danger > td,
.table > thead > tr.danger > th,
.table > tbody > tr.danger > th,
.table > tfoot > tr.danger > th {
    background-color: #f2dede;
}

.table-hover > tbody > tr > td.danger:hover,
.table-hover > tbody > tr > th.danger:hover,
.table-hover > tbody > tr.danger:hover > td,
.table-hover > tbody > tr:hover > .danger,
.table-hover > tbody > tr.danger:hover > th {
    background-color: #ebcccc;
}

.table-responsive {
    overflow-x: auto;
    min-height: 0.01%;
}

@media screen and (max-width: 767px) {
    .table-responsive {
        width: 100%;
        margin-bottom: 15px;
        overflow-y: hidden;
        -ms-overflow-style: -ms-autohiding-scrollbar;
        border: 1px solid #dddddd;
    }

    .table-responsive > .table {
        margin-bottom: 0;
    }

    .table-responsive > .table > thead > tr > th,
    .table-responsive > .table > tbody > tr > th,
    .table-responsive > .table > tfoot > tr > th,
    .table-responsive > .table > thead > tr > td,
    .table-responsive > .table > tbody > tr > td,
    .table-responsive > .table > tfoot > tr > td {
        white-space: nowrap;
    }

    .table-responsive > .table-bordered {
        border: 0;
    }

    .table-responsive > .table-bordered > thead > tr > th:first-child,
    .table-responsive > .table-bordered > tbody > tr > th:first-child,
    .table-responsive > .table-bordered > tfoot > tr > th:first-child,
    .table-responsive > .table-bordered > thead > tr > td:first-child,
    .table-responsive > .table-bordered > tbody > tr > td:first-child,
    .table-responsive > .table-bordered > tfoot > tr > td:first-child {
        border-left: 0;
    }

    .table-responsive > .table-bordered > thead > tr > th:last-child,
    .table-responsive > .table-bordered > tbody > tr > th:last-child,
    .table-responsive > .table-bordered > tfoot > tr > th:last-child,
    .table-responsive > .table-bordered > thead > tr > td:last-child,
    .table-responsive > .table-bordered > tbody > tr > td:last-child,
    .table-responsive > .table-bordered > tfoot > tr > td:last-child {
        border-right: 0;
    }

    .table-responsive > .table-bordered > tbody > tr:last-child > th,
    .table-responsive > .table-bordered > tfoot > tr:last-child > th,
    .table-responsive > .table-bordered > tbody > tr:last-child > td,
    .table-responsive > .table-bordered > tfoot > tr:last-child > td {
        border-bottom: 0;
    }
}

.warp-content {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}

.video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 30px;
}

.video-container {
    position: relative;
    width: 100%;
    height: 0;
    padding-bottom: 51.25%;
}

#call-timer {
    color: #fff;
    font-size: 21px;
    position: absolute;
    top: 74px;
    border-radius: 3px;
    padding: 4px;
    background: rgba(56, 51, 50, 0.5);
    left: 10px;
    z-index: 100;
}

.so-main {
    font-size: 14px;
    line-height: 1.42857;
    color: #393939;
    background-color: #F9F9F9;
    box-sizing: border-box;
    position: relative;
}

.so-main .container, .so-main .container-fluid {
    margin-right: auto;
    margin-left: auto;
    padding-left: 15px;
    padding-right: 15px;
}

@media (min-width: 568px) {
    .so-main .container {
        width: 550px;
    }
}

@media (min-width: 768px) {
    .so-main .container {
        width: 750px;
    }
}

@media (min-width: 992px) {
    .so-main .container {
        width: 970px;
    }
}

@media (min-width: 1200px) {
    .so-main .container {
        width: 1170px;
    }
}

.so-main #so-header {
    min-height: 534px;
    padding-top: 50px;
    background: url(/img/second-opinion.jpg) center top no-repeat;
    background-size: cover;
}

.so-main .so-circle-data {
    background: #ff9d53;
    display: block;
    height: 30px;
    width: 30px;
    line-height: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    color: #fff;
    text-align: center;
    font-size: 1em;
    font-weight: 600;
}

.so-main .so-circle-hollow {
    border: 2px solid #ff9d53;
    display: block;
    height: 30px;
    width: 30px;
    line-height: 30px;
    -moz-border-radius: 30px;
    border-radius: 30px;
    color: #ff9d53;
    text-align: center;
    font-size: 1em;
    font-weight: 600;
}

.so-main .so-circle-data-title {
    font-weight: 600;
    margin: auto 10px;
}

.so-main .so-circle-hollow-title {
    margin: auto 10px;
    color: #b9b9b9;
}

@media screen and (max-width: 600px) {
    .so-main #so-header {
        min-height: inherit;
        height: 415px;
        padding-top: 0;
        background-size: cover;
        float: left;
        width: 100%;
    }

    .so-main #so-detail {
        padding-top: 68px;
    }

    .so-main #so-case {
        padding-top: 68px;
    }

    .so-main #so-submit {
        padding-top: 10px;
    }

    .so-main #so-header h1.title {
        font-size: 24px !important;
    }

    .so-main #so-header .back-ground {
        padding: 10px 15px !important;
        margin-top: 15px;
    }

    .so-main .so-button {
        font-size: 14px !important;
        line-height: 40px !important;
    }

    .so-main p.title {
        font-size: 14px !important;
    }

    .so-main #so-condition .condition-two {
        padding: 20px 30px !important;
        border-left: none !important;
        text-align: center;
    }

    .so-main #so-condition .condition-one {
        padding: 0 30px !important;
    }

    .so-main #so-doctors .item {
        margin: 10px auto;
    }

    .so-main #so-doctors .item-content {
        height: auto !important;
        min-height: 225px !important;
    }

    .so-main #so-doctors .item .job-title {
        margin-top: 0 !important;
        font-size: 14px !important;
        margin-bottom: 10px !important;
    }

    .so-main #so-doctors .item .doctor-name {
        margin-top: 8px !important;
        height: 20px !important;
    }

    .so-main #so-common-req li a {
        font-size: 13px;
        padding: 0 5px;
    }

    .so-main #so-common-req .common-req-two {
        border-left: none !important;
    }

    .so-main #so-contact {
        padding-top: 25px !important;
    }

    .so-main .so-carousel .so-carousel-height {
        height: 485px !important;
    }
}

.so-main #so-header h1.title {
    color: #595959;
    font-size: 30px;
    margin-bottom: 0;
}

.so-main #so-header .back-ground {
    background: rgba(255, 255, 255, 0.74);
    padding: 10px 50px;
    border-radius: 30px;
}

.so-main #so-header li {
    padding-bottom: 5px;
    list-style: none;
    font-size: 18px;
}

.so-main .so-button {
    line-height: 48px;
    font-size: 18px;
    transition: all .2s ease-in-out;
    padding-left: 30px;
    padding-right: 30px;
    border-bottom: solid 3px #4162a0;
}

.so-main .section-title {
    font-size: 24px;
    text-align: center;
    color: #333;
}

.so-main #so-condition {
    padding-top: 32px;
    padding-bottom: 60px;
    background: #fff;
}

.so-main #so-condition h1 {
    margin-bottom: 45px;
}

.so-main #so-condition .condition-two {
    padding: 0 66px;
    border-left: 1px solid #d9d8d8;
}

.so-main #so-condition .condition-two p {
    margin: 0;
}

.so-main #so-doctors {
    padding-top: 32px;
    padding-bottom: 45px;
    background: #f7f7f7;
}

.so-main #so-doctors .section-subtitle {
    margin-top: -3px;
    margin-bottom: 52px;
    text-align: center;
    font-size: 18px;
    color: #666;
}

.so-main #so-doctors .item {
    position: relative;
    padding-left: 15px;
    padding-right: 15px;
}

.so-main #so-doctors .item img {
    width: 100%;
}

@media screen and (min-width: 767px) {
    .so-main #so-doctors .item-content {
        min-height: 290px;
    }
}

.so-main #so-doctors .item-content {
    padding: 7px 20px 25px;
    background: #fff;
    min-height: 260px;
    border: 1px solid #eee;
    margin-top: -5px;
}

.so-main #so-doctors .item p {
    margin-bottom: 0;
    line-height: 18px;
}

.so-main #so-doctors .item .job-title {
    margin-bottom: 15px;
    margin-top: 0;
    font-size: 13px;
}

.so-main #so-doctors .item .doctor-name {
    margin-bottom: 2px;
    line-height: 16px;
    font-size: 14px;
    height: 32px;
}

.so-main #so-doctors .item .hospital {
    color: #5c7996;
    font-weight: 700;
    font-size: 13px;
    line-height: 16px;
    height: 32px;
    margin-top: 10px;
    text-transform: uppercase;
    position: absolute;
    bottom: 0;
    max-width: 250px;
    padding-right: 10px;
}

.so-main #so-disease {
    padding-top: 32px;
    padding-bottom: 45px;
    background: linear-gradient(#2771fc, #2796fc, #279dfc, #27b3fc);
}

.so-main #so-disease .disease-one .disease-one-inner {
    border: 3px solid #fff;
    margin: 10px;
    padding: 10px;
    border-radius: 5px;
    min-height: 180px;
    height: auto;
    min-width: 164px;
}

.so-main #so-disease .disease-one .disease-one-inner p {
    padding-top: 40px;
    margin: 0;
    font-size: 16px;
    color: #fff;
    font-weight: 700;
}

.so-main #so-common-req {
    padding-top: 32px;
    padding-bottom: 35px;
    background: #fff;
}

.so-main #so-common-req ul {
    margin: 0;
    padding: 0 70px;
    text-align: center;
}

.so-main #so-common-req li {
    margin: 0 10px 10px;
    display: inline-block;
    list-style: none;
}

.so-main #so-common-req li a:hover {
    background: #d4dce6;
    border-color: #d4dce6;
    text-decoration: none;
}

.so-main #so-common-req li a {
    padding: 0 12px;
    display: block;
    background: #eaeef3;
    border: 1px solid #eaeef3;
    line-height: 34px;
    font-size: 16px;
    color: #18334e;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    transition: all .2s ease-in-out;
}

.so-main #so-common-req .common-req-two {
    border-left: 1px solid #d9d8d8;
}

.so-main #so-faqs {
    padding-top: 33px;
    padding-bottom: 68px;
    background: #f7f7f7;
}

.so-main #so-faqs .item {
    margin-bottom: 12px;
    overflow: hidden;
}

.so-main #so-faqs .question {
    padding-left: 38px;
    padding-right: 20px;
    float: left;
    font-weight: 600;
    position: relative;
    line-height: 22px;
    font-size: 18px;
    color: #18334e;
    transition: all .2s ease-in-out;
}

.so-main #so-faqs .question:before {
    width: 0;
    height: 0;
    display: block;
    position: absolute;
    left: 0;
    top: 5px;
    border-top: 6px solid transparent;
    border-bottom: 6px solid transparent;
    border-left: 10px solid #ff8e39;
    content: "";
}

.so-main #so-faqs .question.open:before {
    top: 7px;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-top: 10px solid #ff8e39;
    border-bottom: none;
}

.so-main #so-faqs .answer {
    padding: 10px 20px 0 38px;
}

.so-main #so-faqs .answer p {
    margin: 0;
}

.so-main #so-contact {
    padding-top: 55px;
    background: #fff;
    padding-bottom: 68px;
}

.so-main #so-detail {
    padding-bottom: 68px;
}

.so-main #so-detail .section-label:before {
    border-left: 10px solid #cecece;
    padding-right: 10px;
    content: "";
}

.so-main md-checkbox .md-container {
    height: 20px !important;
}

.so-main .so-carousel .so-carousel-height {
    height: 400px;
}

.so-main .so-carousel .rn-carousel-control.rn-carousel-control-prev {
    top: 50%;
}

.so-main .so-carousel .rn-carousel-control.rn-carousel-control-next {
    top: 50%;
}

.so-main .so-carousel .rn-carousel-control.rn-carousel-control-prev:before {
    margin: 11px;
    vertical-align: middle;
}

.so-main .so-carousel .rn-carousel-control.rn-carousel-control-next:before {
    vertical-align: middle;
    margin: 15px;
}

.so-main .so-carousel ul .item {
    border: 1px solid #d1d1d1;
    padding: 10px;
    text-align: center;
    border-radius: 20px;
    width: inherit;
    height: initial;
}

.so-main .so-carousel li img {
    border-radius: 50%;
    border: 2px solid #2771fc;
}

.so-main .so-carousel li .hospital {
    font-size: 13px;
    margin: 24px 0 0 0;
    color: #23a2a2;
}

.top-icons {
    width: 30px;
    margin-right: 15px;
}

.jd-carousel-home {
    margin-top: 2%;
    padding: 0;
    overflow-y: hidden;
}

.jd-carousel-card-home {
    width: 140px;
    padding: 24px;
    margin: 1.5%;
    text-align: center;
    border-radius: 1%;
    overflow: hidden;
    background: #f7ffff;
    box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16), 0px 3px 6px rgba(0, 0, 0, 0.23);
    -webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16), 0px 3px 6px rgba(0, 0, 0, 0.23);
}

.jd-carousel-home > div:first-child {
    margin-left: auto;
}

.jd-carousel-home > div:last-child {
    margin-right: auto;
}

.jd-carousel-card-home p {
    white-space: nowrap;
}

.jd-carousel-card-home p:nth-of-type(1) {
    color: #333;
    font-size: .8em;
}

.jd-carousel-card-home p:nth-of-type(2), .jd-carousel-card-home p:nth-of-type(3) {
    color: #525659;
    font-size: .8em;
}

.jd-carousel-home .profile-circle {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    margin: auto;
    margin-top: 4%;
    border: 1px solid #fff;
    box-shadow: 1px 1px 3px #bfb9b9;
}

@media (max-width: 1024px) {
    .jd-carousel-home > div:first-child {
        margin-left: 1%;
    }

    .jd-carousel-home > div:last-child {
        margin-right: 1%;
    }
}

@media (max-width: 960px) {
    .jd-carousel-card-home {
        width: 130px;
    }

    .jd-carousel-home {
        display: -webkit-box;
        display: -moz-box;
    }

    .jd-carousel-card-home p:nth-of-type(1) {
        font-size: .7em;
    }

    .jd-carousel-card-home p:nth-of-type(2), .jd-carousel-card-home p:nth-of-type(3) {
        font-size: .65em;
    }
}

.jd-carousel .button {
    position: absolute;
    top: 25%;
    border-radius: 50%;
    background: #2771fc;
}

.jd-carousel .left-button {
    left: 0;
}

.jd-carousel .right-button {
    left: 45%;
}

.low-opacity {
    opacity: .5;
}

/*on call type page*/
.jd-carousel-call-type-laptop {
    overflow: hidden;
}

.jd-carousel-card-call-type {
    width: 90%;
    padding: 8px;
    margin: 1.5% auto 1.5% auto;
    text-align: center;
    border-radius: 2px;
    overflow: hidden;
    background: rgb(245, 245, 245);
}

.jd-carousel-call-type-laptop .jd-carousel-card-call-type {
    transition: all .01s ease;
    -webkit-transition: all .01s ease;
    -moz-transition: all .01s ease;
    overflow-y: hidden;
    padding: 8px 16px;
}

.doctor-name {
    font-size: 17px;
    color: #ff8e39;
    text-transform: capitalize;
    margin-bottom: 0;
}

.jd-carousel-call-type-responsive {
    overflow-y: hidden;
    display: none;
}

.jd-carousel-call-type-responsive .profile-circle {
    width: 65px;
    height: 65px;
    border-radius: 50%;
    margin: auto;
    margin-top: 4%;
    border: 1px solid #fff;
    /*box-shadow: 1px 1px 3px #bfb9b9;*/
}

.jd-carousel-call-type-laptop .profile-circle {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    border: 2px solid #cacaca;
}

.jd-carousel-card-call-type p {
    /*white-space: nowrap;*/
}

.jd-carousel-card-call-type :nth-child(2) {
    font-size: .7em;
    color: black;
}

.jd-carousel-card-call-type :nth-child(3), .jd-carousel-card-call-type :nth-child(4) {
    font-size: .65em;
    color: #333;
}

@media (max-width: 960px) {
    .jd-carousel-call-type-laptop {
        display: none;
    }

    .jd-carousel-call-type-responsive {
        display: -webkit-box;
        display: -moz-box;
    }

    .jd-carousel-card-call-type {
        width: 27%;
        display: block;
        box-shadow: none;
        background: none;
        margin: 1.5%;
    }

    .jd-carousel-card-call-type :nth-child(2) {
        font-size: .5em;
        color: white;
    }

    .jd-carousel-card-call-type :nth-child(3), .jd-carousel-card-call-type :nth-child(4) {
        font-size: .45em;
        color: white;
    }
}

.top-nav-links {
    padding: 7px;
    color: inherit;
    transition: box-shadow 0.4s ease;
}

.top-nav-links:hover {
    box-shadow: 0 2px 5px 0 rgba(0, 0, 0, .26);
}

.first-letter::first-letter {
    text-transform: capitalize;
}

.country-select {
    border: none;
    margin: 13px 0 23px 2px;
    background: none;
    border-bottom: solid 1px #ccc;
    border-radius: 0;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 100%;
}

.payment-select {
    border: none;
    width: 100%;
    border-radius: 0;
    height: 44px;
    -webkit-appearance: none;
    -moz-appearance: none;
    padding-left: 16px;
}

.banner-top-bar {
    font-size: 10px;
    background: #ff8e39;
    color: white;
    padding: 0 3px;
    margin-top: -30px;
    margin-left: 5px;
}

.oauth-button {
    border-radius: 2px;
    height: 40px;
    line-height: 40px;
    width: 200px;
    text-align: center;
    color: #fff;
    margin: 12px auto 4px auto;
}

.google-button {
    background: #db4437;
}

.facebook-button {
    background: #3b5998;
}

.md-content {
    background-color: white !important;
}

input, textarea {
    -webkit-user-select: text !important;
    -moz-user-select: text !important;
    -ms-user-select: text !important;
    user-select: text !important;
    cursor: auto;
}

.wrap-content {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
}