.app-container {
  background: url("../img/bg.png");
  background-size: cover;
}

.main-layout {
  height: 100%;
  width: 100%;
  display: grid;
  grid-template-rows: 95px auto 85px;
}

.body-layout {
  height: 100%;
  display: flex !important;
  align-items: center;
  justify-content: center;
  background: rgba(0, 0, 0, 0.8);
  overflow: hidden;
}

.header-layout {
  padding-top: 12px;
  clip-path: polygon(0 0, 100% 0, 85% 100%, 0 100%);
}

.header-layout img {
  width: 75px;
  height: auto;
}

.footer-layout {
  position: relative;
}

.footer-layout .web-page {
  color: aliceblue;
  position: absolute;
  right: 0;
  bottom: 0;
  padding: 8px;
  cursor: pointer;
}

.footer-layout a {
  padding-right: 8px;
  transform: translateY(7px);
  float: right;
}

.loader-active{
display: block;
position: absolute;
left: 0;
top: 0;
width: 100vw;
height: 100vh;
background-color: aliceblue;
  background: url("../img/bg.png");
}

.loader-active div {
  display: flex;
  height: 100%;
  width: 100%;
  justify-content: center;
  align-items: center;
  flex-flow: column;
}

#roll {
  width: 60px;
  height: 60px;
  border: 3px solid red;
  border-left: none;
  border-radius: 50%;
  animation: flip 3s ease infinite;
}

.loader-deactive{
display: none;
}

.angry-animate{
  -webkit-animation:flip 2s ease 0s 1 normal;
  -moz-animation:flip 2s ease 0s 1 normal;
  -ms-animation:flip 2s ease 0s 1 normal;
  animation:flip 2s ease 0s 1 normal;
  }
  
  @-webkit-keyframes flip {
  0%{ -webkit-transform: translateY(0); transform: rotateY(0deg); }
  50%{ -webkit-transform: translateY(180); transform: rotateY(180deg); }
  100%{ -webkit-transform: translateY(0); transform: rotateY(0deg); }
  }
  
  @keyframes flip {
  0%{ transform: rotateY(0deg); }
  50%{ transform: rotateY(180deg); }
  100%{ transform: rotateY(0deg); }
  }

  @keyframes rollloader {
    0% {
      rotateY: 0deg;
    }

    100%{
      rotateY: 360deg;
    }
  }

  .float-btn{
    position: absolute;
    bottom: 0;
    right: 0;
    border-radius: 12px;
    z-index: 1200;
  }