:root{
    --primary-color: black;
    --phlay-color: #fff;
}

html, body, .main, .container{
    width: 100%;
    height: 100%;
    overflow: hidden;
    margin: 0;
    background-color: black;
    font-family: 'Arial', sans-serif;
}

.main{
    display: grid;
    grid-template-rows: 10% 87% 3%;
    grid-template-columns: 100%;
}

.container{
    display: grid;
    grid-template-columns: 33.3% 33.4% 33.3%;
    grid-template-rows: 100%;
}

.content-center{
    display: table;
    width: 100%;
    height: 100%;
    align-self: center;
}
.center-cell{
    display: table-cell;
    margin: auto;
    vertical-align: top;
    height:100%;
}


.content-right, .content-left{
    background-size: cover;
    display: flex;
    align-items: center;
    text-align: center;
}
.content-left{
    background: url(img/BALENCIAGA_WEBPAGE_LEFT_01.jpg);
    background-size: cover;
}
.content-right{
    background: url(img/BALENCIAGA_WEBPAGE_RIGHT_01.jpg);
    background-size: cover;
    justify-content: center;
    align-items: center;
}
.content-right img{
    width: 45%;
    margin-top: 35%;
    align-self: center;
    justify-self: center;
}

.pack-header{
    width: 100%;
    background-color: white;
    display: grid;
    text-align: center;
    align-items: center;
}

.banner-container{
    width: auto;
    background-color: black;
    display: grid;
    align-items: start;
    justify-items: center;
}

.banner{
	cursor: pointer;
	width: 100%;
}
.banner-mobile{
	display: none;
	width: 100%;
}

.phlay-container{
    align-self: start;
    justify-self: center;
    max-width: 640px;
    width: 100%;
    height: 80%;
    display: grid;
}

.frame{
    align-self: center;
    justify-self: center;
    margin: auto;
    border: none;
    width: 100%;
    height: 100%;
    background: black;    
}

.header{
    display: grid;
    width: 100%;
    grid-template-rows: 60% 40%;
    grid-template-columns: 100%;
    background-color: var(--phlay-color);
    color: var(--primary-color);
    font-family: 'Arial', sans-serif;
    text-align: center;
    font-weight: 400;
}
.title{
    margin-top: 1%;
    margin-block-end: 0;
    margin-block-start: 0;
    height: 65%;
    justify-self: center;
}
.subtitle{
    margin: 0;
    font-size: 1.1em;
    margin-block-end: 0;
    margin-block-start: 0;
    letter-spacing: 3px;
}

.content-img{
    height: 100%;
}

.separator{
    width: 102%;
    align-self: end;
}
.cta{
    width: 100%;
    display: none;
    align-self: end;
}

.logo{
    width: 12%;
    align-items: flex-start;
}

.footer{
    width: 100%;
    display: grid;
    align-items: center;
    justify-items: center;
    background: var(--phlay-color);
}
.countdown{
    font-family: Arial, sans-serif;
    font-size: 1.7em;
    align-self: end;
    display: flex;
}
.countdown .simply-word{
    display: inline;
}
.countdown > .simply-days-section .simply-word{
    margin-right: 5px;
}

.tutorial-overlay{
    display: none;
    justify-items: center;
    align-items: center;
    position: absolute;
    z-index: 999999;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0,0,0,.5);
}
.tutorial-popup{
    display: grid;
    justify-items: center;
    align-items: center;
    background-color: #ff286e;
    bottom: 0;
    width: 13%;
    border-radius: .5em;
}

#iframe-tutorial{
    width: 100%;
    grid-area: 1/1/1/1;
    align-self: start;
    border-radius: .5em;
}

.close-icon{
    display: grid;
    grid-area: 1/1/1/1;
    background-color: #ff286e;
    border-radius: 2em;
    align-items: center;
    justify-items: center;
    z-index: 1000000;
    align-self: start;
    justify-self: end;
    margin-top: -3%;
    margin-right: -3%;
    padding: 10px;
}
#close-icon-svg{
    width: 14px;
}
#info-container{
	display: grid; 
	width: 100%;
}
#info-icon{
    width: 5%;
    justify-self: center;
    align-self: center;
    margin-top: 3%;
}

/* MOBILE PORTRAIT */
@media only screen and (max-width: 480px){
	body{
		background: black;
	}
	
    .content-right, .content-left, .header, .pack-header, .countdown, #info-container{
        display: none;
    }
    
    .phlay-container{
        height: 100%;
        width: 100%;
    	background: black;
    }

    .frame{
        width: 100%;
        height: 100%;
    }
    
    .footer{
		display: grid !important;
		background: black;
        }
    .banner-mobile{
    	display: block;
    }
    
    .main{
        display: grid;
        grid-template-rows: min-content min-content;
        overflow-y: auto;
    }
    .container{
        display: grid;
        grid-template-columns: 100%;
        grid-template-rows: 100%;
        overflow-y: scroll;
    }
    
    @media only screen and (min-height: 670px){
        .separator{
            display: none;
        }
        .cta{
            display: block;
        }
		
	}

}


/* MOBILE LANDSCAPE */
@media only screen and (max-width: 1400px) and (orientation: landscape){

    .main, .container{
        display: grid;
        grid-template-columns: 100%;
        grid-template-rows: 100%;
    }
    
    .content-right, .content-left, .footer, .header, .pack-header, #info-container{
        display: none;
    }
    
    .center-cell{
    	vertical-align: middle;
    }
    
    .frame{
        width: 100%;
        height: 100%;
    }
    
    .phlay-container{
        width: 100%;
    	margin: auto;
    	background: black;
    }
}


/* TABLET PORTRAIT */
@media only screen and (min-width: 481px) and (max-width: 1024px) and (orientation: portrait){
    .content-right, .content-left, .header, .pack-header, .countdown, #info-container{
        display: none;
    }
  
    .main{
        grid-template-rows: min-content min-content;
        overflow-y: auto;
    }

    .phlay-container{
        width: 100%;
    	height: 100%;
    	margin: auto;
    }
    
    .frame{
        width: 100%;
        height: 100%;
    }
    
    .container{
        display: grid;
        grid-template-columns: 100%;
        grid-template-rows: 100%;
    }

    .footer{
        display: grid !important;
        background: black;
    }
    .footer a{
        width: 100%;
    }
    .banner-mobile{
        max-width: 640px;
        display: block;
        margin: auto;
    }

}

