@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@100;300;600&display=swap');
@font-face {
  font-family: 'seasideresortnfregular';
  src: url('../fonts/SEASRN-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'bazar';
  src: url('../fonts/bazar-webfont.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}
@font-face {
  font-family: 'Bebas';
  src: url('../fonts/BebasNeue-Regular.woff') format('woff');
  font-weight: normal;
  font-style: normal;
}



::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  -webkit-box-shadow: inset 0 0 6px #f9c189;
  -webkit-box-shadow: inset 0 0 6px var(--color-orange);
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: #ab8356;
  -webkit-box-shadow: inset 0 0 6px #f9c189;
  -webkit-box-shadow: inset 0 0 6px var(--color-orange);
}

.mc4wp-notice p {
    text-transform: uppercase;
    margin-top: 6px;
    color: white;
}

html {
  font-size: 16px;
}
body {
  overflow: hidden;
}
* {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0;
  margin: 0;
  z-index: 3;
  text-decoration: none;
  list-style: none;
}
h1,
h2,
h3,
h4,
h5,
ul span {
  text-transform: uppercase;
}
:root {
  --color-orange: #f9c189;
  --color-red: #cb2020;
}
h4 {
  color: white;
  font-weight: 100;
  font-size: 1.35rem;
  margin-top: 2.5rem;
}
h4:first-child {
  margin-top: 0;
}
.hide {
  visibility: hidden !important;
}

.jkc-logo {
  position: absolute;
  left: 2rem;
  height: 100%;
  display: flex;
  align-items: center;
}
.jkc-logo img {
  height: 100%;
}
.jkc-logo h1.joe-kowalski-chronicles {
  font-size: 1.8rem;
  line-height: 1.75rem;
  margin-top: 0.5rem;
  left: 0;
}
/*BORDERS*/
.border-divider {
  border: 1px solid #f9c189;
  border: 1px solid var(--color-orange);
}
.border-hide__left {
  border-left: none;
}
.border-hide__right {
  border-right: none;
}
.border-hide__top {
  border-top: none;
}
.border-hide__bottom {
  border-bottom: none;
}

/*BODY*/
.body {
  background: black;
  overflow: hidden;

  font-family: bazar, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif,
    sans-serif;
  font-size: 16px;
  display: -ms-grid;
  display: grid;
  -ms-grid-columns: 6rem 1fr 6rem;
  grid-template-columns: 6rem auto 6rem;
  grid-template-columns: 6rem 1fr 6rem;
  -ms-grid-rows: 6rem calc(100vh - 12rem) 6rem;
  grid-template-rows: 6rem calc(100vh - 12rem) 6rem;
  grid-template-areas:
    'top-left-box header top-right-box'
    'left-sidebar main right-sidebar'
    'bottom-left-box footer bottom-right-box';
}

.jkc-main {
  -ms-grid-row: 2;
  -ms-grid-column: 2;
  grid-area: main;
  overflow: hidden;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  padding: 2rem 3rem;
  position: relative;
  z-index: 4;
}
.trailers .jkc-main {
  width: 100%;
  height: 100%;
}
.footer {
  -ms-grid-row: 3;
  -ms-grid-column: 2;
  grid-area: footer;
  position: relative;
}
.left-sidebar {
  -ms-grid-row: 2;
  -ms-grid-column: 1;
  position: relative;
  grid-area: left-sidebar;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  margin: 0;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}
.right-sidebar {
  -ms-grid-row: 2;
  -ms-grid-column: 3;
  position: relative;
  grid-area: right-sidebar;
}
.overlay-background-color {
  background: rgba(0, 0, 0, 0.4);
  background: #00000066;
}
.top-left-box {
  -ms-grid-row: 1;
  -ms-grid-column: 1;
  position: relative;
  grid-area: top-left-box;
  padding: 3rem 0 0 3rem;
}
.top-left-box::before {
  bottom: 0;
  right: 0;
  position: absolute;
  width: 50%;
  height: 50%;
  content: '';
  /* border: 1px solid #f9c189;
  border: 1px solid var(--color-orange); */
  border-top: none;
  border-left: none;
}
.top-right-box {
  -ms-grid-row: 1;
  -ms-grid-column: 3;
  position: relative;
  grid-area: top-right-box;
  padding: 3rem 3rem 0 0;
}
.top-right-box::before {
  position: absolute;
  width: 50%;
  height: 50%;
  /* border: 1px solid #f9c189;
  border: 1px solid var(--color-orange); */
  content: '';
  bottom: 0;
  left: 0;
  border-top: none;
  border-right: none;
}
.bottom-left-box {
  -ms-grid-row: 3;
  -ms-grid-column: 1;
  position: relative;
  grid-area: bottom-left-box;
  padding: 0 0 3rem 3rem;
  z-index: 2;
}
.bottom-left-box {
    padding: 6px;
    margin: 0;
    color: #f9c189;
    z-index: 2;
    font-family: sans-serif;
    font-size: 0.7rem;
    display: flex;
    flex-direction: column;
    align-items: center;
}
.bottom-left-box p{
    color: #f9c189;
    font-family: sans-serif;
    font-size: 0.7rem;
}
.bottom-left-box a{
    color: #f9c189;
    text-decoration: underline;
    font-size: 0.7rem;
}
.bottom-left-box::before {
  position: absolute;
 /* width: 100%;
  height: 50%;*/
  /* border: 1px solid #f9c189;
  border: 1px solid var(--color-orange); */
  content: '';
  top: 0;
  right: 0;
  border-bottom: none;
  border-left: none;
}
.bottom-right-box {
  -ms-grid-row: 3;
  -ms-grid-column: 3;
  position: relative;
  grid-area: bottom-right-box;
  padding: 0 3rem 3rem 0;
  z-index: 1;
}
.bottom-right-box::before {
  position: absolute;
  width: 100%;
  height: 50%;
  /* border: 1px solid #f9c189;
  border: 1px solid var(--color-orange); */
  content: '';
  top: 0;
  left: 0;
  border-bottom: none;
  border-right: none;
}
.overlay {
  background: url(../img/overlay.png) 100% 50%;
  z-index: 2;
  position: absolute;
  height: 100vh;
  width: 50%;
}
.right-content .overlay {
  -webkit-transform: rotateY(160deg);
  transform: rotateY(160deg);
  right: -1.5rem;
  width: 60%;
}

.background-slider-images {
  position: absolute;
  width: 100vw;
  height: 100vh;
  z-index: 1;
  -webkit-filter: brightness(0.75);
  filter: brightness(0.75);
  display: flex;
  align-items: center;
}

.background-slider-images video,
.background-slider-images img {
  transition: 2s opacity;
}

.background-img-video:first-child {
  opacity: 100;
}
.background-img-video {
  position: absolute;
  height: 100vh;
  z-index: 1;
  right: 0;
  opacity: 0;
}
.homepage .background-img-video {
  /*margin-right: -17rem;*/
}
.right-content .background-img-video {
  left: -3rem;
  right: auto;
}
.socials {
  height: 50%;
}
.socials-navigation {
  height: 100%;
}
.socials-navigation-list img {
  width: 1.5rem;
}
.socials-navigation-list {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  height: 100%;
  margin-top: 2rem;
}
.socials-navigation a {
  -webkit-filter: brightness(0.7);
  filter: brightness(0.7);
}
.socials-navigation a:hover {
  -webkit-filter: none;
  filter: none;
}
.fb-icon {
}
.tw-icon {
}
.indiedb-icon {
}
.itchio-icon {
}
.youtube-icon {
}
.gamejolt-icon {
}
/*
right slider
*/
.right-container-slider {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: stretch;
  flex-direction: column;
}
.slider-arrows {
  display: inline-block;
  height: 10%;
  width: 100%;
  background: #98845f26;
  box-sizing: border-box;
  border-right: 1px solid var(--color-orange);
  cursor: pointer;
  color: var(--color-orange);
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-grow: 1;
}
.slider-arrows:hover {
  background: #98845f40;
}
.up-arrow {
  border-top: 1px solid var(--color-orange);
  margin-top: -1px;
}
.down-arrow {
  margin-top: 0;
  margin-bottom: -1px;
  border-bottom: 1px solid var(--color-orange);
}
.right-container-slider ul {
  border: 1px solid #f9c189;
  border: 1px solid var(--color-orange);
  border-left: none;
  width: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  height: 80%;
  background: #98845f26;
  flex-grow: 0;
}
.right-container-slider li span {
  font-size: 1rem;
  color: #f9c189;
  color: var(--color-orange);
  padding: 3px 8px;
  border-radius: 50%;
  display: inline-block;
  cursor: pointer;
  border: 3px solid transparent;
}
.right-container-slider li.active span {
  border: 3px solid #f9c189;
  border: 3px solid var(--color-orange);
}

/*HEADER*/
.header {
  -ms-grid-row: 1;
  -ms-grid-column: 2;
  grid-area: header;
  min-height: 2rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  position: relative;
  z-index: 11;
}
.header .main-navigation {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-right: 2rem;
  align-items: center;
  justify-content: center;
}
#nav-toggle {
  font-size: 2.3rem;
  font-weight: 100;
  width: 2.2rem;
  height: 4rem;
  background: transparent;
  color: #f8c088;
  border: none;
  height: 100%;
  cursor: pointer;
}
#nav-toggle:hover,
#nav-toggle.active {
  color: white;
}
.header .main-navigation ul {
  list-style: none;
  margin: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: initial;
  -ms-flex-pack: initial;
  justify-content: initial;
  height: 100%;
}

.header .main-navigation li {
  margin: 0 1rem;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 100%;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  position: relative;
}
.header .main-navigation li:hover,
.header .main-navigation li.current_page_item {
  /* border-bottom: 3px solid var(--color-orange); */
  border-bottom: 1px solid transparent;
}
.header .main-navigation li a {
  height: 100%;
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  text-transform: uppercase;
  color: #f9c189;
  color: var(--color-orange);
  text-shadow: 2px 2px 2px #000000c4;
}

.header .main-navigation li:hover a::before,
.header .main-navigation li.current_page_item a::before {
  content: '';
  height: 4px;
  background: #f9c189;
  position: absolute;
  bottom: 0;
  width: 100%;
  animation: animate_center_stretch 0.2s linear;
}

.header .main-navigation li a:hover,
.header .main-navigation li.current_page_item a {
  color: #ffffff;
}
/*MAIN*/
.chapter-1 {
  color: #ffffff;
  font-family: Bazar, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 2rem;
  font-weight: 500;
  letter-spacing: 0.46px;
  line-height: 2rem;
}
.murder-in-a-flat {
  color: #cb2020;
  font-family: Bazar, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 3rem;
  font-weight: 100;
}

.btn-trailer {
  height: 5rem;
  width: 16rem;
  border-radius: 8px;
  background-color: #cb2020;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  margin-top: 0.7rem;
}
.btn-trailer:hover {
  background: #922828;
}
.btn-trailer a, .btn-trailer button {
  height: 100%;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0.5rem;
}

.official-trailer {
  width: 100%;
  color: #fabe97;
  font-family: Bazar, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.34px;
  height: 100%;
  vertical-align: middle;
  background: none;
  border: none;
  text-transform: uppercase;
}
.official-trailer:hover {
  color: #ffffff;
  cursor: pointer;
}

.will-arive-in-decemb {
  color: #cb2020;
  font-family: Bazar, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.3px;
  line-height: 1.5rem;
}
.will-arive-in-decemb span {
  color: #fabe97;
}
.joe-kowalski-chronicles {
  font-family: seasideresortnfregular, sans-serif;
  color: #fabe97;
  line-height: 3.5rem;
  font-weight: 100;
  font-size: 3.5rem;
  margin-top: 3.5rem;
}

.jkc-main-flex-container {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -ms-flex-pack: distribute;
  justify-content: space-around;
  height: 100%;
}
.jkc-flex-container h1 {
  margin-top: 5vh;
}
.jkc-flex-container-inside {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
}
.jkc-flex-container-inside h2 {
  margin-top: 0.5rem;
}

.newsletter {
  /*border overlap*/
  margin-bottom: -1px;
  margin-right: -1px;
  border: 1px solid #f9c189;
  border: 1px solid var(--color-orange);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-flex: 1;
  -ms-flex-positive: 1;
  flex-grow: 1;
  margin-top: 4rem;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  text-align: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}
.newsletter a {
  color: #f9c189;
  font-family: Bazar, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-align: center;
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transform-origin: center;
  -ms-transform-origin: center;
  transform-origin: center;
  display: inline-block;
  /* min-width: 11rem; */
  font-size: 1.1rem;
}
.logo {
  width: 5rem;
  margin: 0.5rem;
}

.right-container-slider.slider-rotated ul {
  border: none;
  height: 100%;
}
.right-container-slider.slider-rotated li {
  width: 100%;
  flex-grow: 1;
  border: 1px solid #f9c189;
  border: 1px solid var(--color-orange);
  margin-top: -1px;
  margin-bottom: -1px;
  border-left: 0;
  display: flex;
  align-items: center;
}
.right-container-slider.slider-rotated li:hover {
  background: #00000090;
  color: white;
  cursor: pointer;
}
.right-container-slider.slider-rotated li span {
  border: none;
  border-radius: 0;
  width: 100%;
  line-height: 100%;
  transform: rotate(90deg);
  text-align: center;
}
.right-container-slider.slider-rotated li.active {
  background: #000000ed;
}
.right-container-slider.slider-rotated li.active span {
  color: white;
  border: none;
  transform: rotate(90deg);
}

/**
Animations
*/
.fade {
  -webkit-animation-name: fade;
  -webkit-animation-duration: 1.5s;
  animation-name: fade;
  animation-duration: 1.5s;
}

/*
footer
*/
.mouse-scroll-icon {
  display: flex;
  align-items: center;
  justify-content: center;
}
.mouse-icon {
  width: 1.5rem;
  margin-top: 0.5rem;
}
/*News*/
body .news-article-big .news-container-solo {
  width: 100%;
}
.news.right-content .overlay {
  right: -3rem;
}
.news .overlay {
  width: 60%;
}
.news .bottom-right-box::before {
  width: 50%;
}

.news .jkc-main {
  flex-direction: row;
  justify-content: space-between;
}
.news .news-and-media {
  color: #f9c189;
  font-size: 3rem;
  font-weight: 100;
  text-align: left;
  margin-top: 3rem;
  margin-bottom: 4rem;
}
.news .jkc-main-right-container {
  width: 45%;
  justify-content: flex-start;
}
.news .jkc-main-left-container {
  width: 50%;
}
.news-container {
  overflow: auto;
  padding-right: 1rem;
  padding-bottom: 4rem;
  position: relative;
  height: 100%;
}
.news .news-block {
  display: flex;
  flex-direction: row;
  color: white;
  padding: 1rem;
  overflow: hidden;
  position: relative;
  cursor: pointer;
}
.news .news-block:hover::before {
  height: calc(100% - 4px);
  width: 100%;
  content: '';
  position: absolute;
  margin-top: -1rem;
  border-bottom: 2px solid #f9c189;
  animation: scale-in-ver-center 0.35s linear;
  border-top: 2px solid #f9c189;
}
/* .news .news-block::after {
  background: #f9c189;
  height: 2px;
  width: 100%;
  content: '';
  position: absolute;
  margin-bottom: 0rem;
} */

.news .news-block__left {
  margin: 0 1rem 0 0;
}

.news .news-block__right {
  width: 100%;
}

.news-block img {
  width: 5rem;
  height: 5rem;
  border-radius: 50%;
  border: 4px solid #f9c189;
}
.news-block h2 {
  font-family: Bebas, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 2rem;
  font-weight: 100;
  letter-spacing: 0.69px;
  display: flex;
  justify-content: space-between;
  align-items: left;
}

.news-block h2 span {
  font-size: 1.3rem;
  letter-spacing: 0.34px;
  width: 8rem;
  text-align: right;
}
.news-block p {
  font-family: Poppins, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-transform: none;
  font-size: 1rem;
  letter-spacing: 0.69px;
  color: #f9c189;
  overflow: hidden;
  height: 3.15rem;
  line-height: 1rem;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}
.news-article-big .overlay {
  width: 65%;
}
.top-share-back {
  display: flex;
  flex-direction: row;
}
.news-article-big .text-container p {
  font-family: 'Poppins', sans-serif;
  text-transform: none;
  color: #f9c189;
  color: var(--color-orange);
  line-height: 1.7rem;
  margin-bottom: 1.5rem;
  letter-spacing: 0.74px;
  margin-top: 1rem;
  font-size: 1rem;
}
.news-article-big .news-container-solo {
  width: 55%;
  height: 80%;
  overflow: auto;
  padding-right: 1rem;
}
.news-article-big .news-and-media-solo {
  color: #ffffff;
  font-family: 'Bebas', 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS',
    sans-serif;
  font-size: 3rem;
  margin-top: 2rem;
  margin-bottom: 2rem;
}
.news-article-big a {
  text-decoration: underline;
  color: #f9c189;
}
.share-btn {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.tooltiptext {
  font-family: 'Bebas', 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS',
    sans-serif;
  background-color: #50352180;
  color: #f9c189;
  text-align: center;
  padding: 0.5rem;
  border-radius: 6px;
  position: relative;
  z-index: 1;
  border: 1px solid #fabe97;
  height: 2rem;
  display: flex;
  align-items: center;
}
.tooltiptext::after {
  content: ' ';
  position: absolute;
  top: 50%;
  right: 100%;
  margin-top: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: transparent #fabe97 transparent transparent;
}

a.rectangle-button {
  box-sizing: border-box;
  height: 3rem;
  max-width: 10rem;
  border: 1px solid #f9c189;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #f9c189;
  text-decoration: none;
  padding: 0.5rem 1rem;
  margin-right: 1rem;
  font-size: 1.3rem;
}
a.rectangle-button:hover {
  cursor: pointer;
  border: 1px solid #ffecda;
  color: #ffecda;
}
/*
trailer.html
*/
body .youtube-trailers {
  margin: 0;
  padding: 0;
}

/*Gallery*/
.gallery .overlay-background-color {
  background: black;
}
.gallery .jkc-main {
  -webkit-box-shadow: inset 0px 0px 73px 70px rgba(0, 0, 0, 1);
  -moz-box-shadow: inset 0px 0px 73px 70px rgba(0, 0, 0, 1);
  box-shadow: inset 0px 0px 73px 70px rgba(0, 0, 0, 1);
}
.gallery .background-img-video {
  height: auto;
  width: 100%;
}
.gallery .img-counter {
  display: flex;
  justify-content: center;
  align-items: center;
  color: #f9c189;
  /*align bottom*/
  align-items: flex-end;
  margin-bottom: 1rem;
}

/*Contact*/

.contact .jkc-main {
  position: relative;
  flex-direction: row;
  justify-content: flex-end;
  background: rgba(202, 0, 0, 0.32);
  overflow-y: auto;
}
.contact .overlay {
  background: url(../img/joe_contact.png) 50% 50%;
  background-repeat: no-repeat;
}
.contact .jkc-flex-container-inside {
  display: flex;
  flex-direction: row;
}
.jkc-right-contact-main {
  color: #fabe97;
  width: 60%;
}
.contact-input {
  flex-grow: 1;
  font-family: Bebas, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 2rem;
  line-height: 3rem;
  letter-spacing: 0.51px;
  color: #561717;
  background: #f9c189;
  border-radius: 8px;
  padding: 0 1rem;
  border: none;
  margin-right: 1rem;
}
.contact-input::-webkit-input-placeholder {
  color: #561717;
}
.contact-input:-ms-input-placeholder {
  color: #561717;
}
.contact-input::placeholder {
  color: #561717;
}
.contact-header {
  font-weight: 300;
  margin-top: 3rem;
  line-height: 3.5rem;
  font-size: 3rem;
}
.jkc-right-contact-main .double-colored-text {
  color: white;
  font-family: Bazar, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  font-size: 1.5rem;
  letter-spacing: 0.3px;
  line-height: 3rem;
  font-size: 1.6rem;
  margin-top: 1rem;
}
.jkc-right-contact-main .double-colored-text span {
  color: #fabe97;
}
.contact-address {
  font-family: Poppins, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
  text-transform: none;
  font-size: 1.2rem;
  padding-left: 1rem;
  border-left: 3px solid #fabe97;
  margin-bottom: 2rem;
}
.contact .background-img-video {
  width: auto;
  height: 100%;
}
.contact .newsletter {
  background: #cb2020;
}

.contact .iron_noir_soft_logo {
  position: fixed;
  width: 12rem;
  right: 6rem;
  bottom: calc(6rem - 1px);
  padding: 1rem;
  background: #000000bf;
  border: 1px solid #f9c189;
  border-right: none;
  z-index: 2;
}
.contact .logo {
  width: 100%;
  margin: 0;
}
.contact .bottom-left-box::before,
.contact .bottom-right-box::before {
  width: 50%;
}
.contact .bottom-right-box img{
    display: none;
} 

@-webkit-keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

@keyframes fade {
  from {
    opacity: 0.4;
  }
  to {
    opacity: 1;
  }
}

.border-divider {
  border-color: transparent;
}
header::before {
  position: absolute;
  content: '';
  height: 1px;
  bottom: -1px;
  background: #f9c189;
  width: calc(100% + 6rem);
  left: -3rem;
  right: -3rem;
  animation: animate_left_to_right 1.5s linear;
}
.left-sidebar::before {
  position: absolute;
  content: '';
  width: 1px;
  right: -1px;
  background: #f9c189;
  height: calc(100% + 6rem);
  animation: animate_top_to_bottom 1.5s linear;
  top: -3rem;
  bottom: -3rem;
}
.left-sidebar {
  margin-left: 1px;
  animation: animate_top_to_bottom 1.5s linear;
}
.right-sidebar {
  margin-right: 1px;
  animation: animate_bottom_to_top 1.5s linear;
}
.right-sidebar::before {
  position: absolute;
  content: '';
  width: 1px;
  left: -1px;
  background: #f9c189;
  height: calc(100% + 6rem);
  animation: animate_bottom_to_top 1.5s linear;
  top: -3rem;
  bottom: -3rem;
}
footer::before {
  position: absolute;
  content: '';
  height: 1px;
  top: -1px;
  background: #f9c189;
  width: calc(100% + 6rem);
  animation: animate_right_to_left 1.5s linear;
  left: -3rem;
  right: -3rem;
}
.slide-in-fwd-center {
  -webkit-animation: slide-in-fwd-center 2s linear both;
  animation: slide-in-fwd-center 2s linear both;
}
.flip-in-hor-bottom {
  -webkit-animation: flip-in-hor-bottom 0.5s
    cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: flip-in-hor-bottom 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
.tracking-in-expand {
  -webkit-animation: tracking-in-expand 1s cubic-bezier(0.215, 0.61, 0.355, 1)
    both;
  animation: tracking-in-expand 1s cubic-bezier(0.215, 0.61, 0.355, 1) both;
}
.scale-in-ver-center {
  -webkit-animation: scale-in-ver-center 0.5s
    cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
  animation: scale-in-ver-center 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94) both;
}
.loader {
  border: 4px solid #a2a2a2;
  border-top: 4px solid #714548;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  animation: spin 2s linear infinite;
  position: absolute;
  top: 50%;
  left: 50%;
}
.privacy-policy .jkc-main {
    overflow: auto;
    margin: 1rem;
    padding: 1rem;
    color: #fff;
}

.privacy-policy .jkc-main p {
    font-size: 1.1rem;
    font-family: Poppins, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    margin-top: 1rem;
    margin-bottom: 1rem;
}

.privacy-policy .jkc-main p strong, .privacy-policy .jkc-main a {
    color: #f9c189;
}

.privacy-policy .jkc-main a{
    text-decoration: underline;
}

/* Comic book */
.footer {
    z-index: 11;
    display: flex;
    text-align: center;
    padding: 0.6rem;
}
body .wpec-modal-open {
    background-color: #cb2020;
    border-radius: 4px;
    font-weight: normal;
    padding-top: 10px;
    padding-bottom: 8px;
    padding-left: 16px;
    padding-right: 16px;
    color: #f8c088;
    font-size: 1.6rem;
    text-transform: uppercase;
    font-family: 'bazar';
    border: none;
    width: 22rem;
    margin: 2px auto;
    cursor: pointer;
    border-radius: 8px;
}
body .wpec-modal-open:hover,
body .wpec-modal-open:hover:hover {
    background-color: #690000;
    color: #fff;
}
body .jkc-main {
   z-index: 10;
}


section.jkc-main .donations .donations-container ul li img {
    width: 100% !important;
    height: auto;
    filter: invert(1) grayscale(2);
}
section.jkc-main .donations .donations-container ul li:hover {
    border: 1px solid #f9c189;
    cursor: pointer;
}
.donate .right-container-slider.slider-rotated li span {
    font-size: 1.2rem;
}
.donate .right-container-slider.slider-rotated li[data-img="1"] span {
    margin-top: -4.5rem;
}

.donations-container ul li {
    margin: 20px;
    border: 1px solid black;
    padding-top: 20px;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.donations-container ul {
    display: flex;
}
.donations {
    width: 100%;
    overflow-y: auto;
    font-size: 2rem;
    color: #f9c189;
    color: var(--color-orange);
    text-shadow: 2px 2px 2px #000000c4;
}
.donations a{
   color: white;
   text-decoration: underline;
    display: inline-block;
    text-align: center;
}
.copy-coin-address span.crypto-token-title {
    display: flex;
    align-items: center;
    align-items: center;
    flex-direction: column;
}
.copy-coin-address span {
    display: none;
}
.donations a:hover{
   text-decoration: none;
}
.donations h1 {
    margin: 2rem auto;
}
.donations h2 {
    font-size: 2.5rem;
    margin: 100px 0 60px 0;
    width: 100%;
    text-align: center;
}
.donations h4 {
    font-size: 1.9rem;
}
.donations p {
    font-size: 1.2rem;
    margin: 10px;
    text-align: left;
    font-family: 'Poppins', sans-serif;
    margin-left: 0;
}
.donations p.center {
    text-align: center;
    font-size: 1.2rem;
}
.tooltiptext-crypto {
    font-family: 'Bebas', 'Gill Sans', 'Gill Sans MT', Calibri, 'Trebuchet MS', sans-serif;
    background-color: #503521cc;
    color: #f9c189;
    text-align: center;
    border-radius: 6px;
    border: 1px solid #fabe97;
    height: 70px;
    width: 300px;
    align-items: center;
    position: fixed;
    top: 50vh;
    left: 50vw;
    top: calc(50vh - 35px);
    left: calc(50vw - 150px);
    padding: 20px;
    display: block;
    z-index: 10000;
    font-size: 2rem;
}
.nft-container ul {
    display: flex;
    align-items: center;
    flex-direction: column;
    width: 100%;
}
.nft-container a {
    width: auto;
    min-width: 400px;
    border: 6px double #f9c189;
    padding: 0.4rem;
    display: flex;
    margin: 1rem;
}
.nft-description {
    text-align: justify;
}
li.nft-item {
    display: flex;
    flex-direction: row;
}
.nft-item a img {
    width: 100%;
    border: 4px double #f9c189;
}
.nft-description {
    margin: 2rem 0;
}
h3.nft-title {
    font-family: 'bazar', sans-serif;
    color: white;
}
.nft-info-container{
    font-family: 'Poppins', sans-serif;
    font-size: 1.4rem;
    margin: 2rem;
}
body .donations .nft-container .nft-link-button {
    display: flex;
    color: #fabe97;
    font-family: Bazar, 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: 0.34px;
    vertical-align: middle;
    background: none;
    border: none;
    text-transform: uppercase;    
    text-decoration: none;
}
.nft-container .btn-trailer {
     margin-top: 2.7rem;
}   
p.nft-load-error {
    text-align: center;
}
p.nft-load-error a {
    width: 100px;
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 1rem auto;
}

/**MODAL CHECKOUT WINDOW**/

@media (min-width: 1441px) {
body .wpec-modal-item-excerpt {
    font-size: 1rem !important;
}
}
@media (max-width: 767px) {
body .wpec-modal-item-info-wrap {
flex-direction: column;
}
body .wpec-modal-item-thumbnail {
    margin: 10px auto;
}
body .wpec-modal-item-excerpt {
    font-size: 1.3rem !important;
}
}
body .wpec-modal-content {
   padding: 0;
   border: none;
}
body .wpec-modal-container {
    background-color: #fabe97;
    border: 1px solid #fabe97;
}
body .wpec-modal-container a {
   color: white;
   text-decoration: underline;
}
body .wpec-modal-item-info-wrap {
      padding: 12px;
    background: #401313;
    color: antiquewhite;
}
body .wpec-modal-item-excerpt {
    display: block;
    font-size: 1.3rem;
}
body .wp-ppec-shortcode-container {
    gap: 6px;
    padding: 0!important;
    background: #292929;
    border-top: 1px solid #fabe97;
}
body .wpec-modal-item-thumbnail img {
    border-radius: 6px;
    border: 1px solid #fabe97;
width: 180px;
}
body .wpec-modal-content-title {
    padding: 12px;
    background: #131313;
    color: #fabe97;
border-radius: 4px 4px 0 0;
    border-bottom: 1px solid!important;
}
body .wpec-modal-close svg {
    fill: currentColor;
    color: #fabe97;
}
body .wp-ppec-shortcode-container>div {
    padding: 6px 12px;
    color: antiquewhite;
}
body .shipping-country {
    padding: 0 !IMPORTANT;
border-top: none !important;
}

.wp-ppec-shortcode-container select, .wp-ppec-shortcode-container input[type='text'], .wp-ppec-shortcode-container input[type='email'], .wp-ppec-shortcode-container input[type='number'], .wp-ppec-shortcode-container input[type='url'], .wp-ppec-shortcode-container input[type='tel']{
    color: antiquewhite !important;
}
.wp-ppec-shortcode-container [type='text'], .wp-ppec-shortcode-container [type='email'], .wp-ppec-shortcode-container [type='url'], .wp-ppec-shortcode-container [type='number'], .wp-ppec-shortcode-container [type='tel'], .wp-ppec-shortcode-container [multiple], .wp-ppec-shortcode-container textarea, .wp-ppec-shortcode-container select {
    background-color: #131313 !important;
    border-color: #d7a483 !important;
}
body .wp-ppec-button-container {
    padding: 0;
    color: #fabe97;
    background: #131313;
    border-top: 1px solid #fabe97;
}
body .wpec-price-container {
    font-weight: 600;
    margin: 0 12px;
}
#paypal_button_0 {
   margin: 0 auto 12px;
}
body .wp-ppec-shortcode-container input[type='checkbox'] {
    color: #881f1f;
}
body .wpec_product_tos_input_container {
    padding: 1.2rem;
    padding-bottom: 0;
}

/**
  thank you page
*/
.wpec_thank_you_message {
    color: #ffdebc;
    font-family: 'Poppins', sans-serif;
    text-align: center;
}
.wpec_thank_you_message table {
    text-align: left;
    margin: 4rem auto;
}
.wpec-thank-you-page-download-link a {
    color: white;
    text-decoration: underline;
}
.high-order-number {
    color: white;
    text-align: center;
    display: block;
    width: 80%;
    margin: 0 auto;
    background: #401313;
    border: 1px solid #fabe97;
    padding: 0.1rem;
}

@keyframes spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@-webkit-keyframes scale-in-ver-center {
  0% {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    opacity: 1;
  }
}
@keyframes scale-in-ver-center {
  0% {
    -webkit-transform: scaleY(0);
    transform: scaleY(0);
    opacity: 1;
  }
  100% {
    -webkit-transform: scaleY(1);
    transform: scaleY(1);
    opacity: 1;
  }
}

@-webkit-keyframes tracking-in-expand {
  0% {
    letter-spacing: -0.5rem;
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}
@keyframes tracking-in-expand {
  0% {
    letter-spacing: -0.5rem;
    opacity: 0;
  }
  40% {
    opacity: 0.6;
  }
  100% {
    opacity: 1;
  }
}

@keyframes animate_center_stretch {
  0% {
    transform: scaleX(0);
    transform-origin: center;
  }
  100% {
    transform: scaleX(1);
    transform-origin: center;
  }
}
@keyframes animate_left_to_right {
  0% {
    transform: scaleX(0);
    transform-origin: left;
  }
  100% {
    transform: scaleX(1);
    transform-origin: left;
  }
}
@keyframes animate_right_to_left {
  0% {
    transform: scaleX(0);
    transform-origin: right;
  }
  100% {
    transform: scaleX(1);
    transform-origin: right;
  }
}
@keyframes animate_top_to_bottom {
  0% {
    transform: scaleY(0);
    transform-origin: top;
  }
  100% {
    transform: scaleY(1);
    transform-origin: top;
  }
}
@keyframes animate_bottom_to_top {
  0% {
    transform: scaleY(0);
    transform-origin: bottom;
  }
  100% {
    transform: scaleY(1);
    transform-origin: bottom;
  }
}

/* ----------------------------------------------
* Generated by Animista on 2020-7-8 0:33:58
* Licensed under FreeBSD License.
* See http://animista.net/license for more info. 
* w: http://animista.net, t: @cssanimista
* ---------------------------------------------- */

/**
* ----------------------------------------
* animation slide-in-fwd-center
* ----------------------------------------
*/
@-webkit-keyframes slide-in-fwd-center {
  0% {
    -webkit-transform: translateZ(-1400px);
    transform: translateZ(-1400px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
@keyframes slide-in-fwd-center {
  0% {
    -webkit-transform: translateZ(-1400px);
    transform: translateZ(-1400px);
    opacity: 0;
  }
  100% {
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    opacity: 1;
  }
}
