#wrapper-body {
    display: none;
}
/* span:hover {
  cursor: pointer;
  color: #8D191B;
} */

#loader {
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 1;
  width: 150px;
  height: 150px;
  margin: -75px 0 0 -75px;
  border: 16px solid #f3f3f3;
  border-radius: 50%;
  border-top: 16px solid #2E2E2E !important;
  width: 120px;
  height: 120px;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
}

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

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

/* Add animation to "page content" */
.animate-bottom {
  position: relative;
  -webkit-animation-name: animatebottom;
  -webkit-animation-duration: 1s;
  animation-name: animatebottom;
  animation-duration: 1s
}

@-webkit-keyframes animatebottom {
  from { bottom:-100px; opacity:0 } 
  to { bottom:0px; opacity:1 }
}

@keyframes animatebottom { 
  from{ bottom:-100px; opacity:0 } 
  to{ bottom:0; opacity:1 }
}

.language-switcher {
  display: inline-block;
  position: relative;
}
.language-switcher a {
  padding: 0px 5px;
  font-size: 14px;
  font-weight: bold;
  text-decoration: none;
}
.language-switcher .selected {
  padding-right: 15px;
}
.language-switcher .selected>a {
  color: #333;
  cursor: pointer;
  display: block;
  line-height: 20px;
  position: relative;
  padding-left: 22px;
}
.language-switcher .selected>a>.icon {
  border-radius: 3px;
  left: 0;
  position: absolute;
  top: 5px;
  width: 15px!important;
}
.language-switcher .selected>i {
  font-size: 8px;
  position: absolute;
  right: 4px;
  top: calc(50% - 4px);
}

.dropdown-wrapper:hover .dropdown-menu {
  display: block;
}
.dropdown-wrapper .dropdown-menu {
  display: none;
  font-size: 16px;
  min-width: 160px;
  margin: 0;
  position: absolute;
  top: 100%;
  z-index: 3;
}
.dropdown-wrapper .dropdown-menu ul {
  background: #fff;
  box-shadow: 0 0 5px #00000026;
  list-style-type: none;
  margin: 0;
  padding: 0;
}
.dropdown-wrapper .dropdown-item {
  padding: 0;
}
.dropdown-wrapper .dropdown-item>a {
  color: #333;
  display: flex;
  padding: 8px 32px 8px 8px;
}
.dropdown-wrapper .dropdown-item>a>img {
  height: 16px;
  width: 20px!important;
}
.dropdown-wrapper .dropdown-item>a>span {
  margin-left: 8px;
}
.language-switcher-login {
  padding: 10px 0;
}
.language-switcher-login .selected>a {
  color: #fff !important;
}

