﻿#ws-module *,
#ws-module *:before,
#ws-module *:after {
	box-sizing: border-box;
	position: relative;
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	vertical-align: baseline;
	background: transparent;
	cursor: default;

	-webkit-user-select: none;
	-khtml-user-select: none;
	-moz-user-select: none;
	-o-user-select: none;
	-ms-user-select: none;
	user-select: none;
}

#ws-module {
	display: block;
	position: fixed;
	z-index: 9999;

	font-family: sans-serif;
	font-size: 1em;
	line-height: 2;
	text-align: center;

	transition: transform 0.3s ease;
}

#ws-module a,
#ws-module a:hover,
#ws-module a:active,
#ws-module a:focus {
	text-decoration: none;
}

#ws-module .ws-none {
	display: none !important;
}

#ws-module #ws-badge {
	display: block;
	position: absolute;
	width: 50px;
	height: 50px;
	top: 0;
	font-size: 0;
	background: #FFFFFF;
	box-shadow: -1px 2px 6px 1px rgba(0, 0, 0, 0.1);
}

#ws-module #ws-badge svg {
	fill: #0994d4;
}

#ws-module.ws-connected #ws-badge svg {
	fill: #4cce62;
}

#ws-module #ws-content {
	display: block;
	width: auto;
	height: auto;
	padding: 10px 30px;
	background: #FFFFFF;
	box-shadow: -1px 2px 6px 1px rgba(0, 0, 0, 0.1);
	min-width:172px;
	transition: all 0.3s ease;
}

#ws-module.ws-closed #ws-content {
	box-shadow: -1px 2px 6px 1px rgba(0, 0, 0, 0);
}

#ws-module #ws-template-start,
#ws-module #ws-template-connecting,
#ws-module #ws-template-connected {
	display: none;
}

#ws-module.ws-start #ws-template-start,
#ws-module.ws-connecting #ws-template-connecting,
#ws-module.ws-connected #ws-template-connected {
	display: block;
}

#ws-module .ws-text {
	display: block;
	color: #808080;
}

#ws-module .ws-text.ws-highlighted {
	color: #0994d4;
}

#ws-module .ws-separator {
	display: block;
	width: 100%;
	height: 1px;
	margin: 8px auto;
	background: linear-gradient(to right, #eeeeee 0%,#dddddd 50%,#eeeeee 100%);
}

#ws-module .ws-btn {
	display: inline-block;
	height: 30px;
	line-height: 30px;
	margin: 10px auto;
	padding: 0 16px;
	color: #FFFFFF;
	background: #0994d4;
	border-radius: 6px;
	cursor: pointer;

	transition: all 0.3s ease;
}

#ws-module .ws-btn:hover {
	background: #0474C2;
}

#ws-module .ws-btn.ws-btn-end {
	color: #FFFFFF;
	background: #f66c64;
}

#ws-module .ws-btn.ws-btn-end:hover {
	background: #f14c45;
}

#ws-module #ws-code,
#ws-module #ws-code2 {
	pointer-events: none;
}

#ws-module .ws-img {
	display: block;
	width: 30px;
	height: 30px;
	margin: 0 auto;
	font-size: 0;
}

#ws-module .ws-img .ws-loading,
#ws-module .ws-img .ws-ready,
#ws-module .ws-img .ws-failed {
	width: 100%;
	height: 100%;
}

#ws-module .ws-img .ws-loading svg {
	stroke: #0994d4;
}

#ws-module .ws-img .ws-ready svg {
	stroke: #4cce62;
}

#ws-module .ws-img .ws-failed svg {
	stroke: #f66c64;
}

.ws-img {
	display: block;
	width: 30px;
	height: 30px;
	margin: 0 auto;
	font-size: 0;
}

.ws-img .ws-loading
{
	width: 100%;
	height: 100%;
}

.ws-img .ws-loading svg {
	stroke: #0994d4;
}

#ws-module #ws-generate {
	display: block;
	height: auto;
}

#ws-module #ws-generate .ws-img {
	margin: 10px auto;
}

/* Start state */

#ws-module #ws-generate #ws-generate-btn {
	display: inline-block;
}

#ws-module #ws-generate .ws-img {
	display: none;
}

#ws-module #ws-generate #ws-code {
	display: none;
}

/* Loading state */

#ws-module #ws-generate.ws-state-loading #ws-generate-btn {
	display: none;
}

#ws-module #ws-generate.ws-state-loading .ws-img {
	display: block;
}

#ws-module #ws-generate.ws-state-loading #ws-code {
	display: none;
}

/* Ready state */

#ws-module #ws-generate.ws-state-ready #ws-generate-btn {
	display: none;
}

#ws-module #ws-generate.ws-state-ready .ws-img {
	display: none;
}

#ws-module #ws-generate.ws-state-ready #ws-code {
	display: inline-block;
}

#ws-module .ws-row {
	display: table;
	border-collapse: collapse;
	margin: 0 auto;
}

#ws-module .ws-row:before,
#ws-module .ws-row:after {
	content: "";
	display: table;
}

#ws-module .ws-row:after {
	clear: both;
}

#ws-module .ws-row .ws-text,
#ws-module .ws-row .ws-img {
	display: table-cell;
	vertical-align: middle;
}

#ws-module .ws-row .ws-text {
	padding-left: 10px;
}

#ws-module .ws-row .ws-loading,
#ws-module .ws-row .ws-ready,
#ws-module .ws-row .ws-failed {
	display: none;
}

#ws-module .ws-row.ws-state-loading .ws-loading,
#ws-module .ws-row.ws-state-ready .ws-ready,
#ws-module .ws-row.ws-state-failed .ws-failed {
	display: block;
}

#ws-module #ws-watermark {
	display: block !important;
	position: absolute !important;
	width: 100% !important;
	top: -20px !important;
	font-size: 10px !important;
}

#ws-module #ws-watermark a,
#ws-module #ws-watermark a:hover {
	color: #808080;
	cursor: pointer;
}

#ws-module.ws-left {
	top: 150px;
	left: 0;
}

#ws-module.ws-left.ws-closed {
	-webkit-transform: translateX(-100%);
	transform: translateX(-100%);
}

#ws-module.ws-left #ws-badge {
	right: -50px;
	border-radius: 0 50% 50% 0;
}

#ws-module.ws-left #ws-content {
	border-radius: 0 0 20px 0;
}

#ws-module.ws-right {
	top: 150px;
	right: 0;
}

#ws-module.ws-right.ws-closed {
	-webkit-transform: translateX(100%);
	transform: translateX(100%);
}

#ws-module.ws-right #ws-badge {
	left: -50px;
	border-radius: 50% 0 0 50%;
}

#ws-module.ws-right #ws-content {
	border-radius: 0 0 0 20px;
}

#ws-module.ws-top-fixed {
	top: 0;
	right: 0;
}

#ws-module.ws-top-fixed #ws-badge {
	left: -50px;
	border-radius: 50% 0 0 50%;
}

#ws-module.ws-top-fixed #ws-content {
	padding: 0px 20px 0px 20px;
	width: 250px;
}

#ws-websupport.ws-top-fixed {
	display: inline-block;
	margin: 10px auto;
}
#ws-first-spinner.ws-top-fixed{
	margin: 0 auto !important;
	vertical-align: middle;
}

#ws-generate.ws-top-fixed, #ws-websupport2.ws-top-fixed{
	display: inline-block !important;
}

#ws-generate.ws-top-fixed{
	width: 120px;
}

#ws-template-connecting .ws-top-fixed{
	height: 50px;
	padding-top: 10px;
	padding-bottom: 10px;
	display: inline-block;
	text-align: center;
	text-align: -webkit-center;
}

#ws-websupport2{
	padding-right:10px;
}

#ws-module.ws-top-fixed #ws-generate.ws-state-loading .ws-img {
	display: inline-block;
}

#ws-module.ws-top {
	width: 100%;
	top: 100px; /* menu height */
	left: 0;
}

#ws-module.ws-top.ws-closed {
	-webkit-transform: translateY(-100%);
	transform: translateY(-100%);
}

#ws-module.ws-top #ws-badge {
	display: none;
}

#ws-module.ws-top #ws-content {
	padding: 10px 10px 35px 10px;
	border-radius: 0;
}

#ws-module.ws-top.ws-closed #ws-content {
	box-shadow: -1px 2px 6px 1px rgba(0, 0, 0, 0);
}

#ws-module.ws-top #ws-watermark {
	-webkit-transform: translateY(-35px);
	transform: translateY(-35px);
}

#ws-module.ws-bottom {
	width: 100%;
	bottom: 0; /* footer height */
	left: 0;
}

#ws-module.ws-bottom.ws-closed {
	-webkit-transform: translateY(100%);
	transform: translateY(100%);
}

#ws-module.ws-bottom #ws-badge {
	display: none;
}

#ws-module.ws-bottom #ws-content {
	padding: 10px 10px 35px 10px;
	border-radius: 0;
}

#ws-module.ws-bottom.ws-closed #ws-content {
	box-shadow: -1px 2px 6px 1px rgba(0, 0, 0, 0);
}

#ws-module.ws-bottom #ws-watermark {
	-webkit-transform: translateY(-35px);
	transform: translateY(-35px);
}

#ws-module.ws-ie .ws-loading svg {
	display: none !important;
}

#ws-module.ws-ie .ws-loading {
	background: transparent url(loading.gif) center center no-repeat;
}

#ws-module.ws-ie .ws-ready svg {
	display: none !important;
}

#ws-module.ws-ie .ws-ready {
	background: transparent url(ready-icon.png) center center no-repeat;
}

#ws-module.ws-ie .ws-failed svg {
	display: none !important;
}

#ws-module.ws-ie .ws-failed {
	background: transparent url(failed-icon.png) center center no-repeat;
}

.cbr-modal {
	position: fixed;
	width: auto;
	height: auto;
	font-family: sans-serif;
	font-weight: 300;
	font-size: 18px;
	line-height: 26px;
	z-index: 1000000;

	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

#cbr-modal-overlay {
	position: fixed !important;
	width: 100% !important;
	height: 100% !important;
	top: 0 !important;
	left: 0 !important;
	background: rgba(0, 0, 0, 0.666);
	z-index: 999999;
	transition: all 0.3s linear;
}

.cbr-modal-content {
	position: relative;
	width: auto;
	height: auto;
	margin: 0 auto;
	padding: 30px;
	text-align: center;
	background: #FFFFFF;
	border-radius: 10px;
}

.cbr-modal-message {
	display: block;
	clear: both;
	float: none;
	margin: 0 auto 15px;
}

.cbr-modal-bold{
	font-weight: 600;
}

.cbr-modal-content span.btn {
	display: inline-block;
	position: relative;
	margin: 0 3px 10px;
	padding: 0 10px;
	line-height: 34px;
	color: #FFFFFF;
	font-size: 18px;
	font-weight: 300;
	background: #4cce62;
	border-radius: 7px;
	cursor: pointer;
	transition: all 0.3s ease;
}

.cbr-modal-content span.btn:hover {
	background: #31ba43;
}

.cbr-modal-content span.btn.deny {
	background: #f66c64;
}

.cbr-modal-content span.btn.deny:hover {
	background: #f14c45;
}

.cbr-modal-hide {
	visibility: hidden;
	position: absolute !important;
	top: -9999px !important;
	left: -9999px !important;
}

.cbr-modal-show {
	visibility: visible;
}

.cbr-modal-show ~ #cbr-modal-overlay {
	visibility: visible;
	opacity: 1;
}

.cbr-modal #cbr-logo {
	width: 100%;
	height: 57px;
	margin-bottom: 30px;
	background: transparent url(logo-large.png) center center no-repeat;
}

#ws-module  .cbr-logo-mini {
	height: 20px;
	background: transparent url(logo-large.png) center center no-repeat;
	background-size: 112px 20px;
}

#cbr-spinner-big {
	margin: 0 auto;
	background: transparent url(loading_large.gif) center left no-repeat;
	width: 32px;
	height: 32px;
}

.cbr-modal ul {
	display: inline-block;
	position: relative;
	width: auto;
	margin-top: 15px;
	text-align: left;
	font-size: 16px;
	font-style: italic;
}

.cbr-modal ul li span {
	line-height: 32px;
}

.cbr-modal svg {
	display: inline-block;
	width: 100%;
	height: 100%;
	vertical-align: middle;
	fill: #0994d4;
}

.cbr-modal div.icon {
	display: inline-block;
	position: relative;
	width: 20px;
	height: 20px;
	margin-right: 5px;
}

.cbr-modal ol,
.cbr-modal ul,
.cbr-modal li {
	top: 0;
	left: 0;
	list-style: none;
}

.cursor-large {
	pointer-events: none;
	position: absolute;
	width: 40px;
	height: 40px;
	opacity:1;
	z-index: 99999;
	transform: translate(-20px, -20px);
	-webkit-transform: translate(-20px, -20px);
}
.cursor-large.resize {
	width: 20px;
	height: 20px;
	opacity:0;
	transform: translate(-10px, -10px);
	-webkit-transform: translate(-10px, -10px);
}
.cursor-transition { transition:all 1s ease 0s; -webkit-transition:all 1s ease 0s;}

.pointerNullyfi{
	pointer-events: none;
}
