/*------------------------------------------------------------------
[Master Stylesheet]

Author: AtypicalThemes
Template: ARSNL - Video Game landing page

This file contains the styling for the actual theme, this
is the file you need to edit to change the look of the
theme.

-------------------------------------------------------------------
Table of contents

    I.General
    II.Header & Navigation
    III.Hero Section
    IV.About Section
    V.Media Section
    VI.Features Section
    VII.CTA Section

-------------------------------------------------------------------
[Color codes]

Background:	#FFF; (white)
Content:	#222; (black)
Footer:		#222;

a (standard): #222;
a (hover): #222;
a (visited): #222;	
a (active):	#222;

[Colors]

Primary Color: #222;
Accent Color: #5fa1f2;
-------------------------------------------------------------------*/

@import url('https://fonts.googleapis.com/css?family=Noto+Sans'); /* Noto Sans Font */

/* --------------------------- /////////// I. GENERAL /////////// --------------------------- */
/* -Color- */
.colored {
    color: #5fa1f2;
}
/* -Link Styling- */
a {
    color: #222;
    font-family: Noto Sans, sans-serif;
	text-decoration: none;
}
a:visited {
    color: #222;
    text-decoration: none;
}
a:hover {
    color: #222;
	text-decoration: none;
}
a:active {
    color: #222;
    text-decoration: underline;
}
a:focus {
    color: #222;
    text-decoration: none;
}
/* -Resets- */
html, body { 
    color: #222;
    font-size: 16px;
    line-height: 1.5rem; /* 24px */
    max-width: 100%;
	overflow: hidden;
}
/* -Full width fluid container- */
.full-width {
    padding-left: 0;
    padding-right: 0;
}
/* -Text Styling */
h1,h2,h3,h4,h5,h6 {
	font-family: Noto Sans, sans-serif;
    font-weight: bold;
}
h1 {
    font-size: 1.875rem;
} 
h2 {
    font-size: 1.5rem;
}
h3 {
    font-size: 1.25rem;
}
p {
    font-family: Noto Sans, sans-serif;
    font-size: 0.9375rem; /* 15px */
    padding: 5px 5px 5px 0;
    margin: 0;
    font-weight: 400;
}
.strong {
    font-weight: bold;
}
.spaced {
    letter-spacing: 5px;
}
.subtle {
	color: #999;
}
.text-left {
    text-align: left;
}
.text-right {
    text-align: right;
}
ul {
    list-style: none;
    padding: 0;
}
/* -Margins and Floats- */
.floated-left {
     float: left;
}
.floated-right {
    float: right;
}
.inline {
	display: inline;
}
.tiny-margin {
    margin-bottom: 3em;
}
.small-margin {
	margin-bottom: 6em;
}
.medium-margin {
	margin-bottom: 9em;
}
.large-margin {
	margin-bottom: 12em;
}
/* -hr- */
hr {
    width: 100%;
    height: 1px;
    background: #5fa1f2;
    margin: 10px 0;
}
/* -General Button Styles */
button {
    outline: none !important;
}
.button {
    height: auto;
    width: 150px;
    margin: 20px auto;
    padding: 10px 15px;
    font-family: Noto Sans, sans-serif;
    font-weight: bold;
    color: #222;
    border: 2px solid #333;
    border-radius: 4px;
    background: none;
	display: inline-block;
    outline: none;
	transition: all 0.2s ease;
    cursor: pointer;
    text-align: center;
}
.button:visited {
    color: #222;
}
.button:hover {
    text-decoration: none;
    color: #FFF;
    background: #333;
}
.button:focus {
    color: #FFF;
}
/* - Cookies Notification - */
.cookies-bar {
    background: #f0f0f0;
    height: auto;
    width: 100vw;
    position: fixed;
    bottom: -60px;
    border-top: 1px solid #5fa1f2;
    z-index: 10;
    transition: 0.4s;
}
.cookies-wrapper {
    position: relative;
    padding: 15px 40px;
}
.cookies-bar.open {
    transform: translateY(-60px);
}
.cookies-bar.closed {
    transform: translateY(60px);
}
.cookies-bar p {
    display: inline;
}
.cookies-bar a {
    text-decoration: underline;
}
.cookies-bar .button {
    display: block;
    position: absolute;
    top: 25%;
    right: 35px;
    margin: 0;
    height: 30px;
    width: 30px;
    padding: 0;
    font-size: 1.4rem;
    color: #333;
    background: none;
    border: none;
}
.cookies-bar .button:hover {
    color: #5fa1f2 !important;
}
/* RESPONSIVE STYLES */
@media (max-width : 769px) {
    .tiny-margin {
    margin-bottom: 1.5em;
}
    .small-margin {
	margin-bottom: 3em; 
}
    .medium-margin {
	margin-bottom: 4em; 
}
    .large-margin {
	margin-bottom: 6em; 
}
    .cookies-wrapper {
        padding: 15px 60px 15px 20px;
    }
    .cookies-bar .button {
        top: 30%;
    }
}
/* --------------------------- /////////// II. HEADER AND NAVIGATION /////////// --------------------------- */
#main-logo {
    color: #222;
    font-family: Noto Sans, sans-serif;
    font-size: 1.4rem;
    font-weight: bold;
    letter-spacing: 5px;
}
.navbar-light {
    height: auto;
    background-color: #FFF;
    border: none;
}
.navbar-light .navbar-nav .nav-link {
    color: rgba(0,0,0,.5);
}
.navbar-light .navbar-nav .nav-link:hover {
    color: #222;
}
/* Menu bars for mobile */
.navbar-toggler {
    border: none;
    cursor: pointer;
}
#hamburger .icon-bar {
    display: block;
    height: 2px;
    width: 25px;
    background: #222;
    margin: 7px 0;
    transition: .3s ease-in-out;
}
/* Dropdown Menu */
.navbar-collapse .dropdown-menu {
	margin-top: 8px;
	border: none;
	background: #FFF; 
    border-radius: 0;
}
.navbar-collapse .dropdown-item {
	color: rgba(0,0,0,.5);
	text-decoration: none;
}
.navbar-collapse .dropdown-item:hover {
	background: none; 
}
.navbar-collapse .dropdown-item .item-text {
	font-size: 0.875rem;
}
.navbar-collapse .dropdown-item:hover .item-text {
	color: #222;
}
.navbar-collapse .dropdown-items-divide-hr {
	width: 100%;
	height: 1px;
	margin: 0.25rem auto 0.25rem auto;
	border: none;
	background-color: #999;
	opacity: 0.2;
}
/* - Mobile menu animation - */
#hamburger .icon-bar:nth-child(1) {
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}
#hamburger .icon-bar:nth-child(2) {
   -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}
#hamburger .icon-bar:nth-child(3) {
    -webkit-transform-origin: left center;
    -moz-transform-origin: left center;
    -o-transform-origin: left center;
    transform-origin: left center;
}
#hamburger.open .icon-bar:nth-child(1) {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
}
#hamburger.open .icon-bar:nth-child(2) {
    width: 0%;
    opacity: 0;
}
#hamburger.open .icon-bar:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}

/* --------------------------- /////////// III. HERO SECTION /////////// --------------------------- */
/* -Hero Image- */
.hero-unit {
    background-image: linear-gradient(rgba(95, 161, 242, 0.2), rgba(95, 161, 242, 0.2)), url(../images/bg.jpg);
    background-size: cover;
    background-position-x: 75%;
    min-height: 1250px;
    color: #FFF;
}
.hero-caption {
    position: relative;
    width: auto;
    height: auto;
    margin: 30vh 0 0 0;
}
.hero-caption p {
    font-size: 1.5rem;
}
.hero-caption h1 {
    font-size: 4.5rem;
}
.hero-caption .store-buttons {
    margin: 15px 0;
}
.hero-caption .store-buttons li {
    transform: scale(0.9);
    margin: 0;
    background: #222;
}
.hero-caption .store-buttons li:hover {
    background: #fff;
}
.store-buttons li {
    display: inline-block;
    width: auto;
    height: auto;
    background: #121212;
    padding: 10px;
    border-radius: 4px;
    margin: 0 5px;
    transition: 0.2s;
}
.store-buttons {
    margin: 2em 0 3em 0;
}
.store-buttons li a {
    color: #fff;
}
.store-buttons li i {
    display: inline;
    float: left;
    margin-right: 10px;
}
.store-buttons li p {
    display: inline-block;
    font-size: 1.3rem;
    font-weight: bold;
    white-space: nowrap;
    transition: 0.2s;
}
.store-buttons li:hover {
    background: #f0f0f0;
}
.store-buttons li:hover a {
    color: #222;
}
.video-box {
    display: block;
    width: 100%;
    height: 250px;
}
.video-box img {
    height: 30%;
    width: 100%;
    margin: 45vh 0 0 0;
}
.video-box h2 {
    text-align: center;
    display: block;
    margin: 15px 0 0 0;
    font-weight: 300;
}
.video-box a {
    cursor: pointer;
}
@media (max-width : 1239px) {
    .store-buttons li {
        margin: 5px;
    }
}
/* -RESPONSIVE STYLES- */
@media (min-width : 1366px) {
    .hero-unit {
        height: 100vh;
    }
}
@media (max-width : 769px) {
    .hero-caption {
        text-align: center;
        margin: 20vh 0 0 0;
    }
    .video-box {
        margin-bottom: 20%;
    }
    .video-box img {
        margin: 20% 0 0 0;
    }
}
/* --------------------------- /////////// IV. ABOUT SECTION /////////// --------------------------- */
.reviews {
    margin-left: 25%;
}
.reviews li {
    margin: 2em 0 0 0;
}
.reviews li p {
    display: inline-block;
}
.stars {
    display: inline-block;
}
.phone {
    width: 40%;
    margin-left: 25%;
}
/* RESPONSIVE STYLES */
@media (min-width : 769px) and (max-width: 1024px) {
    .phone {
        width: 70%;
    }
}
@media (max-width : 769px) {
    .reviews {
        margin: 0 0 3em 0;
        text-align: center;
    }
    .phone {
        display: block;
        margin: 0 auto;
    }
}
/* --------------------------- /////////// V. MEDIA SECTION /////////// --------------------------- */
.gallery-item {
    padding: 0 2.5px;
}
.grid-gallery .row {
    margin: 0 0 5px 0;
}
.gallery-item img {
    transition: 0.3s ease;
}
.gallery-item:hover img {
    opacity: 0.6;
}
/* RESPONSIVE STYLES */
@media (max-width : 769px) {
    .gallery-item {
        margin: 5px 0;
    }
    .grid-gallery .row {
        margin: 0;
    }
}

/* --------------------------- /////////// VI. FEATURES SECTION /////////// --------------------------- */
.feature-img {
    width: 95%;
}
.feature-icon {
    width: 10%;
    margin-bottom: 25px;
}
.feature-box {
    margin: 4em 0 0 3em;
}
.feature-box.flipped {
    margin: 4em 3em 0 0;
}
/* RESPONSIVE STYLES */
@media (min-width : 769px) and (max-width: 1024px) {
    .feature-box {
        margin: 0;
    }
    .feature-box.flipped {
        margin: 0;
    }
}
@media (max-width : 769px) {
    .feature-img {
        width: 100%;
    }
    .feature-box {
        text-align: center;
        margin: 2em 0;
    }
    .feature-box.flipped {
        margin: 2em 0;
    }
}
/* --------------------------- /////////// VII. CTA SECTION /////////// --------------------------- */
.cta-box {
    width: auto;
    height: 100%;
    margin: 2em 0 2em 30%;
}
.cta-box h1 {
    font-size: 4.5rem;
}
/* RESPONSIVE STYLES */
@media (max-width : 769px) {
    .cta-box {
        text-align: center;
        margin: 0 0 4em 0;
    }
}
/* --------------------------- /////////// EXTRAS /////////// --------------------------- */
/* -Newsletter- */
input {
    width: 50%;
    height: 45px;
    border: none;
    background: #f0f0f0;
    padding: 0 0 0 20px;
    outline: #333;
}
#newsletter-box .button {
    vertical-align: top;
    margin: 0;
    height: 45px;
}
.text-danger {
    font-family: Montserrat, sans-serif;
    font-size: 1.3rem;
    margin-top: 10px;
}
.text-success {
    font-family: Montserrat, sans-serif;
    font-size: 1.3rem;
    margin-top: 10px;
}
/* -Social Links- */
.social h2 {
    font-size: 1.2rem;
}
.social-links li {
    display: inline-block;
    margin: 10px 20px;
}
.social-links li a i {
    transition: 0.2s;
}
.social-links li a :hover {
    color: #5fa1f2;
}
/* --------------------------- /////////// FOOTER /////////// --------------------------- */
#footer {
    width: 100%;
    min-height: 50px;
    height: auto;
    color: #AAA;
    background: #111;
    padding: 20px 0;
    font-size: 14px;
    line-height: 20px;
}
#footer ul {
    margin: 10px 0;
}
#footer ul li {
    display: inline-block;
    margin: 0 10px;
}
#footer ul li a {
    color: #AAA;
}
#footer ul li a:hover {
    color: #5fa1f2;
}
.brands {
    text-align: center;
}
.brands img {
    margin: 20px 0;
}
#copyright {
    font-size: 12px;
    color: #999;
    margin-bottom: 10px;
}
#copyright a {
    color: #AAA;
}
/* --------------------------- /////////// X. EXTRA PAGES /////////// --------------------------- */
.extra-page {
    font-size: 0.875rem;
}
.extra-page a {
    color: #5fa1f2;
}
.extra-page a:hover {
    color: #5fa1f2;
    text-decoration: underline;
    text-decoration-color: #5fa1f2;
}
.extra-page h3 {
    font-weight: bold;
}
.extra-page .button:hover {
    text-decoration: none;
    color: #FFF;
}
.extra-page .hero-unit {
    min-height: 400px;
    background: #FFF;
    border: none;
}
.extra-page .hero-caption {
    margin-top: 25vh;
    margin-left: 0;
    color: #222;
}
.extra-page .hero-caption h1 {
    font-size: 3.5rem;
}
.text-container ul {
    list-style: circle;
    margin-left: 40px;
}
.text-container ul li {
    margin: 5px 0;
}
.text-container ol li {
    margin: 5px 0;
}
.breadcrumb-nav {
    background: #F0F0F0;
    border: none;
    height: 60px;
}
.breadcrumb {
    border: none;
    background: none;
    margin: 0;
    height: 60px;
}
.breadcrumb li {
    padding-top: 5px;
}
#footer-extra {
    color: #FFF;
    border-top: 1px solid #5fa1f2;
    background: #222; 
}
#footer-extra .row:first-child {
    padding: 40px 0;
}
#footer-extra .social-links li a{
    color: #FFF;
}
#footer-extra .social-links li {
    margin: 0 15px 0 0;
}
.form-control-input {
    width: 100%;
}
.form-control-select {
    width: 100%;
    height: 45px;
    background: #F0F0F0;
    border: none;
    outline: #333;
    color: #222;
    padding: 0 0 0 20px;
}
.checkbox {
    font-size: 14px;  
}
.checkbox input {
    width: auto;
    height: auto;
    vertical-align: -5%;
    margin-right: 0.375rem;
}
#privacyForm .button {
    width: 100%;
    margin-top: 0;
    height: 50px;
    font-size: 1.1rem;
}
.form-container {
    padding-top: 2em;
}
/* -RESPONSIVE STYLES- */
@media (max-width : 991px) {
    #footer-extra .col-md-4 {
        margin-bottom: 2em;
        text-align: center;
    }
    #footer-extra .row:first-child {
        padding: 40px 0 20px 0;
    }
}

.ahashakeheartache {
    -webkit-animation: kf_shake 0.4s 1 linear;
    -moz-animation: kf_shake 0.4s 1 linear;
    -o-animation: kf_shake 0.4s 1 linear;
}
@-webkit-keyframes kf_shake {
    0% { -webkit-transform: translate(30px); }
    20% { -webkit-transform: translate(-30px); }
    40% { -webkit-transform: translate(15px); }
    60% { -webkit-transform: translate(-15px); }
    80% { -webkit-transform: translate(8px); }
    100% { -webkit-transform: translate(0px); }
}
@-moz-keyframes kf_shake {
    0% { -moz-transform: translate(30px); }
    20% { -moz-transform: translate(-30px); }
    40% { -moz-transform: translate(15px); }
    60% { -moz-transform: translate(-15px); }
    80% { -moz-transform: translate(8px); }
    100% { -moz-transform: translate(0px); }
}
@-o-keyframes kf_shake {
    0% { -o-transform: translate(30px); }
    20% { -o-transform: translate(-30px); }
    40% { -o-transform: translate(15px); }
    60% { -o-transform: translate(-15px); }
    80% { -o-transform: translate(8px); }
    100% { -o-origin-transform: translate(0px); }
}

#navGesture {

    background-color: silver;
    position: fixed;
    bottom: 80px;
    left: 50%;
    margin-left: -12vw;
    padding: 7vw;
    border-radius: 10px;
    text-align: center;
}


#location {
    width: 80%;
    margin: 0 auto;
    margin-top: 60px;
    padding: 15px;
    border-radius: 10px;
    background-color: #343a40;
}

#actionShow {
    width: 80%;
    height: 53px;
    margin: 0 auto;
    margin-top: 20px;
    padding: 15px;
    border-radius: 10px;
    color: white;
    background-color: #343a40;
}
#locationTitle{
    color: gold
}

#locationDescription{
    color: white;
}

#locationExits {
    color: greenyellow;
}

#locationExits span {
    color: #00CCCC;
}


#healthContainer {
    width: 45%; 
    height: 5vw;
    background-color: red;
    position: fixed;
    bottom: 5px;
    left: 2%;
    border-radius: 5px;
    text-align: center;
    font-size: small;
    line-height: 20px;
    font-weight: bolder;
    color: black;
}

#energyContainer {
    width: 45%; 
    height: 5vw;
    background-color: yellow;
    position: fixed;
    bottom: 5px;
    left: 52%;
    border-radius: 5px;
    text-align: center;
    font-size: small;
    line-height: 20px;
    font-weight: bolder;
    color:black;
}
#inventoryPeek {
    height           : 100%;
    width            : 35vw;
    float            : right;
    position         : fixed;
    top: 0;
    left             : 100%;
    background-color : pink;
}

#playbg {
    background-image: linear-gradient(rgba(95, 161, 242, 0.2), rgba(95, 161, 242, 0.2)), url(../images/bg.jpg);
    background-size: cover;
    background-position-x: 75%;
    min-height: 1200px;
    color: #FFF;
}


#compass {
	width: 400px;
	height: 400px;
	background-color: #F3F3F3;
	border-radius: 100%;
	background-image: -webkit-linear-gradient(top, #F7F7F7, #ECECEC);
    position: fixed;
    bottom: 80px;
    left: 27%;
    margin: 0 auto;

}

.compass-inner {
	width: 340px;
	height: 340px;
	background-color: #3D3D3D;
	border-radius: 100%;
	position: relative;
	left: 27.5px;
	top: 27.5px;
	border: 3px solid #C5C5C5;
}

.validExit {
    color: #00CCCC !important
}

.navtext {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%,-50%);
    padding: 2rem;
    color: black;
    font-weight: bold;
}

.north {
	font-size: 36px;
	font-family: 'Lobster Two', cursive;
	color: #FFF;
	position: absolute;
	left: 155px;
	top: 10px;
}

.east {
	font-size: 36px;
	font-family: 'Lobster Two', cursive;
	color: #FFF;
	position: absolute;
	left: 290px;
	top: 150px;
}

.west {
	font-size: 36px;
	font-family: 'Lobster Two', cursive;
	color: #FFF;
	position: absolute;
	left: 20px;
	top: 150px;
}

.south {
	font-size: 36px;
	font-family: 'Lobster Two', cursive;
	color: #FFF;
	position: absolute;
	left: 155px;
	top: 280px;
}



@media (max-width: 600px) {
  #compass {
    width: 200px;
	height: 200px;
	text-align: center;
  }
  
  .compass-inner {
	  width: 170px;
	  height: 170px;
	  left: 13px;
	  top: 13px;
  }
  
  .main-arrow {
	width: 30px;
	left: 78px;
	width: 15px;
	padding-top: 3px;
  }
  
  .arrow-up {
	border-bottom: 82.5px solid #EF5052;
	border-left: 7.5px solid transparent;
	border-right: 7.5px solid transparent;
  }
  
   .arrow-down {
	border-bottom: 82.5px solid #F3F3F3;
	border-left: 7.5px solid transparent;
	border-right: 7.5px solid transparent;
  }
  
  .north {
	  left: 78px;
	  top: 10px;
	  font-size: 16px;
  }
  
  .south {
	  font-size: 16px;
	  left: 78px;
	  top: 140px;
  }
  
  .east {
	  font-size: 16px;
	  top: 72.5px;
	  left: 145px;
  }
  
  .west {
	  font-size: 16px;
	  left: 10px;
	  top: 72.5px;
  }
}


@media (max-width: 600px) {
  #compass {
    width: 200px;
	height: 200px;
	text-align: center;
  }
  
  .compass-inner {
	  width: 170px;
	  height: 170px;
	  left: 13px;
	  top: 13px;
  }
  
  .main-arrow {
	width: 30px;
	left: 78px;
	width: 15px;
	padding-top: 3px;
  }
  
  .arrow-up {
	border-bottom: 82.5px solid #EF5052;
	border-left: 7.5px solid transparent;
	border-right: 7.5px solid transparent;
  }
  
   .arrow-down {
	border-bottom: 82.5px solid #F3F3F3;
	border-left: 7.5px solid transparent;
	border-right: 7.5px solid transparent;
  }
  
  .north {
	  left: 78px;
	  top: 10px;
	  font-size: 16px;
  }
  
  .south {
	  font-size: 16px;
	  left: 78px;
	  top: 140px;
  }
  
  .east {
	  font-size: 16px;
	  top: 72.5px;
	  left: 145px;
  }
  
  .west {
	  font-size: 16px;
	  left: 10px;
	  top: 72.5px;
  }
}

@media (max-width: 600px) {
  #compass {
    width: 200px;
	height: 200px;
	text-align: center;
  }
  
  .compass-inner {
	  width: 170px;
	  height: 170px;
	  left: 13px;
	  top: 13px;
  }
  
  .main-arrow {
	width: 30px;
	left: 78px;
	width: 15px;
	padding-top: 3px;
  }
  
  .arrow-up {
	border-bottom: 82.5px solid #EF5052;
	border-left: 7.5px solid transparent;
	border-right: 7.5px solid transparent;
  }
  
   .arrow-down {
	border-bottom: 82.5px solid #F3F3F3;
	border-left: 7.5px solid transparent;
	border-right: 7.5px solid transparent;
  }
  
  .north {
	  left: 78px;
	  top: 10px;
	  font-size: 16px;
  }
  
  .south {
	  font-size: 16px;
	  left: 78px;
	  top: 140px;
  }
  
  .east {
	  font-size: 16px;
	  top: 72.5px;
	  left: 145px;
  }
  
  .west {
	  font-size: 16px;
	  left: 10px;
	  top: 72.5px;
  }
}

@media (max-width: 600px) {
  #compass {
    width: 200px;
	height: 200px;
	text-align: center;
  }
  
  .compass-inner {
	  width: 170px;
	  height: 170px;
	  left: 13px;
	  top: 13px;
  }
  
  .main-arrow {
	width: 30px;
	left: 78px;
	width: 15px;
	padding-top: 3px;
  }
  
  .arrow-up {
	border-bottom: 82.5px solid #EF5052;
	border-left: 7.5px solid transparent;
	border-right: 7.5px solid transparent;
  }
  
   .arrow-down {
	border-bottom: 82.5px solid #F3F3F3;
	border-left: 7.5px solid transparent;
	border-right: 7.5px solid transparent;
  }
  
  .north {
	  left: 78px;
	  top: 10px;
	  font-size: 16px;
  }
  
  .south {
	  font-size: 16px;
	  left: 78px;
	  top: 140px;
  }
  
  .east {
	  font-size: 16px;
	  top: 72.5px;
	  left: 145px;
  }
  
  .west {
	  font-size: 16px;
	  left: 10px;
	  top: 72.5px;
  }
}
