* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
}

html {
	overflow-x: hidden;
}

body {
	font-size: 14px;
	line-height: 16px;
	color: #3e3e3e;
	font-family: "Lucida Grande","DejaVu Sans","Bitstream Vera Sans",Verdana,Arial,sans-serif;
}

input, select {
	padding: 6px 4px;
    outline: none;
    font-size: 14px;
    margin: 5px 0;
}

a:link, a:visited {
    text-decoration: none;
    color: #3e3e3e;
}

.color-1 {
	color: #FF5089;
}

.color-2 {
	color: #4281C0;
}

.main-wrapper {
	width: 100%;
	height: 100%;
	max-width: 540px;
	background: #f3f6f7;
	padding-top: 130px;
}

.main-wrapper .text-lines {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	max-width: 540px;
	height: 100%;
	overflow: hidden;
	z-index: 1;
}

.main-wrapper .text-lines > div {
	position: absolute;
	font-size: 30px;
	transition: all 16s ease;
	transform-origin: 50% 50%;
	white-space: nowrap;
}

.main-wrapper .text-lines > div.move {
	transform: scale(0);
	color: #fff;
}

.main-wrapper .title {
	position: relative;
	width: 95%;
	margin: auto;
	padding: 20px 10px;
	background: rgba(255, 255, 255, 0.7);
	border-radius: 10px;
	color: #000;
	font-weight: bold;
	text-align: center;
	z-index: 2;
}

.main-wrapper .auth {
	position: relative;
	width: 90%;
	margin: 32px auto;
	padding: 20px 10px;
	background: rgba(255, 255, 255, 0.7);
	border-radius: 10px;
	z-index: 2;
}

.main-wrapper .auth .note {
	font-size: 12px;
	line-height: 14px;
	text-align: center;
	color: #000;
}

.main-wrapper .auth .button-vk {
	display: block;
	width: 100%;
	margin: 15px auto 0 auto;
	background: #4281C0;
	border-radius: 5px;
    text-align: center;
    padding: 17px 0;
}

.main-wrapper .auth .button-vk .icon-vk {
	display: inline-block;
	vertical-align: top;
}

.main-wrapper .auth .button-vk .text {
	display: inline-block;
	vertical-align: top;
	font-weight: bold;
	font-size: 16px;
	line-height: 18px;
	color: #FFFFFF;
}

.main-wrapper .auth .presentation {
	display: flex;
	width: 100%;
	overflow: auto;
	margin: 10px 0;
	padding: 10px 0;
}

.main-wrapper .auth .presentation > div {
	flex-shrink: 0;
	width: 100px;
	height: 180px;
	margin-right: 10px;
	transition: 0.5s all ease;
}

.main-wrapper .auth .presentation > div img {
	width: 100%;
}

.main-wrapper.presentation-mode {
	padding-top: 20px;
}

.main-wrapper.presentation-mode .disabled-preview {
	display: none;
}

.main-wrapper.presentation-mode .auth {
	margin: 0 auto;
}

.main-wrapper.presentation-mode .auth .presentation > div {
	width: 100%;
	height: 100%;
}

.vk-auth-container {
	margin-top: 20px;
}