@import url(https://fonts.googleapis.com/css?family=Raleway+Dots);
@import url(https://fonts.googleapis.com/css?family=Lato:100,300,400,700,900);
@import url(https://fonts.googleapis.com/css?family=Roboto+Slab&subset=latin,cyrillic-ext);
@import url(https://fonts.googleapis.com/css?family=Roboto+Condensed:400,700);
@import url(https://fonts.googleapis.com/css?family=Roboto+Slab&subset=latin,cyrillic-ext);
@import url(https://fonts.googleapis.com/css?family=Roboto+Condensed:400,700);
.rc-slider {
  position: relative;
  height: 14px;
  padding: 5px 0;
  width: 100%;
  border-radius: 6px;
  -ms-touch-action: none;
      touch-action: none;
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.rc-slider * {
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.rc-slider-rail {
  position: absolute;
  width: 100%;
  background-color: #e9e9e9;
  height: 4px;
  border-radius: 6px;
}
.rc-slider-track {
  position: absolute;
  left: 0;
  height: 4px;
  border-radius: 6px;
  background-color: #abe2fb;
}
.rc-slider-handle {
  position: absolute;
  margin-left: -7px;
  margin-top: -5px;
  width: 14px;
  height: 14px;
  cursor: pointer;
  cursor: -webkit-grab;
  cursor: grab;
  border-radius: 50%;
  border: solid 2px #96dbfa;
  background-color: #fff;
  -ms-touch-action: pan-x;
      touch-action: pan-x;
}
.rc-slider-handle:hover {
  border-color: #57c5f7;
}
.rc-slider-handle:active {
  border-color: #57c5f7;
  box-shadow: 0 0 5px #57c5f7;
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
.rc-slider-handle:focus {
  border-color: #57c5f7;
  box-shadow: 0 0 0 5px #96dbfa;
  outline: none;
}
.rc-slider-mark {
  position: absolute;
  top: 18px;
  left: 0;
  width: 100%;
  font-size: 12px;
}
.rc-slider-mark-text {
  position: absolute;
  display: inline-block;
  vertical-align: middle;
  text-align: center;
  cursor: pointer;
  color: #999;
}
.rc-slider-mark-text-active {
  color: #666;
}
.rc-slider-step {
  position: absolute;
  width: 100%;
  height: 4px;
  background: transparent;
}
.rc-slider-dot {
  position: absolute;
  bottom: -2px;
  margin-left: -4px;
  width: 8px;
  height: 8px;
  border: 2px solid #e9e9e9;
  background-color: #fff;
  cursor: pointer;
  border-radius: 50%;
  vertical-align: middle;
}
.rc-slider-dot-active {
  border-color: #96dbfa;
}
.rc-slider-disabled {
  background-color: #e9e9e9;
}
.rc-slider-disabled .rc-slider-track {
  background-color: #ccc;
}
.rc-slider-disabled .rc-slider-handle,
.rc-slider-disabled .rc-slider-dot {
  border-color: #ccc;
  box-shadow: none;
  background-color: #fff;
  cursor: not-allowed;
}
.rc-slider-disabled .rc-slider-mark-text,
.rc-slider-disabled .rc-slider-dot {
  cursor: not-allowed !important;
}
.rc-slider-vertical {
  width: 14px;
  height: 100%;
  padding: 0 5px;
}
.rc-slider-vertical .rc-slider-rail {
  height: 100%;
  width: 4px;
}
.rc-slider-vertical .rc-slider-track {
  left: 5px;
  bottom: 0;
  width: 4px;
}
.rc-slider-vertical .rc-slider-handle {
  margin-left: -5px;
  margin-bottom: -7px;
  -ms-touch-action: pan-y;
      touch-action: pan-y;
}
.rc-slider-vertical .rc-slider-mark {
  top: 0;
  left: 18px;
  height: 100%;
}
.rc-slider-vertical .rc-slider-step {
  height: 100%;
  width: 4px;
}
.rc-slider-vertical .rc-slider-dot {
  left: 2px;
  margin-bottom: -4px;
}
.rc-slider-vertical .rc-slider-dot:first-child {
  margin-bottom: -4px;
}
.rc-slider-vertical .rc-slider-dot:last-child {
  margin-bottom: -4px;
}
.rc-slider-tooltip-zoom-down-enter,
.rc-slider-tooltip-zoom-down-appear {
  animation-duration: .3s;
  animation-fill-mode: both;
  display: block !important;
  animation-play-state: paused;
}
.rc-slider-tooltip-zoom-down-leave {
  animation-duration: .3s;
  animation-fill-mode: both;
  display: block !important;
  animation-play-state: paused;
}
.rc-slider-tooltip-zoom-down-enter.rc-slider-tooltip-zoom-down-enter-active,
.rc-slider-tooltip-zoom-down-appear.rc-slider-tooltip-zoom-down-appear-active {
  animation-name: rcSliderTooltipZoomDownIn;
  animation-play-state: running;
}
.rc-slider-tooltip-zoom-down-leave.rc-slider-tooltip-zoom-down-leave-active {
  animation-name: rcSliderTooltipZoomDownOut;
  animation-play-state: running;
}
.rc-slider-tooltip-zoom-down-enter,
.rc-slider-tooltip-zoom-down-appear {
  transform: scale(0, 0);
  animation-timing-function: cubic-bezier(0.23, 1, 0.32, 1);
}
.rc-slider-tooltip-zoom-down-leave {
  animation-timing-function: cubic-bezier(0.755, 0.05, 0.855, 0.06);
}
@keyframes rcSliderTooltipZoomDownIn {
  0% {
    opacity: 0;
    transform-origin: 50% 100%;
    transform: scale(0, 0);
  }
  100% {
    transform-origin: 50% 100%;
    transform: scale(1, 1);
  }
}
@keyframes rcSliderTooltipZoomDownOut {
  0% {
    transform-origin: 50% 100%;
    transform: scale(1, 1);
  }
  100% {
    opacity: 0;
    transform-origin: 50% 100%;
    transform: scale(0, 0);
  }
}
.rc-slider-tooltip {
  position: absolute;
  left: -9999px;
  top: -9999px;
  visibility: visible;
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.rc-slider-tooltip * {
  box-sizing: border-box;
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
}
.rc-slider-tooltip-hidden {
  display: none;
}
.rc-slider-tooltip-placement-top {
  padding: 4px 0 8px 0;
}
.rc-slider-tooltip-inner {
  padding: 6px 2px;
  min-width: 24px;
  height: 24px;
  font-size: 12px;
  line-height: 1;
  color: #fff;
  text-align: center;
  text-decoration: none;
  background-color: #6c6c6c;
  border-radius: 6px;
  box-shadow: 0 0 4px #d9d9d9;
}
.rc-slider-tooltip-arrow {
  position: absolute;
  width: 0;
  height: 0;
  border-color: transparent;
  border-style: solid;
}
.rc-slider-tooltip-placement-top .rc-slider-tooltip-arrow {
  bottom: 4px;
  left: 50%;
  margin-left: -4px;
  border-width: 4px 4px 0;
  border-top-color: #6c6c6c;
}
.toast-title {
  font-weight: bold;
}
.toast-message {
  -ms-word-wrap: break-word;
  word-wrap: break-word;
}
.toast-message a,
.toast-message label {
  color: #FFFFFF;
}
.toast-message a:hover {
  color: #CCCCCC;
  text-decoration: none;
}
.toast-close-button {
  position: relative;
  right: -0.3em;
  top: -0.3em;
  float: right;
  font-size: 20px;
  font-weight: bold;
  color: #FFFFFF;
  -webkit-text-shadow: 0 1px 0 #ffffff;
  text-shadow: 0 1px 0 #ffffff;
  opacity: 0.8;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  filter: alpha(opacity=80);
  line-height: 1;
}
.toast-close-button:hover,
.toast-close-button:focus {
  color: #000000;
  text-decoration: none;
  cursor: pointer;
  opacity: 0.4;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
  filter: alpha(opacity=40);
}
.rtl .toast-close-button {
  left: -0.3em;
  float: left;
  right: 0.3em;
}
/*Additional properties for button version
 iOS requires the button element instead of an anchor tag.
 If you want the anchor version, it requires `href="#"`.*/
button.toast-close-button {
  padding: 0;
  cursor: pointer;
  background: transparent;
  border: 0;
  -webkit-appearance: none;
}
.toast-top-center {
  top: 0;
  right: 0;
  width: 100%;
}
.toast-bottom-center {
  bottom: 0;
  right: 0;
  width: 100%;
}
.toast-top-full-width {
  top: 0;
  right: 0;
  width: 100%;
}
.toast-bottom-full-width {
  bottom: 0;
  right: 0;
  width: 100%;
}
.toast-top-left {
  top: 12px;
  left: 12px;
}
.toast-top-right {
  top: 12px;
  right: 12px;
}
.toast-bottom-right {
  right: 12px;
  bottom: 12px;
}
.toast-bottom-left {
  bottom: 12px;
  left: 12px;
}
#toast-container {
  position: fixed;
  z-index: 999999;
  pointer-events: none;
  /*overrides*/
}
#toast-container * {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
#toast-container > div {
  position: relative;
  pointer-events: auto;
  overflow: hidden;
  margin: 0 0 6px;
  padding: 15px 15px 15px 50px;
  width: 300px;
  -moz-border-radius: 3px 3px 3px 3px;
  -webkit-border-radius: 3px 3px 3px 3px;
  border-radius: 3px 3px 3px 3px;
  background-position: 15px center;
  background-repeat: no-repeat;
  -moz-box-shadow: 0 0 12px #999999;
  -webkit-box-shadow: 0 0 12px #999999;
  box-shadow: 0 0 12px #999999;
  color: #FFFFFF;
  opacity: 0.8;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=80);
  filter: alpha(opacity=80);
}
#toast-container > div.rtl {
  direction: rtl;
  padding: 15px 50px 15px 15px;
  background-position: right 15px center;
}
#toast-container > div:hover {
  -moz-box-shadow: 0 0 12px #000000;
  -webkit-box-shadow: 0 0 12px #000000;
  box-shadow: 0 0 12px #000000;
  opacity: 1;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  filter: alpha(opacity=100);
  cursor: pointer;
}
#toast-container > .toast-info {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGwSURBVEhLtZa9SgNBEMc9sUxxRcoUKSzSWIhXpFMhhYWFhaBg4yPYiWCXZxBLERsLRS3EQkEfwCKdjWJAwSKCgoKCcudv4O5YLrt7EzgXhiU3/4+b2ckmwVjJSpKkQ6wAi4gwhT+z3wRBcEz0yjSseUTrcRyfsHsXmD0AmbHOC9Ii8VImnuXBPglHpQ5wwSVM7sNnTG7Za4JwDdCjxyAiH3nyA2mtaTJufiDZ5dCaqlItILh1NHatfN5skvjx9Z38m69CgzuXmZgVrPIGE763Jx9qKsRozWYw6xOHdER+nn2KkO+Bb+UV5CBN6WC6QtBgbRVozrahAbmm6HtUsgtPC19tFdxXZYBOfkbmFJ1VaHA1VAHjd0pp70oTZzvR+EVrx2Ygfdsq6eu55BHYR8hlcki+n+kERUFG8BrA0BwjeAv2M8WLQBtcy+SD6fNsmnB3AlBLrgTtVW1c2QN4bVWLATaIS60J2Du5y1TiJgjSBvFVZgTmwCU+dAZFoPxGEEs8nyHC9Bwe2GvEJv2WXZb0vjdyFT4Cxk3e/kIqlOGoVLwwPevpYHT+00T+hWwXDf4AJAOUqWcDhbwAAAAASUVORK5CYII=") !important;
}
#toast-container > .toast-error {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAHOSURBVEhLrZa/SgNBEMZzh0WKCClSCKaIYOED+AAKeQQLG8HWztLCImBrYadgIdY+gIKNYkBFSwu7CAoqCgkkoGBI/E28PdbLZmeDLgzZzcx83/zZ2SSXC1j9fr+I1Hq93g2yxH4iwM1vkoBWAdxCmpzTxfkN2RcyZNaHFIkSo10+8kgxkXIURV5HGxTmFuc75B2RfQkpxHG8aAgaAFa0tAHqYFfQ7Iwe2yhODk8+J4C7yAoRTWI3w/4klGRgR4lO7Rpn9+gvMyWp+uxFh8+H+ARlgN1nJuJuQAYvNkEnwGFck18Er4q3egEc/oO+mhLdKgRyhdNFiacC0rlOCbhNVz4H9FnAYgDBvU3QIioZlJFLJtsoHYRDfiZoUyIxqCtRpVlANq0EU4dApjrtgezPFad5S19Wgjkc0hNVnuF4HjVA6C7QrSIbylB+oZe3aHgBsqlNqKYH48jXyJKMuAbiyVJ8KzaB3eRc0pg9VwQ4niFryI68qiOi3AbjwdsfnAtk0bCjTLJKr6mrD9g8iq/S/B81hguOMlQTnVyG40wAcjnmgsCNESDrjme7wfftP4P7SP4N3CJZdvzoNyGq2c/HWOXJGsvVg+RA/k2MC/wN6I2YA2Pt8GkAAAAASUVORK5CYII=") !important;
}
#toast-container > .toast-success {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAADsSURBVEhLY2AYBfQMgf///3P8+/evAIgvA/FsIF+BavYDDWMBGroaSMMBiE8VC7AZDrIFaMFnii3AZTjUgsUUWUDA8OdAH6iQbQEhw4HyGsPEcKBXBIC4ARhex4G4BsjmweU1soIFaGg/WtoFZRIZdEvIMhxkCCjXIVsATV6gFGACs4Rsw0EGgIIH3QJYJgHSARQZDrWAB+jawzgs+Q2UO49D7jnRSRGoEFRILcdmEMWGI0cm0JJ2QpYA1RDvcmzJEWhABhD/pqrL0S0CWuABKgnRki9lLseS7g2AlqwHWQSKH4oKLrILpRGhEQCw2LiRUIa4lwAAAABJRU5ErkJggg==") !important;
}
#toast-container > .toast-warning {
  background-image: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABgAAAAYCAYAAADgdz34AAAAAXNSR0IArs4c6QAAAARnQU1BAACxjwv8YQUAAAAJcEhZcwAADsMAAA7DAcdvqGQAAAGYSURBVEhL5ZSvTsNQFMbXZGICMYGYmJhAQIJAICYQPAACiSDB8AiICQQJT4CqQEwgJvYASAQCiZiYmJhAIBATCARJy+9rTsldd8sKu1M0+dLb057v6/lbq/2rK0mS/TRNj9cWNAKPYIJII7gIxCcQ51cvqID+GIEX8ASG4B1bK5gIZFeQfoJdEXOfgX4QAQg7kH2A65yQ87lyxb27sggkAzAuFhbbg1K2kgCkB1bVwyIR9m2L7PRPIhDUIXgGtyKw575yz3lTNs6X4JXnjV+LKM/m3MydnTbtOKIjtz6VhCBq4vSm3ncdrD2lk0VgUXSVKjVDJXJzijW1RQdsU7F77He8u68koNZTz8Oz5yGa6J3H3lZ0xYgXBK2QymlWWA+RWnYhskLBv2vmE+hBMCtbA7KX5drWyRT/2JsqZ2IvfB9Y4bWDNMFbJRFmC9E74SoS0CqulwjkC0+5bpcV1CZ8NMej4pjy0U+doDQsGyo1hzVJttIjhQ7GnBtRFN1UarUlH8F3xict+HY07rEzoUGPlWcjRFRr4/gChZgc3ZL2d8oAAAAASUVORK5CYII=") !important;
}
#toast-container.toast-top-center > div,
#toast-container.toast-bottom-center > div {
  width: 300px;
  margin-left: auto;
  margin-right: auto;
}
#toast-container.toast-top-full-width > div,
#toast-container.toast-bottom-full-width > div {
  width: 96%;
  margin-left: auto;
  margin-right: auto;
}
.toast {
  background-color: #030303;
}
.toast-success {
  background-color: #51A351;
}
.toast-error {
  background-color: #BD362F;
}
.toast-info {
  background-color: #2F96B4;
}
.toast-warning {
  background-color: #F89406;
}
.toast-progress {
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  background-color: #000000;
  opacity: 0.4;
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=40);
  filter: alpha(opacity=40);
}
/*Responsive Design*/
@media all and (max-width: 240px) {
  #toast-container > div {
    padding: 8px 8px 8px 50px;
    width: 11em;
  }
  #toast-container > div.rtl {
    padding: 8px 50px 8px 8px;
  }
  #toast-container .toast-close-button {
    right: -0.2em;
    top: -0.2em;
  }
  #toast-container .rtl .toast-close-button {
    left: -0.2em;
    right: 0.2em;
  }
}
@media all and (min-width: 241px) and (max-width: 480px) {
  #toast-container > div {
    padding: 8px 8px 8px 50px;
    width: 18em;
  }
  #toast-container > div.rtl {
    padding: 8px 50px 8px 8px;
  }
  #toast-container .toast-close-button {
    right: -0.2em;
    top: -0.2em;
  }
  #toast-container .rtl .toast-close-button {
    left: -0.2em;
    right: 0.2em;
  }
}
@media all and (min-width: 481px) and (max-width: 768px) {
  #toast-container > div {
    padding: 15px 15px 15px 50px;
    width: 25em;
  }
  #toast-container > div.rtl {
    padding: 15px 50px 15px 15px;
  }
}

.f32 .flag{display:inline-block;height:32px;width:32px;vertical-align:text-top;line-height:32px;background:url(/public/deploy/71c5ce73aec822b89406.png) no-repeat;}
.f32 ._African_Union{background-position:0 -32px;}
.f32 ._Arab_League{background-position:0 -64px;}
.f32 ._ASEAN{background-position:0 -96px;}
.f32 ._CARICOM{background-position:0 -128px;}
.f32 ._CIS{background-position:0 -160px;}
.f32 ._Commonwealth{background-position:0 -192px;}
.f32 ._England{background-position:0 -224px;}
.f32 ._European_Union, .f32 .eu{background-position:0 -256px;}
.f32 ._Islamic_Conference{background-position:0 -288px;}
.f32 ._Kosovo{background-position:0 -320px;}
.f32 ._NATO{background-position:0 -352px;}
.f32 ._Northern_Cyprus{background-position:0 -384px;}
.f32 ._Northern_Ireland{background-position:0 -416px;}
.f32 ._Olimpic_Movement{background-position:0 -448px;}
.f32 ._OPEC{background-position:0 -480px;}
.f32 ._Red_Cross{background-position:0 -512px;}
.f32 ._Scotland{background-position:0 -544px;}
.f32 ._Somaliland{background-position:0 -576px;}
.f32 ._Tibet{background-position:0 -608px;}
.f32 ._United_Nations{background-position:0 -640px;}
.f32 ._Wales{background-position:0 -672px;}
.f32 .ad{background-position:0 -704px;}
.f32 .ae{background-position:0 -736px;}
.f32 .af{background-position:0 -768px;}
.f32 .ag{background-position:0 -800px;}
.f32 .ai{background-position:0 -832px;}
.f32 .al{background-position:0 -864px;}
.f32 .am{background-position:0 -896px;}
.f32 .ao{background-position:0 -928px;}
.f32 .aq{background-position:0 -960px;}
.f32 .ar{background-position:0 -992px;}
.f32 .as{background-position:0 -1024px;}
.f32 .at{background-position:0 -1056px;}
.f32 .au{background-position:0 -1088px;}
.f32 .aw{background-position:0 -1120px;}
.f32 .ax{background-position:0 -1152px;}
.f32 .az{background-position:0 -1184px;}
.f32 .ba{background-position:0 -1216px;}
.f32 .bb{background-position:0 -1248px;}
.f32 .bd{background-position:0 -1280px;}
.f32 .be{background-position:0 -1312px;}
.f32 .bf{background-position:0 -1344px;}
.f32 .bg{background-position:0 -1376px;}
.f32 .bh{background-position:0 -1408px;}
.f32 .bi{background-position:0 -1440px;}
.f32 .bj{background-position:0 -1472px;}
.f32 .bm{background-position:0 -1504px;}
.f32 .bn{background-position:0 -1536px;}
.f32 .bo{background-position:0 -1568px;}
.f32 .br{background-position:0 -1600px;}
.f32 .bs{background-position:0 -1632px;}
.f32 .bt{background-position:0 -1664px;}
.f32 .bw{background-position:0 -1696px;}
.f32 .by{background-position:0 -1728px;}
.f32 .bz{background-position:0 -1760px;}
.f32 .ca{background-position:0 -1792px;}
.f32 .cd{background-position:0 -1824px;}
.f32 .cf{background-position:0 -1856px;}
.f32 .cg{background-position:0 -1888px;}
.f32 .ch{background-position:0 -1920px;}
.f32 .ci{background-position:0 -1952px;}
.f32 .ck{background-position:0 -1984px;}
.f32 .cl{background-position:0 -2016px;}
.f32 .cm{background-position:0 -2048px;}
.f32 .cn{background-position:0 -2080px;}
.f32 .co{background-position:0 -2112px;}
.f32 .cr{background-position:0 -2144px;}
.f32 .cu{background-position:0 -2176px;}
.f32 .cv{background-position:0 -2208px;}
.f32 .cy{background-position:0 -2240px;}
.f32 .cz{background-position:0 -2272px;}
.f32 .de{background-position:0 -2304px;}
.f32 .dj{background-position:0 -2336px;}
.f32 .dk{background-position:0 -2368px;}
.f32 .dm{background-position:0 -2400px;}
.f32 .do{background-position:0 -2432px;}
.f32 .dz{background-position:0 -2464px;}
.f32 .ec{background-position:0 -2496px;}
.f32 .ee{background-position:0 -2528px;}
.f32 .eg{background-position:0 -2560px;}
.f32 .eh{background-position:0 -2592px;}
.f32 .er{background-position:0 -2624px;}
.f32 .es{background-position:0 -2656px;}
.f32 .et{background-position:0 -2688px;}
.f32 .fi{background-position:0 -2720px;}
.f32 .fj{background-position:0 -2752px;}
.f32 .fm{background-position:0 -2784px;}
.f32 .fo{background-position:0 -2816px;}
.f32 .fr{background-position:0 -2848px;}  .f32 .bl, .f32 .cp, .f32 .mf, .f32 .yt{background-position:0 -2848px;}
.f32 .ga{background-position:0 -2880px;}
.f32 .gb{background-position:0 -2912px;}  .f32 .sh{background-position:0 -2912px;}
.f32 .gd{background-position:0 -2944px;}
.f32 .ge{background-position:0 -2976px;}
.f32 .gg{background-position:0 -3008px;}
.f32 .gh{background-position:0 -3040px;}
.f32 .gi{background-position:0 -3072px;}
.f32 .gl{background-position:0 -3104px;}
.f32 .gm{background-position:0 -3136px;}
.f32 .gn{background-position:0 -3168px;}
.f32 .gp{background-position:0 -3200px;}
.f32 .gq{background-position:0 -3232px;}
.f32 .gr{background-position:0 -3264px;}
.f32 .gt{background-position:0 -3296px;}
.f32 .gu{background-position:0 -3328px;}
.f32 .gw{background-position:0 -3360px;}
.f32 .gy{background-position:0 -3392px;}
.f32 .hk{background-position:0 -3424px;}
.f32 .hn{background-position:0 -3456px;}
.f32 .hr{background-position:0 -3488px;}
.f32 .ht{background-position:0 -3520px;}
.f32 .hu{background-position:0 -3552px;}
.f32 .id{background-position:0 -3584px;}
.f32 .mc{background-position:0 -3584px;}
.f32 .ie{background-position:0 -3616px;}
.f32 .il{background-position:0 -3648px;}
.f32 .im{background-position:0 -3680px;}
.f32 .in{background-position:0 -3712px;}
.f32 .iq{background-position:0 -3744px;}
.f32 .ir{background-position:0 -3776px;}
.f32 .is{background-position:0 -3808px;}
.f32 .it{background-position:0 -3840px;}
.f32 .je{background-position:0 -3872px;}
.f32 .jm{background-position:0 -3904px;}
.f32 .jo{background-position:0 -3936px;}
.f32 .jp{background-position:0 -3968px;}
.f32 .ke{background-position:0 -4000px;}
.f32 .kg{background-position:0 -4032px;}
.f32 .kh{background-position:0 -4064px;}
.f32 .ki{background-position:0 -4096px;}
.f32 .km{background-position:0 -4128px;}
.f32 .kn{background-position:0 -4160px;}
.f32 .kp{background-position:0 -4192px;}
.f32 .kr{background-position:0 -4224px;}
.f32 .kw{background-position:0 -4256px;}
.f32 .ky{background-position:0 -4288px;}
.f32 .kz{background-position:0 -4320px;}
.f32 .la{background-position:0 -4352px;}
.f32 .lb{background-position:0 -4384px;}
.f32 .lc{background-position:0 -4416px;}
.f32 .li{background-position:0 -4448px;}
.f32 .lk{background-position:0 -4480px;}
.f32 .lr{background-position:0 -4512px;}
.f32 .ls{background-position:0 -4544px;}
.f32 .lt{background-position:0 -4576px;}
.f32 .lu{background-position:0 -4608px;}
.f32 .lv{background-position:0 -4640px;}
.f32 .ly{background-position:0 -4672px;}
.f32 .ma{background-position:0 -4704px;}
.f32 .md{background-position:0 -4736px;}
.f32 .me{background-position:0 -4768px;}
.f32 .mg{background-position:0 -4800px;}
.f32 .mh{background-position:0 -4832px;}
.f32 .mk{background-position:0 -4864px;}
.f32 .ml{background-position:0 -4896px;}
.f32 .mm{background-position:0 -4928px;}
.f32 .mn{background-position:0 -4960px;}
.f32 .mo{background-position:0 -4992px;}
.f32 .mq{background-position:0 -5024px;}
.f32 .mr{background-position:0 -5056px;}
.f32 .ms{background-position:0 -5088px;}
.f32 .mt{background-position:0 -5120px;}
.f32 .mu{background-position:0 -5152px;}
.f32 .mv{background-position:0 -5184px;}
.f32 .mw{background-position:0 -5216px;}
.f32 .mx{background-position:0 -5248px;}
.f32 .my{background-position:0 -5280px;}
.f32 .mz{background-position:0 -5312px;}
.f32 .na{background-position:0 -5344px;}
.f32 .nc{background-position:0 -5376px;}
.f32 .ne{background-position:0 -5408px;}
.f32 .ng{background-position:0 -5440px;}
.f32 .ni{background-position:0 -5472px;}
.f32 .nl{background-position:0 -5504px;}  .f32 .bq{background-position:0 -5504px;}
.f32 .no{background-position:0 -5536px;}  .f32 .bv, .f32 .nq, .f32 .sj{background-position:0 -5536px;}
.f32 .np{background-position:0 -5568px;}
.f32 .nr{background-position:0 -5600px;}
.f32 .nz{background-position:0 -5632px;}
.f32 .om{background-position:0 -5664px;}
.f32 .pa{background-position:0 -5696px;}
.f32 .pe{background-position:0 -5728px;}
.f32 .pf{background-position:0 -5760px;}
.f32 .pg{background-position:0 -5792px;}
.f32 .ph{background-position:0 -5824px;}
.f32 .pk{background-position:0 -5856px;}
.f32 .pl{background-position:0 -5888px;}
.f32 .pr{background-position:0 -5920px;}
.f32 .ps{background-position:0 -5952px;}
.f32 .pt{background-position:0 -5984px;}
.f32 .pw{background-position:0 -6016px;}
.f32 .py{background-position:0 -6048px;}
.f32 .qa{background-position:0 -6080px;}
.f32 .re{background-position:0 -6112px;}
.f32 .ro{background-position:0 -6144px;}
.f32 .rs{background-position:0 -6176px;}
.f32 .ru{background-position:0 -6208px;}
.f32 .rw{background-position:0 -6240px;}
.f32 .sa{background-position:0 -6272px;}
.f32 .sb{background-position:0 -6304px;}
.f32 .sc{background-position:0 -6336px;}
.f32 .sd{background-position:0 -6368px;}
.f32 .se{background-position:0 -6400px;}
.f32 .sg{background-position:0 -6432px;}
.f32 .si{background-position:0 -6464px;}
.f32 .sk{background-position:0 -6496px;}
.f32 .sl{background-position:0 -6528px;}
.f32 .sm{background-position:0 -6560px;}
.f32 .sn{background-position:0 -6592px;}
.f32 .so{background-position:0 -6624px;}
.f32 .sr{background-position:0 -6656px;}
.f32 .st{background-position:0 -6688px;}
.f32 .sv{background-position:0 -6720px;}
.f32 .sy{background-position:0 -6752px;}
.f32 .sz{background-position:0 -6784px;}
.f32 .tc{background-position:0 -6816px;}
.f32 .td{background-position:0 -6848px;}
.f32 .tg{background-position:0 -6880px;}
.f32 .th{background-position:0 -6912px;}
.f32 .tj{background-position:0 -6944px;}
.f32 .tl{background-position:0 -6976px;}
.f32 .tm{background-position:0 -7008px;}
.f32 .tn{background-position:0 -7040px;}
.f32 .to{background-position:0 -7072px;}
.f32 .tr{background-position:0 -7104px;}
.f32 .tt{background-position:0 -7136px;}
.f32 .tv{background-position:0 -7168px;}
.f32 .tw{background-position:0 -7200px;}
.f32 .tz{background-position:0 -7232px;}
.f32 .ua{background-position:0 -7264px;}
.f32 .ug{background-position:0 -7296px;}
.f32 .us{background-position:0 -7328px;}
.f32 .uy{background-position:0 -7360px;}
.f32 .uz{background-position:0 -7392px;}
.f32 .va{background-position:0 -7424px;}
.f32 .vc{background-position:0 -7456px;}
.f32 .ve{background-position:0 -7488px;}
.f32 .vg{background-position:0 -7520px;}
.f32 .vi{background-position:0 -7552px;}
.f32 .vn{background-position:0 -7584px;}
.f32 .vu{background-position:0 -7616px;}
.f32 .ws{background-position:0 -7648px;}
.f32 .ye{background-position:0 -7680px;}
.f32 .za{background-position:0 -7712px;}
.f32 .zm{background-position:0 -7744px;}
.f32 .zw{background-position:0 -7776px;}
.f32 .sx{background-position:0 -7808px;}
.f32 .cw{background-position:0 -7840px;}
.f32 .ss{background-position:0 -7872px;}
.f32 .nu{background-position:0 -7904px;}

@font-face{font-family:Notification;src:url(/public/deploy/3657084dc0419605a91c.eot?s3g3t9);src:url(/public/deploy/3657084dc0419605a91c.eot?#iefixs3g3t9) format("embedded-opentype"),url(/public/deploy/c392cd33d9d9de730f9d.woff?s3g3t9) format("woff"),url(/public/deploy/c5d9251ea82e42f75381.ttf?s3g3t9) format("truetype"),url(/public/deploy/5d0158671dd860c714c4.svg?s3g3t9#notification) format("svg");font-weight:400;font-style:normal}.notification-container{box-sizing:border-box;position:fixed;top:0;right:0;z-index:999999;width:320px;padding:0 15px;max-height:calc(100% - 30px);overflow-x:hidden;overflow-y:auto}.notification{box-sizing:border-box;padding:15px 15px 15px 58px;border-radius:2px;color:#fff;background-color:#ccc;box-shadow:0 0 12px #999;cursor:pointer;font-size:1em;line-height:1.2em;position:relative;opacity:.9;margin-top:15px}.notification .title{font-size:1em;line-height:1.2em;font-weight:700;margin:0 0 5px}.notification:focus,.notification:hover{opacity:1}.notification-enter{visibility:hidden;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0)}.notification-enter.notification-enter-active{transition:all .4s}.notification-enter.notification-enter-active,.notification-leave{visibility:visible;-webkit-transform:translateZ(0);transform:translateZ(0)}.notification-leave.notification-leave-active{visibility:hidden;-webkit-transform:translate3d(100%,0,0);transform:translate3d(100%,0,0);transition:all .4s}.notification:before{position:absolute;top:50%;left:15px;margin-top:-14px;display:block;font-family:Notification;width:28px;height:28px;font-size:28px;text-align:center;line-height:28px}.notification-info{background-color:#2f96b4}.notification-info:before{content:"\F05A"}.notification-success{background-color:#51a351}.notification-success:before{content:"\F058"}.notification-warning{background-color:#f89406}.notification-warning:before{content:"\F06A"}.notification-error{background-color:#bd362f}.notification-error:before{content:"\F057"}

/* required styles */

.leaflet-pane,
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-tile-container,
.leaflet-pane > svg,
.leaflet-pane > canvas,
.leaflet-zoom-box,
.leaflet-image-layer,
.leaflet-layer {
	position: absolute;
	left: 0;
	top: 0;
	}
.leaflet-container {
	overflow: hidden;
	}
.leaflet-tile,
.leaflet-marker-icon,
.leaflet-marker-shadow {
	-webkit-user-select: none;
	   -moz-user-select: none;
	        user-select: none;
	  -webkit-user-drag: none;
	}
/* Safari renders non-retina tile on retina better with this, but Chrome is worse */
.leaflet-safari .leaflet-tile {
	image-rendering: -webkit-optimize-contrast;
	}
/* hack that prevents hw layers "stretching" when loading new tiles */
.leaflet-safari .leaflet-tile-container {
	width: 1600px;
	height: 1600px;
	-webkit-transform-origin: 0 0;
	}
.leaflet-marker-icon,
.leaflet-marker-shadow {
	display: block;
	}
/* .leaflet-container svg: reset svg max-width decleration shipped in Joomla! (joomla.org) 3.x */
/* .leaflet-container img: map is broken in FF if you have max-width: 100% on tiles */
.leaflet-container .leaflet-overlay-pane svg,
.leaflet-container .leaflet-marker-pane img,
.leaflet-container .leaflet-shadow-pane img,
.leaflet-container .leaflet-tile-pane img,
.leaflet-container img.leaflet-image-layer {
	max-width: none !important;
	}

.leaflet-container.leaflet-touch-zoom {
	-ms-touch-action: pan-x pan-y;
	touch-action: pan-x pan-y;
	}
.leaflet-container.leaflet-touch-drag {
	-ms-touch-action: pinch-zoom;
	}
.leaflet-container.leaflet-touch-drag.leaflet-touch-drag {
	-ms-touch-action: none;
	touch-action: none;
}
.leaflet-tile {
	filter: inherit;
	visibility: hidden;
	}
.leaflet-tile-loaded {
	visibility: inherit;
	}
.leaflet-zoom-box {
	width: 0;
	height: 0;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;
	z-index: 800;
	}
/* workaround for https://bugzilla.mozilla.org/show_bug.cgi?id=888319 */
.leaflet-overlay-pane svg {
	-moz-user-select: none;
	}

.leaflet-pane         { z-index: 400; }

.leaflet-tile-pane    { z-index: 200; }
.leaflet-overlay-pane { z-index: 400; }
.leaflet-shadow-pane  { z-index: 500; }
.leaflet-marker-pane  { z-index: 600; }
.leaflet-tooltip-pane   { z-index: 650; }
.leaflet-popup-pane   { z-index: 700; }

.leaflet-map-pane canvas { z-index: 100; }
.leaflet-map-pane svg    { z-index: 200; }

.leaflet-vml-shape {
	width: 1px;
	height: 1px;
	}
.lvml {
	behavior: url(#default#VML);
	display: inline-block;
	position: absolute;
	}


/* control positioning */

.leaflet-control {
	position: relative;
	z-index: 800;
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}
.leaflet-top,
.leaflet-bottom {
	position: absolute;
	z-index: 1000;
	pointer-events: none;
	}
.leaflet-top {
	top: 0;
	}
.leaflet-right {
	right: 0;
	}
.leaflet-bottom {
	bottom: 0;
	}
.leaflet-left {
	left: 0;
	}
.leaflet-control {
	float: left;
	clear: both;
	}
.leaflet-right .leaflet-control {
	float: right;
	}
.leaflet-top .leaflet-control {
	margin-top: 10px;
	}
.leaflet-bottom .leaflet-control {
	margin-bottom: 10px;
	}
.leaflet-left .leaflet-control {
	margin-left: 10px;
	}
.leaflet-right .leaflet-control {
	margin-right: 10px;
	}


/* zoom and fade animations */

.leaflet-fade-anim .leaflet-tile {
	will-change: opacity;
	}
.leaflet-fade-anim .leaflet-popup {
	opacity: 0;
	-webkit-transition: opacity 0.2s linear;
	   -moz-transition: opacity 0.2s linear;
	     -o-transition: opacity 0.2s linear;
	        transition: opacity 0.2s linear;
	}
.leaflet-fade-anim .leaflet-map-pane .leaflet-popup {
	opacity: 1;
	}
.leaflet-zoom-animated {
	-webkit-transform-origin: 0 0;
	    -ms-transform-origin: 0 0;
	        transform-origin: 0 0;
	}
.leaflet-zoom-anim .leaflet-zoom-animated {
	will-change: transform;
	}
.leaflet-zoom-anim .leaflet-zoom-animated {
	-webkit-transition: -webkit-transform 0.25s cubic-bezier(0,0,0.25,1);
	   -moz-transition:    -moz-transform 0.25s cubic-bezier(0,0,0.25,1);
	     -o-transition:      -o-transform 0.25s cubic-bezier(0,0,0.25,1);
	        transition:         transform 0.25s cubic-bezier(0,0,0.25,1);
	}
.leaflet-zoom-anim .leaflet-tile,
.leaflet-pan-anim .leaflet-tile {
	-webkit-transition: none;
	   -moz-transition: none;
	     -o-transition: none;
	        transition: none;
	}

.leaflet-zoom-anim .leaflet-zoom-hide {
	visibility: hidden;
	}


/* cursors */

.leaflet-interactive {
	cursor: pointer;
	}
.leaflet-grab {
	cursor: -webkit-grab;
	cursor:    -moz-grab;
	}
.leaflet-crosshair,
.leaflet-crosshair .leaflet-interactive {
	cursor: crosshair;
	}
.leaflet-popup-pane,
.leaflet-control {
	cursor: auto;
	}
.leaflet-dragging .leaflet-grab,
.leaflet-dragging .leaflet-grab .leaflet-interactive,
.leaflet-dragging .leaflet-marker-draggable {
	cursor: move;
	cursor: -webkit-grabbing;
	cursor:    -moz-grabbing;
	}

/* marker & overlays interactivity */
.leaflet-marker-icon,
.leaflet-marker-shadow,
.leaflet-image-layer,
.leaflet-pane > svg path,
.leaflet-tile-container {
	pointer-events: none;
	}

.leaflet-marker-icon.leaflet-interactive,
.leaflet-image-layer.leaflet-interactive,
.leaflet-pane > svg path.leaflet-interactive {
	pointer-events: visiblePainted; /* IE 9-10 doesn't have auto */
	pointer-events: auto;
	}

/* visual tweaks */

.leaflet-container {
	background: #ddd;
	outline: 0;
	}
.leaflet-container a {
	color: #0078A8;
	}
.leaflet-container a.leaflet-active {
	outline: 2px solid orange;
	}
.leaflet-zoom-box {
	border: 2px dotted #38f;
	background: rgba(255,255,255,0.5);
	}


/* general typography */
.leaflet-container {
	font: 12px/1.5 "Helvetica Neue", Arial, Helvetica, sans-serif;
	}


/* general toolbar styles */

.leaflet-bar {
	box-shadow: 0 1px 5px rgba(0,0,0,0.65);
	border-radius: 4px;
	}
.leaflet-bar a,
.leaflet-bar a:hover {
	background-color: #fff;
	border-bottom: 1px solid #ccc;
	width: 26px;
	height: 26px;
	line-height: 26px;
	display: block;
	text-align: center;
	text-decoration: none;
	color: black;
	}
.leaflet-bar a,
.leaflet-control-layers-toggle {
	background-position: 50% 50%;
	background-repeat: no-repeat;
	display: block;
	}
.leaflet-bar a:hover {
	background-color: #f4f4f4;
	}
.leaflet-bar a:first-child {
	border-top-left-radius: 4px;
	border-top-right-radius: 4px;
	}
.leaflet-bar a:last-child {
	border-bottom-left-radius: 4px;
	border-bottom-right-radius: 4px;
	border-bottom: none;
	}
.leaflet-bar a.leaflet-disabled {
	cursor: default;
	background-color: #f4f4f4;
	color: #bbb;
	}

.leaflet-touch .leaflet-bar a {
	width: 30px;
	height: 30px;
	line-height: 30px;
	}


/* zoom control */

.leaflet-control-zoom-in,
.leaflet-control-zoom-out {
	font: bold 18px 'Lucida Console', Monaco, monospace;
	text-indent: 1px;
	}
.leaflet-control-zoom-out {
	font-size: 20px;
	}

.leaflet-touch .leaflet-control-zoom-in {
	font-size: 22px;
	}
.leaflet-touch .leaflet-control-zoom-out {
	font-size: 24px;
	}


/* layers control */

.leaflet-control-layers {
	box-shadow: 0 1px 5px rgba(0,0,0,0.4);
	background: #fff;
	border-radius: 5px;
	}
.leaflet-control-layers-toggle {
	background-image: url(/public/deploy/416d91365b44e4b4f477.png);
	width: 36px;
	height: 36px;
	}
.leaflet-retina .leaflet-control-layers-toggle {
	background-image: url(/public/deploy/8f2c4d11474275fbc161.png);
	background-size: 26px 26px;
	}
.leaflet-touch .leaflet-control-layers-toggle {
	width: 44px;
	height: 44px;
	}
.leaflet-control-layers .leaflet-control-layers-list,
.leaflet-control-layers-expanded .leaflet-control-layers-toggle {
	display: none;
	}
.leaflet-control-layers-expanded .leaflet-control-layers-list {
	display: block;
	position: relative;
	}
.leaflet-control-layers-expanded {
	padding: 6px 10px 6px 6px;
	color: #333;
	background: #fff;
	}
.leaflet-control-layers-scrollbar {
	overflow-y: scroll;
	padding-right: 5px;
	}
.leaflet-control-layers-selector {
	margin-top: 2px;
	position: relative;
	top: 1px;
	}
.leaflet-control-layers label {
	display: block;
	}
.leaflet-control-layers-separator {
	height: 0;
	border-top: 1px solid #ddd;
	margin: 5px -10px 5px -6px;
	}

/* Default icon URLs */
.leaflet-default-icon-path {
	background-image: url(/public/deploy/2b3e1faf89f94a483539.png);
	}


/* attribution and scale controls */

.leaflet-container .leaflet-control-attribution {
	background: #fff;
	background: rgba(255, 255, 255, 0.7);
	margin: 0;
	}
.leaflet-control-attribution,
.leaflet-control-scale-line {
	padding: 0 5px;
	color: #333;
	}
.leaflet-control-attribution a {
	text-decoration: none;
	}
.leaflet-control-attribution a:hover {
	text-decoration: underline;
	}
.leaflet-container .leaflet-control-attribution,
.leaflet-container .leaflet-control-scale {
	font-size: 11px;
	}
.leaflet-left .leaflet-control-scale {
	margin-left: 5px;
	}
.leaflet-bottom .leaflet-control-scale {
	margin-bottom: 5px;
	}
.leaflet-control-scale-line {
	border: 2px solid #777;
	border-top: none;
	line-height: 1.1;
	padding: 2px 5px 1px;
	font-size: 11px;
	white-space: nowrap;
	overflow: hidden;
	-moz-box-sizing: border-box;
	     box-sizing: border-box;

	background: #fff;
	background: rgba(255, 255, 255, 0.5);
	}
.leaflet-control-scale-line:not(:first-child) {
	border-top: 2px solid #777;
	border-bottom: none;
	margin-top: -2px;
	}
.leaflet-control-scale-line:not(:first-child):not(:last-child) {
	border-bottom: 2px solid #777;
	}

.leaflet-touch .leaflet-control-attribution,
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	box-shadow: none;
	}
.leaflet-touch .leaflet-control-layers,
.leaflet-touch .leaflet-bar {
	border: 2px solid rgba(0,0,0,0.2);
	background-clip: padding-box;
	}


/* popup */

.leaflet-popup {
	position: absolute;
	text-align: center;
	margin-bottom: 20px;
	}
.leaflet-popup-content-wrapper {
	padding: 1px;
	text-align: left;
	border-radius: 12px;
	}
.leaflet-popup-content {
	margin: 13px 19px;
	line-height: 1.4;
	}
.leaflet-popup-content p {
	margin: 18px 0;
	}
.leaflet-popup-tip-container {
	width: 40px;
	height: 20px;
	position: absolute;
	left: 50%;
	margin-left: -20px;
	overflow: hidden;
	pointer-events: none;
	}
.leaflet-popup-tip {
	width: 17px;
	height: 17px;
	padding: 1px;

	margin: -10px auto 0;

	-webkit-transform: rotate(45deg);
	   -moz-transform: rotate(45deg);
	    -ms-transform: rotate(45deg);
	     -o-transform: rotate(45deg);
	        transform: rotate(45deg);
	}
.leaflet-popup-content-wrapper,
.leaflet-popup-tip {
	background: white;
	color: #333;
	box-shadow: 0 3px 14px rgba(0,0,0,0.4);
	}
.leaflet-container a.leaflet-popup-close-button {
	position: absolute;
	top: 0;
	right: 0;
	padding: 4px 4px 0 0;
	border: none;
	text-align: center;
	width: 18px;
	height: 14px;
	font: 16px/14px Tahoma, Verdana, sans-serif;
	color: #c3c3c3;
	text-decoration: none;
	font-weight: bold;
	background: transparent;
	}
.leaflet-container a.leaflet-popup-close-button:hover {
	color: #999;
	}
.leaflet-popup-scrolled {
	overflow: auto;
	border-bottom: 1px solid #ddd;
	border-top: 1px solid #ddd;
	}

.leaflet-oldie .leaflet-popup-content-wrapper {
	zoom: 1;
	}
.leaflet-oldie .leaflet-popup-tip {
	width: 24px;
	margin: 0 auto;

	-ms-filter: "progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678)";
	filter: progid:DXImageTransform.Microsoft.Matrix(M11=0.70710678, M12=0.70710678, M21=-0.70710678, M22=0.70710678);
	}
.leaflet-oldie .leaflet-popup-tip-container {
	margin-top: -1px;
	}

.leaflet-oldie .leaflet-control-zoom,
.leaflet-oldie .leaflet-control-layers,
.leaflet-oldie .leaflet-popup-content-wrapper,
.leaflet-oldie .leaflet-popup-tip {
	border: 1px solid #999;
	}


/* div icon */

.leaflet-div-icon {
	background: #fff;
	border: 1px solid #666;
	}


/* Tooltip */
/* Base styles for the element that has a tooltip */
.leaflet-tooltip {
	position: absolute;
	padding: 6px;
	background-color: #fff;
	border: 1px solid #fff;
	border-radius: 3px;
	color: #222;
	white-space: nowrap;
	-webkit-user-select: none;
	-moz-user-select: none;
	-ms-user-select: none;
	user-select: none;
	pointer-events: none;
	box-shadow: 0 1px 3px rgba(0,0,0,0.4);
	}
.leaflet-tooltip.leaflet-clickable {
	cursor: pointer;
	pointer-events: auto;
	}
.leaflet-tooltip-top:before,
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	position: absolute;
	pointer-events: none;
	border: 6px solid transparent;
	background: transparent;
	content: "";
	}

/* Directions */

.leaflet-tooltip-bottom {
	margin-top: 6px;
}
.leaflet-tooltip-top {
	margin-top: -6px;
}
.leaflet-tooltip-bottom:before,
.leaflet-tooltip-top:before {
	left: 50%;
	margin-left: -6px;
	}
.leaflet-tooltip-top:before {
	bottom: 0;
	margin-bottom: -12px;
	border-top-color: #fff;
	}
.leaflet-tooltip-bottom:before {
	top: 0;
	margin-top: -12px;
	margin-left: -6px;
	border-bottom-color: #fff;
	}
.leaflet-tooltip-left {
	margin-left: -6px;
}
.leaflet-tooltip-right {
	margin-left: 6px;
}
.leaflet-tooltip-left:before,
.leaflet-tooltip-right:before {
	top: 50%;
	margin-top: -6px;
	}
.leaflet-tooltip-left:before {
	right: 0;
	margin-right: -12px;
	border-left-color: #fff;
	}
.leaflet-tooltip-right:before {
	left: 0;
	margin-left: -12px;
	border-right-color: #fff;
	}

/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        touch-action: pan-y;
    -webkit-tap-highlight-color: transparent;
}

.slick-list
{
    position: relative;

    display: block;
    overflow: hidden;

    margin: 0;
    padding: 0;
}
.slick-list:focus
{
    outline: none;
}
.slick-list.dragging
{
    cursor: pointer;
    cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            transform: translate3d(0, 0, 0);
}

.slick-track
{
    position: relative;
    top: 0;
    left: 0;

    display: block;
    margin-left: auto;
    margin-right: auto;
}
.slick-track:before,
.slick-track:after
{
    display: table;

    content: '';
}
.slick-track:after
{
    clear: both;
}
.slick-loading .slick-track
{
    visibility: hidden;
}

.slick-slide
{
    display: none;
    float: left;

    height: 100%;
    min-height: 1px;
}
[dir='rtl'] .slick-slide
{
    float: right;
}
.slick-slide img
{
    display: block;
}
.slick-slide.slick-loading img
{
    display: none;
}
.slick-slide.dragging img
{
    pointer-events: none;
}
.slick-initialized .slick-slide
{
    display: block;
}
.slick-loading .slick-slide
{
    visibility: hidden;
}
.slick-vertical .slick-slide
{
    display: block;

    height: auto;

    border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
    display: none;
}

@charset 'UTF-8';
/* Slider */
.slick-loading .slick-list
{
    background: #fff url(/public/deploy/fb6f3c230cb846e25247.gif) center center no-repeat;
}

/* Icons */
@font-face
{
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;

    src: url(/public/deploy/a4e97f5a2a64f0ab1323.eot);
    src: url(/public/deploy/a4e97f5a2a64f0ab1323.eot?#iefix) format('embedded-opentype'), url(/public/deploy/295183786cd8a1389865.woff) format('woff'), url(/public/deploy/c94f7671dcc99dce43e2.ttf) format('truetype'), url(/public/deploy/2630a3e3eab21c607e21.svg#slick) format('svg');
}
/* Arrows */
.slick-prev,
.slick-next
{
    font-size: 0;
    line-height: 0;

    position: absolute;
    top: 50%;

    display: block;

    width: 20px;
    height: 20px;
    padding: 0;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);

    cursor: pointer;

    color: transparent;
    border: none;
    outline: none;
    background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus
{
    color: transparent;
    outline: none;
    background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before
{
    opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before
{
    opacity: .25;
}

.slick-prev:before,
.slick-next:before
{
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;

    opacity: .75;
    color: white;

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

.slick-prev
{
    left: -25px;
}
[dir='rtl'] .slick-prev
{
    right: -25px;
    left: auto;
}
.slick-prev:before
{
    content: '\2190';
}
[dir='rtl'] .slick-prev:before
{
    content: '\2192';
}

.slick-next
{
    right: -25px;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: -25px;
}
.slick-next:before
{
    content: '\2192';
}
[dir='rtl'] .slick-next:before
{
    content: '\2190';
}

/* Dots */
.slick-dotted.slick-slider
{
    margin-bottom: 30px;
}

.slick-dots
{
    position: absolute;
    bottom: -25px;

    display: block;

    width: 100%;
    padding: 0;
    margin: 0;

    list-style: none;

    text-align: center;
}
.slick-dots li
{
    position: relative;

    display: inline-block;

    width: 20px;
    height: 20px;
    margin: 0 5px;
    padding: 0;

    cursor: pointer;
}
.slick-dots li button
{
    font-size: 0;
    line-height: 0;

    display: block;

    width: 20px;
    height: 20px;
    padding: 5px;

    cursor: pointer;

    color: transparent;
    border: 0;
    outline: none;
    background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus
{
    outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before
{
    opacity: 1;
}
.slick-dots li button:before
{
    font-family: 'slick';
    font-size: 6px;
    line-height: 20px;

    position: absolute;
    top: 0;
    left: 0;

    width: 20px;
    height: 20px;

    content: '\2022';
    text-align: center;

    opacity: .25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: black;
}

.top-slider{background:#101010}.rc-slider-mark-text-active{color:#fff}.rc-slider-mark-text{color:#fff}.rc-slider-handle:focus{border-color:#1f1f1f;box-shadow:0 0 0 5px #494949}.rc-slider-handle:hover{border-color:#bdbdbd}.rc-slider-step{background:#464646}.rc-slider-dot-active{border-color:#636363}.rc-slider-handle{border:solid 2px #535353;margin-left:-9px;margin-top:-7px;width:18px;height:18px}.rc-slider-mark{font-size:17px;top:14px}@media(max-width: 600px){.rc-slider-mark{font-size:13px;top:17px}}@media(max-width: 375px){.rc-slider-mark{font-size:11px;top:18px}}.wether-animation-icons{z-index:999;width:150px;transform:scale(0.25);height:150px;position:absolute;top:31px;left:-48px}.wether-animation-icons .sun{position:absolute;bottom:0px;right:0px;width:85px;height:85px;background:#f9db62;border-radius:360px;opacity:1;animation:sun 10s 0s linear infinite}.wether-animation-icons .cloud{position:absolute;bottom:12px;left:8px;z-index:2;opacity:0;animation:cloud 10s 0s linear infinite}.wether-animation-icons .cloud .cloud1:not(.c_shadow) ul li{animation:cloudi 10s .1s linear infinite}.wether-animation-icons .cloud .cloud1:not(.c_shadow):before{animation:cloudi 10s 0s linear infinite}.wether-animation-icons .cloud_s{position:absolute;bottom:70px;left:150px;transform:scale(0.7, 0.7) matrix(-1, 0, 0, 1, 0, 0);z-index:1;opacity:0;animation:cloud_s 10s 0s linear infinite}.wether-animation-icons .cloud_s .c_shadow{transform:scale(1.02, 1.02)}.wether-animation-icons .cloud_vs{position:absolute;bottom:90px;left:30px;transform:scale(0.5, 0.5);z-index:0;opacity:0;animation:cloud_vs 10s 0s linear infinite}.wether-animation-icons .c_shadow{z-index:4 !important;left:-5px;bottom:-3px !important}.wether-animation-icons .c_shadow:before{background:#33495f !important}.wether-animation-icons .c_shadow ul li{width:60px !important;height:60px !important;background:#33495f !important;float:left;position:absolute;bottom:-2px !important;border-radius:360px}.wether-animation-icons .c_shadow ul li:nth-child(2){width:80px !important;height:80px !important;background:#33495f !important;float:left;border-radius:360px;position:absolute;bottom:16px !important;left:25px !important}.wether-animation-icons .c_shadow ul li:nth-child(3){width:70px !important;height:70px !important;background:#33495f !important;float:left;border-radius:360px;position:absolute;bottom:6px !important;left:60px !important}.wether-animation-icons .c_shadow ul li:last-child{width:60px !important;height:60px !important;background:#33495f !important;float:left;border-radius:360px;position:absolute;bottom:0px;left:90px}.wether-animation-icons .cloud1{position:absolute;bottom:0px;z-index:5}.wether-animation-icons .cloud1:before{content:"";position:absolute;bottom:0px;left:28px;width:90px;height:20px;background:#fff}.wether-animation-icons .cloud1 ul{list-style:none;margin:0;padding:0}.wether-animation-icons .cloud1 ul li{width:50px;height:50px;background:#fff;float:left;border-radius:360px}.wether-animation-icons .cloud1 ul li:nth-child(2){width:70px;height:70px;background:#fff;float:left;border-radius:360px;position:absolute;bottom:18px;left:25px}.wether-animation-icons .cloud1 ul li:nth-child(3){width:60px;height:60px;background:#fff;float:left;border-radius:360px;position:absolute;bottom:8px;left:60px}.wether-animation-icons .cloud1 ul li:last-child{width:50px;height:50px;background:#fff;float:left;border-radius:360px;position:absolute;bottom:0px;left:90px}.wether-animation-icons .haze{position:absolute;bottom:50px;left:0px;width:200px;height:45px;z-index:6;opacity:0;animation:haze 10s 0s linear infinite}.wether-animation-icons .haze_stripe{background:#a3b5c7;position:absolute;bottom:75px;left:20px;width:115px;height:10px;z-index:17;opacity:0;border-radius:360px;animation:haze_stripe 10s .1s linear infinite}.wether-animation-icons .haze_stripe:nth-child(6){bottom:55px;animation:haze_stripe 10s .2s linear infinite}.wether-animation-icons .haze_stripe:last-child{bottom:35px;animation:haze_stripe 10s .4s linear infinite}.wether-animation-icons .thunder{position:absolute;bottom:100px;left:65px;width:12px;height:12px;background:#f9db62;transform:skew(-25deg);opacity:0;animation:thunder 10s 0s linear infinite}.wether-animation-icons .thunder:before{content:"";position:absolute;top:11px;left:0px;width:25px;height:8px;background:#f9db62}.wether-animation-icons .thunder:after{content:"";position:absolute;width:0;height:0;top:18px;right:-14px;border-left:5px solid rgba(0,0,0,0);border-right:5px solid rgba(0,0,0,0);border-top:20px solid #f9db62;transform:skew(5deg)}.wether-animation-icons .rain{position:absolute;bottom:0px;left:25px}.wether-animation-icons .rain ul{list-style:none;margin:0;padding:0px}.wether-animation-icons .rain ul li{float:left;position:absolute;bottom:50px;left:50px;margin-left:20px;background:#6ab9e9;height:40px;width:10px;border-radius:360px;transform:rotate(35deg);opacity:0}.wether-animation-icons .rain ul li:first-child{animation:raini 10s 0s linear infinite}.wether-animation-icons .rain ul li:nth-child(2){animation:rainii 10s .2s linear infinite}.wether-animation-icons .rain ul li:last-child{animation:rainiii 10s .4s linear infinite}.wether-animation-icons .sleet{position:absolute;bottom:0px;left:25px}.wether-animation-icons .sleet ul{list-style:none;margin:0;padding:0px}.wether-animation-icons .sleet ul li{float:left;position:absolute;bottom:50px;left:50px;margin-left:20px;background:#fff;height:40px;width:10px;border-radius:360px;transform:rotate(35deg);opacity:0}.wether-animation-icons .sleet ul li:first-child{animation:raini 10s 1s linear infinite}.wether-animation-icons .sleet ul li:nth-child(2){animation:rainii 10s 1.4s linear infinite}.wether-animation-icons .sleet ul li:last-child{animation:rainiii 10s 1.6s linear infinite}.wether-animation-icons .text{position:absolute;bottom:0px}.wether-animation-icons .text ul{list-style:none;margin:0;padding:0}.wether-animation-icons .text ul li{position:absolute;bottom:-50px;width:150px;color:#fff;font-family:"Raleway Dots",cursive;font-weight:100;font-size:20px;text-align:center;opacity:0}.wether-animation-icons .text ul li:first-child{animation:fade_in 10s 0s linear infinite}.wether-animation-icons .text ul li:nth-child(2){animation:fade_in 10s 1.6s linear infinite}.wether-animation-icons .text ul li:nth-child(3){animation:fade_in 10s 2.4s linear infinite}.wether-animation-icons .text ul li:nth-child(4){animation:fade_in 10s 3.4s linear infinite}.wether-animation-icons .text ul li:nth-child(5){animation:fade_in 10s 4s linear infinite}.wether-animation-icons .text ul li:nth-child(6){animation:fade_in 10s 5.4s linear infinite}.wether-animation-icons .text ul li:nth-child(7){animation:fade_in 10s 6.4s linear infinite}.wether-animation-icons .text ul li:nth-child(8){animation:fade_in 10s 7.2s linear infinite}.wether-animation-icons .text ul li:nth-child(9){animation:fade_in 10s 8.2s linear infinite}@keyframes sun{0%{opacity:1;bottom:35px;right:35px}4%{bottom:80px;right:80px}4.5%{bottom:75px;right:75px;opacity:1}40%{opacity:1}41%{bottom:75px;right:75px;opacity:0}100%{opacity:0;bottom:0px;right:0px}}@keyframes cloud{0%{transform:scale(0.8);left:120px;bottom:35px;opacity:0}2%{opacity:1}3.5%{bottom:35px;left:10px;opacity:1}16%{transform:scale(0.8)}18%{transform:scale(0.95)}19%{transform:scale(0.9)}48%{opacity:1;bottom:35px}50%{bottom:70px}96%{opacity:1}100%{opacity:0;bottom:70px;left:10px}}@keyframes cloud_s{0%{transform:scale(0.6);opacity:0;bottom:40px;left:18px}23%{opacity:0}24%{opacity:1;bottom:40px;left:30px}28%{opacity:1;bottom:85px;left:60px}32%{transform:scale(0.6)}34%{transform:scale(0.75)}35%{transform:scale(0.7)}48%{opacity:1}49%{opacity:0}100%{transform:scale(0.7);opacity:0;bottom:85px;left:60px}}@keyframes cloud_vs{0%{opacity:0;bottom:85px;left:60px}39%{opacity:0}40%{opacity:1;bottom:85px;left:60px}42%{bottom:125px;left:10px}43%{bottom:120px;left:15px}48%{opacity:1}49%{opacity:0}100%{opacity:0;bottom:120px;left:15px}}@keyframes haze{0%{opacity:0}48%{height:0px;opacity:0}49%{height:45px;opacity:1}57%{opacity:1;height:45px}58%{opacity:0;height:0px}}@keyframes haze_stripe{0%{opacity:0}48%{opacity:0}49%{opacity:1}56%{opacity:1}57%{opacity:0}}@keyframes cloudi{0%{background:#fff}56%{background:#fff}57%{background:#92a4b6}100%{background:#92a4b6}}@keyframes thunder{0%{opacity:0;bottom:100px;left:65px}62%{opacity:0;bottom:100px;left:65px}64%{opacity:1;bottom:50px;left:60px}65%{opacity:1;bottom:55px;left:61px}72%{opacity:1;bottom:55px;left:61px}73%{opacity:0}100%{opacity:0;bottom:55px}}@keyframes raini{0%{opacity:0;bottom:100px;left:60px}72%{opacity:0;bottom:100px;left:60px}73%{opacity:1;bottom:15px;left:50px}74%{opacity:1;bottom:25px;left:52px}80%{opacity:1;bottom:25px;left:52px}81%{opacity:0;bottom:-15px;left:6px}100%{opacity:0;bottom:20px}}@keyframes rainii{0%{opacity:0;bottom:100px;left:30px}72%{opacity:0;bottom:100px;left:30px}73%{opacity:1;bottom:15px;left:20px}74%{opacity:1;bottom:25px;left:22px}80%{opacity:1;bottom:25px;left:22px}81%{opacity:0;bottom:-15px;left:-6px}100%{opacity:0;bottom:20px}}@keyframes rainiii{0%{opacity:0;bottom:100px;left:0px}72%{opacity:0;bottom:100px;left:0px}73%{opacity:1;bottom:15px;left:-10px}74%{opacity:1;bottom:25px;left:-8px}80%{opacity:1;bottom:25px;left:-8px}81%{opacity:0;bottom:-15px;left:-28px}100%{opacity:0;bottom:20px}}@keyframes fade_in{0%{opacity:0}8%{opacity:1}9%{opacity:1}11%{opacity:1}12%{opacity:0}100%{oapcity:0}}.weather-cards-background{background:#fff;background:linear-gradient(to bottom, #ffffff 0%, #ebf2f6 25%)}.weather-wrapper{margin-bottom:5px;margin-top:15px}.weather-wrapper .slick-prev,.weather-wrapper .slick-next{width:45px;height:45px}.weather-wrapper .slick-prev:before,.weather-wrapper .slick-next:before{font-size:40px}.weather-wrapper .slick-dots{bottom:auto;top:-26px}.weather-wrapper .slick-dots li{margin:0px}.weather-wrapper .slick-dots li button:before{font-size:15px}.weather-wrapper *,.weather-wrapper *:before,.weather-wrapper *:after{box-sizing:border-box}.weather-wrapper .weather-config-block{margin-bottom:20px;height:30px}.weather-wrapper .weather-config-block label{float:right}.weather-wrapper .weather-card{margin:20px 5px;border-radius:20px;font-family:"Lato",sans-serif;position:relative;overflow:hidden;min-width:200px;background-color:#fff;box-shadow:0px 0px 25px 1px rgba(50,50,50,.1);animation:appear 500ms ease-out forwards}.weather-wrapper .weather-card h1{position:absolute;font-weight:600;font-size:70px;color:#e91e63;top:41px;width:100%;text-align:center;opacity:0;transform:translateX(150px);animation:title-appear 500ms ease-out 500ms forwards}.weather-wrapper .weather-card p{position:absolute;font-weight:350;font-size:28px;color:#000;top:12px;right:10px;animation:title-appear 1s ease-out 500ms forwards}.weather-wrapper .weather-card .weather-details-data.first-block{margin-top:80px}.weather-wrapper .weather-card .weather-details-data .wi{font-size:20px;padding-left:5px;padding-right:5px}.weather-wrapper .weather-card .weather-details-data .wi.wi-celsius,.weather-wrapper .weather-card .weather-details-data .wi.wi-fahrenheit{padding:0px}.weather-wrapper .weather-card .weather-details-data li{font-size:20px;line-height:40px}.weather-wrapper .weather-card .weather-details-data li .weather-item-value{font-size:25px;padding-left:3px;color:#020049}.weather-wrapper .weather-card .weather-details-data li .weather-measure{font-size:13px;line-height:25px}.weather-wrapper .weather-card .weather-details-data li .wi-na{color:rgba(0,0,0,.5)}.weather-wrapper .weather-card .weather-details-data li.group-title{text-align:center;background:#004194;color:#fff}.weather-wrapper .weather-card .weather-details-data li:not(.group-title):nth-of-type(odd){background:#f7f7f7}.wi-animated{font-size:50px;padding:10px;padding-top:20px;animation:weather-icon-move 5s ease-in-out infinite}@keyframes weather-icon-move{50%{transform:translateY(-8px)}}@keyframes appear{0%{transform:scale(0)}50%{transform:scale(1.05)}75%{transform:scale(0.95)}100%{transform:scale(1)}}@keyframes title-appear{from{opacity:0;transform:translateX(150px)}to{opacity:1;transform:translateX(0px)}}/*!
 *  Weather Icons 2.0
 *  Updated August 1, 2015
 *  Weather themed icons for Bootstrap
 *  Author - Erik Flowers - erik@helloerik.com
 *  Email: erik@helloerik.com
 *  Twitter: http://twitter.com/Erik_UX
 *  ------------------------------------------------------------------------------
 *  Maintained at http://erikflowers.github.io/weather-icons
 *
 *  License
 *  ------------------------------------------------------------------------------
 *  - Font licensed under SIL OFL 1.1 -
 *    http://scripts.sil.org/OFL
 *  - CSS, LESS and SCSS are licensed under MIT License -
 *    http://opensource.org/licenses/mit-license.html
 *  - Documentation licensed under CC BY 3.0 -
 *    http://creativecommons.org/licenses/by/3.0/
 *  - Inspired by and works great as a companion with Font Awesome
 *    "Font Awesome by Dave Gandy - http://fontawesome.io"
 */@font-face{font-family:"weathericons";src:url(/public/deploy/bb2ec001c20cf752f852.eot);src:url(/public/deploy/bb2ec001c20cf752f852.eot?#iefix) format("embedded-opentype"),url(/public/deploy/e218aee6928fe3da9ed6.woff2) format("woff2"),url(/public/deploy/371511ddba5fdac0538c.woff) format("woff"),url(/public/deploy/0942d1e1c447d6ce3ffc.ttf) format("truetype"),url(/public/deploy/1341a15172cec8dae06e.svg#weather_iconsregular) format("svg");font-weight:normal;font-style:normal}.wi{display:inline-block;font-family:"weathericons";font-style:normal;font-weight:normal;line-height:1;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale}.wi-fw{width:1.4em;text-align:center}.wi-rotate-90{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=1);-webkit-transform:rotate(90deg);-ms-transform:rotate(90deg);transform:rotate(90deg)}.wi-rotate-180{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:rotate(180deg);-ms-transform:rotate(180deg);transform:rotate(180deg)}.wi-rotate-270{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=3);-webkit-transform:rotate(270deg);-ms-transform:rotate(270deg);transform:rotate(270deg)}.wi-flip-horizontal{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=0);-webkit-transform:scale(-1, 1);-ms-transform:scale(-1, 1);transform:scale(-1, 1)}.wi-flip-vertical{filter:progid:DXImageTransform.Microsoft.BasicImage(rotation=2);-webkit-transform:scale(1, -1);-ms-transform:scale(1, -1);transform:scale(1, -1)}.wi-day-sunny:before{content:"\F00D"}.wi-day-cloudy:before{content:"\F002"}.wi-day-cloudy-gusts:before{content:"\F000"}.wi-day-cloudy-windy:before{content:"\F001"}.wi-day-fog:before{content:"\F003"}.wi-day-hail:before{content:"\F004"}.wi-day-haze:before{content:"\F0B6"}.wi-day-lightning:before{content:"\F005"}.wi-day-rain:before{content:"\F008"}.wi-day-rain-mix:before{content:"\F006"}.wi-day-rain-wind:before{content:"\F007"}.wi-day-showers:before{content:"\F009"}.wi-day-sleet:before{content:"\F0B2"}.wi-day-sleet-storm:before{content:"\F068"}.wi-day-snow:before{content:"\F00A"}.wi-day-snow-thunderstorm:before{content:"\F06B"}.wi-day-snow-wind:before{content:"\F065"}.wi-day-sprinkle:before{content:"\F00B"}.wi-day-storm-showers:before{content:"\F00E"}.wi-day-sunny-overcast:before{content:"\F00C"}.wi-day-thunderstorm:before{content:"\F010"}.wi-day-windy:before{content:"\F085"}.wi-solar-eclipse:before{content:"\F06E"}.wi-hot:before{content:"\F072"}.wi-day-cloudy-high:before{content:"\F07D"}.wi-day-light-wind:before{content:"\F0C4"}.wi-night-clear:before{content:"\F02E"}.wi-night-alt-cloudy:before{content:"\F086"}.wi-night-alt-cloudy-gusts:before{content:"\F022"}.wi-night-alt-cloudy-windy:before{content:"\F023"}.wi-night-alt-hail:before{content:"\F024"}.wi-night-alt-lightning:before{content:"\F025"}.wi-night-alt-rain:before{content:"\F028"}.wi-night-alt-rain-mix:before{content:"\F026"}.wi-night-alt-rain-wind:before{content:"\F027"}.wi-night-alt-showers:before{content:"\F029"}.wi-night-alt-sleet:before{content:"\F0B4"}.wi-night-alt-sleet-storm:before{content:"\F06A"}.wi-night-alt-snow:before{content:"\F02A"}.wi-night-alt-snow-thunderstorm:before{content:"\F06D"}.wi-night-alt-snow-wind:before{content:"\F067"}.wi-night-alt-sprinkle:before{content:"\F02B"}.wi-night-alt-storm-showers:before{content:"\F02C"}.wi-night-alt-thunderstorm:before{content:"\F02D"}.wi-night-cloudy:before{content:"\F031"}.wi-night-cloudy-gusts:before{content:"\F02F"}.wi-night-cloudy-windy:before{content:"\F030"}.wi-night-fog:before{content:"\F04A"}.wi-night-hail:before{content:"\F032"}.wi-night-lightning:before{content:"\F033"}.wi-night-partly-cloudy:before{content:"\F083"}.wi-night-rain:before{content:"\F036"}.wi-night-rain-mix:before{content:"\F034"}.wi-night-rain-wind:before{content:"\F035"}.wi-night-showers:before{content:"\F037"}.wi-night-sleet:before{content:"\F0B3"}.wi-night-sleet-storm:before{content:"\F069"}.wi-night-snow:before{content:"\F038"}.wi-night-snow-thunderstorm:before{content:"\F06C"}.wi-night-snow-wind:before{content:"\F066"}.wi-night-sprinkle:before{content:"\F039"}.wi-night-storm-showers:before{content:"\F03A"}.wi-night-thunderstorm:before{content:"\F03B"}.wi-lunar-eclipse:before{content:"\F070"}.wi-stars:before{content:"\F077"}.wi-storm-showers:before{content:"\F01D"}.wi-thunderstorm:before{content:"\F01E"}.wi-night-alt-cloudy-high:before{content:"\F07E"}.wi-night-cloudy-high:before{content:"\F080"}.wi-night-alt-partly-cloudy:before{content:"\F081"}.wi-cloud:before{content:"\F041"}.wi-cloudy:before{content:"\F013"}.wi-cloudy-gusts:before{content:"\F011"}.wi-cloudy-windy:before{content:"\F012"}.wi-fog:before{content:"\F014"}.wi-hail:before{content:"\F015"}.wi-rain:before{content:"\F019"}.wi-rain-mix:before{content:"\F017"}.wi-rain-wind:before{content:"\F018"}.wi-showers:before{content:"\F01A"}.wi-sleet:before{content:"\F0B5"}.wi-snow:before{content:"\F01B"}.wi-sprinkle:before{content:"\F01C"}.wi-storm-showers:before{content:"\F01D"}.wi-thunderstorm:before{content:"\F01E"}.wi-snow-wind:before{content:"\F064"}.wi-snow:before{content:"\F01B"}.wi-smog:before{content:"\F074"}.wi-smoke:before{content:"\F062"}.wi-lightning:before{content:"\F016"}.wi-raindrops:before{content:"\F04E"}.wi-raindrop:before{content:"\F078"}.wi-dust:before{content:"\F063"}.wi-snowflake-cold:before{content:"\F076"}.wi-windy:before{content:"\F021"}.wi-strong-wind:before{content:"\F050"}.wi-sandstorm:before{content:"\F082"}.wi-earthquake:before{content:"\F0C6"}.wi-fire:before{content:"\F0C7"}.wi-flood:before{content:"\F07C"}.wi-meteor:before{content:"\F071"}.wi-tsunami:before{content:"\F0C5"}.wi-volcano:before{content:"\F0C8"}.wi-hurricane:before{content:"\F073"}.wi-tornado:before{content:"\F056"}.wi-small-craft-advisory:before{content:"\F0CC"}.wi-gale-warning:before{content:"\F0CD"}.wi-storm-warning:before{content:"\F0CE"}.wi-hurricane-warning:before{content:"\F0CF"}.wi-wind-direction:before{content:"\F0B1"}.wi-alien:before{content:"\F075"}.wi-celsius:before{content:"\F03C"}.wi-fahrenheit:before{content:"\F045"}.wi-degrees:before{content:"\F042"}.wi-thermometer:before{content:"\F055"}.wi-thermometer-exterior:before{content:"\F053"}.wi-thermometer-internal:before{content:"\F054"}.wi-cloud-down:before{content:"\F03D"}.wi-cloud-up:before{content:"\F040"}.wi-cloud-refresh:before{content:"\F03E"}.wi-horizon:before{content:"\F047"}.wi-horizon-alt:before{content:"\F046"}.wi-sunrise:before{content:"\F051"}.wi-sunset:before{content:"\F052"}.wi-moonrise:before{content:"\F0C9"}.wi-moonset:before{content:"\F0CA"}.wi-refresh:before{content:"\F04C"}.wi-refresh-alt:before{content:"\F04B"}.wi-umbrella:before{content:"\F084"}.wi-barometer:before{content:"\F079"}.wi-humidity:before{content:"\F07A"}.wi-na:before{content:"\F07B"}.wi-train:before{content:"\F0CB"}.wi-moon-new:before{content:"\F095"}.wi-moon-waxing-crescent-1:before{content:"\F096"}.wi-moon-waxing-crescent-2:before{content:"\F097"}.wi-moon-waxing-crescent-3:before{content:"\F098"}.wi-moon-waxing-crescent-4:before{content:"\F099"}.wi-moon-waxing-crescent-5:before{content:"\F09A"}.wi-moon-waxing-crescent-6:before{content:"\F09B"}.wi-moon-first-quarter:before{content:"\F09C"}.wi-moon-waxing-gibbous-1:before{content:"\F09D"}.wi-moon-waxing-gibbous-2:before{content:"\F09E"}.wi-moon-waxing-gibbous-3:before{content:"\F09F"}.wi-moon-waxing-gibbous-4:before{content:"\F0A0"}.wi-moon-waxing-gibbous-5:before{content:"\F0A1"}.wi-moon-waxing-gibbous-6:before{content:"\F0A2"}.wi-moon-full:before{content:"\F0A3"}.wi-moon-waning-gibbous-1:before{content:"\F0A4"}.wi-moon-waning-gibbous-2:before{content:"\F0A5"}.wi-moon-waning-gibbous-3:before{content:"\F0A6"}.wi-moon-waning-gibbous-4:before{content:"\F0A7"}.wi-moon-waning-gibbous-5:before{content:"\F0A8"}.wi-moon-waning-gibbous-6:before{content:"\F0A9"}.wi-moon-third-quarter:before{content:"\F0AA"}.wi-moon-waning-crescent-1:before{content:"\F0AB"}.wi-moon-waning-crescent-2:before{content:"\F0AC"}.wi-moon-waning-crescent-3:before{content:"\F0AD"}.wi-moon-waning-crescent-4:before{content:"\F0AE"}.wi-moon-waning-crescent-5:before{content:"\F0AF"}.wi-moon-waning-crescent-6:before{content:"\F0B0"}.wi-moon-alt-new:before{content:"\F0EB"}.wi-moon-alt-waxing-crescent-1:before{content:"\F0D0"}.wi-moon-alt-waxing-crescent-2:before{content:"\F0D1"}.wi-moon-alt-waxing-crescent-3:before{content:"\F0D2"}.wi-moon-alt-waxing-crescent-4:before{content:"\F0D3"}.wi-moon-alt-waxing-crescent-5:before{content:"\F0D4"}.wi-moon-alt-waxing-crescent-6:before{content:"\F0D5"}.wi-moon-alt-first-quarter:before{content:"\F0D6"}.wi-moon-alt-waxing-gibbous-1:before{content:"\F0D7"}.wi-moon-alt-waxing-gibbous-2:before{content:"\F0D8"}.wi-moon-alt-waxing-gibbous-3:before{content:"\F0D9"}.wi-moon-alt-waxing-gibbous-4:before{content:"\F0DA"}.wi-moon-alt-waxing-gibbous-5:before{content:"\F0DB"}.wi-moon-alt-waxing-gibbous-6:before{content:"\F0DC"}.wi-moon-alt-full:before{content:"\F0DD"}.wi-moon-alt-waning-gibbous-1:before{content:"\F0DE"}.wi-moon-alt-waning-gibbous-2:before{content:"\F0DF"}.wi-moon-alt-waning-gibbous-3:before{content:"\F0E0"}.wi-moon-alt-waning-gibbous-4:before{content:"\F0E1"}.wi-moon-alt-waning-gibbous-5:before{content:"\F0E2"}.wi-moon-alt-waning-gibbous-6:before{content:"\F0E3"}.wi-moon-alt-third-quarter:before{content:"\F0E4"}.wi-moon-alt-waning-crescent-1:before{content:"\F0E5"}.wi-moon-alt-waning-crescent-2:before{content:"\F0E6"}.wi-moon-alt-waning-crescent-3:before{content:"\F0E7"}.wi-moon-alt-waning-crescent-4:before{content:"\F0E8"}.wi-moon-alt-waning-crescent-5:before{content:"\F0E9"}.wi-moon-alt-waning-crescent-6:before{content:"\F0EA"}.wi-moon-0:before{content:"\F095"}.wi-moon-1:before{content:"\F096"}.wi-moon-2:before{content:"\F097"}.wi-moon-3:before{content:"\F098"}.wi-moon-4:before{content:"\F099"}.wi-moon-5:before{content:"\F09A"}.wi-moon-6:before{content:"\F09B"}.wi-moon-7:before{content:"\F09C"}.wi-moon-8:before{content:"\F09D"}.wi-moon-9:before{content:"\F09E"}.wi-moon-10:before{content:"\F09F"}.wi-moon-11:before{content:"\F0A0"}.wi-moon-12:before{content:"\F0A1"}.wi-moon-13:before{content:"\F0A2"}.wi-moon-14:before{content:"\F0A3"}.wi-moon-15:before{content:"\F0A4"}.wi-moon-16:before{content:"\F0A5"}.wi-moon-17:before{content:"\F0A6"}.wi-moon-18:before{content:"\F0A7"}.wi-moon-19:before{content:"\F0A8"}.wi-moon-20:before{content:"\F0A9"}.wi-moon-21:before{content:"\F0AA"}.wi-moon-22:before{content:"\F0AB"}.wi-moon-23:before{content:"\F0AC"}.wi-moon-24:before{content:"\F0AD"}.wi-moon-25:before{content:"\F0AE"}.wi-moon-26:before{content:"\F0AF"}.wi-moon-27:before{content:"\F0B0"}.wi-time-1:before{content:"\F08A"}.wi-time-2:before{content:"\F08B"}.wi-time-3:before{content:"\F08C"}.wi-time-4:before{content:"\F08D"}.wi-time-5:before{content:"\F08E"}.wi-time-6:before{content:"\F08F"}.wi-time-7:before{content:"\F090"}.wi-time-8:before{content:"\F091"}.wi-time-9:before{content:"\F092"}.wi-time-10:before{content:"\F093"}.wi-time-11:before{content:"\F094"}.wi-time-12:before{content:"\F089"}.wi-direction-up:before{content:"\F058"}.wi-direction-up-right:before{content:"\F057"}.wi-direction-right:before{content:"\F04D"}.wi-direction-down-right:before{content:"\F088"}.wi-direction-down:before{content:"\F044"}.wi-direction-down-left:before{content:"\F043"}.wi-direction-left:before{content:"\F048"}.wi-direction-up-left:before{content:"\F087"}.wi-wind-beaufort-0:before{content:"\F0B7"}.wi-wind-beaufort-1:before{content:"\F0B8"}.wi-wind-beaufort-2:before{content:"\F0B9"}.wi-wind-beaufort-3:before{content:"\F0BA"}.wi-wind-beaufort-4:before{content:"\F0BB"}.wi-wind-beaufort-5:before{content:"\F0BC"}.wi-wind-beaufort-6:before{content:"\F0BD"}.wi-wind-beaufort-7:before{content:"\F0BE"}.wi-wind-beaufort-8:before{content:"\F0BF"}.wi-wind-beaufort-9:before{content:"\F0C0"}.wi-wind-beaufort-10:before{content:"\F0C1"}.wi-wind-beaufort-11:before{content:"\F0C2"}.wi-wind-beaufort-12:before{content:"\F0C3"}.wi-yahoo-0:before{content:"\F056"}.wi-yahoo-1:before{content:"\F00E"}.wi-yahoo-2:before{content:"\F073"}.wi-yahoo-3:before{content:"\F01E"}.wi-yahoo-4:before{content:"\F01E"}.wi-yahoo-5:before{content:"\F017"}.wi-yahoo-6:before{content:"\F017"}.wi-yahoo-7:before{content:"\F017"}.wi-yahoo-8:before{content:"\F015"}.wi-yahoo-9:before{content:"\F01A"}.wi-yahoo-10:before{content:"\F015"}.wi-yahoo-11:before{content:"\F01A"}.wi-yahoo-12:before{content:"\F01A"}.wi-yahoo-13:before{content:"\F01B"}.wi-yahoo-14:before{content:"\F00A"}.wi-yahoo-15:before{content:"\F064"}.wi-yahoo-16:before{content:"\F01B"}.wi-yahoo-17:before{content:"\F015"}.wi-yahoo-18:before{content:"\F017"}.wi-yahoo-19:before{content:"\F063"}.wi-yahoo-20:before{content:"\F014"}.wi-yahoo-21:before{content:"\F021"}.wi-yahoo-22:before{content:"\F062"}.wi-yahoo-23:before{content:"\F050"}.wi-yahoo-24:before{content:"\F050"}.wi-yahoo-25:before{content:"\F076"}.wi-yahoo-26:before{content:"\F013"}.wi-yahoo-27:before{content:"\F031"}.wi-yahoo-28:before{content:"\F002"}.wi-yahoo-29:before{content:"\F031"}.wi-yahoo-30:before{content:"\F002"}.wi-yahoo-31:before{content:"\F02E"}.wi-yahoo-32:before{content:"\F00D"}.wi-yahoo-33:before{content:"\F083"}.wi-yahoo-34:before{content:"\F00C"}.wi-yahoo-35:before{content:"\F017"}.wi-yahoo-36:before{content:"\F072"}.wi-yahoo-37:before{content:"\F00E"}.wi-yahoo-38:before{content:"\F00E"}.wi-yahoo-39:before{content:"\F00E"}.wi-yahoo-40:before{content:"\F01A"}.wi-yahoo-41:before{content:"\F064"}.wi-yahoo-42:before{content:"\F01B"}.wi-yahoo-43:before{content:"\F064"}.wi-yahoo-44:before{content:"\F00C"}.wi-yahoo-45:before{content:"\F00E"}.wi-yahoo-46:before{content:"\F01B"}.wi-yahoo-47:before{content:"\F00E"}.wi-yahoo-3200:before{content:"\F077"}.wi-forecast-io-clear-day:before{content:"\F00D"}.wi-forecast-io-clear-night:before{content:"\F02E"}.wi-forecast-io-rain:before{content:"\F019"}.wi-forecast-io-snow:before{content:"\F01B"}.wi-forecast-io-sleet:before{content:"\F0B5"}.wi-forecast-io-wind:before{content:"\F050"}.wi-forecast-io-fog:before{content:"\F014"}.wi-forecast-io-cloudy:before{content:"\F013"}.wi-forecast-io-partly-cloudy-day:before{content:"\F002"}.wi-forecast-io-partly-cloudy-night:before{content:"\F031"}.wi-forecast-io-hail:before{content:"\F015"}.wi-forecast-io-thunderstorm:before{content:"\F01E"}.wi-forecast-io-tornado:before{content:"\F056"}.wi-wmo4680-0:before,.wi-wmo4680-00:before{content:"\F055"}.wi-wmo4680-1:before,.wi-wmo4680-01:before{content:"\F013"}.wi-wmo4680-2:before,.wi-wmo4680-02:before{content:"\F055"}.wi-wmo4680-3:before,.wi-wmo4680-03:before{content:"\F013"}.wi-wmo4680-4:before,.wi-wmo4680-04:before{content:"\F014"}.wi-wmo4680-5:before,.wi-wmo4680-05:before{content:"\F014"}.wi-wmo4680-10:before{content:"\F014"}.wi-wmo4680-11:before{content:"\F014"}.wi-wmo4680-12:before{content:"\F016"}.wi-wmo4680-18:before{content:"\F050"}.wi-wmo4680-20:before{content:"\F014"}.wi-wmo4680-21:before{content:"\F017"}.wi-wmo4680-22:before{content:"\F017"}.wi-wmo4680-23:before{content:"\F019"}.wi-wmo4680-24:before{content:"\F01B"}.wi-wmo4680-25:before{content:"\F015"}.wi-wmo4680-26:before{content:"\F01E"}.wi-wmo4680-27:before{content:"\F063"}.wi-wmo4680-28:before{content:"\F063"}.wi-wmo4680-29:before{content:"\F063"}.wi-wmo4680-30:before{content:"\F014"}.wi-wmo4680-31:before{content:"\F014"}.wi-wmo4680-32:before{content:"\F014"}.wi-wmo4680-33:before{content:"\F014"}.wi-wmo4680-34:before{content:"\F014"}.wi-wmo4680-35:before{content:"\F014"}.wi-wmo4680-40:before{content:"\F017"}.wi-wmo4680-41:before{content:"\F01C"}.wi-wmo4680-42:before{content:"\F019"}.wi-wmo4680-43:before{content:"\F01C"}.wi-wmo4680-44:before{content:"\F019"}.wi-wmo4680-45:before{content:"\F015"}.wi-wmo4680-46:before{content:"\F015"}.wi-wmo4680-47:before{content:"\F01B"}.wi-wmo4680-48:before{content:"\F01B"}.wi-wmo4680-50:before{content:"\F01C"}.wi-wmo4680-51:before{content:"\F01C"}.wi-wmo4680-52:before{content:"\F019"}.wi-wmo4680-53:before{content:"\F019"}.wi-wmo4680-54:before{content:"\F076"}.wi-wmo4680-55:before{content:"\F076"}.wi-wmo4680-56:before{content:"\F076"}.wi-wmo4680-57:before{content:"\F01C"}.wi-wmo4680-58:before{content:"\F019"}.wi-wmo4680-60:before{content:"\F01C"}.wi-wmo4680-61:before{content:"\F01C"}.wi-wmo4680-62:before{content:"\F019"}.wi-wmo4680-63:before{content:"\F019"}.wi-wmo4680-64:before{content:"\F015"}.wi-wmo4680-65:before{content:"\F015"}.wi-wmo4680-66:before{content:"\F015"}.wi-wmo4680-67:before{content:"\F017"}.wi-wmo4680-68:before{content:"\F017"}.wi-wmo4680-70:before{content:"\F01B"}.wi-wmo4680-71:before{content:"\F01B"}.wi-wmo4680-72:before{content:"\F01B"}.wi-wmo4680-73:before{content:"\F01B"}.wi-wmo4680-74:before{content:"\F076"}.wi-wmo4680-75:before{content:"\F076"}.wi-wmo4680-76:before{content:"\F076"}.wi-wmo4680-77:before{content:"\F01B"}.wi-wmo4680-78:before{content:"\F076"}.wi-wmo4680-80:before{content:"\F019"}.wi-wmo4680-81:before{content:"\F01C"}.wi-wmo4680-82:before{content:"\F019"}.wi-wmo4680-83:before{content:"\F019"}.wi-wmo4680-84:before{content:"\F01D"}.wi-wmo4680-85:before{content:"\F017"}.wi-wmo4680-86:before{content:"\F017"}.wi-wmo4680-87:before{content:"\F017"}.wi-wmo4680-89:before{content:"\F015"}.wi-wmo4680-90:before{content:"\F016"}.wi-wmo4680-91:before{content:"\F01D"}.wi-wmo4680-92:before{content:"\F01E"}.wi-wmo4680-93:before{content:"\F01E"}.wi-wmo4680-94:before{content:"\F016"}.wi-wmo4680-95:before{content:"\F01E"}.wi-wmo4680-96:before{content:"\F01E"}.wi-wmo4680-99:before{content:"\F056"}.wi-owm-200:before{content:"\F01E"}.wi-owm-201:before{content:"\F01E"}.wi-owm-202:before{content:"\F01E"}.wi-owm-210:before{content:"\F016"}.wi-owm-211:before{content:"\F016"}.wi-owm-212:before{content:"\F016"}.wi-owm-221:before{content:"\F016"}.wi-owm-230:before{content:"\F01E"}.wi-owm-231:before{content:"\F01E"}.wi-owm-232:before{content:"\F01E"}.wi-owm-300:before{content:"\F01C"}.wi-owm-301:before{content:"\F01C"}.wi-owm-302:before{content:"\F019"}.wi-owm-310:before{content:"\F017"}.wi-owm-311:before{content:"\F019"}.wi-owm-312:before{content:"\F019"}.wi-owm-313:before{content:"\F01A"}.wi-owm-314:before{content:"\F019"}.wi-owm-321:before{content:"\F01C"}.wi-owm-500:before{content:"\F01C"}.wi-owm-501:before{content:"\F019"}.wi-owm-502:before{content:"\F019"}.wi-owm-503:before{content:"\F019"}.wi-owm-504:before{content:"\F019"}.wi-owm-511:before{content:"\F017"}.wi-owm-520:before{content:"\F01A"}.wi-owm-521:before{content:"\F01A"}.wi-owm-522:before{content:"\F01A"}.wi-owm-531:before{content:"\F01D"}.wi-owm-600:before{content:"\F01B"}.wi-owm-601:before{content:"\F01B"}.wi-owm-602:before{content:"\F0B5"}.wi-owm-611:before{content:"\F017"}.wi-owm-612:before{content:"\F017"}.wi-owm-615:before{content:"\F017"}.wi-owm-616:before{content:"\F017"}.wi-owm-620:before{content:"\F017"}.wi-owm-621:before{content:"\F01B"}.wi-owm-622:before{content:"\F01B"}.wi-owm-701:before{content:"\F01A"}.wi-owm-711:before{content:"\F062"}.wi-owm-721:before{content:"\F0B6"}.wi-owm-731:before{content:"\F063"}.wi-owm-741:before{content:"\F014"}.wi-owm-761:before{content:"\F063"}.wi-owm-762:before{content:"\F063"}.wi-owm-771:before{content:"\F011"}.wi-owm-781:before{content:"\F056"}.wi-owm-800:before{content:"\F00D"}.wi-owm-801:before{content:"\F011"}.wi-owm-802:before{content:"\F011"}.wi-owm-803:before{content:"\F012"}.wi-owm-804:before{content:"\F013"}.wi-owm-900:before{content:"\F056"}.wi-owm-901:before{content:"\F01D"}.wi-owm-902:before{content:"\F073"}.wi-owm-903:before{content:"\F076"}.wi-owm-904:before{content:"\F072"}.wi-owm-905:before{content:"\F021"}.wi-owm-906:before{content:"\F015"}.wi-owm-957:before{content:"\F050"}.wi-owm-day-200:before{content:"\F010"}.wi-owm-day-201:before{content:"\F010"}.wi-owm-day-202:before{content:"\F010"}.wi-owm-day-210:before{content:"\F005"}.wi-owm-day-211:before{content:"\F005"}.wi-owm-day-212:before{content:"\F005"}.wi-owm-day-221:before{content:"\F005"}.wi-owm-day-230:before{content:"\F010"}.wi-owm-day-231:before{content:"\F010"}.wi-owm-day-232:before{content:"\F010"}.wi-owm-day-300:before{content:"\F00B"}.wi-owm-day-301:before{content:"\F00B"}.wi-owm-day-302:before{content:"\F008"}.wi-owm-day-310:before{content:"\F008"}.wi-owm-day-311:before{content:"\F008"}.wi-owm-day-312:before{content:"\F008"}.wi-owm-day-313:before{content:"\F008"}.wi-owm-day-314:before{content:"\F008"}.wi-owm-day-321:before{content:"\F00B"}.wi-owm-day-500:before{content:"\F00B"}.wi-owm-day-501:before{content:"\F008"}.wi-owm-day-502:before{content:"\F008"}.wi-owm-day-503:before{content:"\F008"}.wi-owm-day-504:before{content:"\F008"}.wi-owm-day-511:before{content:"\F006"}.wi-owm-day-520:before{content:"\F009"}.wi-owm-day-521:before{content:"\F009"}.wi-owm-day-522:before{content:"\F009"}.wi-owm-day-531:before{content:"\F00E"}.wi-owm-day-600:before{content:"\F00A"}.wi-owm-day-601:before{content:"\F0B2"}.wi-owm-day-602:before{content:"\F00A"}.wi-owm-day-611:before{content:"\F006"}.wi-owm-day-612:before{content:"\F006"}.wi-owm-day-615:before{content:"\F006"}.wi-owm-day-616:before{content:"\F006"}.wi-owm-day-620:before{content:"\F006"}.wi-owm-day-621:before{content:"\F00A"}.wi-owm-day-622:before{content:"\F00A"}.wi-owm-day-701:before{content:"\F009"}.wi-owm-day-711:before{content:"\F062"}.wi-owm-day-721:before{content:"\F0B6"}.wi-owm-day-731:before{content:"\F063"}.wi-owm-day-741:before{content:"\F003"}.wi-owm-day-761:before{content:"\F063"}.wi-owm-day-762:before{content:"\F063"}.wi-owm-day-781:before{content:"\F056"}.wi-owm-day-800:before{content:"\F00D"}.wi-owm-day-801:before{content:"\F000"}.wi-owm-day-802:before{content:"\F000"}.wi-owm-day-803:before{content:"\F000"}.wi-owm-day-804:before{content:"\F00C"}.wi-owm-day-900:before{content:"\F056"}.wi-owm-day-902:before{content:"\F073"}.wi-owm-day-903:before{content:"\F076"}.wi-owm-day-904:before{content:"\F072"}.wi-owm-day-906:before{content:"\F004"}.wi-owm-day-957:before{content:"\F050"}.wi-owm-night-200:before{content:"\F02D"}.wi-owm-night-201:before{content:"\F02D"}.wi-owm-night-202:before{content:"\F02D"}.wi-owm-night-210:before{content:"\F025"}.wi-owm-night-211:before{content:"\F025"}.wi-owm-night-212:before{content:"\F025"}.wi-owm-night-221:before{content:"\F025"}.wi-owm-night-230:before{content:"\F02D"}.wi-owm-night-231:before{content:"\F02D"}.wi-owm-night-232:before{content:"\F02D"}.wi-owm-night-300:before{content:"\F02B"}.wi-owm-night-301:before{content:"\F02B"}.wi-owm-night-302:before{content:"\F028"}.wi-owm-night-310:before{content:"\F028"}.wi-owm-night-311:before{content:"\F028"}.wi-owm-night-312:before{content:"\F028"}.wi-owm-night-313:before{content:"\F028"}.wi-owm-night-314:before{content:"\F028"}.wi-owm-night-321:before{content:"\F02B"}.wi-owm-night-500:before{content:"\F02B"}.wi-owm-night-501:before{content:"\F028"}.wi-owm-night-502:before{content:"\F028"}.wi-owm-night-503:before{content:"\F028"}.wi-owm-night-504:before{content:"\F028"}.wi-owm-night-511:before{content:"\F026"}.wi-owm-night-520:before{content:"\F029"}.wi-owm-night-521:before{content:"\F029"}.wi-owm-night-522:before{content:"\F029"}.wi-owm-night-531:before{content:"\F02C"}.wi-owm-night-600:before{content:"\F02A"}.wi-owm-night-601:before{content:"\F0B4"}.wi-owm-night-602:before{content:"\F02A"}.wi-owm-night-611:before{content:"\F026"}.wi-owm-night-612:before{content:"\F026"}.wi-owm-night-615:before{content:"\F026"}.wi-owm-night-616:before{content:"\F026"}.wi-owm-night-620:before{content:"\F026"}.wi-owm-night-621:before{content:"\F02A"}.wi-owm-night-622:before{content:"\F02A"}.wi-owm-night-701:before{content:"\F029"}.wi-owm-night-711:before{content:"\F062"}.wi-owm-night-721:before{content:"\F0B6"}.wi-owm-night-731:before{content:"\F063"}.wi-owm-night-741:before{content:"\F04A"}.wi-owm-night-761:before{content:"\F063"}.wi-owm-night-762:before{content:"\F063"}.wi-owm-night-781:before{content:"\F056"}.wi-owm-night-800:before{content:"\F02E"}.wi-owm-night-801:before{content:"\F022"}.wi-owm-night-802:before{content:"\F022"}.wi-owm-night-803:before{content:"\F022"}.wi-owm-night-804:before{content:"\F086"}.wi-owm-night-900:before{content:"\F056"}.wi-owm-night-902:before{content:"\F073"}.wi-owm-night-903:before{content:"\F076"}.wi-owm-night-904:before{content:"\F072"}.wi-owm-night-906:before{content:"\F024"}.wi-owm-night-957:before{content:"\F050"}.wi-wu-chanceflurries:before{content:"\F064"}.wi-wu-chancerain:before{content:"\F019"}.wi-wu-chancesleat:before{content:"\F0B5"}.wi-wu-chancesnow:before{content:"\F01B"}.wi-wu-chancetstorms:before{content:"\F01E"}.wi-wu-clear:before{content:"\F00D"}.wi-wu-cloudy:before{content:"\F002"}.wi-wu-flurries:before{content:"\F064"}.wi-wu-hazy:before{content:"\F0B6"}.wi-wu-mostlycloudy:before{content:"\F002"}.wi-wu-mostlysunny:before{content:"\F00D"}.wi-wu-partlycloudy:before{content:"\F002"}.wi-wu-partlysunny:before{content:"\F00D"}.wi-wu-rain:before{content:"\F01A"}.wi-wu-sleat:before{content:"\F0B5"}.wi-wu-snow:before{content:"\F01B"}.wi-wu-sunny:before{content:"\F00D"}.wi-wu-tstorms:before{content:"\F01E"}.wi-wu-unknown:before{content:"\F00D"}.mar_top_5{margin-top:5px}.mar_top_7{margin-top:7px}.mar_top_6{margin-top:6px}.mar_7{margin:7px}.pad_left_10{padding-left:10px}.mar_left_10{margin-left:10px}*{margin:0px;padding:0px}html{color:#fff;width:100%;height:100%;overflow:hidden}body{color:#fff;width:100%;height:100%;overflow:hidden;height:100%;background:#7abcff;background:url(data:image/svg+xml;base64,PD94bWwgdmVyc2lvbj0iMS4wIiA/Pgo8c3ZnIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyIgd2lkdGg9IjEwMCUiIGhlaWdodD0iMTAwJSIgdmlld0JveD0iMCAwIDEgMSIgcHJlc2VydmVBc3BlY3RSYXRpbz0ibm9uZSI+CiAgPHJhZGlhbEdyYWRpZW50IGlkPSJncmFkLXVjZ2ctZ2VuZXJhdGVkIiBncmFkaWVudFVuaXRzPSJ1c2VyU3BhY2VPblVzZSIgY3g9IjUwJSIgY3k9IjUwJSIgcj0iNzUlIj4KICAgIDxzdG9wIG9mZnNldD0iMCUiIHN0b3AtY29sb3I9IiM3YWJjZmYiIHN0b3Atb3BhY2l0eT0iMSIvPgogICAgPHN0b3Agb2Zmc2V0PSIxMDAlIiBzdG9wLWNvbG9yPSIjNDA5NmVlIiBzdG9wLW9wYWNpdHk9IjEiLz4KICA8L3JhZGlhbEdyYWRpZW50PgogIDxyZWN0IHg9Ii01MCIgeT0iLTUwIiB3aWR0aD0iMTAxIiBoZWlnaHQ9IjEwMSIgZmlsbD0idXJsKCNncmFkLXVjZ2ctZ2VuZXJhdGVkKSIgLz4KPC9zdmc+);background:radial-gradient(ellipse at center, #0093d1 0%, #004c70 100%);filter:progid:DXImageTransform.Microsoft.gradient(startColorstr='#7abcff', endColorstr='#4096ee', GradientType=1);background-size:100% 100%;font-family:"Roboto Slab",serif}#app{width:100%;height:100%}#at15s.atm{z-index:9999999 !important}#map{height:100%;background:none}.profile_image{width:40px;height:40px}.left_block{display:block;float:left}.right_block{display:block;float:right}.btn-rounded{padding:10px 40px;margin:20px 5px;border:2px solid rgba(0,0,0,0);border-radius:25px;color:#fff}.btn-rounded.green{background-color:#22c222}.map-info,.map-info-mobile{padding:6px 8px;display:none;font:14px/16px Arial,Helvetica,sans-serif;background:#fff;background:hsla(0,0%,100%,.8);box-shadow:0 0 15px rgba(0,0,0,.2);border-radius:5px;color:#6f6f6f}.map-info:hover,.map-info-mobile:hover{background:#fff}.map-info h4,.map-info-mobile h4{margin:0 0 5px;color:#816666}.map-info-mobile{max-width:190px;text-align:justify;display:block}.map-info-mobile h4{margin:0px}.map-legend,.custom-map-legend{text-align:left;display:block;line-height:18px;color:#555}.map-legend .legend-item-class i,.custom-map-legend .legend-item-class i{border:1px solid #d1d1d1;width:18px;height:18px;float:left;margin-right:8px}.map-legend .legend-item-class td,.custom-map-legend .legend-item-class td{padding-right:3px}.map-legend .legend-item-class td i,.custom-map-legend .legend-item-class td i{margin-right:0px}@media screen and (max-height: 600px){.map_type_custom_map_with_top_slider .map-legend .legend-item-class:nth-child(odd),.map_type_custom_map_with_top_slider .map-info-mobile .legend-item-class:nth-child(odd),.map_type_custom_map_with_top_slider .custom-map-legend .legend-item-class:nth-child(odd){display:none}}@media screen and (max-height: 500px){.map_type_custom_map_with_top_slider .map-legend,.map_type_custom_map_with_top_slider .legend-item-class{display:none}}@media(max-width: 490px){.map-legend{display:none}}@media(hover: hover){.map-info{display:block}}@keyframes light-theme-active-country-colors-animation{0%{background-color:#4ba144}25%{background-color:#a3c54d}50%{background-color:#dd912f}100%{background-color:#d57822}}@keyframes purple-theme-active-country-colors-animation{0%{background-color:#ba1c2d}25%{background-color:#ee7414}50%{background-color:#0a407b}100%{background-color:#639ccc}}.light-theme-active-country-colors{background-color:red;animation-name:light-theme-active-country-colors-animation;animation-duration:3s;animation-iteration-count:infinite}.purple-theme-active-country-colors{background-color:red;animation-name:purple-theme-active-country-colors-animation;animation-duration:3s;animation-iteration-count:infinite}.regions-map-container{width:100%;height:100%;position:relative}.regions-map-container .map-overlay{background:rgba(0,0,0,.5);width:100%;height:100%;display:none;position:absolute;padding:20px;z-index:1001}.regions-map-container .map-overlay .map-overlay-message{position:relative;float:left;top:50%;left:50%;transform:translate(-50%, -50%);font-size:20px;text-align:center;color:#fff;text-shadow:#fff 1px 1px 22px}.regions-map-container #regions-map,.regions-map-container #regions-add-map{width:100%;height:400px;background:#fff;background:-moz-linear-gradient(top, #ffffff 0%, #dddddd 50%, #ffffff 100%);background:-webkit-linear-gradient(top, #ffffff 0%, #dddddd 50%, #ffffff 100%);background:linear-gradient(to bottom, #ffffff 0%, #dddddd 50%, #ffffff 100%);filter:progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffffff',GradientType=0 )}@media(max-width: 600px){#regions-map,#regions-add-map{height:350px}}@media(max-width: 400px){#regions-map,#regions-add-map{height:250px}}@media(max-width: 600px)and (orientation: landscape){#regions-map,#regions-add-map{height:190px}}@media(min-width: 600px)and (max-width: 900px)and (orientation: landscape){#regions-map,#regions-add-map{height:250px}}.center-container{height:calc(100% - 51px)}.center-panel,.left-panel{height:100%;margin:0;padding:0}.layout-container{width:100%;height:100%}.footer-container{position:relative;width:550px;height:27px;bottom:27px;z-index:999999;margin:0 auto}.links{height:25px;line-height:25px;font-size:12px;text-align:center}.links a{color:#fff;padding-right:5px;text-shadow:1px 1px 1px #000,1px 1px 5px #000;padding-left:5px}@media(max-width: 425px){.footer-container{width:100%}.gs-buttons a[class*=gs-]:link,html .gs-buttons a[class*=gs-]:visited,.gs-buttons a[class*=gs-]:active{margin:0 !important}}.navbar{margin-bottom:0px;background-color:#000;border-radius:0px}.logo{margin-top:10px;color:#fff}.logoUrl:hover{text-decoration:none}.full_name{font-family:"Roboto Slab",serif;display:block;float:right;padding-top:10px;padding-right:10px}#authorizedBlock{padding-top:4px}#authorizedBlock .fa{font-size:17px}#authorizedBlock .btn-group{margin-top:3px}.dropdown-menu{display:block}#authorizedBlock .shareContainer{text-align:center}.facebook-no-login{padding-top:6px}.facebook-no-login .btn-social{color:#fff;font-size:16px;line-height:22px}.facebook-no-login i{padding-right:6px}.facebook-no-login .btn-social:hover{background:#000}#friends_list .share-buttons-container{width:297px;padding:5px;margin:0 auto;margin-bottom:5px}#friends_list .share-buttons-container a{float:left;width:41px;height:41px;clear:none;margin-left:9px}#authorizedBlock .no_friends_message{color:#000;padding:19px;text-align:center;font-size:12px}.facebook-no-login>.profile_image{margin-top:-1px}.facebook-no-login>.full_name{padding-top:9px}#authorizedBlock .btn{border-radius:0px}#authorizedBlock>.btn-group>button{margin-left:-1px}.mobileReady .logo{display:block;padding:1px;width:44px;height:29px;text-align:center;background:#2e2e2e;border-radius:5px;margin:10px auto}.modal{color:#000;background:rgba(0,0,0,.5);display:block;z-index:9999999;overflow-y:auto}.swal2-container{z-index:9999999999 !important}.swal2-container .swal2-popup{font-size:1.5rem !important}.app-loader-container{padding-top:100px;width:100%;text-align:center}.full-page-canvas{width:100%;height:100%;position:fixed;left:0;top:0;background:rgba(0,0,0,.47);padding-top:80px;z-index:99999999999999}.loader{border:3px solid #f3f3f3;border-top:3px solid #3498db;border-radius:50%;width:50px;margin:0 auto;height:50px;animation:spin 2s linear infinite}@keyframes spin{0%{transform:rotate(0deg)}100%{transform:rotate(360deg)}}.shareButtonsContainer{text-align:center;width:100%;height:42px}.notification-container{z-index:99999999;top:50px}.notification-item .action_ico{padding-right:10px}.notification-item{padding:15px}.enjoyhint{z-index:1800}.enjoy_hint_label{font-size:15px}@media(min-width: 1024px){.enjoy_hint_label{font-size:20px}}.stylish-input-group button{border:0;background:rgba(0,0,0,0)}.stylish-input-group .input-group-addon{background:#fff !important}.stylish-input-group .form-control{border-right:0;box-shadow:0 0 0;border-color:#ccc}.batch-visits-container{line-height:34px;font-size:18px}.batch-visits-container .alert-warning{padding:10px;font-size:16px;line-height:23px;text-align:center}.batch-visits-container .buttons-container button{border:none;margin-right:2px}.batch-visits-container .visit{padding-top:3px;padding-bottom:3px;margin-top:10px}.country-stats-container span{color:#22c222;font-size:25px;padding-right:3px;padding-left:3px;border-radius:100%}#country-title{height:33px;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}#large-modal .manage_block.active{display:block}.large-modal .close{width:43px;height:43px}.searchResult{width:100%;height:100%;z-index:200;overflow-y:auto;padding-top:15px;color:#000}.searchResult .title{padding:10px;font-size:15px}.searchResult>.container{background-color:#fff;height:auto;border:#ccc 1px solid}.searchResult .noResult{background:#fcfcfc;padding:5px;border-radius:5px}.searchResult .delimiter{width:100%;height:1px;background:#ccc;margin-bottom:10px}.searchResult .noResult{margin-bottom:10px;padding-left:25px}.searchResult .close{width:43px;height:43px}.searchResult .searchCard{box-shadow:1px 1px 6px #ccc;margin-bottom:15px;display:block;cursor:pointer}.searchResult .searchCard .countryPopup{display:block;position:static;box-shadow:none;width:100%}.searchResult .searchCard .userPreview{display:block;float:left;width:50px;height:50px}.searchResult .searchCard .searchLabel{line-height:50px;text-align:center;font-size:13px;background-color:#fff}.searchResult .countriesRow .searchLabel{font-size:15px}.serachBox ul>li{clear:both}.serachBox ul .userData{height:65px;border-bottom:1px solid #d1d1d1}.react-datepicker{font-size:unset !important}.portal-react-calendar{background:#ccc}.calendar-container{height:35px}.calendar-container .react-datepicker__portal .react-datepicker__day-name,.calendar-container .react-datepicker__portal .react-datepicker__day,.calendar-container .react-datepicker__portal .react-datepicker__time-name{width:3rem !important;line-height:3rem !important}.calendar-container .react-datepicker__close-icon::after{margin:-18px auto 0}.calendar-container .react-datepicker-wrapper{width:100%}.calendar-container .react-datepicker__input-container{width:100%}.calendar-container .react-datepicker__input-container input{line-height:34px;display:block;width:100%;height:34px;padding:6px 12px;font-size:14px;color:#555;background-color:#fff;background-image:none;border:1px solid #ccc;border-radius:4px;box-shadow:inset 0 1px 1px rgba(0,0,0,.075);transition:border-color ease-in-out .15s,box-shadow ease-in-out .15s}#modal-user-profile .manage-visit-item{text-align:left !important;margin:3px auto}#modal-user-profile .modal-body{background:#f1f2f4;padding-bottom:30px}#modal-user-profile .profile-country-block{clear:both;display:block;width:100%;border:1px solid #d7d7d7;margin-bottom:10px;padding:5px}#modal-user-profile .profile-country-block:nth-child(odd){background:#f1f2f4}#modal-user-profile .country-title{line-height:34px}#modal-user-profile .country-flag{width:32px;float:left;margin-right:15px}#modal-user-profile .country-block-header{height:35px;border-bottom:1px solid #e7e7e7}#modal-user-profile .profileBlock .profile-stats-container{margin-left:0px;margin-right:0px}#modal-user-profile .profileBlock .profile-stats-container .progress{padding-left:0px;padding-right:0px}#modal-user-profile .profileBlock .profile-stats-container .progress .rating-item{padding-left:5px;padding-right:5px;color:#fff;position:absolute;font-size:25px}#modal-user-profile .profileBlock .profile-stats-container>div{line-height:30px;margin-bottom:10px;margin-top:10px}#modal-user-profile .profileBlock .rating-counter{float:right;font-size:30px;line-height:40px}#modal-user-profile .profileBlock{background:#fff;border-radius:2px;box-shadow:0 1px 0 0 #e1e2e6,0 0 0 1px #e6e7eb;padding:10px;display:flex;flex-direction:column}#modal-user-profile .modal-body h3>span{padding-left:10px}#modal-user-profile .modal-body h3{margin-top:15px;margin-bottom:15px;font-size:20px;color:#35196c}#modal-user-profile .profileBlock .userName{font-size:19px;color:#474747;padding-left:10px;display:inline-block}#modal-user-profile .btn-social>span{padding-left:10px;padding-right:10px}#modal-user-profile .btn-social{border-radius:0;padding-left:0;background-color:#336cb3;text-align:left;color:#fff}#modal-user-profile .btn-social:hover{background-color:#26226c}.travel-star-list-item{padding-top:10px;padding-bottom:10px;border-bottom:1px solid #ccc;background:#fff}.travel-star-list-item:nth-child(4n+1),.travel-star-list-item:nth-child(4n){background:#f4f4f4}.travel-star-list-item .travel-star-container-item{display:flex;flex-wrap:nowrap}.travel-star-list-item .travel-star-container-item .number{flex-basis:auto;padding-right:10px}.travel-star-list-item .travel-star-container-item .picture{flex-basis:60px}.travel-star-list-item .travel-star-container-item .visits-data{flex:1;overflow:hidden}.travel-star-list-item .travel-star-container-item .show-map-button{flex-basis:auto}.travel-star-list-item .fa{padding-right:5px}.travel-star-list-item .countries{white-space:nowrap;overflow:hidden;text-overflow:ellipsis}#modal-user-profile .map-theme-block-container{box-shadow:none;padding:0px}.theme-element-container{box-shadow:1px 1px 16px #ddd;width:100%;height:180px;border:1px solid #ddd;display:flex;flex-direction:column;margin-bottom:15px}.theme-element-container .preview{flex:3;height:150px;background:url("/public/img/theme/default.png");background-position:center;background-size:cover}.theme-element-container .details{flex:2;display:flex;flex-direction:column}.theme-element-container .details .name{font-size:19px;display:flex;flex:1;margin:10px}.theme-element-container .details .control{display:flex;flex:3;flex-direction:row;margin:0px;padding:0px;justify-content:flex-end}.theme-element-container .details .control .active-theme{color:#fff;background:#5eb554}.theme-element-container .details .control button{font-family:"Roboto Slab",serif;font-size:16px;max-width:120px;flex:1;margin:5px;border:1px solid #ddd;color:#232323;border-radius:5px;background:#efefef}.theme-element-container .details .control button:hover{color:#fff;background:#868686}.price-cards-container{font-family:Avenir,sans-serif;width:100%;margin:auto;padding-top:50px;padding-bottom:10px;font-size:.5em}.price-cards-container .grid{flex-direction:row;display:flex;flex-flow:wrap}.price-cards-container .card{border-radius:10px;min-width:265px;padding:30px 20px 59px 20px;border:0;margin:10px;flex:1}.price-cards-container .card h3{color:hsla(0,0%,100%,.3);font-size:6em;font-weight:900;letter-spacing:0px}.price-cards-container .card h4{color:#fff;font-size:6em;margin-top:53px}.price-cards-container .card h5{color:hsla(0,0%,100%,.8392156863);font-size:4em;margin-top:15px;margin-bottom:15px}.price-cards-container .card h2{color:hsla(0,0%,100%,.15);font-size:13em;font-weight:900;position:absolute;margin-left:-6px;pointer-events:none}.price-cards-container .card hr{border-width:1px;border-color:hsla(0,0%,100%,.15)}.price-cards-container .card hr:first-of-type{margin-top:25px}.price-cards-container .card p:first-of-type{margin-top:20px}.price-cards-container .card p{color:#fff;font-size:3em}.price-cards-container .card p:last-child{margin-top:10px;margin-bottom:40px}.price-cards-container .card a,.price-cards-container .card button{color:#fff;font-size:3em;font-weight:bold;text-decoration:none;padding:16px;width:100%;display:block;background-color:hsla(0,0%,100%,.3);border-radius:6px;transition:background-color .5s;border:none}.price-cards-container .card a:hover,.price-cards-container .card button:hover{background-color:hsla(0,0%,100%,.5)}.price-cards-container .card1{background:linear-gradient(to bottom right, #fc56f6, #a356fd);box-shadow:3px 15px 30px rgba(171,86,252,.75)}.price-cards-container .card2{background:linear-gradient(to bottom right, #56d0fd, #56fd7d);box-shadow:3px 15px 30px rgba(86,247,142,.75)}.price-cards-container .card3{background:linear-gradient(to bottom right, #fdbd56, #fd56b6);box-shadow:3px 15px 30px rgba(253,99,169,.75)}#drift-frame-controller.drift-conductor-item.drift-frame-controller.drift-frame-controller-align-right{z-index:999999 !important}.map_type_travel_map #drift-frame-controller.drift-conductor-item.drift-frame-controller.drift-frame-controller-align-right{top:55px !important;right:5px !important}.map_type_weather_map #drift-frame-controller.drift-conductor-item.drift-frame-controller.drift-frame-controller-align-right{top:105px !important;right:5px !important}@media(hover: hover){.map_type_weather_map #drift-frame-controller.drift-conductor-item.drift-frame-controller.drift-frame-controller-align-right{top:158px !important;right:-2px !important}}.log-in-modal{text-align:center}.log-in-modal .alert-warning{margin-bottom:20px}.log-in-modal .btn-social{width:60%;text-align:center;height:40px;margin-top:5px;margin-bottom:5px;line-height:26px;margin-left:5px;color:#fff}.log-in-modal .btn-social i{padding:5px}.log-in-facebook-button:hover{background-color:#435e96}.log-in-facebook-button{overflow-x:scroll;background-color:#3b5998}.log-in-google-button:hover{background-color:#c34a31}.log-in-google-button{background-color:#cb3f22}.log-out-button{float:right;color:#868686}.log-out-button .fa{padding-left:10px}.delete-account-button{padding:10px;border-radius:5px;background:#f4f4f4;color:#232323;float:right;margin-top:11px}.delete-account-button:hover{color:#fff;background:#ff2323}.delete-account-button .fa{padding-left:10px}.share-map-preview-container{text-align:center}.user-map-link-group{padding:10px}ul li.delimiter{border-bottom:1px solid #dfdfdf}.footer-container .add-new-country>span{background:#22c222;padding:5px;padding-left:9px;text-align:center;border-radius:0px}.footer-container .add-new-country{display:block;position:fixed;bottom:22px;overflow:hidden;left:50%;margin-left:-26px;width:52px;text-align:center;cursor:pointer;font-size:35px}#countriesChecker .modal,#countriesChecker .modal-dialog{z-index:9999999}#countriesChecker .searchGroup{margin-bottom:10px}#countriesChecker .panel-group .close-button>button{color:#fff;opacity:1;margin-right:5px;padding-left:13px;font-size:35px}#countriesChecker .panel-default>.panel-heading{border-right:1px solid #f6f6f6;border-bottom:1px solid;color:#fff;background:none}#countriesChecker .panel-group .panel{border-radius:0px;border:0px;background:none;clear:both}#countriesChecker .collapse.in{height:100% !important}#countriesChecker{position:absolute;-webkit-overflow-scrolling:touch;overflow-y:auto;padding-top:10px;padding-left:10px;padding-right:10px;width:100%;height:100%;background:hsl(199,86%,38%)}.save-map-modal .alert-warning{padding:5px}.save-map-modal .intro-list{margin-left:20px}.save-map-modal .intro-list>li{font-size:20px}@media(max-width: 767px){#map_container{z-index:1040}#countriesChecker{z-index:9999999;background:#198bbb;padding-top:6px}.footer-container.no-user{bottom:27px}.footer-container{z-index:999;width:100%}}#countriesChecker .continentSection button{border:none;padding-left:0;padding-right:0;margin-top:5px;background:none;text-align:left;border-radius:73px;color:#fff;border-bottom:1px solid #c4c4c4}#countriesChecker .continentSection button:focus{outline:none}#countriesChecker .continentSection button.active{background:#313131;color:#fff}#countriesChecker .continentSection button .areaLabel{overflow:hidden;padding-right:3px;padding-left:5px;text-overflow:ellipsis}#countriesChecker .continentSection button .tooltip{z-index:99999}#countriesChecker .continentSection .panel-title a{display:block;text-align:right;font-size:20px;width:100%}#countriesChecker .no-countries-checked-in{font-size:15px;padding:10px;text-align:center;background:#22c222;border-radius:5px;margin-top:10px;margin-bottom:10px}#countriesChecker .visited-country-container{padding-left:1px;padding-right:1px}#countriesChecker .visited-country-container .visit-ico{position:absolute;left:7px;top:7px}#countriesChecker .visited-country-container .glyphicon-remove{position:absolute;right:7px;top:7px}#countriesChecker .visited-country .reference{white-space:nowrap;overflow:hidden;display:block;padding-left:27px;padding-right:0px;text-overflow:ellipsis;width:85%}#countriesChecker .visited-country{background:#22c222;cursor:pointer;padding-left:0px;padding-right:0px;padding-top:5px;padding-bottom:5px;font-weight:100;border-radius:5px}#countriesChecker .continentSection button .glyphicon{display:block;float:left;padding-left:8px;padding-right:3px;line-height:17px;width:20px}.large-modal{display:block;width:100%;background:rgba(0,0,0,.66);height:100%;-webkit-overflow-scrolling:touch;position:fixed;overflow-x:hidden;z-index:9999999;overflow-y:auto;left:0px;top:0px;color:#000}.large-modal #closeWindow{position:absolute;right:0px;top:0px}.large-modal .blocksContainer img{padding:15px;padding-right:0px}.modal .blocksContainer img{padding:15px;padding-right:0px}.large-modal .impressionsContainer .impressionsText{padding:10px}.large-modal .impressionsContainer .tripItem{padding:10px}.large-modal .impressionsContainer .tripItem .like{float:right;font-size:14px}.large-modal .impressionsContainer .tripItem .title{padding:0px;background:#f3f3f3;margin-top:9px;line-height:26px;display:table;width:100%;padding-top:3px;padding-bottom:3px;padding-left:3px}.large-modal .impressionsContainer .tripItem .title .statusLabel{font-weight:normal;margin-left:7px;text-shadow:none;font-size:11px}.large-modal .impressionsContainer .tripItem .content{line-height:24px;text-align:justify;padding-left:20px;padding-right:25px;padding-top:7px}.large-modal .impressionsContainer .tripItem .footer{float:right;width:179px;text-align:center;padding:5px;clear:both;background:#ececec;border-radius:10px;font-size:13px;margin-bottom:6px}.large-modal .blocksContainer .impressionsContainer .button{padding:5px;font-size:18px}.large-modal .impressionsContainer .toolbar{margin-top:10px;border-top:1px solid #ccc;padding:5px;clear:both}.large-modal .impressionsContainer .button{padding:5px;font-size:18px}.large-modal .impressionsContainer .button span{color:#000}.large-modal .photoContainer a{height:167px;display:block;margin-top:5px;background-size:cover !important}.modal .flag-container{width:40px;float:left}.modal .country-label{float:left;line-height:31px}.large-modal .blocksContainer{position:relative;margin:15px;border-top:1px solid #ccc;border-radius:2px;background:rgba(252,252,252,.65)}.modal .blocksContainer{position:relative;margin:10px;border-top:1px solid #ccc}.large-modal>.container{background-color:#f1f2f4;height:auto;padding-left:0px;padding-right:0px;border:#ccc 1px solid;padding-bottom:20px}.large-modal .info-span{display:block;text-align:center;padding:10px;padding-bottom:30px;padding-top:30px;width:100%;font-size:16px}.mobile-menu-list li{clear:both}.mobile-menu-list li>a{color:#000}.large-modal .title.header{padding-left:0px;min-height:36px}.large-modal .title{font-size:18px;padding-bottom:10px;padding-left:0px;padding-top:10px;clear:both}.large-modal .title .country-flag{width:32px;float:left}.large-modal .title .countryName span{color:#636363}.large-modal .title .countryName span.active{color:red}.large-modal .title .countryName{line-height:32px;padding-left:42px}.large-modal .title .modal-name span{color:#636363}.large-modal .title .modal-name{line-height:32px}.large-modal .nav-tabs a.active{background-color:#fafafa}.large-modal>.container .tab-content{background-color:#fff;border-left:1px solid #ddd;border-right:1px solid #ddd;border-bottom:1px solid #ddd}.large-modal .tab-content .title{padding:10px;font-size:18px;padding-bottom:0;padding-left:25px;padding-top:10px;clear:both}.modal .title{font-size:18px;padding-top:10px;clear:both}.travel-star-active-list-item{background:#052c3d !important;color:#fff}.large-modal .blocksContainer.favorites{padding:10px}.large-modal .glyphicon{padding-right:5px}.modal .glyphicon{padding-right:5px}.large-modal .blocksContainer.countryStatus .countryStatusBtn{border:1px solid #fff;border-radius:0px;background:#31b0d5;color:#fff;padding:10px}.large-modal .blocksContainer.countryStatus .content{padding:10px}.large-modal .blocksContainer.favorites span{padding-right:3px;padding-left:3px}.large-modal .scratchBlock #apply_country_changes{width:100%;border-radius:0px;margin-top:20px;clear:both;margin-bottom:5px}.user-image-profile{width:50px;height:50px}.large-modal .blocksContainer .comment{width:100%}.large-modal .blocksContainer .comment .date{padding-left:10px}.large-modal .topTravelersContainer>a{background:#fcfcfc;border-bottom:1px solid #e3e3e3}.large-modal .topTravelersContainer img{padding:10px 10px 10px 0px}.modal .topTravelersContainer img{padding:10px 10px 10px 0px}.large-modal .topTravelersContainer a:nth-child(odd){border-right:1px solid #ccc}.large-modal .blocksContainer .comment.secondLevel{padding-left:70px}.large-modal .blocksContainer .comment>a{width:70px;float:left}.large-modal .blocksContainer .like.active span{color:#0193d9}.large-modal .blocksContainer .comment img{padding:10px}.large-modal .blocksContainer .messageContainer{padding-left:80px;box-shadow:1px 1px 1px #ccc;margin-top:10px}.large-modal .blocksContainer.visits{text-align:center}.large-modal .blocksContainer .messageContainer .message{padding:0px 5px 5px 10px}.large-modal .blocksContainer .messageContainer .toolbar{padding-top:5px;padding-bottom:5px;border-top:1px solid #ccc}.large-modal .blocksContainer .toolbar .shareBbutton{padding-left:15px}.large-modal .blocksContainer .toolbar span{color:#000}.large-modal .personBlock{overflow:hidden;height:71px;line-height:71px;text-overflow:ellipsis}.modal .personBlock{overflow:hidden;height:71px;line-height:71px;text-overflow:ellipsis}.large-modal .personBlock .p-i-block,.modal .personBlock .p-i-block{width:50px;height:70px;float:left;margin-top:10px;margin-right:10px}.person-preview-block{width:50px;height:50px;float:left;margin:10px}.person-preview-block>div{width:50px;height:50px;background-size:contain;background-color:#ccc}.large-modal .personBlock .p-i-block>div,.modal .personBlock .p-i-block>div{width:50px;height:50px}.large-modal .extenderButton{display:block;position:absolute;top:-37px;right:0px;text-decoration:underline}.large-modal .glyphicon.spin_me{padding:0px;margin-right:10px}.large-modal .blocksContainer .header{padding:10px 10px 10px 0px}.large-modal .blocksContainer .header .fullName{font-weight:bold}.large-modal .blocksContainer .header .removeComment{display:block;float:right;width:20px;height:20px;background:#efefef;text-align:center}.large-modal .blocksContainer .header .date{color:#959595}.large-modal .blocksContainer .noComments{width:100%;font-size:17px;padding:10px}.large-modal .blocksContainer textarea{border-radius:0px;resize:none;margin-top:10px;height:75px}.large-modal .actionButton span{padding-left:5px;padding-right:5px}.large-modal .blocksContainer .answerButtons{height:40px;background:#fff;border:1px solid #ccc;border-top:none}.large-modal .blocksContainer .answerButtons .answerTo{float:left;width:50%;line-height:40px;color:#000;text-decoration:underline;padding-left:10px;font-size:11px}.large-modal .blocksContainer .answerButtons .answerTo:hover{text-decoration:none}.large-modal .nav .notVisited{background:red;color:#fff}.large-modal .blocksContainer .answerButtons a.btn{margin:3px;border-radius:0px;float:right}.mobileReady .searchGroup{padding-right:50px}.menuButton{position:relative;margin-top:-34px;cursor:pointer;margin-right:1px;float:right;margin-bottom:0px}.modal-body h4{border-bottom:1px solid #e5e5e5;padding-bottom:5px}#countryPopup .country-flag{width:43px}.countryPopup .country-flag{height:32px;display:block;float:left;width:100%;padding-left:5px}.btn-default-invert:hover{color:#000;background:#fff}.btn-default-invert:focus{color:#000;background:#fff;outline:none}.btn-default-invert{color:#fff;background-color:#000}.countryPopup .flag{margin-right:10px;display:block;float:left}.countryPopup .country-title{line-height:32px;width:calc(100% - 60px);overflow:hidden;height:32px;display:block;text-overflow:ellipsis}.countryPopup .fVisit .noFrineds{width:100%;display:block;padding:5px;background:#fff5f5;text-align:justify;font-size:11px}.countryPopup .fVisit .popupTitle{display:block;padding-bottom:5px;padding-top:7px;padding-left:2px;border-bottom:1px #ccc solid;margin-bottom:5px}.countryPopup .fVisit{padding:3px}.countryPopup .fVisit img{width:40px;height:40px;margin:1px;padding:1px}.countryPopup{display:none;background:#fff;width:261px;z-index:99999;position:absolute;top:200px;left:500px;font-family:"Roboto Slab",serif;box-shadow:#ccc 1px 1px 30px;color:#000;font-size:12px}.countryPopup .aboutCountry{clear:both;padding:10px;border-bottom:1px #ccc solid;border-top:1px #ccc solid}.modal-footer{clear:both}.countryPopup .country{line-height:30px}.countryPopup table{width:100%}.countryPopup table td{padding:2px}.clearBoth{clear:both}.travelPeriod{width:100%}.travelPeriod td{padding:5px}th{padding:5px}.socialButtons{float:left !important}.facebookButtons{width:95px;overflow:hidden}.vkontakteButtons{width:105px}#friends_list .profile_image{margin-top:4px}#friends_list li{display:block}#friends_list a{display:block;color:#000;clear:both;height:55px;width:100%}#authorizedBlock .friends-dropdown{margin:0px;max-height:500px;overflow-x:hidden;overflow-y:auto;width:300px}#friends_list{margin:0px;padding-top:10px;width:100%}.not_visible{display:none !important}#friends_list .full_name{font-size:12px;margin-top:6px;width:170px}.mobileNavigation .full_name{float:none;padding-left:75px;line-height:22px}.mobileNavigation .userData{display:table}#friends_list a:hover{background:#f6f6f6}#friends_list a.active{color:#262626;text-decoration:none;background-color:rgba(25,161,255,.07)}#friends_list .badge{width:35px;height:30px;border-radius:50px;padding-top:9px;margin-top:11px;margin-right:7px;margin-left:10px}.general_alerts{padding-right:35px}.general_alerts .alert{margin-top:60px;position:absolute;width:100%;height:auto;z-index:99}.alert{display:none;opacity:0}.countryType,.manageMode{width:100%}.countryType>label,.manageMode>label{width:100%;text-align:left;display:block}#large-modal .btn span.glyphicon{opacity:0}#large-modal .btn.active span.glyphicon{opacity:1}.nativeCountryCheck .btn{border-radius:5px !important}.nativeCountryCheck>span{line-height:34px;padding-left:5px}.table-condensed{color:#000}.navbar-fixed-bottom{-moz-transform:translateY(100px);-ms-transform:translateY(100px);-webkit-transform:translateY(100px);-o-transform:translateY(100px);transform:translateY(100px)}#shareMapCanvas{display:none}#modalShareMap .modal-body .shareMap>img{width:100%}.progress{height:40px}ul .divider{height:1px;margin:9px 0;overflow:hidden;background-color:#e5e5e5}.progress>div{line-height:40px;width:100%;text-shadow:1px 1px 1px #000;font-size:15px}#modalShareMap .shareMap,.modal .loaded{display:none}.addthis_toolbox{margin-top:10px !important}.addthis_toolbox span,.addthis_toolbox svg{width:32px !important;height:32px !important}.share-map-label{padding-top:10px;clear:both;display:block;font-size:20px}#spinner_container{display:block;width:100%;height:100%;z-index:999999;position:fixed;top:0px;left:0px;background:#232c4a}.notification-dropdown{width:375px;max-height:300px;overflow-x:hidden;overflow-y:auto;margin:0px;padding:0px}#notificationsList li{display:block}#notificationsList{width:100%}#notificationsList>li>a{display:table;white-space:normal;width:100%;color:#000;padding:7px}#notificationsList>li>a.read{background:#fbfbfb}#notificationsList>li>a.active{background:#ccc}#notificationsList>li .action_description{overflow:hidden;padding-left:10px;display:block;padding-top:12px;line-height:30px;word-break:break-word}#notificationsList>li .action_ico{line-height:55px;margin-right:10px;width:14px;float:left}#notificationsList>li .profile_image{margin-top:7px;float:left;width:40px}.blink_me{animation:blinker 3s linear infinite}@keyframes blinker{50%{opacity:0}}.spin_me{-webkit-animation:spin 4s linear infinite;-moz-animation:spin 4s linear infinite;animation:spin 4s linear infinite}@-moz-keyframes spin{100%{-moz-transform:rotate(360deg)}}@-webkit-keyframes spin{100%{-webkit-transform:rotate(360deg)}}@keyframes spin{100%{-webkit-transform:rotate(360deg);transform:rotate(360deg)}}.sk-cube-grid{width:40px;height:40px;margin:100px auto}.sk-cube-grid .sk-cube{width:33%;height:33%;background-color:#fff;float:left;-webkit-animation:sk-cubeGridScaleDelay 1.3s infinite ease-in-out;animation:sk-cubeGridScaleDelay 1.3s infinite ease-in-out}.sk-cube-grid .sk-cube1{-webkit-animation-delay:.2s;animation-delay:.2s}.sk-cube-grid .sk-cube2{-webkit-animation-delay:.3s;animation-delay:.3s}.sk-cube-grid .sk-cube3{-webkit-animation-delay:.4s;animation-delay:.4s}.sk-cube-grid .sk-cube4{-webkit-animation-delay:.1s;animation-delay:.1s}.sk-cube-grid .sk-cube5{-webkit-animation-delay:.2s;animation-delay:.2s}.sk-cube-grid .sk-cube6{-webkit-animation-delay:.3s;animation-delay:.3s}.sk-cube-grid .sk-cube7{-webkit-animation-delay:0s;animation-delay:0s}.sk-cube-grid .sk-cube8{-webkit-animation-delay:.1s;animation-delay:.1s}.sk-cube-grid .sk-cube9{-webkit-animation-delay:.2s;animation-delay:.2s}@-webkit-keyframes sk-cubeGridScaleDelay{0%,70%,100%{-webkit-transform:scale3D(1, 1, 1);transform:scale3D(1, 1, 1)}35%{-webkit-transform:scale3D(0, 0, 1);transform:scale3D(0, 0, 1)}}@keyframes sk-cubeGridScaleDelay{0%,70%,100%{-webkit-transform:scale3D(1, 1, 1);transform:scale3D(1, 1, 1)}35%{-webkit-transform:scale3D(0, 0, 1);transform:scale3D(0, 0, 1)}}.device-not-supported{display:none;width:300px;text-align:center;clear:both;margin:0px auto;margin-left:-130px}#modalStatistics .modal-body{text-align:center}#modalStatistics h2{color:#ff0006}#modalStatistics h3{font-size:20px}#modalStatistics .chartsRow:nth-child(odd){background:#f6f6f6}#modalStatistics .chartsRow{border-top:1px solid #ccc;padding-bottom:10px}#modalStatistics .chartsRow>div:nth-child(odd){border-left:1px solid #ccc;border-right:1px solid #ccc}.scratchBlock .board .nav-tabs{position:relative;margin-bottom:0;box-sizing:border-box}.scratchBlock p.narrow{width:60%;padding:10px;margin:10px auto}.scratchBlock .liner{height:2px;background:#ddd;position:absolute;width:62%;margin:0 auto;left:0;right:0;top:50%;z-index:1}.scratchBlock .nav-tabs>li.active>a{color:#555;cursor:default;border:0;border-bottom-color:rgba(0,0,0,0)}.scratchBlock .nav-tabs>li.active>a:hover,.scratchBlock .nav-tabs>li.active>a:focus{color:#555;cursor:default;border:0;border-bottom-color:rgba(0,0,0,0)}.scratchBlock span.round-tabs{width:70px;height:70px;line-height:70px;display:inline-block;border-radius:100px;background:#fff;z-index:2;position:absolute;left:0;text-align:center;font-size:25px}.scratchBlock span.round-tabs.one{color:#22c222;border:2px solid #22c222}.scratchBlock li.active span.round-tabs.one{background:#fff !important;border:2px solid #ddd;color:#22c222}.scratchBlock span.round-tabs.two{color:#febe29;border:2px solid #febe29}.scratchBlock li.active span.round-tabs.two{background:#fff !important;border:2px solid #ddd;color:#febe29}.scratchBlock span.round-tabs.three{color:#3e5e9a;border:2px solid #3e5e9a}.scratchBlock li.active span.round-tabs.three{background:#fff !important;border:2px solid #ddd;color:#3e5e9a}.scratchBlock span.round-tabs.four{color:#f1685e;border:2px solid #f1685e}.scratchBlock li.active span.round-tabs.four{background:#fff !important;border:2px solid #ddd;color:#f1685e}.scratchBlock span.round-tabs.five{color:#999;border:2px solid #999}.scratchBlock li.active span.round-tabs.five{background:#fff !important;border:2px solid #ddd;color:#999}.scratchBlock .nav-tabs>li.active>a span.round-tabs{background:#fafafa}.scratchBlock .nav-tabs>li{width:33%}.scratchBlock li:after{content:" ";position:absolute;left:50%;opacity:0;margin:0 auto;bottom:0px;border:5px solid rgba(0,0,0,0);border-bottom-color:#ddd;transition:.1s ease-in-out}.scratchBlock li.active:after{content:" ";position:absolute;left:47%;opacity:1;margin:0 auto;bottom:0px;border:10px solid rgba(0,0,0,0);border-bottom-color:#ddd}.scratchBlock .nav-tabs>li a{width:70px;height:70px;margin:20px auto;border-radius:100%;padding:0}.scratchBlock .nav-tabs>li a:hover{background:rgba(0,0,0,0)}.scratchBlock .tab-pane{position:relative;padding-bottom:10px}.scratchBlock .tab-content .head{margin-top:15px;font-family:"Roboto Condensed",sans-serif;font-size:25px;text-transform:uppercase;padding-bottom:0px}.scratchBlock .btn-outline-rounded{padding:10px 40px;margin:20px 5px;border:2px solid rgba(0,0,0,0);border-radius:25px}.add-new-visit-block{width:100%;display:table-row}.add-new-visit-block .btn-outline-rounded{padding:10px 40px;margin:20px 5px;border:2px solid rgba(0,0,0,0);border-radius:25px}.scratchBlock .btn.green{background-color:#22c222;color:#fff}#scratcharea_welcome label>span,.manage-visit-item>span{overflow:hidden;padding-left:5px;text-overflow:ellipsis;padding-right:5px}#scratcharea_welcome label>span.glyphicon{padding-top:5px}.scratchBlock .scratchBlock .visitEditBlock{display:none}.scratchBlock .scratchBlock .visit:hover .visitEditBlock{display:block}.scratchBlock .visitEditBlock a:hover{color:#fff}.manage-visit-item a:hover{color:#fff}.scratchBlock .visitEditBlock a,.manage-visit-item a{margin-left:5px;margin-right:5px;color:#767676}.manage-visit-item{text-align:center !important}#scratcharea_welcome .manage-visit-item .item-ico{padding-top:0px}.manage-visit-item .item-ico{display:block;left:5px;top:10px;position:absolute}.manage-visit-item .item-title{padding-left:20px !important;width:80%;display:block;padding-right:0px !important}.manage-visit-item .item-edit-block{display:block;position:absolute;top:5px;right:5px}#scratcharea_welcome .addNewVisitBlock,#chooseCountryModal .addNewVisitBlock{text-align:center}#scratcharea_welcome .addNewVisitBlock>label{width:230px}#logInModal{z-index:99999999}#chooseCountryModal{z-index:99999999}#chooseCountryModal .addNewVisitBlock>label .glyphicon{padding-right:10px}#chooseCountryModal .addNewVisitBlock>label{width:100%;padding:10px;margin-top:10px;font-size:18px}.scratchBlock .visitSection{margin-top:10px;margin-bottom:20px}.scratchBlock .visitSection .visitSectionTitle.active .title{color:#009500;text-shadow:1px 1px 1px #ddd}.scratchBlock .visitSection .visitSectionTitle{border-bottom:1px solid #ddd;padding-bottom:10px;padding-top:10px;display:block;cursor:pointer;border-right:1px solid #ddd}.scratchBlock .visitSection .visitSectionTitle .title{font-size:19px;padding-left:10px;line-height:38px}.scratchBlock .visitSectionsBlock .moneyAmount{width:83px}.scratchBlock .visitSectionsBlock .transportType{display:block;height:58px}.scratchBlock .visitSectionsBlock .transportType a{border-right:1px solid #ddd}.scratchBlock .routeDetails{border:1px solid #ededed;padding-top:10px;margin-bottom:10px}.scratchBlock .routeButtonBlock{border:none}.scratchBlock .visitSectionsBlock a.active{background:#f2f2f2}.scratchBlock .visitSectionsBlock .btn-group{display:block}.scratchBlock .visitSectionsBlock .removeDestination{background:red;color:#fff;cursor:pointer}.scratchBlock.form-group .glyphicon{padding:0px}.static-page .post .content p{line-height:25px}.static-page .post{background:#fff;padding:26px;margin-top:25px;margin-bottom:25px;border:solid 1px #ddd}.static-page .post h1{border-bottom:1px solid #ddd}.static-page{-webkit-overflow-scrolling:touch;overflow:auto;background:#f1f1f1;color:#000}.static-page .static-page-container{margin-top:50px;margin-bottom:60px}.static-page .logo,.static-page a{color:#000;text-shadow:none}.static-page .static-menu a{font-size:16px;margin-top:8px}.static-page .static-menu a:hover{text-decoration:underline}.static-page .mobileReady .logo{color:#fff;background:#000}.static-page .navbar-inverse{background-color:#fff;border-color:#ddd}.static-page p{margin:0px}.static-page .static-page-footer>div{line-height:30px;height:30px;font-size:12px}.static-page .static-page-footer .project-name{padding-left:5px;padding-right:5px}.static-page .static-page-footer{background:#fff;display:block;height:60px;border-top:1px solid #ddd;text-align:center;position:fixed;bottom:0px;width:100%}.visit_ico_airplane,.visit_ico_apple,.visit_ico_armchair,.visit_ico_balloons,.visit_ico_bed,.visit_ico_binoculars,.visit_ico_birthday-cake,.visit_ico_books,.visit_ico_bus,.visit_ico_calendar-1,.visit_ico_calendar,.visit_ico_campfire,.visit_ico_camping,.visit_ico_car,.visit_ico_church,.visit_ico_cityscape,.visit_ico_cocktail-1,.visit_ico_cocktail,.visit_ico_coins,.visit_ico_college-graduation,.visit_ico_conference,.visit_ico_confused,.visit_ico_crab,.visit_ico_cup,.visit_ico_eco-volunteer,.visit_ico_emoji,.visit_ico_eraser,.visit_ico_familiar-insurance-symbol,.visit_ico_favorite,.visit_ico_flag,.visit_ico_football,.visit_ico_glasses-brindis-with-a-heart,.visit_ico_goal,.visit_ico_gramophone,.visit_ico_groceries,.visit_ico_guest-star,.visit_ico_hamburger,.visit_ico_happy,.visit_ico_hiking-1,.visit_ico_hiking,.visit_ico_id-card-1,.visit_ico_id-card,.visit_ico_lifebuoy,.visit_ico_like,.visit_ico_massage-spa-body-treatment,.visit_ico_molecule,.visit_ico_mosque-1,.visit_ico_mosque,.visit_ico_mountains,.visit_ico_newlyweds,.visit_ico_notes,.visit_ico_olympic-games,.visit_ico_parasailing,.visit_ico_picture,.visit_ico_pills,.visit_ico_planet-earth,.visit_ico_podium,.visit_ico_presentation,.visit_ico_price-tag-1,.visit_ico_price-tag,.visit_ico_research,.visit_ico_rocket,.visit_ico_sceptic,.visit_ico_school,.visit_ico_sea,.visit_ico_seo-training,.visit_ico_ship,.visit_ico_shower,.visit_ico_ski,.visit_ico_skiing-stickman,.visit_ico_speech,.visit_ico_street,.visit_ico_sunset-1,.visit_ico_sunset,.visit_ico_surgeon,.visit_ico_swimming-figure,.visit_ico_team,.visit_ico_three-sperms,.visit_ico_timer,.visit_ico_toy,.visit_ico_travel,.visit_ico_ufo,.visit_ico_walking-to-school,.visit_ico_working{display:inline-block;background:url(/public/deploy/8df15d619cf464a4f0fb.png) no-repeat;overflow:hidden;text-indent:-9999px;text-align:left}.visit_ico_airplane{background-position:0px 0px;width:32px;height:32px}.visit_ico_apple{background-position:-32px 0px;width:32px;height:32px}.visit_ico_armchair{background-position:-64px 0px;width:32px;height:32px}.visit_ico_balloons{background-position:-96px 0px;width:32px;height:32px}.visit_ico_bed{background-position:-128px 0px;width:32px;height:32px}.visit_ico_binoculars{background-position:-160px 0px;width:32px;height:32px}.visit_ico_birthday-cake{background-position:-192px 0px;width:32px;height:32px}.visit_ico_books{background-position:-224px 0px;width:32px;height:32px}.visit_ico_bus{background-position:-256px 0px;width:32px;height:32px}.visit_ico_calendar-1{background-position:0px -32px;width:32px;height:32px}.visit_ico_calendar{background-position:-32px -32px;width:32px;height:32px}.visit_ico_campfire{background-position:-64px -32px;width:32px;height:32px}.visit_ico_camping{background-position:-96px -32px;width:32px;height:32px}.visit_ico_car{background-position:-128px -32px;width:32px;height:32px}.visit_ico_church{background-position:-160px -32px;width:32px;height:32px}.visit_ico_cityscape{background-position:-192px -32px;width:32px;height:32px}.visit_ico_cocktail-1{background-position:-224px -32px;width:32px;height:32px}.visit_ico_cocktail{background-position:-256px -32px;width:32px;height:32px}.visit_ico_coins{background-position:0px -64px;width:32px;height:32px}.visit_ico_college-graduation{background-position:-32px -64px;width:32px;height:32px}.visit_ico_conference{background-position:-64px -64px;width:32px;height:32px}.visit_ico_confused{background-position:-96px -64px;width:32px;height:32px}.visit_ico_crab{background-position:-128px -64px;width:32px;height:32px}.visit_ico_cup{background-position:-160px -64px;width:32px;height:32px}.visit_ico_eco-volunteer{background-position:-192px -64px;width:32px;height:32px}.visit_ico_emoji{background-position:-224px -64px;width:32px;height:32px}.visit_ico_eraser{background-position:-256px -64px;width:32px;height:32px}.visit_ico_familiar-insurance-symbol{background-position:0px -96px;width:32px;height:32px}.visit_ico_favorite{background-position:-32px -96px;width:32px;height:32px}.visit_ico_flag{background-position:-64px -96px;width:32px;height:32px}.visit_ico_football{background-position:-96px -96px;width:32px;height:32px}.visit_ico_glasses-brindis-with-a-heart{background-position:-128px -96px;width:32px;height:32px}.visit_ico_goal{background-position:-160px -96px;width:32px;height:32px}.visit_ico_gramophone{background-position:-192px -96px;width:32px;height:32px}.visit_ico_groceries{background-position:-224px -96px;width:32px;height:32px}.visit_ico_guest-star{background-position:-256px -96px;width:32px;height:32px}.visit_ico_hamburger{background-position:0px -128px;width:32px;height:32px}.visit_ico_happy{background-position:-32px -128px;width:32px;height:32px}.visit_ico_hiking-1{background-position:-64px -128px;width:32px;height:32px}.visit_ico_hiking{background-position:-96px -128px;width:32px;height:32px}.visit_ico_id-card-1{background-position:-128px -128px;width:32px;height:32px}.visit_ico_id-card{background-position:-160px -128px;width:32px;height:32px}.visit_ico_lifebuoy{background-position:-192px -128px;width:32px;height:32px}.visit_ico_like{background-position:-224px -128px;width:32px;height:32px}.visit_ico_massage-spa-body-treatment{background-position:-256px -128px;width:32px;height:32px}.visit_ico_molecule{background-position:0px -160px;width:32px;height:32px}.visit_ico_mosque-1{background-position:-32px -160px;width:32px;height:32px}.visit_ico_mosque{background-position:-64px -160px;width:32px;height:32px}.visit_ico_mountains{background-position:-96px -160px;width:32px;height:32px}.visit_ico_newlyweds{background-position:-128px -160px;width:32px;height:32px}.visit_ico_notes{background-position:-160px -160px;width:32px;height:32px}.visit_ico_olympic-games{background-position:-192px -160px;width:32px;height:32px}.visit_ico_parasailing{background-position:-224px -160px;width:32px;height:32px}.visit_ico_picture{background-position:-256px -160px;width:32px;height:32px}.visit_ico_pills{background-position:0px -192px;width:32px;height:32px}.visit_ico_planet-earth{background-position:-32px -192px;width:32px;height:32px}.visit_ico_podium{background-position:-64px -192px;width:32px;height:32px}.visit_ico_presentation{background-position:-96px -192px;width:32px;height:32px}.visit_ico_price-tag-1{background-position:-128px -192px;width:32px;height:32px}.visit_ico_price-tag{background-position:-160px -192px;width:32px;height:32px}.visit_ico_research{background-position:-192px -192px;width:32px;height:32px}.visit_ico_rocket{background-position:-224px -192px;width:32px;height:32px}.visit_ico_sceptic{background-position:-256px -192px;width:32px;height:32px}.visit_ico_school{background-position:0px -224px;width:32px;height:32px}.visit_ico_sea{background-position:-32px -224px;width:32px;height:32px}.visit_ico_seo-training{background-position:-64px -224px;width:32px;height:32px}.visit_ico_ship{background-position:-96px -224px;width:32px;height:32px}.visit_ico_shower{background-position:-128px -224px;width:32px;height:32px}.visit_ico_ski{background-position:-160px -224px;width:32px;height:32px}.visit_ico_skiing-stickman{background-position:-192px -224px;width:32px;height:32px}.visit_ico_speech{background-position:-224px -224px;width:32px;height:32px}.visit_ico_street{background-position:-256px -224px;width:32px;height:32px}.visit_ico_sunset-1{background-position:0px -256px;width:32px;height:32px}.visit_ico_sunset{background-position:-32px -256px;width:32px;height:32px}.visit_ico_surgeon{background-position:-64px -256px;width:32px;height:32px}.visit_ico_swimming-figure{background-position:-96px -256px;width:32px;height:32px}.visit_ico_team{background-position:-128px -256px;width:32px;height:32px}.visit_ico_three-sperms{background-position:-160px -256px;width:32px;height:32px}.visit_ico_timer{background-position:-192px -256px;width:32px;height:32px}.visit_ico_toy{background-position:-224px -256px;width:32px;height:32px}.visit_ico_travel{background-position:-256px -256px;width:32px;height:32px}.visit_ico_ufo{background-position:0px -288px;width:32px;height:32px}.visit_ico_walking-to-school{background-position:-32px -288px;width:32px;height:32px}.visit_ico_working{background-position:-64px -288px;width:32px;height:32px}.visitIco{width:32px;height:32px;display:block;margin-left:5px;margin-top:3px;float:left}.scratchBlock .visitSection .visitSectionBody{margin-bottom:20px}.scratchBlock .visitSection .visitSectionsBlock{margin-bottom:15px;clear:both}.scratchBlock .visitSection .visitSectionsBlock.comment textarea{resize:none;height:268px}.scratchBlock .visitSection .visitDates .toDate{text-align:center}.scratchBlock .visitSection .visitDates input{margin-bottom:5px;margin-top:5px}.scratchBlock .visitSection .visitSectionBody .ratingBlock{height:32px}.scratchBlock .visitSection .visitSectionBody .ratingBlock .visitIco{position:absolute;top:0px;left:0px}.scratchBlock .visitSection .visitSectionBody .ratingBlock .notChecked{opacity:.4}.scratchBlock .visitSection .visitSectionBody .ratingBlock .halfPoint{width:16px}.scratchBlock .addNewVisitBlock{text-align:center}#scratcharea_welcome label,.manage-visit-item{display:block;border:none;height:40px;line-height:32px;text-align:left;font-size:18px;padding-left:20px;margin:10px auto}#scratcharea_welcome label:hover a,.manage-visit-item:hover a{color:#fff}#scratcharea_welcome label:hover,.manage-visit-item:hover,#chooseCountryModal .addNewVisitBlock>label:hover{background:#22c222;color:#fff;font-size:20px}.scratchBlock .scratchBlock{border-bottom:1px solid #ddd}@media(max-width: 991px){.scratchBlock li.active:after{left:45%}.travel-star-list-item:nth-child(4n+1),.travel-star-list-item:nth-child(4n){background:#fff}.travel-star-list-item:nth-child(2n){background:#f4f4f4}}#toast-container{z-index:999999999999;top:55px}@media(max-width: 375px){.travel-star-list-item{padding-left:5px;padding-right:5px}.travel-star-list-item .number{width:25px;padding:5px}.travel-star-list-item .picture{width:60px;padding:5px}.travel-star-list-item .visits-data{padding-right:5px;padding-left:5px;width:125px}.travel-star-list-item .show-map-button{width:57px;padding:5px;float:right}}@media(max-width: 585px){.large-modal .scratchBlock .glyphicon{padding:0px}.large-modal .scratchBlock label .glyphicon{padding-right:10px}.scratchBlock span.round-tabs{font-size:16px;width:50px;height:50px;line-height:50px}.scratchBlock .tab-content .head{font-size:20px}.scratchBlock .nav-tabs>li a{width:50px;height:50px;line-height:50px}.scratchBlock li.active:after{content:" ";position:absolute;left:42%}.scratchBlock .btn-outline-rounded{padding:12px 20px}.add-new-visit-block .btn-outline-rounded{padding:10px 15px;margin:10px 5px}}
.map_type_embedded_map,.map_type_custom_map_with_top_slider{}.map_type_embedded_map h1,.map_type_embedded_map h2,.map_type_embedded_map h3,.map_type_embedded_map h4,.map_type_embedded_map h5,.map_type_embedded_map h6,.map_type_custom_map_with_top_slider h1,.map_type_custom_map_with_top_slider h2,.map_type_custom_map_with_top_slider h3,.map_type_custom_map_with_top_slider h4,.map_type_custom_map_with_top_slider h5,.map_type_custom_map_with_top_slider h6{font-weight:400}.map_type_embedded_map *,.map_type_embedded_map body,.map_type_embedded_map a,.map_type_custom_map_with_top_slider *,.map_type_custom_map_with_top_slider body,.map_type_custom_map_with_top_slider a{font-family:"Roboto Slab",serif}.map_type_embedded_map #app,.map_type_embedded_map .app-wrapper,.map_type_custom_map_with_top_slider #app,.map_type_custom_map_with_top_slider .app-wrapper{flex-direction:column;display:flex;flex-grow:10}.map_type_embedded_map a,.map_type_custom_map_with_top_slider a{text-decoration:none}.map_type_embedded_map .map-legend,.map_type_custom_map_with_top_slider .map-legend{display:flex;flex-direction:column}.map_type_embedded_map .map-legend .legend-item-class,.map_type_custom_map_with_top_slider .map-legend .legend-item-class{font:14px/16px Arial,Helvetica,sans-serif;padding-top:1px;padding-bottom:1px}.map_type_embedded_map .map-legend .legend-title-item,.map_type_custom_map_with_top_slider .map-legend .legend-title-item{padding-bottom:5px}.map_type_embedded_map .custom-map-info-list,.map_type_custom_map_with_top_slider .custom-map-info-list{list-style:none;margin-top:5px;padding-top:5px;border-top:1px solid #ccc}.map_type_embedded_map .custom-map-info-list .custom-map-row-value,.map_type_custom_map_with_top_slider .custom-map-info-list .custom-map-row-value{font-weight:900;color:#000}.map_type_embedded_map .rc-slider-tooltip-inner,.map_type_custom_map_with_top_slider .rc-slider-tooltip-inner{padding:6px 2px;min-width:30px;height:30px;font-size:18px;line-height:18px;text-align:center}.map_type_embedded_map #map,.map_type_custom_map_with_top_slider #map{height:auto;width:auto;flex-grow:1;flex:1}.map_type_custom_map_with_top_slider #drift-widget-container{z-index:999999 !important}.map_type_custom_map_with_top_slider iframe#drift-widget.drift-widget-welcome-online{top:180px !important;left:-13px !important}@media(hover: hover){.map_type_custom_map_with_top_slider iframe#drift-widget.drift-widget-welcome-online{top:173px !important;left:-2px !important}}
