
/* PRODUCT PAGE STYLES */
.products-intro-bar
{
	background: #3573a6;
	background: -moz-radial-gradient(center, ellipse cover, #acdef7 0%, #3573a6 100%);
	background: -webkit-gradient(radial, center center, 0px, center center, 100%, color-stop(0%,#acdef7), color-stop(100%,#3573a6));
	background: -webkit-radial-gradient(center, ellipse cover, #acdef7 0%,#3573a6 100%);
	background: -o-radial-gradient(center, ellipse cover, #acdef7 0%,#3573a6 100%);
	background: -ms-radial-gradient(center, ellipse cover, #acdef7 0%,#3573a6 100%);
	background: radial-gradient(ellipse at center, #acdef7 0%,#3573a6 100%);
	filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#acdef7', endColorstr='#3573a6',GradientType=1 );
}
body.dark .products-intro-bar {
    background: var(--section-info-bg-color);
    background: radial-gradient(ellipse at center, #666 0%, #333 100%);
}

.products-intro-bar h1
{
	text-shadow: 2px 2px 2px rgba(255, 255, 255, .7);
	font-weight: 600;
}
body.dark .products-intro-bar h1 {
    text-shadow: none;
}

.products-intro-bar h3
{
	color:white;
	font-size:2.0rem;
	font-weight: 300;
}

.products-anim
{
	width:128px;
	height:100px;
	position:relative;
	margin:0 auto;
}

.products-anim .small-wheel {
	position:absolute;
	left:40px;
	animation: rotate360 4s infinite linear;
	-webkit-animation: rotate360 4s infinite linear;
    -moz-animation: rotate360 4s infinite linear;
}

.products-anim .large-wheel {
	position:absolute;
	top:30px;
	animation: rotate360-rev 8s infinite linear;
	-webkit-animation: rotate360-rev 8s infinite linear;
    -moz-animation: rotate360-rev 8s infinite linear;
}

.product
{
	margin-top:20px;
}

.product a
{
	color:black;
	text-decoration:none;
}
body.dark .product a {
    color: var(--link-color);
}

.flip-container {
	-webkit-perspective: 1000px;
	-moz-perspective: 1000px;
	perspective: 1000px;
}

.flip-container:hover .flipper,  
.flip-container.hover .flipper {
	-webkit-transform: rotateY(180deg);
	-moz-transform: rotateY(180deg);
	transform: rotateY(180deg);
}

.flip-container:hover .flipper .back,  
.flip-container.hover .flipper .back
{
	z-index: 20;
}

.flipper, .front, .back {
	width: 100%;
	height: 280px;
}

.flipper .front, .flipper  .back {
	width: 100%;
	height: 280px;
	-webkit-box-shadow: 0px 2px 10px rgba(0,0,0,0.4);
	-moz-box-shadow: 0px 2px 10px rgba(0,0,0,0.4);
	-o-box-shadow: 0px 2px 10px rgba(0,0,0,0.4);
	box-shadow: 0px 2px 10px rgba(0,0,0,0.2);
	-webkit-backface-visibility: hidden;
	-moz-backface-visibility: hidden;
	backface-visibility: hidden;
}

body.dark .flipper .front {
    background-color: var(--section-info-bg-color);
}

.flipper {
	-webkit-transition: 0.6s;
	-webkit-transform-style: preserve-3d;
	-moz-transition: 0.6s;
	-moz-transform-style: preserve-3d;
	transition: 0.6s;
	transform-style: preserve-3d;
	position: relative;
}

.front, .back {
	position: absolute;
	top: 0;
	left: 0;
}

.front {
	z-index: 10;
}

.back {
	-webkit-transform: rotateY(180deg);
	-moz-transform: rotateY(180deg);
	-o-transform: rotateY(180deg);
	transform: rotateY(180deg);
	background: #999;
	color:white;
	padding:20px;
	line-height:20px;
	z-index: 5;
}

.back p {
	margin-top:15px;
}


.product-image {
	width: 200px;
	height: 200px;
	line-height: 200px;
	text-align: center;
	margin: 20px auto 0;
	border-radius: 100px;
	background-color:#ddd;
}

.product-image  > img
{
	width:120px;
	margin-top:40px;
}

.product-title
{
	padding:20px;
	font-size:1.6rem;
	font-weight:bold;
	text-align:center;
}

.read-more
{
	display:inline-block;
	padding:5px 10px 0 0;
	margin:5px 0 0 0;
}

.product-overview h4
{
	margin:1em 0px;
	font-size:2.2rem;
	line-height:2.2rem;
	text-shadow: 2px 2px 1px rgba(50, 50, 50, 1);
	font-weight: 500;
}

.product-overview-light h4
{
	margin:1em 0px;
	font-size:2.2rem;
	line-height:2.2rem;
	font-weight:500;
	text-shadow: 0 0;
}

.product-overview .features
{
	margin:1em 0;
}


.features .block
{
	position:relative;
	margin-top:20px;
	-moz-transition: all 0.3s ease-in-out;
	-ms-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
	webkit-box-shadow: 2px 2px 10px rgba(43,54,61, 0.4), 0px 0px 0px 9px rgba(116,161,191,0.3) inset;
	-moz-box-shadow: 2px 2px 10px rgba(43,54,61, 0.4), 0px 0px 0px 9px rgba(116,161,191,0.3) inset;
	box-shadow: 2px 2px 10px rgba(43,54,61, 0.4), 0px 0px 0px 9px rgba(116,161,191,0.3) inset;
	border-radius: 50%;
	-moz-border-radius: 100px;
	-webkit-border-radius: 100px;
	width: 175px;
	height: 175px;
	display: inline-block;
	background: #bfd4e2;
	padding:25px;
}

.features .block img
{
	opacity:1;
	width:125px;
    height:125px;
}

.feature-title 
{
	position:absolute;
	top:0;
	left:0;
	font-size:2.0rem;
	padding:45px 10px;
	color:black;
	font-weight:600;
	text-shadow: 2px 2px 1px rgba(125, 125, 125, .5);
	opacity: 0;
	-webkit-touch-callout: none;
	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
}


.features .block:hover,
.features .block.hover
{
	-webkit-box-shadow: 2px 2px 10px rgba(43,54,61, 0.4), 0px 0px 0px 0px #fedc3f inset, 0px 0px 100px 20px rgba(255,244,193,0.8);
	-moz-box-shadow: 2px 2px 10px rgba(43,54,61, 0.4), 0px 0px 0px 0px #fedc3f inset, 0px 0px 100px 20px rgba(255,244,193,0.8);
	box-shadow: 2px 2px 10px rgba(43,54,61, 0.4), 0px 0px 0px 0px #fedc3f inset, 0px 0px 100px 20px rgba(255,255,255,0.8);
	background: #ddd;
	background-image: -webkit-radial-gradient(center center, circle contain, #fff 0%, #ddd 100%);
	background-image: -moz-radial-gradient(center center, circle contain, #fff 0%, #ddd 100%);
	background-image: -ms-radial-gradient(center center, circle contain, #fff 0%, #ddd 100%);
	background-image: radial-gradient(center center, circle contain, #fff 0%, #ddd 100%);
}

.features .block:hover  .feature-title,
.features .block.hover  .feature-title
{
    opacity:1;
	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	transition: all 0.3s linear;
}

.features .block:hover img,
.features .block.hover img
{
    opacity: 0; 
    -webkit-transform: scale(0);
    -moz-transform: scale(0);
    transform: scale(0);
	-webkit-transition: all 0.3s linear;
	-moz-transition: all 0.3s linear;
	-o-transition: all 0.3s linear;
	transition: all 0.3s linear;
}

.download-container {
	margin:30px 0;
	overflow: hidden;
	padding: 20px 20px 25px;
	background: #fff;
	border-radius: 5px;
	-moz-border-radius: 5px;
	-webkit-border-radius: 5px;
	min-height: 350px;
	color:black;
}

.download
{
	margin:60px 0 0 0;
}

.download h2 {
	text-transform: uppercase;
	border-bottom: 1px solid #ffffff;
	padding-bottom: 21px;
	text-shadow: 0 1px rgba(0,0,0,.2);
	color: white;
	margin-bottom: 23px;
	font-size:2.2rem;
}

.download a
{
	color:white;
	text-decoration:none;
}

.download a:hover
{
	text-decoration:none;
}

.download .btn
{
	background: #80a9da;
	background: -webkit-linear-gradient(top, #80a9da 0%, #6f97c5 100%);
	background: -moz-linear-gradient(top, #80a9da 0%, #6f97c5 100%);
	background: linear-gradient(top, #80a9da 0%, #6f97c5 100%);
	padding:10px 40px;
	width:100%;
	height: 90px;
	display: inline-block;
	position: relative;
	border: 1px solid #5d81ab;
	-webkit-box-shadow: 0px 1px 1px rgba(255,255,255,0.8) inset, 1px 1px 3px rgba(0,0,0,0.2);
	-moz-box-shadow: 0px 1px 1px rgba(255,255,255,0.8) inset, 1px 1px 3px rgba(0,0,0,0.2);
	box-shadow: 0px 1px 1px rgba(255,255,255,0.8) inset, 1px 1px 3px rgba(0,0,0,0.2);
	-webkit-border-radius: 4px;
	-moz-border-radius: 4px;
	border-radius: 4px;
	clear: both;
	margin: 10px 0px;
	overflow: hidden;
	-webkit-transition: box-shadow 0.1s ease-in-out;
	-moz-transition: box-shadow 0.1s ease-in-out;
	-o-transition: box-shadow 0.1s ease-in-out;
	transition: box-shadow 0.1s ease-in-out;
}

.btn-icon-right {
	position: absolute;
	right: 0px;
	top: 0px;
	height: 100%;
	width: 70px;
	border-left: 1px solid #5d81ab;
	-webkit-box-shadow: 1px 0px 1px rgba(255,255,255,0.4) inset;
	-moz-box-shadow: 1px 0px 1px rgba(255,255,255,0.4) inset;
	box-shadow: 1px 0px 1px rgba(255,255,255,0.4) inset;
}

.btn-text {
	display: block;
	font-size: 30px;
	font-size: 3.0rem;
	text-shadow: 0px -1px 1px #5d81ab;
}

.btn-text small {
	display: block;
	font-size: 11px;
	font-size: 1.1rem;
	letter-spacing: 1px;
}

.btn-icon-right span {
	width: 38px;
	height: 38px;
	opacity: 0.7;
	-webkit-border-radius: 20px;
	-moz-border-radius: 20px;
	border-radius: 20px;
	position: absolute;
	left: 50%;
	top: 50%;
	margin: -20px 0px 0px -20px;
	border: 1px solid rgba(0,0,0,0.5);
	background: #5b5b5b url(/theme/images/arrow_download.png) no-repeat center center;
	-webkit-box-shadow: 0px 1px 1px rgba(255,255,255,0.3) inset, 0px 1px 2px rgba(255,255,255,0.5);
	-moz-box-shadow: 0px 1px 1px rgba(255,255,255,0.3) inset, 0px 1px 2px rgba(255,255,255,0.5);
	box-shadow: 0px 1px 1px rgba(255,255,255,0.3) inset, 0px 1px 2px rgba(255,255,255,0.5);
	-webkit-transition: all 0.3s ease-in-out;
	-moz-transition: all 0.3s ease-in-out;
	transition: all 0.3s ease-in-out;
}

.download .btn:hover .btn-icon-right span {
    opacity:1;
    background-color:#bc3532;
}

.download .btn:hover{
    -webkit-box-shadow:0px 1px 1px rgba(255,255,255,0.8) inset, 2px 2px 5px rgba(0,0,0,0.4);
    -moz-box-shadow:0px 1px 1px rgba(255,255,255,0.8) inset, 2px 2px 5px rgba(0,0,0,0.4);
    box-shadow:0px 1px 1px rgba(255,255,255,0.8) inset, 2px 2px 5px rgba(0,0,0,0.4);
}

.download .btn:active{
    position:relative;
    top:1px;
    background:#5d81ab;
    -webkit-box-shadow:1px 1px 2px rgba(0,0,0,0.4) inset;
    -moz-box-shadow:1px 1px 2px rgba(0,0,0,0.4) inset;
    box-shadow:1px 1px 2px rgba(0,0,0,0.4) inset;
    border-color:#80a9da;
}

.download .btn.disabled {
	background: gray;
	border: 1px solid #333;
}
.download .btn.disabled:hover{
    box-shadow:none;
}
.download .btn.disabled:active {
    position:relative;
    top:0px;
    background:gray;
    box-shadow:initial inset;
    border-color:#333;
}

.webstore-link
{
	margin: 10px 0px;
}

.webstore-link img
{
	width:100%;
}

.download-info-box
{
	background-color:white;
	border-radius:3px;
	margin:15px 0;
	padding:15px;
	color:#555;
	box-shadow: 0px 1px 1px rgba(255,255,255,0.8) inset, 1px 1px 3px rgba(0,0,0,0.2);
}

.bookmarklet
{
	background-color:white;
	border-radius:3px;
	margin:15px 0;
	padding:15px;
	color:#555;
	box-shadow: 0px 1px 1px rgba(255,255,255,0.8) inset, 1px 1px 3px rgba(0,0,0,0.2);
}

.bookmarklet img
{
	width: 64px;
	vertical-align: top;
	margin-right: 10px;
	float: left;
}

.bookmarklet .heading
{
	font-weight: bold;
	padding-bottom: 5px;
	display: block;
}

.android-badge
{
	width:172px;
	margin:20px auto;
}

.git-hub
{
	background-color:white;
	border-radius:3px;
	margin:15px 0;
	padding:15px;
	color:#555;
	box-shadow: 0px 1px 1px rgba(255,255,255,0.8) inset, 1px 1px 3px rgba(0,0,0,0.2);
	font-size:20px;
	font-size:2.0rem;
}

.git-hub .logo
{
	width: 64px;
	vertical-align: top;
	margin-right: 10px;
	float: left;
}

.git-hub .desc
{
	margin-top:15px;
}

.download-ext 
{
	background-color:var(--header-bg-color);
	border-radius:3px;
	margin:15px 0;
	padding:15px;
	color:#555;
	box-shadow: 0px 1px 1px rgba(255,255,255,0.8) inset, 1px 1px 3px rgba(0,0,0,0.2);
}
body.dark .download-ext {
    box-shadow: 0px 1px 1px rgba(0, 0, 0, 0.8) inset, 1px 1px 3px rgba(0, 0, 0, 0.2);
}

.download-ext .logo
{
	width: 64px;
	vertical-align: top;
	margin-right: 10px;
	float: left;
}

.download-ext .heading
{
	font-size:16px;
	font-size:1.6rem;
	font-weight:bold;
}

.section h3 {
	font-size: 20px;
	font-weight: 400;
	line-height: 20px;
	margin-bottom: 15px;
}
.section-back-ads {
	background: #f7f7f7 url("../images/back-pattern-01.png") repeat top left;
	color: #000;
	padding:15px 0;
}
.section-back-part-chess
{
	background: #5a4c2d url(/theme/images/products/chess/chess-pattern.gif) repeat top left;
	color: white;
}
body.dark .section-back-part-chess {
    background: #333;
}
.section-back-patr-taskbar
{
	background: #335696 url(/theme/images/patt-06.jpg) repeat top left;
	color: white;
}
body.dark .section-back-patr-taskbar {
    background: #333;
}
.section-back-patr-usb
{
	background: #dddddd url(/theme/images/patt-05.png) repeat top left;
}
body.dark .section-back-patr-usb {
    background: none;
}
.section-back-dst-action-bar {
	background: linear-gradient(to top, #f3f3f3 0%, #ccc 100%);
}
.section-back-patr-compass
{
	background-color: #666;
	background-image: url(/theme/images/compass-patt.gif);
	background-image:
	repeating-linear-gradient(120deg, rgba(255,255,255,.1), rgba(255,255,255,.1) 1px, transparent 1px, transparent 60px),
	repeating-linear-gradient(60deg, rgba(255,255,255,.1), rgba(255,255,255,.1) 1px, transparent 1px, transparent 60px),
	linear-gradient(60deg, rgba(0,0,0,.1) 25%, transparent 25%, transparent 75%, rgba(0,0,0,.1) 75%, rgba(0,0,0,.1)),
	linear-gradient(120deg, rgba(0,0,0,.1) 25%, transparent 25%, transparent 75%, rgba(0,0,0,.1) 75%, rgba(0,0,0,.1));
	background-size: 70px 120px;
	color:white;
}
.section-back-patr-dst
{
	background: linear-gradient(to top, #c0c8cd 0%, #54a3c5 100%);
	color: white;
}

.feature {
	margin: 15px 0 20px 0;
	padding-left: 75px;
	padding-right: 13px;
	position: relative;
	color: #555;
}

body.dark .feature {
    color: var(--text-color);
}

.feature > span {
	background-color: #666666;
	display: block;
	width: 60px;
	height: 60px;
	position: absolute;
	left: 0;
	top: 0;
	border-radius: 30px;
	-moz-border-radius: 30px;
	-webkit-border-radius: 30px;
	color: #ffffff;
	line-height: 60px;
	text-align: center;
	font-size: 27px;
	padding-top:7px;
}

.feature > span > img
{
	width:35px
}

#carousal-thumbs .item {	
	margin:15px 20px 15px 0;
	overflow: hidden;
	position: relative;
	text-align: center;
	-webkit-box-shadow: 1px 1px 2px #e6e6e6;
	-moz-box-shadow: 1px 1px 2px #e6e6e6;
	box-shadow: 1px 1px 2px #e6e6e6;
	box-shadow:         7px 7px 10px 0px rgba(50, 50, 50, 0.75);
}

#carousal-thumbs .item img{
	display: block;
	width: 100%;
	height: auto;
	 -webkit-transition: all 0.2s linear;
	-moz-transition: all 0.2s linear;
	-o-transition: all 0.2s linear;
	-ms-transition: all 0.2s linear;
	transition: all 0.2s linear;
}

#carousal-thumbs .item  .mask 
{
	width: 100%;
	height: 100%;
	position: absolute;
	overflow: hidden;
	top: 0;
	left: 0;
}

#carousal-thumbs .item h4
{
	text-transform: uppercase;
	color: #fff;
	text-align: center;
	position: relative;
	padding: 10px;
	background: rgba(0, 0, 0, 0.8);
	margin: 20px 0 0 0;
	display: block;
}

#carousal-thumbs  .item p {
	font-style: italic;
	font-size: 14px;
	font-size: 1.4rem;
	position: relative;
	color: #fff;
	padding: 10% 10%;
	text-align: center;
}

#carousal-thumbs a
{
	color:white;
}

#carousal-thumbs a.info {
	display: inline-block;
	text-decoration: none;
	padding: 7px 14px;
	background: #000;
	color: #fff;
	text-transform: uppercase;
	-webkit-box-shadow: 0 0 1px #000;
	-moz-box-shadow: 0 0 1px #000;
	box-shadow: 0 0 1px #000;
}

#carousal-thumbs .item  img {
   -webkit-transition: all 0.2s linear;
   -moz-transition: all 0.2s linear;
   -o-transition: all 0.2s linear;
   -ms-transition: all 0.2s linear;
   transition: all 0.2s linear;
}
#carousal-thumbs .item  .mask {
   -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
   filter: alpha(opacity=0);
   opacity: 0;
   background-color: rgba(115,146,184, 0.9);
   -webkit-transition: all 0.4s ease-in-out;
   -moz-transition: all 0.4s ease-in-out;
   -o-transition: all 0.4s ease-in-out;
   -ms-transition: all 0.4s ease-in-out;
   transition: all 0.4s ease-in-out;
   padding-top:15px;
}
#carousal-thumbs .item  h4 {
   -webkit-transform: translateY(-100px);
   -moz-transform: translateY(-100px);
   -o-transform: translateY(-100px);
   -ms-transform: translateY(-100px);
   transform: translateY(-100px);
   -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
   filter: alpha(opacity=0);
   opacity: 0;
   -webkit-transition: all 0.2s ease-in-out;
   -moz-transition: all 0.2s ease-in-out;
   -o-transition: all 0.2s ease-in-out;
   -ms-transition: all 0.2s ease-in-out;
   transition: all 0.2s ease-in-out;
}
#carousal-thumbs .item  p {
   -webkit-transform: translateY(100px);
   -moz-transform: translateY(100px);
   -o-transform: translateY(100px);
   -ms-transform: translateY(100px);
   transform: translateY(100px);
   -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
   filter: alpha(opacity=0);
   opacity: 0;
   -webkit-transition: all 0.2s linear;
   -moz-transition: all 0.2s linear;
   -o-transition: all 0.2s linear;
   -ms-transition: all 0.2s linear;
   transition: all 0.2s linear;
}

#carousal-thumbs .item  a.info {
   -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=0)";
   filter: alpha(opacity=0);
   opacity: 0;
   -webkit-transition: all 0.2s ease-in-out;
   -moz-transition: all 0.2s ease-in-out;
   -o-transition: all 0.2s ease-in-out;
   -ms-transition: all 0.2s ease-in-out;
   transition: all 0.2s ease-in-out;
}

#carousal-thumbs .item:hover .mask {
   -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
   filter: alpha(opacity=100);
   opacity: 1;
}
#carousal-thumbs .item:hover h4,
#carousal-thumbs .item:hover p,
#carousal-thumbs .item:hover a.info {
   -ms-filter: "progid: DXImageTransform.Microsoft.Alpha(Opacity=100)";
   filter: alpha(opacity=100);
   opacity: 1;
   -webkit-transform: translateY(0px);
   -moz-transform: translateY(0px);
   -o-transform: translateY(0px);
   -ms-transform: translateY(0px);
   transform: translateY(0px);
}
#carousal-thumbs .item:hover p {
   -webkit-transition-delay: 0.1s;
   -moz-transition-delay: 0.1s;
   -o-transition-delay: 0.1s;
   -ms-transition-delay: 0.1s;
   transition-delay: 0.1s;
}
#carousal-thumbs .item:hover a.info {
   -webkit-transition-delay: 0.2s;
   -moz-transition-delay: 0.2s;
   -o-transition-delay: 0.2s;
   -ms-transition-delay: 0.2s;
   transition-delay: 0.2s;
}

.fileupload-loading
{
}

/* File DropZone Plug-in */
.dropzone,
.dropzone *,
.dropzone-previews,
.dropzone-previews * {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.dropzone {
	min-height: 300px;
	-webkit-border-radius: 3px;
	padding: 30px 0 0 0;
	cursor:pointer;
}
.dropzone.dz-clickable {
  cursor: pointer;
}
.dropzone.dz-clickable .dz-message,
.dropzone.dz-clickable .dz-message span {
  cursor: pointer;
}
.dropzone.dz-clickable * {
  cursor: default;
}
.dropzone .dz-message {
  opacity: 1;
  -ms-filter: none;
  filter: none;
}
.dropzone.dz-drag-hover {
  border-color: rgba(0,0,0,0.15);
  background: rgba(0,0,0,0.04);
}
.dropzone.dz-started .dz-message {
  display: none;
}
.dropzone .dz-preview,
.dropzone-previews .dz-preview {
  background: rgba(255,255,255,0.8);
  position: relative;
  display: inline-block;
  margin: 17px;
  vertical-align: top;
  border: 1px solid #acacac;
  padding: 6px 6px 6px 6px;
}
.dropzone .dz-preview.dz-file-preview [data-dz-thumbnail],
.dropzone-previews .dz-preview.dz-file-preview [data-dz-thumbnail] {
  display: none;
}
.dropzone .dz-preview .dz-details,
.dropzone-previews .dz-preview .dz-details {
  width: 210px;
  position: relative;
  background: #ebebeb;
  padding: 5px;
  margin-bottom: 22px;
}
.dropzone .dz-preview .dz-details .dz-filename,
.dropzone-previews .dz-preview .dz-details .dz-filename {
  overflow: hidden;
  height: 100%;
}
.dropzone .dz-preview .dz-details img,
.dropzone-previews .dz-preview .dz-details img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100px;
  height: 100px;
}
.dropzone .dz-preview .dz-details .dz-size,
.dropzone-previews .dz-preview .dz-details .dz-size {
  position: absolute;
  bottom: -28px;
  left: 3px;
  height: 28px;
  line-height: 28px;
}
.dropzone .dz-preview.dz-error .dz-error-mark,
.dropzone-previews .dz-preview.dz-error .dz-error-mark {
  display: block;
}
.dropzone .dz-preview.dz-success .dz-success-mark,
.dropzone-previews .dz-preview.dz-success .dz-success-mark {
  display: block;
}
.dropzone .dz-preview:hover .dz-details img,
.dropzone-previews .dz-preview:hover .dz-details img {
  display: none;
}
.dropzone .dz-preview .dz-success-mark,
.dropzone-previews .dz-preview .dz-success-mark,
.dropzone .dz-preview .dz-error-mark,
.dropzone-previews .dz-preview .dz-error-mark {
  display: none;
  position: absolute;
  width: 40px;
  height: 40px;
  font-size: 30px;
  text-align: center;
  right: -10px;
  top: -10px;
}
.dropzone .dz-preview .dz-success-mark,
.dropzone-previews .dz-preview .dz-success-mark {
  color: #8cc657;
}
.dropzone .dz-preview .dz-error-mark,
.dropzone-previews .dz-preview .dz-error-mark {
  color: #ee162d;
}
.dropzone .dz-preview .dz-progress,
.dropzone-previews .dz-preview .dz-progress {
  position: absolute;
  left: 6px;
  right: 6px;
  height: 6px;
  background: #d7d7d7;
  display: none;
}
.dropzone .dz-preview .dz-progress .dz-upload,
.dropzone-previews .dz-preview .dz-progress .dz-upload {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 0%;
  background-color: #8cc657;
}
.dropzone .dz-preview.dz-processing .dz-progress,
.dropzone-previews .dz-preview.dz-processing .dz-progress {
  display: block;
}
.dropzone .dz-preview .dz-error-message,
.dropzone-previews .dz-preview .dz-error-message {
  display: none;
  position: absolute;
  top: -5px;
  left: -20px;
  background: rgba(245,245,245,0.8);
  padding: 8px 10px;
  color: #800;
  min-width: 140px;
  max-width: 500px;
  z-index: 500;
}
.dropzone .dz-preview:hover.dz-error .dz-error-message,
.dropzone-previews .dz-preview:hover.dz-error .dz-error-message {
  display: block;
}
.dropzone {
  border: 1px solid rgba(0,0,0,0.03);
  min-height: 300px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  background: rgba(0,0,0,0.03);
}
.dropzone .dz-default.dz-message {
  opacity: 1;
  -ms-filter: none;
  filter: none;
  -webkit-transition: opacity 0.3s ease-in-out;
  -moz-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  -ms-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
  background-image: url("../images/products/upload-file.png");
  background-repeat: no-repeat;
  background-position: 0 0;
  position: absolute;
  width: 240px;
  height: 180px;
  margin: 15px;
}
body.dark .dropzone .dz-default.dz-message {
    filter: invert();
}
.dropzone .dz-default.dz-message span {
  display: none;
}
.dropzone.dz-square .dz-default.dz-message {
  background-position: 0 -123px;
  width: 268px;
  margin-left: -134px;
  height: 174px;
  margin-top: -87px;
}
.dropzone.dz-drag-hover .dz-message {
  opacity: 0.15;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=15)";
  filter: alpha(opacity=15);
}
.dropzone.dz-started .dz-message {
  display: block;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
}
.dropzone .dz-preview,
.dropzone-previews .dz-preview {
  -webkit-box-shadow: 1px 1px 4px rgba(0,0,0,0.16);
  box-shadow: 1px 1px 4px rgba(0,0,0,0.16);
  font-size: 14px;
}
.dropzone .dz-preview.dz-image-preview:hover .dz-details img,
.dropzone-previews .dz-preview.dz-image-preview:hover .dz-details img {
  display: block;
  opacity: 0.1;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=10)";
  filter: alpha(opacity=10);
}
.dropzone .dz-preview.dz-success .dz-success-mark,
.dropzone-previews .dz-preview.dz-success .dz-success-mark {
  opacity: 1;
  -ms-filter: none;
  filter: none;
}
.dropzone .dz-preview.dz-error .dz-error-mark,
.dropzone-previews .dz-preview.dz-error .dz-error-mark {
  opacity: 1;
  -ms-filter: none;
  filter: none;
}
.dropzone .dz-preview.dz-error .dz-progress .dz-upload,
.dropzone-previews .dz-preview.dz-error .dz-progress .dz-upload {
  background: #ee1e2d;
}
.dropzone .dz-preview .dz-error-mark,
.dropzone-previews .dz-preview .dz-error-mark,
.dropzone .dz-preview .dz-success-mark,
.dropzone-previews .dz-preview .dz-success-mark {
  display: block;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -webkit-transition: opacity 0.4s ease-in-out;
  -moz-transition: opacity 0.4s ease-in-out;
  -o-transition: opacity 0.4s ease-in-out;
  -ms-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out;
  background-image: url("../images/products/dropzone-sprite.png");
  background-repeat: no-repeat;
}
.dropzone .dz-preview .dz-error-mark span,
.dropzone-previews .dz-preview .dz-error-mark span,
.dropzone .dz-preview .dz-success-mark span,
.dropzone-previews .dz-preview .dz-success-mark span {
  display: none;
}
.dropzone .dz-preview .dz-error-mark,
.dropzone-previews .dz-preview .dz-error-mark {
  background-position: -268px -123px;
}
.dropzone .dz-preview .dz-success-mark,
.dropzone-previews .dz-preview .dz-success-mark {
  background-position: -268px -163px;
}
.dropzone .dz-preview .dz-progress .dz-upload,
.dropzone-previews .dz-preview .dz-progress .dz-upload {
  -webkit-animation: loading 0.4s linear infinite;
  -moz-animation: loading 0.4s linear infinite;
  -o-animation: loading 0.4s linear infinite;
  -ms-animation: loading 0.4s linear infinite;
  animation: loading 0.4s linear infinite;
  -webkit-transition: width 0.3s ease-in-out;
  -moz-transition: width 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out;
  -ms-transition: width 0.3s ease-in-out;
  transition: width 0.3s ease-in-out;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  position: absolute;
  top: 0;
  left: 0;
  width: 0%;
  height: 100%;
  background-image: url("../images/products/dropzone-sprite.png");
  background-repeat: repeat-x;
  background-position: 0px -400px;
}
.dropzone .dz-preview.dz-success .dz-progress,
.dropzone-previews .dz-preview.dz-success .dz-progress {
  display: block;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -webkit-transition: opacity 0.4s ease-in-out;
  -moz-transition: opacity 0.4s ease-in-out;
  -o-transition: opacity 0.4s ease-in-out;
  -ms-transition: opacity 0.4s ease-in-out;
  transition: opacity 0.4s ease-in-out;
}
.dropzone .dz-preview .dz-error-message,
.dropzone-previews .dz-preview .dz-error-message {
  display: block;
  opacity: 0;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
  filter: alpha(opacity=0);
  -webkit-transition: opacity 0.3s ease-in-out;
  -moz-transition: opacity 0.3s ease-in-out;
  -o-transition: opacity 0.3s ease-in-out;
  -ms-transition: opacity 0.3s ease-in-out;
  transition: opacity 0.3s ease-in-out;
}
.dropzone .dz-preview:hover.dz-error .dz-error-message,
.dropzone-previews .dz-preview:hover.dz-error .dz-error-message {
  opacity: 1;
  -ms-filter: none;
  filter: none;
}
.dropzone a.dz-remove,
.dropzone-previews a.dz-remove {
  background-image: -webkit-linear-gradient(top, #fafafa, #eee);
  background-image: -moz-linear-gradient(top, #fafafa, #eee);
  background-image: -o-linear-gradient(top, #fafafa, #eee);
  background-image: -ms-linear-gradient(top, #fafafa, #eee);
  background-image: linear-gradient(to bottom, #fafafa, #eee);
  -webkit-border-radius: 2px;
  border-radius: 2px;
  border: 1px solid #eee;
  text-decoration: none;
  display: block;
  padding: 4px 5px;
  text-align: center;
  color: #aaa;
  margin-top: 26px;
}
.dropzone a.dz-remove:hover,
.dropzone-previews a.dz-remove:hover {
  color: #666;
}
@-moz-keyframes loading {
  from {
    background-position: 0 -400px;
  }
  to {
    background-position: -7px -400px;
  }
}
@-webkit-keyframes loading {
  from {
    background-position: 0 -400px;
  }
  to {
    background-position: -7px -400px;
  }
}
@-o-keyframes loading {
  from {
    background-position: 0 -400px;
  }
  to {
    background-position: -7px -400px;
  }
}
@keyframes loading {
  from {
    background-position: 0 -400px;
  }
  to {
    background-position: -7px -400px;
  }
}

.uploader-loading
{
	width:160px;
	margin: 20px auto;
}

.how-it-works h3
{
	font-weight:bold;
	color:blue;
	margin-bottom: 5px;
}

.revisionDetail .revisionDate {
	font-weight: bold;
	padding-top: 15px;
}

.revisionDetail .bullet-list {
	list-style-type: circle;
	margin: 5px 0 0 50px;
	padding: 0;
}

.product-reviews .row > div
{
	padding-bottom:15px;
}

/* Subtitles Editor */

body.dark #subtitles-action-bar {
    color: black;
}
body.dark #subtitles-action-bar a {
    color: black;
}

#subtitles-action-bar .row {
	margin-bottom:10px;
}

#google_translate_element {
	float:left;
	margin:-4px 0 0 6px;
}

#subtitles-editor-section, #subtitles-action-bar {
	display:none;
	direction: ltr !important;
}

#subtitles-editor {
	max-height: 800px;
	overflow: auto;
	clear: both;
	padding-right:5px;
	font-size: 1.1em;
}

#subtitles-editor table {
    border-collapse: collapse;
    position: relative;
}

#subtitles-editor table th:after,
#subtitles-editor table th:before {
    content: '';
    position: absolute;
    left: 0;
    width: 100%;
}

#subtitles-editor table th:before {
    top: -1px;
    border-top: 1px solid #C6C6C6;
}

#subtitles-editor table th:after {
    bottom: -1px;
    border-bottom: 1px solid #C6C6C6;
}

#subtitles-editor table th, #subtitles-editor table  td {
    border: 1px solid #C6C6C6;
}

#subtitles-editor .subtitleTable th {
	background-color: #E6EDF1;
	font-weight: bold;
    padding: 5px;
    position: sticky;
    top: 0; /* required for the stickiness */
}

body.dark #subtitles-editor .subtitleTable th {
    background-color: var(--header-bg-color);
}

#dstFindAndReplaceDlg
{
	display:none;
}
#dstFindAndReplaceDlg > div {
	padding: 5px 0px 5px 0px;
}
#dstFindText {
	font-weight: bold;
}

/* Product Info Slider */

.slider-wrapper
{
}

@media (max-width: 480px) {
  .slider-wrapper {
    width:100%;
  }
  
  .compass-images {
	display:none;
  }
}
.slider-container
{
	float:left;
	width: 100%;
	position:relative; 
	top: 0px; 
	left: 0px; 
}

.image-slider-container
{
	float:left;
	width: 100%;
	position:relative; 
	top: 0px; 
	left: 0px; 
}

.slides
{
	cursor: move; 
	position: absolute; 
	overflow: hidden; 
	left: 0px; 
	top: 0px; 
}

.slide {
}

.slide .text {
	position: absolute;
	padding: 7px;
	-webkit-border-radius:5px;
	-moz-border-radius:5px;
	border-radius:5px;
	background-color: #000;
	background-color: rgba(0, 0, 0, .5);
	color: #fff;
	text-align: center;
	line-height: 1.2;
}

.slide-rounded-shadow {
	background-color:#222;
	border: solid 5px #222;
	box-shadow: 1px 1px 6px #111;
	-webkit-box-shadow: 1px 1px 6px #111;
	-moz-box-shadow: 1px 1px 6px #111;
	border-radius:5px;
	-moz-border-radius:5px;
	-webkit-border-radius:5px;
	overflow: hidden;
}

.slide-bullets div, .slide-bullets div:hover, .slide-bullets .av
{
	background: url(../images/home/bullets.png) no-repeat;
	overflow:hidden;
	cursor: pointer;
}
.slide-bullets div { background-position: -7px -7px; }
.slide-bullets div:hover, .jssorb05 .av:hover { background-position: -37px -7px; }
.slide-bullets .av { background-position: -67px -7px; }
.slide-bullets .dn, .slide-bullets .dn:hover { background-position: -97px -7px; }

.faq-wrapper {
}

.faq-wrapper .question-wrapper {
	background: var(--header-bg-color);
	margin-bottom: 6px;
	padding: 24px;
	box-shadow: 0 1px 2px rgba(0, 0, 0, 0.08);
	-webkit-transition: box-shadow 0.2s;
	-moz-transition: box-shadow 0.2s;
	transition: box-shadow 0.2s;
}

.faq-wrapper .question-wrapper .question {
	font-size: 2rem;
	font-weight: 600;
	margin: 0;
	position: relative;
	display: block;
	line-height: 1.2;
	text-decoration:none;
}

.faq-wrapper .question-wrapper .content {
	padding: 1em 0 0 0;
	font-size:1.2em;
}

.faq-wrapper .question-wrapper .content.hidden {
	display:none;
}

.faq-wrapper .question-wrapper .content p {
	margin-top:15px;
}

.download-dst
{
	margin:10px 0 0 0;
}

.join-honey { 
	text-align: center;
    background-color: white;
    padding: 10px 10px 0 10px;
    border-radius: 3px;
}

.product-info-block {
	background-color: var(--header-bg-color);
    border-radius: 3px;
    margin: 15px 0;
    padding: 15px;
    color: var(--section-info-color);
    box-shadow: 0px 1px 1px rgba(255,255,255,0.8) inset, 1px 1px 3px rgba(0,0,0,0.2);
}
.product-info-block .text {
	float:left;
	font-weight:bold;
}
.product-info-block .text a {
	font-size: 0.9em;
    color: var(--section-info-color);
}
.product-info-block .text a:hover {
	text-decoration:underline;
}
.paypal-button {
	background: #ffc439;
    color: #111;
	border-radius: 18px;
	height:35px;
	position: relative;
	transition: opacity 0.25s ease-in-out;
	box-sizing: border-box;
	text-align: center;
	padding: 5px;
	width:50%;
}
.paypal-button:hover {
    box-shadow: inset 0 0 100px 100px rgba(0, 0, 0, 0.05);
}
.paypal-button img {
	height: 100%;
}

body.dark #divMoreNewsButton img {
    filter: invert();
}