header {

  position: fixed;
  display: inline;
  font-family: Verdana;
  font-size: 8px;
  font-weight: bold;
  height: 115px;
  width: 100%;
  text-align: center;
  align-items: center;
  justify-content: space-between;
  background-color: white;
  z-index: 3;
  top: 0;
  /*border-bottom: 2px solid black;*/
  -webkit-transition: top 200ms ;
  -moz-transition: top 200ms ;
  -ms-transition: top 200ms ;
  -o-transition: top 200ms ;
  transition: top 200ms ;
}

.column.middle {
  width: 40%;
  padding-left: 2.25rem;
  padding-right: 2.25rem;

  margin-top: 10px;
}


@-webkit-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@-moz-keyframes fadeIn { from { opacity:0; } to { opacity:1; } }
@keyframes fadeIn { from { opacity:0; } to { opacity:1; } }

.fade-in {
  opacity:0;  /* make things invisible upon start */
  -webkit-animation:fadeIn ease-in 1;  /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
  -moz-animation:fadeIn ease-in 1;
  animation:fadeIn ease-in 1;

  -webkit-animation-fill-mode:forwards;  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
  -moz-animation-fill-mode:forwards;
  animation-fill-mode:forwards;

  -webkit-animation-duration:1s;
  -moz-animation-duration:1s;
  animation-duration:1s;
}

.fade-in-slow{
  opacity:0;  /* make things invisible upon start */
  -webkit-animation:fadeIn ease-in 1;  /* call our keyframe named fadeIn, use animattion ease-in and repeat it only 1 time */
  -moz-animation:fadeIn ease-in 1;
  animation:fadeIn ease-in 1;

  -webkit-animation-fill-mode:forwards;  /* this makes sure that after animation is done we remain at the last keyframe value (opacity: 1)*/
  -moz-animation-fill-mode:forwards;
  animation-fill-mode:forwards;

  -webkit-animation-duration:2s;
  -moz-animation-duration:2s;
  animation-duration:2s;
}

.fade-in.delay-1 {
  -webkit-animation-delay: .7s;
  -moz-animation-delay: .7s;
  animation-delay: .7s;
}

.fade-in.delay-2{
  -webkit-animation-delay: 1.5s;
  -moz-animation-delay: 1.5s;
  animation-delay: 1.5s;
}

.fade-in.delay-3 {
  -webkit-animation-delay: .5s;
  -moz-animation-delay: .5s;
  animation-delay: .5s;
}




@-webkit-keyframes slideInFromLeft { from { transform: translateX(-100%); } to { transform: translateX(0); } }
@-moz-keyframes slideInFromLeft { from { transform: translateX(-100%); } to { transform: translateX(0); } }
@keyframes slideInFromLeft { from { transform: translateX(-100%); } to { transform: translateX(0); } }


.headerBorder {
  height: 2px;
  transform: translateX(-100%);
  border-bottom: 2px solid #757575;
  -webkit-animation: slideInFromLeft .3s ease .2s forwards;
    -moz-animation: slideInFromLeft .3s ease .2s forwards;
      -o-animation: slideInFromLeft .3s ease .2s forwards;
        animation: slideInFromLeft .3s ease .2s forwards;
}


@-webkit-keyframes slideUp { from { transform: translateY( 100%); } to { transform: translateY(0); } }
@-moz-keyframes slideUp { from { transform: translateY( 100%); } to { transform: translateY(0); } }
@keyframes slideUp { from { transform: translateY( 100%); } to { transform: translateY(0); } }

.postBorder{
  margin-top: 10px;
  width: 1px;
  z-index: -1;
  border-left: 1px solid #757575;
  transform: translateY( 100%);
  -webkit-animation: slideUp .4s ease .2s forwards;
    -moz-animation: slideUp .4s ease .2s forwards;
      -o-animation: slideUp .4s ease .2s forwards;
        animation: slideUp .4s ease .2s forwards;
}


@media only screen and (max-width: 700px){
  .postBorder{
    border-left: none;
  }
}





/*************************Triangle Menu*******************************/



#sidebarMenu {
  top: -60px;
  margin-top: 60px;
  padding-top: 60px;
  z-index: 10;
  color: darkgrey;
    height: 100%;
    position: fixed;
    right: -250px;
    width: 250px;
    transform: translateX(0px);
    transition: transform 250ms ease-in-out;
  background: #e8e8e8f0;
  border-left: 2px solid #929191;
}



.sidebarMenuInner{
    margin:0;
    padding:0;
}

.sidebarMenuInner li{
    list-style: none;
    color: darkgrey;
    text-transform: uppercase;
    font-weight: bold;
    padding: 8px;
    cursor: pointer;
}

.sidebarMenuInner li span{
   /* display: block;*/
    font-size: 14px;
/*    color: rgba(255, 255, 255, 0.50);*/
}
.sidebarMenuInner li a{
    color: #3e3e3e;
    text-transform: uppercase;
    font-weight: bold;
    cursor: pointer;
    text-decoration: none;
}
input[type="checkbox"]:checked ~ #sidebarMenu {
    transform: translateX(-250px);
}

input[type=checkbox] {
    transition: all 0.3s;
    box-sizing: border-box;
    display: none;
}
.sidebarIconToggle {
    transition: all 0.3s;
    box-sizing: border-box;
    cursor: pointer;
    position: absolute;
    z-index: 99;
    /* height: 100%; */
    /* width: 100%; */
    top: 23px;
    right: 139px;    
    height: 38px;
    width: 38px;
}

.cart-icon{
    color: #696868;
}

.cart-icon a{
  color: #696868!important;
}

.cart-icon-container{
  top: 6px;
    right: 81px;
    position: absolute;
    z-index: 99;
    color: #696868;
}

.spinner {
    transition: all 0.3s;
    box-sizing: border-box;
    position: absolute;
    height: 1px;
    width: 100%;
    background-color: black;
}


.spinner-2{
  margin: auto;
    height: 1px;
    width: 50%;
    background-color: black;
}

.horizontal {
    transition: all 0.3s;
    box-sizing: border-box;
    position: relative;
    bottom: 21px;
    left: 4px;
}

.horizontal-2{
    transition: all 0.3s; 
  position: relative;
  top: -16px;
  left: 14px;
}

.diagonal.part-1 {
    transform: rotate(-60deg);
    margin-top: 8px;  
   /* position: relative;*/
    transition: all 0.3s;
    box-sizing: border-box;
    left: 16px;
    top: 1px;
}

.diagonal.part-2 {
    transform: rotate(60deg);
    margin-top: 0px;
    transition: all 0.3s;
    box-sizing: border-box;
    position: relative;
    float: left;
    left: -7px;
    top: -3px;

}


.diagonal-2.part-1-2{
  transform: rotate(-60deg);
    margin-top: 8px;  
    position: relative;
    transition: all 0.3s;
    box-sizing: border-box;
    left: 20px;
    top: -2px;
}


.diagonal-2.part-2-2{
    transform: rotate(60deg);
    position: relative;
    transition: all 0.3s;
    box-sizing: border-box;
    left: 8px;
    top: -5px;

}

input[type=checkbox]:checked ~ .sidebarIconToggle > .horizontal {
    transition: all 0.3s;
    box-sizing: border-box;
    bottom: -16px;
}

input[type=checkbox]:checked ~ .sidebarIconToggle > .horizontal-2 {
  transition: all 0.3s;
    top: 9px;
}

input[type=checkbox]:checked ~ .sidebarIconToggle > .diagonal.part-1 {
    transition: all 0.3s;
    box-sizing: border-box;
  transform: rotateY(0deg) rotate(60deg); /* needs Y at 0 deg to behave properly*/
    left: 17px;
    top: -1px;
}

input[type=checkbox]:checked ~ .sidebarIconToggle > .diagonal-2.part-1-2 {
    transition: all 0.3s;
    box-sizing: border-box;
  transform: rotateY(0deg) rotate(60deg); /* needs Y at 0 deg to behave properly*/
    left: 21px;
    top: 0px;
}

input[type=checkbox]:checked ~ .sidebarIconToggle > .diagonal.part-2 {
    transition: all 0.3s;
    box-sizing: border-box;
  transform: rotateY(0deg) rotate(-60deg); /* needs Y at 0 deg to behave properly*/  
    left: -7px;
    top: -5px;  
}

input[type=checkbox]:checked ~ .sidebarIconToggle > .diagonal-2.part-2-2 {
    transition: all 0.3s;
    box-sizing: border-box;
  transform: rotateY(0deg) rotate(-60deg); /* needs Y at 0 deg to behave properly*/  
    left: 8px;
    top: -4px;  
}


.arrow-head{
  width: 4px;
    height: 4px;
    transform: translateY(-2px) rotateZ(45deg);
    border-left: 1px solid black;
    border-bottom: 1px solid black;
}



.arrow-head-horizontal{
  width: 4px;
    height: 4px;
    position: absolute;
    transform: translateY(-2px) rotateZ(225deg);
    border-left: 1px solid black;
    border-bottom: 1px solid black;
    right: 0px;
}

.arrow-head-horizontal-2{
  width: 1px;
    height: 1px;
    position: absolute;
    transform: translateY(-1px) rotateZ(225deg);
    border-left: 2px solid black;
    border-bottom: 2px solid black;
    right: 0px;
}


.arrow-head-2{
  width: 1px;
    height: 1px;
    transform: translateY(-1px) rotateZ(45deg);
    border-left: 2px solid black;
    border-bottom: 2px solid black;
}

.list-border{
  width: 80%;
    border-top: 1px solid grey;
    text-align: center;
    margin: auto;
    height: 5px;
}


.triangle-menu{
  display: block;
  width: 40px;
  height: 40px;
  left: 15px;
  top: 5px;
}






.wm-container {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  background-color: white;    
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.white-mirror {
  position: relative;
  margin: auto;
  width: 100%;
  text-align: center;
  height: 20vh;
  margin-top: 30%;
  margin-bottom: 5%;
}

.layer {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  width: 80%;
  height: auto;
  margin: auto;
  user-drag: none;
  user-select: none;
}

.countdown {
  margin-top: 11px;
  font-size: 24px;
  font-weight: bold;
  width: 60%;
  justify-content: space-evenly;
  transform: scale(.75);
  display: flex;
}

.layer img {
  border: none;
  outline: none;
  transition: left 3s ease-out, top 3s ease-out;
}

.img_1{
  opacity: .3;
}

.img_2{
  opacity: .6;
}

.img_3{
  opacity: .1;
}


/**** Zeros ****/

.digit{
  display: flex;
  position: relative;;
}

.segment{
height: 2vw;
width: 2vw;
opacity: .6;
}


.wm-top{
transform: rotate(90deg);
position: absolute;
top: -26%;
left: 33.5%;
}

.wm-upper{
transform: rotate(90deg);
position: absolute;
bottom: 50%;
left: 33.5%;
}

.wm-middle{
transform: rotate(90deg);
position: absolute;
bottom: 25%;
left: 33.5%;
}

.wm-lower{
transform: rotate(90deg);
position: absolute;
bottom: 0%;
left: 33.5%;
}

.wm-bottom{
transform: rotate(90deg);
position: absolute;
bottom: -25%;
left: 33.5%;
}

.top-v-1{
position: absolute;
top: 2vw;
width: 100%;
/* left: */
}

.top-v-2{
position: absolute;
top: 2vw;
width: 100%;
transform: rotate(180deg);
left: -1px;
}

.lower-v-1{
position: absolute;
top: 6vw;
width: 100%;
/* left: */
}

.lower-v-2{
position: absolute;
top: 6vw;
width: 100%;
transform: rotate(180deg);
left: -1px;
}

.diagonal-v-segment-1{
transform: rotate(45deg);
position: absolute;
bottom: -3%;
left: 49.5%;
}

.diagonal-v-segment-2{
transform: rotate(135deg);
position: absolute;
bottom: 0%;
left: 16.5%;
}


.colon{
width: 16px;
text-align: center;
margin: auto;
display: flex;
flex-direction: column;
justify-content: space-around;
height: 5vw;
}

.colon-upper-dot{
width: .5vw;
height: .5vw;
border-radius: 50%;
border: 1px solid grey;
}

.colon-lower-dot{
width: .5vw;
height: .5vw;
border-radius: 50%;
border: 1px solid grey;
}


.static-text{
font-size: 9.5vw;

font-family: 'Bungee Hairline', cursive;
font-weight: 600;
}


@media only screen and (max-width: 999px) {
.countdown{
  transform: scale(0.9);
}

.segment{
  display: flex;
  flex-direction: column-reverse;
  justify-content: space-evenly;
}

}




@media only screen and (max-width: 400px) {
  .colon-lower-dot{
    border: .5px solid grey;
  }

  .colon-upper-dot{
    border: .5px solid grey;    
  }

}

@media only screen and (min-width: 1200px) {
  .white-mirror{
    margin-top: 25vh;
  }
}


@media only screen and (max-width: 400px) {
  .white-mirror{
    margin-top: 49%;
  }

  .static-text{
    line-height: 17vw;
    font-size: 15vw;
  }

  .breakable-text{
    display: block;
  }


}

#visit-tt{
  position: absolute;
  top: 4px;
  left: 11px;
  font-family: system-ui;
  color: rgb(185, 185, 185);
  letter-spacing: 2px;
  cursor: pointer;
}