.cards {
	padding-top: 25px;
}
.card {
	overflow: hidden;
	display: block;
	border-radius: 2px;
	box-shadow: rgba(0, 0, 0, 0.2) 0px 1px 3px 0px;
	position: relative;
	margin-bottom: 25px;
	background: white;
	color: #333;
	transition: box-shadow 0.3s;
}
.card .text-left {
	text-align: left;
}
.card .text-right {
	text-align: right;
}
.card .text-center {
	text-align: center;
}
.card .text-justify {
	text-align: justify;
}

.card.no-overflow {
	overflow: visible;
}
.card:hover {
	box-shadow: rgba(0, 0, 0, 0.2) 0px 3px 3px 0px;
}
.card hr {
	margin-top: 0px;
}
.card .card-image {
	position: relative;
}
.card .card-image img {
	width: 100%;
}
.card .card-image .card-label {
	position: absolute;
	left: 0px;
	bottom: 0px;
	background: #f36d50;
	color: #fff;
	opacity: 0.85;
	padding: 10px 15px;
}
.card .card-image .overlap {
	position: absolute;
	left: 0px;
	top: 0px;
	right: 0px;
	bottom: 0px;
	background: rgba(0, 0, 0, 0.5);
	color: #fff;
    display: flex;
    justify-content: center; /* align horizontal */
    align-items: center; /* align vertical */
    text-align: center;
}

.card .card-image .overlap.fade,
.card .card-image .overlap.top,
.card .card-image .overlap.bottom,
.card .card-image .overlap.left,
.card .card-image .overlap.right,
.card .card-image .overlap.diagonal-top-left,
.card .card-image .overlap.diagonal-top-right,
.card .card-image .overlap.diagonal-bottom-left,
.card .card-image .overlap.diagonal-bottom-right 		{ overflow: hidden; transition: 0.3s; }

.card .card-image .overlap.fade 							{ opacity: 0; }
.card .card-image .overlap.bottom 						{ bottom: 100%; }
.card .card-image .overlap.top 							{ top: 100%; }
.card .card-image .overlap.right 						{ right: 100%; }
.card .card-image .overlap.left 							{ left: 100%; }
.card .card-image .overlap.diagonal-bottom-right 		{ right: 100%; bottom: 100%; }
.card .card-image .overlap.diagonal-bottom-left 			{ left: 100%; bottom: 100%; }
.card .card-image .overlap.diagonal-top-right 			{ right: 100%; top: 100%; }
.card .card-image .overlap.diagonal-top-left 			{ left: 100%; top: 100%; }

.card .card-image:hover .overlap.fade 					{ opacity: 1; }
.card .card-image:hover .overlap.bottom 					{ bottom: 0px; }
.card .card-image:hover .overlap.top 					{ top: 0px; }
.card .card-image:hover .overlap.right 					{ right: 0px; }
.card .card-image:hover .overlap.left 					{ left: 0px; }
.card .card-image:hover .overlap.diagonal-bottom-right 	{ right: 0px; bottom: 0px; }
.card .card-image:hover .overlap.diagonal-bottom-left 	{ left: 0px; bottom: 0px; }
.card .card-image:hover .overlap.diagonal-top-right 		{ right: 0px; top: 0px; }
.card .card-image:hover .overlap.diagonal-top-left 		{ left: 0px; top: 0px; }

.card .card-title {
	display: block;
	padding: 10px 15px;
	margin-bottom: 0px;
	font-size: 16px;
	text-transform: uppercase;
	color: #0D47A1;
	text-decoration: none;
}
.card .card-title a {
	color: #0D47A1;
}
.card .card-title-bg {
	padding: 5px 15px;
	padding-top: 15px;
	font-size: 24px;
	background: #424242;
	color: #FFF;	
}
.card .card-title-bg a {
	color: #FFF;
}
.card .card-subtitle {
	display: block;
	padding: 10px 15px;
	padding-top: 0px;
	margin-bottom: 0px;
	font-size: 14px;
	text-transform: uppercase;
	color: #333;
	text-decoration: none;
}
.card .card-subtitle a {
	color: #333;
	margin-right: 15px;
}
.card .card-details.no-title {
	padding-top: 15px;
}
.card .card-details {
	padding: 0 15px;
	padding-bottom: 15px;
	font-size: 16px;
	text-align: justify;
}
.card .card-details.fixed {
	overflow-y: auto;
	height: 100px;
	box-shadow: inset rgba(0, 0, 0, 0.2) -1px 0px 5px 0px;
}
.card .card-details.overflow-hidden {
	overflow-y: hidden;
	max-height: 150px;
}
.card .card-details p:last-of-type {
	margin-bottom: 0px;
}
.card .card-details p.subline {
	border-bottom: 1px solid #ddd;
	padding-bottom: 5px;
	height: 30px;
}
.card .card-details p.subline:last-of-type {
	border-bottom: none;
}
.card .card-actions {
	border-top: 1px solid #ddd;
	padding: 10px 10px;
	text-align: right;
}
.card .card-actions a,
.card .card-actions a:focus,
.card .card-actions button,
.card .card-actions button:focus {
    border: none;
    background: transparent;
    text-transform: uppercase;
    font-weight: 500;
    padding: 10px 15px;
    line-height: 1;
    border-radius: 3px;
    background: #FFF;
    font-size: 14px;
    display: inline-block;
    text-decoration: none;
    color: #333;
    outline: none;
}
.card .card-actions a:hover,
.card .card-actions button:hover {
	color: black;
    text-decoration: underline;
}
.card .card-actions a:active,
.card .card-actions button:active {
	background: #EEEEEE;
    text-decoration: none;
}

.card .card-actions .card-btn-block {
	display: block !important;
	text-align: center;
	margin: auto;
	width: 100%;
}

/** Botón Predeterminado **/
.card .card-actions .card-btn-default,
.card .card-actions .card-btn-default:focus {
	background: #EEEEEE;
    text-decoration: none;
}
.card .card-actions .card-btn-default:hover {
	box-shadow: rgba(0, 0, 0, 0.2) 1px 1px 2px 0px;
}
.card .card-actions .card-btn-default:active {
	background: #E0E0E0;
}

/** Botón Azul **/
.card .card-actions .card-btn-blue,
.card .card-actions .card-btn-blue:focus {
	background: #1565C0;
	color: white;
    text-decoration: none;
}
.card .card-actions .card-btn-blue:hover {
	box-shadow: rgba(0, 0, 0, 0.2) 1px 1px 2px 0px;
	color: white;
    text-decoration: none;
}
.card .card-actions .card-btn-blue:active {
	background: #0D47A1;
}

/** Botón Desactivado **/
.card .card-actions a:disabled,
.card .card-actions button:disabled {
	background: #E0E0E0 !important;
	color: #757575 !important;
	box-shadow: none !important;
	cursor: not-allowed;
}

.card.landscape {
	
}
.card.landscape .image {
    float: left;
    width: 30%;
    margin-right: 15px;
}

.card.card-title-overflow {
	
}
.card.card-title-overflow .title {
	background: black;
	color: white;
	position: absolute;
	bottom: -75px;
	left: 0;
	right: 0;
	text-align: center;
	transition: 0.75s;
}
.card.card-title-overflow:hover .title {
	bottom: 0;
	transition: 0.2s;
}
.card.card-title-overflow .image {
	transition: 0.5s;
}
.card.card-title-overflow:hover .image {
	-webkit-filter: blur(2px);
	-moz-filter: blur(2px);
	-o-filter: blur(2px);
	-ms-filter: blur(2px);
	filter: blur(2px);
	margin-top: -15px;
	padding-bottom: 15px;
}

.card-multiples {
	position: relative;
}
.card-multiples .card {
	transition: 0.2s;
}
.card-multiples .card .details {
	padding-bottom: 50px;
}
.card-multiples .cards-multiples {
	position: relative;
}
.card-multiples .cards-multiples .card.card-multiple-1 {
	position: absolute;
	height: 10px;
	width: 94%;
	margin-left: 3%;
	margin-top: -10px;
	box-shadow: inset rgba(0, 0, 0, 0.2) 0px -1px 2px 0px;
	transition: 0.2s;
}
.card-multiples .cards-multiples .card.card-multiple-2 {
	position: absolute;
	height: 10px;
	width: 88%;
	margin-left: 6%;
	margin-top: -20px;
	box-shadow: inset rgba(0, 0, 0, 0.2) 0px -1px 2px 0px;
	transition: 0.2s;
}
.card-multiples:hover .cards-multiples .card.card-multiple-1 {
	width: 94%;
	height: 5px;
	margin-top: -5px;
	margin-left: 3%;
}
.card-multiples:hover .cards-multiples .card.card-multiple-2 {
	width: 88%;
	height: 5px;
	margin-top: -10px;
	margin-left: 6%;
}
.card-multiples:hover .card {
	margin-top: -5px;
}

.card .card-title-float {
    background: #0D47A1;
    color: white;
    padding: 5px;
    font-size: 36px;
    text-align: center;
    position: relative;
    margin-left: -5px;
    margin-right: -5px;
    margin-bottom: 15px;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 1px 5px 0px;
    font-weight: bold;
    border-radius: 3px 3px 0px 0px;
}
.card .card-title-float:before {
    content: '';
    border-left: 5px solid transparent;
    border-top: 20px solid #1565C0;
    position: absolute;
    margin-bottom: -20px;
    left: 0px;
    bottom: 0px;
}
.card .card-title-float:after {
    content: '';
    border-right: 5px solid transparent;
    border-top: 20px solid #1565C0;
    position: absolute;
    margin-bottom: -20px;
    right: 0px;
    bottom: 0px;
}
.card .card-title-float .subtitle-float {
    font-size: 12px;
    font-weight: normal;
}


.cards.cards-list .card {
	margin-bottom: 0px;
	border-radius: 0px;
	border-bottom: 1px solid #EEE;
}
.cards.cards-list .card:first-child {
	border-radius: 2px 2px 0px 0px;
}
.cards.cards-list .card:last-child {
	border-radius: 0px 0px 2px 2px;
	border-bottom: none;
}

@media (max-width: 992px) {
	.card.landscape .card-image {
	    float: none;
	    width: 100%;
	    margin-right: 0px;
	}
}

.card .card-frame {
	overflow-y: auto;
	/*margin-right: 1px;*/
	padding: 15px;
}
.card .card-frame.no-padding {
	padding: 0px;
}


.card .card-header {
	padding: 15px;
	color: white;
	font-size: 16px;
	background: #3F51B5;
}
.card .card-header > .card-icon {
	float: left;
	font-size: 21px;
	margin-right: 10px;
}
.card .card-header > .card-label {
	text-align: left;
}
.card .card-header > .card-actions {
	float: right;
	text-align: right;
	border: none;
	padding: 0px;
}
.card .card-header > .card-actions > * {
	margin-left: 10px;
	color: white;
}


.dialog-card {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	height: 0;
	background-color: rgba(0,0,0,0);
	overflow: hidden;
	z-index: 20;
	transition: background-color 0.3s;
}
.dialog-card.card-show {
	height: auto;
	background-color: rgba(0,0,0,0.6);
}
.dialog-card .card {
	width: 50%;
	left: 25%;
	margin-top: 15px;
	opacity: 0;
	transform: scale(1) translateY(50px);
	transition: transform 0.5s, opacity 0.5s;
}
.dialog-card .card-close {
	display: none;
	position: absolute;
	right: 0px;
	top: 0px;
	background-color: rgba(0, 0, 0, 0.5);
	padding: 7px 13px 10px 15px;
	font-size: 18px;
	border-bottom-left-radius: 50%;
	text-decoration: none;
	line-height: 1;
	opacity: 0.7;
	color: rgba(255, 255, 255, 0.8);
}
.dialog-card .card-close:hover {
	opacity: 0.7;
}
.dialog-card .card .fa-loading {
	padding: 15px;
	text-align: center;
}
.dialog-card.width-fluid .card {
	width: 80%;
	left: 10%;
}
.dialog-card.card-show .card {
	opacity: 1;
	transform: scale(1) translateY(0px);
}

@media (max-width: 992px) {
	.dialog-card .card {
		width: 80%;
		left: 10%;
	}
}
@media (max-width: 768px) {
	.dialog-card .card {
		width: 90%;
		left: 5%;
	}
}