@import url('https://fonts.googleapis.com/css?family=Ubuntu');

i {
    font-style: normal !important;
    font-weight: 900;
}

.oit-player-wrapper {
    max-width: 620px;
    margin: 0 auto 20px;
    position: relative;
    width: 100%;
    font-family: 'Ubuntu', sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    z-index: 1;
    min-height: 125px;
    overflow: hidden;
}
.oit-player-wrapper a {
    text-decoration: none;
    border-bottom: 0 !important;
}
.oit-image-wrapper {
    width: 23%;
    float: left;
    max-height: 125px;
    max-width: 125px;
    overflow: hidden;
}
.oit-image-wrapper img {
    height: 125px;
    max-width: 100%;
    margin: 0 !important;
}

.player-block-wrapper {
    width: 77%;
    float: left;
    padding: 12px 1px 0;
}

.dur_speed {
    width: 115px;
    padding: 0 10px;
    position: absolute;
    right: 0;
}
.oit-settings {
    text-align: right;
    position: relative;
    z-index: 999999;
}
.oit-settings span {
    display: inline-block;
    font-size: 17px;
    margin: 2px 0;
    padding: 0 2px;
    line-height: 17px;
}
.mute-button-icon {
    display: inline-block;
}
#curr_playback_speed {
    display: inline-block;
    cursor: pointer;
    font-size: 11px;
    padding: 0 5px 0 3px;
    vertical-align: middle;
    margin: -6px 2px 0;
}

#curr_playback_speed:hover {
    color: inherit !important;
    background: rgba(255, 255, 255, .2);
}


.collapse_speed_block input {
    width: 100%;
}

.collapse_speed_block label {
    font-size: 11px;
    background-color: transparent !important;

}

.collapse_speed_block, .volume-wrapper {
    overflow: hidden;
    position: absolute;
    width: 120px;
    right: 0;
}
.volume-slider, .collapse_speed_switch_block {
    background-color: #f1f1f1;
    color: #333333;
    padding: 0 10px;
    position: absolute;
    width: 95px;
    right: 0;
    top: -28px;
    -webkit-transition: all 500ms;
    -moz-transition: all 500ms;
    -o-transition: all 500ms;
    transition: all 500ms;
}
#duration_speed {
    display: inline-block;
    position: relative;
    top: -5px;
    z-index: 5;
}

#sound_volume {
    display: inline-block;
    position: relative;
    top: -5px;
}

#times {
    display: block;
    font-size: 12px;
    padding: 0;
    clear:both;
    padding-top: 3px;
}

.oit-player-podcast-title {
    overflow-x: hidden;
    position: relative;
    min-width: 25px;
}

.oit-player-composition-wrapper {
    overflow-x: hidden;
    position: relative;
    padding: 0;
}

.oit-player-composition-wrapper span {
    white-space: nowrap;
    font-size: 15px;
    display: block;
    position: relative;
    line-height: 19px;
    width: 100%;
    margin: 0;
    text-align: center;
    -moz-transform: translateX(100%);
    -webkit-transform: translateX(100%);
    transform: translateX(100%);
    -moz-animation: example1 20s linear infinite;
    -webkit-animation: example1 20s linear infinite;
    animation: example1 23s linear infinite;
    -webkit-hyphens: none;
    -moz-hyphens:    none;
    -ms-hyphens:     none;
    hyphens:         none;
}

.oit-player {
    width: 100%;
    color: #fff;
    min-height: 115px;
    position: relative;
    -webkit-transition: width 1s ease-in-out;
    -moz-transition: width 1s ease-in-out;
    -o-transition: width 1s ease-in-out;
    transition: width 1s ease-in-out;
}

.oit-player-podcast-title > span {
    white-space: nowrap;
    font-size: 10px;
    display: block;
    position: relative;
    line-height: 19px;
    width: 100%;
    margin: 0;
    padding-left: 10px;
    text-align: left;
    /*-moz-transform: translateX(100%);*/
    /*-webkit-transform: translateX(100%);*/
    /*transform: translateX(100%);*/
    /*-moz-animation: example1 15s linear infinite;*/
    /*-webkit-animation: example1 15s linear infinite;*/
    /*animation: example1 15s linear infinite;*/
    /*-webkit-hyphens: none;*/
    /*-moz-hyphens:    none;*/
    /*-ms-hyphens:     none;*/
    /*hyphens:         none;*/
}
.oit-player-podcast-title span > strong {
    color: #333333;
    letter-spacing: 0.5px;
    font-weight: 700;
    font-size: 18px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    margin: 3px 0;
    display: block;
    max-width: 80%;
}
.oit-player[data-open="open"] .oit-player-podcast-title span > strong {
    max-width: 65%;
}
@-moz-keyframes example1 {
    0% {
        -moz-transform: translateX(100%);
    }
    100% {
        -moz-transform: translateX(-100%);
    }
}

@-webkit-keyframes example1 {
    0% {
        -webkit-transform: translateX(100%);
    }
    100% {
        -webkit-transform: translateX(-100%);
    }
}

@keyframes example1 {
    0% {
        -moz-transform: translateX(100%);
        /* Firefox bug fix */
        -webkit-transform: translateX(100%);
        /* Firefox bug fix */
        transform: translateX(100%);
    }
    100% {
        -moz-transform: translateX(-100%);
        /* Firefox bug fix */
        -webkit-transform: translateX(-100%);
        /* Firefox bug fix */
        transform: translateX(-100%);
    }
}

@-moz-keyframes example2 {
    0% {
        -moz-transform: translateX(0%);
    }
    100% {
        -moz-transform: translateX(-110%);
    }
}

@-webkit-keyframes example2 {
    0% {
        -webkit-transform: translateX(0%);
    }
    100% {
        -webkit-transform: translateX(-110%);
    }
}

@keyframes example2 {
    0% {
        -moz-transform: translateX(0%);
        /* Firefox bug fix */
        -webkit-transform: translateX(0%);
        /* Firefox bug fix */
        transform: translateX(0%);
    }
    100% {
        -moz-transform: translateX(-110%);
        /* Firefox bug fix */
        -webkit-transform: translateX(-110%);
        /* Firefox bug fix */
        transform: translateX(-110%);
    }
}

.oit-buttons {
    margin: 0;
    text-align: center;
    width: 100px;
    position: absolute;
    top: 0;
    right: 0;
    height: 125px;
    padding-top: 2px;
    z-index: -1;
}

.oit-player-buttons {
    display: block;
    width: 100%;
    margin: 0;
    padding: 10px 0;
    font-size: 13px;
    cursor: pointer;
    text-decoration: none !important;
    text-align: center;
    border-radius: 0;
}

.oit-player-buttons:hover {
    filter: brightness(85%);
}

div.oit-player-buttons {
    margin-right: 0 !important;
}

.playbutton {
    font-size: 26px;
    cursor: pointer;
    display: block;
    width: 5%;
    float: left;
}



.dropdown-content {
    border: 0;
    margin-top: 11px;
    display: none;
    position: absolute;
    color: #333333;
    background-color: #F1F1F1;
    min-width: 175px;
    overflow: auto;
    box-shadow: 0 8px 16px 0 rgba(0, 0, 0, 0.2);
    border-radius: 0;
    right: 0;
}

.dropdown-content a {
    color: #333333;
    padding: 10px;
    text-decoration: none;
    display: inline-block;
    cursor: pointer;
    -webkit-transition: all 500ms;
    -moz-transition: all 500ms;
    -o-transition: all 500ms;
    transition: all 500ms;
}
.dropdown-content a.tw:hover {
    color: #FFF;
    background: #4099FF;
}
.dropdown-content a.fb:hover {
    color: #FFF;
    background: #3b5998;
    padding: 10px;
}
.dropdown-content a.gp:hover {
    color: #FFF;
    background: #d34836;
}
.dropdown-content a.mailto:hover {
    color: #FFF;
    background: #333333;
}
#oit_share_drop {
    display: block;
    width: 100%;
}

.dropdown a:hover {
    background-color: #f1f1f1;
    text-decoration: none;
}

.dropdown a:hover {
    background-color: #f1f1f1;
    text-decoration: none;
    color: #222;
}

.dropdown.oit-player-buttons {
    position: relative;
}

#div_share_drop a > i {
    font-size: 20px;
}

.playback-speed-wrapper {
    text-align: center;
}

#seek {
    width: 91%;
    margin-left: 2%;
    padding-top: 12px !important;
    float: right;
}

#seek,
#sound_volume,
#duration_speed {
    -webkit-appearance: none;
    appearance: none;
    padding: 0;
    border: 0;
    outline: none;
}

#seek:focus,
#sound_volume:focus,
#duration_speed:focus {
    outline: none;
}
#seek::-webkit-slider-runnable-track,
#sound_volume::-webkit-slider-runnable-track,
#duration_speed::-webkit-slider-runnable-track {
    width: 100%;
    height: 3px;
    cursor: pointer;
    animate: 0.2s;
    background: #333333;
    border-radius: 0;
    border: 0;
}
#seek::-webkit-slider-thumb,
#sound_volume::-webkit-slider-thumb,
#duration_speed::-webkit-slider-thumb {
    box-shadow: 0;
    border: 0;
    height: 8px;
    width: 8px;
    border-radius: 100%;
    background: #333333;
    cursor: pointer;
    -webkit-appearance: none;
    margin-top: -3px;
}
#seek:focus::-webkit-slider-runnable-track,
#sound_volume:focus::-webkit-slider-runnable-track,
#duration_speed:focus::-webkit-slider-runnable-track {
    background: #333333;
}
#seek::-moz-range-track,
#sound_volume::-moz-range-track,
#duration_speed::-moz-range-track {
    width: 100%;
    height: 3px;
    cursor: pointer;
    animate: 0.2s;
    box-shadow: 0;
    background: #333333;
    border-radius: 0;
    border: 0;
}
#seek::-moz-range-thumb,
#sound_volume::-moz-range-thumb,
#duration_speed::-moz-range-thumb {
    box-shadow: 0;
    border: 0;
    height: 8px;
    width: 8px;
    border-radius: 100%;
    background: #333333;
    cursor: pointer;
}
#seek::-ms-track,
#sound_volume::-ms-track,
#duration_speed::-ms-track {
    width: 100%;
    height: 3px;
    cursor: pointer;
    animate: 0.2s;
    background: transparent;
    border-color: transparent;
    color: transparent;
}
#seek::-ms-fill-lower,
#sound_volume::-ms-fill-lower,
#duration_speed::-ms-fill-lower {
    background: #333333;
    border: 0;
    border-radius: 0;
    box-shadow: 0;
}
#seek::-ms-fill-upper,
#sound_volume::-ms-fill-upper,
#duration_speed::-ms-fill-upper {
    background: #333333;
    border: 0;
    border-radius: 0;
    box-shadow: 0;
}
#seek::-ms-thumb,
#sound_volume::-ms-thumb,
#duration_speed::-ms-thumb {
    box-shadow: 0;
    border: 0;
    height: 8px;
    width: 8px;
    border-radius: 100%;
    background: #333333;
    cursor: pointer;
}
#seek:focus::-ms-fill-lower,
#sound_volume:focus::-ms-fill-lower,
#duration_speed:focus::-ms-fill-lower {
    background: #333333;
}
#seek:focus::-ms-fill-upper,
#sound_volume:focus::-ms-fill-upper,
#duration_speed:focus::-ms-fill-upper {
    background: #333333;
}


#oit_button_play {
    position: relative;
    top: 2px;
}

#display_volume_value {
    position: relative;
    top: -5px;
    font-size: 13px;
}

.ion-android-share-alt {
    font-size: 17px;
    margin-right: 3px;
    position: relative;
    display: inline-flex;
    top: 1px;
}

.motor-player-logo {
    text-align: right;
    line-height: 14px;
    position: absolute;
    right: 10px;
    bottom: 6px;
}

.motor-player-logo a {
    font-size: 10px;
    color: #333333;
}

.motor-player-logo a:hover {
    color: inherit !important;
}


.oit-player-controls {
    position: relative;
    top: 5px;
    padding: 0 10px;
    line-height: 1;
}

.oit-player-loud {
    margin-top: -2px;
    line-height: 1;
}

.show {
    display: block;
}

#curr_playback_text {
    display: block;
    font-size: 11px;
    line-height: 1;
}


.z-depth-4, .modal {
    box-shadow: 0 16px 28px 0 rgba(0, 0, 0, 0.22), 0 25px 55px 0 rgba(0, 0, 0, 0.21);
}

.modal {
    display: none;
    position: fixed;
    left: 0;
    right: 0;
    background-color: #fafafa;
    border-left: 5px solid #333;
    text-align: center;
    padding: 20px 30px;
    max-height: 70%;
    width: 55%;
    margin: auto;
    overflow-y: auto;
    border-radius: 2px;
    will-change: top, opacity;
}

.modal h1, .modal h2, .modal h3, .modal h4 {
    margin-top: 0;
    font-family: 'Open Sans';
}

.modal h4 {
    font-size: 1.8rem;
    line-height: 1;
    margin: 5px 0 30px;
}

.modal .modal-content {
    padding: 24px;
}

.modal .modal-close {
    cursor: pointer;
}

.modal .modal-footer {
    border-radius: 0 0 2px 2px;
    background-color: #fafafa;
    padding: 4px 6px;
    height: 56px;
}

.modal .modal-footer .btn, .modal .modal-footer .btn-large, .modal .modal-footer .btn-flat {
    float: right;
    margin: 6px 0;
}

.modal .oit-pm-email {
    max-width: 75%;
    padding: 6px 12px;
    float: left;
}

.modal .oit-pm-btn {
    width: 25%;
    border: 0;
    padding: 9px 12px;
    float: left;
}

.modal .oit-pm-btn:hover {
    opacity: 0.8;
}

.modal .oit-modal-close {
    background: transparent;
    position: absolute;
    top: 0;
    right: 0;
    font-size: 24px;
    padding: 5px 15px;
    border: 0;
}

.lean-overlay {
    position: fixed;
    z-index: 999;
    top: -100px;
    left: 0;
    bottom: 0;
    right: 0;
    height: 125%;
    width: 100%;
    background: #000;
    display: none;
    will-change: opacity;
}
@media only screen and (max-width: 1150px) {

}
@media only screen and (max-width: 992px) {
    .modal {
        width: 80%;
    }
}
@media only screen and (max-width: 680px) {
    .modal .oit-pm-email {
        width: 100%;
        max-width: 100%;
        padding: 6px 12px;
        float: none;
        display: block;
        margin-bottom: 10px;
    }

    .modal .oit-pm-btn {
        width: 100%;
        max-width: 100%;
        margin-left: 0;
        float: none;
        clear: both;
        display: block;
    }
    .oit-image-wrapper {
        width: 25%;
    }
    .player-block-wrapper {
        width: 75%;
        padding: 12px 10px 0;
    }
    .playbutton {
        font-size: 20px;
        padding-top: 3px;
        padding-bottom: 0;
    }
    .oit-player-titles {
        margin-top: 22px;
    }

    .oit-player-podcast-title span > strong {
        max-width: 100%;
    }
    .oit-player-podcast-title span > .sb-title {
        display: none;
    }
    .oit-player-controls {
        top: 0;
    }

}


@media only screen and (max-width: 480px) {
    .modal .modal-content {
        padding: 24px 0;
    }
    .oit-image-wrapper {
       display: none;
    }
    .player-block-wrapper {
        width: 100%;
        padding: 12px 8px 0;
    }
    .oit-player-controls {
        padding: 0;
    }
    .playbutton {
        font-size: 16px;
        padding-top: 6px;
    }
}