*,
*:before,
*:after {
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

::placeholder {
	color: #666;
}

::selection {
	background-color: #9f9f9f;
	color: #fff;
}

body {
	font-size: 16px;
	font-weight: 500;
	min-width: 320px;
	position: relative;
	line-height: 1.2;
	font-family: 'Open Sans';
	overflow-x: hidden;
	color: #000;
	padding: 0;
	margin: 0;
}

body input:focus:required:invalid,
body textarea:focus:required:invalid {
	border-color: #FF5F00;
}

body.lock {
	overflow: hidden;
}

img {
	height: auto;
	width: 100%;
}

b, strong {
	font-weight: 600;
}

a {
	text-decoration: none;
	cursor: pointer;
	display: block;
}

a:hover {
	text-decoration: none;
}

p, ul, li {
	padding: 0;
	margin: 0;
}

li {
	list-style-type: none;
}

h1, h2, h3, h4, h5, h6 {
	padding: 0;
	margin: 0;
	font-weight: normal;
}

button {
	background: transparent;
	border: none;
	cursor: pointer;
	padding: 0;
	margin: 0;
	outline: none;
}

.container {
	max-width: 1210px;
	margin: 0 auto;
	padding: 0 20px;
	width: 100%;
}

.button {
	font-weight: 500;
	text-align: center;
	padding: 18px 20px;
	font-size: 16px;
	font-family: $default-font;
	cursor: pointer;
	background-color: #ccc;
	color: #000;
	transition: .3s all ease;
}

.button:hover {
	box-shadow: inset 0 0 0 30px rgba(255, 255, 255, .1);
}




.info-block {
	background-color: #FFFFFF;
	border: 1px solid #DDDDDD;
	box-shadow: 4px 4px 20px 0px rgba(0, 0, 0, 0.1);
	padding: 50px 35px 55px;
	border-radius: 8px;
	width: 95%;
	max-width: 610px;
	position: fixed;
	top: 45%;
	left: 50%;
	transform: translate(-50%,-45%);
	z-index: 5;
}

.info-block__logo {
  max-width: 100%;
  margin: 0 auto;
	margin-bottom: 25px;
	display: flex;
	align-items: center;
	justify-content: center;
}

.info-block__logo img {
	max-width: 250px;
	margin-right: 15px;
}

.info-block__logo-title {
	font-size: 32px;
	font-weight: 700;
	text-align: center;
}

.info-block__title {
  margin-bottom: 20px;
  font-size: 26px;
  font-weight: 700;
  color: #2B2B2B;
  text-align: center;
}

.info-block__text {
  font-size: 20px;
  color: #2B2B2B;
}

.info-block__text +.info-block__text {
  margin-top: 20px;
}

.info-block__button {
  margin-top: 35px;
}

.info-block-button {
	display: flex;
	align-items: center;
	justify-content: center;
	font-size: 20px;
	font-weight: 700;
	color: #fff;
	padding: 16px 20px;
	max-width: 400px;
	min-height: 60px;
	width: 100%;
	background-color: #62C875;
	border-radius: 8px;
	margin-left: auto;
	margin-right: auto;
}


/******* Media *******/
@media (max-width: 600px) {
	.info-block {
		padding: 50px 15px;
	}

	.info-block__logo {
		margin-bottom: 35px;
	}

  .info-block__title {
    font-size: 22px;
    margin-bottom: 28px;
  }

  .info-block__text {
    font-size: 16px;
  }

  .info-block__button {
    margin-top: 26px;
  }

  .info-block__close {
    top: 7px;
    right: 10px;
  }

	.info-block__logo-title {
		font-size: 28px;
	}
}