/*
- fonts
- html body links and kbz's generic classes
- boostrap
- container
- sections
	- banner
	- about
	- footer

amarillo:
#fcea10
rgba(255,255,102,1)

*/



/* fonts */
@import url('https://fonts.googleapis.com/css?family=Roboto:400,400i,500,500i,700,700i');
@import url('https://fonts.googleapis.com/css2?family=Cabin:ital,wght@0,400;0,500;0,700;1,400;1,500;1,700&family=Roboto+Condensed:ital,wght@0,300;0,400;0,700;1,300;1,400;1,700&display=swap');

/* html body links and kbz's generic classes */
a {
    outline: none;
    box-shadow: none!important;
}
a:hover,
a:focus {
    text-decoration: underline;
    outline: none;
    box-shadow: none!important;
}
.btn-primary:focus {
    background-color: transparent;
    border: none;
    box-shadow: none;
}

html {
	background-color: #000;
    scroll-behavior: smooth;
}
body {
    font-family: 'Cabin', 'Hevetica', 'Arial', sans-serif;
    font-size: 16px;
    line-height: 1.25;
    font-weight: 400;
    color: #666666;
    background-color: #000;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
h1 {

}
h2 {
    font-size: 1.5rem;
    font-family: 'Roboto Condensed', 'Hevetica', 'Arial', sans-serif;
    font-weight: bold;
    text-transform: uppercase;
}
@media (min-width: 1200px) {
  h2 {
    font-size: 1.5rem;
    font-weight: bold;
  }
}
.no-padding {
	padding: 0 !important;
}
i {
	font-size: 2em;
}
ul {
	display: block;
	list-style: none;
	margin-block-start: 0em;
	margin-block-end: 0em;
	margin-inline-start: 0px;
	margin-inline-end: 0px;
	padding-inline-start: 0px;
}
/* end kbz */



/* boostrap */
/* nav */

/* end nav */
/* end boostrap */



/* hamburg-menu */
#hamburg-menu {
	top: 15px;
	right: 15px;
	width: 40px;
	height: 39px;
	position: fixed;
	-webkit-transform: rotate(0deg);
	-moz-transform: rotate(0deg);
	-o-transform: rotate(0deg);
	transform: rotate(0deg);
	-webkit-transition: .5s ease-in-out;
	-moz-transition: .5s ease-in-out;
	-o-transition: .5s ease-in-out;
	transition: .5s ease-in-out;
	cursor: pointer;
	/*background-color: #000;*/
	z-index: 6667;
}
@media (max-width: 500px) {
	#hamburg-menu {
		top: 15px;
		right: 15px;
	}
}
#hamburg-menu span {
  display: block;
  position: absolute;
  height: 5px;
  width: calc( 100% - 12px);
  left: 6px;
  background: #fcea10;
  opacity: 1;
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
  -webkit-transition: .25s ease-in-out;
  -moz-transition: .25s ease-in-out;
  -o-transition: .25s ease-in-out;
  transition: .25s ease-in-out;
}
#hamburg-menu:hover span,
#hamburg-menu:focus span {
  background: #eee;
}
#hamburg-menu span:nth-child(1) {
  top: calc(0px + 6px);
}
#hamburg-menu span:nth-child(2),
#hamburg-menu span:nth-child(3) {
  top: calc(11px + 6px);
}
#hamburg-menu span:nth-child(4) {
  top: calc(22px + 6px);
}
#hamburg-menu.open span:nth-child(1) {
  top: calc(12px + 6px);
  width: 0%;
  left: 50%;
}
#hamburg-menu.open span:nth-child(2) {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
#hamburg-menu.open span:nth-child(3) {
  -webkit-transform: rotate(-45deg);
  -moz-transform: rotate(-45deg);
  -o-transform: rotate(-45deg);
  transform: rotate(-45deg);
}
#hamburg-menu.open span:nth-child(4) {
  top: calc(12px + 6px);
  width: 0%;
  left: 50%;
}
.logo-wrapper {
	top: 70px;
	/*right: 0px;*/
	right: 15px;
	/*width: 70px;*/
	width: 35px;
	position: fixed;
	z-index: 6667;
}
.logo-wrapper #logoLeed {
	width: 35px;
	height: auto;
	position: fixed;
	z-index: 6667;
}
.net-socials-wrapper {
	bottom: 15px;
	right: 19px;
	z-index: 6667;
	position: fixed;
}
.net-socials-wrapper ul li a i {
	font-size: 32px;
	color: #eee;
}
.net-socials-wrapper ul li a:hover i {
	color: #fcea10;
}

/* menu */
/* kbz: stop scroll html with open modal */
body.menu-open {
	overflow: hidden;
}
body.menu-open {
	left: 320px;

	-webkit-transition: all 333ms ease-out;
	-moz-transition: all 333ms ease-out;
	-o-transition: all 333ms ease-out;
	transition: all 333ms ease-out;
}
.menu-right {
  position: fixed;
  top: 0;
    /*right: calc(-100% + 70px);*/
  right: -100%;
  z-index: 6666;
  width: 100%;
  height: 100%;
  padding: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-left: 1px dotted #666;
  background-color: #000000;

  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;

  -webkit-transition: all 333ms ease-out;
  -moz-transition: all 333ms ease-out;
  -o-transition: all 333ms ease-out;
  transition: all 333ms ease-out;
}
.menu-right.menu-open {
  right: -20%;

  -webkit-transition: all 333ms ease-out;
  -moz-transition: all 333ms ease-out;
  -o-transition: all 333ms ease-out;
  transition: all 333ms ease-out;
}
@media (min-width: 992px) {
  .menu-right {
    width: 30%;
  }
  .menu-right.menu-open {
    right: 0;

    -webkit-transition: all 333ms ease-out;
    -moz-transition: all 333ms ease-out;
    -o-transition: all 333ms ease-out;
    transition: all 333ms ease-out;
  }
}
.menu-right-content {
    /*border: 1px solid orange;*/
    width: calc(80% - 30px);
    min-height: 100vh;
    margin-bottom: 60px;
    margin-top: 10px;
    margin-left: 30px;
    overflow: scroll;
    padding-right: 60px;
}
@media (min-width: 992px) {
    .menu-right-content {
        width: calc(100% - 15px);
        margin-left: 15px;
    }
}
@media(max-width: 575px) {
    .menu-right-content {
        width: calc(80% - 15px);
        margin-top: 30px;
        margin-left: 15px;
    }
}
.menu-right ul.menu-bots {
	margin: 0;
}
.menu-right ul.menu-bots li {
	text-align: center;
    display: block;
    width: 100%;
    margin-right: 6px;
    margin-bottom: 6px;
}
.menu-right ul.menu-bots li a {
  display: block;
  width: 100%;
  text-decoration: none;
  display: inline-block;
}
.menu-right ul.menu-bots li a:hover {
  cursor: pointer;
}
.menu-right ul.menu-bots div.separator {
	display: block;
	height: 10px;
	width: 18%;
	background-color: #fff200;
	padding: 0;
	margin: 20px auto;
}
.menu-right ul.menu-bots li span {
	display: block;
	color: #fff200;
	text-transform: uppercase;
	font-size: 24px;
}
.menu-right ul.menu-bots li a h2 {
  color: #000;
  font-size: 16px;
  line-height: 30px;
  text-align: left;
  background-color: rgba(255,255,102,.5);
  border: 1px solid #fff200;
  padding: 2px 8px;
  margin: 0;

  -webkit-transition: all 333ms ease-out;
  -moz-transition: all 333ms ease-out;
  -o-transition: all 333ms ease-out;
  transition: all 333ms ease-out;
}
.menu-right ul.menu-bots li a.deriva-visited h2 {
  color: #fff200;
  background-color: rgba(255,255,102,0);
}
@media (min-width: 600px) {
    .menu-right ul.menu-bots li a h2 {
        font-size: 12px;
        line-height: 18px;
        text-align: left;
	}
}
.menu-right ul.menu-bots li a.content h2 {
	color: #eee;
}
.menu-right ul.menu-bots li a:hover {
	text-decoration: none;
}
.menu-right ul.menu-bots li a:hover h2,
.menu-right ul.menu-bots li a:focus h2 {
	color: #000;
	background-color: #fff200;

	-webkit-transition: all 333ms ease-out;
	-moz-transition: all 333ms ease-out;
	-o-transition: all 333ms ease-out;
	transition: all 333ms ease-out;
}
@media (max-width: 575px) {
	.ºight ul.menu-bots li a h2 {
		font-size: 74px;
		line-height: 74px;
	}
	.menu-right ul.menu-bots div.separator {
		width: 314px;
	}
}
.menu-right-bg-click-close {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: transparent;
    border: none;
    z-index: 6665;
    display: none;
}
body.menu-open .menu-right-bg-click-close {
  display: block;
  /*display: none;*/
}
.menu-right-content {
    padding-bottom: 60px;
}
.menu-right-content h2 {
    color: #fcea10;
}
.menu-right-content p {
    color: #fff;
}
.menu-right-content a {
    /*color: #fff;*/
    color: #fcea10;
    text-decoration: underline;
}
.menu-right-content a:hover,
.menu-right-content a:hover {
    color: #fcea10;
    text-decoration: none;
}
/* accordion */
.menu-right-content .leed-accordion .accordion-button,
.menu-right-content .leed-accordion .accordion-button:not(.collapsed) {
    color: #fcea10;
    font-family: 'Roboto Condensed', 'Hevetica', 'Arial', sans-serif;
    font-size: 1.5rem;
    font-weight: bold;
    text-transform: uppercase;
    border-bottom: 1px solid #666;
    padding-top: 10px;
    margin-top: 0;
    /*margin-bottom: 15px;*/
}
.menu-right-content .accordion-derivas-list .accordion-button,
.menu-right-content .accordion-derivas-list .accordion-button:not(.collapsed) {
    color: #fff;
    font-weight: normal;
    font-size: initial;
    border-bottom: 1px solid #666;
}
.menu-right-content .accordion-item h2 {
    margin: 0;
}
.menu-right-content .credits {
    margin-top: 60px;
}
.menu-right-content .credits p {
    color: #666;
}
.menu-right-content .credits p span,
.menu-right-content .credits p span a {
    color: #666;
}
.menu-right-content .credits p span a:hover,
.menu-right-content .credits p span a:focus {
    color: #fff;
    text-decoration: none;
}
/* end menu right*/


/* form */
::placeholder { /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #000!important;
  opacity: 1!important; /* Firefox */
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
  color: #000!important;
  opacity: 1!important;
}
::-ms-input-placeholder { /* Microsoft Edge */
  color: #000!important;
  opacity: 1!important;
}
form {
    margin: 45px 0;
}
.form-control {
    width: 100%;
    color: #000;
    padding: 6px 12px;
    margin-bottom: 30px;
    border: 0;
    border-radius: 0;
    border-bottom: 1px solid #000;
    border-color: #000;
    background-color: rgba(255,255,102,.75);
    outline: none;
    box-shadow: none;
}
.form-control:hover,
.form-control:focus {
    color: #000;
    background-color: rgba(255,255,102,1);
    border-color: #000;
    outline: none;
    box-shadow: none;
}
textarea.form-control {
    /*resize: none;*/
    min-height: 120px!important;
    line-height: 1.562vw!important;
    height: calc(1.562vw + 10px)!important;
}
form .btn {
    display: inline-block;
    color: #fff;
    padding: 3px 12px;
    border: 1px solid #fcea10;
    border-radius: 0;
    text-decoration: none;
    background-color: transparent;
    outline: none;
    box-shadow: none;

}
form .btn:hover,
form .btn:focus {
    color: #000;
    padding: 3px 12px;
    background-color: #fcea10;
    border: 1px solid #fcea10;
    /*text-decoration: line-through;*/
    text-decoration: none;
    outline: none!important;
    box-shadow: none!important;
}
form .required-error {
    border-bottom: 1px solid red;
    color: red;
}
form .form-results {
    padding-top: 30px;
}
form .alert-success {
    color: #fff;
    background-color: transparent;
    border-color: transparent;
}
/* end form */

/* animated */
.animated-delay-333 {
	-webkit-animation-delay: .333s;
	animation-delay: .333s;
}
.animated-delay-500 {
	-webkit-animation-delay: .5s;
	animation-delay: .5s;
}
.animated-delay-666 {
	-webkit-animation-delay: .666s;
	animation-delay: .666s;
}
.animated-delay-999 {
	-webkit-animation-delay: .999s;
	animation-delay: .999s;
}
.animated-delay-1000 {
	-webkit-animation-delay: 1s;
	animation-delay: 1s;
}
.animated-delay-1332 {
	-webkit-animation-delay: 1.332s;
	animation-delay: 1.332s;
}
/* end animated */



/* container */
body > .container {
	padding-top: 30px;
	padding-bottom: 30px;
}
.bi {
	fill: orange!important;
}
.kbz-anim {
	-webkit-transition: all 333ms linear;
	-moz-transition: all 333ms linear;
	-o-transition: all 333ms linear;
	transition: all 333ms linear;
}
.btn-primary {
	font-size: 0.75rem;
	border: 0;
	background-color: #000;
	text-transform: uppercase;
}
.btn-primary:hover,
.btn-primary:focus {
	color: yellow;
	border: 0;
	text-decoration: none;
	background-color: #000;
}
/* alert */
.btn-test,
.btn-test2,
.btn-help {
    font-family: monospace;
    display: block;
    position: absolute;
    left: 12px;
    top: 80px;

    width: 30px;
    height: 32px;
    color: white;
    font-size: 20px;;
    line-height: 30px;
    font-weight: bolder;
    border: 1px dotted #666;
    background-color: black;
    z-index: 6664;
    padding: 0;
}
.btn-test {
    left: 12px;
    top: 120px;
}
.btn-test2 {
    left: 12px;
    top: 159px;
}
.btn-test:hover,
.btn-test:focus,
.btn-test2:hover,
.btn-test2:focus,
.btn-help:hover,
.btn-help:focus {
    color: #fcea10;
}
.alert {
  display: none;
  color: #fff;
  position: absolute;
  top: 20vh;
  left: 10px;
  right: 10px;
  width: 75%;
  max-width: 500px;
  z-index: 6663;
  background-color: #e1e1e1;
  border: 0;
  padding: 60px 30px;
  padding-bottom: 45px;
  margin: 0 auto;
  height: fit-content;
  background-color: rgba(0,0,0,.75);
  border: 1px solid #666;
}
.alert.show {
  display: initial;
}
.alert h2 {
  color: #fcea10;
  font-family: 'Roboto Condensed', 'Hevetica', 'Arial', sans-serif;
  font-size: 1.4em;
  font-weight: bold;
  margin-bottom: .25em;
  display: block;
  margin-top: 0;
}

.back-alert {
    display: initial;
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 6662;
    background-color: rgba(255,255,102,.25);
    background-color: transparent;
}
.back-alert.hide {
    display: none;
}
/* end container */








/* modal */
.modal {
    z-index: 9999;
/*    background-color: rgba(255,255,255,0.5)!important;
    background-color: rgba(255,255,102,.75)!important;
    background-color: rgba(0,0,51,.5)!important;
*/    background-color: transparent;

}
.modal-content {
    background-color: #000;
    border: 1px dotted #666;
    border: 1px solid #333;
    border: none;
    border-radius: 0.3rem;
    outline: 0;
}
.modal-header {
    border-bottom: 1px dotted #fcea10;
    border-bottom: 2px solid #fcea10;
}
.modal-title {
    color: #fcea10;
    color: #eee;
}
.loader-img,
.modal-media-img {
    width: 100%;
    height: auto;
}
.loader-img {

}
.modal-info {
    color: #000;
    color: #eee;
    padding: 1rem;
    padding-top: 2rem;
    font-size: 16px;
    line-height: 24px;
    background-color: #fff;
    background-color: transparent;
}
.modal-info p:last-child {
    margin-bottom: 0;
}
.modal-footer {
    border-top: 1px dotted #666;
    border-top: 1px solid #333;
}
.modal-backdrop {
    background-color: rgba(255,255,255,.25);
    background-color: transparent;
    background-color: rgba(255,255,102,.25);
}
.modal-backdrop.show {
    opacity: 0;
    opacity: 1;
}
.btn-close {
    background: transparent url('/images/close.svg') center/1em auto no-repeat!important;
    opacity: 1;
    outline: 0;
    box-shadow: none;
}
.btn-close:hover,
.btn-close:focus {
    outline: 0;
    box-shadow: none;
}
#myModalBotVideos {
  display: none;
}
/* end modal */



/* slick */
.slick-wrapper {
  /*opacity: 0;*/
  position: absolute;
}
.slick-wrapper.open {
  /*opacity: 1;*/
}
.slick-img {
  width: 100%;
  height: auto;
}
.slick-dots li {
    margin: 0 2px;
}
.slick-dots li button:before {
    font-family: 'slick';
    font-size: 12px;
    line-height: 20px;
    position: absolute;
    top: 0;
    left: 0;
    width: 20px;
    height: 20px;
    content: '•';
    text-align: center;
    opacity: 1;
    color: #fff;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
    opacity: 1;
    color: #fcea10;
}
.slick-prev {
    left: 10px;
    z-index: 1;
}
.slick-next {
    right: 10px;
    z-index: 1;
}
/* end slick */

.toastify {
  padding: 6px 12px;
  color: #000!important;
  background: #fcea10!important;
}
.toastify-left {
    left: 50px;
}

/* accordion */
.accordion-item,
.accordion-button {
    background-color: transparent;
    border: 0;
}
.accordion-button {
    color: #000;
    padding: 15px 0 5px 0;
    font-size: 1rem;
    text-align: left;
    background-color: transparent;
    border: 0;
    border-radius: 0;
    border-bottom: 1px solid #666;
    outline: 0;
    box-shadow: none;
}
.accordion-button:not(.collapsed) {
    color: #000;
    background-color: transparent;
    outline: 0;
    box-shadow: none;
    border-color: #666;
}
.accordion-button:focus {
    outline: 0;
    box-shadow: none;
    border-color: #666;
}
.accordion-body {
    padding: 1rem 0;
}
.accordion-button:not(.collapsed)::after {
    background-image: url('/images/arrow.svg');
    transform: rotate(-180deg);
}
.accordion-button::after {
    background-image: url('/images/arrow.svg');
}
/* end accordion */


/* video */
.video-responsive {
  overflow: hidden;
  padding-bottom: 56.25%;
  /* padding-bottom: 58.25%; */
  /* vimeo */
  position: relative;
  height: 0;
}
.video-responsive iframe,
.video-responsive object,
.video-responsive embed {
  left: 0;
  top: 0;
  height: 100%;
  width: 100%;
  position: absolute;
  /*z-index: 0;*/
}
iframe {
  border: 0;
}
/* end videos */


/* leaflet */
.leaflet-control-attribution {
	display: none;
}
.leaflet-touch .leaflet-bar a {
    width: 30px;
    height: 30px;
    line-height: 30px;
    background-color: black;
    color: white;
    border: 1px dotted #666;
}
.leaflet-touch .leaflet-bar a span {
	color: #eee;
	height: 30px;
	display: block;
	line-height: 24px;
}
.leaflet-touch .leaflet-bar a:hover,
.leaflet-touch .leaflet-bar a:focus {
	text-decoration: none;
}
.leaflet-touch .leaflet-bar a:hover span,
.leaflet-touch .leaflet-bar a:focus span {
	color: #fcea10;
}
/* end leaflet */

/* Extra small devices (portrait phones, less than 576px)
No media query for 'xs' since this is the default in Bootstrap */

/* Small devices (landscape phones, 576px and up) */
@media (min-width: 576px) {

}

/* Medium devices (tablets, 768px and up) */
@media (min-width: 768px) {

}

/* Large devices (desktops, 992px and up) */
@media (min-width: 992px) {

}

/* Extra large devices (large desktops, 1200px and up) */
@media (min-width: 1200px) {

}

/* Extra large devices (large desktops)
No media query since the extra-large breakpoint has no upper bound on its width */
/* animation */












/*body, html {
	height: 100%;
	width: 100%;
}

body {
	background-color: black;
}
*/
#kbz {
	background-color: #333;
	height: 100%;
	width: 100%;
	overflow:hidden;
	position:relative;
	/*border: 1px solid red;*/
	min-height: 100vh;
}

.box {
	/*background-image: url("http://www.vgmaps.com/NewsArchives/April2005/LegendOfZelda-Link%27sAwakeningAdvance-Koholint.png");*/
	background-image: url("/images/mvd.jpg");
	background-size: 100%;
	background-position: center;
/*
	width: 2560px;
	height: 2048px;
*/
	width: 5000px;
	height: 2500px;
	position: absolute;
}
.wrapper-map,
.wrapper-map #map {
	width: 100%;
	height: 100vh;
	min-width: 100%;
	min-height: 100vh;
  background-color: #000;
  /*border: 1px solid #0F0;*/
}

footer {
	background-color: #000;
}