* {
	outline: none !important;
	box-sizing: border-box;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
}

:root {
	--ocadDark: rgb(0, 154, 153);
	--ocadDim: #5c9c9b;
	--ocadLight: rgb(240, 250, 240);
	--color1:#FF5722;
	--color2:hsla(14, 100%, 93%, 1);
}

body {
	background: url(/img/bg_topography.png) top center no-repeat;
	background-size: auto 300px;
	font-family: 'Montserrat', sans-serif;
	color: #506f6f;
	line-height: 1.5;
	font-weight: 400;
	margin: 0;
	overflow-y: scroll;
}

.clearfix {
	clear: both;
}

.blur {
	filter: blur(30px);
	-webkit-filter: blur(30px);
	opacity: 0.5;
}

#site {
	display: block;
	grid-template-columns: 1fr;
	margin: 0px auto 0 auto;
	transition-property: margin;
	transition-duration: 0.2s;
}

#site.siteExtended {
	margin: 35px auto 0 auto;
}

a {
	font-weight: 600;
	color: rgb(0, 154, 153);
	text-decoration: none;
	transition-property: color;
	transition-duration: 0.2s;
}

a:hover {
	color: #FF5722;
	text-decoration: none;
}

h2 {
	color: rgb(0, 154, 153);
	font-size: 50px;
	line-height: 50px;
	font-weight: 900;
	margin: 0px 0px 15px;
}

h3 {
	color: #FF5722;
	font-size: 28px;
	line-height: 30px;
	font-weight: 600;
}

h4 {
	color: rgb(0, 154, 153);
	font-size: 22px;
	font-weight: 700;
	margin: 0px 0px 10px 0px;
}

.space-s {
	height: 10px;
}

.space {
	height: 20px;
}

.space-m {
	height: 40px;
}

.space-l {
	height: 60px;
}

.divider {
	background: rgb(240, 240, 240);
	background: rgba(0, 0, 0, 0.1);
	height: 1px;
	margin: 30px 0px;
}

.space-divider {
	height: 120px;
}

input[type="text"], input[type="password"], input[type="email"] {
	padding: 0px 10px;
	font-size: 16px;
	line-height: 40px;
	border-radius: 5px;
	border: 1px solid rgb(220, 220, 220);	/* margin: 10px 0px; */
}

/* --------------------------- EVENT countdown --------------------------- */

#event {
    background: #ff5622;
    padding: 4px 0px;
    height: 58px;
    color: white;
    text-align: center;
    font-size: 20px;
    font-weight: 500;
    line-height: 50px;
    position: relative;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

#event .wrap {
	width: 3000px;
	position: absolute;
	left: 50%;
	margin: 0px 0px 0px -1500px;
}

#event .text {
	padding: 0px 50px;
	color: white;
}

#event img {
    height: 40px;
    border-radius: 7px;
    margin: -3px 30px 0px 30px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

/* --------------------------- BUTTONS --------------------------- */
.button {
	background: #019296;	/* display: inline-block; */
	line-height: 40px;
	padding: 0px 15px;
	border-radius: 5px;
	border: none;
	color: white;
	transition-property: all;
	transition-duration: 0.2s;
}

.button:hover {
	background: #027e82;
	color: white;
	text-decoration: none;
}

.button.orange {
	background: #ec582e;
}

.button.orange:hover {
	background: #c7421c;
}

.button i.material-icons {
	font-size: 20px;
	color: white;
	display: block;
	float: left;
	line-height: 40px;
	margin: 0px 8px 0px 0px;
}

/* --------------------------- COOKIES --------------------------- */
#cookies {
	background: #029998;
	position: fixed;
	top: 0;
	width: 100vw;
	padding: 5px 0px;
	text-align: center;
	color: white;
	font-size: 13px;
	z-index: 10;
	box-shadow: 0px 1px 2px 2px rgba(0, 0, 0, 0.16);
	transition-property: top;
	transition-duration: 0.2s;
}

#cookies a.button {
	background: white;
	display: inline-block;
	text-transform: uppercase;
	padding: 0px 8px;
	margin: 0px 0px 0px 10px;
	font-size: 12px;
	line-height: 25px;
	color: #039897;
	border-radius: 3px;
	box-shadow: 0px 1px 2px 2px rgba(0, 0, 0, 0.16);
	text-decoration: none;
	cursor: pointer;
}

#cookies a.button:hover {
	opacity: 0.8;
}

/* --------------------------- TRANSLATE --------------------------- */
highlight.translateHighlight {
	background: rgba(244, 67, 54, 0.4);
	text-shadow: 0px 1px 1px #00000094;
	position: relative;
	transition-property: all;
	transition-duration: 0.6s;
}

highlight.translateHighlight.green {
	background: rgba(76, 175, 80, 0.4);
}

highlight.translateHighlight .translateButton {
	background: rgb(236, 88, 46);
	position: absolute;
	top: -30px;
	left: 0;
	font-size: 13px;
	text-shadow: none;
	color: white;
	border-radius: 5px 5px 5px 0px;
	line-height: 30px;
	font-weight: 700;
	text-transform: uppercase;
	text-align: center;
	min-width: 140px;
	opacity: 0;
	letter-spacing: 0px;
	transition-property: background;
	transition-duration: 0.2s;
	cursor: pointer;
}

highlight.translateHighlight:hover .translateButton {
	opacity: 1;
}

highlight.translateHighlight .translateButton:hover {
	background: rgb(199, 66, 28);
}

highlight.translateHighlight .translateButton:hover ~ translation {
	background: rgba(236, 88, 46, 0.4);
}

highlight.translateHighlight.green .translateButton {
	background: #4CAF50;
}

highlight.translateHighlight.green .translateButton:hover {
	background: #3d9441;
}

highlight.translateHighlight.green .translateButton:hover ~ translation {
	background: rgba(76, 175, 80, 0.4);
}

#translatePanel {
	background: #019296;
	position: fixed;
	left: 15px;
	bottom: -265px;
	right: 15px;
	z-index: 10;
	padding: 10px 0px 10px 0px;
	color: white;
	box-shadow: 0 -10px 20px rgba(0, 0, 0, 0.19), 0 6px 6px rgba(0, 0, 0, 0.23);
	transition-property: bottom;
	transition-duration: 0.5s;
}

#translatePanel .title {
	font-weight: 700;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin: 0px 0px 5px 0px;
	line-height: 30Px;
}

#translatePanel #translateOriginal, #translatePanel #translateEquivalent {
	background: white;
	border: none;
	border-radius: 5px;
	width: 100%;
	padding: 10px;
	min-height: 150px;
	font-size: 14px;
	color: #5c9c9b;
	font-weight: 500;
	margin: 5px 0px 10px;
}

#translatePanel #translateOriginal {
	background: rgba(255, 255, 255, 0.7);
	overflow-y: scroll;
	max-height: 200px;
}

#translatePanel .button {
	background: #ff5624;
	text-align: center;
	line-height: 30px;
	border-radius: 20px;
	text-transform: uppercase;
	font-size: 14px;
	font-weight: 700;
}

/* --------------------------- NAVIGATION --------------------------- */
nav {
	text-align: center;
	margin: 0px;
}

nav #navWrap {
	width: 1200px;
	box-sizing: border-box;
	margin: 0 auto;
	text-align: left;
}

nav a#logo {
	background: url(/img/ocad_logo_cz.png) left center no-repeat;
	background-size: auto 80px;
	height: 80px;
	margin: 34px 0px 0px 0px;
	float: left;
	width: 246px;
}

nav .navbar-toggler {
	display: none;
}

nav #navWrap .floatRight {
	float: right;
}

nav #navWrap .floatRight ul {
	padding: 0;
	margin: 43px 30px 0px 0px;
	height: 30px;
	text-align: right;
	float: left;
}

nav #navWrap > .floatRight > ul > li {
	display: block;
	float: left;
	position: relative;
	margin: 0px 0px 0px 40px;
	border-radius: 3px;
	transition-property: all;
	transition-duration: 0.2s;
}

nav #navWrap > .floatRight > ul > li.dropMenu {
	border-radius: 3px 3px 0px 0px;
}

nav #navWrap .floatRight ul li:hover {
	background: #098483;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
}

nav #navWrap .floatRight ul li.white:hover {
	background: white;
	box-shadow: 0px 1px 2px 2px rgba(0, 0, 0, 0.16);
}

nav #navWrap > .floatRight > ul > li:first-child, nav #navWrap > .floatRight > ul > li:last-child {
	border-radius: 3px;
}

nav #navWrap > .floatRight > ul > li:first-child {
	margin: 0;
}

nav #navWrap .floatRight ul li a {
	text-transform: uppercase;
	text-decoration: none;
	font-size: 14px;
	line-height: 20px;
	font-weight: 600;
	color: rgb(0, 154, 153);
	letter-spacing: 2px;
	padding: 8px;
	cursor: pointer;
	display: block;
	transition-property: color;
	transition-duration: 0.2s;
}

nav #navWrap .floatRight ul li a img {
	height: 20px;
}

nav #navWrap .floatRight ul li a .arrow {
	background: url("/img/slider/carousel-control-prev-icon.png") top left no-repeat;
	background-size: 10px;
	float: right;
	width: 10px;
	height: 10px;
	margin: 5px 0px 0px 4px;
	transition-property: all;
	transition-duration: 0.2s;
	transition-timing-function: cubic-bezier(0.4, 0.0, 0.2, 1);
}

nav #navWrap > .floatRight > ul > li:hover > a .arrow {
	transform: rotate(-90deg);
}

nav #navWrap .floatRight ul li ul {
	background: rgb(0, 154, 153);
	position: absolute;
	margin: 0px;
	opacity: 0;
	transition-property: all;
	transition-duration: 0.2s;	/* width: 280px; */
	height: 0;
	border-radius: 0px 5px 5px 5px;
	box-shadow: 0 3px 6px rgba(0, 0, 0, 0.16);
	transition-property: all;
	transition-duration: 0.2s;
	z-index: 2;
}

nav #navWrap > .floatRight > ul > li:hover > ul {
	opacity: 1;
	padding: 0px;
	height: auto;
	text-align: left;
}

nav #navWrap .floatRight ul li:hover > a {
	color: white;
}

nav #navWrap .floatRight ul li ul li {
	display: none;
	margin: 0px;
	text-transform: none;
}

nav #navWrap .floatRight ul li:hover ul li {
	display: block;
	box-shadow: none;
	border-radius: 3px;
	white-space: nowrap;
}

nav #navWrap .floatRight ul li ul li a {
	background: url(/img/slider/carousel-control-next-white-icon.png) 8px 14px no-repeat;
	background-size: auto 10px;
	color: white;
	text-transform: none;
	padding: 0px 15px 0px 30px;
	line-height: 38px;
	display: block;
	transition-property: all;
	transition-duration: 0.2s;
	transition-timing-function: cubic-bezier(0.4, 0.0, 0.2, 1);
}

nav #navWrap .floatRight ul li ul li:hover a {
	background: url(/img/slider/carousel-control-next-icon.png) 14px 14px no-repeat;
	background-size: auto 10px;
}

nav #navWrap .floatRight ul li ul li a span {
	display: block;
	font-size: 12px;
	margin: -7px 0px 0px 0px;
	padding: 0px 0px 12px 0px;
	line-height: 12px;
	color: rgba(255, 255, 255, 0.6);
}

nav #navWrap .floatRight ul li ul li a i.material-icons {
	float: left;
	width: 10px;
	margin: 0px 10px 0px -6px;
	line-height: 38px;
}

.flag {
	box-shadow: 0px 1px 2px 2px rgba(0, 0, 0, 0.16);
	border-radius: 3px;
}

/* Flags */
nav #navWrap .floatRight ul li ul li.nav_flag {
	background-image: url(/img/flags/cz_bw.png);
	background-position: 8px 8px;
	background-repeat: no-repeat;
	background-size: 20px;
}

nav #navWrap .floatRight ul li ul li.nav_flag.nav_flag_sk {
	background-image: url(/img/flags/sk_bw.png);
}

nav #navWrap .floatRight ul li ul li.nav_flag.nav_flag_pl {
	background-image: url(/img/flags/pl_bw.png);
}

nav #navWrap .floatRight ul li ul li.nav_flag.nav_flag_en {
	background-image: url(/img/flags/en_bw.png);
}

nav #navWrap .floatRight ul li ul li.nav_flag.nav_flag_fi {
	background-image: url(/img/flags/fi_bw.png);
}

/* Color background on hover */
nav #navWrap .floatRight ul li:hover ul li:hover.nav_flag.nav_flag_cz {
	background-image: url(/img/flags/cz.png);
}

nav #navWrap .floatRight ul li:hover ul li:hover.nav_flag.nav_flag_sk {
	background-image: url(/img/flags/sk.png);
}

nav #navWrap .floatRight ul li:hover ul li:hover.nav_flag.nav_flag_pl {
	background-image: url(/img/flags/pl.png);
}

nav #navWrap .floatRight ul li:hover ul li:hover.nav_flag.nav_flag_en {
	background-image: url(/img/flags/en.png);
}

nav #navWrap .floatRight ul li:hover ul li:hover.nav_flag.nav_flag_fi {
	background-image: url(/img/flags/fi.png);
}

nav #navWrap .floatRight ul li ul li.nav_flag a {
	background: transparent;
	padding: 0px 15px 0px 40px;
}

#handheldLogo {
	background: url(/img/handheld.png) no-repeat;
	background-size: auto 20px;
	height: 20px;
	width: 94px;
	margin: -3px 0px 0px 0px;
}

#fbIcon {
	background: url(/img/fb.png) center center no-repeat;
	background-size: 20px;
	width: 20px;
	height: 20px;
	transition-property: background;
	transition-duration: 0.2s;
}

#fbIcon:hover {
	background: url(/img/fb_active.png) center center no-repeat;
	background-size: 20px;
}

/* --------------------------- COTNENT --------------------------- */
#content {
}

.sectionWrap {
	padding: 60px 0px;
}

.sectionWrap.gray {
	background: rgb(240, 250, 240);
	color: rgb(0, 154, 153);
}

.sectionWrap.gray.fadein {
	background: linear-gradient(rgba(255, 255, 255, 0) 0px, rgb(240, 250, 240) 400px);
}

.sectionWrap.orange {
	background: var(--color2);
	background: rgb(240, 250, 240);
	color: #FF5722;
}

.section {
	width: 1000px;
	margin: 0 auto;    /* font-size: 14px; */
}

.section img {
	float: left;
	margin: 0px 40px 40px 0px;
	max-height: 320px;
	border-radius: 8px;
}

.section.right {
	text-align: right;
}

.section.right img {
	float: right;
	margin: 0px 0px 0px 40px;
}

/* ------------------- SECTION POST ------------------- */

.section.post {
	width: 1200px;
}

.section.post img {
	width: 100%;
	float: none;
	margin: 0px 0px 10px 0px;
	max-height: none;
}

.section.post ul {
	font-weight: inherit;
	font-size: inherit;
}

.section.post ul li {
	margin: 0px 0px 10px 0px;
}

/* ------------------- SECTION WITH PROS ------------------- */
.section.pros {
	width: 80%;
}

.section.pros h4 {
	text-align: center;
	font-size: 40px;
	font-weight: 700;    /* color: #FF5722; */
}

.section.pros .icon {
	width: 20%;
	margin: 30px 0px 0px 0px;
	float: left;
	box-sizing: border-box;
	text-align: center;
	min-height: 108px;
}

.section.pros .icon i {
	display: block;
	font-size: 60px;
	margin: 0px 0px 10px 0px;
	color: #FF5722;
}

.section.pros .icon span {
	font-weight: 600;
	font-size: 14px;
	color: #5c9c9b;
}

/* ------------------- SECTION WITH SLIDER ------------------- */
.sectionWrap.slider {
	padding: 40px 0px 0px 0px;
}

.sectionWrap.slider .section {
	width: 1200px;
}

.carousel-indicators {
	bottom: 10px;
	margin: 0;
}

.carousel-indicators .active {
	background-color: #ff5624;
}

.carousel-indicators li {
	background-color: rgb(255, 169, 148);
	border-radius: 20px;
	margin: 0px 5px;
	height: 10px;
	width: 10px;
	border: 5px solid white;
	box-sizing: content-box;
	cursor: pointer;
}

.carousel-item img {
	margin: 0;
}

.carousel-control-prev-icon {
	background: url("/img/slider/carousel-control-prev-icon.png");
	background-size: 20px;
}

.carousel-control-next-icon {
	background: url("/img/slider/carousel-control-next-icon.png");
	background-size: 20px;
}

.carousel-control-next, .carousel-control-prev {
	width: 5%;
	opacity: 0.5;
}

.carousel-control-next:hover, .carousel-control-prev:hover {
	width: 5%;
	opacity: 1;
}

/* ------------------- SECTION WITH NEWS ------------------- */
.sectionWrap.news {
	padding: 20px 0px;
	overflow-x: scroll;
	-webkit-overflow-scrolling: touch;
}

.sectionWrap.news .section {
	width: auto;    /* width: 1200px; */
	padding: 0px 40px;
}

.sectionWrap.news .section h4 {
	font-size: 35px;
	margin: 0px 0px 20px 0px;
	text-align: center;
	font-weight: 700;
}

#news {
	width: 5200px;
}

#news .post {
	background: #f0faf0;
	height: 360px;
	border-radius: 5px;
	float: left;
	margin: 0px 20px 0px 0px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
	overflow: hidden;
}

#news .post .postContent {
	padding: 20px;
}

#news .post .postTitle {
	font-size: 18px;
	line-height: 18px;
	font-weight: 700;
	color: rgb(0, 154, 153);
}

#news .post .postText {
	padding: 10px 0px;
	font-size: 14px;
}

#news .post .postImage {
	display: block;
	transition-property: all;
	transition-duration: 0.2s;
}

#news .post .postImage img {
	width: 100%;
	margin: 0px;
	border-radius: 8px 8px 0px 0px;
	max-height: none;
	float: none;
}

#news .post .postDate {
	font-size: 14px;
	line-height: 14px;
}

/* --------------------------- FAQ --------------------------- */
.faqContainer {
	background: linear-gradient(white, #e3f3f3, white);
	padding: 0px 50px;
	border-left: 1px solid #d5e2e2;
}

.section.faq {
	width: 1200px;
}

.section.faq h2 {
	margin: 0px 0px 10px;
	font-weight: 800;
	font-size: 40px;
	line-height: 42px;
	color: #FF5722;
}

.section.faq h3 {
	margin: 0px 0px 15px 0px;
	font-size: 20px;    /* text-align: center; */
	color: #5c9c9b;
}

.faqTextContainer {
	padding: 0px 50px 0px 0px;
}

.faqTextContainer h3.faqTextTitle {
	text-align: left;
	font-size: 22px;
	line-height: 1;
	font-weight: 700;
	margin: 0px 0px 6px 0px;
	color: rgb(0, 154, 153);
}

.faqTextContainer .media {
	margin: 30px 0px 0px;
}

.faqTextContainer .media .material-icons {
	background: #FF5722;
	display: inline-block;
	font-size: 40px;
	padding: 12px;
	border-radius: 10px;
	color: white;
	margin: 0px 20px 0px 0px;
}

#faq {

	/* margin: 50px 0px 0px 0px; */
}

#faqSearchWrap {
	margin: 0px 0px 20px;
	position: relative;
}

#faqSearchWrap i.material-icons {
	color: #5c9c9b;
	position: absolute;
	line-height: 63px;
	top: 5px;
	left: 20px;
	font-size: 40px;
}

#faqSearch {
	width: 100%;
	padding: 15px 25px 14px 65px;
	border-radius: 35px;
	border: 1px solid #d6d6d6;
	font-size: 20px;
	color: rgb(80, 80, 80);
}

#faqSearchLoading {
	background: url(/img/loading.png) center center no-repeat;
	background-size: 30px;
	width: 30px;
	height: 30px;
	position: absolute;
	top: 18px;
	left: 18px;
	animation: loading 0.6s linear infinite;
	display: none;
}

@keyframes loading {
	0% {
		transform: rotate(0deg);
	}

	100% {
		transform: rotate(360deg);
	}

}

#faq .question {
	background: white;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
	cursor: pointer;
	margin: 0px 0px 10px;
	border-radius: 5px;
}

#faq .question .qTitle {
	font-size: 18px;
	font-weight: 600;
	line-height: 26px;
	padding: 15px;
	color: rgb(0, 154, 153);
	transition-property: all;
	transition-duration: 0.2s;
}

#faq .question.expanded .qTitle {
	background: rgb(0, 154, 153);
	color: white;
	border-radius: 5px 5px 0px 0px;
}

#faq .question .qAnswer {
	background: rgb(255, 255, 255);
	font-size: 16px;
	display: none;
	color: rgb(0, 154, 153);
	font-weight: 400;
	padding: 20px 20px 20px 15px;
	border-radius: 0px 0px 5px 5px;
}

#faq .question .qAnswer ul {
	padding: 20px 20px 0px 20px;
	margin: 0;
}

#faq .question .qAnswer table {
	border-collapse: collapse;
	border: 1px solid #5c9c9b;
}

#faq .question .qAnswer table tr td {
	background: white;
	border: 1px solid #FF5722;
	padding: 10px;
	color: rgb(0, 154, 153);
	font-weight: 500;
}

#faq .question .qAnswer table tr:first-child td {
	background: #FF5722;
	color: white;
	font-weight: 900;
	border: 1px solid #FF5722;
}

/* --------------------------- DISCOUNT --------------------------- */
.section ul {
	padding: 0px 0px 0px 20px;
	font-weight: 500;
	font-size: 18px;
}

.section ul li {
}

.section ul li span {
	background: #4CAF50;
	display: inline-block;
	color: white;
	line-height: 34px;
	padding: 0px 15px;
	border-radius: 20px;
	text-align: center;
	font-weight: 700;
	font-size: 17px;
	margin: 0px 0px 15px 0px;
}

/* --------------------------- CONTACT --------------------------- */
.section.contact {
	text-align: center;
	width: 1200px;
}

.section.contact img {
	max-height: initial;
	margin: 0px 40px 0px 0px;	/* width: 180px; */
}

#contactInfo {
	float: left;
	text-align: left;
}

#contactInfo h4 {
	font-size: 35px;
}

#contactInfo .contactInfoLine {
	margin: 0px 0px 5px 0px;
}

#contactInfo .contactInfoLine div {
	color: #eb582d;
	font-size: 14px;
	line-height: 16px;
	font-weight: 800;
	text-transform: uppercase;
	margin: 10px 0px 0px 0px;
}

#contactInfo .contactInfoLine span {
	color: rgb(0, 154, 153);
}

/* --------------------------- CHECKOUT --------------------------- */
#checkoutWrapper {
	background: linear-gradient(#ffffff00, #f0faf0);
}

#checkout .shop-icon {
	font-size: 60px;
	line-height: 90px;
	color: rgb(0, 154, 153);
}

#checkout label {
	font-weight: 600;
	color: #FF5722;
	margin: 0px 0px 4px 0px;
}

/* ------------- CHECKOUT ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â product view ------------- */
#checkout #productView {
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
	border-radius: 5px;
}

#checkout label.productSubscriptionLabel, #checkout label.productLicenceLabel, #checkout label.productSaleLabel {
	font-size: 11px;
	line-height: 22px;
	color: white;
	display: inline-block;
	margin: 6px 2px 0px 0px;
	padding: 0px 10px 0px 8px;
}

#checkout label.productSubscriptionLabel i.material-icons, #checkout label.productLicenceLabel i.material-icons, #checkout label.productSaleLabel i.material-icons {
	font-size: 14px;
	line-height: inherit;
	margin: 0px 4px 0px 0px;
}

#checkout input[type=text], #checkout input[type=email] {

	/* margin: 0px 0px 10px 0px; */
}

.input-group-text {
	padding: 8px;
}

#checkout .productList .productWrap {
	min-width: 300px;
	position: relative;
}

#checkout .productList .productWrap.oms, #checkout .productList .productWrap.oo, #checkout .productList .productWrap.os, #checkout .productList .productWrap.ocs {
	min-width: 400px;
}

#checkout .productList .productListImage {
	height: 49px;
	float: left;
	margin: 0px 12px 0px 0px;
	border-radius: 10px;
}

/* ------------- CHECKOUT ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â Licence and Discount ------------- */
#checkout .productList .productLicenceNum, #checkout .productList .productDiscountNum, #checkout .productList .licenceDiscountNum {
	background-image: url("/img/checkout/licenceNum.png");
	background-repeat: no-repeat;
	background-size: 49px;
	width: 49px;
	height: 49px;
	margin: 0px 12px 0px 0px;
	border-radius: 10px;
	float: left;
	transition-property: background-position;
	transition-duration: 0.3s;
	transition-timing-function: cubic-bezier(0.4, 0.0, 0.2, 1);
}

#checkout .productList .productDiscountNum {
	background-image: url("/img/checkout/discountNum.png");
}

#checkout .productList .licenceDiscountNum {
	background-image: url("/img/checkout/licenceDiscountNum.png");
}

#checkout .productList .licenceDiscountNum.discount0, #checkout .productList .productDiscountNum.discount0 {
	background-position: 0px 0px;
}

#checkout .productList .licenceDiscountNum.discount10, #checkout .productList .productDiscountNum.discount10 {
	background-position: 0px -49px;
}

#checkout .productList .licenceDiscountNum.discount15, #checkout .productList .productDiscountNum.discount15 {
	background-position: 0px -49px;
}

#checkout .productList .licenceDiscountNum.discount20, #checkout .productList .productDiscountNum.discount20 {
	background-position: 0px -147px;
}

#checkout .productList .licenceDiscountNum.discount40, #checkout .productList .productDiscountNum.discount40 {
	background-position: 0px -196px;
}

/* ------------- CHECKOUT ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â Product item ------------- */
#checkout .productList .list-group-item {
	padding: .75rem;
	background: hsla(196, 22%, 95%, 1);
	border: none;
	border-top: 1px solid rgb(220, 220, 220);
	margin: 0;
}

#checkout .productList .list-group-item:first-child {
	border: none;
	background: white;
	overflow: hidden;
}

#checkout .productList .list-group-item:last-child {
	background: white;
}

#checkout .productList .productTitle a, #checkout .productList .productTitle {
	white-space: nowrap;
	font-weight: 700;
	font-size: 18px;
}

#checkout .productList .productTitle a, #checkout .productList .productTitle .productInfo {
}

#checkout .productList .centerContent .productTitle, #checkout .productList .centerContent .productPrice {
	padding: 4px 0px 0px 0px;
}

#checkout .productList .productListDesc {
	display: block;
	white-space: nowrap;
	font-size: 14px;
	color: #989898;
}

/* ------------- CHECKOUT ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â Licence buttons ------------- */
#checkout .productList .licenceButtons {
	position: absolute;
	top: -1px;
	right: -44px;
	overflow: hidden;
	width: 44px;
	height: 80px;
	z-index: 99;
}

#checkout .productList .licenceButtons .licenceButton {
	background: url(/img/checkout/plus_white.png) center center no-repeat #ff5624;
	background-size: 30px;
	width: 36px;
	height: 37px;
	border-bottom: 1px solid #00000029;
	border-radius: 0px 8px 0px 0px;
	cursor: pointer;
	transition-property: all;
	transition-duration: 0.2s;
	transition-timing-function: cubic-bezier(0.4, 0.0, 0.2, 1);
	margin: 0px -1px 0px 0px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

#checkout .productList .licenceButtons .licenceButton.minus {
	background: url(/img/checkout/minus_white.png) center center no-repeat #ff5624;
	background-size: 30px;
	margin: 0px 0px 0px 0px;
	border-radius: 0px 0px 8px 0px;
	border: none;
}

#checkout .productList .licenceButtons .licenceButton:hover {
	background: url(/img/checkout/plus_white.png) center center no-repeat #ff5624;
	background-size: 30px;
	border-color: #ff5624;
}

#checkout .productList .licenceButtons .licenceButton.minus:hover {
	background: url(/img/checkout/minus_white.png) center center no-repeat #ff5624;
	background-size: 30px;
}

#checkout .productList .licenceButtons .licenceButton.disabled {
	margin: -1px -1px 0px -38px;
}

#checkout .productList .licenceButtons.disabled .licenceButton {
	margin: -1px -1px 0px -38px;
}

#checkout .productList .list-group-item.numOfLicences h6 {
	line-height: 37px;
}

#checkout .productList .list-group-item .productPrice {
	color: #ec582e;
	font-weight: 600;
	line-height: 18px;
}

/* ------------- CHECKOUT ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â Licence buttons ------------- */
#checkout #totalPriceWithVAT {
	color: #4caf4f;
}

#checkout #totalPriceWithVAT span.priceText {
	font-weight: 700;
}

#checkout #totalPriceWithoutVAT {
	font-size: 14px;
}

#checkout #totalPriceWithoutVAT strong.totalPrice {
	font-weight: 500;
}

/* ------------- CHECKOUT ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â Licence Discount ------------- */
#checkout #licenceDiscount {
	transition-property: all;
	transition-duration: 0.3s;
	transition-timing-function: cubic-bezier(0.4, 0.0, 0.2, 1);
	background: hsla(118, 30%, 90%, 1);
	overflow: hidden;
}

#checkout #licenceDiscount.disabled {
	overflow: hidden;
	height: 0px;
	padding: 0px 12px;
	border-color: #f0f4f6;
}

.text-blue {
	color: #3F51B5 !important;
}

/* ------------- CHECKOUT ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Â ÃƒÂ¢Ã¢â€šÂ¬Ã¢â€žÂ¢ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã¢â‚¬Â¦Ãƒâ€šÃ‚Â¡ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™Ãƒâ€ Ã¢â‚¬â„¢ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã†â€™Ãƒâ€šÃ‚Â¢ÃƒÆ’Ã‚Â¢ÃƒÂ¢Ã¢â‚¬Å¡Ã‚Â¬Ãƒâ€¦Ã‚Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â¬ÃƒÆ’Ã†â€™ÃƒÂ¢Ã¢â€šÂ¬Ã…Â¡ÃƒÆ’Ã¢â‚¬Å¡Ãƒâ€šÃ‚Â Form ------------- */
#checkout form {
	margin: 0;
}

#checkout #checkoutForm {
	margin: 0px 0px 40px 40px;
}

#checkout .button {
	float: right;
	margin: 27px 0px 0px 0px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
	font-weight: 600;
}

/* --------------------------- SHOP --------------------------- */
.section.buy {
	width: 1200px;
}

.section.buy h2 {
	text-align: center;
	margin: 0px 0px 40px 0px;
}

.section.buy h2 span {
	display: block;
	margin: 0px 0px 20px 0px;
}

.section.buy h2 label {
	margin: 0px;
}

.section.buy h3, .section.buy .products .productSectionTitle {
	font-size: 30px;
	font-weight: 700;
	line-height: 34px;
	color: #FF5722;
}

.section.buy h2 small {
	display: block;
	font-size: 18px;
	line-height: 60px;
	font-weight: 500;
	color: #749e9e;
}

.section.buy h4 {
	font-size: 24px;
	line-height: 28px;
	margin: 0px 0px 4px 0px;
	color: #ff5624;
}

.section.buy .aftertext {
}

.section.buy .aftertext .material-icons {
	font-size: 50px;
	color: #FF5722;
}

.productSectionTitle i.material-icons {
	font-size: 60px;
	display: inline-block;
	margin: 0px auto;
	text-align: center;
	color: #ff5624;
}

.section.buy .products .productSectionTitle {
	text-align: center;
}

.section.buy .products .productSectionTitleMain {
	font-size: 26px;
	font-weight: 800;
	line-height: 30px;
	color: #029998;
	text-transform: uppercase;
	letter-spacing: 1px;
	margin: 5px 0px 15px 0px;
}

.section.buy .products .productSectionTitleMain span {
	color: gray;
	display: block;
	font-weight: 400;
	font-size: 20px;
	letter-spacing: 0px;
	display: none;
}

label.productLabel, label.productLicenceLabel, label.productSubscriptionLabel, label.productSaleLabel {
	background: rgb(0, 154, 153);
	color: white;
	font-size: 14px;
	line-height: 34px;
	text-transform: uppercase;
	padding: 0px 15px 0px 12px;
	display: inline-block;
	border-radius: 20px;
	font-weight: 700;
	margin: 0px auto 40px auto;
}

label.productSubscriptionLabel {
	background: #2196F3;
}

label.productLicenceLabel {
	background: #FF5722;
}

label.threeYears {
	background: #673AB7;
}

label.productSaleLabel {
	background: #4CAF50;
}

label.productLabel i.material-icons, label.productLicenceLabel i.material-icons, label.productSubscriptionLabel i.material-icons, label.productSaleLabel i.material-icons {
	font-size: 20px;
	color: white;
	display: block;
	float: left;
	line-height: 34px;
	margin: 0px 8px 0px 0px;
}

.section .productWrap {
	padding: 30px 0px;
	margin: 0px auto;
	border-bottom: 1px solid #efefef;
	width: 480px;
}

.section .productWrap .productImage {
	height: 78px;
	float: left;
	margin: 0px 15px 0px 0px;
	border-radius: 15px;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
}

.section .productWrap .productContent {
	float: left;
}

.section .productWrap .productTitle a {
	color: rgb(0, 154, 153);
	font-weight: 700;
	font-size: 24px;
	line-height: 24px;
	display: block;
	margin: 0px 0px 8px;
	float: left;	/* width: 100%; */
	text-decoration: none;
}

/* colors */
.productWrap.oms .productTitle a {
	color: #28bda1;
}

.productWrap.oo .productTitle a {
	color: #F7941E;
}

.productWrap.os .productTitle a {
	color: #f9c700;
}

.productWrap.ocs .productTitle a {
	color: #A24399;
}

.section .productWrap .productTitle a.productInfo {
	float: right;
	margin: 0px 0px 0px 8px;
	color: gray;
	opacity: 0.5;
}

.section .productWrap .productTitle .productInfo:hover {
	opacity: 1;
}

.section .productWrap .productPricesWrap {
	float: left;
}

.section .productWrap .productPrice {
	font-family: 'Roboto', sans-serif;
	color: #9e9e9e;
	font-size: 14px;
	font-weight: 400;
}

.section .productWrap .productPrice.vat {
	color: #ff5624;
	font-size: 20px;
	line-height: 26px;
	font-weight: 600;
}

.section .productWrap .licenseNumLabel {
	font-family: 'Roboto', sans-serif;
	text-transform: uppercase;
	font-size: 14px;
	line-height: 14px;
	margin: 12px 0px 8px 0px;
}

.section.buy .productWrap input[type="number"] {
	border-radius: 3px;
	line-height: 24px;
	padding: 0px 10px;
	border: 1px solid #c1c1c1;
	font-weight: 600;
	width: 106px;
}

.section .productWrap .button {
	background: #4CAF50;
	color: white;
	line-height: 39px;
	padding: 0px 15px;
	border-radius: 4px;
	font-weight: 700;
	text-align: center;
	margin: 2px 0px 0px 0px;
	float: right;
	box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
	transition-property: all;
	transition-duration: 0.2s;
}

.section .productWrap .button:hover {
	background: #02807f;
	text-decoration: none;
}

/* ------------------- PRODUCTs PAGE ------------------- */
.section.products {
	width: 1200px;
}

.section.products h3 {
	font-size: 30px;
	font-weight: 700;
	line-height: 34px;
	color: #FF5722;
}

.section.products .desc {
	background: rgb(240, 250, 240);
	color: rgb(0, 154, 153);
	padding: 30px;
	border-radius: 10px;
	margin: 0px 15px 0px 0px;
}

.section.products .productWrap {
	width: auto;
}

.section.products .productWrap .productTitle
a {
	font-size: 30px;
	line-height: 39px;
	margin: 0px 0px 12px 0px;
}

.section.products .productWrap .button {
	display: inline-block;
	float: none;
	margin: 15px 0px 0px 0px;
	font-weight: 500;
}

.section.products .productDesc {
	display: block;
	clear: both;
	margin: 20px 0px 0px 0px;
}

/* --------------------------- TAC --------------------------- */
#tac h1 {
	font-size: 30px;
}

#tac h2 {
	font-size: 36px;
	font-weight: 900;
	margin: 20px 0px 0px 0px;
}

#tac h4 {
	color: #ec582e;
	margin: 20px 0px 0px 0px;
}

/* --------------------------- ABOUT --------------------------- */
.section.about img {
	width: 182px;
	max-height: none;
	margin: 20px;
	box-sizing: border-box;
}

/* --------------------------- LOG --------------------------- */
.section.log h2 {
	margin: 0px 0px 20px;
}

.section.log .log {
	background: url("/img/unchecked.png") top left no-repeat;
	background-size: 34px;
	line-height: 34px;
	padding: 0px 0px 0px 48px;
	font-size: 18px;
	margin: 15px 0px 0px 0px;
}

.section.log .log.checked {
	background: url("/img/checked.png") top left no-repeat;
	background-size: 34px;
	font-weight: 700;
}

/* --------------------------- FOOTER --------------------------- */
#footerWrap {
	padding: 60px 0px;
	background: rgb(240, 250, 240);
	color: rgb(0, 154, 153);
	border-top: 1px solid #dce6dc;
}

#footer {
	width: 1200px;
	margin: 0 auto;
}

#footer.extended {
	margin: 0px auto 260px auto;
}

#footer .footerSection {
	float: left;
	padding: 0px 30px 0px 0px;
	margin: 0px 0px 0px 30px;
	border-right: 1px solid;
}

#footer .footerSection:first-child {
	margin: 0;
}

#footer .footerSection:nth-child(3) {
	font-size: 12px;
	line-height: 22px;
	font-weight: 300;
	border: none;
	padding: 0;
}

/* --------------------------- UNDER 1300px --------------------------- */
@media (max-width:1300px) {
	nav #navWrap {
		width: 100%;
		padding: 0px 30px;
	}

	nav #navWrap .floatRight ul {
		width: 444px;
	}

	nav #navWrap > .floatRight > ul > li {
		margin: 0px 0px 0px 20px;
	}

	#perex {
		width: 100%;
		padding: 60px 40px;
	}

	.section {
		width: 100%;
		padding: 0px 40px;
	}

	.section.pros, .section.faq, .section.buy, .section.products {
		width: 100%;
		padding: 0px 20px;
	}
	.faqTextContainer {
		padding: 20px 20px;
	}
	.faqContainer {
		padding: 0px 30px;
	}

}

/* --------------------------- UNDER 960px --------------------------- */
@media (max-width:960px) {
	#checkout #checkoutForm {
		margin: 0;
	}

	nav #navWrap .floatRight {

		/* display: none; */
		float: none;
	}

	#perex {
		background: transparent !important;
	}

	#perex div.textPerex {
		width: auto;
	}

	h2 {
		font-size: 40px;
	}

}

/* --------------------------- UNDER 800px --------------------------- */
@media (max-width:800px) {

	/* Nav */
	nav {
		background: white;
		height: 60px;
		position: absolute;
		top: 0px;
		width: 100vw;
		box-shadow: 0 1px 3px rgba(0, 0, 0, 0.12), 0 1px 2px rgba(0, 0, 0, 0.24);
		transition-property: all;
		transition-duration: 0.2s;
		z-index: 100;
		overflow: hidden;
	}

	nav .navbar-toggler {
		margin: 14px 0px;
		float: left;
		padding: 0;
		display: block;
	}

	nav .navbar-toggler-icon .material-icons {
		font-size: 30px;
		color: #9E9E9E;
	}

	nav #navWrap .floatRight ul {
		height: auto;
		width: 300px;
		margin: 0px;
		padding: 0px 0px 0px 4px;
		clear: both;
		float: left;
		text-align: left;
	}

	nav #navWrap > .floatRight > ul > li {
		float: none;
		margin: 0;
	}

	nav #navWrap > .floatRight > ul > li:last-child {
		margin: 0px 0px 15px 0px;
	}

	nav #navWrap .floatRight ul li a {
		line-height: 14Px;
		padding: 0px;
		margin: 12px 0px 0px 0px;
		padding: 12px 0px 0px 0px;
		border-top: 1px solid rgba(0, 0, 0, 0.05);
	}

	nav #navWrap .floatRight ul li a .arrow {
		display: none;
	}

	/*Â Submenu */
	nav #navWrap .floatRight ul li ul {
		position: static;
		height: auto;
		float: none;
		padding: 0px;
		opacity: 1;
		background: transparent;
		box-shadow: none;
	}

	nav #navWrap .floatRight ul li ul li {
		display: block;
		border-left: 2px solid rgba(49, 161, 165, 0.22);
	}

	nav #navWrap .floatRight ul li ul li:last-child {
	}

	nav #navWrap .floatRight ul li ul li a {
		color: rgb(236, 88, 46);
		padding: 0px 0px 0px 10px;
		line-height: 24px;
		margin: 8px 0px;
		font-size: 13px;
		border: none;
	}

	nav #navWrap .floatRight ul li ul li a span {
		color: rgba(1, 146, 150, 0.53);
		margin: 0;
		padding: 0px 0px 8px 0px;
	}

	nav #navWrap .floatRight ul li ul li.nav_flag {
		background-position: 0px 4px;
		border: none;
	}

	nav a#logo {
		background: url(/img/ocad_logo_cz.png) left top no-repeat;
		background-size: auto 50px;
		height: 26px;
		width: 134px;
		margin: 17px 0px 0px 0px;
		padding: 0px;
		float: right;
	}

	nav .navbar-brand {
		float: right;
	}

	nav #navWrap .floatRight ul li ul li.nav_flag a {
		padding: 1px 15px 0px 30px;
	}

	nav #navWrap .floatRight ul li img.flag {
		display: none;
	}

	/* Color background on hover */
	nav #navWrap .floatRight ul li ul li.nav_flag.nav_flag_cz {
		background-image: url(/img/flags/cz.png);
	}

	nav #navWrap .floatRight ul li ul li.nav_flag.nav_flag_sk {
		background-image: url(/img/flags/sk.png);
	}

	nav #navWrap .floatRight ul li ul li.nav_flag.nav_flag_pl {
		background-image: url(/img/flags/pl.png);
	}

	nav #navWrap .floatRight ul li ul li.nav_flag.nav_flag_en {
		background-image: url(/img/flags/en.png);
	}

	nav #navWrap .floatRight ul li ul li.nav_flag.nav_flag_fi {
		background-image: url(/img/flags/fi.png);
	}

	.section.pros {
		padding: 0;
	}

	.section.pros .icon {
		width: 50%;
		min-height: 80px;
	}

	.section.faq {
		padding: 0px 15px;
	}
	
	.section.faq .faqTextContainer {
		padding: 30px;
	}

	.section.faq .faqContainer {
		background: #f0faf0;
		padding: 30px;
	}

	.section.faq #faqSearch {
		border-radius: 10px;
	}

	.section img, .section.right img {
		float: none;
	}

	#footer {
		width: 100%;
	}

	#footer .footerSection {
		float: none;
		border: none;
		padding: 0px;
		margin: 0px 0px 15px 0px;
		text-align: center;
	}

	#footer .footerSection img {
		float: none !important;
		display: block;
		margin: 0 auto 5px auto !important;
	}

}

/* --------------------------- UNDER 500px --------------------------- */
@media (max-width:500px) {
	.section {
		padding: 0px 20px;
	}

	.section, .sectionWrap.slider .section {
		width: 100%;
	}

	.sectionWrap.slider {
		display: none;
	}

	#site {
		margin: 60px auto 0 auto;
	}

	#site.siteExtended {
		margin: 92px auto 0 auto;
	}

	nav #navWrap {
		padding: 0px 15px;
	}

	/* Slider */
	.carousel-indicators, .carousel-control-prev, .carousel-control-next {
		display: none;
	}

	/* News */
	.sectionWrap.news .section {
		padding: 0px 10px;
	}

	#news .post {
		width: 90vw;
	}

	/* Buy */
	.section.buy {
		padding: 0;
	}

	.section.buy .products .productSectionTitle {
	}

	.section .productWrap {
		width: 100%;
		padding: 20px 10px;
	}

	.section .productWrap .productImage {
		height: 60px;
		border-radius: 12px;
		margin: 0px 10px 0px 0px;
	}

	.section .productWrap .productTitle a {
		font-size: 20px;
		line-height: 20px;
	}

	.section .productWrap .productTitle a.productInfo i.material-icons {
		font-size: 20px;
	}

	.section .productWrap .productPrice.vat {
		font-size: 17px;
		line-height: 20px;
	}

	.section .productWrap .button {
		line-height: 36px;
	}

	/*  Checkout  */
	#checkout h4 {
		margin: 20px 0px 10px 0px !important;
	}

	#checkout .productList h4 {
		margin: 20px 0px 10px 15px !important;
	}

	#checkout #productView {
		width: 100%;
		border-radius: 0;
	}

	#checkout .productList {
		padding: 0;
	}

	#checkout .productList .productWrap {
		min-width: inherit;
		width: 200px;
	}

	#checkout .productList .productWrap.oms, #checkout .productList .productWrap.oo, #checkout .productList .productWrap.os, #checkout .productList .productWrap.ocs {
		width: 300px;
	}

	#checkout .productList .list-group-item#licenceSection {
		height: 103px;
	}

	#checkout .productList .productListDesc {
		white-space: normal;
	}

	#checkout .productList .licenceButtons {
		width: 40px;
		height: 87px;
		position: static;
		padding: 0px;
		margin: 0px -12px 0px 0px;
	}

	#checkout .productList .licenceButtons.disabled {
		display: none;
	}

	#checkout .productList .licenceButtons .licenceButton {
		border-radius: 5px 0px 0px 5px !important;
		border: none;
		margin: 0px 4px 4px;
	}

	#checkout .productList .licenceButtons .licenceButton.minus {
		margin: 0px 4px 4px;
	}

	.section img, .section.right img {
		max-width: 100% !important;
		height: auto;
		margin: 10px 0px;
	}

	#checkout .productList .licenceButtons .licenceButton.disabled {
		margin: 0px 0px 0px 44px;
	}

	.section.pros h4 {
		font-size: 25px;
	}

	.section.pros .icon i {
		font-size: 40px;
		margin: 0px 0px 2px 0px;
	}

	.section.pros .icon span {
		font-size: 12px;
	}

	.section.faq .faqContainer {
		padding: 15px;
	}

}
