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 {
  box-sizing: border-box;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  z-index: 10000; }

.ngdialog *, .ngdialog :after, .ngdialog :before {
  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 {
  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; }

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

a:focus {
  outline: none; }

render {
  display: block; }

.as-sortable-item, .as-sortable-placeholder {
  min-height: 20px; }

.as-sortable-placeholder {
  border: 1px dashed #fff;
  box-sizing: border-box;
  background-color: rgba(0, 0, 0, 0.1); }

.as-sortable-drag {
  opacity: .8; }

@font-face {
  font-family: 'icomoon';
  src: url("fonts/iconmoon/icomoon.ttf?uk57si");
  font-weight: normal;
  font-style: normal; }
.cloudy {
  background-image: url("../images/2x/weather/cloudy.png"); }

.day-cloudy {
  background-image: url("../images/2x/weather/day-cloudy.png"); }

.day-snow {
  background-image: url("../images/2x/weather/day-snow.png"); }

.day-storm-showers {
  background-image: url("../images/2x/weather/day-storm-showers.png"); }

.day-sunny {
  background-image: url("../images/2x/weather/day-sunny.png"); }

.day-sunny-overcast {
  background-image: url("../images/2x/weather/day-sunny-overcast.png"); }

.dust {
  background-image: url("../images/2x/weather/dust.png"); }

.fog {
  background-image: url("../images/2x/weather/fog.png"); }

.hail {
  background-image: url("../images/2x/weather/hail.png"); }

.hot {
  background-image: url("../images/2x/weather/hot.png"); }

.hurricane {
  background-image: url("../images/2x/weather/hurricane.png"); }

.night-clear {
  background-image: url("../images/2x/weather/night-clear.png"); }

.night-cloudy {
  background-image: url("../images/2x/weather/night-cloudy.png"); }

.night-partly-cloudy {
  background-image: url("../images/2x/weather/night-partly-cloudy.png"); }

.rain-mix {
  background-image: url("../images/2x/weather/rain-mix.png"); }

.showers {
  background-image: url("../images/2x/weather/showers.png"); }

.smoke {
  background-image: url("../images/2x/weather/smoke.png"); }

.snow {
  background-image: url("../images/2x/weather/snow.png"); }

.snowflake-cold {
  background-image: url("../images/2x/weather/snowflake-cold.png"); }

.snow-wind {
  background-image: url("../images/2x/weather/snow-wind.png"); }

.stars {
  background-image: url("../images/2x/weather/stars.png"); }

.strong-wind {
  background-image: url("../images/2x/weather/strong-wind.png"); }

.thunderstorm {
  background-image: url("../images/2x/weather/thunderstorm.png"); }

.tornado {
  background-image: url("../images/2x/weather/tornado.png"); }

.windy {
  background-image: url("../images/2x/weather/windy.png"); }

[class^="icon-"]:before, [class*=" icon-"]:before {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icomoon' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.icon-reload:before {
  content: "\e910"; }

.icon-ad:before {
  content: "\e90e"; }

.icon-customize:before {
  content: "\e90f"; }

.icon-dashboard:before {
  content: "\e90d"; }

.icon-restore:before {
  content: "\e90c"; }

.icon-hourglass_empty:before {
  content: "\e90b"; }

.icon-alarm:before {
  content: "\e908"; }

.icon-access_time:before {
  content: "\e909"; }

.icon-timer:before {
  content: "\e90a"; }

.icon-star:before {
  content: "\e907"; }

.icon-menu:before {
  content: "\e906"; }

.icon-close:before {
  content: "\e905"; }

.icon-search:before {
  content: "\e904"; }

.icon-settings:before {
  content: "\e903"; }

.icon-apps:before {
  content: "\e902"; }

.icon-notifications:before {
  content: "\e901"; }

.icon-location_on:before {
  content: "\e900"; }

@font-face {
  font-family: 'icons';
  src: url("fonts/iconmoon/icons.ttf?1yn1pw");
  font-weight: normal;
  font-style: normal; }
[class^="icons-"], [class*=" icons-"] {
  /* use !important to prevent issues with browser extensions that change fonts */
  font-family: 'icons' !important;
  speak: none;
  font-style: normal;
  font-weight: normal;
  font-variant: normal;
  text-transform: none;
  line-height: 1;
  /* Better Font Rendering =========== */
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.icons-news_24px:before {
  content: "\e900"; }

.icons-notes_24px:before {
  content: "\e901"; }

.icons-star_24px:before {
  content: "\e902"; }

.icons-time_24px:before {
  content: "\e903"; }

.icons-weather_24px:before {
  content: "\e904"; }

.icons-youtube_24px:before {
  content: "\e905"; }

html {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

html, body {
  min-height: 100%; }

body {
  background-image: url("../images/backgrounds/background_41.jpg");
  background-size: cover;
  background-position: center center;
  overflow: hidden;
  min-width: 800px; }
  body.with-bookmarks {
    padding-top: 41px; }
  body.theme_mac {
    font-family: 'San Francisco', Arial, sans-serif; }
  body.theme_windows {
    font-family: Arial, sans-serif; }

input, button {
  border: none;
  padding: 0px;
  outline: none;
  border-radius: 0px;
  font-family: 'San Francisco', Arial, sans-serif; }

.clearfix {
  zoom: 1;
  display: block; }

.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden; }

.blink {
  animation: blink-animation 1.5s steps(5, start) infinite;
  -webkit-animation: blink-animation 1.5s steps(5, start) infinite; }

@keyframes blink-animation {
  to {
    visibility: hidden; } }
@-webkit-keyframes blink-animation {
  to {
    visibility: hidden; } }
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button,
input::-webkit-clear-button {
  -webkit-appearance: none;
  margin: 0; }

.pull-left {
  float: left; }

.pull-right {
  float: right; }

header, section {
  padding: 0px 20px; }

.main {
  height: calc(100vh - 120px);
  width: 100vw;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: absolute;
  top: 60px;
  z-index: 50; }

.ngdialog-content *::-webkit-scrollbar {
  width: 6px; }

.ngdialog-content *::-webkit-scrollbar-thumb {
  background: #ccc; }

.green-link {
  color: #06b25c;
  text-decoration: none; }
  .green-link:hover {
    color: #4285f4; }

.ngdialog {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100%;
  z-index: 999;
  display: flex;
  align-items: center;
  justify-content: center; }
  .ngdialog.ratePopup .ngdialog-content {
    position: relative;
    padding-top: 165px;
    overflow: hidden; }
    .ngdialog.ratePopup .ngdialog-content .top {
      position: absolute;
      top: 0px;
      left: 0px;
      right: 0px;
      width: 100%;
      height: 140px;
      background: #47B264;
      display: flex;
      align-items: center;
      justify-content: center; }
      .ngdialog.ratePopup .ngdialog-content .top .stars-holder i {
        display: inline-block;
        vertical-align: top;
        width: 40px;
        height: 38px;
        background-image: url("../images/2x/star-off@2x.png");
        background-size: cover;
        margin: 0px 5px; }
        .ngdialog.ratePopup .ngdialog-content .top .stars-holder i.active {
          background-image: url("../images/2x/star-on@2x.png"); }
  .ngdialog.text-dialog .ngdialog-content {
    width: 550px;
    padding-right: 5px; }
    .ngdialog.text-dialog .ngdialog-content .popup-footer {
      padding-right: 25px; }
  .ngdialog .widgets-list {
    font-size: 0;
    text-align: center; }
    .ngdialog .widgets-list li {
      display: inline-block;
      margin-right: 36px;
      margin-top: 22px; }
      .ngdialog .widgets-list li:nth-child(3n) {
        margin-right: 0px; }
    .ngdialog .widgets-list label {
      display: block;
      width: 90px;
      height: 90px;
      border: 1px solid #d7d7d7;
      border-radius: 2px;
      cursor: pointer;
      background: #f1f1f1; }
      .ngdialog .widgets-list label:before {
        color: #8e8e93;
        font-size: 56px;
        line-height: 90px; }
    .ngdialog .widgets-list input {
      display: none; }
      .ngdialog .widgets-list input:checked + label {
        background: #5390f4;
        border-color: transparent; }
        .ngdialog .widgets-list input:checked + label:before {
          color: #fff; }
    .ngdialog .widgets-list span {
      color: #44444d;
      display: block;
      margin-top: 8px;
      font-size: 14px; }
  .ngdialog .ngdialog-content {
    background: #fff;
    width: 450px;
    padding: 25px 30px;
    border-radius: 4px;
    position: relative;
    z-index: 10;
    -webkit-box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.3);
    -moz-box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.3);
    box-shadow: 0px 8px 20px 0px rgba(0, 0, 0, 0.3); }
    .ngdialog .ngdialog-content h2 {
      font-size: 24px;
      display: block; }
    .ngdialog .ngdialog-content p {
      font-size: 14px;
      line-height: 1.4;
      color: #7B7C82;
      margin-top: 18px; }
    .ngdialog .ngdialog-content .radio-row, .ngdialog .ngdialog-content .input-row {
      margin-top: 22px; }
      .ngdialog .ngdialog-content .radio-row > label, .ngdialog .ngdialog-content .input-row > label {
        display: block;
        font-size: 14px;
        color: #000;
        margin-bottom: 14px; }
    .ngdialog .ngdialog-content .input-row {
      margin-top: 22px; }
      .ngdialog .ngdialog-content .input-row input {
        font-size: 16px;
        color: #000;
        padding-left: 15px;
        padding-right: 15px;
        width: 100%;
        padding-bottom: 14px;
        border-bottom: 1px solid #c9c9d0; }
        .ngdialog .ngdialog-content .input-row input:focus {
          border-color: #4688f1; }
      .ngdialog .ngdialog-content .input-row.location {
        position: relative; }
        .ngdialog .ngdialog-content .input-row.location button {
          display: none; }
    .ngdialog .ngdialog-content .radio-row .radios {
      margin-top: 10px; }
    .ngdialog .ngdialog-content .text-holder {
      max-height: 300px;
      overflow-y: auto;
      padding-right: 35px;
      margin-top: 25px;
      text-align: justify; }
      .ngdialog .ngdialog-content .text-holder p {
        margin-top: 15px; }
        .ngdialog .ngdialog-content .text-holder p:first-child {
          margin-top: 0px; }
      .ngdialog .ngdialog-content .text-holder h3:not(:first-child) {
        margin-top: 35px; }
      .ngdialog .ngdialog-content .text-holder a {
        color: #00ACE5;
        text-decoration: none; }
        .ngdialog .ngdialog-content .text-holder a:hover {
          opacity: 0.8; }
    .ngdialog .ngdialog-content .colors-list {
      font-size: 0px;
      margin-top: 14px;
      margin-bottom: 10px; }
      .ngdialog .ngdialog-content .colors-list li {
        display: inline-block;
        width: 40px;
        height: 40px;
        margin-bottom: 10px;
        position: relative;
        cursor: pointer; }
        .ngdialog .ngdialog-content .colors-list li:hover:before, .ngdialog .ngdialog-content .colors-list li.active:before {
          content: "";
          display: block;
          position: absolute;
          top: 0px;
          left: 0px;
          width: 100%;
          height: 100%;
          background-color: rgba(255, 255, 255, 0.2); }
        .ngdialog .ngdialog-content .colors-list li.active:before {
          background-image: url("../images/2x/active@2x.png");
          background-size: cover;
          background-color: transparent; }
        .ngdialog .ngdialog-content .colors-list li:first-child {
          border: 2px solid #dbdbdb; }
          .ngdialog .ngdialog-content .colors-list li:first-child.active:before {
            background-image: url("../images/2x/active-grey@2x.png"); }
        .ngdialog .ngdialog-content .colors-list li:not(:nth-child(8n)) {
          margin-right: 10px; }
    .ngdialog .ngdialog-content .popup-footer {
      text-align: right;
      margin-top: 40px; }
      .ngdialog .ngdialog-content .popup-footer .btn {
        text-transform: uppercase;
        font-size: 14px;
        color: #010101;
        cursor: pointer;
        margin-left: 25px; }
        .ngdialog .ngdialog-content .popup-footer .btn:hover {
          color: #00ACE5; }
        .ngdialog .ngdialog-content .popup-footer .btn.blue {
          color: #00ACE5; }
          .ngdialog .ngdialog-content .popup-footer .btn.blue:hover {
            color: #010101; }

.suggestions {
  position: absolute;
  top: 100%;
  margin-top: 5px;
  padding: 7px 0;
  left: 0px;
  right: 0px;
  width: 100%;
  z-index: 5;
  background: #fff;
  border-radius: 2px;
  -webkit-box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.3);
  box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.3); }
  .suggestions li {
    height: 34px;
    line-height: 34px;
    position: relative;
    padding: 0 15px;
    margin: 3px 0;
    display: block;
    width: 100%;
    color: #000;
    text-decoration: none;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer; }
    .suggestions li:hover, .suggestions li.active {
      background: #3B99FC;
      color: #fff; }
  .suggestions .enter {
    display: block;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.5);
    position: absolute;
    bottom: -38px;
    cursor: default; }
    .suggestions .enter:hover {
      background-color: transparent;
      color: rgba(255, 255, 255, 0.5); }
  .suggestions .nothing {
    color: #999;
    cursor: default; }
    .suggestions .nothing:hover {
      background-color: transparent;
      color: #999; }

header {
  height: 60px;
  padding-top: 20px;
  padding-left: 30px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  z-index: 100;
  position: absolute;
  width: 100%; }
  header .geo {
    font-size: 36px;
    display: block;
    margin-bottom: 20px; }
    header .geo > * {
      display: inline-block;
      vertical-align: middle; }
    header .geo i {
      font-size: 22px; }
  header .pull-right {
    font-size: 0px; }
    header .pull-right > * {
      display: inline-block;
      vertical-align: middle; }
  header nav a {
    color: #323232;
    text-decoration: none;
    font-size: 16px;
    margin-right: 30px; }
    header nav a:hover {
      color: #48ACFD; }
  header .item {
    margin-right: 30px;
    position: relative; }
    header .item .dropdown {
      display: none; }
      header .item .dropdown.active {
        display: block; }
    header .item > i:before {
      color: #8e8e93;
      font-size: 22px;
      cursor: pointer; }
    header .item:last-child {
      margin-right: 0px; }
    header .item > i:hover:before {
      color: #606060; }
    header .item .icon-notifications {
      position: relative; }
      header .item .icon-notifications span {
        display: block;
        cursor: pointer;
        position: absolute;
        font-size: 12px;
        color: #fff;
        background: #EC2D73;
        padding: 0px 6px;
        height: 16px;
        line-height: 16px;
        border-radius: 2px;
        top: -26px;
        right: -8px; }

.dropdown {
  background: #fff;
  position: absolute;
  right: -10px;
  top: 40px;
  z-index: 100;
  -webkit-border-radius: 2px;
  border-radius: 2px;
  -webkit-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.35);
  -moz-box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.35);
  box-shadow: 0px 4px 10px 0px rgba(0, 0, 0, 0.35); }
  .dropdown:before {
    content: "";
    display: block;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 5px 5px 5px;
    border-color: transparent transparent #ffffff transparent;
    position: absolute;
    top: -5px; }
  .dropdown.settings {
    width: 240px; }
    .dropdown.settings:before {
      right: 16px; }
    .dropdown.settings ul {
      padding: 15px 20px 20px 20px;
      color: #323232; }
      .dropdown.settings ul li, .dropdown.settings ul a {
        font-size: 14px;
        cursor: pointer;
        transition: all .3s;
        text-decoration: none;
        color: #323232; }
        .dropdown.settings ul li:not(:last-child), .dropdown.settings ul a:not(:last-child) {
          margin-bottom: 15px; }
        .dropdown.settings ul li:hover, .dropdown.settings ul a:hover {
          color: #00ACE5; }
        .dropdown.settings ul li.checkbox-holder, .dropdown.settings ul a.checkbox-holder {
          padding-left: 0px !important; }
          .dropdown.settings ul li.checkbox-holder label, .dropdown.settings ul a.checkbox-holder label {
            font-size: 18px;
            padding-left: 32px; }
            .dropdown.settings ul li.checkbox-holder label:before, .dropdown.settings ul a.checkbox-holder label:before {
              left: 2px; }
      .dropdown.settings ul.top {
        border-bottom: 1px solid #d8d8d8;
        padding-top: 20px; }
        .dropdown.settings ul.top li {
          font-size: 18px;
          position: relative; }
          .dropdown.settings ul.top li:hover:before {
            color: #606060; }
          .dropdown.settings ul.top li:before {
            position: absolute;
            left: 0px;
            color: #8e8e93;
            font-size: 24px;
            line-height: 18px; }
          .dropdown.settings ul.top li:not(:last-child) {
            margin-bottom: 26px; }
  .dropdown.apps {
    width: 330px;
    padding: 10px 24px;
    right: -22px; }
    .dropdown.apps:before {
      right: 28px; }
    .dropdown.apps .items {
      display: flex;
      flex-flow: row wrap;
      justify-content: space-between; }
    .dropdown.apps a {
      width: 30%;
      color: inherit;
      padding: 8px 0;
      font-size: 13px;
      text-align: center;
      text-decoration: none;
      -webkit-border-radius: 4px;
      border-radius: 4px;
      border: 1px solid transparent;
      margin-bottom: 10px;
      transition: all .3s; }
      .dropdown.apps a:nth-child(10), .dropdown.apps a:nth-child(11), .dropdown.apps a:nth-child(12) {
        margin-bottom: 0px; }
      .dropdown.apps a:hover {
        border-color: #e5e5e5; }
      .dropdown.apps a img {
        height: 64px;
        display: inline-block; }
      .dropdown.apps a span {
        display: block; }

.links {
  width: 100%;
  margin-top: 50px;
  text-align: center; }
  .links__item {
    display: inline-block;
    text-decoration: none;
    margin: 10px; }
    .links__item:hover .links__icon {
      background-color: rgba(0, 0, 0, 0.8); }
  .links__icon {
    display: block;
    width: 80px;
    height: 80px;
    background-color: rgba(0, 0, 0, 0.3);
    background-position: center center;
    background-repeat: no-repeat;
    border-radius: 4px;
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    text-align: center;
    text-decoration: none;
    margin-bottom: 10px;
    color: #fff;
    transition: all .5s; }
    .links__icon_youtube {
      background-image: url("../images/2x/apps_white/icon_youtube@2x.png");
      background-size: 49px 33px; }
    .links__icon_facebook {
      background-image: url("../images/2x/apps_white/icon_facebook@2x.png");
      background-size: 21px 44px; }
    .links__icon_twitter {
      background-image: url("../images/2x/apps_white/icon_twitter@2x.png");
      background-size: 40px 33px; }
    .links__icon_instagram {
      background-image: url("../images/2x/apps_white/icon_instagram@2x.png");
      background-size: 40px; }
    .links__icon_pinterest {
      background-image: url("../images/2x/apps_white/icon_pinterest@2x.png");
      background-size: 44px; }
    .links__icon_linkedin {
      background-image: url("../images/2x/apps_white/icon_linkedin@2x.png");
      background-size: 36px; }
    .links__icon_amazon {
      background-image: url("../images/2x/apps_white/icon_amazon@2x.png");
      background-size: 44px 42px; }
    .links__icon_ebay {
      background-image: url("../images/2x/apps_white/icon_ebay@2x.png");
      background-size: 62px 25px; }
  .links__label {
    color: #fff; }

.banner728x90 {
  width: 728px;
  height: 90px;
  background: url("../images/banner.jpg");
  margin: 0px auto 20px; }

.search-holder {
  width: 100%;
  max-width: 600px;
  margin: 0 auto; }
  .search-holder .search-form {
    position: relative; }
    .search-holder .search-form input[type="text"] {
      width: 100%;
      height: 50px;
      padding: 0px 15px;
      border: 1px solid #D0D0D0;
      font-size: 16px;
      color: #000;
      border-radius: 2px; }
      .search-holder .search-form input[type="text"]:focus {
        border-color: #4284f3;
        box-shadow: 0px 2px 8px 0px rgba(0, 0, 0, 0.3); }
  .search-holder .search-small-text {
    font-size: 11px;
    color: #c9c9d0;
    margin-top: 6px; }

.bg-settings {
  border-bottom: 1px solid #D8D8D8;
  padding: 20px; }
  .bg-settings__title {
    font-size: 14px;
    line-height: 14px;
    font-weight: bold;
    margin-bottom: 15px; }
  .bg-settings .radio-holder {
    display: block;
    margin-left: 0 !important;
    margin-bottom: 15px; }
    .bg-settings .radio-holder:last-child {
      margin-bottom: 0; }

.widgets-holder {
  display: flex;
  justify-content: center; }
  .widgets-holder > .column {
    width: 390px; }
    .widgets-holder > .column:not(:last-child) {
      margin-right: 15px; }

.widget {
  /* start weather widget */
  /* end weather widget */ }
  .widget.weather-widget {
    position: absolute;
    left: 0;
    bottom: -60px;
    width: 100%;
    color: #fff;
    z-index: 100; }
    .widget.weather-widget .widget-body {
      font-size: 12px;
      padding-bottom: 10px; }
    .widget.weather-widget .wi {
      width: 48px;
      height: 48px;
      background-size: cover;
      display: block;
      margin: 0px auto;
      float: left; }
    .widget.weather-widget .main-info {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 15px 30px 0px; }
      .widget.weather-widget .main-info .temp-holder {
        position: relative;
        top: -4px; }
      .widget.weather-widget .main-info .temp {
        font-size: 32px;
        font-weight: 400;
        display: inline-block;
        margin-left: 10px;
        margin-top: 7px; }
      .widget.weather-widget .main-info .units {
        vertical-align: top;
        display: inline-block;
        color: #fff;
        font-size: 32px;
        font-weight: 400; }
        .widget.weather-widget .main-info .units span {
          display: none;
          margin-top: 7px; }
          .widget.weather-widget .main-info .units span.active {
            display: block; }
      .widget.weather-widget .main-info .wind-icon {
        display: inline-block;
        vertical-align: middle;
        width: 16px;
        height: 16px;
        margin-right: 6px;
        background-image: url("../images/2x/wind_direction@2x.png");
        background-size: cover; }
      .widget.weather-widget .main-info .humidity-icon {
        display: inline-block;
        vertical-align: middle;
        width: 20px;
        height: 20px;
        margin-right: 9px;
        background-image: url("../images/2x/humidity@2x.png");
        background-size: cover; }
      .widget.weather-widget .main-info .sunrise-icon {
        display: inline-block;
        vertical-align: middle;
        width: 26px;
        height: 21px;
        margin-right: 9px;
        background-image: url("../images/2x/sunrise@2x.png");
        background-size: cover;
        margin-bottom: 5px; }
      .widget.weather-widget .main-info .sunset-icon {
        display: inline-block;
        vertical-align: middle;
        width: 25px;
        height: 21px;
        margin-right: 9px;
        margin-bottom: 5px;
        background-image: url("../images/2x/sunset@2x.png");
        background-size: cover; }
      .widget.weather-widget .main-info .pressure-icon {
        display: inline-block;
        vertical-align: middle;
        width: 22px;
        height: 20px;
        margin-right: 9px;
        background-image: url("../images/2x/pressure@2x.png");
        background-size: cover; }
      .widget.weather-widget .main-info .weather-item {
        color: #fff;
        vertical-align: middle;
        font-size: 14px; }
        .widget.weather-widget .main-info .weather-item.value {
          color: #323232; }
        .widget.weather-widget .main-info .weather-item.hum:after {
          content: "%"; }

.button {
  width: 80px;
  height: 34px;
  line-height: 34px;
  background: #4285f4;
  color: #fff;
  text-align: center;
  text-transform: uppercase;
  font-size: 14px;
  cursor: pointer;
  border-radius: 2px; }
  .button:hover {
    opacity: 0.8; }

.checkbox-holder input {
  display: none; }
.checkbox-holder input:checked + label:before {
  background-image: url("../images/2x/checkbox-square-on@2x.png"); }
.checkbox-holder label {
  font-size: 16px;
  color: #44444d;
  padding-left: 36px;
  position: relative;
  cursor: pointer; }
  .checkbox-holder label:before {
    content: "";
    display: block;
    width: 18px;
    height: 18px;
    background-image: url("../images/2x/checkbox-square-off@2x.png");
    background-size: cover;
    position: absolute;
    left: 7px;
    top: 50%;
    margin-top: -9px; }

.radio-holder {
  margin-left: 26px;
  display: inline-block; }
  .radio-holder:first-child {
    margin-left: 15px; }
  .radio-holder input {
    display: none; }
  .radio-holder input:checked + label:before {
    background-image: url("../images/2x/radio-on@2x.png"); }
  .radio-holder label {
    font-size: 14px;
    color: #323232;
    padding-left: 24px;
    position: relative;
    cursor: pointer; }
    .radio-holder label:before {
      content: "";
      display: block;
      width: 16px;
      height: 16px;
      background-image: url("../images/2x/radio-off@2x.png");
      background-size: cover;
      position: absolute;
      left: 0px;
      top: 50%;
      margin-top: -8px; }

.spinner-holder {
  width: 100px;
  height: 100px;
  background: #fff;
  border-radius: 15px;
  position: relative;
  margin: 0 auto; }

.loader-holder {
  background: rgba(0, 0, 0, 0.4);
  position: fixed;
  top: 0px;
  left: 0px;
  right: 0px;
  bottom: 0px;
  z-index: 1000;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  visibility: visible;
  opacity: 1; }
  .loader-holder.fade-out {
    visibility: hidden;
    opacity: 0; }

body:not(.c0) header .geo, body:not(.c0) header nav a, body:not(.c0) .main .search-holder .search-small-text {
  color: #fff; }
body:not(.c0) header .item i:before {
  transition: all .3s;
  color: #fff; }
body:not(.c0) header .item i:hover:before {
  color: #3B99FC; }
body:not(.c0) header .item i:active:before {
  color: rgba(0, 0, 0, 0.5); }
body:not(.c0) .main > .search-holder .search-form input[type="text"] {
  border-color: #fff; }
body:not(.c0) header nav a {
  transition: all .3s; }
  body:not(.c0) header nav a:hover {
    color: #00ace5; }
  body:not(.c0) header nav a:active {
    color: rgba(0, 0, 0, 0.5); }

ul[dnd-list],
ul[dnd-list] > li {
  position: relative; }

.dropzone ul[dnd-list] {
  min-height: 42px;
  margin: 0px;
  padding-left: 0px; }

.dndDragging {
  opacity: 0.7; }

.dndDraggingSource {
  display: none; }

.dndPlaceholder {
  background-color: rgba(0, 0, 0, 0.3);
  border: 1px dashed #fff;
  min-height: 200px;
  display: block;
  position: relative;
  margin-bottom: 14px; }

.trash .dndPlaceholder {
  display: none; }

.with-bookmarks .trash {
  top: 41px; }

.trash {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 80px;
  background: rgba(244, 44, 70, 0.9);
  z-index: 999;
  color: #fff;
  font-size: 18px;
  text-align: center;
  line-height: 80px; }
  .trash.dndDragover {
    background: rgba(153, 3, 23, 0.9); }
  .trash span {
    position: relative;
    display: block; }
    .trash span:before {
      content: "";
      display: inline-block;
      vertical-align: middle;
      width: 14px;
      height: 19px;
      background-image: url("../images/2x/trash@2x.png");
      background-size: cover;
      position: relative;
      top: -2px;
      margin-right: 10px; }

#c {
  position: absolute;
  top: 0;
  left: 0; }

@media (max-width: 1100px) {
  .weather-item:nth-child(6) {
    display: none; } }
@media (max-width: 900px) {
  .weather-item:nth-child(5) {
    display: none; } }
@media (max-width: 750px) {
  .weather-item:nth-child(4) {
    display: none; } }
@media (max-width: 500px) {
  .weather-item:nth-child(3) {
    display: none; } }

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