.lista-playlist {
	color:#666666;
	font-size:14px;
}

.lista-playlist .dz-box {
	width: 190px;
}

.lista-playlist .dz-box {
	/*cursor: pointer;*/
	padding: 0px 10px;
	opacity: 0.4;
	transition: 0.2s;
}

.lista-playlist .dz-box:hover, .lista-playlist .dz-box.ativo {
	opacity: 0.8;
}

.lista-playlist .dz-box:hover {
	margin-top: -5px;
}

.lista-playlist img {
	cursor: pointer;
	border-radius: 3px;
}

.lista-playlist .texto {
	/*margin-top: 5px;*/
	line-height: 1.3em;
}

.lista-playlist .h-35 {
	height: 35px;
}

.lista-playlist .info {
	display: flex;
	width: auto;
	position: absolute;
	bottom: 3px;
	right: 3px;
	color: white;
	font-size: 0.7em;
	display: inline-flex;
	flex-wrap: wrap;
	gap: 3px;
}

.lista-playlist .info .box {
	cursor: help;
	background: rgba(0,0,0,0.5);
	padding: 2px 3px;
	border-radius: 3px;
	color: white;
	transition-duration: 0.3s;
}
.lista-playlist .dz-box:hover .info .box {
	background: rgba(0,0,0,0.9);
}

.ativo.dz-box .texto {
	color: #ffffff;
	max-height: 35px;
	overflow: hidden;
	text-overflow: ellipsis;
}


.container-checkbox {
	display: block;
	cursor: pointer;
	font-size: 22px;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

.dz-box .play-pause {
	/*margin-top: 10px;*/
	width: 20px;
	height: 20px;
	background-image: url(../img/icones24/lock-fill.png);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	transition-duration: 0.3s;
	filter: invert(0.6);
}

.dz-box.ativo .play-pause {
	/*margin-top: 10px;*/
	width: 20px;
	height: 20px;
	background-image: url(../img/icones24/check-circle.png);
}

/* Hide the browser's default checkbox */
.container-checkbox input {
	position: relative;
	opacity: 0;
	cursor: pointer;
}

/* Create a custom checkbox */
.container-checkbox .checkmark {
	position: absolute;
	height: 28px;
	width: 35px;
	background-color: #002242;
	border: 1px solid #002242;
	border-radius: 5px;
	transition: 0.5s !important;
}

.container-checkbox .checkmark:after {
	left: 6px;
	top: 3px;
	width: 6px;
	height: 10px;
	border: solid rgba(0,0,0,0.15);
	border-width: 0 2px 2px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

.ativo .container-checkbox .checkmark:after, .container-checkbox input:checked ~ .checkmark:after {
	left: 6px;
	top: 3px;
	width: 6px;
	height: 10px;
	border: solid rgba(0,0,0,0.8);
	border-width: 0 2px 2px 0;
	-webkit-transform: rotate(45deg);
	-ms-transform: rotate(45deg);
	transform: rotate(45deg);
}

/* On mouse-over, add a grey background color */
.container-checkbox:hover input ~ .checkmark {
	/*background-color: #001F55;*/
}

/* When the checkbox is checked, add a blue background */
.container-checkbox input:checked ~ .checkmark {
	/*background-color: #001F55;*/
}

/* Create the checkmark/indicator (hidden when not checked) */
.container-checkbox .checkmark:after {
	content: "";
	position: absolute;
	display: none;
}

/* Show the checkmark when checked */
.container-checkbox input ~ .checkmark:after {
	display: block;
}

.boxRadio.left {
	display: flex;
	justify-content: flex-end;
	float: left;
	vertical-align: middle;
	margin-top: 5px;
	/*clear: both;*/
}

.boxRadio .container-checkbox input {
	display: none;
}

.boxRadio .container-checkbox input:checked ~ .checkmark {
	/*background-color: #003366;*/
}

.boxRadio.left .container-checkbox .checkmark {
	width: 20px;
	height: 20px;
	background-color: transparent;
	border: 1px solid #B3B3B3;
	border-radius: 5px;
	transition: 0.5s !important;
}

.dia-sem.ativo {
	color: #FCAA2C;
}