/*
Theme Name: Edwin de Jager
Text Domain: edwindejager
Version: 1.0
Description: Edwin 60 jaar
Tags: boilerplate
Author: Jarmo Roos
Author URI: https://www.lemonscript.nl
Theme URI: https://www.lemonscript.nl
Requires at least: 6.0
Tested up to: 6.0
Requires PHP: 8.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
*/

html, body {
    margin: 0px;
    font-family: "Montserrat", sans-serif;
}
:root {
    --black: #000;
    --white: #FFF;
}
h1, h2, h3, h4 {}

p, a, li, span, strong, button, legend {}

textarea {
    resize: none;
}
select {
    -webkit-appearance: none;
}
p a {
    color: var(--red);
}
button:hover {
    cursor: pointer;
}
textarea {
    resize: none;
}
input[type="submit"] {
    -webkit-appearance: none;
}
img {
    width: 100%;
    display: block;
}
#main {
    background-color: #f5f5f5;
	overflow: hidden;
}
.container {
    width: 100%;
    margin: 0 auto;
    max-width: 1310px;
    padding: 0px 25px;
    box-sizing: border-box;
}
.password-form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin-top: 100px;
    padding: 0px 25px;
}
.password-form form {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    flex-direction: column;
}
.password-form p {
    text-align: center;
}
.password-form #error-pwbox-2 {
    color: red;
    font-weight: bold;
}
.intro-header {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
    margin-top: -50px;
}
.compass {
    max-width: 300px;
}
.intro-header hr {
    flex-grow: 1;
}
#intro {
    position: relative;
}
#intro h1 {
    text-align: center;
    color: #ED9931;
    font-size: 38px;
    margin-top: -50px;
}
#intro .slingers {
    max-width: 250px;
}
#intro .slingers.left {
    position: absolute;
    top: 0px;
    left: 0px;
    -webkit-transform: scaleX(-1);
    transform: scaleX(-1);
}
#intro .slingers.right {
    position: absolute;
    top: 0px;
    right: 0px;
}
#polaroids {
    margin: 100px 0px;
}
#polaroids .polaroid {
    background-color: white;
    padding: 25px;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 2px 5px -1px, rgba(0, 0, 0, 0.3) 0px 1px 3px -1px;
}
#polaroids .swiper-slide.even .polaroid {
    rotate: 8deg;
}
#polaroids .swiper-slide.odd .polaroid {
    rotate: -6deg;
}
#polaroids .polaroid p {
    margin: 0px;
    margin-top: 20px;
    text-align: center;
    font-size: 26px;
    font-family: "Kalam", cursive;
    font-weight: 700;
    font-style: normal;
}
.swiper-navigation-icon {
	display: none;
}
.swiper-button-next i,
.swiper-button-prev i {
	font-size: 34px;
	color: white;
}
.stories-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    padding: 10px 10px;
}
.stories-grid .story {
    position: relative;
    overflow: hidden;
    width: 100%;
    margin-bottom: 10px;
}
.stories-grid .story:hover {
    cursor: pointer;
}
.stories-grid .story img {
    -webkit-transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.stories-grid .story:hover img {
    transform: scale(1.1);
    -webkit-transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
    transition: all .3s cubic-bezier(0.165, 0.84, 0.44, 1);
}
.stories-grid .story .overlay {
    background-color: rgba(0, 0, 0, 0.5);
    position: absolute;
    top: 0px;
    left: 0px;
    width: 100%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--white);
    font-size: 48px;
    font-weight: bold;
    text-transform: uppercase;
    z-index: 20;
}
.stories-grid .story .overlay .loader {
    display: none;
    position: absolute;
    bottom: 35px;
    left: 50%;
    transform: translate(-50%, 0%);
    max-width: 50px;
}

/* Popup */
.modal {
    display: none;
    position: fixed;
    z-index: 999999;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    overflow: auto;
    background-color: rgb(0,0,0);
    background-color: rgba(0,0,0,0.8);
}
.modal-content {
    position: relative;
    background-color: white;
    margin: auto;
    width: 80%;
    max-height: 90vh;
    max-width: 700px;
    box-shadow: 0 4px 8px 0 rgba(0,0,0,0.2),0 6px 20px 0 rgba(0,0,0,0.19);
    -webkit-animation-name: animatetop;
    -webkit-animation-duration: 0.4s;
    animation-name: animatetop;
    animation-duration: 0.4s
}
.modal-content .button {
    display: block;
    width: 100%;
    background-color: black;
    color: white;
    padding: 10px;
    border-radius: 5px;
    font-family: "Montserrat", sans-serif;
    margin-top: 25px;
    border: 0px;
}
.close-popup {
    position: absolute;
    top: 25px;
    right: 25px;
    font-size: 34px;
    background: none;
    border: 0px;
    z-index: 20;
	color: black;
    background-color: white;
    border-radius: 100px;
    width: 37px;
    height: 38px;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
}
.popup-info {
    padding: 25px;
	background-color: white;
}
.popup-info h4 {
    margin: 0px;
    font-size: 22px;
}
.popup-info .subheading {
    margin-top: 0px;
    font-size: 16px;
}
.popup-info .contents p {
    font-size: 14px;
    line-height: 24px;
}
/* Video styling */
#modal-popup video {
    height: 50vh;
    width: 100%;
    display: block;
    margin: 0 auto;
    cursor: pointer;
    background: #000;
    object-fit: cover;
}

/* Wrapper voor custom play button */
.video-wrapper {
    width: 100%;
    position: relative;
    display: inline-block;
}

/* Play knop */
.video-play-button {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 60px;
    color: white;
    cursor: pointer;
    z-index: 5;
    pointer-events: auto;
    opacity: 0.9;
}

.video-play-button:hover {
    opacity: 1;
}

@-webkit-keyframes animatetop {
    from {top:-300px; opacity:0} 
    to {top:0; opacity:1}
}
  
@keyframes animatetop {
    from {top:-300px; opacity:0}
    to {top:0; opacity:1}
}

/* iPad Portrait */
@media only screen and (min-width: 768px) {
    #intro .slingers {
        max-width: 400px;
    }
    .stories-grid {
        gap: 0.5%;
    }
    .stories-grid .story {
        width: 49.5%;
    }
}

/* iPad Landscape */
@media only screen and (min-width: 1024px) {
    .stories-grid .story {
        width: 33%;
    }
}

@media only screen and (min-width: 1200px) {
    
}


@media only screen and (max-width: 1023px) {
    
}

@media only screen and (max-width: 767px) {
    
}