*,
*:before,
*:after {
    box-sizing: border-box;
}

.hide {
    display: none !important;
}

button {
    margin: 0;
    padding: 0;
    border: 0;
    outline: 0;
    background: transparent;
}

/*------------------------
    Audio Player - AP
------------------------*/
/* Player and control panel */
.ap {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    height: 50px;
    margin: auto;
    font-family: Tahoma, Arial, sans-serif;
    font-size: 14px;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    color: #333;
    background: rgb(238,238,238);
    background: radial-gradient(circle, rgba(218,218,218,1) 0%, rgba(255,255,255,1) 70%);
    border-top: 1px dotted #333;
    z-index: 9999;
}

.ap-inner {
    max-width: 960px;
    margin: 0 auto;
}

.ap-panel {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
}

.ap-item {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-flex: 1;
    -webkit-flex: 1;
    -ms-flex: 1;
    flex: 1;
    -webkit-box-pack: center;
    -webkit-justify-content: center;
    -ms-flex-pack: center;
    justify-content: center;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
}

.ap--track {
    -webkit-box-flex: 1;
    -webkit-flex: 1 40%;
    -ms-flex: 1 40%;
    flex: 1 40%;
    padding: 0 5px;
}

/* Info section */
.ap-info {
    width: 100%;
    position: relative;
    -webkit-align-self: flex-start;
    -ms-flex-item-align: start;
    align-self: flex-start;
    padding: 3px 0 0;
}

.ap-title {
    position: relative;
    overflow: hidden;
    padding-right: 80px;
    text-align: left;
    white-space: nowrap;
    text-overflow: ellipsis;
    font-weight: 600;
    font-family: Tahoma, Arial, Verdana, serif;
    font-size: 11px;
    top:3px;
}

.ap-time {
    position: absolute;
    top: 5px;
    right: 0;
    font-size:12px;
    font-weight: 600;
}

.ap-progress-container {
    padding: 9px 0 6px;
    cursor: pointer;
}

.ap-progress {
    position: relative;
    height: 9px;
    border-radius: 6px;
    background: rgba(22, 22, 22, .2);
}

.ap-preload-bar,
.ap-bar {
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    border-radius: 6px;
    background: rgba(33, 33, 33, .25);
    z-index: 999;
}

.ap-bar {
    /*background: #f50;*/
    background: #adf;
    z-index: 9999;
}

.ap-bar:after {
    position: absolute;
    top: 0;
    right: -4px;
    width: 14px;
    height: 14px;
    margin-top: -3px;
    content: '';
    border-radius: 6px;
    /*background: #f50;*/
    background: #9cf;
    opacity: 0;
    -webkit-transition: opacity .3s ease;
    transition: opacity .3s ease;
}

.ap-progress-container:hover .ap-bar:after {
    opacity: 1;
}

/* Buttons */
.ap-controls {
    position: relative;
    z-index: 1000;
    display: block;
    height: 50px;
    cursor: pointer;
    -webkit-transition: background .2s ease;
    transition: background .2s ease;
    text-align: center;
    color: #fff;
    border: 0;
    outline: 0;
    background: none;
    margin: 0 5px;
}

.ap-controls svg {
    fill: #333;
}

.ap-controls:hover svg {
    fill: #222;
}

.ap-controls:active {
    background: rgba(0, 0, 0, .1);
}

.ap--playback > .ap-controls,
.ap--settings > .ap-controls {
    -webkit-box-flex: 0;
    -webkit-flex: 0 20%;
    -ms-flex: 0 20%;
    flex: 0 20%;
}

.ap--settings {
    align-content: end;
    text-align: right;
    -webkit-box-pack: end;
    -webkit-justify-content: flex-end;
    -ms-flex-pack: end;
    justify-content: right;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: end;
}

.ap--playback {
    align-content: start;
    text-align: left;
    -webkit-box-pack: start;
    -webkit-justify-content: flex-start;
    -ms-flex-pack: start;
    justify-content: left;
    -webkit-box-align: start;
    -webkit-align-items: flex-start;
    -ms-flex-align: start;
    align-items: start;
}

.ap--pause,
.playing > .ap--play {
    display: none;
}

.playing > .ap--pause {
    display: inline;
}

.ap-volume-container {
    z-index: 9999;
}

.ap-volume {
    position: absolute;
    right: 0;
    bottom: 50px;
    overflow: hidden;
    width: 100%;
    height: 0;
    visibility: hidden;
    -webkit-transition: height .2s cubic-bezier(0.17, 0.72, 0.26, 1.23);
    transition: height .2s cubic-bezier(0.17, 0.72, 0.26, 1.23);
    background: #ddd;
    border: 1px solid #ccc;
    border-bottom: 0;
    z-index: 9999;
}

.ap-volume-btn {
    display: block;
    text-align: center;
    width: 100%;
}

.ap-volume-btn > .ap--volume-off,
.muted > .ap--volume-on {
    display: none;
}

.muted > .ap--volume-off {
    display: inline;
}

.ap-volume-container:hover {
    background: #ddd;
}

.ap-volume-container:hover .ap-volume {
    height: 120px;
    visibility: visible;
}

.ap-volume-progress {
    display: block;
    width: 4px;
    height: 100px;
    margin: 10px auto;
    background: rgba(0, 0, 0, .2);
    position: relative;
    border-radius: 3px;
}

.ap-volume-bar {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    /*background: #f50;*/
    background: #adf;
    height: 50%;
    border-radius: 3px;
}

.ap-active {
    background: rgba(0, 0, 0, .15);
    opacity: 1;
}

@-webkit-keyframes blink {
    from {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@keyframes blink {
    from {
        opacity: 0;
    }
    50% {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

.playing > .ap--pause {
    -webkit-animation: blink 1.5s linear infinite;
    animation: blink 1.5s linear infinite;
}

/* --------------------------- */

@media (max-width: 880px) {
    .ap-item > .ap-controls {
        -webkit-box-flex: 1;
        -webkit-flex: 1;
        -ms-flex: 1;
        flex: 1;
    }
}

@media (max-width: 550px) {
    .ap {
        min-width: 250px;
    }

    .ap, .ap-panel {
        height: auto;
    }

    .ap-panel {
        -webkit-flex-wrap: wrap;
        -ms-flex-wrap: wrap;
        flex-wrap: wrap;
    }

    .ap--track {
        margin-bottom: 10px;
        padding: 0 20px;
        -webkit-box-ordinal-group: 2;
        -webkit-order: 1;
        -ms-flex-order: 1;
        order: 1;
        -webkit-box-flex: 1;
        -webkit-flex: 1 1 100%;
        -ms-flex: 1 1 100%;
        flex: 1 1 100%;
    }

    .ap--playback,
    .ap--settings {
        -webkit-box-flex: 1;
        -webkit-flex: 1 1 50%;
        -ms-flex: 1 1 50%;
        flex: 1 1 50%;
        -webkit-box-ordinal-group: 3;
        -webkit-order: 2;
        -ms-flex-order: 2;
        order: 2;
    }
}

/*--------------------
  PlayList
--------------------*/

.pl-container {
    /*position: fixed;*/
    /*top: 0;*/
    /*right: 0;*/
    /*bottom: 60px;*/
    /*left: 0;*/
    margin: auto;
    overflow: auto;
    font-family: Tahoma, Arial, sans-serif;
    font-size: 14px;
    background: #fff;
    z-index: 999;
    color: #333;
}

.pl-lead {
    font-size: 24px;
    font-weight: 400;
    text-align: center;
    color: #333;
}

.pl-list {
    width: 60%;
    margin: 0 auto;
    padding: 10px 10px 50px 10px;
}

.pl-list > li {
    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -webkit-align-items: center;
    -ms-flex-align: center;
    align-items: center;
    /*border-bottom: 1px dotted #aaa;*/
    /*margin: 1px 0;*/
}

.pl-number,
.pl-title {
    margin: 0 3px;
    padding: 5px 0;
    font-weight: 500;
}

.pl-number {
    -webkit-box-flex: 0;
    -webkit-flex: 0 3%;
    -ms-flex: 0 3%;
    flex: 0 3%;
    text-align: left;
}

.pl-duration {
    -webkit-box-flex: 0;
    -webkit-flex: 0 7%;
    -ms-flex: 0 7%;
    flex: 0 7%;
    text-align: center;
}

.pl-links {
    -webkit-box-flex: 0;
    -webkit-flex: 0 10%;
    -ms-flex: 0 10%;
    flex: 0 10%;
    text-align: right;
    padding-right: 5px;
}

.pl-external-links {
    -webkit-box-flex: 0;
    -webkit-flex: 0 5%;
    -ms-flex: 0 5%;
    flex: 0 5%;
    text-align: right;
    padding-right: 5px;
}

.pl-author {
    -webkit-box-flex: 0;
    -webkit-flex: 0 13%;
    -ms-flex: 0 13%;
    flex: 0 13%;
    text-align: center;
}

.pl-year {
    -webkit-box-flex: 0;
    -webkit-flex: 0 5%;
    -ms-flex: 0 5%;
    flex: 0 5%;
    text-align: center;
}

.pl-format {
    -webkit-box-flex: 0;
    -webkit-flex: 0 5%;
    -ms-flex: 0 5%;
    flex: 0 5%;
    text-align: center;
}

.pl-playing {
    display: none;
}

.pl-count {
    display: none;
}

.pl-playing {
    display: block;
}

.pl-current .pl-title,
.pl-current .pl-author
{
    /*font-weight: 600;*/
}

/*li.pl-current {*/
/*    !*background: linear-gradient(60deg, #3f87a6, #ebf8e1, #f6dd3c);*!*/
/*    background: linear-gradient(60deg, rgb(63 135 166 / .5), #ebf8e1, rgb(246 221 60 / .5));*/
/*    !*border:none;*!*/
/*    border-radius: 5px;*/

/*    padding-left: 20px;*/
/*    padding-right: 20px;*/

/*    margin: 2px -20px;*/
/*}*/

/*.pl-current {*/
/*    background: linear-gradient(60deg, rgb(63 135 166 / .5), #ebf8e1, rgb(246 221 60 / .5));*/
/*    background-color: yellow;*/
/*    border-radius: 5px;*/
/*    !*padding-left: 20px;*!*/
/*    !*padding-right: 20px;*!*/
/*    !*margin: 2px -20px;*!*/
/*}*/

/*#audio-tracks {*/
/*    border-collapse: collapse;*/
/*    width: 100%;*/
/*    padding: .5rem;*/
/*    margin: 5px 0;*/
/*}*/

.track {
    cursor: pointer;
}

#audio-tracks > tbody > tr {
    height: 40px;
    border-bottom: 1px dotted #ccc;
}

tbody > tr.gradientus {
    background:
    repeating-linear-gradient(
            45deg,
            rgba(222, 22, 22, 1) 0%,
            rgba(222, 222, 222, 1) 100%
    ) !important;
}

#audio-tracks > tbody > tr.pl-current {
    /*border-bottom: solid 1px #ffda6a;*/
    /*border-top: solid 1px #adf;*/
}

tr.pl-current > td {
    background-color: #fff !important;
    background: linear-gradient(0deg, rgb(255, 218, 106, .6) 20%, rgb(170, 221, 255, .6) 80%) !important;
}

tr.pl-current {
    animation-name: wavy;
    animation-duration: 1.5s;
    /*animation-timing-function: ease-in-out;*/
    /*animation-timing-function: linear;*/
    animation-timing-function: cubic-bezier(0, 0.25, 0.5, 0.75);
    animation-iteration-count: infinite;
    position: relative;
    top: 0;
    left: 0;
}

@keyframes wavy {
    0% {
        /*top: 0;*/
        left: 0;
    }
    25% {
        /*top: -3px;*/
        left: 5px;
    }
    50% {
        /*top: 0;*/
        left: 0;
    }
    75% {
        /*top: 3px;*/
        left: -5px;
    }
}

.pl-title:hover {
    color: #333333;
}

.pl-list svg {
    fill: rgba(0, 0, 0, .7);
}

.pl-empty {
    position: absolute;
    top: 50%;
    left: 50%;
    font-size: 2rem;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    letter-spacing: 2px;
    color: #ccc;
}

@-webkit-keyframes eq {
    0% {
        height: 3px;
    }
    50% {
        height: 20px;
    }
    100% {
        height: 3px;
    }
}

@keyframes eq {
    0% {
        height: 3px;
    }
    50% {
        height: 20px;
    }
    100% {
        height: 3px;
    }
}

.eq {

    display: -webkit-box;
    display: -webkit-flex;
    display: -ms-flexbox;
    display: flex;
    width: 20px;
    height: 24px;
    margin: 0 auto;
    -webkit-box-pack: justify;
    -webkit-justify-content: space-between;
    -ms-flex-pack: justify;
    justify-content: space-between;
    -webkit-box-align: end;
    -webkit-align-items: flex-end;
    -ms-flex-align: end;
    align-items: flex-end;
    display: none;
}

.eq-bar {
    width: 6px;
    background: rgba(0, 128, 128, .7);
}

.eq-bar:nth-child(1) {
    -webkit-animation: eq .8s ease-in-out infinite 0s;
    animation: eq .8s ease-in-out infinite 0s;
}

.eq-bar:nth-child(2) {
    -webkit-animation: eq .8s ease-in-out infinite .2s;
    animation: eq .8s ease-in-out infinite .2s;
}

.eq-bar:nth-child(3) {
    -webkit-animation: eq .8s ease-in-out infinite .4s;
    animation: eq .8s ease-in-out infinite .4s;
}

.hidden {
    display: none;
}

.showed {
    display: flex;
}

a {
    text-decoration: none;
}

.letter-author-list {
    text-align: center;
    width: 100%;
}

#letters{
    margin:10px 0;
    padding-left: 0;
}

#letters li {
    display:inline-flex;
}

.letter-list > a {
    border-radius: 5px;
    padding: 5px 8px;
    background-color: #adf;
    border:1px solid #adf;
    font-family: Tahoma, Arial, sans-serif;
    font-size: 14px;
    color: #333;
    margin: 5px 0;
}

.letter-list > a.active-letter {
    background-color: #fff;
    /*border:1px solid #adf;*/
    text-shadow: 1px 1px 2px #aaaaaa;
}

.letter-list > a:visited {
    color: #333;
}

.icon-link-original,
.icon-link {
    color: #333;
}

.icon-link-original,
.icon-link :visited {
    color: #333;
}

.search-action-btn {
    text-align:center;
    width: 15%;
    padding:5px 0;
    border-radius: 5px;
    border: 1px solid #adf;
    background-color: #adf;
    text-shadow: 1px 1px 2px #aaaaaa;
    color: #666;
    font-weight: 500;
}

.author-info {
    font-family: Tahoma, Arial, sans-serif;
    font-size: 14px;
    color: #333;
}


#toTop {
    display: block;
    position: fixed;
    top: 45%;
    right: 10px;
    z-index: 999;
    border: none;
    outline: none;
    cursor: pointer;
    color: #adf;
}

#toTop:hover {
    color: #9ce;
}

.fadein {
    opacity: 1;
    transition: opacity .7s;
}

.fadeout {
    opacity: 0;
    transition: opacity .7s;
}

.author-link,
.author-link :hover,
.author-link :visited
{
    color: #333;
}

.alpha-list {
    /*width: 32px;*/
    height: 32px;
    margin:1px;
    display:inline-flex;
    line-height: 19px;
}

.alpha-list > a {
    background-color: #adf;
    border-radius: 5px;
    padding: 5px 10px;
    color: #333;
    font-size: 16px;
    text-decoration: none;
    border:1px solid #adf;
}

.alpha-list > a.active-letter {
    background-color: #fff;
    border:1px solid #adf;
    text-shadow: 1px 1px 2px #aaaaaa;
}

.marb-80 {
    margin-bottom: 80px;
}

.container {
    padding: 0 1px !important;
}

.custom-error > ul{
    margin: 0 !important;
    list-style-type: none;
}

.custom-bg {
    background-color: #adf !important;
    color: #000 !important;
}

.custom-modal {
    display: none;
    position: fixed;
    z-index: 1;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0, 0, 0, 0.3);
}

.custom-close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.custom-close:hover,
.custom-close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.custom-modal-header {
    padding: 2px 16px;
    background-color: #fff;
    color: #333;
}

.custom-modal-content p {
    padding: 2px 0;
    margin-top: 8px;
    color: #333;
}

/* Modal Body */
.custom-modal-body {
    padding: 2px 16px;
}

/* Modal Content */
.custom-modal-content {
    color: #333;
    position: relative;
    background-color: #fff;
    margin: auto;
    padding: 2px 16px;
    /*border: 1px solid #888;*/
    border-radius: 0.375rem;
    width: 100%;
    /*box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2),0 6px 20px 0 rgba(0, 0, 0, 0.19);*/
    box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
    animation-name: animatetop;
    animation-duration: 0.3s
}

@media (min-width: 768px) {
    .custom-modal-content {
        max-width: 960px;
    }
}

/* Add Animation */
@keyframes animatetop {
    from {top: -200px; opacity: 0}
    to {top: 0; opacity: 1}
}