@charset "utf-8";
/* CSS Document */
.card-albums{
	border:1px solid #D7D7D7;
	padding: 10px;
	margin: 20px 10px 40px 10px;
	background-color: #fff;
	box-shadow: 4px 4px 10px #CFCFCF;
	border-radius: 10px;
}

.card-albums .albums-content{
	padding-bottom: 20px;
}
.card-albums .albums-content h3{
	text-align: center;
	margin: 0.75em 0;
	color: #495057;
	font-size: 1.425em;
}
.album-btn{
	display: block;
    width: 80%;
    background-color: #fff;
    padding: 6px 4px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid #0a3e89;
	transition: all 1s;
	margin: 0 auto;
}
.album-btn:hover{
	background-color: #0a3e89;
	border:1px solid #0a3e89;
	color: #fff;
}

.albums-large img{
	border-radius: 5px;
}
.albums-description {
	padding:20px 0px;
 }
 .albums-description p{
	 font-size:1.125em;
	 line-height:1.5em;
 }
.albums-list .albums-item{
	position: relative;
	margin: 0px 10px 20px 10px;
}
.albums-list .albums-item a{
	display: block;
	border-radius: 5px;
	overflow: hidden;
	
}
.albums-list .albums-item a:hover *{
	transition: all 2s;
	background-size: 20px 20px;
	background-color: rgba(0,0,0,0);
}
.albums-list .albums-item a:hover::after{
	position: absolute;
	content:' ';
	display: block;
	width: 100%;
	height: 100%;
	background-color: rgba(0,0,0,0.35);
	z-index: 999;
	top: 0px;
	left: 0px;
	border-radius: 5px;
	background-image: url("../images/em_zooming.svg");
	background-repeat: no-repeat;
	background-position: center center;
	background-size: 33% 33%;
}
.albums-list .albums-item a.active{
	border:4px solid #555;
	box-sizing: border-box;
}
.albums-nav{
	margin-top: 50px;
	padding: 20px 0;
}
.albums-detail h3{
	font-size: 1.25em;
	color: var(--font-color);
}

.btn-previous{
	width: 200px;
	background-color: #0a3e89;
	border:1px solid #0a3e89;
	border-radius: 20px;
	margin: 0 auto;
	transition: background-color 0.5s;
	color: #fff;
}
.btn-previous:hover{
	border:1px solid #0a3e89;
	background-color: #fff;
	color: #0a3e89;
}
.btn-feedback-send {
	background-color: #0dcaf0;
	color: #000;
	border-radius: 0px;
	width: 100px!important;
	display: block;
	box-shadow: 2px 2px 5px #dbdbdb;
}