/* Fonts Size and Rem selection */

html{
  font-size: 16px;
  background: #000;
}

@media screen and (max-width: 800px) {
  
  html{
    font-size: 16px;
  }

}

@media screen and (max-width: 700px) {
  
  html{
    font-size: 14px;
  }

}

@media screen and (max-width: 600px) {
  
  html{
    font-size: 14px;
  }

}

@media screen and (max-width: 500px) {
  
  html{
    font-size: 12px;
  }

}

@media screen and (max-width: 400px) {
  
  html{
    font-size: 12px;
  }

}

@media screen and (max-width: 300px) {
  
  html{
    font-size: 12px;
  }

}

@media screen and (max-height: 400px) {
  
  html{
    font-size: 12px;
  }

}

/* Fonts Size and Rem selection END */

*{
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  position: relative;
  font-family: inherit;
  font-size: inherit;
  line-height: inherit;
}

body{
  font-family: 'Poppins', sans-serif;
  min-height: 100vh;
  font-size: .8rem;
  line-height: 1.6rem;
  background: #000;
}

div.site-topper{
  width: 100%;
  z-index: 500;
}

svg{
  height: inherit;
  width: inherit;
}

i{
  height: 1rem;
  width: 1rem;
  cursor: pointer;
  z-index: 1;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
  background-color: black;
}

div.big-wrapper{
  min-height: 100vh;
  z-index: 5;
  z-index: 5;
  display: flex;
  flex-direction: column;
}

main{
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-start;
}

@keyframes slide-mini-message-up{
  0%{bottom: -3rem;}
  100%{bottom: 0rem;}
}

@keyframes slide-small-message-left{
  0%{right: -5rem;}
  100%{right: 1rem;}
}

@keyframes fade-in-normal-message-left{
  0%{opacity: 0;}
  100%{opacity: 1;}
}

/* Custom Scroll bar */

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

/* Track */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}

/* Handle */
::-webkit-scrollbar-thumb {
  background: #888;
}

/* Handle on hover */
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Custom Scroll bar END */

div.mini-message-holder{
  position: fixed;
  right: 0;
  left: 0; 
  bottom: 0;
  z-index: 50;
  margin: 1rem auto;
  display: none;
  align-items: center;
  justify-content: center;
}

div.mini-message-holder.show{
  display: flex;
  animation: slide-mini-message-up .5s 1;
}

div.mini-message-holder div.mini-message{
  background-color: rgb(48, 48, 48);
  color: white;
  fill: white;
  display: flex;
  padding:  .3rem .5rem;
  border-radius: .5rem;
  font-family: 'Poppins', sans-serif;
  font-size: .8rem;
  box-shadow: 0 0 5px 1px black;
}

div.small-message-holder{
  position: fixed;
  right: 1rem;
  top: 1rem;
  z-index: 50;
  margin: 0;
  display: none;
  align-items: center;
  justify-content: center;
  max-width: 30vw;
}

div.small-message-holder.show{
  display: flex;
  animation: slide-small-message-left .5s 1;
}

div.small-message-holder div.small-message{
  word-break: break-word;
  background-color: rgb(22, 48, 165);
  color: white;
  fill: red;
  display: flex;
  padding:  .3rem .5rem;
  border-radius: .5rem;
  font-family: 'Poppins', sans-serif;
  font-size: .8rem;
  box-shadow: 0 0 5px 1px black;
}

div.normal-message-holder,
div.x-message-holder{
  position: fixed;
  right: 0; top: 0;
  bottom: 0; left: 0;
  z-index: 40;
  margin: 0;
  display: none;
  align-items: center;
  justify-content: center;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  opacity: 1;
}

div.normal-message-holder.show,
div.x-message-holder.show{
  display: flex;
  animation: fade-in-normal-message-left .5s 1;
}

div.normal-message-holder div.normal-message,
div.x-message-holder div.x-message{
  background-color: rgb(165, 22, 122);
  color: white;
  fill: red;
  display: flex;
  padding:  .3rem .5rem;
  border-radius: .5rem;
  max-width: 80vw;
  max-height: 80vh;
  font-family: 'Poppins', sans-serif;
  font-size: .8rem;
  overflow: auto;
  box-shadow: 0 0 5px 1px black;
  word-break: break-word;
}

div.normal-message-holder div.normal-message .message-context,
div.x-message-holder div.x-message .message-context{
  padding: 0 .5rem;
}

footer{
  text-align: center;
  /* position: absolute; */
  /* bottom: 0; left: 0; right: 0; */
  width: 100%;
  display: flex;
}

footer > div.site-footer{
  border-top: 1px solid white;
  color: white;
  width: 100%;
  display: flex;
  background-color: transparent;
  font-size: .8rem;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

footer > div.site-footer a#foot-contact{
  cursor: pointer;
  color: white;
  text-decoration: underline;
}

footer > div.site-footer .footer-svgs{
  width: 100%;
  height: 1px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

footer > div.site-footer .footer-svgs.show{
  overflow: visible;
}

footer > div.site-footer .footer-svgs .inside-foot-svgs{
  padding: .2rem;
  background-color: white;
  position: absolute;
  bottom: 100%;
  display: none;
  flex-wrap: wrap;
  width: auto;
  align-items: center;
  justify-content: center;
  fill: aquamarine;
  border-radius: .7rem;
}

footer > div.site-footer .footer-svgs.show .inside-foot-svgs{
  display: flex;
}

footer > div.site-footer .footer-svgs .inside-foot-svgs::after{
  content: " ";
  border: 7px solid white;
  position: absolute;
  top: 100%;
  left: 50%;
  margin-left: -7px;
  border-color: transparent;
  border-top-color: white;
}

footer > div.site-footer .footer-svgs a{
  text-decoration: none;
  padding: .3rem;
}


@keyframes scroll-tiny-large {
  0%{transform: scale(0);}
  100%{transform: scale(1);}
}

@keyframes scroll-slide-in-left {
  0%{transform: translateX(-100%);}
  100%{transform: translateX(0%);}
}

@keyframes scroll-slide-in-right {
  0%{transform: translateX(100%);}
  100%{transform: translateX(0%);}
}

.scroll-slide-in-left{
  animation: scroll-slide-in-left 1s 1;
}

.scroll-slide-in-right{
  animation: scroll-slide-in-right 1s 1;
}

.scroll-tiny-large{
  animation: scroll-tiny-large 1s 1;
}

.animate-scroll-tiny-large.animate-me{
  transform: scale(0)
}

.animate-scroll-slide-in-left.animate-me{
  transform: translateX(-100%)
}

.animate-scroll-slide-in-right.animate-me{
  transform: translateX(100%)
}

div.loader-holder{
  width: 100%;
  align-self: stretch;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

div.loader-holder .bar-holder{
  width: 95%;
  height: 1rem;
  background-color: grey;
  border-radius: .5rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

div.loader-holder .bar-holder .bar{
  width: calc(100% - .8rem);
  height: .3rem;
  background-color: white;
  border-radius: .15rem;
  overflow: hidden;
}

div.loader-holder .bar-holder .bar .bar-inner-space{
  width: 5%;
  height: 100%;
  background-color: saddlebrown;
  border-radius: .15rem;
  transition: margin-left 5s;
  position: absolute;
  left: 0; top: 0;
  transition-timing-function: linear;
  /* margin-left: 100%; */
}


/* Tempoary Content */

div.main-content{
  height: 100%;
  width: 100%;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  flex: 1;
}


/* Tempoary Content */