@font-face {
  font-family: norwester;
  src: url(/assets/fonts/norwester.regular.otf);
}
.norwester{
  font-family: norwester;
}
a{
  color:inherit;
  text-decoration: none;
}
body{
  background: #f0f2f4;
  /* background: #292c31; */
}
.loadmorebutton{
  width: 95%;
  margin: 0 auto;
  height: 38px;
  font-size:14px;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #F2F2F2;
  color: #27313C;
  border-radius: 3px;
}
.pageBannerType1{
  background-color:#234124;
  width:100vw;
  aspect-ratio: 3.4/1;
  background-size:cover;
  background-repeat: no-repeat;
}
.pageBannerType2{
  background-color:#494949;
  width:100vw;
  aspect-ratio: 5/2.5;
  background-size:cover;
  background-repeat: no-repeat;
  background-position: center;
}
.pageBanneroverlayer{
  position: absolute;
  top:0px;
  bottom:0px;
  width: 100%;
  z-index: 0;
  background-color:rgb(0,0,0,0.2);
}
.pageBannerScript{

}
.main .content{
  margin:0 auto;
  max-width: 1200px;
  width:100%;
  padding:9px 0px;
  /* background: white; */
  min-height: 300px;
}
#loadingWrapper{
  position: fixed;
  width: 100vw;
  height: 100vh;
  background:rgba(0,0,0,0.9);
  z-index: 99;
  top:0px;

  flex-direction: column;
  justify-content: center;
  align-items: center;
  display: flex;
}
#loadingWrapper>div>div:nth-child(2){

  color:white;
  padding:12px;
  font-style: italic;
  font-weight: bold;
}
#rightsidemenu{
  position: fixed;
  top: 0px;
  right:0px;
  height: 100vh;
  width: 80%;
  max-width: 450px;
  background:black;
  z-index: 100;
  transform: translateX(100%);
}
#overlayerbg{
  position: fixed;
  top: 0px;
  left:0px;
  height: 100vh;
  width: 100vw;
  background:rgba(0,0,0,0.2);
  z-index: 99;
  display: none;
}
.slideOut {
    animation: slideOutRight 0.5s ease-in-out forwards;
}
@keyframes slideOutRight {
    from { transform: translateX(0); }
    to { transform: translateX(100%); visibility: hidden; }
}

.slideIn {
    animation: slideInRight 0.5s ease-in-out forwards;
}
@keyframes slideInRight {
    from { visibility: visible; transform: translateX(100%); }
    to { transform: translateX(0); }
}
#loader {

  /* border: 8px solid #f3f3f3;
  border-top: 8px solid #3498db;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  animation: spin 1s linear infinite;
  margin: 0 auto; */

  width: 60px;
  height: 60px;
  border: 8px solid #f3f3f3;
  border-top: 8px solid #ffdc11;
  border-radius: 50%;
  position: relative;
  animation: spin 1.5s ease-in-out infinite, glow 2s ease-in-out infinite;
  margin: 0 auto;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

@media only screen and (min-width: 768px) {
  .pageBannerType2{
    background-color:#494949;
    width:100vw;
    aspect-ratio: 5/2;
  }
}
