html ::-moz-selection {
  background: #00d1b2;
  color: #fff;
}
html ::selection {
  background: #b5b5b5;
  color: #0a4a8e
  /* background: #00d1b2; */
  /* color: #fff; */
}
@media screen and (min-width: 1090px) {
  .nav-bar-spacing {
    padding-top: 5.25rem !important;
  }
}

/*Common*/
.break {
  height: 15px;
  width: 100%;
}
.section-break {
  height: 50px;
  width: 100%;
}
.comma + .comma:before {
  content: ", ";
}
.game-icon {
  min-width: 140px; 
  max-width: 175px;
}

.item-shadow {
  transition: all 0.2s ease-in-out;
}
.item-shadow::after {
  /*box-shadow: 0 5px 15px rgba(0,0,0,0.3);*/
  transition: opacity 0.2s ease-in-out;
}
/* Translate the item */
.item-shadow:hover {
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transform: translateY(0px);
}
/* Fade in the pseudo-element with the bigger shadow */
.item-shadow:hover::after {
  opacity: 1;
}

.review-shadow {
  transition: all 0.1s ease-in-out;
}
.review-shadow::after {
  transition: opacity 0.1s ease-in-out;
}
/* Translate the review item */
.review-shadow:hover {
  box-shadow: 0 5px 15px rgba(0,0,0,0.3);
  transform: translateY(-5px);
}
/* Fade in the pseudo-element with the bigger shadow */
.review-shadow:hover::after {
  opacity: 1;
}

.text-container {
  position: relative;
  color: white;
  overflow: hidden;
}
.text-container img {
  max-width: 100%;
  -moz-transition: all 0.3s;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
}
.text-container:hover img {
  -moz-transform: scale(1.1);
  -webkit-transform: scale(1.1);
  transform: scale(1.1);
}



/*Header*/
.nav-search {
  background-color: #f5f5f5; 
  box-shadow: none; 
  border-color: transparent;
}
.logo {
  color: #00d1b2;
  font-size: 30px;
  padding-top: 2px; /* for bulma 4.0*/
}
.disabled {
  cursor: default;
}
.hero-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.hero-bg-login {
  background-image: url('/images/zelda.png');
  background-repeat: no-repeat;
  background-position: 65% 0%;
  background-attachment: fixed;
  background-size: contain;
}
.hero-bg-register {
  background-image: url('https://mythril.nyc3.cdn.digitaloceanspaces.com/general/login-register-link.png');
  background-repeat: no-repeat;
  background-position: 65% 0%; 
  background-attachment: fixed;
  background-size: contain;
  background-position-y: 2rem;
}
.hero-bg-games {
  background-image: url('https://mythril.nyc3.cdn.digitaloceanspaces.com/general/games.png');
  background-repeat: no-repeat;
  background-position: 40% 0%;
  background-attachment: fixed;
  background-size: 475px;
  background-position-y: 2rem;
}
#animationTitle {
  animation-name: moveLeft;
  animation-duration: 1.2s;
  animation-timing-function: ease;
}
#animationSub {
   animation-name: moveLeft;
   animation-duration: 1.2s;
   animation-timing-function: ease;
   animation-delay: 0.5s;
   animation-fill-mode: forwards;
   opacity: 0;
 }
#animationAdd {
  animation-name: moveRight;
  animation-duration: 2s;
  animation-timing-function: ease;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}
#animationBG {
  animation-name: fadeIn;
  animation-duration: 2s;
  animation-timing-function: ease;
}
.imageFade {
  animation-name: fadeIn;
  animation-duration: 1s;
  animation-timing-function: ease;
}
@keyframes move {
  0% {background-position: 0px 0px, 0 0, 0 0}
  100% {background-position: -100px 0px, 0 0, 0 0}
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
@keyframes moveRight {
  from {
    transform: translateX(-60px);
    opacity: 0;
  }
  to {
    transform: translateX(0px);
    opacity: 1;
  }
}
@keyframes moveLeft {
  from {
    transform: translateX(80px);
    opacity: 0;
  }
  to {
    transform: translateX(0px);
    opacity: 1;
  }
}

/*Reviews and Recomendations*/
.recomendation-col {
  width: 200px;
  margin-bottom: 35px;
}
.recomendation-image {
  position: absolute;
  margin-left: 45px;
  margin-top: 25px;
}
.image-behind img:hover {
  z-index: 10;
}

/*Game Page*/
.hero-game-bg {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  background-attachment: fixed;
}
.dotted-border {
  border-bottom: 1px dotted #efefef;
  text-decoration: none;
}
.heart {
  color: red;
}
.wishlist {
  color: blue;
}
.tab-container {
  box-shadow:inset 0px 0px 0px 1px #dbdbdb;
}
@media screen and (min-width: 1024px) {
  .cover-title {
    bottom: -7rem;
    padding-left: 265px;
  }
  .cover-nav {
    padding-left: 265px;
  }
  .cover-sidebar {
     position: relative;
     width: 239px;
     top: -170px;
   }
  .cover-content {
    margin-left: 265px;
    margin-top: -20px;
  }
}
#animationTitle {
  animation-name: moveLeft;
  animation-duration: 2s;
  animation-timing-function: ease;
}
#animationSub {
   animation-name: moveLeft;
   animation-duration: 2s;
   animation-timing-function: ease;
   animation-delay: 0.5s;
   animation-fill-mode: forwards;
   opacity: 0;
 }
#animationAdd {
  animation-name: moveRight;
  animation-duration: 2s;
  animation-timing-function: ease;
  animation-delay: 0.5s;
  animation-fill-mode: forwards;
  opacity: 0;
}

.icon-text {
  background: rgba(0,0,0,0.5);
  border-radius: 0px 5px 0 0;
  color: #fff;
  font-size: 12px;
  line-height: 1;
  padding: 7px;
  bottom: 0px;
  position: absolute;
}

/*Games Page*/
.message-header a:link {
  text-decoration: none !important;
}

.bottom-left {
  position: absolute;
  bottom: 0px;
  left: 0px;
  font-size: 0.75rem;
  text-align: left;
  width: 100%;
  padding: 10px;
  background-color: rgba(0, 0, 0, 0.6);
}

.game-detail-header {
  background-color: #d7d7d7; 
  padding: 8px; 
  font-weight: 500; 
  overflow: hidden; 
  max-height: 40px;
}
.game-detail-header:hover {
  overflow-y: scroll; 
}
.game-detail-content {
  padding: 8px; 
  overflow: hidden; 
  max-height: 135px;
}
.game-detail-content:hover {
  overflow-y: scroll; 
}

/*Game Page Left Nav*/
.genre-link a:link, .genre-link a:visited, .genre-link a:hover {
  color: #FFFFFF;
  text-decoration: none;
}

.stat-count{
    width: 60px;
    cursor: default;
 }
.stat-label{
    width: 180px;
    cursor: default;
    opacity: 0.9;
}

.profile-icon {
    opacity: 0.5;
    filter: alpha(opacity=50); /* For IE8 and earlier */
}

.profile-icon:hover {
    opacity: 1.0;
    filter: alpha(opacity=100); /* For IE8 and earlier */
}

/*Vue Multiselect*/
.multiselect__option--highlight, .multiselect__option--highlight:after, .multiselect__tag, .multiselect__spinner:before {
  background-color: #00d1b2 !important; /* is-primary */
}
.multiselect__option--selected.multiselect__option--highlight, .multiselect__option--selected.multiselect__option--highlight:after{
  background:#ff6a6a !important; /* red */
  color:#fff !important;
}
.multiselect__select::before {
  border-style: none !important;
}
.multiselect--active {
  z-index: 29 !important;
}
input[type="range"].slider:not([orient="vertical"]).has-output + output, input[type="range"].slider:not([orient="vertical"]).has-output-tooltip + output {
  z-index: 25 !important;
}

/* for modal window for Gallery */
.hover-opacity:hover {
  opacity:0.60
}

.lbf-modal {
  z-index:3;
  display:none;
  padding-top:100px;
  position:fixed;
  left:0;
  top:0;
  width:100%;
  height:100%;
  overflow:auto;
  background-color:rgb(0,0,0);
  background-color:rgba(0,0,0,0.4);
  border: 25px;
}

.lbf-modal-content {
  margin:auto;
  background-color:#fff;
  position:relative;
  padding:1em;
  outline:0;
  width:900px
}

@media (max-width:600px) {
  .lbf-modal-content {
    margin:0 10px;
    width:auto!important
  }
  
  .lbf-modal {
    padding-top:30px
  }
}

@media (max-width:768px) {
  .lbf-modal-content {
    width:700px
  }
  
  .lbf-modal {
    padding-top:50px
  }
}

@media (min-width:993px) {
  .lbf-modal-content {
    width:700px
  }
  
  .lbf-hide-large {
    display:none!important
  }
}

.lbf-animate-zoom {
  animation:animatezoom 0.6s
}

@keyframes animatezoom {
  from {
    transform:scale(0)
  }
  to {
    transform:scale(1)
  }
}

.lbf-display-topright {
  position:absolute;
  right:0;
  top:0
}

.lbf-xlarge {
  font-size:24px!important
}

.lbf-hover-red:hover {
  color:#fff!important;
  background-color:#f44336!important
}

.lbf-button {
  border:none;
  display:inline-block;
  padding:8px 16px;
  vertical-align:middle;
  overflow:hidden;
  text-decoration:none;
  color:inherit;
  background-color:inherit;
  text-align:center;
  cursor:pointer;
  white-space:nowrap
}

#caption {
  margin: auto;
  display: block;
  width: 80%;
  max-width: 700px;
  text-align: center;
  color:#0a4a8e ;
  padding: 10px 0;
  height: 75px;
}

.modal-content,
#caption {
  animation-name: zoom;
  animation-duration: 0.6s;
}

/* Lightbox CSS  */

* {
  box-sizing: border-box;
  }
.row > .lbf-column {
  padding: 8px 8px;
}

.row:after {
  content: "";
  display: table;
  clear: both;
}

.lbf-column {
  float: left;
  width: 15%;

}

/* The Close Button */
.close {
  color: white;
  position: absolute;
  top: 10px;
  right: 25px;
  font-size: 35px;
  font-weight: bold;
}

.close:hover,
.close:focus {
  color: red;
  text-decoration: none;
  cursor: pointer;
}

.mySlides {
  display: none;
}

.cursor {
     cursor: pointer;
}

 /* Next & previous buttons */
 .prev,
 .next {
   cursor: pointer;
   position: absolute;
   top: 50%;
   width:2em;
   height: 2.2em;
   background: rgba(10, 74, 142, 0.7);
   
   /* margin-top: -50px; */
   color: white;
   /* font-weight: bold; */
   /* font-size: 20px; */
   /* transition: 0.6s ease; */
   border-radius: 75px;
   /* user-select: none; */
   /* -webkit-user-select: none; */
   display: flex;
   justify-content: center;
   align-items: center;
   padding: 1em;
 }

 /* Position the "next button" to the right */
 .next {
   right: 5px;
   border-radius: 75px;
 }

 a.ws_next, a.ws_prev {
	position:absolute;
	top:50%;
	margin-top:-2em;
	z-index:60;
	height: 4em;
	width: 3.4em;
	background-image: url(./arrows.png);
	background-size: 200%;
}
a.ws_next{
	background-position: 100% 0;
	right:0;
}
a.ws_prev {
	left:0;
	background-position: 0 0; 
}
a.ws_next:hover{
	background-position: 100% 100%;
}
a.ws_prev:hover {
	background-position: 0 100%; 
}

 img {
  margin-bottom: -4px;
}

.caption-container {
  text-align: center;
  background-color: white;
  padding: 2px 16px;
  color: white;
}

.demo {
  opacity: 0.6;
}

.active,
.demo:hover {
  opacity: 1;
}

img.hover-shadow {
  transition: 0.3s;
}

.hover-shadow:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

/*****************  for V2  
    background: rgb(67,65,102);
    background: linear-gradient(0deg, rgba(67,65,102,1) 0%, rgba(9,71,121,1) 14%, rgba(202,224,241,1) 100%);
*********************/

#lbf-nav a.current {
  background-color:darkblue;
  color:white;
}

#mapid {
  height: 540px;
}
