@keyframes swing {
    20% {
        transform: rotate(15deg);
    }
    40% {
        transform: rotate(-10deg);
    }
    60% {
        transform: rotate(5deg);
    }
    80% {
        transform: rotate(-5deg);
    }
    100% {
        transform: rotate(0deg);
    }
}

@keyframes pulse {
    0% {
        opacity: 0;
        transform: none;
    }
    20% {
        transform: none;
    }
    60% {
        /*transform: scale3d(1.15, 1.00, 1.00);*/
        opacity: 1;
    }
    70% {
        opacity: 0.5;
    }
    80% {
        transform: scale3d(1.2, 1.0, 1.0);
        opacity: 0.2;
    }
    100% {
        opacity: 0;
    }
}

@keyframes notifier {
    0% {
        box-shadow: 0 0 7px -1px #000;
    }
    50% {
        box-shadow: 0 0 15px 0px #000;
    }
    100% {
        box-shadow: 0 0 7px -1px #000;
    }
}

@font-face {
    font-family: "PT Sans";
    src: url("/static/fonts/ptsans.ttf");
}

@font-face {
    font-family: "PT Sans";
    font-weight: bold;
    src: url("/static/fonts/ptsans_bold.ttf");
}

@font-face {
    font-family: "PT Sans";
    font-style: italic;
    src: url("/static/fonts/ptsans_italic.ttf");
}

@font-face {
    font-family: "PT Sans Narrow";
    src: url("/static/fonts/ptsansnarrow.ttf");
}

@font-face {
    font-family: "PT Sans Narrow";
    font-weight: bold;
    src: url("/static/fonts/ptsansnarrow_bold.ttf");
}

html {
    height: 100%;
    min-width: 360px;
    width: 100%;
}

body {
    padding: 0 !important;
    margin: 0 !important;
    height: 100%;
    font: 11pt/15pt "PT Sans", "Helvetica", sans-serif;
    display: flex;
    display: -ms-flexbox;
    /*overflow: hidden;*/
}

a, a:visited {
    color: #2989d8;
    transition: color 300ms;
}

a:hover, a:visited:hover {
    color: #1e5799;
}

h3 {
    margin: 0;
    color: #1e5799;
    font: bold 14pt/21pt "PT Sans Narrow";
    padding: 0.25em 0.25em 0.25em 0;
}

#left-panel {
    -ms-flex: 0 0 210px;
    flex: 0.000000001 0.000000001 210px; /* hack for using CSS3-transitions with flex */

    order: 0;
    -ms-flex-order: 0;

    height: 100%;
    background: linear-gradient(to bottom, hsla(207, 69%, 29%, 1) 0%, hsla(212, 67%, 20%, 1) 100%);
    color: #F8F8F2;
    z-index: 200;
    transition: flex .25s ease;
    position: relative;
}

#left-panel.closed {
    -ms-flex: 0 0 50px;
    flex: .000000001 0.000000001 50px;
    transition: flex .25s ease;
}

#left-panel-container {
    overflow-x: hidden;
    overflow-y: scroll;
    height: 100%;
}

::-webkit-scrollbar-button {
    width: 0;
    height: 0;
    display: none;
}

::-webkit-scrollbar {
    background-color: #efefef;
    border-radius: 15px;
    width: 10px;
    height: 10px;
}

::-webkit-scrollbar:hover {
    background-color: #e0e0e0;
}

::-webkit-scrollbar-thumb {
    background-color: #b0b0b0;
    border: 1px solid #efefef;
    border-radius: 5px;
}

::-webkit-scrollbar-thumb:hover {
    background-color: #999;
    border: 1px solid #ddd;
}

.animated {
    animation-duration: 300ms;
}

#logo {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#2989d8+0,1e5799+100 */
    background: #2989d8; /* Old browsers */
    background: -moz-linear-gradient(top, #2989d8 0%, #1e5799 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #2989d8 0%, #1e5799 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #2989d8 0%, #1e5799 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#2989d8', endColorstr='#1e5799', GradientType=0); /* IE6-9 */
    position: relative;
    padding: 5px 0 0 0;
    border-bottom: 1px solid hsla(212, 67%, 26%, 1);
    text-align: center;
}

#logo img {
    cursor: pointer;
    height: 40px;
    margin-left: -9px;
}

#logo a {
    color: white;
    text-decoration: none;
}

#logo button {
    margin-top: 15px;
    text-align: center;
}

#logo button i {
    margin-right: 5px;
}

#left-panel.closed #logo button span {
    display: none;
}

#left-panel.closed #logo button i {
    margin: 0;
    font-size: 22pt;
}

#left-panel.closed #logo button {
    margin-top: 50px;
}

#left-panel.closed #logo {
    height: 45px;
    text-align: center;
}

#left-panel.closed #logo img {
    display: none;
}

#left-panel.closed #logo-main-text,
#left-panel.closed #logo-additional-text {
    display: none;
}

#logo-icon {
    display: none;
}

#left-panel.closed #logo-icon {
    display: block;
}

#left-panel-toggle {
    cursor: pointer;
    font-size: 14pt;
    padding: 0.5em;
    position: absolute;
    top: 5px;
    right: 5px;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.73);
}

#left-panel.closed #left-panel-toggle {
    font-size: 16pt;
    line-height: 40px;
    padding: 0;
    left: 5px;
}

#content {
    margin-left: 200px;
    height: 100%;
    position: relative;
}

/*
       __   __
 |\/| /  \ |  \  /\  |
 |  | \__/ |__/ /~~\ |___

@modal
*/

#modal {
    position: absolute;
    top: 0;
    left: 200px;
    min-width: calc(100% - 200px);
    min-width: -moz-calc(100% - 200px);
    min-width: -webkit-calc(100% - 200px);
    height: 100%;
    z-index: 10000;
    opacity: 0;
    transition: opacity 250ms;
    background: rgba(0, 0, 0, 0.2);
}

#modal.shown {
    opacity: 1;
}

#left-panel.closed + #modal {
    left: 58px;  /* width of closed left panel */
    width: calc(100% - 58px);
    width: -moz-calc(100% - 58px);
    width: -webkit-calc(100% - 58px);
}

#modal.hide {
    z-index: -10000;
    display: none;
}

#modal-container {
    position: relative;
    margin: 1.5em auto 0 auto;
    box-shadow: 0 0 16px #444;
    max-width: 750px;
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#f7f7f7+0,ffffff+86,efefef+100 */
    background: rgb(247, 247, 247); /* Old browsers */
    background: -moz-linear-gradient(top, rgba(247, 247, 247, 1) 0%, rgba(255, 255, 255, 1) 86%, rgba(239, 239, 239, 1) 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, rgba(247, 247, 247, 1) 0%, rgba(255, 255, 255, 1) 86%, rgba(239, 239, 239, 1) 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, rgba(247, 247, 247, 1) 0%, rgba(255, 255, 255, 1) 86%, rgba(239, 239, 239, 1) 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f7f7f7', endColorstr='#efefef', GradientType=0); /* IE6-9 */
    max-height: 95%;
    overflow-x: hidden;
    overflow-y: auto;
    transition: 400ms;
}

#modal-container.full {
    height: 100%;
    margin: 0 auto;
    max-height: 100%;
    overflow-y: visible;
}

#modal-content {
    padding: 0.5em 1em 1em 1em;
}

.modal-logo {
    width: 200px;
}

#content.left-panel-closed {
    margin-left: 50px;
}

#modal.left-panel-closed {
    left: 50px;
    width: calc(100% - 50px);
}

#map {
    -ms-flex: 0 1 100%;
    flex: 0 1 100%;
    height: 100%;
    position: relative;

    order: 1;
    -ms-flex-order: 1;
    overflow: hidden;
}

#map > ymaps {
    width: 100% !important;
    height: 100% !important;
}

#map.shown-info {
    transition: 1s;
    margin-right: 600px;
}

#map-backwards {
    display: none; /* visible only in mobile version */
}

.map-balloon-header {
    font: 12pt/12pt "PT Sans Narrow", sans-serif;
    text-align: center;
    text-shadow: 1px 1px 3px rgba(0, 0, 0, 0.2);
    margin-top: 0;
    text-overflow: ellipsis;
}

ymaps > .fa {
    margin-left: -6px;
}

h2 .map-balloon-header {
    font-size: 16pt;
}

.map-balloon-content {
    text-align: center;
    font: 10pt/12pt "PT Sans", sans-serif;
}

.map-balloon-image {
    width: 120px;
}

#main-menu ul,
#additional-main-menu ul {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

#main-menu li > a {
    height: 40px;
    line-height: 40px;
    display: block;
    /*border-top: 1px solid rgba(49, 50, 44, 1);*/
    /*border-bottom: 1px solid rgba(29, 30, 24, 1);*/
    padding-left: 25px;
    cursor: pointer;
    text-decoration: none;
    color: #F8F8F2;
    text-shadow: 0 0 1px black;
    transition: background 150ms ease-out;
    position: relative;
    overflow: visible;
    word-break: keep-all;
    font-family: "PT Sans", sans-serif;
}

#main-menu li > a.logged,
#main-menu li > a.logged:hover {
    color: #333;
    font: 12pt/55px "PT Sans Narrow", sans-serif;
    position: relative;
    height: 55px;
    cursor: pointer;
    z-index: 2;
    overflow: hidden;
    text-shadow: none;

    background: #ffffff;
    background: -moz-linear-gradient(top, #ffffff 1%, #fefefe 75%, #fbfbfb 100%);
    background: -webkit-linear-gradient(top, #ffffff 1%, #fefefe 75%, #fbfbfb 100%);
    background: linear-gradient(to bottom, #ffffff 1%, #fefefe 75%, #fbfbfb 100%);
}

#main-menu li > a.logged img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 3px solid white;
    box-shadow: 0 0 3px rgba(0, 0, 0, 0.8);
    float: left;
    margin: 5px 7px 0 -8px;
}

#left-panel.closed #main-menu li > a.logged > img {
    margin-left: 5px;
}

#left-panel.closed #main-menu li > a.logged {
    height: 55px;
    color: rgba(0, 0, 0, 0);
    overflow: hidden;
}

.svg-icon {
    border: none;
    width: 20px;
    height: 20px;
    vertical-align: middle;
}

#main-menu .svg-icon,
#additional-main-menu-header .svg-icon {
    width: 30px;
    height: 30px;
    float: left;
    margin-right: 15px;
    margin-top: 5px;
}

.mobile-app-download {
    width: 100%;
    position: relative;
    text-decoration: none;
    border: none;
}

.mobile-app-download .mobile-app-download-logo {
    width: calc(100% - 20px);
    max-width: 425px;
    border: none;
    padding: 5px 10px;
}

#notification-alarm.notify .svg-icon {
    animation-duration: 1.5s;
    animation-fill-mode: both;
    animation-iteration-count: infinite;
    animation-name: swing;
    transform-origin: top center;
    z-index: 1;
}

#notification-alarm + .notification-alarm-waves {
    position: absolute;
    left: 25px;
    display: none;
    z-index: 0;
}

#left-panel.closed #notification-alarm + .notification-alarm-waves {
    left: 50%;
}

#left-panel.closed #notification-alarm + .notification-alarm-waves > .svg-icon {
    position: relative;
    left: -50%;
}

#notification-alarm.notify + .notification-alarm-waves {
    display: inline-block;
    z-index: 0;
}

#notification-alarm.notify + .notification-alarm-waves .svg-icon {
    animation-duration: 1.5s;
    animation-fill-mode: both;
    animation-iteration-count: infinite;
    animation-name: pulse;
    transform-origin: top center;
    z-index: 0;
}

#left-panel.closed #main-menu .svg-icon {
    float: none;
    margin: 0;
    width: 30px;
    height: 50px;
    z-index: 1;
}

#left-panel.closed #main-menu li > a {
    padding: 0;
    text-align: center;
    height: 50px;
}

#left-panel.closed #main-menu li > a > .fa {
    display: block;
    text-align: center;
    height: 50px;
    line-height: 50px;
    width: 100%;
}

#left-panel.closed #main-menu li > a > .main-menu-text {
    display: none;
}

#main-menu li > a > .counter {
    position: absolute;
    top: calc(50% - 10px);
    right: 10px;
    background: #2989d8;
    border-radius: 50%;
    text-shadow: 0 -1px 1px black;
    min-width: 20px;
    font-size: 9pt;
    text-align: center;
    height: 20px;
    line-height: 20px;
    z-index: 2;
}

#left-panel.closed #main-menu li > a > .counter {
    right: 10px;
    top: 25px;
}

#main-menu li > a i {
    width: 25px;
    display: inline-block;
    color: #dedede;
    font-size: 14pt;
    text-align: center;
    margin-right: 15px;
}

#main-menu li a:hover {
    background: hsla(207, 69%, 35%, 1);
}

#additional-main-menu {
    overflow: hidden;
}

#left-panel.closed #additional-main-menu {
    display: none;
}

#additional-main-menu-header a {
    color: rgba(0, 0, 0, 0.73);
    font: 12pt/16pt "PT Sans Narrow", sans-serif;
    border-bottom: 1px solid rgba(255, 255, 255, 0.73);
    padding-left: 25px;
    height: 40px;
    line-height: 40px;
    background: #ffffff;
    background: -moz-linear-gradient(top, #ffffff 1%, #ffffff 48%, #ededed 100%);
    background: -webkit-linear-gradient(top, #ffffff 1%, #ffffff 48%, #ededed 100%);
    background: linear-gradient(to bottom, #ffffff 1%, #ffffff 48%, #ededed 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ededed', GradientType=0);
    text-decoration: none;
    display: block;
}

#additional-main-menu-header i {
    font-size: 14pt;
    margin-right: 15px;
}

#additional-main-menu li > a {
    color: rgba(255, 255, 255, 0.73);
    text-decoration: none;
    font: 9pt/15pt "PT Sans", sans-serif;
    transition: background 0.25s ease-out;
    width: 100%;
    display: block;
    padding: 0.5em 0 0.5em 2em;
}

#additional-main-menu li > a:hover {
    background: hsla(207, 69%, 35%, 1);
}

.clusterer {
    border-radius: 50px;
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.8);
    width: 36px;
    height: 36px;
    position: relative;
    z-index: 700;
    transition: border 500ms ease-out;
    border: 5px solid #237bca;
    background: #ffffff;
    background: -moz-linear-gradient(top, #ffffff 1%, #ffffff 48%, #ededed 100%);
    background: -webkit-linear-gradient(top, #ffffff 1%, #ffffff 48%, #ededed 100%);
    background: linear-gradient(to bottom, #ffffff 1%, #ffffff 48%, #ededed 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ededed', GradientType=0);
    text-align: center;
    font: 16pt/36px "PT Sans Narrow", sans-serif;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.4);
    color: #237bca;
    margin: -15px 0 0 0;
}

#info {
    position: relative;
    flex: 1;
    -ms-flex: 1;

    order: 2;
    -ms-flex-order: 2;

    height: 100%;
    /*box-shadow: -2px 0 15px rgba(0, 0, 0, 0.7);*/
    opacity: 0;
    transition: opacity 0.25s ease;
    background: #fff;
    z-index: 1000;
}

#info ::-webkit-scrollbar-thumb,
.map-notifications ::-webkit-scrollbar-thumb {
    background: #2070b1;
    background: -moz-linear-gradient(top, #2070b1 0%, #1e5799 100%);
    background: -webkit-linear-gradient(top, #2070b1 0%, #1e5799 100%);
    background: linear-gradient(to bottom, #2070b1 0%, #1e5799 100%);
}

#info ::-webkit-scrollbar-thumb:hover,
.map-notifications ::-webkit-scrollbar-thumb:hover {
    background: #1d6399;
    background: -moz-linear-gradient(top, #1d6399 0%, #194980 100%);
    background: -webkit-linear-gradient(top, #1d6399 0%, #194980 100%);
    background: linear-gradient(to bottom, #1d6399 0%, #194980 100%);
}

#info.shown {
    min-width: 360px;
    flex: 1;
    -ms-flex: 1;
    opacity: 1;
}

#info .nav {
    height: 35px;
    background: linear-gradient(to bottom, #ffffff 1%, #e0e0e0 100%);
    margin-left: 15px;
    display: none;
}

#info.shown .nav {
    display: block;
}

#info .nav-button {
    display: inline-block;
    line-height: 35px;
    padding: 0 1em;
    transition: 300ms;
    cursor: pointer;
    color: #1e5799;
}

#info .nav-button:hover {
    color: #1c94c4;
}

#info .nav-button.inactive {
    color: #999;
}

#info .nav-minimize,
#info .nav-top,
#info .nav-additional-action {
    float: right;
}

.sub-nav {
    border-bottom: 1px solid #ddd;
    padding: 1em;
}

.breadcrumbs {
    padding: 0.25em 0.5em;
}

.breadcrumb {
    display: inline-block;
    padding: 2px 0;
}

.breadcrumb a {
    font: bold 9pt/1.5 "PT Sans", sans-serif;
    color: white;
    cursor: default;
}

.breadcrumb a[href] {
    cursor: pointer;
}

.breadcrumb a[href]:hover {
    color: white;
}

.breadcrumbs > .breadcrumb:after {
    content: ">";
    margin: 0 5px;
    font: bold 10pt "PT Sans", sans-serif;
    color: white;
}

.breadcrumbs > .breadcrumb:last-child:after {
    content: "";
}

.page-header,
#modal h1,
#info h1 {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#2989d8+0,1e5799+100 */
    background: #2989d8; /* Old browsers */
    background: -moz-linear-gradient(top, #2989d8 0%, #1e5799 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #2989d8 0%, #1e5799 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #2989d8 0%, #1e5799 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#2989d8', endColorstr='#1e5799', GradientType=0); /* IE6-9 */
}

#info .page-header h1 {
    /*
    Переопределяющий стиль для обратной совместимости со всеми страницами, которые еще не используют page-header
    */
    background: none;
}

#info h1, #modal h1 {
    margin: 0;
    padding: 0.25em 0.5em;
    word-wrap: break-word;

    font: 25pt/25pt "PT Sans Narrow", sans-serif;
    font-weight: bolder;
    text-align: center;
    text-shadow: 0 1px 5px #444;

    color: #ffffff;
}

#info h1 i {
    margin-right: 15px;
}

.toggleable-container {
    position: relative;
}

.toggleable-container h3 {
    cursor: pointer;
}

#modal .error,
#modal h2,
#info h2 {
    margin: 0;
    padding: 0.5em;

    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#272822+0,0f0808+100 */
    background: hsla(212, 67%, 35%, 1);
    background: -moz-linear-gradient(top, hsla(207, 69%, 34%, 1) 0%, hsla(212, 67%, 35%, 1) 100%);
    background: -webkit-linear-gradient(top, hsla(207, 69%, 34%, 1) 0%, hsla(212, 67%, 35%, 1) 100%);
    background: linear-gradient(to bottom, hsla(207, 69%, 34%, 1) 0%, hsla(212, 67%, 35%, 1) 100%);

    color: white;

    font: 12pt/11pt "PT Sans Narrow", sans-serif;
    clear: both;
    cursor: pointer;
    border-top: 1px solid hsla(212, 67%, 32%, 1);

    box-shadow: 0 1px 3px -2px #000;
    position: relative;
    transition: 300ms;
}

#info-resizer {
    cursor: e-resize;
    position: absolute;
    top: 0;
    left: 0px;
    height: 100%;
    width: 13px;
    display: none;

    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#ffffff+0,f2f2f2+100 */
    background: #ffffff; /* Old browsers */
    background: -moz-linear-gradient(top, #ffffff 0%, #f2f2f2 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #ffffff 0%, #f2f2f2 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #ffffff 0%, #f2f2f2 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    border-left: 1px solid #ddd;
    border-right: 1px solid #ddd;
}

#info-resizer:hover {
    background: #ffffff; /* Old browsers */
    background: -moz-linear-gradient(top, #f2f2f2 0%, #ebebeb 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #f2f2f2 0%, #ebebeb 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #f2f2f2 0%, #ebebeb 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
}

#info.shown #info-resizer {
    display: block;
}

#info-container {
    position: relative;
    margin-left: 15px;
    height: calc(100% - 35px); /* minus nav height */

    background: rgba(251, 251, 251, 0.85);
    overflow-y: scroll;
}

#info #info-container {
    display: none;
}

#info.shown #info-container {
    display: block;
}

#info-content.shown {
    opacity: 1;
}

#info-content {
    opacity: 0;
    transition: opacity 0.4s;
}

/***********************
 * Common
 */

.content-block,
.list.ui-sortable .item {
    background: #ffffff;
    background: -moz-linear-gradient(top, #ffffff 1%, #fefefe 75%, #fbfbfb 100%);
    background: -webkit-linear-gradient(top, #ffffff 1%, #fefefe 75%, #fbfbfb 100%);
    background: linear-gradient(to bottom, #ffffff 1%, #fefefe 75%, #fbfbfb 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ededed', GradientType=0);
    transition: opacity 0.35s ease;
}

.v-space {
    padding-top: 1em !important;
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 1em !important;
}

.h-space {
    padding-top: 0;
    padding-right: 1em !important;
    padding-left: 1em !important;
    padding-bottom: 0;
}

.outer-space {
    margin-top: 1em !important;
    margin-right: 1em !important;
    margin-left: 1em !important;
    margin-bottom: 1em !important;
}

.v-outer-space {
    margin-top: 1em !important;
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 1em !important;
}

.h-outer-space {
    margin-top: 0;
    margin-right: 1em !important;
    margin-left: 1em !important;
    margin-bottom: 0;
}

.v-half-space {
    padding-top: 0.5em !important;
    padding-right: 0;
    padding-left: 0;
    padding-bottom: 0.5em !important;
}

.h-half-space {
    padding-top: 0;
    padding-right: 0.5em !important;
    padding-left: 0.5em !important;
    padding-bottom: 0;
}

.half-outer-space {
    margin-top: 0.5em !important;
    margin-right: 0.5em !important;
    margin-left: 0.5em !important;
    margin-bottom: 0.5em !important;
}

.v-half-outer-space {
    margin-top: 0.5em !important;
    margin-right: 0;
    margin-left: 0;
    margin-bottom: 0.5em !important;
}

.h-half-outer-space {
    margin-top: 0;
    margin-right: 0.5em !important;
    margin-left: 0.5em !important;
    margin-bottom: 0;
}

.top-space {
    padding-top: 1em !important;
}

.bottom-space {
    padding-bottom: 1em !important;
}

.left-space {
    padding-left: 1em !important;
}

.right-space {
    padding-right: 1em !important;
}

.top-outer-space {
    margin-top: 1em !important;
}

.bottom-outer-space {
    margin-bottom: 1em !important;
}

.left-outer-space {
    margin-left: 1em !important;
}

.right-outer-space {
    margin-right: 1em !important;
}

.text-space {
    margin: 0 5px;
}

.text-space:last-child {
    margin: 0 0 0 5px;
}

.left {
    float: left;
}

.right {
    float: right;
}

.text-left {
    text-align: left;
}

.text-center {
    text-align: center;
}

.text-right {
    text-align: right;
}

.justify {
    text-align: justify;
}

.flex-center {
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
}

.clickable {
    cursor: pointer;
}

.minimize {
    cursor: pointer;
    position: absolute;
    right: 10px;
}

.transparent {
    opacity: 0 !important;
    transition: opacity 0.25s ease;
}

.collapse {
    height: 0;
    max-height: 0;
    overflow: hidden;
    padding: 0 !important;
}

.clear {
    overflow: auto;
}

.clear:after {
    clear: both;
}

.hidden {
    display: none;
}

.full-width {
    width: 100% !important;
}


/*
            __        ___  __
 |\/|  /\  |__) |__/ |__  |__)
 |  | /~~\ |  \ |  \ |___ |  \

@marker
*/



.tags-grid {
    display: -ms-flexbox;
    display: flex;

    -ms-flex-wrap: wrap;
    flex-wrap: wrap;

    padding: 1em;
}

.tags-grid .tags-grid-item {
    display: block;
    -ms-flex: 1 1 50%;
    flex: 1 1 50%;
    padding: 0.5em 0;
}

.tags-grid .tags-grid-item .tag {
    font-size: 11pt;
    font-weight: bold;
    word-wrap: break-word;
    overflow: hidden;
    margin: 0;
}

.tags-grid .tag .tag-name {
    text-decoration: none;
}

.tags-grid .tags-count {
    display: block;
    color: #888;
    font-size: 9pt;
    line-height: 9pt;
}

.tag {
    color: #0C82d1;
    cursor: pointer;
    font-size: 9pt;
    font-weight: bold;

    display: inline-block;
    text-decoration: none;

    line-height: 14pt;
    word-wrap: break-word;
    max-width: 100%;
    margin: 0.25em;
    border-radius: 10px;
    padding: 1px;

    transition: background 0.25s;
}

.tag.selected,
.tag.selected:visited {
    color: white;
    background: #0C82d1;
    padding: 2px 10px;
    box-shadow: 1px 1px 3px -2px #333;
}

.tag:hover {
    color: #1e5799;
}

.tag.selected:hover,
.tag.selected:visited:hover {
    color: white;
    background: #1e5799;
}

.tag:before {
    content: "#";
}

.tag.selected:after {
    content: "x";
    margin-left: 8px;
    font-size: 10pt;
    text-shadow: 0 1px 1px black;
}

.tag:visited {
    color: #0C82d1;
}

.tag:visited:hover {
    color: #1e5799;
}

#modal-close,
.hide-info {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 14pt;
    opacity: 0;
    color: #fff;
    text-shadow: 1px 1px 0 #444;
    cursor: pointer;
    visibility: hidden;
    transition: color 500ms;
}

.modal-fixed-menu {
    position: fixed;
    margin-left: 15px;
}

#modal-close:hover,
.hide-info:hover {
    color: #ccc;
    text-shadow: 1px 1px 0 #444;
}

#modal #modal-close,
#info.shown .hide-info {
    transition: opacity 1s, color 250ms;
    opacity: 1;
    visibility: visible;
    z-index: 1;
}

.span2,
.span3,
.span4 {
    display: block;
}

.column {
    display: inline-block;
    border-right: 1px solid #ddd;
    margin: 0 !important;
    padding: 0 !important;
}

.column.last {
    border-right: none;
}

.span2 .column {
    width: 45%;
}

.span3 .column {
    width: 28.5%;
}

.span4 .column {
    width: 23.5%;
}

#author {
    color: #1e5799;
    margin-bottom: 0.5em;
}

#author .svg-icon {
    width: 30px;
    height: 30px;
}

.minimizable {
    max-height: 0;
    transition: max-height 3.5s cubic-bezier(0, 1.15, 0, 1.09);
    overflow: hidden;
    border-bottom: 1px solid #eee;
}

.minimizable.shown {
    max-height: 10000px;
    transition: max-height 3.5s cubic-bezier(1, 0.4, 0.8, 0.8);
}

.gallery-window {
    width: 100%;
    height: 100%;
}

.quests .quest .quest-actions .action,
.sub-action {
    cursor: pointer;
    color: #2989d8;
    margin: 0.25em 1em 0.25em 0.25em;
    font: 10pt/14pt "PT Sans", sans-serif;
    display: inline-block;
}

.quests .quest .quest-actions .action img,
.sub-action .svg-icon,
.sub-action i {
    margin-right: 5px;
}

.quests .quest .quest-actions .action .text,
.sub-action-name {
    border-bottom: 1px dotted #2989d8;
}

.quests .quest .quest-actions .action .text:hover,
.sub-action-name:hover {
    border-bottom: 1px solid #2989d8;
}

.highlight {
    background: rgba(249, 241, 3, 0.15);
}

/*
 ___  __   __
|__  /  \ |__)  |\/|
|    \__/ |  \  |  |


@form, @inputs, @controls
*/
input[type='text'],
input[type='date'],
input[type='file'],
input[type='number'],
input[type='search'],
input[type='email'],
input[type='password'],
select,
textarea,
.tokenize-sample {
    padding: 5px;
    border: 1px solid #CCC;
    border-radius: 3px;
    font: 11pt/14pt "PT Sans", sans-serif;
    min-height: 30px;
    box-sizing: border-box;
}

input[type='checkbox'] {
    margin: auto 10px auto 15px;
}

option:disabled {
    background: #eeeeee;
    color: #999;
}

label + textarea {
    display: block;
    margin-top: 5px;
}

input[type='submit'], button, input[type='reset'], input[type='button'] {
    font: 11.1pt/9pt "PT Sans Narrow", sans-serif;
    border-radius: 3px;
    border: none;
    box-shadow: 1px 1px 3px -1px #444;
    padding: 10px 12px;
    cursor: pointer;
    min-height: 30px;
    vertical-align: middle;

    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#f7f7f7+0,e5e5e5+100 */
    background: #e8e8e8; /* Old browsers */
    background: -moz-linear-gradient(top, #e8e8e8 0%, #d5d5d5 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #e8e8e8 0%, #d5d5d5 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #e8e8e8 0%, #d5d5d5 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#e8e8e8', endColorstr='#d5d5d5', GradientType=0); /* IE6-9 */

    color: #111;
    text-shadow: 0px 1px #DADADA;
    transition: 300ms;
}

input[type='submit']:not([disabled]):hover,
button:not([disabled]):hover,
input[type='button']:not([disabled]):hover,
input[type='reset']:not([disabled]):hover {
    background: #f2f2f2; /* Old browsers */
    background: -moz-linear-gradient(top, #f2f2f2 0%, #e0e0e0 100%); /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #f2f2f2 0%, #e0e0e0 100%); /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #f2f2f2 0%, #e0e0e0 100%); /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#f7f7f7', endColorstr='#e5e5e5', GradientType=0); /* IE6-9 */
}

.button-action {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#2989d8+0,0073d1+100 */
    background: #2989d8 !important; /* Old browsers */
    background: -moz-linear-gradient(top, #2989d8 0%, #0073d1 100%) !important; /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #2989d8 0%, #0073d1 100%) !important; /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #2989d8 0%, #0073d1 100%) !important; /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#2989d8', endColorstr='#0073d1', GradientType=0) !important; /* IE6-9 */

    color: #eee !important;
    text-shadow: 0px 1px #3D3D3D !important;
}

.button-action:not([disabled]):hover {
    background: #2e99f2 !important;
    background: -moz-linear-gradient(top, #2e99f2 0%, #0084ea 100%) !important;
    background: -webkit-linear-gradient(top, #2e99f2 0%, #0084ea 100%) !important;
    background: linear-gradient(to bottom, #2e99f2 0%, #0084ea 100%) !important;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#2e99f2', endColorstr='#0084ea', GradientType=0) !important;
}

.button-danger {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#c90000+0,a50303+100 */
    background: #c90000 !important; /* Old browsers */
    background: -moz-linear-gradient(top, #c90000 0%, #a50303 100%) !important; /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #c90000 0%, #a50303 100%) !important; /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #c90000 0%, #a50303 100%) !important; /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#c90000', endColorstr='#a50303', GradientType=0) !important; /* IE6-9 */

    color: #eee !important;
    text-shadow: 0px 1px #3D3D3D !important;
}

.button-danger:not([disabled]):hover {
    /* Permalink - use to edit and share this gradient: http://colorzilla.com/gradient-editor/#c90000+0,a50303+100 */
    background: #E00E0E !important; /* Old browsers */
    background: -moz-linear-gradient(top, #E00E0E 0%, #B81515 100%) !important; /* FF3.6-15 */
    background: -webkit-linear-gradient(top, #E00E0E 0%, #B81515 100%) !important; /* Chrome10-25,Safari5.1-6 */
    background: linear-gradient(to bottom, #E00E0E 0%, #B81515 100%) !important; /* W3C, IE10+, FF16+, Chrome26+, Opera12+, Safari7+ */
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#E00E0E', endColorstr='#B81515', GradientType=0) !important; /* IE6-9 */

    color: #eee !important;
    text-shadow: 0px 1px #3D3D3D !important;
}

.button-success {
    background: #438843 !important;
    background: -moz-linear-gradient(top, #5cb85c 0%, #438843 100%) !important;
    background: -webkit-linear-gradient(top, #5cb85c 0%, #438843 100%) !important;
    background: linear-gradient(to bottom, #5cb85c 0%, #438843 100%) !important;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#5cb85c', endColorstr='#438843', GradientType=0) !important;
    color: white !important;
    text-shadow: 0 1px #3D3D3D !important;
}

.button-success:not([disabled]):hover {
    background: #438843 !important;
    background: -moz-linear-gradient(top, rgba(92, 184, 92, 0.85) 0%, rgba(67, 136, 67, 0.85) 100%) !important;
    background: -webkit-linear-gradient(top, rgba(92, 184, 92, 0.85) 0%, rgba(67, 136, 67, 0.85) 100%) !important;
    background: linear-gradient(to bottom, rgba(92, 184, 92, 0.85) 0%, rgba(67, 136, 67, 0.85) 100%) !important;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#aad641', endColorstr='#80aa1c', GradientType=0) !important;
}

input[type="button"][disabled],
button[disabled] {
    background: #eee;
    color: #999;
    text-shadow: none;
    filter: grayscale(75%);
}

button .counter {
    vertical-align: middle;
    text-align: center;
    font-weight: bold;
    text-shadow: 0px 1px 0px #666;
    display: inline-block;
    font-size: 9pt;
}

.header {
    position: relative;
}

.logo-container {
    margin: 0.5em auto;
    width: 130px;
    display: block;
    flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    text-align: center;
}

.logo-container img {
    width: 130px;
    border: 1px solid #DDD;
}

.logo-container label {
    width: auto;
    margin: 0;
}

.logo-container input[type=checkbox] {
    height: auto;
}

.logo-container .logo-deletion {
    width: 130px;
    margin: -0.5em auto;
    border: 1px solid #ddd;
}

.file-uploader {
    width: 100%;
    padding: 0.5em 0 1em 0;
}

.file-uploader-text {
    text-align: center;
    background: #eee;
    color: #1e5799;
    border: 1px dashed #1e5799;
    padding: 1em 0.5em;
    cursor: pointer;
}

.file-uploader-text .fa {
    display: block;
    font-size: 24pt;
}

.file-uploader-text:hover {
    background: #fafafa;
    border: 1px dashed #2989d8;
    color: #2989d8;
}

.image-container {
    display: inline-block;
    border: 1px solid #ccc;
    margin: 0.5em 0 0.25em 0.5em;
}

.image-uploader-error-item {
    font-weight: bold;
    font-size: 12pt;
    display: inline-block;
}

.image-container .image-actions button {
    width: 100%;
}

.form-buttons {
    margin: 0 auto;
    text-align: center;
}

.disappear {
    opacity: 0;
    transition: opacity 500ms ease-in;
}

.disappear.shown {
    opacity: 1;
}

.hide {
    display: none !important;
}

.line {
    display: block;
}

.line-auto {
    display: table;
}

.line-flex {
    -ms-flex: 0 0 100% !important;
    flex: 0 0 100% !important;
}

.block-selection {
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.data-download,
.data-download-form,
[data-component='results-downloader'],
.appearable,
.loader {
    flex: 0 0 100%;
    -ms-flex: 0 0 100%;
    font-size: 16pt;
    text-align: center;
    padding: 0.5em 0;
}

.data-download .fa,
.data-download-form .fa,
.appearable .fa,
.loader .fa {
    margin: 0 auto;
    color: #aaa;
}

.fa-ban {
    color: #0e5d96;
}

.fa-stack-corner {
    font-size: 9px;
    line-height: 10px;
    margin: 0 3px 0 0;
    position: relative;
    display: inline-block;
    width: 25px;
    height: 16px;
}

.fa-stack-corner .fa-stack-2x {
    top: -3px;
}

.fa-stack-corner .fa-stack-1x {
    font-size: 14px;
    left: 7px;
    width: calc(100% - 7px);
    top: 5px;
    text-shadow: 0 0 0 whitesmoke;
}

.button-action .fa-stack-corner .fa-stack-1x {
    color: #eee;
    text-shadow: 0 0 4px #000;
}

.tokenize-sample {
    width: 300px
}

div.Tokenize ul.TokensContainer {
    height: auto;
}

div.Tokenize ul.TokensContainer li.TokenSearch input {
    box-shadow: none;
}

div.TokenizeMeasure, div.Tokenize ul li span, div.Tokenize ul.TokensContainer li.TokenSearch input {
    font-family: "PT Sans", Helvetica, sans-serif;
    font-size: 11pt;
    line-height: 11pt;
}

.tagit-autocomplete {
    list-style: none;
    margin-left: 0;
    background: none;
}

.tagit input {
    background: none;
}

.tagit-autocomplete .ui-menu-item {
    color: #0C82d1;
    font: 11pt/12pt "PT Sans Narrow", sans-serif;
    border-top: 1px solid #ddd;
    border-bottom: 1px solid #ddd;
    margin-top: -1px;
    margin-left: -45px;
    padding: 3px 5px;
    cursor: pointer;

    background: #ffffff;
    background: -moz-linear-gradient(top, #ffffff 1%, #ffffff 48%, #ededed 100%);
    background: -webkit-linear-gradient(top, #ffffff 1%, #ffffff 48%, #ededed 100%);
    background: linear-gradient(to bottom, #ffffff 1%, #ffffff 48%, #ededed 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#ffffff', endColorstr='#ededed', GradientType=0);

}

.hide-a {
    text-decoration: none;
    border-bottom: none;
}

.mouse-icon {
    width: 35px;
    margin-left: -15px;
}

.event-info {
    overflow: hidden;
}

#map-settings {
    position: absolute;
    left: 0;
    bottom: 0;
    height: 0;
    transition: all 300ms;
    background: #fff;
    width: 100%;
}

#map-settings.shown {
    height: 125px;
    padding: 15px 25px;
    border-top: 25px solid #eee;
}

input.toggle {
    max-height: 0;
    max-width: 0;
    opacity: 0;
}

input.toggle + label {
    display: inline-block;
    position: relative;
    box-shadow: inset 0 0 0px 1px #d5d5d5;
    text-indent: -5000px;
    height: 30px;
    width: 50px;
    border-radius: 15px;
}

input.toggle + label:before {
    content: "";
    position: absolute;
    display: block;
    height: 30px;
    width: 30px;
    top: 0;
    left: 0;
    border-radius: 15px;
    background: rgba(19, 191, 17, 0);
    -moz-transition: .25s ease-in-out;
    -webkit-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

input.toggle + label:after {
    content: "";
    position: absolute;
    display: block;
    height: 30px;
    width: 30px;
    top: 0;
    left: 0px;
    border-radius: 15px;
    background: white;
    box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.2), 0 2px 4px rgba(0, 0, 0, 0.2);
    -moz-transition: .25s ease-in-out;
    -webkit-transition: .25s ease-in-out;
    transition: .25s ease-in-out;
}

input.toggle:checked + label:before {
    width: 50px;
    background: rgba(19, 191, 17, 1);
}

input.toggle:checked + label:after {
    left: 20px;
    box-shadow: inset 0 0 0 1px rgba(19, 191, 17, 1), 0 2px 4px rgba(0, 0, 0, .2);
}

.control-group {
    margin: 1em 0;
}

#info .control-group input[type='text'],
#info .control-group input[type='date'],
#info .control-group input[type='file'],
#info .control-group input[type='number'],
#info .control-group input[type='search'],
#info .control-group input[type='email'],
#info .control-group input[type='password'],
#info .control-group select,
#info .control-group textarea {
    width: 95%;
    max-width: 350px;
}

.control-label {
    margin-bottom: 5px;
    display: block;
}

.control-group .hint {
    padding: 1em 0;
}

.form-actions .pull-right {
    margin-left: 1em;
}

.toggle-text {
    line-height: 30px;
    display: inline-block;
}

.map-settings-content {
    position: relative;
}

.map-settings-header {
    font: 16pt/16pt "PT Sans Narrow", "sans-serif";
    font-weight: bold;
    text-shadow: 1px 1px 3px #ccc;
    color: #1e5799;
    margin-bottom: 20px;
}

.map-settings-close {
    position: absolute;
    left: 100px;
    top: 3px;
    cursor: pointer;
    color: #1e5799;
}

.wrapper {
    display: inline-block;
}

#map-setting-show-markers {
    margin: 1em 0;
}

#markers-list {
    display: none;
}

#markers-list.shown {
    display: block;
}

#markers-list h2,
#recommendations h2 {
    cursor: pointer;
}

.tags {
    margin-top: 0.5em;
}

.list .item.marker-item {
   padding-right: 3em;
}

.list .item.marker-item .action {
    text-decoration: none;
}

.list .item.marker-item .owner {
    color: #0C82D1;
    text-align: right;
    width: 125px;
    -ms-flex: 1 1;
}

.list .item.marker-item .owner a {
    text-decoration: none;
    font-size: 9pt;
}

.list .item.marker-item .owner a:hover {
    text-decoration: underline;
}

.list .item.marker-item .owner-info .fa {
    margin-right: 5px;
}

.list .item.marker-item .owner-logo {
    width: 100px;
    height: 100px;
    text-align: right;
    border: 1px solid #888;
}

.list .item .item-info.item-info-with-menu {
    padding-right: 3em;
}

.list .item .item-actions {
    margin-top: 0.5em;
}

.list .item .item-actions .item-actions-container.legacy {
    max-height: 25px;
}

.list .item .item-actions .item-actions-container .svg-icon {
    cursor: pointer;
}

.list .item .item-actions .item-actions-container .item-menu {
   position: absolute;
   top: 1.5em;
   right: 1em;
}

.list .item .item-actions .item-actions-container.legacy.maximized {
    max-height: none;
}

.list .item .item-actions .action {
    display: block;
    cursor: pointer;
    color: #2989d8;
    transition: all 300ms;
    padding: 10px 0 0 0;
    line-height: 1.5;
}

.list .item .item-actions .text {
    font-size: 10pt;
    border-bottom: 1px dotted #1e5799;
    margin-left: 5px;
}

.list .item .item-actions .action:hover .text {
    border-bottom: 1px solid #1e5799;
}

.list .item .item-actions .action:hover {
    color: #1e5799;
    filter: brightness(85%);
}

.list .item .item-actions .action .svg-icon {
    width: 24px;
    height: 26px;
}

.actions {
    display: block;
    line-height: 1.5em;
}

.list .action {
    margin-top: 0.5em;
}

.actions .action {
    display: inline-block;
    cursor: pointer;
    color: #2989d8;
    transition: all 300ms;
    margin-right: 15px;
}

.actions .action .svg-icon {
    width: 20px;
    height: 20px;
}

.list .item .item-actions .action .svg-icon,
.actions .action .svg-icon {
    transition: all 0.3s;
    color: #2989d8;
    fill: currentColor;
}

.actions .action .svg-icon:hover {
    filter: brightness(85%);
}

.action.hide {
    margin-right: 0;
    display: none;
}

.action:hover, .action a:hover {
    color: #1e5799;
}

.action:visited, .action a:visited {
    color: #2989d8;
}

.action .fa-stack {
    font-size: 6px;
    line-height: 10px;
    margin: 0 3px;
}

.action .fa-stack-1x {
    font-size: 14px;
    left: 5px;
    top: 5px;
    color: #0e5d96;
    text-shadow: 0 0 0 whitesmoke;
}

.action .fa-stack-2x {
    font-size: 15px;
    top: -3px;
}

.employees-list {
    margin-top: 0.5em;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
}

.employee {
    font: bold 10pt/15pt "PT Sans", sans-serif;
    display: block;
    flex: 0 1 50%;
    padding: 5px 0;
}

.employee .employee-delete {
    padding: 5px 0;
    cursor: pointer;
}

.employee .invited {
    margin: 0 2px;
}

.employee-post {
    font: 9pt/9pt "PT Sans", sans-serif;
    color: #666;
}

.catalogs {
    /*margin-top: 1em;*/
    display: -ms-flexbox;
    display: flex;

    -ms-flex-wrap: wrap;
    flex-wrap: wrap;
}

.catalogs-label {
    flex: 0 0 100%;
    color: #1e5799;
    font: bold 11pt/24pt "PT Sans";
}

.catalogs select {
    flex: 0 0 95%;
    width: 95%;
}

.catalogs .catalogs-actions {
    flex: 0 0 35%;
    align-self: center;
    margin-top: 0.5em;
}

.catalogs .catalogs-actions .action {
    cursor: pointer;
    margin-right: 0.5em;
}

.catalog-list-new {
    display: flex;
    display: -ms-flexbox;
    flex-wrap: wrap;
    -ms-flex-wrap: wrap;
    padding: 0 0 0.5em 0;
}

.catalog-list-new .catalog {
    flex: 0 0 100px;
    -ms-flex: 0 0 100px;
    text-align: center;
    padding: 0.25em 0.25em 0.75em 0.25em;
    animation-duration: 300ms;
}

.catalog-list-new .catalog .catalog-logo {
    width: 50px;
    height: 50px;
    margin: 0 auto;
    transition: 300ms;
    position: relative;
}

.catalog-list-new .catalog .catalog-logo-container {
    display: block;
    position: relative;
}

.catalog-list-new .catalog:not(.catalog-custom) .catalog-logo-container:hover,
.catalog-list-new .catalog.catalog-custom:hover {
    filter: brightness(85%);
    cursor: pointer;
    position: relative;
}

.catalog-list-new .catalog .catalog-logo-container .catalog-logo-icon {
    position: absolute;
    width: 25px !important;  /* Без important в IE10 для этих иконок ширина и высота задается через атрибуты width и height */
    height: 25px !important;
    top: 35px;
    right: 20px;
}

.catalog-list-new .catalog .catalog-name,
.catalog-list-new .catalog .catalog-name-input {
    font: bold 10pt "PT Sans", sans-serif;
    color: #1e5799;
    width: 100px;
    word-wrap: break-word;
}

.catalog-list-new .catalog .catalog-name-input {
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 5px 8px;
    width: 50%;
    margin: 0 auto;
    box-shadow: none;
    text-align: center;
}

.catalog-list-new .catalog .catalog-markers-count {
    font-size: 9pt;
    color: #999;
}

.catalog-page .catalog {
    display: flex;
    display: -ms-flexbox;
    border-bottom: 1px solid #ddd;
}

.catalog-page .catalog-logo {
    flex: 0 0 50px;
    width: 50px;
    height: 50px;
    padding: 0.5em 0 0 1.5em;
}

.catalog-page .catalog-info {
    flex: 0 1 100%;
    padding: 1em;
}

.catalog-page .catalog-info .catalog-name {
    color: #1e5799;
    font-weight: bold;
}

.catalog-page .catalog-info .catalog-name.deleted {
    text-decoration: line-through;
}

.catalog-page .catalog-info .catalog-markers-count {
    color: #999;
    font-size: 9pt;
}

.catalog-page .catalog .action-list {
    flex: 0 0 100%;
    -ms-flex: 0 0 100%;
}

.request-statuses {
    padding-top: 0.5em;
}

.request-status {
    margin: 0.25em 0;
}

.request-status .date {
    font-size: 9pt;
    display: inline-block;
    font-weight: bold;
    color: #2989d8;
}

.request-status .text {
    font-size: 9pt;
    display: inline-block;
    margin-left: 1em;
}

.request-status .status {
    color: #1e5799;
    font-style: italic;
    font-weight: bold;
}

.reason {
    font-size: 9pt;
    margin: 0.25em 1em 0 1em;
}

.reason-title {
    font-weight: bold;
}

#recommendations form {
    padding: 15px 25px;
}

#recommendations label {
    display: block;
    font: 12pt/14pt "PT Sans Narrow", sans-serif;
    margin-bottom: 1em;
    text-align: center;
}

#recommendation-tags {
    margin: 1em auto 1em auto;
    width: 70%;
    background: #fff;
    height: 25px;
    display: block;
}

#recommendation-search {
    text-align: center;
    margin: 0 auto;
    display: block;
    width: 120px;
}

.ui-menu-item {
    background: #fff;
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
    margin-top: -1px;
    margin-bottom: -1px;
    transition: all 250ms;
    padding: 3px 15px 3px 5px;
}

.ui-menu-item:hover {
    border-left: 1px solid #eee;
    border-right: 1px solid #eee;
    padding: 3px 15px 3px 5px;
    margin-top: -1px;
    margin-bottom: -1px;
    background: #f2f2f2;
}

#recommendation-content {
    opacity: 0;
    transition: all 500ms;
}

#recommendation-content.shown {
    opacity: 1;
    transition: all 500ms;
}

.marker-item {
    cursor: pointer;
    transition: background 400ms;
}

.marker-item:not('.highlight') :hover {
    background: #e9f3fb;
    transition: background 400ms;
}

.form-actions,
.modal-buttons,
.page-nav {
    display: -ms-flexbox;
    display: flex;

    -ms-flex-wrap: wrap;
    flex-wrap: wrap;

    align-content: center;
    justify-content: center;
}

.page-nav {
    padding: 1em;
}

.modal-buttons button,
.modal-buttons input[type=submit] {
    margin: 0.25em 0.25em;
}

.page-nav button {
    -ms-flex: 1;
    flex: 1;
    border-right: 1px solid #bbb;
    border-radius: 0;
    padding: 5px 7px;
    margin: 0;
}

.page-nav button .fa,
.page-nav button .svg-icon {
    display: block;
    width: 100%;
    margin-bottom: 5px;
}

.page-nav .button-action .svg-icon {
    filter: contrast(0%) brightness(200%);
}

#modal .error {
    background: #a90329;
    background: -moz-linear-gradient(top, #a90329 0%, #8f0222 44%, #6d0019 100%);
    background: -webkit-linear-gradient(top, #a90329 0%, #8f0222 44%, #6d0019 100%);
    background: linear-gradient(to bottom, #a90329 0%, #8f0222 44%, #6d0019 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#a90329', endColorstr='#6d0019', GradientType=0);
}

.errorlist {
    display: inline;
}

.errorlist > li {
    display: inline;
}

.modal-message {
    padding: 1em;
    text-align: center;
}

/*
 __   __   __   ___         ___
|__) |__) /  \ |__  | |    |__
|    |  \ \__/ |    | |___ |___

@profile
*/

#profile-main {
    min-height: 150px;
    padding: 1em 0;
    float: left;
    width: 100%;
}

#profile-main .sub-actions {
    padding: 0.5em 0;
    box-shadow: none;
}

#profile-main .sub-actions .sub-action {
    display: block;
}

#profile-image {
    padding: 0 1em;
    float: left;
}

#profile-image > img {
    width: 150px;
    height: 150px;
    box-shadow: 1px 1px 5px #777;
}

#profile-info {
    margin: 0 1em 0 12.5em;
    padding: 0;
    list-style: none;
}

#profile-info li {
    font: 11pt/15pt "PT Sans Narrow";
}

#profile-info .profile-data-label {
    color: #1e5799;
    font-weight: bold;
}

#profile-info .data-string {
    color: #222;
    width: 100%;
    display: block;
    margin-bottom: 0.75em;
    word-wrap: break-word;
}

.groups {
    list-style: none;
    padding: 0;
    margin: 0;
}

.groups li .item-image img {
    width: 50px;
    height: 50px;
    border-radius: 50px;
    border: 5px solid white;
    box-shadow: 0 0 5px black;
}

.group-name {
    font: 14pt/20pt "PT Sans Narrow";
    color: #111;
    text-decoration: none;
    overflow: hidden;
    text-overflow: ellipsis;
}

.group-category {
    font: 10pt/10pt "PT Sans";
    color: #888;
}

.group-description {
    font: 11pt/18pt "PT Sans", sans-serif;
    word-wrap: break-word;
}

.post {
    padding: 1em 3em;
}

.post-image {
    float: left;
}

.post-image > img {
    width: 100px;
    height: 100px;
}

#img-upload {
    display: inline-block;
    position: relative;
}

#img-upload > form {
    display: none;
}

#img-upload .cropControls {
    right: 5px;
    margin-top: -30px;
}

.profile-action {
    width: 150px;
    padding: 0.25em 0;
}

.profile-action input[type='submit'], .profile-action button {
    margin: 0.5em 0 0 0;
    min-width: 100%;
}

/*
 __   __   __        __   __
/ _` |__) /  \ |  | |__) /__`
\__> |  \ \__/ \__/ |    .__/

@groups
*/

.group-type {
    font-size: 10pt;
    text-shadow: 0 0 3px black;
}

#marker-share,
#group-share {
    width: 100%;
    /*opacity: 0;*/
    transition: height 300ms ease-in, opacity 500ms ease-in;
    text-align: center;
    display: flex;
    justify-content: center;
}

#marker-share img,
#group-share img {
    width: 24px;
    height: 24px;
}

#ya-marker-share,
#ya-group-share {
    display: inline-block;
    margin-left: 4px;
}

#marker-share.shown,
#group-share.shown {
    opacity: 1;
}

#marker-share .b-share,
#group-share .b-share {
    margin: 0 auto;
    width: 150px;
    display: -ms-flexbox;
    display: flex;
    justify-content: center;
    align-content: center;
}

#modal-group-share i {
    color: #0C82d1;
    margin: 0 0.25em;
}

#modal-group-share .tokenize-sample {
    width: 100%;
}

.share-buttons {
    width: 240px;
    margin: 0 auto;
}

.share-buttons .alert {
    text-align: center;
    padding: 0;
}

/*
 ___  __     ___       __   __
|__  |__) | |__  |\ | |  \ /__`
|    |  \ | |___ | \| |__/ .__/

@friends
*/

#friend-search-form {
    width: 300px;
    margin: 0 auto;
}

#friend-search-form .label {
    font: 12pt/10pt "PT Sans Narrow", "Helvetica", sans-serif;
    color: #1e5799;
    display: inline-block;
    width: 45px;
    text-align: right;
    margin-right: 0.5em;
}

#friend-search-form input {
    margin-right: 0.5em;
}

#friend-search-form #id_username,
#friend-search-form #id_sex,
#friend-search-form #id_city {
    width: 215px;
}

#friend-search-form #id_min_age,
#friend-search-form #id_max_age {
    width: 67px;
}

#friend-search-form .control {
    margin: 0 0.5em 0.5em 0;
}

.contact {
    padding: 1em 2em;
    overflow: auto;
    position: relative;
}

.contact .profile-logo img {
    width: 75px;
    min-height: 75px;
    box-shadow: 0 0 5px -2px #222;
    cursor: pointer;
}

.contact .profile-username,
.contact .profile-username a:visited {
    font: bold 14pt/18pt "PT Sans Narrow", "Helvetica", sans-serif;
    color: #1e5799;
    cursor: pointer;
}

.contact .profile-username a {
    text-decoration: none;
}

.contact .profile-info {
    font: 10pt/11pt "PT Sans", "Helvetica", sans-serif;
    color: #999;
}

.contact .profile-username:hover {
    text-decoration: underline;
}

.contact .actions {
    flex: 0 0 100%;
}

.contact .contact-action {
}

.contact .contact-action button {
    margin: 0.25em 0;
}

.friendship-request,
.friendship-request-undo,
.notification-restore-message {
    font-size: 12px;
    color: #666;
}

.contact .friendship-request,
.contact .friendship-request-undo {
}

/******************************************** @notifications ********************************************/

.notification-tab {
    position: relative;
}

.notification-tab .counter {
    position: absolute;
    top: 18px;
    left: calc(50% + 3px);
    background: #1e5799;
    border-radius: 50%;
    padding: 2px;
    color: white;
    font: 9pt/9pt "PT Sans Narrow", sans-serif;
}

.notification-tab.line-flex .counter {
    top: 12px;
}

.notification {
    padding: 1em;
    position: relative;
    overflow: auto;
    border-bottom: 1px solid #ddd;
    font: 11pt/18pt "PT Sans", sans-serif;
    min-height: 125px;
}

.notification.unread-notification {
    background: #e9f3fb;
}

.notification.deleted {
    min-height: 65px;
}

.notification-logo {
    display: inline-block;
    float: left;
    position: relative;
}

.notification-logo > .notification-logo-image {
    width: 75px;
    border: 1px #aaa solid;
    box-shadow: 1px 1px 10px -1px #aaa;
    cursor: pointer;
}

.notification-logo .notification-icon {
    background: #7cabd2;
    border-radius: 50%;
    width: 45px;
    height: 45px;
    text-align: center;
    line-height: 45px;
    position: absolute;
    right: -1em;
    bottom: -0.5em;
}

.notification[data-category="groups"] .notification-logo .notification-icon .svg-icon {
    margin-top: -5px;
}

.notification-logo .notification-icon .svg-icon {
    width: 35px;
    height: 35px;
}

.notification .notification-actions {
    position: absolute;
    top: 1em;
    right: 1em;
}

.notification .notification-actions .notification-action {
    color: #1e5799;
    cursor: pointer;
    text-shadow: 1px 1px 15px #aaa;
    transition: color 300ms ease-out;
    display: block;
    margin-bottom: 1em;
}

.notification .notification-actions .notification-action:hover {
    color: #0C82d1;
}

.notification .notification-body {
    color: #222;
    padding: 0 2em 1em 0;
    word-wrap: break-word;
    margin-left: 110px;
}

.notification .notification-body a {
    color: #1e5799;
    text-decoration: none;
    font-weight: bold;
}

.notification .notification-body a:hover {
    color: rgba(30, 87, 153, 0.76);
    text-decoration: none;
}

.notification .notification-date {
    position: absolute;
    left: 1.25em;
    bottom: 1em;
    font: 10pt/9pt "PT Sans Narrow", "Helvetica", sans-serif;
    color: #aaa;
}

.notification .system-notification-title {
    font-weight: bold;
    color: #1e5799;
}

.notification .system-notification-text {
    padding: 0.5em 0 1.5em 0;
    display: block;
}

.notification .system-notification-text p {
    margin: 0 0 1em 0;
}

.notification .system-notification-text ul {
    margin: 0;
    padding-left: 0;
    list-style: none;
}

.notification .system-notification-text li {
    padding: 0 0 0.5em 0.5em;
}

.notification .system-notification-text ul > br,
.notification .system-notification-text ul > p,
.notification .system-notification-text li + br,
.notification .system-notification-text li + p {
    display: none;
}

.notification .system-notification-text li:before {
    content: " ";
    display: inline-block;
    width: 5px;
    height: 5px;
    margin: 0 0.75em 0.25em 0;
    background: #1e5799;
}

.notification .system-notification-text img {
    max-width: 100%;
}

.notification-icon .fa-stack-1x {
    color: white;
}

.notification-icon > .fa-circle {
    color: #1f64a6;
}

.notification .notification-body .with-img {
    display: block;
}

.notification .notification-content-picture img {
    width: 75px;
    box-shadow: 0 0 3px #333;
    margin: 1em 0 0 0;
    display: inline-block;
}

.notification .group-invitation {
    margin: 0.5em auto;
    font-style: italic;
    font-size: 10pt;
}

.notification + .alert {
    margin: 0;
    padding: 1em 0 1em 2.5em;
    color: #1e5799;
}

.notification + .alert > .message > button,
.notification + .alert > button {
    color: #1e5799;
}

.tagit-label {
    font: 11pt/10pt "PT Sans Narrow", sans-serif;
}

/*********************************** @bug-tracker, @known-issues, @issue ***********************************/

#id_url {
    width: 300px;
}

.known-issue {
    position: relative;
}

.known-issue a {
    color: #0F577D;
}

.known-issue a:hover {
    color: #0C82d1;
}

.known-issue .label {
    font-family: "PT Sans Narrow", sans-serif;
    color: #0F577D;
}

.known-issue .known-issue-author {
    font: 14pt/18pt "PT Sans Narrow", sans-serif;
    color: #0F577D;
    padding: 0 0.5em 0 0;
}

.known-issue .known-issue-author a {
    border-bottom: 1px dotted #0F577D;
    text-decoration: none;
}

.known-issue .known-issue-text {
    font-size: 11pt;
    line-height: 14pt;
    padding: 0 0.5em 1em 0;
}

.known-issue .known-issue-reproduction {
    padding: 0.5em 0.5em 0.5em 0;
}

.known-issue .known-issue-text .label {
    display: block;
    margin-bottom: 1em;
}

.known-issue .known-issue-date {
    color: #666;
    font: 9pt/12pt "PT Sans Narrow", sans-serif;
}

.known-issue .known-issue-url {
    padding: 0.5em 0.5em 0.5em 0;
}

.known-issue .known-issue-url a {
    font-size: 10pt;
    text-decoration: none;
    border-bottom: 1px dotted #aaa;
}

.known-issue .known-issue-status {
    font: 11pt/14pt "PT Sans Narrow", sans-serif;
    color: #333;
}

.known-issue .known-issue-screenshot img {
    width: 75%;
    margin-top: 1em;
}

.known-issue .known-issue-id {
    font: 12pt/16pt "PT Sans Narrow", sans-serif;
    color: #0C82d1;
    position: absolute;
    top: 0.5em;
    right: 1em;
}

.known-issue .known-issue-status-icon {
    font-size: 16pt;
    margin: 0 0.15em;
}

.known-issue .known-issue-status-icon.fa-check {
    color: green;
}

.known-issue .known-issue-status-icon.fa-times {
    color: red;
}

#location {
    display: none;
}

/************************************************** @tooltips **************************************************/
.tooltip {
    position: absolute;
    z-index: 1070;
    display: block;
    font-family: "PT Sans", Helvetica, Arial, sans-serif;
    font-size: 12px;
    font-style: normal;
    font-weight: normal;
    line-height: 1.42857143;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    white-space: normal;
    filter: alpha(opacity=0);
    opacity: 0;

    line-break: auto;
}

.tooltip.in {
    filter: alpha(opacity=90);
    opacity: .9;
}

.tooltip.top {
    padding: 5px 0;
    margin-top: -3px;
}

.tooltip.right {
    padding: 0 5px;
    margin-left: 3px;
}

.tooltip.bottom {
    padding: 5px 0;
    margin-top: 3px;
}

.tooltip.left {
    padding: 0 5px;
    margin-left: -3px;
}

.tooltip-inner {
    max-width: 200px;
    padding: 3px 8px;
    color: #fff;
    text-align: center;
    background-color: #000;
    border-radius: 4px;
}

.tooltip-arrow {
    position: absolute;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
}

.tooltip.top .tooltip-arrow {
    bottom: 0;
    left: 50%;
    margin-left: -5px;
    border-width: 5px 5px 0;
    border-top-color: #000;
}

.tooltip.top-left .tooltip-arrow {
    right: 5px;
    bottom: 0;
    margin-bottom: -5px;
    border-width: 5px 5px 0;
    border-top-color: #000;
}

.tooltip.top-right .tooltip-arrow {
    bottom: 0;
    left: 5px;
    margin-bottom: -5px;
    border-width: 5px 5px 0;
    border-top-color: #000;
}

.tooltip.right .tooltip-arrow {
    top: 50%;
    left: 0;
    margin-top: -5px;
    border-width: 5px 5px 5px 0;
    border-right-color: #000;
}

.tooltip.left .tooltip-arrow {
    top: 50%;
    right: 0;
    margin-top: -5px;
    border-width: 5px 0 5px 5px;
    border-left-color: #000;
}

.tooltip.bottom .tooltip-arrow {
    top: 0;
    left: 50%;
    margin-left: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000;
}

.tooltip.bottom-left .tooltip-arrow {
    top: 0;
    right: 5px;
    margin-top: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000;
}

.tooltip.bottom-right .tooltip-arrow {
    top: 0;
    left: 5px;
    margin-top: -5px;
    border-width: 0 5px 5px;
    border-bottom-color: #000;
}

.popover {
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1060;
    display: none;
    max-width: 276px;
    padding: 1px;
    font-family: "PT Sans", Helvetica, Arial, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: normal;
    line-height: 1.42857143;
    text-align: left;
    text-align: start;
    text-decoration: none;
    text-shadow: none;
    text-transform: none;
    letter-spacing: normal;
    word-break: normal;
    word-spacing: normal;
    word-wrap: normal;
    white-space: normal;
    background-color: #fff;
    -webkit-background-clip: padding-box;
    background-clip: padding-box;
    border: 1px solid #ccc;
    border: 1px solid rgba(0, 0, 0, .2);
    border-radius: 6px;
    -webkit-box-shadow: 0 5px 10px rgba(0, 0, 0, .2);
    box-shadow: 0 5px 10px rgba(0, 0, 0, .2);

    line-break: auto;
}

.popover.top {
    margin-top: -10px;
}

.popover.right {
    margin-left: 10px;
}

.popover.bottom {
    margin-top: 10px;
}

.popover.left {
    margin-left: -10px;
}

.popover-title {
    padding: 8px 14px;
    margin: 0;
    font-size: 14px;
    background-color: #f7f7f7;
    border-bottom: 1px solid #ebebeb;
    border-radius: 5px 5px 0 0;
    color: #333;
    font-family: "PT Sans", Helvetica, Arial, sans-serif;
}

.popover-content {
    padding: 9px 14px;
}

.popover > .arrow,
.popover > .arrow:after {
    position: absolute;
    display: block;
    width: 0;
    height: 0;
    border-color: transparent;
    border-style: solid;
}

.popover > .arrow {
    border-width: 11px;
}

.popover > .arrow:after {
    content: "";
    border-width: 10px;
}

.popover.top > .arrow {
    bottom: -11px;
    left: 50%;
    margin-left: -11px;
    border-top-color: #999;
    border-top-color: rgba(0, 0, 0, .25);
    border-bottom-width: 0;
}

.popover.top > .arrow:after {
    bottom: 1px;
    margin-left: -10px;
    content: " ";
    border-top-color: #fff;
    border-bottom-width: 0;
}

.popover.right > .arrow {
    top: 50%;
    left: -11px;
    margin-top: -11px;
    border-right-color: #999;
    border-right-color: rgba(0, 0, 0, .25);
    border-left-width: 0;
}

.popover.right > .arrow:after {
    bottom: -10px;
    left: 1px;
    content: " ";
    border-right-color: #fff;
    border-left-width: 0;
}

.popover.bottom > .arrow {
    top: -11px;
    left: 50%;
    margin-left: -11px;
    border-top-width: 0;
    border-bottom-color: #999;
    border-bottom-color: rgba(0, 0, 0, .25);
}

.popover.bottom > .arrow:after {
    top: 1px;
    margin-left: -10px;
    content: " ";
    border-top-width: 0;
    border-bottom-color: #fff;
}

.popover.left > .arrow {
    top: 50%;
    right: -11px;
    margin-top: -11px;
    border-right-width: 0;
    border-left-color: #999;
    border-left-color: rgba(0, 0, 0, .25);
}

.popover.left > .arrow:after {
    right: 1px;
    bottom: -10px;
    content: " ";
    border-right-width: 0;
    border-left-color: #fff;
}

.fade {
    opacity: 0;
    -webkit-transition: opacity .15s linear;
    -o-transition: opacity .15s linear;
    transition: opacity .15s linear;
}

.fade.in {
    opacity: 1;
}

.ban-icon {
    font-size: 80pt;
    text-align: center;
    margin: 0 auto;
    width: 100px;
}

.ban-message {
    font-size: 16pt;
    line-height: 22pt;
    text-align: center;
}

.image-viewer {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.75);
    z-index: 10000;
    opacity: 0;
    transition: 0.5s;
}

.image-viewer-container {
    position: relative;
    margin: 1em;
    vertical-align: middle;
    text-align: center;
    height: calc(100% - 2em);
}

.image-viewer-loader {
    position: absolute;
    text-align: center;
    top: calc(50% - 24pt);
    width: 100%;
    font-size: 24pt;
    color: white;
    display: none;
}

.image-viewer.shown {
    opacity: 1;
}

.image-viewer-close {
    position: absolute;
    right: 25px;
    top: 25px;
    color: white;
    text-shadow: 2px 0 0 #fff, -2px 0 0 #fff, 0 2px 0 #fff, 0 -2px 0 #fff, 1px 1px #fff, -1px -1px 0 #fff, 1px -1px 0 #fff, -1px 1px 0 #fff;
    display: block;
    width: 25px;
    height: 25px;
    cursor: pointer;
    font-size: 25px;
    z-index: 10;
}

.image-viewer-close:hover, .image-viewer-prev:hover, .image-viewer-next:hover {
    color: #eee;
}

.image-viewer-picture {
    max-width: 100%;
    max-height: 100%;
    text-align: center;
    cursor: pointer;
    display: inline-block;
    transition: opacity 0.35s;
}

.image-viewer-prev, .image-viewer-next {
    color: white;
    font-size: 34pt;
    position: absolute;
    top: 0;
    text-shadow: 2px 0 0 #333, -2px 0 0 #333, 0 2px 0 #333, 0 -2px 0 #333, 1px 1px #333, -1px -1px 0 #333, 1px -1px 0 #333, -1px 1px 0 #333;
    width: 50%;
    display: block;
    cursor: pointer;
    text-align: center;
    height: 100%;
}

.image-viewer-prev .fa, .image-viewer-next .fa {
    position: absolute;
    top: calc(50% - 17pt);
}

.image-viewer-prev .fa {
    left: 2.5em;
}

.image-viewer-next {
    right: 0;
}

.image-viewer-next .fa {
    right: 2.5em;
}

.popup-notifications {
    position: fixed;
    z-index: 160000;
    bottom: 5px;
    width: 340px;
    cursor: pointer;
    left: 25px;
}

.popup-notification {
    height: 95px;
    opacity: 1;
    box-shadow: 0 0 7px -2px;
    border: 1px solid #bbb;
    background: white;
    transition: 300ms;
    margin: 10px 0;
    position: relative;
}

.popup-notification-logo {
    height: 55px;
    float: left;
    width: 55px;
    margin: 10px;
}

.popup-notification-text {
    font-size: 13px;
    padding: 10px 30px 0px 0;
    text-shadow: 0 1px white;
    line-height: 19px;
    color: #2b2b2b;
    cursor: pointer;
    word-wrap: break-word;
    text-overflow: ellipsis;
    border-radius: 5px;
    height: 60px;
    overflow: hidden;
}

.popup-notification-date {
    margin-left: 75px;
    font-size: 9pt;
    color: #999;
}

.popup-notification-parameter {
    color: hsla(207, 69%, 32%, 1);
}

.popup-notification .close {
    cursor: pointer;
    position: absolute;
    top: 8px;
    right: 7px;
    color: #1e5799;
    padding: 5px;
}

.premium {
    color: #F79800;
    font-weight: bold;
}

.catalog-list {
}

.catalog-list .item-image {
    width: 100px;
    height: 100px;
    margin-right: 1.5em;
}

.catalog-list .item-image img {
    width: 100px;
    height: 100px;
}

#modal .svg-icon {
    width: 40px;
    height: 40px;
}

.login .social-auth a {
    text-decoration: none;
}

.login .svg-icon {
    width: 40px;
    height: 40px;
}

.social-auth {
    width: 150px;
    float: left;
}

.map-notifier {
    position: relative;
    z-index: 1;
}

.map-notifier .map-notifications-counter {
    border-radius: 50%;
    box-shadow: 0 0 7px -1px #000;
    border: 3px solid #fff;
    transition: all 300ms;
    height: 35px;
}

.map-notifier.new-message .map-notifications-counter {
    animation: notifier 2s infinite;
    border: 3px solid #1e5799;
}

.map-notifier .map-notifications-counter:hover {
    border: 3px solid #efefef;
}

.map-notifier .map-notifications-counter img {
    width: 35px;
    height: 35px;
    transition: all 300ms;
}

.map-notifier .map-notifications-counter img:hover {
    filter: brightness(90%);
    cursor: pointer;
}

.map-notifier .counter {
    position: absolute;
    top: 25px;
    left: calc(50% + 3px);
    min-width: 10px;
    background: #2989d8;
    border-radius: 50%;
    padding: 2px;
    color: white;
    font: 9pt/9pt "PT Sans Narrow", sans-serif;
    cursor: pointer;
    text-align: center;
}

.map-notifications {
    position: absolute;
    left: 55px;
    top: 0;
    background: #fff;
    color: #222;
    width: 200px;
    min-height: 65px;
    max-height: 180px;
    overflow-y: auto;
    border-radius: 15px;
    box-shadow: 1px 1px 6px -2px #000;
}

.map-notifications-header {
    padding: 5px 8px;
    background: -moz-linear-gradient(top, #2989d8 0%, #1e5799 100%);
    background: -webkit-linear-gradient(top, #2989d8 0%, #1e5799 100%);
    background: linear-gradient(to bottom, #2989d8 0%, #1e5799 100%);
    font: bold 12pt/12pt "PT Sans Narrow", sans-serif;
    color: white;
    text-align: center;
}

.map-notifications-default {
    padding: 10px 8px;
    text-align: center !important;
    color: #666;
    font: 10pt/10pt "PT Sans Narrow", sans-serif;
}

.map-notifications-default img {
    display: block;
    width: 50px;
    height: 50px;
    margin: 0 auto;
}

.map-notification {
    padding: 0 8px;
    position: relative;
    word-wrap: break-word;
    border-bottom: 1px solid #eee;
    cursor: pointer;
    transition: 300ms;
}

.map-notification:hover {
    background: #efefef;
}

.map-notification:last-child {
    border: none;
}

.map-notification-logo {
    width: 25px;
    height: 25px;
    float: left;
}

.map-notification-logo img {
    width: 25px;
    height: 25px;
    border-radius: 50%;
}

.map-notification-message {
    font: 10pt/12pt "PT Sans", sans-serif;
    max-width: 150px;
    padding: 5px 10px;
    margin-left: 25px;
}

.map-notification-message b {
    color: #1e5799;
}

.map-notification-close {
    color: #1e5799;
    position: absolute;
    right: 10px;
    top: 5px;
}

.map-notification-close:hover {
    color: #2989d8;
    cursor: pointer;
}

.map-notifications-header .map-notification-close {
    color: white;
}

.map-notifications-header .map-notification-close:hover {
    color: #ddd;
}


/**************
 * Contacts Page
 */

.contacts-container {
    display: flex;
    justify-content: space-around;
    padding: 1em 0;
    flex-wrap: wrap;
}

.contacts {
    flex: 0 0 33%;
}
