@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800');
@import url('https://fonts.googleapis.com/css?family=Roboto:300,400,500,700');

body {
	width: 100%;
	height: 100%;
	background-color: #e9edf0;
	margin: 0;
	padding: 0;
	cursor: default;
	overflow: hidden;
	transition: all 0.2s ease;
	
	-webkit-touch-callout: none; /* iOS Safari */
    -webkit-user-select: none; /* Safari */
    -khtml-user-select: none; /* Konqueror HTML */
    -moz-user-select: none; /* Firefox */
    -ms-user-select: none; /* Internet Explorer/Edge */
    user-select: none; /* Non-prefixed version, currently supported by Chrome and Opera */
}
/* Preloader */
#preloader {
    position: absolute;
	background-color: #e9edf0;
	top: 0;
    left: 0;
    width: 100%;
    height: 100%;
	z-index: 100;
	transition: all 0.5s ease;
	visibility: visible;
}
#loader {
    display: block;
    position: relative;
    left: 50%;
    top: 50%;
    width: 100px;
    height: 100px;
    margin: -50px 0 0 -50px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: #5c6685;
    -webkit-animation: spin 2s linear infinite;
    animation: spin 2s linear infinite;
}
#loader:before {
    content: "";
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: rgba(124,133,141,1);
    -webkit-animation: spin 3s linear infinite;
    animation: spin 3s linear infinite;
}
#loader:after {
    content: "";
    position: absolute;
    top: 15px;
    left: 15px;
    right: 15px;
    bottom: 15px;
    border-radius: 50%;
    border: 3px solid transparent;
    border-top-color: rgba(178,199,232,1);
    -webkit-animation: spin 1.5s linear infinite;
    animation: spin 1.5s linear infinite;
}
@-webkit-keyframes spin {
    0%   {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}
@keyframes spin {
    0%   {
        -webkit-transform: rotate(0deg);
        -ms-transform: rotate(0deg);
        transform: rotate(0deg);
    }
    100% {
        -webkit-transform: rotate(360deg);
        -ms-transform: rotate(360deg);
        transform: rotate(360deg);
    }
}

/* Preheader */
.pre-header {
	margin-bottom: 0;
    height: 50px;
    padding-left: 15%;
    padding-right: 15%;
    width: 70%;
    background-color: #ffffff;
    border-bottom: 1px solid rgba(0,0,0,0.2);
    box-shadow: 0px 0px 7px rgba(0,0,0,0.2);
	position: relative;
    z-index: 50;
	transition: width 0.2s linear;
}

/* Pre-header left section */
.pre-header > .logo-section {
	float: left;
    height: 20px;
    width: 130px;
}
.pre-header > .logo-section img {
	display: block;
    padding-top: 8px;
	float: left;
}

/* Pre-header right section */
.pre-header > .filter-section {
	display: block;
	float: right;
    padding-top: 10px;
    height: 20px;
    width: calc(100% - 130px);
}
.pre-header > .filter-section > span {
	float: right;
    padding: 6px;
    opacity: 0.9;
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    color: rgba(67,74,96,1);
    width: 80px;
    text-align: center;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 3px;
    transition: all 0.2s ease;
}
.pre-header > .filter-section > span:hover {
	color: rgba(67,74,96,0.7);
}
/*
.pre-header > .filter-section > #design {
	float: right;
    padding: 6px;
    opacity: 0.9;
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    color: rgba(67,74,96,1);
    width: 80px;
    text-align: center;
    cursor: pointer;
    border: 1px solid transparent;
    border-radius: 3px;
    transition: all 0.2s ease;
}
.pre-header > .filter-section > #design:hover {
	color: #e9edf0;
    background-color: rgba(124,133,141,1);
    border: 1px solid rgba(178,199,232,0.1);
}
*/
.pre-header > .filter-section > #productFilterMobile {
	float: right;
    border: 0;
    opacity: 0.9;
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    color: rgba(67,74,96,1);
    margin-top: 6px;
	box-shadow: none;
	background-color: transparent;
	outline: none;
	display: none;
}
.pre-header > .filter-section > #productFilterMobile:hover,
.pre-header > .filter-section > #productFilterMobile:active {
	opacity: 0.7;
	border: 0;
	box-shadow: none;
	outline: 0px;
}
.pre-header > .filter-section > #productFilterMobile > option {
	direction: ltr;
	background-color: #ffffff;
}
.pre-header > .filter-section > .dropdown {
	position: relative;
    display: inline-block;
	float: right;
}
.pre-header > .filter-section > .dropdown > .dropbtn {
	background-color: transparent;
    padding: 6px;
    opacity: 0.9;
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    color: rgba(67,74,96,1);
    border: 1px solid transparent;
    border-radius: 3px;
    transition: all 0.2s ease;
    outline: none;
    cursor: pointer;
}
.pre-header > .filter-section > .dropdown > .dropbtn > p {
	float: right;
    margin: 0;
    padding-left: 7px;
    font-size: 14px;
    line-height: 17px;
}
.pre-header > .filter-section > .dropdown > .dropdown-content {
	display: none;
    position: absolute;
    top: 40px;
    padding: 6px 0px;
    right: 0;
    background-color: #ffffff;
    min-width: 125px;
    border: 1px solid rgba(0,0,0,0.2);
    box-shadow: 0px 0px 7px rgba(0,0,0,0.2);
    z-index: 60;
}
.pre-header > .filter-section > .dropdown > .dropdown-content > a {
	text-decoration: none;
    display: block;
    background-color: transparent;
    padding: 6px 25px;
    opacity: 0.9;
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    text-align: right;
    color: rgba(67,74,96,1);
}
.pre-header > .filter-section > .dropdown > .dropdown-content > a:hover {
	opacity: 0.7;
	cursor: pointer;
}

.content {
	position: absolute;
    display: block;
    padding-left: 15%;
    padding-right: 15%;
    width: 70%;
    min-height: calc(100% - 51px);
    background-color: transparent;
    border: 0;
    box-shadow: none;
    overflow: hidden;
    z-index: 10;
	transition: width 0.2s linear;
}

/* version navigation start */
.content > .version-nav {
	position: absolute;
    display: block;
    margin-top: 30px;
    margin-bottom: 30px;
    width: 140px;
    height: calc(100% - 60px);
    float: left;
    background-color: rgba(124,133,141,1);
    z-index: 20;
}
.content > .version-nav ul {
    padding: 23px 11px 23px 19px;
    margin: 0;
    list-style-type: none;
    position: relative;
	overflow-y: auto;
    height: calc(100% - 46px);
	direction: rtl;
}
.content > .version-nav li a {
    display: block;
    color: #ffffff;
    font-family: 'Open Sans', sans-serif;
    font-size: 1.3em;
	font-weight: 600;
    letter-spacing: 1px;
    padding: 12px 10px;
    text-align: left;
    text-decoration: none;
    cursor: pointer;
	direction: ltr;
    opacity: 0.5;
    transition: all 0.1s linear;
}
.content > .version-nav li a p {
	margin: 0;
	margin-top: -1px;
	font-size: 11px;
	font-weight: 400;
	font-family: 'Open Sans', sans-serif;
}
.content > .version-nav li a:hover {
    opacity: 0.8;
}
.content > .version-nav li .active {
    opacity: 1;
}
.content > .version-nav li .active:hover {
    opacity: 1;
}
/* version navigation end */

.version-content {
	position: absolute;
    display: block;
    width: calc(100% - 171px - 30%);
    height: 100%;
    float: left;
    padding-left: 171px;
    padding-right: 15%;
    overflow-x: hidden;
    overflow-y: visible;
    transition: width 0.2s linear;
}
.version-content > div {
	background-color: #ffffff;
	margin-top: 0px;
    margin-bottom: 40px;
}
.version-content > div:first-child {
	margin-top: 30px;
}
.version-content > div:last-child {
	margin-bottom: 30px;
}
.release-header {
	height: 42px;
    padding: 30px 40px;
	border-bottom: 1px solid #e0e2e4;
}
h1 {
	width: 50%;
    float: left;
    text-align: left;
    font-family: 'Open Sans', sans-serif;
    font-weight: 700;
    letter-spacing: 1px;
    font-size: 30px;
    margin: 0;
    color: #434a60;
}
h2 {
	width: 50%;
    float: right;
    text-align: right;
    font-weight: 600;
    font-family: 'Open Sans', sans-serif;
    letter-spacing: 1px;
    font-size: 1.17em;
	padding-top: 7px;
    margin: 0;
    color: #434a60;
}
.product {
	display: flex;
}
.features {
	width: 100%;
	float: right;
	display: block;
}
.feature {
	display: flex;
    padding: 30px 45px;
    border-bottom: 1px solid #e0e2e4;
}
.feature .text .feature-id {
	text-align: right;
    font-size: 11px;
    font-weight: 400;
    opacity: 0.6;
	width: 100%;
	padding-top: 5px;
    padding-right: 2px;
}
.image {
	width: 27%;
    float: left;
    display: table-cell;
    overflow: hidden;
}
.image img {
	max-width: 100%;
    max-height: 100%;
    margin: 0;
	margin-top: 5px;
    border: 1px solid rgba(0,0,0,0.15);
    cursor: pointer;
    transition: all 0.2s ease;
}
.image img:hover {
	opacity: 0.8;
}
.text .mobile-image {
	display: none;
	max-width: calc(100% - 40px);
    max-height: calc(100% - 40px);
    margin: 20px;
    border: 1px solid rgba(0,0,0,0.15);
    cursor: pointer;
    transition: all 0.2s ease;
}
.text .mobile-image:hover {
	opacity: 0.8;
}
.text {
	width: calc(73% - 40px);
    float: right;
    display: table-cell;
    overflow: hidden;
    padding-left: 40px;
}
.text h3 {
	font-family: 'Open Sans', sans-serif;
    text-align: left;
    letter-spacing: 0px;
    font-weight: 600;
    color: #434a60;
	float: left;
	max-width: calc(100% - 110px);
	margin-top: 0;
	width: 100%;
}
.text > .product-box,
.text > .mobile-product-box {
	margin-top: 7px;
	padding: 5px;
    float: right;
    height: 12px;
	max-width: 100px;
}
.text > .product-box {
	margin-top: 3px;
	display: block;
}
.text > .mobile-product-box {
	display: none;
}
.text > .product-box > p,
.text > .mobile-product-box > p {
	line-height: 9px;
    padding: 0;
    padding-left: 5px;
    padding-right: 5px;
    margin: 0;
}
.text p {
	font-family: 'Open Sans', sans-serif;
    text-align: justify;
    color: #434a60;
    font-size: 14px;
    line-height: 20px;
    float: left;
    margin: 0;
}
.bg-color-shop {
	background-color: rgba(65,124,184,1); /* blue */
}
.bg-color-shop p {
	color: #ffffff;
}
.bg-color-production {
	background-color: rgba(53,131,58,1); /* green */
}
.bg-color-production p {
	color: #ffffff;
}
.bg-color-management {
	background-color: rgba(235,133,91,1); /* orange */
}
.bg-color-management p {
	color: #ffffff;
}
.bg-color-service {
	background-color: rgba(136,89,235,1); /* violet */
}
.bg-color-service p {
	color: #ffffff;
}
.bg-color-backend {
	background-color: rgba(125,125,125,1); /* gray */
}
.bg-color-backend p {
	color: #ffffff;
}
.bg-color-else {
	background-color: rgba(64,156,150,1); /* turquoise */
}
.bg-color-else p {
	color: #ffffff;
}

/*Image Popup*/
.popup {
	visibility: hidden;
	opacity: 0;
    position: fixed; /* Stay in place */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: hidden;
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.7); /* Black w/ opacity */
	z-index: 200;
	transition: opacity 0.3s ease;
	-webkit-transition: opacity 0.3s ease;
}
.popup-active {
	visibility: visible;
	opacity: 1;
	transition: opacity 0.3s ease;
	-webkit-transition: opacity 0.3s ease;
}
.popup-content {
    margin: auto;
    display: block;
    max-width: 60%;
    max-height: 80%;
    position: relative;
    top: 50%;
    transform: translateY(-50%);
}
.close {
    position: absolute;
    top: 15px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;
    font-weight: bold;
    transition: all 0.3s ease;
}
.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* Night mode active */
.night-mode-active {
	background-color: #434a60;
}
.night-mode-active > .pre-header {
	background-color: #495169;
}
.night-mode-active > .pre-header > .night-mode > span {
	color: rgba(178,199,232,0.6);
}
.night-mode-active > .content {
	background-color: #495169;
}
.night-mode-active > .content > .version-nav {
	background-color: #34394a;
}
.night-mode-active > .content > .version-nav li a {
	color: rgba(178,199,232,0.6);
}
.night-mode-active > .content > .version-content > div {
	background-color: #5c6685;
}
.night-mode-active > .content > .version-content > div > .release-header {
	border-bottom: 1px solid #495169;
}
.night-mode-active > .content > .version-content > div > .release-products .feature {
	border-bottom: 1px solid #495169;
}
.night-mode-active .text > .product-box > p,
.night-mode-active .text > .mobile-product-box > p {
	color: rgba(255,255,255,0.8);
}
.night-mode-active h1 {
	color: rgba(178,199,232,1);
}
.night-mode-active h2 {
	color: rgba(178,199,232,1);
}
.night-mode-active h3 {
	color: rgba(178,199,232,1);
}
.night-mode-active .text p {
	color: rgba(178,199,232,0.7);
}
.night-mode-active .pre-header > .filter-section > span {
	color: rgba(178,199,232,1);
}
.night-mode-active .pre-header > .filter-section > span:hover {
	color: rgba(184,206,240,1);
}
.night-mode-active .pre-header > .filter-section > #productFilterMobile {
	color: rgba(178,199,232,1);
}
.night-mode-active .pre-header > .filter-section > #productFilterMobile > option {
	background-color: #495169;
}
.night-mode-active .pre-header > .filter-section > .dropdown > .dropbtn {
	color: rgba(178,199,232,1);
}
.night-mode-active .pre-header > .filter-section > .dropdown > .dropbtn > p {
	color: rgba(178,199,232,1);
}
.night-mode-active .pre-header > .filter-section > .dropdown > .dropdown-content {
	background-color: #34394a;
}
.night-mode-active .pre-header > .filter-section > .dropdown > .dropdown-content > a {
	color: rgba(178,199,232,1);
}
.night-mode-active .feature .text .feature-id {
	color: #ffffff;
    opacity: 0.6;
}

/* Other classes */
.opacity-0 {
	opacity: 0;
	transition: all 0.5 ease;
}
.hide {
	display: none;
}
.show-dropdown {
	display: block !important;
}

@media only screen and (max-width: 1300px) {
	.pre-header {
		padding-left: 10%;
		padding-right: 10%;
		width: 80%;
	}
	.content {
		padding-left: 10%;
		padding-right: 10%;
		width: 80%;
	}
	.content > .version-content {
		width: calc(100% - 171px - 20%);
		padding-right: 10%;
	}
}

@media only screen and (max-width: 1024px){
    .pre-header {
		margin-bottom: 0;
		box-shadow: none;
		padding-left: 20px;
		padding-right: 20px;
		width: calc(100% - 40px);
	}
	.pre-header > .filter-section > #productFilterMobile {
		display: block;
	}
	.pre-header #language {
		display: none;
	}
	.pre-header #design {
		display: none;
	}
	.pre-header .dropdown {
		display: none !important;
	}
	.content {
		left: 0;
		padding: 0;
		transform: translate(0);
		width: 100%;
		height: calc(100% - 51px);
		box-shadow: none;
		border: 0;
	}
	.content > .version-nav {
		position: absolute;
		display: block;
		width: 100%;
		height: 55px;
		bottom: 0;
		margin: 0;
		background-color: #434a60;
		z-index: 20;
		border-top: 1px solid #3d4357;
		overflow-y: hidden;
		overflow-x: auto;
	}
	.content > .version-nav > ul {
		position: absolute;
		padding: 0px 10px 0px 10px;
		white-space: nowrap;
		overflow-y: visible;
		direction: ltr;
	}
	.content > .version-nav > ul > li {
		display: inline-block;
	}
	.content > .version-nav > ul > li a {
		text-align: center;
		font-size: 1.17em;
		font-weight: 400;
		padding: 6px 10px;
	}
	.content > .version-nav > ul > li a p {
		font-size: 11px;
		font-weight: 400;
	}
	
	/* START: Navigation scrollbar */
	.version-nav::-webkit-scrollbar {
		width: 7px;
		background-color: #eeeff3;
		border-radius: 16px;
	}
	.version-nav::-webkit-scrollbar-thumb {
		-webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0);
		background-color: #afb7c9;
		border-radius: 16px;
	}
	.version-nav::-webkit-scrollbar-track {
		-webkit-box-shadow: inset 0 0 10px rgba(0,0,0,0);
		background-color: #eeeff3;
		border-radius: 16px;
	}
	.night-mode-active .content .version-nav::-webkit-scrollbar {
		background-color: transparent;
	}
	.night-mode-active .content .version-nav::-webkit-scrollbar-thumb {
		background-color: rgba(178,199,232,0.6);
	}
	.night-mode-active .content .version-nav::-webkit-scrollbar-track {
		background-color: rgba(255,255,255,0.2);
	}
	/* END: Navigation scrollbar */
	.content > .version-content {
		position: absolute;
		background-color: #f3f5f8;
		display: block;
		width: calc(100% - 33px);
		height: calc(100% - 55px);
		padding-left: 20px;
		padding-right: 13px;
		overflow-x: hidden;
		overflow-y: auto;
	}
	.content > .version-content > div {
		background-color: transparent;
		margin-bottom: 0;
	}
	.content > .version-content > div:first-child {
		margin-top: 0;
	}
	.night-mode-active .content > .version-content {
		background-color: #495169;
	}
	.night-mode-active > .content > .version-content > div {
		background-color: #495169;
	}
	.night-mode-active .content > .version-content .feature {
		background-color: #5c6685;
	}
	.content > .version-content div .release-header {
		height: 70px;
		padding-top: 0;
		padding-bottom: 20px;
		padding-left: 20px;
		padding-right: 20px;
		border-bottom: 0;
	}
	.content > .version-content div:first-child .release-header {
		padding-top: 20px;
	}
	h1 {
		width: 100%;
		float: left;
		text-align: left;
		font-family: 'Open Sans', sans-serif;
		font-weight: 700;
		letter-spacing: 1px;
		font-size: 30px;
		margin: 0;
		color: #434a60;
	}
	h2 {
		width: 100%;
		float: left;
		text-align: left;
		font-weight: 600;
		font-family: 'Open Sans', sans-serif;
		letter-spacing: 1px;
		font-size: 1.17em;
		margin: 0;
		color: #434a60;
	}
	.features {
		width: 100%;
		display: block;
	}
	.feature {
		background-color: #ffffff;
		border: 1px solid rgba(0,0,0,0.15);
		padding: 20px;
		margin-bottom: 40px;
		box-shadow: 0px 0px 14px rgba(0,0,0,0.24);
	}
	.image {
		width: 100%;
		position: relative;
		display: none;
		overflow: hidden;
	}
	.image img {
		display: none;
	}
	.text {
		width: 100%;
		display: block;
		overflow: hidden;
		padding: 0;
	}
	.text p {
		margin-top: 15px;
	}
	.text .mobile-image {
		display: block;
		max-width: 100%;
		max-height: 100%;
		border: 1px solid rgba(0,0,0,0.15);
		cursor: pointer;
		margin: 0;
		transition: all 0.2s ease;
	}
	.text > .product-box {
		display: none;
	}
	.text > .mobile-product-box {
		display: block;
		float: left;
		margin: 0;
		margin-bottom: 8px;
		line-height: 13px;
	}
	.text > .mobile-product-box > p {
		line-height: 11px;
	}
	.text h3 {
		min-width: 100%;
	}
	.popup-content {
		max-width: calc(100% - 30px);
	}
}

/* Scroll bar for version-content: non-standard, only for chrome */
.version-content::-webkit-scrollbar {
    width: 7px;
    background-color: transparent;
    border-radius: 16px;
}
.version-content::-webkit-scrollbar-thumb {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0);
    background-color: #afb7c9;
    border-radius: 16px;
}
.version-content::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 10px rgba(0,0,0,0);
    background-color: transparent;
    border-radius: 16px;
}
.night-mode-active .content .version-content::-webkit-scrollbar {
	background-color: transparent;
}
.night-mode-active .content .version-content::-webkit-scrollbar-thumb {
	background-color: rgba(178,199,232,0.6);
}
.night-mode-active .content .version-content::-webkit-scrollbar-track {
	background-color: rgba(255,255,255,0.2);
}

/* Scroll bar for version-nav: non-standard, only for chrome */
.version-nav > ul::-webkit-scrollbar {
    width: 7px;
    background-color: transparent;
    border-radius: 16px;
}
.version-nav > ul::-webkit-scrollbar-thumb {
    -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,0);
    background-color: #afb7c9;
    border-radius: 16px;
}
.version-nav > ul::-webkit-scrollbar-track {
    -webkit-box-shadow: inset 0 0 10px rgba(0,0,0,0);
    background-color: transparent;
    border-radius: 16px;
}
.night-mode-active .content .version-nav > ul::-webkit-scrollbar {
	background-color: transparent;
}
.night-mode-active .content .version-nav > ul::-webkit-scrollbar-thumb {
	background-color: rgba(178,199,232,0.6);
}
.night-mode-active .content .version-nav > ul::-webkit-scrollbar-track {
	background-color: rgba(255,255,255,0.2);
}

/* Toggle switch */
.toggle {
    position: absolute;
    width: 58px;
    height: 22px;
    border: 1px solid rgba(124,133,141,1);
    border-radius: 20px;
    -webkit-transition: border-color .6s ease-out;
    transition: border-color .6s ease-out;
    box-sizing: border-box;
}
.toggle.toggle-on {
    border-color: rgba(187, 199, 232, .4);
    -webkit-transition: all .5s .15s ease-out;
    transition: all .5s .15s ease-out;
}
.language > .toggle-on {
	border: 1px solid rgba(124,133,141,1);
    -webkit-transition: border-color .6s ease-out;
    transition: border-color .6s ease-out;
}
.toggle-button{
    position: absolute;
    top: 2px;
    width: 17px;
    bottom: 2px;
    right: 37px;
    background-color: rgba(124,133,141,1);
    border-radius: 30px;
    cursor: pointer;
    -webkit-transition: all .3s .1s, width .1s, top .1s, bottom .1s;
    transition: all .3s .1s, width .1s, top .1s, bottom .1s;
}
.toggle-on .toggle-button{
    top: 2px;
    width: 52px;
    bottom: 2px;
    right: 2px;
    border-radius: 23px;
    background-color: #b2c7e8;
    -webkit-transition: all .2s .1s, right .1s;
    transition: all .2s .1s, right .1s;
}
.language > .toggle-on .toggle-button {
	position: absolute;
    top: 2px;
    width: 17px;
    bottom: 2px;
    right: 2px;
    background-color: rgba(124,133,141,1);
    border-radius: 30px;
    cursor: pointer;
    -webkit-transition: all .3s .1s, width .1s, top .1s, bottom .1s;
    transition: all .3s .1s, width .1s, top .1s, bottom .1s;
}
.toggle-text-on{
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    line-height: 21px;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    font-weight: 400;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    color: rgba(0,0,0,0);
}
.toggle-on .toggle-text-on{
    color: #3b6a7d;
    -webkit-transition: color .3s .15s ;
    transition: color .3s .15s ;
}
.language > .toggle-on .toggle-text-on {
	color: #434a60;
    text-align: left;
    left: 10px;
	-webkit-transition: color .3s .15s ;
    transition: color .3s .15s ;
}
.language > .toggle .toggle-text-on {
    text-align: left;
    left: 10px;
	-webkit-transition: color .3s .15s ;
    transition: color .3s .15s ;
}
.toggle-text-off{
    position: absolute;
    top: 0;
    bottom: 0;
    right: 10px;
    line-height: 21px;
    text-align: center;
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
    font-weight: 400;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    cursor: pointer;
    color: #434a60;
}
.language > .toggle .toggle-text-off {
	-webkit-transition: color .3s .15s;
    transition: color .3s .15s;
}
.toggle-on .toggle-text-off{
    color: rgba(0,0,0,0);
}
/* used for streak effect */
.glow-comp{
    position: absolute;
    opacity: 0;
    top: 10px;
    bottom: 10px;
    left: 10px;
    right: 10px;
    border-radius: 6px;
    background-color: rgba(75, 122, 141, .1);
    box-shadow: 0 0 12px rgba(75, 122, 141, .2);
    -webkit-transition: opacity 4.5s 1s;
    transition: opacity 4.5s 1s;
}
.toggle-on .glow-comp{
    opacity: 1;
    -webkit-transition: opacity 1s;
    transition: opacity 1s;
}