/*! normalize.css v3.0.2 | MIT License | git.io/normalize */
html {
    font-family: sans-serif;
    -ms-text-size-adjust: 100%;
    -webkit-text-size-adjust: 100%
}

body {
    margin: 0
}

article, aside, details, figcaption, figure, footer, header, hgroup, main, menu, nav, section, summary {
    display: block
}

audio, canvas, progress, video {
    display: inline-block;
    vertical-align: baseline
}

audio:not([controls]) {
    display: none;
    height: 0
}

[hidden], template {
    display: none
}

a {
    background-color: transparent
}

a:active, a:hover {
    outline: 0
}

abbr[title] {
    border-bottom: 1px dotted
}

b, strong {
    font-weight: 700
}

dfn {
    font-style: italic
}

h1 {
    font-size: 2em;
    margin: .67em 0
}

mark {
    background: #ff0;
    color: #000
}

small {
    font-size: 80%
}

sub, sup {
    font-size: 75%;
    line-height: 0;
    position: relative;
    vertical-align: baseline
}

sup {
    top: -.5em
}

sub {
    bottom: -.25em
}

img {
    border: 0
}

svg:not(:root) {
    overflow: hidden
}

figure {
    margin: 1em 40px
}

hr {
    -moz-box-sizing: content-box;
    box-sizing: content-box;
    height: 0
}

pre {
    overflow: auto
}

code, kbd, pre, samp {
    font-family: monospace, monospace;
    font-size: 1em
}

button, input, optgroup, select, textarea {
    color: inherit;
    font: inherit;
    margin: 0
}

button {
    overflow: visible
}

button, select {
    text-transform: none
}

button, html input[type=button], input[type=reset], input[type=submit] {
    -webkit-appearance: button;
    cursor: pointer
}

button[disabled], html input[disabled] {
    cursor: default
}

button::-moz-focus-inner, input::-moz-focus-inner {
    border: 0;
    padding: 0
}

input {
    line-height: normal
}

input[type=checkbox], input[type=radio] {
    box-sizing: border-box;
    padding: 0
}

input[type=number]::-webkit-inner-spin-button, input[type=number]::-webkit-outer-spin-button {
    height: auto
}

input[type=search] {
    -webkit-appearance: textfield;
    -moz-box-sizing: content-box;
    -webkit-box-sizing: content-box;
    box-sizing: content-box
}

input[type=search]::-webkit-search-cancel-button, input[type=search]::-webkit-search-decoration {
    -webkit-appearance: none
}

fieldset {
    border: 1px solid silver;
    margin: 0 2px;
    padding: .35em .625em .75em
}

legend {
    border: 0;
    padding: 0
}

textarea {
    overflow: auto
}

optgroup {
    font-weight: 700
}

table {
    border-collapse: collapse;
    border-spacing: 0
}

td, th {
    padding: 0
}

/* General */
html {
    height: 100%;
}

body {
    font-family: 'Roboto', sans-serif;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 100%;
    background: rgba(25, 50, 80, 1);
    overflow: hidden;
    font-weight: 400;
    -webkit-font-smoothing: antialiased;
    text-rendering: optimizeLegibility;
}

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

.clear {
    clear: both;
}

/* Transitions */
.transition-300 {
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.transition-500 {
    -webkit-transition: all 500ms ease-in-out;
    -moz-transition: all 500ms ease-in-out;
    -o-transition: all 500ms ease-in-out;
    -ms-transition: all 500ms ease-in-out;
    transition: all 500ms ease-in-out;
}

/* Header */
header {
    position: fixed;
    left: 0;
    top: 0;
    width: 100%;
    height: 60px;
    text-align: center;
    z-index: 999;
    background: #2C3E50;
    -webkit-backface-visibility: hidden;
    -webkit-transform-style: preserve-3d;
    -moz-transform-style: preserve-3d;
    transform-style: preserve-3d;
}

.standalone header {
    height: 75px;
    padding: 15px 0 0 0;
}

header a {
    display: block;
    width: auto;
    height: 60px;
    line-height: 60px;
    color: rgba(255, 255, 255, 1);
    font-weight: 400;
    text-decoration: none;
    padding: 0 20px;
}

header a.header-right {
    float: right;
    background: rgba(0, 0, 0, 0);
}

header .open-nav {
    float: left;
    width: 60px;
    cursor: pointer;
    height: 60px;
    margin: 0;
    background: url(/images/menu.svg) no-repeat center center;
    background-size: 25px;
}

header .create-new {
    float: right;
    width: 60px;
    cursor: pointer;
    height: 60px;
    margin: 0;
    background: url(/images/add.svg) no-repeat center center;
    background-size: 22px;
}

header .open-search {
    float: left;
    width: 60px;
    cursor: pointer;
    height: 60px;
    margin: 0;
    background: url(/images/search.svg) no-repeat center center;
    background-size: 20px;
}

header .backbutton {
    float: left;
    position: relative;
    width: 60px;
    cursor: pointer;
    height: 60px;
    margin: 0;
    background: url(/images/arrow-left.svg) no-repeat center center;
    background-size: 11px;
}

header .backbutton span {
    position: absolute;
    left: 45px;
    top: 1px;
    opacity: 0.8;
    font-size: 15px;
}

header .headerHeadline {
    position: absolute;
    left: 0;
    right: 0;
    max-width: 50%;
    top: 50%;
    margin: 0 auto;
    font-size: 18px;
    font-weight: 400;
    color: rgba(255, 255, 255, 1);
    -webkit-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    transform: translateY(-50%);
}

.standalone header .headerHeadline {
    top: 35px;
}

header .moreOptions {
    float: right;
    position: relative;
    width: 60px;
    cursor: pointer;
    height: 60px;
    margin: 0 5px 0 0;
    background: url(/images/more-options.svg) no-repeat center center;
    background-size: 30px;
}

header .moreOptions ul {
    position: absolute;
    right: 10px;
    top: 100px;
    opacity: 0;
    visibility: hidden;
    background: rgba(255, 255, 255, 0.95);
    width: auto;
    margin: 0;
    padding: 0;
    list-style: none;
    border-radius: 5px;
    -webkit-box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
    -moz-box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
    box-shadow: 0px 3px 10px 0px rgba(0, 0, 0, 0.1);
    border: solid 1px rgba(10, 20, 30, 0.1);
}

header .moreOptions ul.options:after {
    content: "";
    display: block;
    position: absolute;
    width: 10px;
    height: 10px;
    top: -10px;
    right: 10px;
    width: 0;
    height: 0;
    overflow: visible;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;

    border-bottom: 10px solid rgba(255, 255, 255, 0.95);
}

header .moreOptions ul.options.open {
    top: 65px;
    opacity: 1;
    visibility: visible;
}

header .moreOptions ul li {
    min-width: 300px;
    max-width: 700px;
    height: 60px;
    padding: 0;
    overflow: hidden;
    border-bottom: solid 1px rgba(10, 20, 30, 0.1);
}

header .moreOptions ul li:last-child {
    border-bottom: solid 1px rgba(10, 20, 30, 0);
}

header .moreOptions ul li a {
    display: block;
    width: 100%;
    height: 60px;
    text-align: left;
    padding: 0 20px;
    color: rgba(10, 20, 30, 0.8);
}

header .moreOptions ul li a:hover {
    background: rgba(255, 255, 255, 0.04);
    border-bottom: solid 1px rgba(255, 255, 255, 0.1);
}

body.open header {
    transform: translate3d(250px, 0, 0);
    -moz-transform: translate3d(250px, 0, 0);
    -webkit-transform: translate3d(250px, 0, 0);
}

.subheader {
    position: sticky;
    position: -webkit-sticky;
    left: 0;
    top: 0;
    width: 100%;
    height: auto;
    z-index: 9994;
}

@media (max-width: 768px) {
    header .moreOptions {
        width: 50px;
    }

    header .headerHeadline {
        max-width: 40%;
        font-size: 17px;
    }

    header .backbutton {
        width: 50px;
    }

    header .open-search {
        width: 50px;
    }

    header .open-nav {
        width: 50px;
    }

    header .create-new {
        width: 50px;
    }

}

/* Navigation */
nav {
    position: absolute;
    left: 0px;
    top: 0;
    width: 250px;
    height: 100%;
    z-index: 0;
    background: rgba(10, 20, 30, 1);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    -webkit-transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    -webkit-transform-origin: 0px 0px;
    -webkit-transition: -webkit-transform 0ms;
}

nav ul {
    list-style: none;
    width: 100%;
    margin: 0;
    padding: 0;
}

nav ul li {
    display: block;
    height: auto;
    width: 100%;
    list-style: none;
}

nav ul li.nav-kat {
    height: 60px;
    color: rgba(255, 255, 255, 1);
    font-size: 14px;
    line-height: 80px;
    padding: 0 25px;
}

nav ul li a {
    display: block;
    padding: 0 25px;
    width: 100%;
    height: 60px;
    line-height: 60px;
    font-size: 16px;
    background: rgba(255, 255, 255, 0.05);
    color: rgba(255, 255, 255, 0.8);
    font-weight: 400;
    text-decoration: none;
    margin: 1px 0 0 0;
}

nav ul li a:hover {
    color: rgba(255, 255, 255, 1);
}

/* Main */
main {
    position: relative;
    width: 100%;
    height: 100%;
    background: rgba(230, 235, 240, 1);
    z-index: 100;
    overflow: hidden;
    -webkit-transform: translate3d(0, 0, 0);
    -webkit-backface-visibility: hidden;
    -webkit-box-shadow: 0px 0px 0px 2px rgba(0, 0, 0, 0.5);
    -moz-box-shadow: 0px 0px 0px 2px rgba(0, 0, 0, 0.5);
    box-shadow: 0px 0px 0px 2px rgba(0, 0, 0, 0.5);
}

.content {
    -webkit-overflow-scrolling: touch;
    background: rgba(235, 235, 240, 1);
    margin: 60px 0 0 0;
    overflow-x: hidden !important;
}

.standalone .content {
    padding: 75px 0 0 0;
}

body.open main {
    transform: translate3d(250px, 0, 0);
    -moz-transform: translate3d(250px, 0, 0);
    -webkit-transform: translate3d(250px, 0, 0);
}

/* Buttons */
.button {
    cursor: pointer;
    position: relative;
    display: block;
    text-align: center;
    margin: 30px 0;
    padding: 0;
    width: 100%;
    border: none;
    border-top: 1px solid rgba(230, 230, 230, 1);
    border-bottom: 1px solid rgba(230, 230, 230, 1);
    color: rgba(10, 20, 30, 1);
    height: 55px;
    line-height: 55px;
    background: rgba(255, 255, 255, 1);
}

.button.deleteButton {
    background: rgba(255, 40, 50, 1);
    color: rgba(255, 255, 255, 1);
}

.button.formButton {
    position: relative;
    margin: 0;
    padding: 0;
    background: rgba(160, 170, 180, 1);
    color: rgba(255, 255, 255, 1);
    border-color: #FFF;
}

.button.formButton.margin {
    margin: 0 0 20px 0;
}

.button.readonly {
    display: none !important;
}

.button.stacked + .button.stacked {
    margin-top: 0;
}

.pdfView {
    position: relative;
    width: 100%;
    background: rgba(230, 235, 240, 1);
    text-align: center;
}

.pdfControls {
    position: relative;
    width: 100%;
    height: 60px !important;
    background: rgba(15, 30, 50, 1);
}

.pdfView canvas {
    margin: 2vh 0;
    display: inline-block;
}

.pdfControls {
    width: 100%;
}

.pdfControls button {
    float: left;
    width: 50%;
    background: transparent;
    border: none;
    outline: none;
    height: 60px;
    text-align: center;
    margin: 0;
    padding: 0;
    color: #FFF;
    font-size: 16px;
    font-weight: 300;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

.pdfControls a {
    float: left;
    width: 33.33%;
    background: transparent;
    border: none;
    outline: none;
    height: 60px;
    line-height: 60px;
    text-align: center;
    margin: 0;
    padding: 0;
    color: #FFF;
    font-size: 16px;
    font-weight: 300;
    border-right: 1px solid rgba(255, 255, 255, 0.06);
}

/* Patients-List */
.list {
    position: relative;
    display: block;
    list-style: none;
    margin: 0;
    padding: 0;
    width: 100%;
    height: auto;
}

.list li {
    position: relative;
    width: 100%;
    height: 60px;
    line-height: 60px;
    background: rgba(255, 255, 255, 1);
    margin: 1px 0 0 0;
    padding: 0 30px;
    cursor: pointer;
}

.list li a {
    display: block;
    width: 100%;
    height: 60px;
    line-height: 60px;
    text-decoration: none;
    color: rgba(10, 20, 30, 1);
}

.list li a span {
    color: rgba(10, 20, 30, 0.5) !important;
    font-size: 14px;
    padding: 0 10px 0 5px;
}

.list li div.buttonarea {
    position: absolute;
    top: 0;
    right: 0;
}

.list li div.buttonarea a.actionButton {
    float: right;
    width: 40px;
    text-indent: -3000px;
}

.list li .arrow {
    position: absolute;
    width: 60px;
    height: 60px;
    top: 0;
    right: 20px;
    background: url(/images/arrow-right.svg) no-repeat;
    background-position: right center;
    background-size: 8px;
}

.list li.indented {
    padding-left: 50px;
}

.list li.indented .arrow {
    right: auto;
    left: 15px;
    background-position: left center;
}

.list li.treeCut a span {
    color: rgba(255, 40, 50, 1) !important;
}

.listHeadline {
    position: relative;
    display: block;
    width: 100%;
    height: 40px;
    padding: 0 20px;
    line-height: 45px;
    font-size: 14px;
    background: rgba(235, 235, 240, 1);
    font-weight: 300;
}

.emptyCollectionMessage {
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    text-align: center;
}

.noResults {
    position: absolute;
    left: 0;
    top: 50%;
    width: 100%;
    text-align: center;
}

/* Tabs */
.tabs {
    position: relative;
    margin: 0;
    padding: 0;
    width: 100%;
    height: 60px;
    overflow: hidden;
    z-index: 9994;
}

.tabs .tab {
    float: left;
    cursor: pointer;
    width: 33.33%;
    height: 60px;
    color: rgba(255, 255, 255, 1);
    line-height: 60px;
    font-size: 16px;
    font-weight: 400;
    text-decoration: none;
    text-align: center;
}

.tabs .tab25 {
    width: 25%;
}

.tabs .tab20 {
    width: 20%;
}

@media (max-width: 900px) {

    .tabs .tab {
        font-size: 14px;
    }
}

.search {
    positon: relative;
    padding: 20px 20px 20px 60px;
    width: 100%;
    height: 60px;
    font-weight: 300;
    color: rgba(255, 255, 255, 1);
    border: none;
    outline: none;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0;
    background: rgba(15, 30, 50, 1) url(/images/search.svg) no-repeat 20px center;
    background-size: 20px;
}

/* Forms */
.normalform {
    position: relative;
    width: 100%;
    border: none;
}

.normalform fieldset {
    float: left;
    position: relative;
    margin: 0;
    padding: 40px 20px 0 20px;
    background: rgba(255, 255, 255, 1);
    border: none;
    border-right: 1px solid rgba(240, 240, 240, 1);
}

.normalform fieldset .fieldlabel {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 40px;
    padding: 0 20px;
    line-height: 45px;
    font-size: 14px;
    background: rgba(235, 235, 240, 1);
    font-weight: 300;
}

.normalform fieldset .fieldlabel .shortcuts {
    float: right;
    text-align: right;
    font-size: 18px;
}

.normalform .form-group {
    position: relative;
    border-top: 1px solid rgba(230, 230, 235, 1);
    height: 55px;
}

.normalform .form-group .control-label {
    float: left;
    font-size: 17px;
    font-weight: 400;
    width: 40%;
    height: 55px;
    line-height: 54px;
    overflow: hidden;
}

.normalform .form-group input[type="text"], .normalform .form-group input[type="email"], .normalform .form-group input[type="password"], .normalform .form-group input[type="date"], .normalform .form-group input[type="time"], .normalform .form-group input[type="number"] {
    float: left;
    border: none;
    outline: none;
    width: 60%;
    margin-top: 0;
    padding: 10px 10px;
    height: 54px;
    font-size: 17px;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0;
}

.normalform .form-group textarea {
    float: left;
    border: none;
    outline: none;
    width: 60%;
    padding: 17px 10px;
    font-size: 17px;
    -webkit-appearance: none;
    appearance: none;
    border-radius: 0;
}

.normalform .help-block {
    position: absolute;
    top: 5px;
    right: 0;
    font-size: 11px;
    color: rgba(255, 40, 50, 1);
    height: auto;
}

.checkbox label {
    float: left;
    font-size: 17px;
    padding: 16px 0;
    width: 100%;
}

.checkbox input {
    float: right;
}

.normalform .form-group input[type="file"] {
    float: left;
    width: 60%;
}

input[type="checkbox"] {
    opacity: 1;
}

input[type="checkbox"]:checked + .checkbox {
    opacity: 0;
}

.switchery {
    position: absolute;
    top: 10px;
    right: 0;
}

.ui-chatbox {
    position: absolute;
    left: 0;
    top: 60px;
}

.normalform fieldset.lg-25 {
    width: 25%;
}

.normalform fieldset.lg-33 {
    width: 33.333%;
}

.normalform fieldset.lg-50 {
    width: 50%;
}

.normalform fieldset.lg-66 {
    width: 66.66%;
}

.normalform fieldset.lg-75 {
    width: 75%;
}

.normalform fieldset.lg-100 {
    width: 100%;
}

.normalform .pushRight {
    padding: 0 0 0 30px;
}

@media (max-width: 1025px) {
    .normalform fieldset.sm-50 {
        width: 50%;
    }

    .normalform fieldset.sm-100 {
        width: 100%;
    }

    .normalform .form-group .control-label {
        float: left;
        font-size: 16px;
        font-weight: 400;
        width: 50%;
        height: 55px;
        line-height: 54px;
    }

    .normalform .form-group input[type="text"], .normalform .form-group input[type="email"], .normalform .form-group input[type="password"], .normalform .form-group input[type="date"], .normalform .form-group input[type="time"], .normalform .form-group input[type="number"], .normalform .form-group input[type="file"] {
        float: left;
        border: none;
        outline: none;
        width: 50%;
        margin-top: 0;
        padding: 10px 10px;
        height: 54px;
        font-size: 16px;
        -webkit-appearance: none;
        appearance: none;
        border-radius: 0;
    }

    .normalform .form-group textarea {
        float: left;
        border: none;
        outline: none;
        width: 50%;
        padding: 17px 10px;
        font-size: 16px;
        -webkit-appearance: none;
        appearance: none;
        border-radius: 0;
    }

}

/* Box */
.box {
    float: left;
    margin: 0;
    padding: 0;
    border: solid 1px rgba(240, 240, 240, 1);
}

.box.lg-25 {
    width: 25%;
}

.box.lg-33 {
    width: 33.333%;
}

.box.lg-50 {
    width: 50%;
}

.box.lg-66 {
    width: 66.66%;
}

.box.lg-75 {
    width: 75%;
}

.box.lg-100 {
    width: 100%;
}

.box .boxContent {
    position: relative;
    display: block;
    width: 100%;
    padding: 30px;
    background: rgba(255, 255, 255, 1);
    text-align: center;
    text-decoration: none;
    outline: none;
}

.box .boxContent img {
    height: 90px;
    -webkit-animation-duration: 1s; /* Chrome, Safari, Opera */
    animation-duration: 1s;
}

.box .boxContent img.small {
    padding: 5px 0;
}

.box .boxContent span {
    display: block;
    width: 100%;
    margin: 30px 0 0 0;
    text-align: center;
    color: rgba(10, 20, 30, 1);
    font-size: 22px;
    font-weight: 300;
}

.box.stats .boxContent span {
    display: block;
    width: 100%;
    margin: 0;
    text-align: center;
    color: rgba(10, 20, 30, 1);
    font-size: 40px;
    font-weight: 300;
    line-height: 25px;
}

.box.stats .boxContent i {
    color: rgba(10, 20, 30, 0.5);
    font-size: 16px;
    font-weight: 300;
}

.box.contact .boxContent span {
    display: block;
    width: 100%;
    margin: 0;
    text-align: center;
    color: rgba(10, 20, 30, 1);
    font-size: 25px;
    font-weight: 300;
    line-height: 25px;
}

.box.contact .boxContent i {
    color: rgba(10, 20, 30, 0.5);
    font-size: 16px;
    font-weight: 300;
}

.box .boxContent.bigLink {
    padding: 10vh 30px;
}

.box .chartWrapper {
    position: relative;
    width: 100%;
}

.pc-dimmer {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
    background: #000;
    -webkit-animation: pc-dimmer 500ms ease both;
    animation: pc-dimmer 500ms ease both;
}

.form-group > .irs {
    float: left;
    width: 60%;
}

span.showMobile {
    display: none;
}

@media (max-width: 900px) {
    .form-group > .irs {
        float: left;
        width: 50%;
    }
}

@media (max-width: 900px) {
    .box.sm-50 {
        width: 50%;
    }

    .box.sm-100 {
        width: 100%;
    }
}

@media (max-width: 900px) {

    .hideMobile {
        display: none;
    }

    span.showMobile {
        display: inline;
    }

    header .backbutton span {
        display: none;
    }

    header .headerHeadline {
        font-size: 16px;
    }
}

/* Colors */
.bg-blue {
    background: rgba(25, 50, 80, 1);
}

.bg-darkblue {
    background: rgba(15, 30, 50, 1);
}

.bg-red {
    background: rgba(255, 40, 50, 1);
}

.bg-grey {
    background: rgba(160, 170, 180, 1);
}

.wundgraduierungForm .control-label {
    display: none;
}

.custom-box {
    display: table;
    width: 100%;
}

.custom-box [type="checkbox"],
.custom-box [type="radio"] {
    display: none;
}

.custom-box span {
    position: relative;
    width: 100%;
    height: 80px;
    text-align: center;
    display: block;
    color: #FFF;
    cursor: pointer;
    background: rgba(0, 0, 0, 0.6);
    border: 0;
    font-size: 15px;
    display: table-cell;
    vertical-align: middle;
    pointer-events: none;
}

.custom-box [type="checkbox"]:checked ~ span,
.custom-box [type="radio"]:checked ~ span {
    background: rgba(0, 0, 0, 1);
}

#iron-router-progress {
    background-color: rgba(255, 40, 50, 1) !important;
    box-shadow: none !important;
    z-index: 9999 !important;
    height: 2px;
}

.patientContact {
    width: 100%;
    padding: 20px 0;
    border-bottom: 1px solid rgba(10, 20, 30, 0.1);
}

.patientContact .patientContactName {
    font-size: 17px;
    font-weight: 400;
}

.patientContact .patientContactName span {
    color: rgba(10, 20, 30, 0.5);
    padding: 0 0 0 10px;
}

.modal {
    position: fixed;
    left: 0;
    top: 100%;
    width: 100%;
    height: 100vh;
    background: rgba(235, 235, 240, 0.9);
    z-index: 9991;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 300ms ease-in-out;
    -moz-transition: all 300ms ease-in-out;
    -o-transition: all 300ms ease-in-out;
    -ms-transition: all 300ms ease-in-out;
    transition: all 300ms ease-in-out;
}

.modal.open {
    visibility: visible;
    opacity: 1;
    transform: translate3d(0, -100%, 0);
    -moz-transform: translate3d(0, -100%, 0);
    -webkit-transform: translate3d(0, -100%, 0);
}

.modal .modalHeader {
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 60px;
    z-index: 9992;
    background: rgba(255, 255, 255, 0.9);
    text-align: center;
    border-bottom: 1px solid rgba(10, 20, 30, 0.1);
}

.modal .modalHeader .headerHeadline {
    position: absolute;
    left: 0;
    right: 0;
    max-width: 50%;
    top: 19px;
    margin: 0 auto;
    font-size: 18px;
    font-weight: 400;
    color: rgba(10, 20, 30, 1);
}

.modal .modalHeader .closeModal {
    float: right;
    width: auto;
    height: 60px;
    font-size: 17px;
    font-weight: 400;
    padding: 0 30px;
    color: rgba(10, 20, 30, 1);
    background: url('/images/arrow-down.svg') no-repeat center left;
    background-size: 20px;
    line-height: 60px;
}

.modal .modalContent {
    width: 100%;
    height: 100vh;
    padding: 60px 0 0 0;
    overflow: auto;
}

div.iconTabs-container ul.tabs-list {
    margin: 8px 0;
    padding: 0 15px;
    display: -webkit-box;
    -webkit-flex-direction: row;
    -webkit-flex-wrap: wrap;
    -webkit-align-items: stretch;
    -webkit-justify-content: space-between;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: stretch;
    justify-content: space-between;
    list-style: none;

}

div.iconTabs-container ul.tabs-list li.tab-item {
    font-size: 14px;
    font-weight: normal;
    list-style: none;
    display: inline-block;
    padding: 13px 13px;
    margin: 0;
    cursor: pointer;
    border: 1px solid #ddd;
    background-color: #fff;
    -webkit-flex: 1;
    flex: 1;
    text-align: center;
}

div.iconTabs-container ul.tabs-list li.tab-item.active {
    border-color: #2C3E50;
    color: #2C3E50;
}

div.iconTabs-container ul.tabs-list li.tab-item img {
    width: 20px;
    height: 20px;
}

@media (max-width: 1025px) {
    div.iconTabs-container ul.tabs-list li.tab-item {
        padding: 3px 5px;
    }
}

a.actionButton.edit {
    background: url("/images/settings.svg") no-repeat center center;
    background-size: 20px 20px;
}

a.actionButton.delete {
    background: url("/images/delete.svg") no-repeat center center;
    background-size: 25px 25px;
}

.form-mapwrapper {
    height: 300px;
    position: relative;
}

.form-mapwrapper .leaflet-popup-content-wrapper {
    border-radius: 0;
    box-shadow: 0 3px 6px rgba(0, 0, 0, 0.4);
    width: 500px;
}

@media (max-width: 1025px) {

    .form-mapwrapper .leaflet-popup-content-wrapper {
        width: 340px;
    }
}

.form-mapwrapper .leaflet-popup-content-wrapper .leaflet-popup-content {
    width: 100% !important;
    margin: 0;
}

.form-mapwrapper .leaflet-popup-content-wrapper .normalform fieldset {
    border: none;
    float: none;
}

.form-mapwrapper .leaflet-popup-content-wrapper .normalform .form-group:first-of-type {
    border-top: 0 none;
}

.form-mapwrapper .leaflet-popup-content-wrapper .button {
    display: block;
    color: rgba(10, 20, 30, 1);
    font: 16px 'Roboto', sans-serif;
    line-height: 55px;
    text-decoration: none;
    text-align: center;
}

.-autocomplete-container {
    position: absolute;
    left: 40% !important;
    top: 55px !important;
}

.form-group .at-nouislider {
    float: left;
    width: 60%;
    margin-top: 8px;
}

.form-group .at-nouislider .noUi-connect {
    background: #2C3E50;
}

.form-group .at-nouislider .noUi-base {
    z-index: 2;
}

.form-group .at-nouislider .noUi-pips {
    padding: 0;
    z-index: 1;
}

.form-group .at-nouislider .noUi-pips .noUi-marker-horizontal.noUi-marker-large {
    height: 10px;
}

.form-group .at-nouislider .noUi-pips .noUi-value-horizontal {
    padding-top: 15px;
}

.form-group .select2-container {
    width: 60% !important;
}

.form-group .select2-container--default .select2-selection--single {
    border: none;
    height: 55px;
}

.form-group .select2-container--default .select2-selection--single .select2-selection__rendered {
    font-size: 17px;
    line-height: 54px;
    padding: 0 10px;
    overflow: hidden;
    position: absolute;
    width: 90%;
}

.form-group .select2-container--default .select2-selection--single .select2-selection__arrow {
    content: "";
    display: block;
    position: absolute;
    width: 40px;
    height: 54px;
    top: 0;
    right: 10px;
    background: url(/images/arrow-down.svg) right center no-repeat;
    background-size: 18px;
}

.form-group .select2-container--default .select2-selection--single .select2-selection__arrow b {
    display: none;
}

.form-group .select2-container:focus, .form-group .select2-container *:focus {
    border: none;
    outline: none;
}

.form-group .select2-container--default.select2-container--disabled .select2-selection--single {
    background: #ffffff;
}

.form-group .select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__arrow {
    display: none;
}

@media (max-width: 1025px) {

    .form-group .at-nouislider, .form-group .select2-container {
        width: 50% !important;
    }
}

main.fullscreen .content {
    margin: 0;
}

@media print {
    .no-print, .no-print * {
        display: none !important;
    }

    .leaflet-control-container {
        display: none !important;
    }
}
