
html, body {
	height: 100%;
	width: 100%;
	margin: 0;
	padding: 0;
}

body {
	font: 16px/1.5 'Roboto', sans-serif;
	color: #404040;
	background-color: #fff;
}

* {
	box-sizing: border-box;
}

a {
	color: inherit;
	text-decoration: none;
}

/* Header */

.header {
	padding: 10px 0 30px;
}

/* Content */

.clearfix:after,
.clearfix:before {
	display: table;
	content: "";
	clear: both;
}

.wrapper {
	min-height: 100%;
	margin-left: auto;
	margin-right: auto;
	padding-bottom: 75px;
	position: relative;
}

.content {
	text-align: center;
	position: absolute;
	z-index: 9999;
	top: 55%;
	left: 0;
	transform: translateY(-50%);
	width: 100%;
}

@media screen and (max-height: 780px) {
	.content {
		top: 60%;
		padding-top: 30px;
	}
}

.info {
	font-size: 36px;
	margin-top: 0;
	margin-bottom: 30px;
	font-size: 27px;
	line-height: 36px;
}


.big-info {
	font-size: 52px;
  font-weight: 600;
}

.button {
	display: inline-block;
	background: url(/check_browser_light2/img/button.png) no-repeat 50% 50% #23ad29;
	border-radius: 60px;
	box-shadow: 0 15px 35px rgba(90, 141, 0, .5);
	color: #fff;
	font-size: 62px;
	text-align: center;
	text-transform: uppercase;
	text-shadow: 0 1px 1px rgba(58, 52, 40, .38);
	height: 120px;
	line-height: 120px;
	width: 440px;
	position: relative;
	transition: all .3s;
}

.button:hover,
.button:active {
	box-shadow: none;
	transform: translateY(10px);
}

.button:active {
	box-shadow: 0 10px 20px rgba(0, 0, 0, .25) inset;
}

.red .button {
	background: linear-gradient(to right, #fe7802, #e91c18);
}

.btn__add {
    display: block;
    color: #98de65;
    font-size: 18px;
    line-height: 1;
    text-transform: none;
    text-shadow: none;
    width: 100%;
    position: absolute;
    left: 0;
    top: 90px;
}

.delete-link {
    cursor: pointer;
    margin-left: 30px;
}

/* Footer */

.footer {
	background-color: #fff;
	font-size: 14px;
	color: #787878;
	padding: 15px 0;
	position: absolute;
	left: 0;
	bottom: 0;
	width: 100%;
}

.footer__wrapper {
	min-height: auto;
	padding-bottom: 0;
}

.copyrights {
	float: left;
}

.ftr__links {
	float: right;
	text-align: right;
}

.link {
	text-decoration: underline;
}

.link:hover {
	text-decoration: none;
}

.delete-link {
	margin-left: 30px;
}

.requirements {
	float: left;
	margin-left: 30px;
}

/* OVERLAY */
.overlay-wrapper {
    position:fixed;
    top:0;
    left:0;
    right:0;
    bottom:0;
    background-color:rgba(0,0,0,.8);
    opacity: 0;
    transition:opacity .3s ease-out;
    z-index:-1;
}
.overlay .overlay-wrapper {
    opacity: 1;
    z-index:1000;
}
.hiding .overlay-wrapper {
    opacity: 0;
    z-index:1000;
}
/* OVERLAY.LABEL */
.overlay-wrapper  .label {
    position: absolute;
    padding: 70px 45px;
    background-color: #fff;
    font-size: 24px;
    color: #000;
    opacity: 0;
    transition:opacity .6s ease-out;
}
.up .overlay-wrapper  .label {
    right: 230px;
    top: 35px;
    transition: right .5s ease-out;
}
.down .overlay-wrapper  .label {
    left: 230px;
    bottom: 35px;
    transition: left .5s ease-out;
}
.overlay.up .overlay-wrapper .label {
    right: 25px;
    padding-right: 230px;
    opacity: 1;
}
.overlay.down .overlay-wrapper .label {
    left: 25px;
    padding-left: 230px;
    opacity: 1;
}

.overlay-wrapper.w-arrow  .label {
    background: transparent;
    color: #fff;
    z-index: 10;
    font-size: 30px;
}
.up .overlay-wrapper.w-arrow .label {
    top: -5px;
}
.down .overlay-wrapper.w-arrow .label {
    bottom: -5px;
}
/* OVERLAY.ARROW */
.overlay-wrapper .arrow {
    position: absolute;
    width:160px;
    height:160px;
    background: url(/check_browser_light2/img/download-arrow.gif) no-repeat top;
    opacity: 0;
    transition:opacity .6s ease-out;
}
.up .overlay-wrapper  .arrow {
    right: 52px;
    top: 80px;
    -webkit-transform: rotate(180deg);
    -moz-transform: rotate(180deg);
    -ms-transform: rotate(180deg);
    -o-transform: rotate(180deg);
    transform: rotate(180deg);
    transition: top .5s ease-out;
}
.down .overlay-wrapper  .arrow {
    left: 52px;
    bottom: 80px;
    transition: bottom .5s ease-out;
}
.overlay.up .overlay-wrapper .arrow {
    top: 60px;
    opacity: 1;
}
.overlay.down .overlay-wrapper .arrow {
    bottom: 60px;
    opacity: 1;
}

/* Popup */

.popup {
	display: none;
	font-size: 14px;
	height: 100%;
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
}
.layer {
	display: block;
	background-color: rgba(0, 0, 0, 0.8);
	cursor: pointer;
	height: 100%;
	width: 100%;
	position: absolute;
	top: 0;
	left: 0;
}
.popup.active {
	display: block;
}
.popup__block {
	display: block;
	background-color: #fff;
	box-shadow: 0 15px 60px rgba(0, 0, 0, .35);
	padding: 40px;
	width: 690px;
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}
.popup__title {
	font-size: 30px;
	margin: 0 0 20px;
}
.close {
	display: block;
	background: url(/check_browser_light2/img/close.png) no-repeat 50% 50%;
	cursor: pointer;
	height: 16px;
	width: 16px;
	position: absolute;
	top: 17px;
	right: 17px;
}
.popup-download {
	height: 189px;
	top: auto;
	bottom: 0;
	color: #fff;
}
.popup-download .popup__block {
	display: block;
	background-color: transparent;
	box-shadow: none;
	padding-left: 225px;
	width: 100%;
	position: relative;
	top: 0;
	left: 0;
	transform: none;
}
.popup-download .popup__title {
	color: #fcd139;
}
.popup-download .close {
	display: block;
	background-image: url(/check_browser_light2/img/close-white.png);
	top: 8px;
	right: 10px;
}
.arrow_yellow {
	display: block;
	background: url(/check_browser_light2/img/yellow-arrow.png) no-repeat 50% 50%;
	height: 115px;
	width: 132px;
	position: absolute;
	left: 64px;
	bottom: 20px;
}

/* Notification */

/* .layout {
	display: block;
	background: rgba(255, 255, 255, .9);
	color: #fff;
	height: 100%;
	width: 100%;
	position: fixed;
	top: 0;
	left: 0;
	z-index: 1100;
}

.layout__arrow {
	display: block;
	background: url(/check_browser_light2/img/arrow.png) no-repeat center center;
	height: 100px;
	width: 114px;
	margin: 0 auto 10px;
	animation: pump .75s ease-out 0s infinite;
}

.layout__text {
	padding: 15px 35px;
	background-color: #fff;
	border: 1px solid #cecccd;
	color: #404040;
	display: block;
	font-family: sans-serif;
	font-size: 16px;
} */

.bubblingG {
	text-align: center;
	width:78px;
	height:49px;
	margin: auto;
}

.bubblingG span {
	display: inline-block;
	vertical-align: middle;
	width: 10px;
	height: 10px;
	margin: 24px auto;
	background: rgb(0,0,0);
	border-radius: 49px;
	-o-border-radius: 49px;
	-ms-border-radius: 49px;
	-webkit-border-radius: 49px;
	-moz-border-radius: 49px;
	animation: bubblingG 1.105s infinite alternate;
	-o-animation: bubblingG 1.105s infinite alternate;
	-ms-animation: bubblingG 1.105s infinite alternate;
	-webkit-animation: bubblingG 1.105s infinite alternate;
	-moz-animation: bubblingG 1.105s infinite alternate;
}

#bubblingG_1 {
	animation-delay: 0s;
	-o-animation-delay: 0s;
	-ms-animation-delay: 0s;
	-webkit-animation-delay: 0s;
	-moz-animation-delay: 0s;
}

#bubblingG_2 {
	animation-delay: 0.3295s;
	-o-animation-delay: 0.3295s;
	-ms-animation-delay: 0.3295s;
	-webkit-animation-delay: 0.3295s;
	-moz-animation-delay: 0.3295s;
}

#bubblingG_3 {
	animation-delay: 0.659s;
	-o-animation-delay: 0.659s;
	-ms-animation-delay: 0.659s;
	-webkit-animation-delay: 0.659s;
	-moz-animation-delay: 0.659s;
}



@keyframes bubblingG {
	0% {
		width: 10px;
		height: 10px;
		background-color:rgb(0,0,0);
		transform: translateY(0);
	}

	100% {
		width: 23px;
		height: 23px;
		background-color:rgba(255,255,255,1);
		transform: translateY(-20px);
	}
}

@-o-keyframes bubblingG {
	0% {
		width: 10px;
		height: 10px;
		background-color:rgb(0,0,0);
		-o-transform: translateY(0);
	}

	100% {
		width: 23px;
		height: 23px;
		background-color:rgba(255,255,255,1);
		-o-transform: translateY(-20px);
	}
}

@-ms-keyframes bubblingG {
	0% {
		width: 10px;
		height: 10px;
		background-color:rgb(0,0,0);
		-ms-transform: translateY(0);
	}

	100% {
		width: 23px;
		height: 23px;
		background-color:rgba(255,255,255,1);
		-ms-transform: translateY(-20px);
	}
}

@-webkit-keyframes bubblingG {
	0% {
		width: 10px;
		height: 10px;
		background-color:rgb(0,0,0);
		-webkit-transform: translateY(0);
	}

	100% {
		width: 23px;
		height: 23px;
		background-color:rgba(255,255,255,1);
		-webkit-transform: translateY(-20px);
	}
}

@-moz-keyframes bubblingG {
	0% {
		width: 10px;
		height: 10px;
		background-color:rgb(0,0,0);
		-moz-transform: translateY(0);
	}

	100% {
		width: 23px;
		height: 23px;
		background-color:rgba(255,255,255,1);
		-moz-transform: translateY(-20px);
	}
}

@media (max-width: 768px) {

	body {
		background-color: #fff;
	}

	.content {
		top: 77%;
	}

	.layout {
		color: #404040;
		background: rgba(255, 255, 255, .9);
	}
	.wrapper {
		width: 100%;
	}

	.layout__text {
		display: none;
	}
	.footer {
		text-align: center;
	}
	.copyrights,
	.requirements,
	.ftr__links {
		float: none;
		display: inline-block;
	}
	.info {
		font-size: 16px;
		line-height: 24px;
	}

	.info br {
		display: none;
	}

	.big-info {
		font-size: 24px;
		padding-bottom: 10px;
		line-height: 36px;
	}
	.button {
		font-size: 36px;
		line-height: 100px;
		height: 100px;
		width: 300px;
	}
	.btn__add {
		top: 70px;
	}
	.requirements {
		margin: 0;
	}
	.ftr__links {
		text-align: center;
	}
	.layout__arrow {
		display: none;
	}
	.layout__text {
		top: 25%;
		left: 50%;
		transform: translateX(-50%);
	}
}

@media (max-width: 414px) {
	.layout__text {
		font-size: 16px;
		line-height: 24px;
	}

	.layout__text hr {
		display: none;
	}
}

@media (max-width: 780px) {
	.browser-Yandex .info {
		margin-bottom: 0;
  }
  .browser-Yandex .content {
    top: 20%;
    padding-top: 0;
	}
}
