html {
  width: 100%;
}

body {
  overflow-x: hidden !important;
}

body.show-spinner > main {
  overflow: hidden !important;
}

/* Hide everything under body tag */
body.show-spinner > *{
  opacity: 0;
}

/* Spinner */
body.show-spinner::after{
  content: " ";
  display: inline-block;
  width: 30px;
  height: 30px;
  border: 2px solid rgba(0, 0, 0, 0.2);
  border-radius: 50%;
  border-top-color: rgba(0, 0, 0, 0.3);
  animation: spin 1s ease-in-out infinite;
  -webkit-animation: spin 1s ease-in-out infinite;
  left: calc(50% - 15px);
  top: calc(50% - 15px);
  position: fixed;
  z-index: 1;
}

@keyframes spin {
  to {
    transform: rotate(360deg);
  }
}

@-webkit-keyframes spin {
  to {
    -webkit-transform: rotate(360deg);
  }
}

/*Custom*/
.logo {
  width: 200px;
  height: 45px;
  background: url("/assets/img/logo-mg-top2.png") no-repeat;
  background-position: center center;
  margin: 0 auto;
  background-size: contain;
}
@media (max-width: 767px) {
  .logo {
    width: 80px; }
  .navbar .navbar-right {
    flex-basis: 30%;
    text-align: right;
  }}

.logo-mobile {
  width: 80px;
  height: 35px;
  background: url("/assets/img/logo-mg-top2.png") no-repeat;
  background-position: center center;
  background-size: contain; }

/**/

.logo2 {
  width: 200px;
  height: 45px;
  background: url("/assets/img/Shell-logo.png") no-repeat;
  background-position: center center;
  margin: 0 auto;
  background-size: contain;
}
@media (max-width: 767px) {
  .logo2 {
    width: 80px; } }

.logo-mobile2 {
  width: 80px;
  height: 35px;
  background: url("/assets/img/Shell-logo.png") no-repeat;
  background-position: center center;
  background-size: contain; }

/**/

.logo3 {
  width: 200px;
  height: 45px;
  background: url("/assets/img/venyapplicate-logo.png") no-repeat;
  background-position: center center;
  margin: 0 auto;
  background-size: contain;
}
@media (max-width: 767px) {
  .logo3 {
    width: 80px; } }

.logo-mobile3 {
  width: 80px;
  height: 35px;
  background: url("/assets/img/venyapplicate-logo.png") no-repeat;
  background-position: center center;
  background-size: contain; }
