/*
To change this license header, choose License Headers in Project Properties.
To change this template file, choose Tools | Templates
and open the template in the editor.
*/
/* 
    Created on : Aug 10, 2020, 8:52:52 AM
    Author     : dongvd
*/
@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.custom-form{
    padding: 20px 80px;
    padding-bottom: 60px;
}

#content-new span{
    font-style: unset !important;
}
.auth-box-w .custom-form .form-group{
    position: relative;
}
.auth-box-w .custom-form .form-group .pre-icon {
    position: absolute;
    bottom: 5px;
    font-size: 24px;
    color: #047bf8;
    left: -38px;
}

.auth-box-w .custom-form .form-group .pre-icon {
    font-size: 24px;
    color: #047bf8;
}

.loader {
    border: 16px solid #fff;
    border-top-color: rgb(255, 255, 255);
    border-top-style: solid;
    border-top-width: 16px;
    border-bottom-color: rgb(255, 255, 255);
    border-bottom-style: solid;
    border-bottom-width: 16px;
    border-radius: 50%;
    border-top: 16px solid rgb(46, 130, 255);
    border-bottom: 16px solid rgb(46, 130, 255);
    width: 120px;
    height: 120px;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
    left: calc(50% - 60px);
    top: calc(50% - 60px);
    position: fixed;
}
.all-wrapper{
    opacity: 0;
    transition-duration: 1s;
}

body.color-scheme-dark .iziModal-content,
body.color-scheme-dark #items .dropdown-menu{
    background: #293145;
}
body.color-scheme-dark #items,
body.color-scheme-dark #items th,
body.color-scheme-dark #items .dropdown-menu a{
    color: #fff;
}
body.color-scheme-dark #items .dropdown-menu a:hover{
    color: #000;
}

body #items th{
    font-size: .9rem;
}
.btn-md{
    padding: .5rem 0.8rem;
    font-size: 1rem;
    line-height: 1;
    border-radius: 6px;
}

#topic-top-view {
    flex: none;
}
/* 

HTML5 Audio Player: Responsive and Touch-friendly demo by Osvaldas Valutis

<p>SOURCE: <a href="http://osvaldas.info/examples/audio-player-responsive-and-touch-friendly/" target="_blank"><i><b>Responsive and Touch-friendly Audio Player</b></i></a></p>

http://osvaldas.info/audio-player-responsive-and-touch-friendly

by http://osvaldas.info

*/
audio::-internal-media-controls-download-button {
    display:none;
}
audio::-webkit-media-controls-enclosure {
    overflow:hidden;
}
audio::-webkit-media-controls-panel {
    width: calc(100% + 33px);
}  
html
{
    height: 100%;
}
body
{
    min-height: 100%;
    font-family: 'Advent Pro', sans-serif;
    font-weight: 500;
    padding: 3.75em 1.875em; /* 60 30 */
}
strong
{
    font-weight: 700;
}
#wrapper
{
    width: 30em; /* 480 */
    height: 8.75em; /* 140 */
    position: absolute;
    top: 50%;
    left: 50%;
    margin: -4.375em 0 0 -15em; /* 70 240 */
}

@mixin flex-center {
    display: flex;
    align-items: center;
    justify-content: center;
}

@mixin overflow($type) {
    overflow: hidden;
    text-align: left;
    text-overflow: #{$type};
    white-space: nowrap;
}

.playr {
    width: 100%;
    background-color: #38354a;
    padding: 10px;
    color: #d2d9e5;
}

.playr-ui {
    display: flex;
    align-items: stretch;
}

.playr-controls {
    width: 10%;
    padding: 0 15px;
    @include flex-center;
}

.playr-panel {
    @include flex-center;
    width: 90%;
    padding: 0 15px;
    position: relative;
}

.playr-ui.volume-controls .playr-panel {
    width: 70%;
}

.playr-controls button {
    color: #d2d9e5;
    background-color: transparent;
    border: medium none;
    padding: 0;
    cursor: pointer;
    font-size: 28px;
    line-height: 1;
}

.playr-controls button:hover {
    color: #fff;
}

.playr-controls button::after {
    font-family: "Material Design Icons";
    @include flex-center;
}

.playr-play::after {
    content: "\f40a";
}

.playr.playing .playr-play::after {
    content: "\f3e4";
}

.playr-fastforward::after {
    content: "\f211";
}

.playr-rewind::after {
    content: "\f45f";
}

.playr-rewind::after,
.playr-fastforward::after {
    font-size: 21px;
}

.playr-progress {
    background-color: #5f6672;
    height: 4px;
    bottom: 2px;
    left: 15px;
    position: absolute;
    width: calc(100% - 30px);
    cursor: pointer;
}

.playr-progress-bar {
    background-color: #d2d9e5;
    height: 100%;
    transform: scale3d(0, 1, 1);
    transform-origin: 0 0 0;
    width: 100%;
}

.playr-duration,
.playr-filename {
    font-size: 12px;
    position: absolute;
    top: 0;
    width: 50%;
    font-weight: 600;
}

.playr-filename {
    left: 15px;
    text-align: left;
    left: 15px;
    @include overflow('ellipsis');
}

.playr-duration {
    right: 15px;
    text-align: right;
}

.playr-volume {
    position: relative;
    width: 100%;
    @include flex-center;
}

.playr-volume-box.hidden {
    background-color: #38354a;
    bottom: 0;
    height: 100px;
    position: absolute;
    width: 35px;
    display: none;
}

.playr-volume-box {
    background-color: #5f6672;
    height: 4px;
    width: 100%;
    cursor: pointer;
}

.playr-volume-box span {
    display: block;
    background-color: #d2d9e5;
    height: 100%;
    width: 100%;
    transform: scale3d(1, 1, 1);
    transform-origin: 0 0 0;
}


/* compact */

.playr.compact .playr-rewind,
.playr.compact .playr-fastforward {
    display: none;
}

.playr-filename.overflow span {
    animation: 5000ms linear 0ms normal forwards infinite running scroll;
    display: inline-block;
    margin-right: 0;
    padding-right: 100%;
    transform: translate3d(0px, 0px, 0px);
}

@keyframes scroll {
    0% {
        transform: translate3d(0px,0px,0px);
    }
    100% {
        transform: translate3d(-100%,0px,0px);
    }
}