@keyframes up-in {
  from {
    opacity: 0;
    bottom: 0%;
 }
  to {
    opacity: 1;
    bottom: 50%;
 }
}
@font-face {
  font-family: yataghan;
  src: url(../fonts/Yataghan-Regular.otf);
}

.fill {
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
}
body, html {
  height: 100%;
  min-width: 100%;
  min-height: 100%;
  margin: 0;
  padding: 0;
  background : black;
  overflow: scroll;
  font-family: 'Raleway', sans-serif;
}
.flex-row {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
}
.container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
  width: 100%;
  min-height: 100%;
  height: 100%;
  overflow: scroll;
  background : black;
  position: relative;
}
.container.no-scroll {
  /* overflow: hidden; */
}
.page {
  width: 80%;
  padding: 10px;
  background : #020202;
}
@media (max-width: 600px) {
  .page {
    width: 90%;
 }
}
.grid {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  justify-content: space-around;
}
.grid .grid-item {
  width: 33%;
  position: relative;
}
.grid .grid-item:after {
  content: '';
  display: block;
  margin-top: 100%;
}
@media (max-width: 600px) {
  .grid .grid-item {
    width: 50%;
 }
}
.box {
  position: absolute;
  top: 10px;
  bottom: 10px;
  left: 10px;
  right: 10px;
  background-color: rgba(0,0,0,.9);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center top;
  overflow: scroll;
  cursor: pointer;
  padding-bottom : 100px;
  text-align : center;
}
.box img {
  width: 100%;
  transition: transform 0.6s ease;
}
.box.selected {
  opacity: 0;
}
.box.on-top {
  cursor: default;
  transition: all 0.4s ease;
  box-shadow: 2px 2px 19px -2px rgba(0,0,0,0.44);
}
.box.image-out img {
  transform: translateY(-100%);
}
.content {
  position: absolute;
  padding: 20px 40px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  opacity: 0;
  transition: opacity 0.5s ease;
}
.show .content {
  opacity: 1;
}
@media (max-width: 600px) {
  .content {
    padding: 10px 20px;
 }
}
.scroller {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow-y: auto;
}
.scroller h1 {
  color: white;
  width: 100%;
  margin-bottom: 30px;
  position: absolute;
  bottom: 50%;
  text-align: center;
  animation: up-in 1s ease;
}
.top-up.ng-hide-add, .top-up.ng-hide-remove {
  transition: 0s ease top;
}
.top-up.ng-hide-add-active, .top-up.ng-hide-remove-active {
  transition: 0.6s ease top;
}
.top-up.ng-hide-add {
  top: 0;
}
.top-up.ng-hide-add.ng-hide-add-active {
  top: 100%;
}
.top-up.ng-hide-remove {
  top: 100%;
}
.top-up.ng-hide-remove.ng-hide-remove-active {
  top: 0;
}
.fullscreen-background {
  overflow-y: scroll;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #333;
  transition: top 0.5s ease;
  background-repeat: no-repeat;
  background-position: center center;
  background-size: cover;
  background-attachment: fixed;
}
.fullscreen-background.show {
  top: 0;
}
.close-button {
  position: fixed;
  top: 20px;
  right: 20px;
  color: red;
  cursor: pointer;
}
.close-button i {
  font-size: 35px;
}
.close-button:hover {
  color: #ddd;
}

p {
  font-size: 1.5em;
  font-family: yataghan;
  color : white;
}



#icon_lp{

  position : fixed;
  top : 0px;

}

#icon_lp img{
  width : 100px;
}

#socialMedia svg{
  fill : white;
  width : 40px;
  margin : 30px;
} 

#socialMedia svg:hover{
  fill : red;
  width : 40px;
  margin : 30px;
} 