.footer {
	padding-top: 10px;
	padding-bottom: 10px;
	background-color: #282828;
	color: #ffffff;
	border-top-color: #282828;
	border-top-style: solid;
	border-top-width: 2px;
	padding-left: 60px;
	padding-right: 60px;
	display: flex;
	flex-wrap: wrap;
	min-height: 170px;
	bottom: 0px;
	position: relative;
	overflow: hidden;
	z-index: 999;
}

.footer-links {
	display: flex;
	flex-direction: row;
	flex-wrap: wrap;
	align-items: center;
	white-space: nowrap;
	width: 70%;
	@include media("<=650px") {
		width: 100%;
	}
}

.footer-link {
	color: white;
	padding-right: 20px;
	margin-bottom: 8px;
}

.footer-apk {
	align-items: center;
}

.footer-app-store {
	padding-top: 5px;
	width: 100%;
}

.footer-link:hover {
	color: #F9AE00;
	text-decoration: none;
}

.footer-text {
	color: white;
	font-size: 10pt;
	min-width: 290px;
}

.footer-logo .footer-text {
	opacity: 0.3;
	padding-bottom: 8px;
}

.footer-logo {
	width: 30%;
	padding-left: 60px;
	padding-top: 25px;
	overflow: visible;
	margin-bottom: 8px;

	@include media("<=650px") {
		width: 100%;
		padding-left: 0px;
	}
}

.footer-copyright {
	width: 100%;
	white-space: normal;
	opacity: 0.3;
	margin-top: 5px;
}

.footer-link.footer-apk {
	opacity: 0.3;
}

.footer-links img {
	width: 20px;
}

.footer-app-store img {
	width: auto;
}

.router-link-active {
	color: #ffffff;
}

.router-link-exact-active {
	color: #ffffff;
}








/* The switch - the box around the slider */
.switch {
  position: relative;
  display: inline-block;
  width: 60px;
  height: 34px;
}

/* Hide default HTML checkbox */
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* The slider */
.slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  -webkit-transition: .4s;
  transition: .4s;
}

.slider:before {
  position: absolute;
  content: "";
  height: 26px;
  width: 26px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  -webkit-transition: .4s;
  transition: .4s;
}

input:checked + .slider {
  background-color: #2196F3;
}

input:focus + .slider {
  box-shadow: 0 0 1px #2196F3;
}

input:checked + .slider:before {
  -webkit-transform: translateX(26px);
  -ms-transform: translateX(26px);
  transform: translateX(26px);
}

/* Rounded sliders */
.slider.round {
  border-radius: 34px;
}

.slider.round:before {
  border-radius: 50%;
}





/* MOBILE */


@media only screen and (max-width: 600px) {

.nav-link{
	margin-right: 10px;
}

#cookieBox{
	width: 350px !important;
	margin-left: -175px !important;
	overflow: scroll;
}

#insideCookieBox{
	margin: 20px !important;
}

}