/**
 * @fileoverview index css
 * @author marco.l
 * @version 1.0
 * @since 2009-11-09

 * change
 * @author pedro.d
 * @version 1.0
 * @since 2015-09-15
 */

/**
 * css reset
 */

* {
	box-sizing: border-box;
}

html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td {
	margin: 0;
	padding: 0;
	border: 0;
	outline: 0;
	font-size: 100%;
	vertical-align: baseline;
	background: transparent
}

ol,
ul {
	list-style: none
}

blockquote,
q {
	quotes: none
}

blockquote:before,
blockquote:after,
q:before,
q:after {
	content: '';
	content: none
}

:focus {
	outline: 0
}

ins {
	text-decoration: none
}

del {
	text-decoration: line-through
}

table {
	border-collapse: collapse;
	border-spacing: 0
}

a {
	color: #00adee;
	cursor: pointer;
	text-decoration: none;
	border-bottom: 0px solid#00adee;
	-webkit-transition-property: all;
	-moz-transition-property: all;
	-o-transition-property: all;
	-ms-transition-property: all;
	transition-property: all;
	-webkit-transition-duration: 0.5s;
	-moz-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	-ms-transition-duration: 0.5s;
	transition-duration: 0.5s;
	-webkit-transition-timing-function: ease-out;
	-moz-transition-timing-function: ease-out;
	-o-transition-timing-function: ease-out;
	-ms-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}

a:hover{
	border-bottom: 1px solid #00adee;
}

a.cta {
    color: #f5f6fa;
    display: inline-table;
    padding: 16px 32px;
	background-color: #00adee;
	border: 1px solid #00adee;
	border-radius: 8px;
}

a.cta:hover {
	background-color:unset;
	border: 1px solid #f5f6fa;
	border-radius: 8px;
}

img.animatedGif {
    width: 35%;
    height: 35%;
    z-index: -1;
    transition: all 2s ease;
    margin-top: 30px;
}

.buttonGif_Container {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
}

.logo a{
	border-bottom: none;
}


html,
body {
	font-family: -apple-system, BlinkMacSystemFont, “Segoe UI”, Roboto, Helvetica,
		Arial, sans-serif;
	-webkit-font-smoothing: antialiased;
	-moz-osx-font-smoothing: grayscale;
	font-size: 16px;
	line-height: 24px;
	color: #303942;
	background-color: #f5f6fa;
}

#topblock {
	padding: 0 5%;
	line-height: 75px;
	overflow: hidden;
	background: transparent;
	position: fixed;
	z-index: 100;
	top: 0;
	right: 0;
	bottom: auto;
	left: 0;
	width: auto;
	height: auto;
	display: flex;
	justify-content: center;
	z-index: 0;
}

svg{
	vertical-align: middle;	
}

svg#dark {
	opacity: 0;
	transition: all 2s ease;
	pointer-events: none;
}

svg#light {
	opacity: 1;
	transition: all 2s ease;
}

@media only screen and (min-width: 1001px) {
	svg#dark {
		display: none;
	}
  }

@media only screen and (max-width: 1000px) {
	svg#dark {
		opacity: 1;
		transition: all 2s ease;
		pointer-events: pointer;
	}
	svg#light {
		opacity: 0;
		transition: all 2s ease;
	}
  }

#bigHalfLeft{
	width: 60%;
	height: 100vh;
	min-height: 600px;
	position: absolute;
	z-index: 10;
	right: 0;
	transition: all 2s ease;
}

@media only screen and (max-width: 1000px) {
	#bigHalfLeft {
		width: 100%;
		transition: all 2s ease;
	}
  }

#frame {
	margin: auto auto;
	width: 500px;
	top: 50%;
	left: 50%;
	-ms-transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
	transform: translate(-50%,-50%);
	position: absolute;
	z-index: 0;
}

@media only screen and (max-width: 500px) {
	#frame {
		width: 100%;
		}
  }


#stage {
	background: #ffffff;
    border-radius: 8px;
    box-shadow: 0px 0px 8px 0px rgba(155,155,155,.4);
	padding: 40px;
	overflow: auto;
	max-height: 1000px;
}

@media only screen and (max-height: 700px) {
	#stage {
		max-height: 450px;
		transition: all 2s ease;
	}
  }

label {
    color: #7B8186;
    display: block;
    font-size: 16px;
    line-height: 24px;
    margin: 0px 0px 4px;
}

.textfield,
textarea {
	background-color: #f5f6fa;
    border: none;
    border-radius: 8px;
    font-size: 16px;
    margin-bottom: 16px;
	padding: 8px 16px;
	width: 100%;
	-webkit-transition-property: box-shadow;
	-moz-transition-property: box-shadow;
	-o-transition-property: box-shadow;
	-ms-transition-property: box-shadow;
	transition-property: box-shadow;
	-webkit-transition-duration: 0.5s;
	-moz-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	-ms-transition-duration: 0.5s;
	transition-duration: 0.5s;
	-webkit-transition-timing-function: ease-out;
	-moz-transition-timing-function: ease-out;
	-o-transition-timing-function: ease-out;
	-ms-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}

.textfield:focus {
	box-shadow: 0px 0px 8px 0px rgba(155,155,155,.4);
	-webkit-box-shadow: 0px 0px 8px 0px rgba(155,155,155,.4);
	-moz-box-shadow: 0px 0px 8px 0px rgba(155,155,155,.4);
}

input[name="password"] {
    margin: 0px 0px 40px;
}

textarea {
	margin-bottom: 16px;
	font-size: 16px;
	line-height: 24px;
}


button{
	background: #00adee;
    border: none;
    border-radius: 8px;
    color: #f5f6fa;
    cursor: pointer;
    display: block;
    font-size: 14px;
    font-weight: normal;
    margin: auto auto;
    padding: 12px 24px;
    width: 200px;
	-webkit-transition-property: all;
	-moz-transition-property: all;
	-o-transition-property: all;
	-ms-transition-property: all;
	transition-property: all;
	-webkit-transition-duration: 0.5s;
	-moz-transition-duration: 0.5s;
	-o-transition-duration: 0.5s;
	-ms-transition-duration: 0.5s;
	transition-duration: 0.5s;
	-webkit-transition-timing-function: ease-out;
	-moz-transition-timing-function: ease-out;
	-o-transition-timing-function: ease-out;
	-ms-transition-timing-function: ease-out;
	transition-timing-function: ease-out;
}

button:hover {
	background: #303942;
}

.buttons-panel span,
.backtologin {
    clear: both;
    display: block;
    float: none;
    margin: 16px 0 0 0;
	text-align: center;
	font-size: 12px;
	color: #7B8186;
	cursor: pointer;
}

 #contacts {
	display: flex;
	align-items: center;
	justify-content: center;
	margin: auto auto;
	width: 100%;
	line-height: 16px;
	margin-top: 24px;
	flex-wrap: wrap;
}

#contacts li {
	padding: 0 16px 0 8px;
	margin: 16px 0;
}

#contacts a {
	margin: 0 16px;
	font-size: 12px;
	color: #7B8186;
}

#contacts .phone-link {
	background: url(../bin.v02/sprite.svg) 0px -20px no-repeat;
}

#contacts .livesupport-link {
	background: url(../bin.v02/sprite.svg) 0px -39px no-repeat;
}

#contacts .report-link {
	background: url(../bin.v02/sprite.svg) 0px -57px no-repeat;
}

#footer {
	bottom: 16px;
	right: 0;
	left: 0;
	width: auto;
	height: auto;
	text-align: center;
	position: absolute;
}

#copyright {
	font-size: 12px;
}

.ie7 body {
	overflow-y: scroll;
}

.hide {
	display: none;
}

.show {
	display: block;
}

#report-panel .backtologin,
#forgotPassword-panel .backtologin{
	background: none;
	padding: 0;
}

.checkbox-label {
	display: inline;
}

#phone-panel dl {
	overflow: hidden;
	margin-bottom: 40px;
}

#phone-panel h1,
#report-form h1,
#forgotPassword-panel h1,
#notCompatible-panel h1,
#ie8compatibility-panel h1 {
	font-size: 24px;
    line-height: calc(24px *1.4);
    margin-bottom: 24px;
}

#forgotPassword-panel p {
    margin-bottom: 24px;
}

#forgotPassword-panel form {
    height: auto !important;
}

#forgotPassword-panel .buttons-panel {
    margin-top: 40px;
}

#phone-panel dt,
#phone-panel dd {
	line-height: 1em;
	margin: 16px 0px;
	color: #303942;
}

#phone-panel dt {
	float: left;
	clear: left;
	background: url(../bin.v02/sprite.svg) no-repeat;
	padding-left: 21px;
}

#phone-panel .flag-us {
	background-position: 0px -78px;
}

#phone-panel .flag-uk {
	background-position: 0px -97px;
}

#phone-panel .flag-sp {
	background-position: 0px -118px;
}

#phone-panel .flag-pt {
	background-position: 0px -137px;
}

#phone-panel dd {
	float: right;
	clear: right;
}

#report-form .halfLeft {
	position: relative;
}

.halfLeft,
.halfRight {
	width: 45%;
	float: left;
	overflow: hidden;
}

.halfRight {
	margin-left: 10%;
}

@media only screen and (max-width: 500px) {
	.halfLeft,
.halfRight {
	width: 100%;
	float: none;
	overflow: hidden;
	margin: 0;
}
  }

#report-captchaImage {
	position: relative;
	z-index: 1;
}

#report-getCaptcha {
	position: absolute;
	display: block;
	top: 23px;
	right: 1px;
	height: 17px;
	width: 17px;
	background: url(../bin.v02/sprite.svg) 0 0 no-repeat;
	cursor: pointer;
	overflow: hidden;
	z-index: 3;
}

.checkbox,
.checkbox-label {
	line-height: 13px;
	vertical-align: middle;
	cursor: pointer;
}

.checkbox-label {
	padding-left: 5px;
	color: #6d6f70;
}

.status {
	font-weight: bold;
	line-height: 24px;
	font-size: 16px;
	padding: 8px 16px;
	overflow: hidden;
	visibility: hidden;
	display: none;
	border-radius: 4px;
}

.error {
	color: #f5f6fa;
	background-color: #D66D6D;
	visibility: visible;
	display: block;
	margin: -8px 0 24px 0;
}

.error a{
	color: #f5f6fa;
	text-decoration: underline;
}

.error a:hover{
	border: none;
	color: #C6C9CB;
}

.success {
	color: #ffffff;
	background-color: #779900;
	visibility: visible;
	display: block;
}







#bigHalfRight{
	width: 40%;
	height: 100vh;
	min-height: 600px;
	position: absolute;
	z-index: 1;
	left: 0;
	background-color: #303942;
	transition: all 2s ease;
	top: 0;
	display: flex;
	justify-content: center;
}

@media only screen and (max-width: 1000px) {
	#bigHalfRight {
		width: 0%;
		left: -60%;
		transition: all 2s ease;
	}
  }

#bigHalfRight .stageRight{
	margin: auto auto;
	width: 80%;
	top: 50%;
	left: 50%;
	-ms-transform: translate(-50%,-50%);
	-webkit-transform: translate(-50%,-50%);
	-moz-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
	position: absolute;
	z-index: 2;

}

#bigHalfRight .stageRight h1{
	font-size: 32px;
	line-height: 42px;
	color: #909fae;
}

span.underlined{
	text-decoration: underline;
	text-decoration-style: solid;
}

#bigHalfRight .stageRight h2{
	font-size: 48px;
	line-height: 60px;
	color: #f5f6fa;
	margin: 56px 0 24px 0;
}

#bigHalfRight .stageRight p{
	font-size: 18px;
	line-height: 26px;
	color: #f5f6fa;
}

#bigHalfRight article.topblock{
		line-height: 75px;
		margin: auto auto;
    	width: 80%;
   		 top: 24px;
    	position: absolute;
   		 z-index: 2;
}

#notCompatible-panel li {
	margin: 8px 0px;
	padding-left: 24px;
	background: url(../bin.v02/sprite.svg) 0px -278px no-repeat;
	line-height: 24px;
	font-size: 16px;
}


#notCompatible-panel li li {
	background: none;
}
































/**
 * ie8 compatibility
 */
#ie8compatibility-panel {
	padding-top: 10px;
}

#ie8compatibility-panel img {
	margin: 15px 13px 10px;
}


/**
 * login
 */
.ie7 #login-form .textfield {
	margin-bottom: 5px;
}

#token-form p, #recoverytoken p {
    color: #7B8186;
    margin-bottom: 40px;
}
#token-status{
	margin-top: 8px;
}

#token-form span.auth-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
}