* {
	box-sizing: border-box;
	margin:0;
	border: 0;
	padding: 0;
}

@font-face {
    font-family: 'icons';
    src: url(icons.woff2);
}

#audioplayer {
    direction: rtl;
    position: fixed;
    top: 50%;
    left: -320px;
    width: 300px;
    transform: translate(-50%, -50%);
    border-radius: 40px;
    padding: 15px 25px 20px;
    background-color: rgb(0 0 0 / 85%);
    z-index: 200;
    box-shadow: 4px 4px 6px rgb(0 0 0 / 30%);
    transition: left .2s cubic-bezier(0.075, 0.82, 0.165, 1);
}

#audioplayer.maximized {
    left: 50%;
}

#controls {
    display: flex;
    flex-direction: column;
}

.controlset {
    width: 100%;
    display: flex;
    flex-direction: row;
    align-items: center;
    margin-bottom: 22px;
}

#playerclose {
    width: 26px;
    height: 26px;
    margin-top: 6px;
    border-radius: 50%;
    background-color: red;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 28px;
    cursor: pointer;
}

#playerclose::after {
    font-family: 'icons';
    content: "\f116";
}

#playbutton {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background-color: rgba(0,0,0);
    margin-right: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
}

#playercontrols {
direction: ltr;
height: 106px;
width: 169px;
display: flex;
flex-direction: column;
align-items: center;
justify-content: center;
padding: 0 5px;
}

#playpausebutton {
    width: 60px;
    height: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    color: white;
    font-size: 60px;
    cursor: pointer;
}

#playpausebutton.paused {
    background-color: rgb(0 0 0 / 80%);
}

#playpausebutton.paused::after {
    font-family: 'icons';
    content: "\f114";
}

#playpausebutton.play {
   background-color: rgba(0 0 0 / 90%);
}

#playpausebutton.play::after {
    font-family: 'icons';
    content: "\f115";
}

#fromtotext {
    display: flex;
    flex-direction: column;
    margin-right: 7px;
    justify-content: space-between;
    height: 61px;
}

.playertext {
    height: 29px;
    width: 183px;
    border-radius: 5px;
    background-color: rgb(0 0 0 / 40%);
    color: white;
    overflow: hidden;
    display: flex;
    align-items: center;
    white-space: nowrap;
    font-family: 'uthmani';
    font-size: 17px;
}

#fromtext::before{
    color: #e4ff00;
    content: "من :";
    font-size: 12px;
    font-family: 'UIBold';
    margin: 0 4px 2px 6px;
}

#totext::before{
    color: #e4ff00;
    content: "إلى :";
    font-size: 12px;
    font-family: 'UIBold';
    margin: 0 4px 2px 6px;
}


/* ----------------Range Slider Styling----------------- */
#sliderwrapper{
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}
#lineone {
    direction: rtl;
    display: flex;
    flex-direction: row;
    justify-content: space-between;
}
.container{
    direction: ltr;
    position: relative;
    width: 100%;
    height: 20px;
    margin: 6px 0;
}
input.surarange[type="range"]{
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    width: 100%;
    outline: none;
    position: absolute;
    margin: auto;
    top: 0;
    bottom: 0;
    background-color: transparent;
    pointer-events: none;
}
.slider-track{
    height: 3px;
    position: absolute;
    margin: auto;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    border-radius: 5px;
    background-color: #46464a;
}
.range-track {
    position: absolute;
    height: 3px;
    left: 0;
    right: 0;
    border-radius: 5px;
    background-color: #8cbaff;
}
input.surarange[type="range"]::-webkit-slider-runnable-track{
    -webkit-appearance: none;
    height: 3px;
}
input.surarange[type="range"]::-moz-range-track{
    -moz-appearance: none;
    height: 3px;
}
input.surarange[type="range"]::-ms-track{
    appearance: none;
    height: 3px;
}
input.surarange[type="range"]::-webkit-slider-thumb{
    -webkit-appearance: none;
    height: 20px;
    width: 20px;
    background-color: #8cbaff;
    cursor: pointer;
    margin-top: -8px;
    pointer-events: auto;
    border-radius: 50%;
}
input.surarange[type="range"]::-moz-range-thumb {
    -webkit-appearance: none;
    appearance: none;
    height: 20px;
    width: 20px;
    cursor: pointer;
    border-radius: 50%;
    background-color: #3264fe;
    pointer-events: auto;
}
input.surarange[type="range"]::-ms-thumb {
    appearance: none;
    height: 20px;
    width: 20px;
    cursor: pointer;
    border-radius: 50%;
    background-color: #3264fe;
    pointer-events: auto;
}
input.surarange[type="range"]:active::-webkit-slider-thumb {
    background-color: #ffffff;
    border: 2px solid #3264fe;
}
.values{
    direction: rtl;
    background-color: #222b46;
    width: 130px;
    position: relative;
    margin-bottom: 11px;
    border-radius: 5px;
    text-align: center;
    font-family: 'UIBold';
    font-weight: 500;
    font-size: 12px;
    color: #ffffff;
}

#plusminus {
    direction: rtl;
    display: flex;
    flex-direction: row;
    margin-top: 12px;
}

#minusbutton {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #ef8d3a;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-size: 20px;
    user-select: none;
    padding-bottom: 5px;
}

#pmspacer {
    width: 38px;
}

#plusbutton {
    width: 25px;
    height: 25px;
    border-radius: 50%;
    background-color: #ef8d3a;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    user-select: none;
    cursor: pointer;
}

/* Current Aya */
.currentaya {
    width: 68px;
    font-family: 'UIBold';
    font-size: 18px;
    text-align: center;
    border-radius: 3px;
    color: gray;
    background-color: #484f63;
    transition: 700ms all ease;
}

/* Rewind Button */
.rewindbutton {
	width: 30px;
	height: 30px;
	border-radius: 50%;
	color: gray;
	font-size: 24px;
	background: linear-gradient(0deg, #333, #000);
	box-shadow: 0 0 0 2px #272020, inset 0 0 10px rgba(0,0,0,1), inset 0 0 15px rgba(0,0,0.2);
	display: flex;
	justify-content: center;
	align-items: center;
	align-self: self-start;
	cursor: pointer;
	margin-top: 13px;
	margin-right: 16px;
}

.rewindbutton::after {
    font-family: 'icons';
    content: "\f110";
}

.active {
    color: white;
    background: linear-gradient(0deg, #6dd1ff, #20b7ff);
    box-shadow: 0 0 0 1px #373744, inset 0 0 14px rgb(0 0 0);
}

#qarimenu {
    position: relative;
    width: 180px;
    height: 30px;
    background-color: #222b46;
    color: white;
    font-family: 'UIBold';
    font-size: 13px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    user-select: none;
}

#qarimenu::before {
    font-family: 'icons';
    font-size: 21px;
    content: "\f117";
    margin-left: 6px;
}

#qarilist {
    position: absolute;
    bottom: 32px;
    width: 200px;
    background-color: rgb(0 0 0);
    z-index: 210;
    overflow-y: scroll;
    border-radius: 5px;
    box-shadow: 2px 2px 4px rgba(0 0 0 / 50%);
}

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

.hidden {
    display: none;
}

.qarimenuitem {
    width: 100%;
    height: 20px;
    margin-bottom: 2px;
    color: white;
    background-color: #631414;
    font-family: 'UIBold';
    font-size: 11px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 14px 0;
}

.dimmed {
    color: gray;
    cursor: default;
}

.qarimenuitem:hover {
    background-color: rgb(10, 50, 51);
}

/* ------------- Minimized Player ----------------- */
#minaudioplayer {
    position: fixed;
    right: 10px;
    bottom: 50px;
    direction: rtl;
    width: 140px;
    height: 40px;
    border-radius: 500px;
    background: rgb(0 0 0 / 85%);
    /* border: 1px solid rgba(100,100,100,1);*/
    box-shadow: 2px 2px 4px gray;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: space-around;
    transition: bottom .2s cubic-bezier(0.075, 0.82, 0.165, 1);
}

#minaudioplayer.hidden {
    bottom: -50px;
}

#minplaypause {
    height: 30px;
    width: 30px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    cursor: pointer;
}

#minplaypause.play::after {
    font-family: 'icons';
    content: "\f114";
}

#minplaypause.pause::after {
    font-family: 'icons';
    content: "\f115";
}

#mincurrentaya {
    height: 20px;
    width: 35px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 14px;
    font-family: 'UIBold';
    border-radius: 2px;
}

#mincurrentaya.paused {
    color: #a0a0a0;
    background: #4848489e;
}

#minplayersettings {
    height: 30px;
    width: 30px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    cursor: pointer;
}

#minplayersettings::after {
    font-family: 'icons';
    content: "\f113";
}

#minclose {
    height: 30px;
    width: 30px;
    color: white;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 30px;
    cursor: pointer;
}

#minclose::after {
    font-family: 'icons';
    content: "\f116";
}