/* -------------------------------------------------------------
  Sass CSS3 Mixins! The Cross-Browser CSS3 Sass Library
  By: Matthieu Aussaguel, http://www.mynameismatthieu.com, @matthieu_tweets

  List of CSS3 Sass Mixins File to be @imported and @included as you need

  The purpose of this library is to facilitate the use of CSS3 on different browsers avoiding HARD TO READ and NEVER
  ENDING css files

  note: All CSS3 Properties are being supported by Safari 5
  more info: http://www.findmebyip.com/litmus/#css3-properties

------------------------------------------------------------- */
@import "https://fonts.googleapis.com/css?family=Noto+Sans:400,700";
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, 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,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline; }

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block; }

body {
  line-height: 1; }

ol, ul {
  list-style: none; }

blockquote, q {
  quotes: none; }

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none; }

table {
  border-collapse: collapse;
  border-spacing: 0; }

* {
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }

body {
  font-family: "Noto Sans", sans-serif;
  color: #4B5157; }

.page {
  min-height: 650px;
  position: relative;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-pack: center;
  -webkit-box-align: center;
          align-items: center;
  -ms-flex-align: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
          flex-direction: column;
  -ms-flex-direction: column;
  padding: 40px 40px 70px; }
  .page.blur {
    -webkit-filter: url(#blur-filter);
    filter: url(#blur-filter);
    -webkit-filter: blur(7px);
    filter: blur(7px);
    filter: progid:DXImageTransform.Microsoft.Blur(PixelRadius='7'); }
  .page_second {
    height: auto;
    min-height: 100vh;
    padding-top: 30px; }
    .page_second .main {
      margin-bottom: -15px; }
    .page_second .logo {
      margin-bottom: 20px; }

.rating {
  display: block;
  width: 100%;
  text-align: center;
  position: absolute;
  top: 20px;
  left: 0;
  font-size: 12px;
  line-height: 13px;
  color: #4B5157; }
  .rating img {
    display: inline-block;
    margin-right: 25px;
    margin-bottom: -2px; }
  .rating strong {
    font-weight: bold; }

.logo {
  display: block;
  margin-bottom: 50px; }

.list {
  width: 100%;
  max-width: 790px;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  -webkit-box-pack: justify;
          justify-content: space-between;
  -ms-flex-pack: justify; }
  .list__item {
    font-size: 16px;
    line-height: 22px;
    width: 160px;
    text-align: center; }
    .list__item:before {
      content: '';
      display: block;
      width: 100px;
      height: 100px;
      margin: 0 auto;
      border-radius: 50px;
      border: 1px solid #D8D8D8;
      background-color: #fff;
      background-repeat: no-repeat;
      background-position: center center;
      margin-bottom: 10px; }
    .list__item_1:before {
      background-image: url("../images/icon-1.png");
      background-size: 43px 65px;
      background-position: center 22px; }
    .list__item_2:before {
      background-image: url("../images/icon-2.png");
      background-size: 39px 53px; }
    .list__item_3:before {
      background-image: url("../images/icon-3.png");
      background-size: 44px 54px; }
    .list__item_4:before {
      background-image: url("../images/icon-4.png");
      background-position: center 22px;
      background-size: 62px 50px; }

.footer {
  width: 100%;
  font-size: 13px;
  padding: 0 40px;
  position: absolute;
  left: 0;
  bottom: 20px;
  display: -webkit-box;
  display: flex;
  display: -ms-flexbox;
  -webkit-box-pack: center;
          justify-content: center;
  -ms-flex-pack: center; }
  .footer__copyright {
    color: #96979F;
    float: left;
    display: inline; }
  .footer__menu {
    display: inline; }
  .footer__menu-item {
    float: left;
    margin-left: 30px; }

.btn {
  width: 233px;
  height: 50px;
  color: #fff;
  background-color: #1abc9b;
  font-size: 18px;
  text-decoration: none;
  display: inline-block;
  line-height: 50px;
  border-radius: 4px;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s;
  text-align: left;
  padding-left: 53px;
  background-position: 22px center;
  background-repeat: no-repeat;
  background-size: 14px;
  background-image: url("../images/icon-plus.png");
  outline: none; }
  .btn:hover {
    background-color: #4C8BF5; }
  .btn:active {
    background-color: #D8D8D8; }
  .btn strong {
    font-weight: 700; }
  .btn_default {
    display: inline-block;
    width: 80px;
    color: #000;
    background-color: #fff;
    border: 1px solid #D8D8D8;
    -webkit-box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.1);
            box-shadow: 0 1px 0 0 rgba(0, 0, 0, 0.1);
    margin: 0 5px;
    padding: 0;
    text-align: center; }
    .btn_default:hover {
      border-color: #0f6dd6;
      background: #fafafa; }

.link {
  color: #4C8BF5;
  text-decoration: none;
  -webkit-transition: all 0.2s ease-in-out 0s;
  transition: all 0.2s ease-in-out 0s; }
  .link:hover {
    color: #0EAD72; }
  .link.active {
    color: #B4B4B4; }

.header {
  display: block;
  width: 100%;
  max-width: 900px; }

.content {
  display: block;
  width: 100%;
  max-width: 900px;
  padding: 40px 60px  20px 60px;
  border: 1px solid #D8D8D8;
  border-radius: 4px;
  text-align: left; }
  .content h1 {
    display: block;
    margin-bottom: 30px;
    text-align: left;
    color: #4B5157;
    font-size: 36px;
    line-height: 49px; }
  .content h2 {
    display: block;
    margin-bottom: 10px;
    color: #4B5157;
    font-size: 20px;
    line-height: 27px; }
  .content p {
    color: #4B5157;
    font-size: 14px !important;
    line-height: 19px; }
    .content p + p {
      margin-top: -15px; }
  .content a {
    color: #4C8BF5;
    text-decoration: none;
    -webkit-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s; }
    .content a:hover {
      color: #0EAD72; }

.icon_alert {
  background: url("../images/icon-alert.png") left center no-repeat;
  padding-left: 17px;
  background-size: 12px; }
.icon_good {
  background: url("../images/icon-good.png") left center no-repeat;
  padding-left: 19px;
  background-size: 14px auto; }

.title {
  font-size: 36px;
  line-height: 49px;
  text-align: center;
  margin-bottom: 20px;
  width: 100%; }
  .title_big {
    font-size: 48px;
    line-height: 65px;
    margin-bottom: 0; }

.main {
  text-align: center; }
  .main p {
    font-size: 16px;
    line-height: 22px;
    max-width: 800px;
    margin: 0 auto 30px; }

.hand {
  position: absolute;
  background-repeat: no-repeat;
  z-index: -100; }
  .hand_top-left {
    background-image: url("../images/top-left.jpg");
    width: 129px;
    height: 181px;
    background-size: 129px 181px;
    top: 0;
    left: 0; }
  .hand_top-right {
    background-image: url("../images/top-right.jpg");
    width: 143px;
    height: 206px;
    background-size: 143px 206px;
    top: 0;
    right: 0; }
  .hand_center-left {
    background-image: url("../images/center-left.jpg");
    width: 219px;
    height: 80px;
    background-size: 219px 80px;
    top: 50%;
    margin-top: -40px;
    left: 0; }
  .hand_center-right {
    background-image: url("../images/center-right.jpg");
    width: 152px;
    height: 240px;
    background-size: 152px 240px;
    top: 50%;
    margin-top: -120px;
    right: 0; }
  .hand_bottom-left {
    background-image: url("../images/bottom-left.jpg");
    width: 140px;
    height: 206px;
    background-size: 140px 206px;
    bottom: 17px;
    left: 0; }
  .hand_bottom-right {
    background-image: url("../images/bottom-right.jpg");
    width: 174px;
    height: 156px;
    background-size: 174px 156px;
    bottom: 3px;
    right: 0; }

.blur-svg {
  display: none; }

.overlay {
  display: none;
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: rgba(0, 0, 0, 0.6);
  top: 0;
  left: 0;
  z-index: 500; }

.popup {
  display: none;
  width: 100%;
  position: absolute;
  left: 50%;
  top: 50%;
  z-index: 600;
  background: #FFFFFF;
  -webkit-box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.5);
          box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.5);
  border-radius: 4px; }
  .popup__header {
    height: 60px;
    padding: 0 20px;
    border-bottom: 1px solid #D8D8D8; }
  .popup__icon {
    display: block;
    float: left;
    margin-right: 20px;
    margin-top: 13px; }
  .popup__title {
    display: block;
    font-size: 20px;
    line-height: 60px;
    float: left; }
  .popup__cancel {
    font-size: 14px;
    line-height: 60px;
    color: #919191;
    cursor: pointer;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    float: right; }
    .popup__cancel:hover {
      color: #2A89F7; }
  .popup__body {
    padding: 20px 35px;
    text-align: center; }
    .popup__body label {
      display: inline-block;
      font-size: 14px;
      margin-left: 7px; }
  .popup__footer {
    position: absolute;
    width: 100%;
    bottom: 20px;
    left: 0;
    text-align: center; }

#warning {
  display: none;
  max-width: 400px;
  height: 235px;
  margin-left: -200px;
  margin-top: -123px;
  z-index: 600; }
  #warning .popup__body {
    padding: 20px; }
    #warning .popup__body p {
      font-size: 18px;
      line-height: 28px;
      padding: 0 35px 0 55px;
      display: inline-block;
      text-align: left;
      height: 80px;
      margin: auto;
      background-repeat: no-repeat;
      background-position: 0 7.5px;
      background-size: 40px 40px; }
  #warning .btn {
    width: 170px; }

#extension {
  display: none;
  border-radius: 3px 3px 0 0;
  top: auto;
  bottom: 0;
  max-width: 750px;
  margin-left: -375px;
  min-height: 270px; }
  #extension .popup__body {
    display: table;
    padding: 25px 40px 25px 20px; }
    #extension .popup__body p {
      display: table-cell;
      vertical-align: middle;
      font-size: 18px;
      line-height: 28px;
      text-align: left; }
    #extension .popup__body img {
      float: left;
      margin-right: 45px; }
  #extension .popup__icon {
    margin-top: 10px;
    margin-right: 15px; }
  #extension:before {
    content: '';
    position: fixed;
    left: 50%;
    top: 216px;
    margin-left: -126px;
    display: block;
    width: 452px;
    height: 618px;
    background-image: url("../images/arrow.png");
    background-size: 452px 618px;
    z-index: -1; }

@media screen and (max-width: 750px) {
  #extension {
    left: 0;
    margin-left: 0; } }
@media screen and (max-width: 600px) {
  #extension .popup__body {
    padding: 25px 20px; }
    #extension .popup__body p {
      display: block; }
    #extension .popup__body img {
      display: block;
      float: none;
      margin: 0 auto 20px; } }
@media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
  .list__item_1:before {
    background-image: url("../images/icon-1@2x.png"); }

  .list__item_2:before {
    background-image: url("../images/icon-2@2x.png"); }

  .list__item_3:before {
    background-image: url("../images/icon-3@2x.png"); }

  .list__item_4:before {
    background-image: url("../images/icon-4@2x.png"); }

  .btn {
    background-image: url("../img/icon-plus@2x.png"); }

  .hand_top-left {
    background-image: url("../images/top-left@2x.jpg"); }

  .hand_top-right {
    background-image: url("../images/top-right@2x.jpg"); }

  .hand_center-left {
    background-image: url("../images/center-left@2x.jpg"); }

  .hand_center-right {
    background-image: url("../images/center-right@2x.jpg"); }

  .hand_bottom-left {
    background-image: url("../images/bottom-left@2x.jpg"); }

  .hand_bottom-right {
    background-image: url("../images/bottom-right@2x.jpg"); }

  #extension:before {
    background-image: url("../images/arrow@2x.png"); } }
@media screen and (max-width: 960px) {
  .hand {
    display: none; }

  .list {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
            flex-direction: column;
    -ms-flex-direction: column;
    -webkit-box-align: center;
            align-items: center;
    -ms-flex-align: center; }
    .list__item {
      margin-bottom: 30px; }

  .page {
    height: auto; }

  .logo {
    margin-top: 30px; } }

/*# sourceMappingURL=style.css.map */