HTML {
  background-color: #3f4649;
  font-family: 'helvetica neue', 'arial', sans-serif;
  height: 100%;
  margin: 0;
  padding: 0;
  }

BODY {
  height: 100%;
  margin: 0;
  padding: 0;
  position: relative;
  -webkit-text-size-adjust: 100%;
  -webkit-tap-highlight-color: rgba(0,0,0, 0);
  -webkit-touch-callout: none;
  -webkit-user-select: none;
          user-select: none;
  }

.app {
  bottom: 0;
  left: 0;
  overflow-x: hidden;
  position: absolute;
  right: 0;
  top: 0;
  }

.hidden {
  display: none !important;
  }

.invisible {
  visibility: hidden;
  }
/** @TODO: remove hard coded selectors */
.entries__list {
  -webkit-transform: translate3d(0,0,0) scale3d(1,1,1);
  transform: translate3d(0,0,0) scale3d(1,1,1);
  -webkit-backface-visibility: hidden;
  }

#pull-refresh {
  background: #fafafa;
  /*box-shadow: inset 0 -3px 13px rgba(0,0,0, 0.25);*/
  display: block;
  height: 30px;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: -30px;
  width: 100%;
  }

.pullRefresh_loading {
  -webkit-transition: -webkit-transform 0.25s;
  transition: transform 0.25s;
  }

.pullrefresh-slideup {
  -webkit-transition: -webkit-transform 0.4s;
  transition: transform 0.4s;
  }

/**
 * Message
 */

.pullRefresh__message {
  color: #333;
  height: 30px;
  line-height: 32px;
  font-size: 11px;
  text-align: center;
  }

.pullRefresh__message::after {
  content: 'Pull to refresh'
  }

.breakpoint .pullRefresh__message::after {
  content: 'Release to refresh'
  }

.pullRefresh_loading .pullRefresh__message::after {
  content: 'Loading'
  }

.pullrefresh-slideup .pullRefresh__message::after {
  content: 'Loading'
  }

/**
 * Icon
 */

.pullRefresh__icon {
  background-repeat: no-repeat;
  background-size: 100% 100%;
  position: absolute;
  }

.pullRefresh__icon_arrow {
  background-image: url(../image/pull-refresh-arrow.png);
  height: 9px;
  left: 10px;
  top: 10px;
  width: 24px;
  -webkit-transform: rotate(90deg);
  transform: rotate(90deg);
  -webkit-transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  -webkit-backface-visibility: hidden;
  }

.pullRefresh__icon_arrow_up {
  -webkit-transform: rotate(-90deg);
  transform: rotate(-90deg);
  }

.pullRefresh__icon_loading {
  background-image: url(../image/pull-refresh-loader.png);
  height: 16px;
  left: 18px;
  top: 8px;
  width: 16px;
  -webkit-animation: rotate 1s linear infinite;
  animation: rotate 1s linear infinite;
  }


@-webkit-keyframes rotate{
  0% {
    -webkit-transform: rotate(0deg);
    }
  100%{
    -webkit-transform: rotate(360deg);
    }
  }

@keyframes rotate{
  0% {
    transform: rotate(0deg);
    }
  100% {
    transform: rotate(360deg);
    }
  }
/**
 * Categories
 */

#categories {
  bottom: 80px;
  left: 0;
  position: absolute;
  right: 0;
  top: 49px;
  }

.categories {
  height: 100%;
  overflow: hidden;
  position: relative;
  width: 100%;
  }

.categories__list {
  height: 100%;
  overflow: auto;
  position: absolute;
  width: 100%;
  -webkit-overflow-scrolling: touch;
  }

/**
 * Category
 */

.category {
  margin-bottom: 1px;
  position: relative;
  -webkit-backface-visibility: hidden;
  }

/**
 * Category summary
 */

.category__summary {
  background-color: #2d2f31;
  border-left: 5px solid;
  height: 40px;
  padding-left: 44px;
  padding-right: 50px;
  position: relative;
  }

.category_current__summary {
  background-color: #22a86c !important;
  box-shadow: none !important;
  }

.category__summary:active {
  background-color: #1d1f21;
  box-shadow: inset 0 3px 5px rgba(0,0,0, 0.25);
  }

/**
 * Icon
 */

.category__icon {
  bottom: 0;
  left: 0;
  position: absolute;
  top: 0;
  width: 36px;
  }

.category__icon-inner {
  background-image: url(../image/category-icon.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  content: '';
  left: 20px;
  height: 10px;
  position: absolute;
  top: 16px;
  width: 10px;
  -webkit-transition: -webkit-transform 0.15s;
     -moz-transition:    -moz-transform 0.15s;
      -ms-transition:     -ms-transform 0.15s;
       -o-transition:      -o-transform 0.15s;
          transition:         transform 0.15s;
  }

.category_starred__icon .category__icon-inner {
  background-image: url(../image/category-starred-icon.png);
  height: 17px;
  left: 15px;
  top: 11px;
  width: 18px;
  }

.category_all__icon .category__icon-inner {
  background-image: url(../image/category-all-icon.png);
  height: 18px;
  left: 14px;
  top: 11px;
  width: 19px;
  }

.category_expanded__icon .category__icon-inner {
  -webkit-transform: rotate(90deg);
     -moz-transform: rotate(90deg);
      -ms-transform: rotate(90deg);
       -o-transform: rotate(90deg);
          transform: rotate(90deg);
  }

.category__name {
  color: #f8f8f8;
  font-size: 15px;
  line-height: 41px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  }

.category__unread-count {
  bottom: 0;
  color: #f8f8f8;
  font-size: 15px;
  line-height: 40px;
  overflow: hidden;
  position: absolute;
  right: 10px;
  text-align: right;
  text-overflow: ellipsis;
  top: 0;
  width: 44px;
  }

/**
 * Category feeds
 */

.category__feeds {}
/**/
/**
 * Entries
 */


#entries {
  bottom: 0;
  left: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 0;
  visibility: hidden;
  }

.entries {
  height: 100%;
  overflow: hidden;
  position: relative;
  visibility: visible;
  width: 100%;
  }

.entries__list {
  height: 100%;
  position: relative;
  width: 100%;
  }

.entries__scroll {
  height: 100%;
  overflow: auto;
  position: relative;
  -webkit-overflow-scrolling: touch;
  }

.entries__list__items {
  padding-bottom: 32px;
  position: relative;
  }

/**
 * Items loader
 */

.entries__list__items::after {
  bottom: 0;
  content: 'Loading...';
  font-size: 9px;
  height: 32px;
  left: 0;
  line-height: 24px;
  position: absolute;
  right: 0;
  text-align: center;
  visibility: hidden;
  }

.entries__list__items_loading::after {
  visibility: visible;
  }

/**
 * Entry
 */

.entry-item {
  border-right: 7px solid #e6567a;
  display: block;
  height: 32px;
  padding: 9px 145px 0 60px;
  position: relative;
  -webkit-backface-visibility: hidden;
  }

@media all and (max-width: 640px) {
  .entry-item {
    padding-right: 75px;
    }
  }

/**
 * Odd item
 */

.entry-item_odd {
  background-color: #e8e8e8;
  }

.entry-item_odd:active {
  background-color: #e0e0e0;
  }

/**
 * Even item
 */

.entry-item_even {
  background-color: #f8f8f8;
  }

.entry-item_even:active {
  background-color: #f0f0f0;
  }

.entry-item_unread {
  color: #111;
  /*font-weight: bolder;*/
  }

.entry-item_read {
  color: #818181;
  }

/**
 * Entry arrow
 */

.entry-item__arrow {
  background-image: url(../image/entry-arrow.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  height: 9px;
  left: 8px;
  position: absolute;
  top: 16px;
  width: 6px;
  -webkit-backface-visibility: hidden;
  }

.entry-item_read__arrow {
  opacity: 0.25;
  }

.entry-item_unread__arrow {
  opacity: 0.75;
  }

/**
 * Entry date
 */

.entry-item__date-wrapper {
  bottom: 0;
  left: 26px;
  position: absolute;
  text-align: center;
  top: 0;
  vertical-align: middle;
  width: 22px;
  -webkit-backface-visibility: hidden;
  }

.entry-item__date {
  display: table-cell;
  font-size: 7px;
  font-style: italic;
  height: 41px;
  line-height: 110%;
  text-align: center;
  vertical-align: middle;
  -webkit-backface-visibility: hidden;
  }

/**
 * Entry text
 */

.entry-item__text {
  display: inline-block;
  font-size: 9px;
  line-height: 11px;
  max-height: 22px;
  overflow: hidden;
  vertical-align: middle;
  }

/**
 * Entry source
 */

.entry-item__source {
  color: #8d8d8c;
  font-size: 7px;
  height: 100%;
  line-height: 42px;
  overflow: hidden;
  position: absolute;
  right: 7px;
  text-align: right;
  text-overflow: ellipsis;
  top: 0;
  white-space: nowrap;
  width: 124px;
  -webkit-backface-visibility: hidden;
  }

@media all and (max-width: 640px) {
  .entry-item__source {
    width: 54px;
    }
  }

/**
 * Loader
 */

.entries__loader {
  background-color: #f8f8f8;
  color: #333;
  font-size: 75%;
  padding: 16px;
  position: relative;
  text-align: center;
  z-index: 1;
  }

/**
 * Empty message
 */

.entries__empty {
  background-color: #f8f8f8;
  color: #333;
  font-size: 75%;
  padding: 16px;
  position: relative;
  text-align: center;
  z-index: 1;
  }

.entries__update {
  background-color: #22a86c;
  border-radius: 3px;
  box-shadow: 0 3px 0 #147f4f;
  color: #fff;
  font-size: 12px;
  height: 32px;
  line-height: 32px;
  margin: 2px 2px 5px;
  position: relative;
  text-align: center;
  top: 49px;
  z-index: 1000;
  }

.has-update-button .content {
  top: 88px;
  }
/**
 * Action
 */

.action {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #fff;
  display: inline-block;
  font-size: 9px;
  height: 100%;
  opacity: 0;
  overflow: hidden;
  padding: 12px 12px 12px 34px;
  position: relative;
  vertical-align: top;
  white-space: nowrap;
  -webkit-transition: opacity 0.2s;
  }

.action:active {
  background-color: #2d2f31;
  }

/** icon */
.action::after {
  background-repeat: no-repeat;
  background-size: 100% 100%;
  content: '';
  height: 19px;
  left: 10px;
  position: absolute;
  top: 10px;
  width: 19px;
  }

.entry_ready .action {
  opacity: 1;
  }

/**
 * Back
 */

.action_back {
  opacity: 1;
  padding: 0;
  width: 44px;
  }

.action_back::after {
  background-image: url(../image/entry-back-icon.png);
  left: 12px;
  top: 15px;
  }

/**
 * Star/unstar
 */

.action_star::after,
.action_unstar::after {
  left: 8px;
  top: 14px;
  }

.action_star::after {
  background-image: url(../image/entry-star-icon.png);
  }

.action_unstar::after {
  background-image: url(../image/entry-unstar-icon.png);
  }

/**
 * Mark as read/unread
 */

.action_mark-as-read::after,
.action_mark-as-unread::after {
  left: 8px;
  top: 14px;
  }

.action_mark-as-unread::after {
  background-image: url(../image/entry-mark-as-unread-icon.png);
  }

.action_mark-as-read::after {
  background-image: url(../image/entry-mark-as-read-icon.png);
  }


/**
 * Email
 */

.action_email::after {
  background-image: url(../image/share-email.png);
  left: 8px;
  opacity: 0.4;
  top: 14px;
  }

/**
 * Facebook
 */

.action_facebook::after {
  background-image: url(../image/share-facebook.png);
  background-size: 10px 22px;
  left: 14px;
  opacity: 0.4;
  top: 14px;
  }

/**
 * Twitter
 */

.action_twitter::after {
  background-image: url(../image/share-twitter.png);
  background-size: 20px 16px;
  left: 8px;
  opacity: 0.4;
  top: 16px;
  }

/**
 * Source
 */

.action_source::after {
  background-image: url(../image/entry-source-icon.png);
  background-size: 19px 19px;
  left: 8px;
  opacity: 0.45;
  top: 14px;
  }

/**
 * Share
 */

.action_share {
  display: none;
  position: absolute;
  right: 4px;
  top: 0;
  padding: 0;
  width: 72px;
  }

.action_share_active {
  background-color: #2d2f31;
  }

.action_share::after {
  background-image: url(../image/entry-share-icon.png);
  left: 28px;
  top: 14px;
  }

/**
 * Feed
 */

.entry__feed {
  color: #8d8d8c;
  font-size: 12px;
  height: 100%;
  line-height: 49px;
  overflow: hidden;
  position: absolute;
  right: 10px;
  text-overflow: ellipsis;
  top: 0;
  white-space: nowrap;
  width: 130px;
  }

/**
 * Color
 */

.entry__color {
  background-color: #2d2f31;
  box-shadow: inset 0 -4px 0 0 rgba(0,0,0, .35);
  bottom: -4px;
  position: absolute;
  right: 0;
  top: 0;
  width: 4px;
  }

@media all and (max-width: 1023px) {
  .entry__feed {
    display: none;
    }
  }

@media all and (max-width: 924px) {
  .action_email,
  .action_facebook,
  .action_twitter {
    font-size: 0;
    width: 20px;
    }

  .action_email::after {
    left: 14px;
    }

  .action_facebook::after {
    left: 18px;
    }

  .action_twitter::after {
    left: 13px;
    }
  }

@media all and (max-width: 760px) {
  .action_share {
    display: block;
    }

  .action_email,
  .action_facebook,
  .action_twitter,
  .action_source {
    display: none;
    }
  }

@media all and (max-width: 480px) {
  .main_entry .toggle {
    display: none;
    }

  .entry__header {
    padding-left: 0 !important;
    }
  }
/**
 * Entry
 */

.entry {
  visibility: visible;
  }

#entry {
  height: 100%;
  overflow: auto;
  position: relative;
  width: 100%;
  visibility: hidden;
  }

.entry-scroll {
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
  position: relative;
  width: 100%;
  -webkit-overflow-scrolling: touch;
  }

.entry__inner {
  overflow: hidden;
  width: 100%;
  }

.entry__image {
  display: block;
  width: 100%;
  }

.entry__body {
  padding: 15px;
  }

.entry__title {
  font-size: 16px;
  line-height: 130%;
  }

@media all and (min-width: 768px) {
  .entry__title {
    font-size: 18px;
    }
  }

.entry__meta {
  overflow: hidden;
  padding: 10px 0;
  }

.entry__date {
  color: #949494;
  float: left;
  font-size: 8px;
  font-style: italic;
  }

.entry__source {
  color: #949494;
  float: right;
  font-size: 9px;
  }

.entry__content {
  color: #111;
  font-size: 12px;
  line-height: 130%;
  }

.entry__content IMG {
  display: block;
  max-width: 100% !important;
  }

.entry__pages {
  height: 100%;
  white-space: nowrap;
  -webkit-transform: translate3d(-100%,0,0);
  }

.entry__pages_amimated {
  -webkit-transition: -webkit-transform 0.2s;
  }

.entry__page {
  display: inline-block;
  height: 100%;
  overflow: hidden;
  vertical-align: middle;
  white-space: normal;
  width: 100%;
  }

.entry__pages_animated .entry-scroll {
  overflow: hidden;
  -webkit-overflow-scrolling: hidden;
  }
.feeds {
  padding: 10px 0;
  }

.feed {
  color: #f8f8f8;
  height: 30px;
  padding: 0 50px 0 49px;
  position: relative;
  }

.feed_current {
  background-color: rgba(0,0,0, 0.25);
  }

.feed__icon {
  border: none;
  height: 16px;
  left: 22px;
  margin: 0;
  position: absolute;
  top: 7px;
  width: 16px;
  }

.feed__name {
  line-height: 30px;
  font-size: 15px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  }

.feed__unread-count {
  bottom: 0;
  color: #f8f8f8;
  font-size: 15px;
  line-height: 30px;
  overflow: hidden;
  position: absolute;
  right: 10px;
  text-align: right;
  text-overflow: ellipsis;
  top: 0;
  width: 44px;
  }
.share {
  background-color: rgba(0,0,0, 0.5);
  bottom: 0;
  left: 0;
  position: absolute;
  right: 0;
  top: 0;
  }

.share__links {
  margin-top: 25px;
  }

.share__link {
  border-radius: 0 4px 4px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  color: #fff;
  display: block;
  font-size: 18px;
  height: 54px;
  left: 27px;
  line-height: 54px;
  margin: 0 auto 14px;
  padding-left: 16px;
  position: relative;
  text-decoration: none;
  width: 188px;
  }

.share__link::before {
  background-repeat: no-repeat;
  border-radius: 4px 0 0 4px;
  bottom: 0;
  content: '';
  margin-right: 1px;
  position: absolute;
  right: 100%;
  top: 0;
  width: 54px
  }

.share__link_source,
.share__link_source::before {
  background-color: #0d7f4f;
  }

.share__link_source::before {
  background-image: url(../image/share-source.png);
  background-position: 15px 15px;
  background-size: 25px 25px;
  }

.share__link_reader,
.share__link_reader::before {
  background-color: #0d7f4f;
  }

.share__link_reader::before {
  background-image: url(../image/share-reader.png);
  background-position: 6px 6px;
  background-size: 42px 42px;
  }

.share__link_email,
.share__link_email::before {
  background-color: #0d7f4f;
  }

.share__link_email::before {
  background-image: url(../image/share-email.png);
  background-position: 12px 12px;
  background-size: 30px 30px;
  }

.share__link_twitter,
.share__link_twitter::before {
  background-color: #0189bd;
  }

.share__link_twitter::before {
  background-image: url(../image/share-twitter.png);
  background-position: 15px 16px;
  background-size: 29px 24px;
  }

.share__link_facebook,
.share__link_facebook::before {
  background-color: #3c5a90;
  }

.share__link_facebook::before {
  background-image: url(../image/share-facebook.png);
  background-position: 20px 10px;
  background-size: 15px 33px;
  }
.read {

  }

.sidebar {
  }

.main {
  background-color: #f8f8f8;
  bottom: 0;
  left: 0;
  position: absolute;
  top: 0;
  right: 0;
  -webkit-transition: -webkit-transform 0.25s ease-out, left 0.25s ease-out;
  }

.main_shifted {
  left: 240px;
  }

@media all and (max-width: 640px) {
  .main_shifted {
    left: 0;
    -webkit-transform: translate3d(275px,0,0);
    }
  }

/* shadow */
.main::before {
  box-shadow: -5px 0 10px rgba(0,0,0, 0.23), -1px 0 13px 0 rgba(0,0,0, 0.25);
  bottom: 0;
  clip: rect(0,0,auto,-30px);
  content: '';
  left: 0;
  pointer-events: none;
  position: absolute;
  top: 0;
  width: 30px;
  }

/** overlay */
.main__overlay {
  background-color: #000;
  bottom: 0;
  display: none;
  left: 0;
  opacity: 0;
  position: absolute;
  right: 0;
  top: 0;
  -webkit-transition: opacity 0.25s ease-out;
  }

/** block main panel with overlay on phones */
@media all and (max-width: 420px) {
  .main_shifted .main__overlay {
    display: block;
    opacity: 0.075;
    }
  }

/**
 * Header
 */

.header {
  background-color: #3f4649;
  border-bottom: 4px solid #2d2f31;
  height: 45px;
  left: 0;
  padding-left: 48px;
  position: absolute;
  right: 0;
  top: 0;
  }

.content {
  background-color: #f8f8f8;
  bottom: 0;
  left: 0;
  overflow: hidden;
  position: absolute;
  right: 0;
  top: 49px;
  }

/**
 * Toggle button
 */

.toggle {
  height: 48px;
  left: 0;
  position: absolute;
  top: 0;
  width: 52px;
  }

.toggle__button {
  left: 14px;
  position: absolute;
  top: 13px;
  width: 22px;
  }

.toggle:active {
  background-color: #2d2f31;
  }

.toggle__button__segment {
  background-color: #949494;
  height: 4px;
  margin-bottom: 2px;
  overflow: hidden;
  }

.toggle:active .toggle__button__segment {
  background-color: #b0b0b0;
  }
/**
 * Sidebar
 */

.sidebar {
  background-color: #3f4649;
  bottom: 0;
  left: 0;
  overflow: hidden;
  position: absolute;
  top: 0;
  width: 240px;
  -webkit-transition: -webkit-transform 0.25s ease-out;
  }

@media all and (max-width: 640px) {
  .sidebar {
    width: 275px;
    }
  }

.sidebar_hidden {
  -webkit-transform: translate3d(-80px,0,0);
  }

/**
 * Logo
 */

.logo {
  background-image: url(../image/logo.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  height: 22px;
  left: 23px;
  position: absolute;
  top: 14px;
  width: 162px;
  }

/**
 * Actions
 */

.actions {
  background-color: #fdb53f;
  bottom: 0;
  height: 40px;
  left: 0;
  position: absolute;
  right: 0;
  }

/**
 * Log out
 */

.logout {
  bottom: 0;
  color: #3f4649;
  left: 0;
  line-height: 40px;
  padding: 0 20px 0 48px;
  position: absolute;
  text-decoration: none;
  top: 0;
  }

.logout::before {
  background-image: url(../image/logout-icon.png);
  background-repeat: no-repeat;
  background-size: 19px 19px;
  content: '';
  height: 19px;
  left: 22px;
  position: absolute;
  top: 10px;
  width: 19px;
  }


.social-buttons {
    padding: 8px 10px 10px 21px;
    position: absolute;
    bottom: 40px;
    height: 22px;
}

.social-buttons > div {
    display: inline-block;
    margin-right: 10px;
    vertical-align: top;
}

.social-buttons .social-button-rss a {
    background-color: #f7a42c;
    color: #fff;
    padding: 4px;
    border-radius: 3px;
    font-size: 11px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
}

.social-buttons .social-button-rss a:hover {
    background-color: #e7942c;
}

.social-buttons .social-button-rss a .icon-rss {
    width: 12px;
    height: 12px;
    display: flex;
}

.login {
    min-height: 100%;
    position: relative;
    margin: auto;
    background-color: #ccc;
    font-family: 'ProximaNova-Regular';
    font-size: 14px;
    color: #000000;
}

.login * {
    margin: 0;
    padding: 0;
}

.login h1,
.login h2,
.login h3 {
    font-weight: normal;
}

.login a {
    color: #4c6eee;
    outline: none;
    text-decoration: none;
}

.login a:hover {
    color: #4c6eee;
}

.login li {
    list-style-type: none;
}

.login img {
    border: none;
    display: block;
}

@font-face {
    font-family: 'ProximaNova-Regular';
    src: url("../fonts/regular/proximanova-regular-webfont.woff") format("woff"), url("../fonts/regular/proximanova-regular-webfont.ttf") format("truetype"), url("../fonts/regular/proximanova-regular-webfont.eot") format("eot");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'ProximaNovaBold';
    src: url("../fonts/bold/proximanova-bold-webfont.woff") format("woff"), url("../fonts/bold/proximanova-bold-webfont.ttf") format("truetype"), url("../fonts/bold/proximanova-bold-webfont.eot") format("eot");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'ProximaNova-Extrabold';
    src: url("../fonts/extrabold/proximanova-extrabold-webfont.woff") format("woff"), url("../fonts/extrabold/proximanova-extrabold-webfont.ttf") format("truetype"), url("../fonts/extrabold/proximanova-extrabold-webfont.eot") format("eot");
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'ProximaNova-Semibold';
    src: url("../fonts/semibold/proximanova-semibold-webfont.woff") format("woff"), url("../fonts/semibold/proximanova-semibold-webfont.ttf") format("truetype"), url("../fonts/semibold/proximanova-semibold-webfont.eot") format("eot");
    font-weight: normal;
    font-style: normal;
}
.login .main-header-box {
    min-width: 1000px;
    border-bottom: 1px solid #f1f2ec;
    position: relative;
    z-index: 10;
}

.login .main-inner-header {
    height: 48px;
    max-width: 1200px;
    margin: auto;
    padding: 0 15px;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}
.login .main-inner-header .main-search-box {
    float: left;
    top: 6px;
}
.login .main-inner-header .main-menu {
    float: right;
}

.login .main-logo {
    position: relative;
    display: block;
    height: 48px;
    line-height: 48px;
    color: #a8ab97 !important;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 3px;
    float: left;
    margin-right: 93px;
}

.login .main-logo:hover {
    opacity: .8;
}

.login .main-search-box {
    width: 370px;
    height: 36px;
    position: relative;
    z-index: 5;
}
.login .main-search-box input {
    box-sizing: border-box;
    font: 14px/34px 'Noto Sans', sans-serif;
    width: 100%;
    height: 36px;
    border: 1px solid #edefd4;
    padding: 0 46px 0 15px;
}
.login .main-search-box input[placeholder] {
    text-overflow: ellipsis;
    color: #000;
}
.login .main-search-box input::-moz-placeholder {
    text-overflow: ellipsis;
    color: #9f9f9f;
}
.login .main-search-box input:-moz-placeholder {
    text-overflow: ellipsis;
    color: #9f9f9f;
}
.login .main-search-box input:-ms-input-placeholder {
    text-overflow: ellipsis;
    color: #9f9f9f;
}

.login .main-search-icon {
    width: 46px;
    height: 100%;
    line-height: 36px;
    position: absolute;
    right: 0;
    top: 0;
    text-align: center;
    font-size: 16px;
}
.login .main-search-icon > a {
    color: #bbb;
    position: absolute;
    width: 100%;
    height: 100%;
    right: 0;
}

.login .main-search-icon:hover {
    opacity: .8;
}

.login .main-search-box.size-x {
    width: 570px;
    height: 46px;
}
.login .main-search-box.size-x input {
    font: 14px/46px 'Noto Sans', sans-serif;
    height: 46px;
    padding: 0 46px 0 15px;
}
.login .main-search-box.size-x .main-search-icon {
    line-height: 46px;
}

.login .main-menu > ul > li {
    display: inline-block;
    line-height: 48px;
    margin-right: 28px;
}
.login .main-menu > ul > li > a {
    color: #a4a4a4;
}
.login .main-menu > ul > li > a:hover {
    text-decoration: underline;
}

.login .login-content-box {
    position: relative;
}

.login .login-content--box {
    min-width: 320px;
    margin: auto;
    position: relative;
    z-index: 5;
}

.login .presentation-box {
    box-sizing: border-box;
    /*max-width:830px;*/
    background-color: #55a05d;
    position: relative;
    padding-bottom: 34px;
}

.login .title-box {
    font-family: 'ProximaNovaBold';
    font-size: 17px;
    color: #fff;
    padding-top: 20px;
    margin-bottom: 28px;
    text-align: center;
}
.login .title-box h1 > span {
    display: inline-block;
    height: 24px;
    line-height: 24px;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    padding: 0 9px;
    font-size: 16px;
    background-color: #0f7f4f;
    position: relative;
    top: -3px;
    margin-left: 6px;
}
.login .title-box img {
    display: inline-block;
    width: 134px;
}

.login .description-box {
    word-wrap: break-word;
}

.login .title-1 {
    font-family: 'ProximaNovaBold';
    font-size: 24px;
    line-height: 155%;
    text-transform: uppercase;
    margin-bottom: 10px;
    max-width: 300px;
    margin: auto;
    text-align: center;
}

.login .color-orange {
    color: #f5cc4d;
}

.login .color-white {
    color: #ffffff;
}

.login .color-green {
    color: #adeab4;
}

.login .title-2 {
    font-family: 'ProximaNovaBold';
    font-size: 14px;
    margin-bottom: 25px;
    text-align: center;
}

.login .text-box {
    color: #fff;
    font-size: 14px;
    line-height: 145%;
    max-width: 278px;
    text-align: center;
    margin: 0 auto 30px;
}

.login .likes-box {
    text-align: center;
    height: 23px;
}
.login .likes-box img {
    display: inline-block;
    margin-right: 14px;
    position: relative;
    top: 0;
}
.login .likes-box > div {
    display: inline-block;
    margin-right: 20px;
    vertical-align: top;
}
.login .likes-box > div:last-child {
    margin-right: 0;
}

.login .rss-button {
    display: inline-block;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    background-color: #f7a42c;
    color: #fff !important;
    height: 20px;
    line-height: 20px;
    padding: 0 7px;
    font-size: 12px;
    font-family: Helvetica, Arial, sans-serif;
}
.login .rss-button i {
    margin-right: 7px;
}

.login .rss-button:hover {
    opacity: .75;
}

.login .registration-box {
    overflow: hidden;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
    border-radius: 10px;
    max-width: 305px;
    background-color: #fff;
    margin: 0 auto 30px;
    padding-bottom: 27px;
}

.login .top-part {
    background-color: #f5f5f5;
    height: 45px;
    border-bottom: 1px solid #d9e9e2;
    position: relative;
    margin-bottom: 23px;
}

.login .menu-reg {
    left: 35px;
    position: absolute;
    bottom: 0;
    z-index: 5;
    overflow: hidden;
    height: 45px;
}
.login .menu-reg li {
    float: left;
    margin-right: 25px;
}
.login .menu-reg li > a {
    display: block;
    height: 40px;
    font-size: 14px;
    color: #93959e;
    line-height: 45px;
}
.login .menu-reg li > a.active {
    color: #000;
    border-bottom: 5px solid #0f7f4f;
}

.login .login-form {
    padding: 0 35px;
}

.login .row-form {
    overflow: hidden;
}
.login .row-form > label {
    display: inline-block;
}
.login .row-form > input[type="text"],
.login .row-form > input[type="password"] {
    box-sizing: border-box;
    width: 100%;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    font-size: 11px;
    padding: 0 7px;
    font-family: 'ProximaNova-Regular';
    border: 2px solid #d2e6dd;
    height: 36px;
    line-height: 32px;
}
.login .row-form .icheckbox {
    float: left;
}

.login .row-form + .row-form {
    margin-top: 15px;
}

.login .icheckbox {
    box-sizing: border-box;
    cursor: pointer;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    border: 2px solid #d2e6dd;
    width: 16px;
    height: 16px;
    margin-right: 17px;
    position: relative;
    z-index: 5;
}

.login .icheckbox.checked {
    background: url(../image/check.jpg) no-repeat 50% 50%;
    background-size: 85%;
}

.login label.checkbox-title {
    color: #4f5362;
    position: relative;
    font-size: 11px;
    top: -1px;
}

.login .row-form.-check {
    margin-top: 14px;
    height: 16px;
}

.login .button-style {
    background-color: #ccc;
    display: inline-block;
    width: 100%;
    -moz-border-radius: 3px;
    -webkit-border-radius: 3px;
    border-radius: 3px;
    height: 36px;
    font-size: 11px;
    line-height: 36px;
    text-align: center;
    color: #ffffff !important;
    font-family: 'ProximaNovaBold';
    border: none;
}

.login .button-style:hover {
    opacity: .8;
}

.login a.-green,
.login button.-green {
    background-color: #0f7f4f;
}

.login a.-red {
    background-color: #d7482b;
}
.login a.-red span {
    border-color: #b82e17 !important;
}

.login a.-blue {
    background-color: #5471b9;
}
.login a.-blue span {
    border-color: #405990 !important;
}

.login .-upp {
    text-transform: uppercase;
    letter-spacing: 1px;
}

.login .login-box {
    margin-top: 15px;
    text-align: center;
}

.login .forgot {
    color: #0f7f4f !important;
    display: inline-block;
    height: 33px;
    line-height: 33px;
    font-size: 12px;
    text-decoration: underline;
}

.login .separator {
    margin-top: 15px;
    margin-bottom: 8px;
    border-top: 1px solid #d2e6dd;
}
.login .separator > p {
    background-color: #ffffff;
    width: 40px;
    text-align: center;
    font-size: 11px;
    color: #93959e;
    margin: auto;
    position: relative;
    text-transform: uppercase;
    top: -7px;
    z-index: 1;
}

.login .social-group > a {
    text-align: left;
    font-size: 14px;
}
.login .social-group > a > b {
    width: 69%;
    display: inline-block;
    padding-left: 15px;
}
.login .social-group > a span {
    display: inline-block;
    width: 30%;
    max-width: 36px;
    height: 36px;
    line-height: 36px;
    text-align: center;
    border-right: 1px solid #ccc;
}
.login .social-group > a + a {
    margin-top: 13px;
}

.login .rainbow {
    display: table;
    width: 100%;
}
.login .rainbow .line {
    display: table-cell;
    height: 6px;
    width: 20%;
}
.login .rainbow .square {
    display: block;
    height: 6px;
    width: 6px;
}
.login .rainbow .-green {
    background-color: #82ba00;
}
.login .rainbow .-white {
    background-color: #ffffff;
}
.login .rainbow .-light-blue {
    background-color: #3ec0e6;
}
.login .rainbow .-yellow {
    background-color: #e6be36;
}
.login .rainbow .-red {
    background-color: #dd5579;
}
.login .rainbow .-purple {
    background-color: #7658f8;
}

.login .login-footer-box {
    min-width: 320px;
    background-color: #3f4649;
}

.login .login-footer--box {
    position: relative;
}

.login .login-inner-footer {
    position: relative;
    height: 110px;
}
.login .login-inner-footer a {
    color: #f7f8f2;
    text-decoration: underline;
}
.login .login-inner-footer a:hover {
    text-decoration: none;
}

.login .logo-footer {
    width: 186px;
    margin: auto;
    padding: 19px 0 14px;
}
.login .logo-footer a > {
    display: block;
}
.login .logo-footer img {
    width: 126px;
    margin: auto;
}

.login .logo-footer:hover {
    opacity: .8;
}

.login .desc-footer {
    width: 250px;
    color: #919191;
    font-size: 12px;
    line-height: 150%;
    text-align: center;
    margin: auto;
    z-index: 5;
}

.login .login__error,
.login .register__error {
  color: #d00;
  font-size: 12px;
}

.login .register__error {
  margin-top: 7px;
}

.login .row-form > input[type="password"].input_error,
.login .row-form > input[type="text"].input_error {
  border-color: #dc513a;
}

.button {

  }

.button_read-all {
  background-color: #22a86c;
  border-radius: 3px;
  box-shadow: 0 3px 0 #147f4f;
  box-sizing: border-box;
  color: #fff;
  font-size: 9px;
  height: 24px;
  line-height: 110%;
  padding: 3px 0 0 25px;
  position: absolute;
  right: 14px;
  top: 10px;
  width: 63px;
  }

.button_read-all:active {
  box-shadow: 0 2px 0 #147f4f;
  top: 11px;
  }

.button_read-all::before {
  background-image: url(../image/mark-all-read-icon.png);
  background-repeat: no-repeat;
  background-size: 100% 100%;
  border-radius: 3px;
  content: '';
  height: 11px;
  left: 7px;
  position: absolute;
  top: 7px;
  width: 11px;
  }

.button_read-all_disabled {
  opacity: .5;
  pointer-events: none;
  }
.filter {
  background-color: #2d2f31;
  border-radius: 3px;
  height: 27px;
  left: 50%;
  margin-left: -60px;
  position: absolute;
  top: 10px;
  white-space: nowrap;
  width: 96px;
  }

.filter__item {
  box-sizing: border-box;
  color: #fff;
  display: inline-block;
  font-size: 9px;
  height: 27px;
  line-height: 120%;
  padding: 3px 5px;
  text-align: center;
  vertical-align: top;
  white-space: normal;
  width: 50%;
  }

/**
 * Handle
 */

.filter__handle {
  background-color: #22a86c;
  border-radius: 3px;
  bottom: 3px;
  box-shadow: 0 3px 0 #147f4f;
  left: 0;
  position: absolute;
  top: 0;
  width: 50%;
  -webkit-transition: -webkit-transform .2s;
  }

.filter__handle_0 {
  -webkit-transform: translate(0,0);
  }

.filter__handle_1 {
  -webkit-transform: translate(48px,0);
  }

.filter__handle::before,
.filter__handle::after {
  border-color: #1a8f5b;
  border-style: solid;
  border-width: 0 2px;
  content: '';
  bottom: 5px;
  position: absolute;
  top: 6px;
  width: 4px;
  }

.filter__handle::before {
  left: 15px;
  }

.filter__handle::after {
  left: 27px;
  }