@charset "UTF-8";
/* CSS Document */

@import url("fonts.css");


body {
	background-color:#f7f4ee;
	
}

/* NAVBAR */
.navbar, .navbar-brand {
	font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 15pt;
	/* background-color: #772feb !important; */
	padding-left: 17px;
}

.navbar-logo {
	position: relative;
	display: block;
	background: url('../img/logo_ppk.png') no-repeat;
	background-size: contain;
	top: 0px;
	width: 170px;
	height: 60px;
	margin-right: 5%;
	margin-left: 7%;
	text-align: left;
	transition: .5s;
}

.navbar-logo:hover {
	filter: drop-shadow(3px 3px 0px #bbbbbb);
}

.nav-link {
	color: #000 !important;


}

.navbar-toggler {
	
}

.navbar-toggler-icon {
	/* color: #000000 !important; */
}

.dropdown-menu {
    max-height: 400px;
    overflow: -moz-scrollbars-vertical;
    overflow-y: scroll;
    overflow-x: hidden;
}

.theme-comics {
	background-color: #f7f4ee !important;
	color: #000000 !important;
}

.theme-games {
	/* background-color: #56539C !important; */
	background-color: #f7f4ee !important;
}

/* COMIC TILE GRID SPLASH */

#comic-grid {
	display: grid;
	grid-template-columns: repeat(auto-fill, minmax(275px, 1fr));
	grid-gap: 30px;
	max-width: 1500px;
	margin-left: auto;
	margin-right: auto;
	padding: 20px;
}
.comic-tile .comic {
	height: 150px;
	border: 2px solid #000000;
	background: #ffffff;
	text-align: center;
	overflow: hidden;
	border-radius: 20px;
}

.comic-tile .comic .comic-img {
    width: 100%;
    height: 100%;
    transition: .5s ease;
    background-size: cover;
    background-position: 0 0;
    background-repeat: no-repeat;
    cursor: pointer;
}

.comic-tile .comic .comic-img:hover  {
    transform: scale(1.2);
}

.comic-tile .comic:hover {
	transition: .5s ease;
	border: 3px solid #b22920;
}

.comic-tile a {
    text-decoration: none;
    text-transform: uppercase;
    color: #000;
    cursor: pointer;
}

.comic-tile .comic-name {
    font-family: 'Bebas Neue', sans-serif;
    font-weight: 400;
    font-size: 1.75rem;
    margin-bottom: .5rem;
    margin-top: .5rem;
    line-height: 1.2;
    overflow-wrap: break-word;
    display: block;
    margin-inline-start: 0px;
    margin-inline-end: 0px;
    text-transform: uppercase;
}

.comic-tile .byline {
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 14px;
    margin: 0 0 15px 0;
}

.fade-in:hover {
	background-color:#f0edef;
	transition: background-color 200ms linear;
}

.catalog-banner {
	text-align: center;
	font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 23px;
    background-color: #e66056 !important;
}
















/* individual COMIC DISPLAY */
.comic_container {
	position: relative;
	top: 0;
	left: 0;
	margin-bottom: 15px;
	margin-top: 15px;
}

.comic_frame {
	position: relative;
	top: 0;
	left: 0;
	width: auto;
	max-width: 100%;
	
	height: auto;
	max-height: 700px;
	
	display: block;
  margin-left: auto;
  margin-right: auto;
}

.comic-prev-next {
    -ms-flex: 0 0 40px;
    flex: 0 0 40px;
    /* background-color: #f0edef;  */
    margin-top: 15px;
    margin-bottom: 15px;
    font-size: 60px;
    color: #772feb;
    padding-right: 5px;
    padding-left: 5px;
} 










/* splash page COMIC DISPLAY */
.spl_comic_container {
	position: relative;
	top: 0;
	left: 0;
	margin-bottom: 10px;
	margin-top: 10px;
}

.spl_comic_frame {
	position: relative;
	top: 0;
	left: 0;
	width: auto;
	max-width: 100%;
	
	height: auto;
	max-height: 300px;
	
	display: block;
  margin-left: auto;
  margin-right: auto;
}

/*.fade-in:hover {
	background-color:#f0edef;
	transition: background-color 200ms linear;
}

.comic {
	position: absolute;
	top: 5%;
	left: 2%;
	width: 95%;
	height: auto;
	max-height: 95%;
}
*/



/* META-DATA BAR FOR EACH COMIC */
.meta {
	font-size: 15pt;
	margin-top: 10px;
}

.meta-title {
	font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 1.5rem;
    margin-left: 50px;
    margin-right: 30px;
}

.meta-byline {
	font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 1.5rem;
    
	
	/* text-transform: uppercase; */
}

.meta-datepicker {
	font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    margin-top: 4px;
	padding: 10px 10px 10px 0px;
	/* text-transform: uppercase; */
}

.meta-folio {
	margin-top: 4px;
	padding: 10px;
	text-align: center;
	/* text-transform: uppercase; */
}

.meta-seemore {
	font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    /* background:linear-gradient(to bottom, #56539C 5%, #56539C 100%); */
	background-color:#A43629;
	border-radius:18px;
	border:1px solid #A43629;
	display:inline-block;
	cursor:pointer;
	color:#ffffff;
	padding:3px 25px;
	text-decoration:none;
	text-shadow:0px 1px 0px #5115db;
	margin-left: 25px;
}
.meta-seemore:hover {
	/* background:linear-gradient(to bottom, #ffffff 5%, #ffffff 100%); */
	background-color:#ffffff;
	transition: all .3s;
	border:2px solid #000000;
	color:#000000;
}
.meta-seemore:active {
	position:relative;
	top:1px;
}

#calendar{
	font-size: 18pt;
	color: #772feb;
}


hr {
  border: 1px solid #aaaaaa;
  margin-top: 5px;
  margin-bottom: 8px;
}


.carousel-control-prev-icon, .carousel-control-next-icon {
    height: 100px;
    width: 100px;
    outline: black;
    background-color: rgba(0, 0, 0, 0.3);
    background-size: 75%, 75%;
    border-radius: 50%;
    /* border: 1px solid black; */
}

.carousel-control-prev,
.carousel-control-next {
  top: 45%;
  height: 100px;
}

.container-fluid {

	z-index: 100;
}










/* FOOTER */
.footer {
	font-family: 'Montserrat', sans-serif;
    font-weight: 400;
}

.footer-logo {
	position: relative;
	display: block;
	background: url('../img/logo_kfs_dk.png') no-repeat;
	background-size: contain;
	top: 10px;
	width: 160px;
	height: 60px;
	margin-right: 10px;
}























}