		.floating-btn {
		    position: fixed;
		    bottom: 100px;
		    right: 20px;
		    width: 225px;
		    height: 150px;
		    /* Bootstrap primary */
		    border-radius: 15%;
		    align-items: center;
		    justify-content: center;
		    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
		    cursor: pointer;
		    z-index: 998;
		}

		.player {
		    border-radius: 10%;
		    background-color: white;
		    width: 225px;
		    height: 150px;
		    box-shadow: 0px 5px 20px 2px rgba(0, 0, 0, 0.2);
		}

		.player .head {
		    padding: 15px;
		    border-radius: 10px;
		    color: white;
		    text-shadow: 0px 0px 2px rgba(0, 0, 0, 0.3);
		    height: auto;
		    width: 100%;
		    position: relative;
		    overflow: hidden;
		}

		.player .head .front {
		    display: flex;
		    position: relative;
		    height: 100%;
		    justify-content: space-around;
		}

		.player .head .back {
		    height: 110%;
		    width: 110%;
		    top: -10px;
		    left: -10px;
		    position: absolute;
		    background-position: center;
		    background-size: cover;
		    background-image: url("https://images.unsplash.com/photo-1471623817296-aa07ae5c9f47");
		    -webkit-filter: blur(5px);
		    filter: blur(5px);
		}

		.player .head .avatar {
		    width: 150px;
		    /* height: 90px; */
		    /* overflow: hidden;
			border-radius: 50%; */
		    box-shadow: 0px 0px 10px rgba(255, 255, 255, 1);
		}

		.player .head .avatar img {
		    width: 100%;
		    height: 100%;
		}

		.player .head .infos {
		    justify-content: space-around;
		    flex-direction: column;
		    height: inherit;
		    align-items: baseline;
		}

		.player .head .titulo_song {
		    font-size: 16px;
		    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.75);
		}

		.player .head .duracao_song {
		    font-size: 12px;
		    color: white;
		    margin-bottom: 8px;
		    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.75);
		}