@import url("https://fonts.googleapis.com/css?family=Lato&display=swap");
* {
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    background-image: -webkit-gradient(linear, left bottom, left top, color-stop(23.8%, #fff), to(#272929));
    background-image: linear-gradient(0deg, #fff 23.8%, #272929);
}

#wrap {
    height: 750px;
    min-width: 1260px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
}

#wrap #update {
    position: fixed;
    left: 0;
    top: 0;
    font-size: 18px;
    z-index: 10000;
    width: 100%;
    height: 100%;
    background: #000;
    -webkit-animation: 10s linear run3;
    animation: 10s linear run3;
    text-align: center;
}

#wrap #update .loadbox {
    position: absolute;
    width: 160px;
    height: 150px;
    color: #aaa;
    left: 50%;
    top: 50%;
    margin-top: -100px;
    margin-left: -75px;
}

#wrap #update .loadbox img {
    margin: 10px auto;
    display: block;
    width: 40px;
}

#wrap .quit {
    width: 30px;
    height: 30px;
    position: absolute;
    top: 10px;
    right: 10px;
}

#wrap .quit img {
    width: 25px;
    height: 25px;
    border-radius: 50%;
}

#wrap header h2 {
    border-bottom: 8px #242525 double;
    -webkit-box-shadow: 5px 5px #242525;
    box-shadow: 5px 5px #242525;
}

#wrap span {
    margin-top: 30px;
}

#wrap span a {
    text-decoration: none;
    color: #555353;
    cursor: pointer;
}

#active-map {
    margin: 20px auto;
    width: 1260px;
    height: 300px;
    overflow: hidden;
    position: absolute;
    top: 0;
    border-radius: 5px;
    -webkit-box-shadow: 1px 10px 10px 1px silver;
    box-shadow: 1px 10px 10px 1px silver;
}

#active-map #lop {
    width: 5040px;
    list-style: none;
    position: absolute;
    left: 0;
    top: 0;
    overflow: hidden;
    -webkit-transition: all 1.5s;
    transition: all 1.5s;
}

#active-map #lop li {
    float: left;
    width: 1260px;
    height: 300px;
}

#active-map #lop li img {
    width: 100%;
    height: 100%;
    -webkit-transition: all 0.7s;
    transition: all 0.7s;
    cursor: pointer;
}

#active-map #lop li img:hover {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

#active-map .sub {
    position: absolute;
    left: 50%;
    bottom: 10px;
    -webkit-transform: translate(-50%, 0);
    transform: translate(-50%, 0);
    overflow: hidden;
}

#active-map .sub .current {
    background-color: #0c3e52;
}

#active-map .sub>li {
    float: left;
    width: 15px;
    height: 15px;
    line-height: 30px;
    text-align: center;
    border-radius: 50%;
    background-color: #fff;
    margin: 0 10px;
    list-style: none;
    cursor: pointer;
}

#active-map #leftlog,
#active-map #rightlog {
    position: absolute;
    width: 50px;
    height: 50px;
    background-color: rgba(0, 0, 0, 0.3);
    display: none;
    top: 45%;
    border-radius: 50%;
    cursor: pointer;
}

#active-map #leftlog::after,
#active-map #rightlog::after {
    display: block;
    content: '';
    width: 15px;
    height: 15px;
    background-color: transparent;
    border-right: 3px solid #ccc;
    border-bottom: 3px solid #ccc;
    position: absolute;
    top: 50%;
    left: 50%;
}

#active-map #leftlog::after {
    -webkit-transform: translate(-30%, -50%) rotate(135deg);
    transform: translate(-30%, -50%) rotate(135deg);
}

#active-map #rightlog::after {
    -webkit-transform: translate(-70%, -50%) rotate(-45deg);
    transform: translate(-70%, -50%) rotate(-45deg);
}

#active-map #leftlog:hover::after,
#active-map #rightlog:hover::after {
    border-right: 3px solid #fff;
    border-bottom: 3px solid #fff;
}

#active-map #leftlog {
    left: 0;
}

#active-map #rightlog {
    right: 0;
}

#active-map:hover #leftlog,
#active-map:hover #rightlog {
    display: block;
}

#active-map:active #leftlog,
#active-map:active #rightlog {
    background-color: #fff;
}

.music-container {
    background-color: #fff;
    border-radius: 15px;
    -webkit-box-shadow: 0 20px 20px 0 rgba(49, 50, 51, 0.6);
    box-shadow: 0 20px 20px 0 rgba(49, 50, 51, 0.6);
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 20px 30px;
    position: absolute;
    bottom: 10px;
    margin-bottom: 150px;
}

.img-container {
    position: relative;
    width: 110px;
    -webkit-transition: all 0.5s;
    transition: all 0.5s;
}

.img-container:hover {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

.img-container::after {
    content: '';
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    bottom: 100%;
    left: 50%;
    width: 20px;
    height: 20px;
    -webkit-transform: translate(-50%, 50%);
    transform: translate(-50%, 50%);
}

.img-container img {
    border-radius: 50%;
    -o-object-fit: cover;
    object-fit: cover;
    height: 110px;
    width: inherit;
    position: absolute;
    bottom: 0;
    left: 0;
    -webkit-animation: rotate 3s linear infinite;
    animation: rotate 3s linear infinite;
    -webkit-animation-play-state: paused;
    animation-play-state: paused;
}

.music-container.play .img-container img {
    -webkit-animation-play-state: running;
    animation-play-state: running;
}

@-webkit-keyframes rotate {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

@keyframes rotate {
    from {
        -webkit-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    to {
        -webkit-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

.navigation {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    z-index: 1;
}

.action-btn {
    background-color: #fff;
    border: 0;
    color: #dfdbdf;
    font-size: 20px;
    cursor: pointer;
    padding: 10px;
    margin: 0 20px;
}

.action-btn.action-btn-big {
    color: #cdc2d0;
    font-size: 30px;
    -webkit-transition: all 0.8s;
    transition: all 0.8s;
}

.action-btn.action-btn-big:hover {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

.action-btn:focus {
    outline: 0;
}

.music-info {
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 15px 15px 0 0;
    position: absolute;
    top: 0;
    left: 20px;
    width: calc(100% - 40px);
    padding: 10px 10px 10px 150px;
    opacity: 0;
    -webkit-transform: translateY(0%);
    transform: translateY(0%);
    -webkit-transition: opacity 0.3s ease-in, -webkit-transform 0.3s ease-in;
    transition: opacity 0.3s ease-in, -webkit-transform 0.3s ease-in;
    transition: transform 0.3s ease-in, opacity 0.3s ease-in;
    transition: transform 0.3s ease-in, opacity 0.3s ease-in, -webkit-transform 0.3s ease-in;
    z-index: 0;
}

.music-container.play .music-info {
    opacity: 1;
    -webkit-transform: translateY(-100%);
    transform: translateY(-100%);
}

.music-info h4 {
    margin: 0;
}

.progress-container {
    background: #fff;
    border-radius: 5px;
    cursor: pointer;
    margin: 10px 0;
    height: 4px;
    width: 100%;
}

footer {
    border-top: 0.1px #d3d0d0 solid;
}

.progress {
    background-color: #fe8daa;
    border-radius: 5px;
    height: 100%;
    width: 0%;
    -webkit-transition: width 0.1s linear;
    transition: width 0.1s linear;
}

@-webkit-keyframes run3 {
    from {
        opacity: 1;
    }
    to {
        opacity: 0.2;
    }
}

@keyframes run3 {
    from {
        opacity: 1;
    }
    to {
        opacity: 0.2;
    }
}


/*# sourceMappingURL=music.css.map */