/* Layout */

.mb-2 {
    margin-bottom: .5rem !important;
}

.me-2 {
    margin-right: .5rem !important;
}

.mx-0 {
	margin-left: 0 !important;
	margin-right: 0 !important;
}

.btn-grad {
	background-color: #ed1c24;
    padding: .25rem .5rem;
    font-size: .875rem;
    line-height: 1.5;
    text-align: center;
    transition: 0.5s;
    color: white;
    border-radius: 0.375rem;
    display: inline-block;
}

.btn-grad:hover {
    background-color: #f1515e; /* change the direction of the change here */
    color: #fff;
    text-decoration: none;
} 

.container-fluid {
    width: 100%;
    margin-right: auto;
    margin-left: auto;
	line-height: 0;
}       

.row {	
	display: flex;
    flex-wrap: wrap;
    margin-left: -15px;
    margin-right: -15px;
}

.col {
    -ms-flex-preferred-size: 0;
    flex-basis: 0;
    -ms-flex-positive: 1;
    flex-grow: 1;
    max-width: 100%;
}

.col, .col-3, .col-9, .col-12, .col-md-3, .col-md-4, .col-md-8, .col-md-9 {
    position: relative;
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
}

.col-3 {
    -ms-flex: 0 0 25%;
    flex: 0 0 25%;
    max-width: 25%;
}

.col-12 {
    flex: 0 0 auto;
    width: 100%;
}

@media (min-width: 768px) {
	
	.col-md-3 {
        flex: 0 0 25%;
        width: 25%;
    }
	
    .col-md-4 {
        flex: 0 0 33.33333333%;
        width: 33.33333333%;
    }
	
	.col-md-8 {
        flex: 0 0 66.66666667%;
        width: 66.66666667%;
    }
	
	.col-md-9 {
        flex: 0 0 75%;
        width: 75%;
    }
	
}

@media (min-width: 992px) {
	
    .col-lg-3 {
        -ms-flex: 0 0 25%;
        flex: 0 0 25%;
        max-width: 25%;
    }
	
	.col-lg-9 {
        -ms-flex: 0 0 75%;
        flex: 0 0 75%;
        max-width: 75%;
    }
	
}

.rounded-2 {
    border-radius: 10px !important;
}

.align-items-center {
    align-items: center !important;
}

.d-flex {
    display: flex !important;
}

@media only screen and (min-width: 1600px) {
    .post-type-single-column {
        max-width: 66.666667%;
    }
}

.post-type-single-column {
    max-width: 1506px;
    width: 100%;
    margin: 30px;
	line-height: 0;
}

.post-type-header-banner {
	background-position: center;
	background-size: cover;
	background-repeat: no-repeat;
}

.post-type-header-inner {
    margin: 1em 0;
    color: #fff;
}

.post-type-header-inner a {
	color: #fff;
	text-decoration: none !important;
}

.post-type-header-inner a:hover {
	color: inherit;
}

.post-type-custom-bg {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    background-color: rgba(0, 0, 0, 0.5);
}

.poster {
    width: 100%;
    aspect-ratio: 9 / 13;
    object-fit: cover;
}

.card {
	border: 1px solid #efefef;
	background: white;
	border-radius: 10px;
	box-shadow: 0 2px 8px rgba(0, 0, 0, .1);
	box-sizing: border-box;
}

.card-body {
    flex: 1 1 auto;
	padding: 1rem;
	font-size: 18px;
    line-height: 1.5em;
}

.card-header-inner {
    margin: 1em 0;
	line-height: 1.5;
}

.card-header-inner a {
	text-decoration: none !important;
}

.card-header-inner a:hover {
	color: inherit;
}

.card-poster {
	border-radius: 10px 0 0 10px;
}

@media (max-width: 768px) {
	
	.card-header-inner {
		margin: 1em;
	}
	
	.card-poster {
		border-radius: 10px 10px 0 0;
	}

}

.data-set {
	padding-bottom: 14px;
}

.data-set .type {
    font-size: 1rem;
    font-weight: 600;
    padding-bottom: 5px;
}

.spacer {
    width: 100%;
    min-height: 1px;
    margin-top: 10px;
    margin-bottom: 10px;
    display: inline-block;
    position: relative;
}

/* Table */

.borderless-table {
    width: 100%;
    border: none;
    border-collapse: collapse;
    margin: 0;
    padding: 0;
}

.borderless-table th,
.borderless-table td {
    border: none;
    background: none;
}

.borderless-table tbody > tr:nth-child(odd) > td, 
.borderless-table tbody > tr:nth-child(odd) > th {
    background-color: unset;
}
