﻿/* -------- Doctor On Call START -------- */
#doctors-tab .owl-carousel .owl-item img,
#specialties-tab .owl-carousel .owl-item img {
    display: block;
}

.audio.green-audio-player .controls .slider {
    margin: 0;
}

.doctorOnCall-page .nav-tabs {
    width: 100%;
    display: table;
}

.doctorOnCall-page .nav-tabs .nav-link {
    width: 20%;
    text-align: center;
    border-radius: 0px !important;
    border: none !important;
    padding: 15px 0px;
    display: table-cell;
}

.doctorOnCall-page .nav-tabs a {
    color: #808080;
    font-weight: 700;
    font-size: 15px;
}

    .doctorOnCall-page .nav-tabs a:hover {
        background-color: #ff6c37 !important;
        color: #fff !important;
    }

.doctorOnCall-page .nav-tabs .nav-link.active {
    background-color: #ff6c37;
    color: #fff;
}

.doctorOnCall-page .form-control {
    height: calc(0.5em + 0.75rem + 12px);
    border: none;
    border-bottom: 1px solid #ccc;
    border-radius: 0px;
}

.doctorOnCall-page textarea.form-control {
    height: auto !important;
    border: 1px solid #ced4da !important;
}

.doctorOnCall-page .form-group {
    margin-bottom: 3rem;
}

.doctorOnCall-page #nav-home div > span {
    font-size: 20px;
    color: #2d8f00;
    font-weight: 700;
}

/* -------- Doctor On Call END -------- */

/* -------- Audio CSS START -------- */

body {
    background-color: #FFFFFF;
}

div#preload {
    display: none;
}

div.player {
    /*border: 1px solid #eaeaea;
  margin-bottom: 20px;
  max-width: 750px;
  margin: auto;
  margin-top: 40px;*/
    background-color: #eaeaea;
    padding: 10px 20px;
    margin-top: 10px;
}

    div.player img.album-art {
        width: 245px;
        height: 245px;
        float: left;
    }

    div.player div.meta-container {
        float: left;
        width: 100%;
        padding: 0;
    }

        div.player div.meta-container div.song-title {
            text-align: left;
            color: #000000;
            font-size: 16px;
            padding: 0;
        }

        div.player div.meta-container div.song-artist {
            text-align: center;
            font-family: "Open Sans", sans-serif;
            font-size: 16px;
            color: #263238;
            margin-top: 10px;
        }

        div.player div.meta-container div.time-container {
            font-family: Helvetica;
            font-size: 18px;
            color: #000;
            margin-bottom: 5px;
        }

div.current-time {
    display: table-cell;
    vertical-align: middle;
    padding-left: 10px;
    float: left;
}

div.duration {
    display: table-cell;
    vertical-align: middle;
    float: right;
}

div.player div.meta-container div.time-container:after {
    content: "";
    display: table;
    clear: both;
}

div.player div.meta-container div.time-container div.current-time {
    float: left;
}

div.player div.meta-container div.time-container div.duration {
    float: right;
}

div.player div.meta-container div.time-container:after {
    content: "";
    display: table;
    clear: both;
}

div.player div.meta-container progress.amplitude-song-played-progress:not([value]) {
    background-color: #313252;
}

div.player div.meta-container progress.amplitude-song-played-progress {
    background-color: #d7dee3;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    height: 5px;
    display: block;
    cursor: pointer;
    border-radius: 3px;
    height: 8px;
    border: none;
}

div.player div.meta-container progress[value]::-webkit-progress-bar {
    background-color: #d7dee3;
    border-radius: 3px;
}

div.player div.meta-container progress[value]::-moz-progress-bar {
    background-color: #00a0ff;
    border-radius: 3px;
}

div.player div.meta-container progress[value]::-webkit-progress-value {
    background-color: #00a0ff;
    border-radius: 3px;
}

div.player div.meta-container div.control-container {
    /*text-align: center;
  margin-top: 40px;*/
    padding: 0;
    float: left;
    display: table;
}

    div.player div.meta-container div.control-container div.amplitude-prev {
        width: 28px;
        height: 24px;
        cursor: pointer;
        background: url('../images/previous.svg');
        display: inline-block;
        vertical-align: middle;
    }

    div.player div.meta-container div.control-container div.amplitude-play-pause {
        width: 20px;
        height: auto;
        cursor: pointer;
        display: inline-block;
        vertical-align: middle;
        height: 40px;
    }

        div.player div.meta-container div.control-container div.amplitude-play-pause.amplitude-paused {
            background: url('../images/play.svg');
            background-size: contain;
            background-repeat: no-repeat;
            display: table-cell;
            vertical-align: middle;
            background-position-y: center;
            height: 40px;
        }

        div.player div.meta-container div.control-container div.amplitude-play-pause.amplitude-playing {
            background: url('../images/pause.svg');
            background-size: contain;
            background-repeat: no-repeat;
            display: table-cell;
            vertical-align: middle;
            background-position-y: center;
            height: 40px;
        }

    div.player div.meta-container div.control-container div.amplitude-next {
        width: 28px;
        height: 24px;
        cursor: pointer;
        background: url('../images/next.svg');
        display: inline-block;
        vertical-align: middle;
    }

div.player:after {
    content: "";
    display: table;
    clear: both;
}

@media screen and (max-width: 39.9375em) {
    div.player img.album-art {
        width: 100%;
        height: auto;
    }

    div.player div.meta-container {
        width: 100%;
    }

    div.player div.control-container div.amplitude-prev {
        margin-right: 75px;
    }

    div.player div.control-container div.amplitude-next {
        margin-left: 75px;
    }

    div.player div.meta-container div.song-title {
        font-size: 13px;
        padding-right: 10px;
    }

    div.current-time, div.duration {
        font-size: 13px;
    }
}

@media screen and (min-width: 40em) and (max-width: 63.9375em) {
    div.player div.control-container div.amplitude-prev {
        margin-right: 40px;
    }

    div.player div.control-container div.amplitude-next {
        margin-left: 40px;
    }
}
/* Large and up */
@media screen and (min-width: 64em) {
    div.player div.control-container div.amplitude-prev {
        margin-right: 75px;
    }

    div.player div.control-container div.amplitude-next {
        margin-left: 75px;
    }
}

.border-right {
    border-left: 1px solid #bbbbbb;
    float: left;
    padding: 0 5px;
    height: 48px;
    display: table-cell;
    vertical-align: middle;
}


/* -------- Audio CSS END -------- */

.podcast-player .player-section, .podcast-player .playlist-section {
    border: 1px solid #d8d8d8;
    padding: 0;
    margin-top: 15px;
    background: #fff;
}

.episodes {
    padding: 15px;
}

.owl-dots, .owl-nav {
    display: none;
}
.podcast-player {
    background-color: #efefef;
    padding: 15px;
}

.audio.green-audio-player .controls .slider {
    margin: 0;
}

.audio.green-audio-player .controls .slider {
    border-radius: 2px;
    height: 4px;
}

.audio.green-audio-player .slider {
    background-color: #d8d8d8;
    position: relative;
}

.slider {
    width: 50%;
    margin: 100px auto;
}

.audio.green-audio-player .controls .slider .play-progress {
    width: 0;
    height: 100%;
}

.audio.green-audio-player .slider .play-progress {
    background-color: #0061a8;
    border-radius: inherit;
    position: absolute;
    pointer-events: none;
}

.owl-prev i:before {
    content: url("/images/default-source/my-ph/common/arrowleft_blue.png") !important;
}

.owl-next i:before {
    content: url("/images/default-source/my-ph/common/arrowright_blue.png") !important;
}

.doctor-on-call-sec5 {
    padding: 20px 30px;
    background-color: #f6f6f6;
    margin-top: 50px;
}

.doctor-on-call-FStxt1 {

    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.25rem
}

.doctor-on-call-FStxt1 + p {
    margin-bottom: 0.25rem;
}