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; }

.ngdialog, .ngdialog-overlay {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0; }

@-webkit-keyframes ngdialog-fadeout {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }
@keyframes ngdialog-fadeout {
  0% {
    opacity: 1; }
  100% {
    opacity: 0; } }
@-webkit-keyframes ngdialog-fadein {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
@keyframes ngdialog-fadein {
  0% {
    opacity: 0; }
  100% {
    opacity: 1; } }
.ngdialog {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 10000; }

.ngdialog *, .ngdialog :after, .ngdialog :before {
  -webkit-box-sizing: inherit;
          box-sizing: inherit; }

.ngdialog.ngdialog-disabled-animation, .ngdialog.ngdialog-disabled-animation .ngdialog-content, .ngdialog.ngdialog-disabled-animation .ngdialog-overlay {
  -webkit-animation: none !important;
  animation: none !important; }

.ngdialog-overlay {
  background: rgba(0, 0, 0, 0.4);
  -webkit-backface-visibility: hidden;
  -webkit-animation: ngdialog-fadein .5s;
  animation: ngdialog-fadein .5s; }

.ngdialog-no-overlay {
  pointer-events: none; }

.ngdialog.ngdialog-closing .ngdialog-overlay {
  -webkit-backface-visibility: hidden;
  -webkit-animation: ngdialog-fadeout .5s;
  animation: ngdialog-fadeout .5s; }

.ngdialog-content {
  background: #fff;
  -webkit-backface-visibility: hidden;
  -webkit-animation: ngdialog-fadein .5s;
  animation: ngdialog-fadein .5s;
  pointer-events: all; }

.ngdialog.ngdialog-closing .ngdialog-content {
  -webkit-backface-visibility: hidden;
  -webkit-animation: ngdialog-fadeout .5s;
  animation: ngdialog-fadeout .5s; }

.ngdialog-close:before {
  font-family: Helvetica,Arial,sans-serif;
  content: '\00D7';
  cursor: pointer; }

body.ngdialog-open, html.ngdialog-open {
  overflow: hidden; }

@-webkit-keyframes ngdialog-flyin {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); } }
@keyframes ngdialog-flyin {
  0% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px); }
  100% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); } }
@-webkit-keyframes ngdialog-flyout {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px); } }
@keyframes ngdialog-flyout {
  0% {
    opacity: 1;
    -webkit-transform: translateY(0);
    transform: translateY(0); }
  100% {
    opacity: 0;
    -webkit-transform: translateY(-40px);
    transform: translateY(-40px); } }
.ngdialog.ngdialog-theme-default {
  padding-bottom: 160px;
  padding-top: 160px; }

.ngdialog.ngdialog-theme-default.ngdialog-closing .ngdialog-content {
  -webkit-animation: ngdialog-flyout .5s;
  animation: ngdialog-flyout .5s; }

.ngdialog.ngdialog-theme-default .ngdialog-content {
  -webkit-animation: ngdialog-flyin .5s;
  animation: ngdialog-flyin .5s;
  background: #f0f0f0;
  border-radius: 5px;
  color: #444;
  font-family: Helvetica,sans-serif;
  font-size: 1.1em;
  line-height: 1.5em;
  margin: 0 auto;
  max-width: 100%;
  padding: 1em;
  position: relative;
  width: 450px; }

.ngdialog.ngdialog-theme-default .ngdialog-close {
  border-radius: 5px;
  cursor: pointer;
  position: absolute;
  right: 0;
  top: 0; }

.ngdialog.ngdialog-theme-default .ngdialog-close:before {
  background: 0 0;
  border-radius: 3px;
  color: #bbb;
  content: '\00D7';
  font-size: 26px;
  font-weight: 400;
  height: 30px;
  line-height: 26px;
  position: absolute;
  right: 3px;
  text-align: center;
  top: 3px;
  width: 30px; }

.ngdialog.ngdialog-theme-default .ngdialog-close:active:before, .ngdialog.ngdialog-theme-default .ngdialog-close:hover:before {
  color: #777; }

.ngdialog.ngdialog-theme-default .ngdialog-message {
  margin-bottom: .5em; }

.ngdialog.ngdialog-theme-default .ngdialog-input {
  margin-bottom: 1em; }

.ngdialog.ngdialog-theme-default .ngdialog-input input[type=text], .ngdialog.ngdialog-theme-default .ngdialog-input input[type=password], .ngdialog.ngdialog-theme-default .ngdialog-input input[type=email], .ngdialog.ngdialog-theme-default .ngdialog-input input[type=url], .ngdialog.ngdialog-theme-default .ngdialog-input textarea {
  background: #fff;
  border: 0;
  border-radius: 3px;
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
  margin: 0 0 .25em;
  min-height: 2.5em;
  padding: .25em .67em;
  width: 100%; }

.ngdialog.ngdialog-theme-default .ngdialog-input input[type=text]:focus, .ngdialog.ngdialog-theme-default .ngdialog-input input[type=password]:focus, .ngdialog.ngdialog-theme-default .ngdialog-input input[type=email]:focus, .ngdialog.ngdialog-theme-default .ngdialog-input input[type=url]:focus, .ngdialog.ngdialog-theme-default .ngdialog-input textarea:focus {
  -webkit-box-shadow: inset 0 0 0 2px #8dbdf1;
          box-shadow: inset 0 0 0 2px #8dbdf1;
  outline: 0; }

.ngdialog.ngdialog-theme-default .ngdialog-buttons:after {
  content: '';
  display: table;
  clear: both; }

.ngdialog.ngdialog-theme-default .ngdialog-button {
  border: 0;
  border-radius: 3px;
  cursor: pointer;
  float: right;
  font-family: inherit;
  font-size: .8em;
  letter-spacing: .1em;
  line-height: 1em;
  margin: 0 0 0 .5em;
  padding: .75em 2em;
  text-transform: uppercase; }

.ngdialog.ngdialog-theme-default .ngdialog-button:focus {
  -webkit-animation: ngdialog-pulse 1.1s infinite;
  animation: ngdialog-pulse 1.1s infinite;
  outline: 0; }

@media (max-width: 568px) {
  .ngdialog.ngdialog-theme-default .ngdialog-button:focus {
    -webkit-animation: none;
    animation: none; } }
.ngdialog.ngdialog-theme-default .ngdialog-button.ngdialog-button-primary {
  background: #3288e6;
  color: #fff; }

.ngdialog.ngdialog-theme-default .ngdialog-button.ngdialog-button-secondary {
  background: #e0e0e0;
  color: #777; }

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

.page {
  display: block;
  height: 100vh;
  width: 100%;
  background-color: #000;
  font-family: Arial, Helvetica, sans-serif;
  background-position: center;
  background-repeat: no-repeat;
  background-size: cover;
  background-attachment: fixed;
  color: #323232; }
  .page_sidebar .sidebar {
    right: 0; }
  .page_sidebar .content {
    margin-right: 320px; }
  .page.overflow-hidden {
    overflow: hidden; }
  .page_with-bookmarks .main {
    padding-top: 41px; }
  .page_with-bookmarks .header {
    top: 41px; }
  .page_with-bookmarks .sidebar {
    top: 41px; }

.header {
  display: block;
  position: absolute;
  width: 100%;
  height: 60px;
  padding: 20px 20px 0;
  top: 0;
  z-index: 600; }

.logo {
  display: block;
  position: absolute;
  top: 10px;
  left: 10px; }

.menu {
  float: right; }
  .menu__item {
    display: block;
    cursor: pointer;
    float: left;
    margin-left: 30px;
    position: relative; }
    .menu__item:first-child {
      margin-left: 0; }
    .menu__item#rateUs {
      display: none; }
  .menu__notification {
    display: block;
    min-width: 22px;
    height: 16px;
    text-align: center;
    color: #fff;
    font-size: 12px;
    line-height: 16px;
    font-weight: bold;
    background-color: #EE4148;
    border-radius: 2px;
    padding: 0 3px;
    position: absolute;
    top: -7px;
    right: -14px; }

.main {
  height: 100%;
  -webkit-transition: all .3s;
  transition: all .3s; }

.content {
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-transition: margin-right 0.3s ease-out, background-color 0.3s ease-out;
  transition: margin-right 0.3s ease-out, background-color 0.3s ease-out; }

.sidebar {
  display: block;
  height: 100%;
  position: fixed;
  right: -330px;
  top: 0;
  width: 320px;
  background-color: #fff;
  -webkit-box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
          box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.3);
  z-index: 700;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out; }
  .sidebar__cancel {
    display: block;
    width: 30px;
    height: 30px;
    border-radius: 15px;
    background-color: #fff;
    position: absolute;
    top: 15px;
    right: 10px;
    -webkit-transition: all .3s;
    transition: all .3s;
    cursor: pointer; }
    .sidebar__cancel:hover {
      background-color: #3E82F7; }
      .sidebar__cancel:hover:after, .sidebar__cancel:hover:before {
        background-color: #fff; }
    .sidebar__cancel:active {
      background-color: #D0D0D0; }
    .sidebar__cancel:after, .sidebar__cancel:before {
      content: '';
      display: block;
      width: 2px;
      height: 18px;
      background-color: #D0D0D0;
      position: absolute;
      margin-top: 6px;
      margin-left: 14px;
      -webkit-transition: all .3s;
      transition: all .3s; }
    .sidebar__cancel:after {
      -webkit-transform: rotate(45deg);
              transform: rotate(45deg); }
    .sidebar__cancel:before {
      -webkit-transform: rotate(-45deg);
              transform: rotate(-45deg); }

.widget__header {
  min-height: 60px;
  padding: 20px 40px 20px 20px; }
.widget__title {
  font-size: 18px;
  line-height: 20px; }
.widget__content {
  display: block;
  height: calc(100vh - 60px);
  overflow-y: auto; }
  .widget__content::-webkit-scrollbar {
    width: 6px; }
  .widget__content:hover::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: rgba(0, 0, 0, 0.5); }
  .widget__content::-webkit-scrollbar-thumb:window-inactive {
    background: rgba(0, 0, 0, 0.2); }
.widget__section {
  padding: 0 20px; }
  .widget__section_border {
    padding-top: 20px;
    padding-bottom: 20px;
    border-top: 1px solid #D8D8D8; }
  .widget__section_links {
    padding-top: 10px; }
.widget.hide {
  background-color: red; }

.checkbox + .checkbox {
  display: block;
  margin-top: 20px; }
.checkbox input {
  display: none; }
  .checkbox input:checked + label:before {
    background-color: #4793F5;
    border-color: #4793F5;
    background-image: url("../images/checkmark.svg");
    background-size: 8px;
    background-repeat: no-repeat;
    background-position: center; }
.checkbox label {
  font-size: 14px; }
  .checkbox label:before {
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    content: '';
    display: block;
    float: left;
    width: 14px;
    height: 14px;
    border-radius: 3px;
    border: 1px solid #BBB;
    margin-right: 9px; }

.radio + .radio {
  display: block;
  margin-top: 15px; }
.radio input {
  display: none; }
  .radio input:checked + label:before {
    background-color: #4793F5;
    border: 2px solid #4793F5;
    -webkit-box-shadow: inset 0 0 0 3px #fff;
            box-shadow: inset 0 0 0 3px #fff; }
.radio label {
  font-size: 14px;
  position: relative; }
  .radio label:before {
    content: '';
    -webkit-box-sizing: border-box;
            box-sizing: border-box;
    display: block;
    float: left;
    width: 16px;
    height: 16px;
    border-radius: 8px;
    border: 1px solid #C6C6C6;
    margin-right: 8px; }

.list__item {
  font-size: 14px; }
  .list__item .link {
    color: inherit;
    line-height: 36px; }

.link {
  text-decoration: none;
  -webkit-transition: all .3s;
  transition: all .3s;
  cursor: pointer; }
  .link:hover {
    color: #3E82F7; }

.widget-tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 20px;
  border-bottom: 1px solid #D8D8D8;
  margin-bottom: 10px;
  margin-top: 20px; }
  .widget-tabs__item {
    display: block;
    float: left;
    font-size: 14px;
    line-height: 16px;
    height: 28px;
    text-align: center;
    width: 100%;
    position: relative;
    color: #7B8287;
    cursor: pointer; }
    .widget-tabs__item:hover {
      color: #3E82F7; }
    .widget-tabs__item.active {
      color: #323232; }
      .widget-tabs__item.active:after {
        content: '';
        display: block;
        height: 3px;
        width: 100%;
        background-color: #3E82F7;
        position: absolute;
        bottom: -1px; }

.section-title {
  display: block;
  font-size: 14px;
  line-height: 16px;
  font-weight: bold;
  border-bottom: 1px solid #D8D8D8;
  padding: 0 20px;
  padding-bottom: 6px; }

.search-form {
  width: 100%;
  max-width: 550px;
  margin-left: auto;
  margin-right: auto;
  position: relative;
  margin-bottom: 35px; }
  .search-form__query {
    display: block;
    width: 100%;
    height: 44px;
    background-color: #fff;
    background-repeat: no-repeat;
    background-position: 11px center;
    border-radius: 22px;
    background-size: 22px;
    border: none;
    outline: none;
    padding-left: 21px;
    font-size: 16px;
    margin: 0 auto; }
    .search-form__query::-webkit-input-placeholder {
      color: #B3B3B3; }
    .search-form__query:-ms-input-placeholder {
      color: #B3B3B3; }
    .search-form__query::placeholder {
      color: #B3B3B3; }
    .search-form__query:focus ~ .cancel, .search-form__query:focus ~ .search-form__submit {
      visibility: visible; }
  .search-form__submit {
    display: block;
    visibility: hidden;
    width: 60px;
    height: 44px;
    cursor: pointer;
    background-color: #3E82F7;
    background-image: url("../images/icon_search.png");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 18px;
    text-indent: -9999px;
    border: none;
    border-radius: 0 22px 22px 0;
    position: absolute;
    right: -1px;
    top: 0;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    outline: none; }
    @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
      .search-form__submit {
        background-image: url("../images/icon_search@2x.png"); } }
    .search-form__submit:hover {
      background-color: #3B99FC; }
    .search-form__submit:active {
      background-color: #545454; }
  .search-form .cancel {
    display: block;
    visibility: hidden;
    position: absolute;
    right: 70px;
    top: 50%;
    margin-top: -8px; }
  .search-form .suggestions {
    margin-left: 20px;
    margin-right: 60px;
    width: calc(100% - 80px); }

.cancel {
  display: block;
  background-color: #fff;
  width: 16px;
  height: 16px;
  min-width: 16px;
  min-height: 16px;
  background-image: url("../images/icon_cancel.png");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 16px;
  text-indent: -9999px;
  border: none;
  outline: none;
  opacity: 0.6;
  -webkit-transition: all .3s;
  transition: all .3s;
  z-index: 1; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .cancel {
      background-image: url("../images/icon_cancel@2x.png"); } }
  .cancel:hover {
    opacity: 1; }
  .cancel:active {
    opacity: 0.4; }

.suggestions {
  position: absolute;
  top: 100%;
  width: 100%;
  margin-top: 5px;
  background: #FFFFFF;
  -webkit-box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.5);
          box-shadow: 0 2px 6px 0 rgba(0, 0, 0, 0.5);
  border-radius: 2px;
  padding: 10px 0;
  z-index: 100; }
  .suggestions__item {
    height: 34px;
    line-height: 34px;
    padding: 0 20px;
    font-size: 15px;
    color: #000;
    cursor: pointer;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden; }
    .suggestions__item:hover, .suggestions__item.active {
      background-color: #3E82F7;
      color: #fff; }
    .suggestions__item b, .suggestions__item em {
      font-weight: bold; }

.tabs {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  margin-bottom: 10px; }
  .tabs__item {
    color: #fff;
    font-size: 14px;
    line-height: 16px;
    margin: 0 20px;
    cursor: pointer;
    padding: 3px 0;
    border-bottom: 3px solid transparent;
    -webkit-transition: all .3s;
    transition: all .3s; }
    .tabs__item:hover {
      border-color: #fff; }
    .tabs__item.active {
      border-color: #3B99FC; }

.apps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  max-width: 955px;
  width: 100%;
  margin: 0 auto;
  /*
  	&.ng-enter, &.ng-leave {
  	  transition:all cubic-bezier(0.250, 0.460, 0.450, 0.940) 0.3s;
  	}
  
  	&.ng-enter,
  	&.ng-leave.ng-leave-active {
  	  opacity:0;
  	}
  
  	&.ng-leave,
  	&.ng-enter.ng-enter-active {
  	  opacity:1;
  	}
  */ }
  .apps__item {
    display: block;
    cursor: pointer;
    text-decoration: none;
    margin-top: 25px;
    margin-bottom: 35px;
    width: 20%;
    min-width: 100px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s;
    -webkit-transition-timing-function: ease-out;
            transition-timing-function: ease-out; }
    .apps__item:hover .apps__icon {
      -webkit-transition: all .1s;
      transition: all .1s; }
    .apps__item:hover .apps__icon {
      -webkit-box-shadow: 0 2px 12px 0 #3E82F7;
              box-shadow: 0 2px 12px 0 #3E82F7; }
    .apps__item.active .apps__icon {
      -webkit-box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.3);
              box-shadow: 0 0 0 4px rgba(255, 255, 255, 0.3); }
    .apps__item b {
      font-weight: bold; }
  .apps__icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    width: 100px;
    height: 100px;
    margin-bottom: 10px;
    margin-left: auto;
    margin-right: auto;
    background-color: #fff;
    border-radius: 50px;
    -webkit-transition: all .3s;
    transition: all .3s;
    -webkit-box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.3);
            box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.3);
    position: relative; }
    .apps__icon img, .apps__icon i {
      display: block;
      margin: 0 auto; }
  .apps__notification {
    display: block;
    background: #EE4148;
    border-radius: 2px;
    font-size: 12px;
    color: #FFFFFF;
    height: 16px;
    line-height: 16px;
    min-width: 23px;
    text-align: center;
    position: absolute;
    top: 5px;
    right: 0;
    padding: 0 5px; }
  .apps__title {
    display: block;
    color: #fff;
    font-size: 14px;
    line-height: 16px;
    text-decoration: none;
    text-align: center; }

.input {
  position: relative; }
  .input:after {
    content: '';
    display: table;
    clear: both; }
  .input input {
    display: block;
    height: 36px;
    width: 100%;
    outline: none;
    border: 1px solid #E3E3E3;
    border-radius: 18px;
    padding: 0 15px;
    font-size: 14px;
    -webkit-transition: all .3s;
    transition: all .3s;
    padding-right: 32px; }
    .input input::-webkit-input-placeholder {
      color: #7B8287; }
    .input input:-ms-input-placeholder {
      color: #7B8287; }
    .input input::placeholder {
      color: #7B8287; }
    .input input:focus {
      border-color: #3E82F7; }
      .input input:focus + .cancel {
        visibility: visible; }
  .input .cancel {
    visibility: hidden;
    position: absolute;
    top: 10px;
    right: 10px; }

.action {
  display: block;
  float: right;
  color: #3E82F7;
  cursor: pointer;
  font-size: 12px;
  line-height: 14px;
  -webkit-transition: all .3s;
  transition: all .3s;
  margin-top: 10px;
  margin-bottom: 10px; }

.ngdialog.ngdialog-theme-default {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center; }

.ngdialog.ngdialog-theme-default .ngdialog-content {
  padding: 0; }

.popup__header {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  height: 140px;
  border-radius: 4px 4px 0 0;
  background-color: #3E82F7; }
  .popup__header p {
    font-size: 12px;
    line-height: 14px;
    color: #fff;
    opacity: 0.6;
    margin-bottom: 15px; }
  .popup__header + .popup__body {
    border-radius: 0 0 4px 4px; }
.popup__body {
  display: block;
  padding: 30px;
  background-color: #fff;
  border-radius: 4px; }
  .popup__body p {
    font-size: 14px;
    line-height: 16px;
    color: #7B8287;
    padding-right: 20px; }
    .popup__body p + p {
      margin-top: 20px; }
.popup__title {
  font-size: 24px;
  line-height: 27px;
  margin-bottom: 20px; }
.popup__btns {
  margin-top: 50px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end; }

.link-btn {
  display: block;
  text-transform: uppercase;
  font-size: 14px;
  line-height: 16px;
  -webkit-transition: all .3s;
  transition: all .3s;
  border: none;
  background-color: transparent;
  padding: 0;
  cursor: pointer;
  outline: none;
  text-decoration: none; }
  .link-btn + .link-btn {
    margin-left: 30px; }
  .link-btn:hover {
    color: #DF4A32; }
  .link-btn:active {
    color: #B2B2B2; }
  .link-btn_primary {
    color: #3E82F7; }
  .link-btn_default {
    color: #7B8287; }

.stars:after {
  content: '';
  display: table;
  clear: both; }
.stars__item {
  display: block;
  width: 60px;
  height: 38px;
  float: left;
  background-image: url("../images/star-empty.svg");
  background-size: 40px 38px;
  background-position: center;
  background-repeat: no-repeat; }
  .stars__item.active {
    background-image: url("../images/star-filled.svg"); }

.second-page {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  top: 0;
  left: 0;
  background-color: #2F3239;
  width: 100%;
  min-height: 100%;
  z-index: 500;
  padding: 15px 20px;
  overflow: scroll; }
  .second-page__content {
    color: #fff;
    max-width: 800px;
    margin: 0 auto;
    padding: 50px 0 65px; }
    .second-page__content h1 {
      font-size: 48px;
      line-height: 53px;
      margin-bottom: 20px; }
    .second-page__content h2, .second-page__content h3 {
      font-size: 24px;
      line-height: 25px; }
    .second-page__content a {
      color: #3E82F7;
      text-decoration: none;
      -webkit-transition: all .3s;
      transition: all .3s; }
      .second-page__content a:hover {
        color: #DF4A32; }
    .second-page__content p {
      font-size: 14px;
      line-height: 25px;
      text-align: justify; }
      .second-page__content p + h2, .second-page__content p + h3 {
        margin-top: 30px;
        margin-bottom: 10px;
        color: #fff; }
      .second-page__content p + p {
        margin-top: 15px; }
  .second-page__container {
    display: block;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
    border-radius: 4px;
    background-color: #fff;
    padding: 30px 30px 20px;
    font-size: 15px; }
    .second-page__container strong {
      font-weight: bold; }
    .second-page__container p {
      line-height: 17px; }
      .second-page__container p + p {
        margin-top: 10px; }
    .second-page__container a {
      color: #3E82F7;
      text-decoration: none;
      -webkit-transition: all .3s;
      transition: all .3s; }
      .second-page__container a:hover {
        color: #DF4A32; }
    .second-page__container hr {
      display: block;
      border: none;
      width: 100%;
      height: 1px;
      background-color: #D0D0D0;
      margin: 20px 0; }
  .second-page__title {
    font-size: 32px;
    line-height: 36px;
    margin-bottom: 20px; }
  .second-page .sk-fading-circle .sk-circle:before {
    background-color: #fff; }

.back {
  font-size: 14px;
  line-height: 16px;
  opacity: 0.6;
  -webkit-transition: all .3s;
  transition: all .3s;
  cursor: pointer;
  color: #fff;
  text-decoration: none; }
  .back:hover {
    opacity: 1; }
  .back:active {
    opacity: 0.3; }

.form {
  margin-top: 20px; }
  .form input[type='text'],
  .form input[type='email'] {
    display: block;
    width: 100%;
    height: 40px;
    border: 1px solid #D0D0D0;
    border-radius: 2px;
    font-size: 14px;
    padding: 0 15px;
    outline: none;
    margin-bottom: 20px;
    -webkit-transition: all .3s;
    transition: all .3s; }
    .form input[type='text']::-webkit-input-placeholder,
    .form input[type='email']::-webkit-input-placeholder {
      color: #777; }
    .form input[type='text']:-ms-input-placeholder,
    .form input[type='email']:-ms-input-placeholder {
      color: #777; }
    .form input[type='text']::placeholder,
    .form input[type='email']::placeholder {
      color: #777; }
    .form input[type='text']:focus,
    .form input[type='email']:focus {
      border-color: #3E82F7; }
    .form input[type='text'].ng-invalid.ng-touched,
    .form input[type='email'].ng-invalid.ng-touched {
      border-color: #DF4A32; }
  .form textarea {
    display: block;
    width: 100%;
    height: 90px;
    padding: 12px 15px;
    border: 1px solid #D0D0D0;
    border-radius: 2px;
    outline: none;
    -webkit-transition: all .3s;
    transition: all .3s;
    font-size: 14px; }
    .form textarea:focus {
      border-color: #3E82F7; }
    .form textarea::-webkit-input-placeholder {
      color: #777; }
    .form textarea:-ms-input-placeholder {
      color: #777; }
    .form textarea::placeholder {
      color: #777; }
    .form textarea.ng-invalid.ng-touched {
      border-color: #DF4A32; }
  .form input[type='submit'] {
    display: block;
    float: right;
    width: 120px;
    height: 40px;
    border-radius: 2px;
    background-color: #3E82F7;
    border: none;
    color: #fff;
    margin-top: 20px;
    font-size: 14px;
    cursor: pointer;
    -webkit-transition: all .3s;
    transition: all .3s;
    outline: none; }
    .form input[type='submit']:hover {
      background-color: #3B99FC; }
    .form input[type='submit']:active {
      background-color: #545454; }

.message {
  float: left;
  margin-top: 20px;
  min-height: 40px;
  line-height: 40px;
  font-size: 14px; }
  .message_error {
    color: #DF4A32; }

.alert {
  display: block;
  min-height: 60px;
  width: 100%;
  position: absolute;
  top: 0;
  left: 0;
  color: #fff;
  font-size: 24px;
  z-index: 1000;
  text-align: center;
  line-height: 60px; }
  .alert.ng-enter, .alert.ng-leave {
    -webkit-transition: all cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s;
    transition: all cubic-bezier(0.25, 0.46, 0.45, 0.94) 0.3s; }
  .alert.ng-enter, .alert.ng-leave.ng-leave-active {
    opacity: 0;
    top: -60px; }
  .alert.ng-leave, .alert.ng-enter.ng-enter-active {
    top: 0;
    opacity: 1; }
  .alert_success {
    background-color: rgba(106, 183, 0, 0.9); }
  .alert_error {
    background-color: rgba(238, 65, 72, 0.9); }

.bookmarks {
  height: 41px;
  -webkit-box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 1px 0px 0px rgba(0, 0, 0, 0.2);
  background: #fff;
  padding: 8px 14px 0px;
  width: 100%;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 998; }
  .bookmarks .bookmarks__list {
    white-space: nowrap; }
    .bookmarks .bookmarks__list:after {
      content: "";
      display: block;
      width: 40px;
      position: absolute;
      right: 0;
      top: 0;
      bottom: 0;
      /* Chrome10-25,Safari5.1-6 */
      background: -webkit-gradient(linear, left top, right top, from(rgba(153, 153, 153, 0)), color-stop(60%, white), to(white));
      background: linear-gradient(to right, rgba(153, 153, 153, 0) 0%, white 60%, white 100%);
      /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ }
    .bookmarks .bookmarks__list::-webkit-scrollbar {
      display: none; }
  .bookmarks .bookmarks__item {
    display: inline-block;
    margin-right: 6px;
    position: relative;
    white-space: nowrap; }
    .bookmarks .bookmarks__item > a {
      max-width: 160px; }
      .bookmarks .bookmarks__item > a:after {
        left: 130px;
        right: auto; }
    .bookmarks .bookmarks__item a {
      cursor: pointer;
      display: block;
      padding: 0px 5px 0px 26px;
      height: 26px;
      line-height: 26px;
      overflow: hidden;
      font-size: 13px;
      position: relative;
      white-space: nowrap;
      color: #323232; }
      .bookmarks .bookmarks__item a img {
        position: absolute;
        left: 5px;
        top: 5px; }
      .bookmarks .bookmarks__item a:hover {
        background: #e9e9e9;
        border-radius: 4px; }
      .bookmarks .bookmarks__item a:after {
        content: "";
        display: block;
        position: absolute;
        right: 0;
        top: 0px;
        bottom: 0px;
        height: 100%;
        /* Chrome10-25,Safari5.1-6 */
        background: -webkit-gradient(linear, left top, right top, from(rgba(153, 153, 153, 0)), color-stop(80%, white), to(white));
        background: linear-gradient(to right, rgba(153, 153, 153, 0) 0%, white 80%, white 100%);
        /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
        width: 30px; }
      .bookmarks .bookmarks__item a:hover:after {
        border-radius: 4px 4px 0px 0px;
        /* Chrome10-25,Safari5.1-6 */
        background: -webkit-gradient(linear, left top, right top, from(rgba(153, 153, 153, 0)), color-stop(80%, #e9e9e9), to(#e9e9e9));
        background: linear-gradient(to right, rgba(153, 153, 153, 0) 0%, #e9e9e9 80%, #e9e9e9 100%);
        /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */ }
    .bookmarks .bookmarks__item .empty {
      color: #aaa;
      text-align: center;
      height: 20px;
      line-height: 20px; }
    .bookmarks .bookmarks__item img {
      position: relative;
      top: 3px; }

.sk-fading-circle {
  margin: 100px auto;
  width: 40px;
  height: 40px;
  position: relative; }

.sk-fading-circle .sk-circle {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0; }

.sk-fading-circle .sk-circle:before {
  content: '';
  display: block;
  margin: 0 auto;
  width: 15%;
  height: 15%;
  background-color: #3B99FC;
  border-radius: 100%;
  -webkit-animation: sk-circleFadeDelay 1.2s infinite ease-in-out both;
  animation: sk-circleFadeDelay 1.2s infinite ease-in-out both; }

.sk-fading-circle .sk-circle2 {
  -webkit-transform: rotate(30deg);
  transform: rotate(30deg); }

.sk-fading-circle .sk-circle3 {
  -webkit-transform: rotate(60deg);
  transform: rotate(60deg); }

.sk-fading-circle .sk-circle4 {
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg); }

.sk-fading-circle .sk-circle5 {
  -webkit-transform: rotate(120deg);
  transform: rotate(120deg); }

.sk-fading-circle .sk-circle6 {
  -webkit-transform: rotate(150deg);
  transform: rotate(150deg); }

.sk-fading-circle .sk-circle7 {
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg); }

.sk-fading-circle .sk-circle8 {
  -webkit-transform: rotate(210deg);
  transform: rotate(210deg); }

.sk-fading-circle .sk-circle9 {
  -webkit-transform: rotate(240deg);
  transform: rotate(240deg); }

.sk-fading-circle .sk-circle10 {
  -webkit-transform: rotate(270deg);
  transform: rotate(270deg); }

.sk-fading-circle .sk-circle11 {
  -webkit-transform: rotate(300deg);
  transform: rotate(300deg); }

.sk-fading-circle .sk-circle12 {
  -webkit-transform: rotate(330deg);
  transform: rotate(330deg); }

.sk-fading-circle .sk-circle2:before {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s; }

.sk-fading-circle .sk-circle3:before {
  -webkit-animation-delay: -1s;
  animation-delay: -1s; }

.sk-fading-circle .sk-circle4:before {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s; }

.sk-fading-circle .sk-circle5:before {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s; }

.sk-fading-circle .sk-circle6:before {
  -webkit-animation-delay: -0.7s;
  animation-delay: -0.7s; }

.sk-fading-circle .sk-circle7:before {
  -webkit-animation-delay: -0.6s;
  animation-delay: -0.6s; }

.sk-fading-circle .sk-circle8:before {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s; }

.sk-fading-circle .sk-circle9:before {
  -webkit-animation-delay: -0.4s;
  animation-delay: -0.4s; }

.sk-fading-circle .sk-circle10:before {
  -webkit-animation-delay: -0.3s;
  animation-delay: -0.3s; }

.sk-fading-circle .sk-circle11:before {
  -webkit-animation-delay: -0.2s;
  animation-delay: -0.2s; }

.sk-fading-circle .sk-circle12:before {
  -webkit-animation-delay: -0.1s;
  animation-delay: -0.1s; }

@-webkit-keyframes sk-circleFadeDelay {
  0%, 39%, 100% {
    opacity: 0; }
  40% {
    opacity: 1; } }
@keyframes sk-circleFadeDelay {
  0%, 39%, 100% {
    opacity: 0; }
  40% {
    opacity: 1; } }
.h-notification {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  width: 100%;
  height: auto;
  background-color: #fff;
  font-size: 15px;
  line-height: 17px;
  color: #494949;
  -webkit-box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.1);
          box-shadow: 0 2px 3px 0 rgba(0, 0, 0, 0.1);
  padding-top: 7px;
  padding-bottom: 7px;
  padding-left: 15px;
  padding-right: 37px;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 102;
  text-decoration: none; }
  .h-notification + .main .logo {
    top: 60px; }
  .h-notification + .main .header {
    top: 50px; }
  .h-notification span {
    text-decoration: none;
    color: #3E82F7; }
    .h-notification span:hover {
      color: #36B118; }
  .h-notification__close {
    display: block;
    position: absolute;
    top: 10px;
    right: 10px;
    width: 12px;
    height: 12px;
    background-size: 12px;
    background-image: url("../images/close@2x.png"); }
    .h-notification__close:hover {
      background-image: url("../images/close-hover@2x.png"); }
    .h-notification__close:active {
      background-image: url("../images/close-active@2x.png"); }
  .h-notification__image {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-right: 15px; }
    .h-notification__image img {
      display: block; }
  .h-notification__text b {
    font-weight: bold;
    color: #4285F4; }
  .h-notification__text strong {
    font-weight: bold; }

.promo {
  display: block;
  position: absolute;
  bottom: 0;
  left: 0;
  padding: 13px 15px 9px 210px;
  cursor: pointer;
  z-index: 100;
  text-decoration: none; }
  .promo__first-line {
    display: block;
    font-size: 18px;
    line-height: 20px;
    color: #fff;
    margin-bottom: 2px; }
  .promo__second-line {
    display: block;
    font-size: 14px;
    line-height: 16px;
    color: rgba(255, 255, 255, 0.7); }
  .promo:hover {
    background-color: rgba(0, 0, 0, 0.6); }
    .promo:hover .promo__second-line {
      color: #3E82F7; }
  .promo_search {
    padding-left: 131px;
    background-image: url("../images/promo-search.png");
    background-repeat: no-repeat;
    background-position: left 10px bottom;
    background-size: 109px 60px; }
    @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
      .promo_search {
        background-image: url("../images/promo-search@2x.png"); } }

/* Weather widget */
.location {
  display: block;
  text-align: center;
  font-size: 20px;
  line-height: 22px;
  margin-bottom: 6px; }
  .location:before {
    content: '';
    display: inline-block;
    width: 10px;
    height: 14px;
    margin-right: 8px;
    background-image: url("../images/icon_location.png");
    background-size: 10px 14px;
    background-repeat: no-repeat; }
    @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
      .location:before {
        background-image: url("../images/icon_location@2x.png"); } }

.day-of-week {
  display: block;
  font-size: 12px;
  line-height: 14px;
  text-align: center;
  margin-bottom: 20px; }

.current-weather {
  text-align: center;
  padding-bottom: 25px;
  border-bottom: 1px solid #E3E3E3; }
  .current-weather__temp {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    font-size: 48px;
    height: 64px;
    margin-bottom: 10px; }
    .current-weather__temp i {
      margin-right: 10px; }
    .current-weather__temp b {
      font-weight: bold; }
  .current-weather__desc {
    font-size: 14px;
    line-height: 16px;
    margin-bottom: 30px;
    text-transform: capitalize; }
  .current-weather__params {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    padding: 0 20px;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between; }
  .current-weather__param {
    display: block;
    width: 80px; }
  .current-weather__icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    height: 32px;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    margin-bottom: 15px; }
    .current-weather__icon img {
      display: block; }
  .current-weather__label {
    font-size: 14px;
    line-height: 14px;
    font-weight: bold;
    margin-bottom: 8px; }
  .current-weather__value {
    color: #3E82F7;
    font-size: 13px;
    line-height: 14px; }

.hourly-forecast {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 5px 10px;
  border-bottom: 1px solid #E3E3E3; }
  .hourly-forecast__item {
    display: block;
    width: 80px;
    text-align: center;
    padding-top: 10px;
    padding-bottom: 10px; }
  .hourly-forecast__time {
    font-size: 11px;
    line-height: 14px;
    font-weight: bold;
    color: #7B8287;
    margin-bottom: 2px; }
  .hourly-forecast__humidity {
    color: #3B99FC;
    font-size: 11px;
    line-height: 12px;
    font-weight: bold; }
  .hourly-forecast__temp {
    color: #434A4F;
    font-size: 15px;
    line-height: 17px;
    font-weight: bold; }
  .hourly-forecast__icon {
    display: block;
    width: 24px;
    height: 24px;
    margin: 8px auto; }

.daily-forecast {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  padding-top: 10px; }
  .daily-forecast__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    height: 40px;
    padding: 0 20px; }
  .daily-forecast__day {
    font-size: 14px;
    line-height: 16px;
    color: #434A4F;
    font-weight: bold;
    width: 120px; }
  .daily-forecast__temp {
    display: inline-block;
    font-size: 14px;
    line-height: 16px;
    color: #7B8287; }
    .daily-forecast__temp_d {
      color: #434A4F;
      font-weight: bold;
      margin-right: 3px; }
    .daily-forecast__temp_n {
      margin-left: 3px; }
  .daily-forecast__params {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center; }
    .daily-forecast__params img {
      display: block;
      width: 24px;
      height: 24px; }
    .daily-forecast__params span {
      display: block;
      color: #3B99FC;
      font-size: 14px;
      line-height: 16px;
      font-weight: bold;
      margin-left: 7px; }

.w-icon_24px {
  display: block;
  width: 24px;
  height: 24px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 24px; }
  .w-icon_24px.w-icon_01d {
    background-image: url("../images/weather-icons/icon_01d-24px@2x.png"); }
  .w-icon_24px.w-icon_02d {
    background-image: url("../images/weather-icons/icon_02d-24px@2x.png"); }
  .w-icon_24px.w-icon_03d {
    background-image: url("../images/weather-icons/icon_03d-24px@2x.png"); }
  .w-icon_24px.w-icon_04d {
    background-image: url("../images/weather-icons/icon_04d-24px@2x.png"); }
  .w-icon_24px.w-icon_09d {
    background-image: url("../images/weather-icons/icon_09d-24px@2x.png"); }
  .w-icon_24px.w-icon_10d {
    background-image: url("../images/weather-icons/icon_10d-24px@2x.png"); }
  .w-icon_24px.w-icon_11d {
    background-image: url("../images/weather-icons/icon_11d-24px@2x.png"); }
  .w-icon_24px.w-icon_13d {
    background-image: url("../images/weather-icons/icon_13d-24px@2x.png"); }
  .w-icon_24px.w-icon_50d {
    background-image: url("../images/weather-icons/icon_50d-24px@2x.png"); }
  .w-icon_24px.w-icon_01n {
    background-image: url("../images/weather-icons/icon_01n-24px@2x.png"); }
  .w-icon_24px.w-icon_02n {
    background-image: url("../images/weather-icons/icon_02n-24px@2x.png"); }
  .w-icon_24px.w-icon_03n {
    background-image: url("../images/weather-icons/icon_03n-24px@2x.png"); }
  .w-icon_24px.w-icon_04n {
    background-image: url("../images/weather-icons/icon_04n-24px@2x.png"); }
  .w-icon_24px.w-icon_09n {
    background-image: url("../images/weather-icons/icon_09n-24px@2x.png"); }
  .w-icon_24px.w-icon_10n {
    background-image: url("../images/weather-icons/icon_10n-24px@2x.png"); }
  .w-icon_24px.w-icon_11n {
    background-image: url("../images/weather-icons/icon_11n-24px@2x.png"); }
  .w-icon_24px.w-icon_13n {
    background-image: url("../images/weather-icons/icon_13n-24px@2x.png"); }
  .w-icon_24px.w-icon_50n {
    background-image: url("../images/weather-icons/icon_50n-24px@2x.png"); }
  .w-icon_24px.w-icon_611 {
    background-image: url("../images/weather-icons/icon_611-24px@2x.png") !important; }
  .w-icon_24px.w-icon_612 {
    background-image: url("../images/weather-icons/icon_612-24px@2x.png") !important; }
  .w-icon_24px.w-icon_615 {
    background-image: url("../images/weather-icons/icon_615-24px@2x.png") !important; }
  .w-icon_24px.w-icon_616 {
    background-image: url("../images/weather-icons/icon_616-24px@2x.png") !important; }
  .w-icon_24px.w-icon_701 {
    background-image: url("../images/weather-icons/icon_701-24px@2x.png") !important; }
  .w-icon_24px.w-icon_741 {
    background-image: url("../images/weather-icons/icon_741-24px@2x.png") !important; }
  .w-icon_24px.w-icon_761 {
    background-image: url("../images/weather-icons/icon_761-24px@2x.png") !important; }
  .w-icon_24px.w-icon_781 {
    background-image: url("../images/weather-icons/icon_781-24px@2x.png") !important; }
  .w-icon_24px.w-icon_903 {
    background-image: url("../images/weather-icons/icon_903-24px@2x.png") !important; }
  .w-icon_24px.w-icon_904 {
    background-image: url("../images/weather-icons/icon_904-24px@2x.png") !important; }
  .w-icon_24px.w-icon_905 {
    background-image: url("../images/weather-icons/icon_905-24px@2x.png") !important; }
  .w-icon_24px.w-icon_906 {
    background-image: url("../images/weather-icons/icon_906-24px@2x.png") !important; }
  .w-icon_24px.w-icon_962 {
    background-image: url("../images/weather-icons/icon_962-24px@2x.png") !important; }

.w-icon_64px {
  display: block;
  width: 64px;
  height: 64px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: 64px; }
  .w-icon_64px.w-icon_01d {
    background-image: url("../images/weather-icons/icon_01d-64px@2x.png"); }
  .w-icon_64px.w-icon_02d {
    background-image: url("../images/weather-icons/icon_02d-64px@2x.png"); }
  .w-icon_64px.w-icon_03d {
    background-image: url("../images/weather-icons/icon_03d-64px@2x.png"); }
  .w-icon_64px.w-icon_04d {
    background-image: url("../images/weather-icons/icon_04d-64px@2x.png"); }
  .w-icon_64px.w-icon_09d {
    background-image: url("../images/weather-icons/icon_09d-64px@2x.png"); }
  .w-icon_64px.w-icon_10d {
    background-image: url("../images/weather-icons/icon_10d-64px@2x.png"); }
  .w-icon_64px.w-icon_11d {
    background-image: url("../images/weather-icons/icon_11d-64px@2x.png"); }
  .w-icon_64px.w-icon_13d {
    background-image: url("../images/weather-icons/icon_13d-64px@2x.png"); }
  .w-icon_64px.w-icon_50d {
    background-image: url("../images/weather-icons/icon_50d-64px@2x.png"); }
  .w-icon_64px.w-icon_01n {
    background-image: url("../images/weather-icons/icon_01n-64px@2x.png"); }
  .w-icon_64px.w-icon_02n {
    background-image: url("../images/weather-icons/icon_02n-64px@2x.png"); }
  .w-icon_64px.w-icon_03n {
    background-image: url("../images/weather-icons/icon_03n-64px@2x.png"); }
  .w-icon_64px.w-icon_04n {
    background-image: url("../images/weather-icons/icon_04n-64px@2x.png"); }
  .w-icon_64px.w-icon_09n {
    background-image: url("../images/weather-icons/icon_09n-64px@2x.png"); }
  .w-icon_64px.w-icon_10n {
    background-image: url("../images/weather-icons/icon_10n-64px@2x.png"); }
  .w-icon_64px.w-icon_11n {
    background-image: url("../images/weather-icons/icon_11n-64px@2x.png"); }
  .w-icon_64px.w-icon_13n {
    background-image: url("../images/weather-icons/icon_13n-64px@2x.png"); }
  .w-icon_64px.w-icon_50n {
    background-image: url("../images/weather-icons/icon_50n-64px@2x.png"); }
  .w-icon_64px.w-icon_611 {
    background-image: url("../images/weather-icons/icon_611-64px@2x.png") !important; }
  .w-icon_64px.w-icon_612 {
    background-image: url("../images/weather-icons/icon_612-64px@2x.png") !important; }
  .w-icon_64px.w-icon_615 {
    background-image: url("../images/weather-icons/icon_615-64px@2x.png") !important; }
  .w-icon_64px.w-icon_616 {
    background-image: url("../images/weather-icons/icon_616-64px@2x.png") !important; }
  .w-icon_64px.w-icon_701 {
    background-image: url("../images/weather-icons/icon_701-64px@2x.png") !important; }
  .w-icon_64px.w-icon_741 {
    background-image: url("../images/weather-icons/icon_741-64px@2x.png") !important; }
  .w-icon_64px.w-icon_761 {
    background-image: url("../images/weather-icons/icon_761-64px@2x.png") !important; }
  .w-icon_64px.w-icon_781 {
    background-image: url("../images/weather-icons/icon_781-64px@2x.png") !important; }
  .w-icon_64px.w-icon_903 {
    background-image: url("../images/weather-icons/icon_903-64px@2x.png") !important; }
  .w-icon_64px.w-icon_904 {
    background-image: url("../images/weather-icons/icon_904-64px@2x.png") !important; }
  .w-icon_64px.w-icon_905 {
    background-image: url("../images/weather-icons/icon_905-64px@2x.png") !important; }
  .w-icon_64px.w-icon_906 {
    background-image: url("../images/weather-icons/icon_906-64px@2x.png") !important; }
  .w-icon_64px.w-icon_962 {
    background-image: url("../images/weather-icons/icon_962-64px@2x.png") !important; }

/* Todo widget */
.todo {
  margin-top: 10px;
  margin-left: 40px;
  background-image: url("../images/todo_bg.png");
  background-size: 1px 39px;
  min-height: calc(100% - 105px); }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .todo {
      background-image: url("../images/todo_bg@2x.png"); } }
  .todo_done {
    background: none;
    min-height: none; }
  .todo__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    position: relative; }
    .todo__item .cancel {
      display: none;
      position: absolute;
      right: 10px; }
    .todo__item:hover .cancel {
      display: block; }
    .todo__item.done .todo__status {
      background-color: #6AB700;
      border-color: #6AB700;
      background-image: url("../images/icon_done.png");
      background-repeat: no-repeat;
      background-position: center;
      background-size: 12px 10px; }
      @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
        .todo__item.done .todo__status {
          background-image: url("../images/icon_done@2x.png"); } }
    .todo__item.done .todo__text {
      line-height: 39px;
      text-decoration: line-through; }
    .todo__item_new form {
      width: 100%; }
    .todo__item_new .todo__status:hover {
      border: 1px solid #D0D0D0; }
    .todo__item.ng-leave {
      -webkit-transition: 0.3s linear all;
      transition: 0.3s linear all;
      opacity: 1; }
    .todo__item.ng-leave.ng-leave-active {
      opacity: 0; }
  .todo__status {
    display: block;
    position: absolute;
    left: -25px;
    width: 18px;
    min-width: 18px;
    height: 18px;
    border-radius: 9px;
    border: 1px solid #D0D0D0;
    margin-right: 7px;
    float: left; }
    .todo__status:hover {
      border: 3px solid #6AB700; }
  .todo__text {
    display: block;
    width: 100%;
    height: 39px;
    font-size: 14px;
    color: #323232;
    border: none;
    border-bottom: 1px solid #D8D8D8;
    padding-right: 32px;
    outline: none;
    overflow: hidden;
    text-overflow: ellipsis; }
  .todo span.todo__text {
    line-height: 39px; }

/* Apps widget */
.g-apps {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  padding: 23px 15px 10px; }
  .g-apps__item {
    display: block;
    width: 90px;
    margin-bottom: 30px;
    margin-top: 7px;
    text-decoration: none;
    color: #323232;
    cursor: pointer; }
    .g-apps__item:hover .g-apps__title {
      color: #3E82F7; }
  .g-apps__icon {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: center;
        -ms-flex-pack: center;
            justify-content: center;
    height: 44px;
    margin-bottom: 10px; }
    .g-apps__icon img {
      display: block;
      max-width: 100%;
      max-height: 100%; }
  .g-apps__title {
    display: block;
    text-align: center;
    font-size: 11px;
    line-height: 12px;
    -webkit-transition: all 0.3s;
    transition: all 0.3s; }

.extensions {
  padding-left: 20px; }
  .extensions__item {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    height: 45px;
    position: relative;
    border-bottom: 1px solid #D8D8D8;
    padding-right: 35px; }
    .extensions__item .cancel {
      position: absolute;
      top: 14px;
      right: 10px;
      cursor: pointer; }
    .extensions__item.disabled .extensions__icon {
      opacity: .3; }
    .extensions__item.disabled .extensions__title {
      color: #B2B2B2; }
    .extensions__item.disabled .extensions__manage {
      color: #6AB700; }
    .extensions__item.disabled:hover .extensions__icon {
      opacity: 0.6; }
    .extensions__item.disabled:hover .extensions__title {
      color: #7B8287; }
  .extensions__icon {
    display: block;
    width: 16px;
    min-width: 16px;
    height: 16px;
    margin-right: 10px;
    -webkit-transition: all .3s;
    transition: all .3s; }
  .extensions__title {
    display: block;
    font-size: 14px;
    -webkit-transition: all .3s;
    transition: all .3s;
    width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    margin-right: 10px; }
  .extensions__manage {
    font-size: 12px;
    color: #777777;
    cursor: pointer; }
    .extensions__manage:hover {
      color: #3E82F7 !important; }

/* History widget */
.sites {
  display: block; }
  .sites__item {
    display: block;
    min-height: 36px;
    padding: 0 0 0 20px;
    -webkit-transition: all .3s;
    transition: all .3s;
    position: relative; }
    .sites__item:hover {
      background-color: #F2F2F2; }
    .sites__item.has-child:hover {
      background-color: #fff; }
    .sites__item a {
      display: block;
      font-size: 13px;
      color: #30344A;
      text-decoration: none;
      white-space: nowrap;
      text-overflow: ellipsis;
      overflow: hidden;
      padding-right: 35px;
      line-height: 36px;
      position: relative; }
      .sites__item a:hover {
        color: #3E82F7; }
        .sites__item a:hover > .remove {
          display: block; }
  .sites__icon {
    display: block;
    width: 16px;
    height: 16px;
    margin-right: 10px;
    float: left;
    margin-top: 10px; }
  .sites .sites {
    margin-left: 6px;
    padding-bottom: 10px; }
    .sites .sites .sites__item {
      padding-left: 12px;
      border-left: 2px solid #D0D0D0;
      position: relative; }
      .sites .sites .sites__item:first-child:before, .sites .sites .sites__item:last-child:after {
        content: '';
        position: absolute;
        width: 2px;
        background-color: #fff;
        z-index: 1;
        display: block;
        height: 10px;
        width: 2px;
        left: -2px; }
      .sites .sites .sites__item:first-child:hover:before, .sites .sites .sites__item:last-child:hover:after {
        display: none; }
      .sites .sites .sites__item:first-child:before {
        top: 0; }
      .sites .sites .sites__item:last-child:after {
        bottom: 0; }
  .sites_search .sites__item {
    -webkit-transition: none;
    transition: none; }

.nothing {
  display: block;
  color: #7B8287;
  font-size: 13px;
  height: 36px;
  line-height: 36px;
  padding: 0 20px; }

.folder {
  display: block;
  height: 36px;
  padding-left: 26px;
  font-size: 13px;
  line-height: 36px;
  color: #30344A;
  background-repeat: no-repeat;
  background-position: 0 12px;
  background-size: 13px 11px;
  background-image: url("../images/icon_folder-closed.png");
  cursor: default;
  position: relative; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .folder {
      background-image: url("../images/icon_folder-closed@2x.png"); } }
  .folder:hover {
    color: #3E82F7; }
    .folder:hover .remove {
      display: block; }
  .folder.opened {
    background-size: 15px 11px;
    background-position: 0 12px;
    background-image: url("../images/icon_folder-opened.png"); }
    @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
      .folder.opened {
        background-image: url("../images/icon_folder-opened@2x.png"); } }

.empty {
  display: block;
  color: #7B8287;
  font-size: 13px;
  height: 36px;
  line-height: 36px; }

.remove {
  display: none;
  width: 24px;
  height: 24px;
  border-radius: 12px;
  background-color: rgba(255, 255, 255, 0.8);
  position: absolute;
  top: 6px;
  right: 10px;
  -webkit-transition: all .3s;
  transition: all .3s;
  cursor: pointer; }
  .remove:hover {
    background-color: #3E82F7; }
    .remove:hover:after, .remove:hover:before {
      background-color: #fff; }
  .remove:active {
    background-color: #545454; }
  .remove:after, .remove:before {
    content: '';
    display: block;
    width: 2px;
    height: 12px;
    background-color: #545454;
    position: absolute;
    margin-top: 6px;
    margin-left: 11px;
    -webkit-transition: all .3s;
    transition: all .3s; }
  .remove:after {
    -webkit-transform: rotate(45deg);
            transform: rotate(45deg); }
  .remove:before {
    -webkit-transform: rotate(-45deg);
            transform: rotate(-45deg); }

/* Notes widget */
.notes-menu {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  height: 35px;
  padding: 0 20px;
  border-bottom: 1px solid #D8D8D8; }
  .notes-menu__total {
    font-size: 14px;
    font-weight: bold;
    margin-left: 10px; }
  .notes-menu__add {
    font-size: 14px;
    cursor: pointer;
    color: #3E82F7;
    margin-left: auto; }
  .notes-menu + .widget__content {
    position: relative; }

.note {
  display: block;
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  padding: 20px;
  font-size: 14px;
  line-height: 20px;
  resize: none; }

.notes-list {
  display: block;
  width: 205px;
  height: 100%;
  position: absolute;
  top: 0;
  left: -209px;
  background-color: #EEEEE4;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  -webkit-transition-timing-function: ease-out;
          transition-timing-function: ease-out; }
  .notes-list.active {
    left: 0; }
  .notes-list:after {
    content: '';
    display: block;
    opacity: 0.2;
    width: 4px;
    height: 100%;
    position: absolute;
    top: 0;
    right: -4px;
    background-image: -webkit-gradient(linear, right top, left top, from(rgba(255, 255, 255, 0)), to(#000000));
    background-image: linear-gradient(-90deg, rgba(255, 255, 255, 0) 0%, #000000 100%); }
  .notes-list__item {
    cursor: pointer;
    height: 40px;
    font-size: 14px;
    line-height: 40px;
    padding: 0 15px;
    -webkit-transition: all .3s;
    transition: all .3s;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    position: relative; }
    .notes-list__item:hover {
      background-color: #D7D7CD; }
      .notes-list__item:hover .notes-list__remove {
        display: block; }
    .notes-list__item.active {
      background-color: #3E82F7;
      color: #fff; }
  .notes-list__remove {
    display: none;
    width: 24px;
    height: 24px;
    border-radius: 12px;
    background-color: rgba(255, 255, 255, 0.8);
    position: absolute;
    top: 8px;
    right: 5px;
    -webkit-transition: all .3s;
    transition: all .3s;
    cursor: pointer; }
    .notes-list__remove:hover {
      background-color: #3E82F7; }
      .notes-list__remove:hover:after, .notes-list__remove:hover:before {
        background-color: #fff; }
    .notes-list__remove:active {
      background-color: #545454; }
    .notes-list__remove:after, .notes-list__remove:before {
      content: '';
      display: block;
      width: 2px;
      height: 12px;
      background-color: #545454;
      position: absolute;
      margin-top: 6px;
      margin-left: 11px;
      -webkit-transition: all .3s;
      transition: all .3s; }
    .notes-list__remove:after {
      -webkit-transform: rotate(45deg);
              transform: rotate(45deg); }
    .notes-list__remove:before {
      -webkit-transform: rotate(-45deg);
              transform: rotate(-45deg); }

.toggle {
  display: block;
  cursor: pointer;
  width: 16px;
  height: 12px;
  background-image: url("../images/toggle.png");
  background-size: 16px 12px;
  -webkit-transition: all .3s;
  transition: all .3s; }
  @media (-webkit-min-device-pixel-ratio: 2), (min-resolution: 192dpi) {
    .toggle {
      background-image: url("../images/toggle@2x.png"); } }
  .toggle.active {
    -webkit-transform: rotate(90deg);
            transform: rotate(90deg); }

/* Settings widget */
.subtitle {
  font-size: 14px;
  line-height: 16px;
  color: #000; }
  .subtitle + .radio {
    margin-top: 15px; }

.backgrounds {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  margin-bottom: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box; }
  .backgrounds__item {
    display: block;
    width: 32px;
    height: 32px;
    border-radius: 4px;
    margin-right: 8px;
    margin-top: 10px;
    cursor: pointer;
    position: relative;
    background-position: center;
    background-size: cover; }
    .backgrounds__item:nth-child(7n) {
      margin-right: 0; }
    .backgrounds__item:hover:after {
      content: '';
      display: block;
      -webkit-box-sizing: border-box;
              box-sizing: border-box;
      width: 16px;
      height: 16px;
      border-radius: 8px;
      border: 2px solid #fff;
      opacity: 0.5;
      position: absolute;
      left: 8px;
      top: 8px; }
    .backgrounds__item:hover:before {
      content: '';
      display: block;
      -webkit-box-sizing: border-box;
              box-sizing: border-box;
      width: 6px;
      height: 6px;
      border-radius: 3px;
      background-color: #fff;
      position: absolute;
      left: 13px;
      top: 13px; }
    .backgrounds__item.selected:after, .backgrounds__item.selected:hover:after {
      content: '';
      display: block;
      width: 12px;
      height: 12px;
      position: absolute;
      top: 10px;
      left: 10px;
      background-image: url("../images/checkmark.svg");
      background-size: 12px;
      border: none;
      opacity: 1;
      border-radius: 0; }
    .backgrounds__item.selected:before, .backgrounds__item.selected:hover:before {
      display: none; }

.input-desc {
  display: block;
  font-size: 12px;
  line-height: 14px;
  margin-bottom: 10px;
  min-height: 14px; }
  .input-desc__label {
    display: block;
    float: left;
    color: #000; }
  .input-desc__tip {
    display: block;
    float: right;
    color: #7B8287; }

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