/**************** Multimedia players Style*******************/

/*------ file button ------*/
.mediaPlayerTabcontent input{
    float: right;
    padding-top: 20px;
    padding-bottom: 10px;
    border: none;
    width: 45%;
    cursor: pointer;
}

.video {
    width: 100%;
    height: "auto";
    max-width: 100%;
    max-height: 100%;
    background: #E0E0E0;
}

.mediaPlayerTabcontent p {
    padding-left: 1rem;
    font-size: medium;
}

/************ Audio waveform ************/
.sh-card {
    position: fixed;
    bottom: 10px;
    right: 10px;
    background: #edf2f7;
    padding: 7px 10px;
    border-radius: 50px;
    border: none;
    color: #000;
    box-shadow: 2px 2px 20px -10px #000;
    transition: all 0.3s ease;
    z-index: 99999;
    font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
    line-height: 1.5;
    overflow: hidden;
    width: 18px;
    white-space: nowrap;
}
.sh-card:hover {
    width: 92px;
}

.sh-card-icon, .sh-card-info {
    display: inline-block;
    vertical-align: baseline;
    line-height: 1;
}

.sh-card-info {
    font-size: 16px;
    margin-left: 7px;
    }

.sh-card-icon {
    width: 18px;
    height: 15px;
}

.sh-card-link, .sh-card-link:hover, .sh-card-link:active, .sh-card-link:visited {
    color: #000;
    text-decoration: none;
    line-height: 1;
}

.sh-card-box {
    display: block;
}

@-webkit-keyframes bounceIn {
    0%, 20%, 40%, 60%, 80%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }
    40% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03);
    }
    80% {
        -webkit-transform: scale3d(0.97, 0.97, 0.97);
        transform: scale3d(0.97, 0.97, 0.97);
    }
    to {
        opacity: 1;
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
}
@keyframes bounceIn {
    0%, 20%, 40%, 60%, 80%, to {
        -webkit-animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }
    0% {
        opacity: 0;
        -webkit-transform: scale3d(0.3, 0.3, 0.3);
        transform: scale3d(0.3, 0.3, 0.3);
    }
    20% {
        -webkit-transform: scale3d(1.1, 1.1, 1.1);
        transform: scale3d(1.1, 1.1, 1.1);
    }
    40% {
        -webkit-transform: scale3d(0.9, 0.9, 0.9);
        transform: scale3d(0.9, 0.9, 0.9);
    }
    60% {
        opacity: 1;
        -webkit-transform: scale3d(1.03, 1.03, 1.03);
        transform: scale3d(1.03, 1.03, 1.03);
    }
    80% {
        -webkit-transform: scale3d(0.97, 0.97, 0.97);
        transform: scale3d(0.97, 0.97, 0.97);
    }
    to {
        opacity: 1;
        -webkit-transform: scaleX(1);
        transform: scaleX(1);
    }
}
.sh-bounceIn {
    -webkit-animation-duration: 0.75s;
    animation-duration: 0.75s;
    -webkit-animation-name: bounceIn;
    animation-name: bounceIn;
    animation-fill-mode: forwards;
    -webkit-animation-fill-mode: forwards;
    animation-delay: 1s;
    -webkit-animation-delay: 1s;
    opacity: 0;
}

.mediaPlayerTabcontent audio {
    width: 100%;
}

.canvas_audio {
    width: 100%;
    height: 250px;
    background: #f9f9f9;
    margin: auto;
    box-shadow: inset 0px 0px 25px -15px #000;
    border-radius: 5px;
    overflow: hidden;
}
