/* ~/Content/piranya/default.scss */
p, h1, h2, h3, h4, h5, h6 {
  padding: 0px;
  margin: 0px; }

p {
  font-size: 0.8em; }

body {
  line-height: 1.15; }

input[type=checkbox] {
  margin: 0px; }

input[type=submit] {
  margin: 0px; }

input[type="email"],
input[type="tel"],
input[type="text"] {
  margin: 0px; }

textarea {
  margin: 0px;
  overflow: auto; }

.piranya-view {
  width: 100%; }
  .piranya-view > .piranya-breadcrumb-wrapper,
  .piranya-view > .piranya-view-content,
  .piranya-view > .piranya-view-description,
  .piranya-view > .piranya-view-headline {
    float: left;
    clear: both;
    width: 100%; }

#piranya-page > .piranya-view {
  align-items: center;
  display: flex;
  flex-direction: column; }
  #piranya-page > .piranya-view > .piranya-view-center {
    align-items: center;
    box-sizing: border-box;
    display: flex;
    flex: 0 1;
    flex-direction: column; }
  #piranya-page > .piranya-view > .piranya-breadcrumb-wrapper,
  #piranya-page > .piranya-view > .piranya-view-content,
  #piranya-page > .piranya-view > .piranya-view-description,
  #piranya-page > .piranya-view > .piranya-view-headline {
    max-width: 1200px; }

div.negative p,
p.negative {
  color: red; }

div.positive p,
p.positive {
  color: #208220; }

/*Start Views*/
.piranya-view-cookies .piranya-view-content h2, .piranya-view-cookies .piranya-view-content p {
  margin-bottom: 10px; }

/*End views*/
.piranya-align-children-center {
  /* Internet Explorer 10 */
  display: -ms-flexbox;
  -ms-flex-pack: center;
  -ms-flex-align: center;
  /* Firefox */
  display: -moz-box;
  -moz-box-pack: center;
  -moz-box-align: center;
  /* Safari, Opera, and Chrome */
  display: -webkit-box;
  -webkit-box-pack: center;
  -webkit-box-align: center;
  /* W3C */
  display: flex;
  box-pack: center;
  box-align: center;
  align-items: center;
  justify-content: center; }

.piranya-no-user-select {
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  cursor: default; }

.piranya-icon-text {
  display: inline-block;
  font-family: FontAwesome;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale; }

.hide,
.loaded .hide-after-ancestor-loaded,
.loaded > .hide-after-parent-loaded,
.loaded.hide-after-loaded {
  display: none; }

.hide-under {
  position: absolute;
  z-index: -9999; }

.p-loading {
  background-image: url('/content/v1.0.7171.259471/piranya/images/loading.gif');
  background-position: 50% 50%;
  background-repeat: no-repeat;
  min-height: 32px; }

p .horizontal-ruler {
  width: 100%;
  border-bottom: 1px solid black;
  display: block;
  margin: 10px 0; }


/* ~/Content/piranya/default-animations.css */
.fadeIn {
    animation-name: fadeIn;
    animation-duration: 0.8s;
    animation-timing-function: ease-in-out;
    visibility: visible !important;
}

@keyframes fadeIn {
    from { opacity: 0; }
    to   { opacity: 1; }
}

/* Add fallback for legacy fadein (without correct capitalization) */
@keyframes fadein {
    from { opacity: 0; }
    to   { opacity: 1; }
}

.fadeInBounce {
    animation-name: fadein;
    animation-duration: 0.8s;
    animation-timing-function: ease-in-out;
    visibility: visible !important;
}

@keyframes fadeInBounce {
    0% {
        transform: scale(0);
        opacity: 0.0;
    }

    60% {
        transform: scale(1.1);
    }

    80% {
        transform: scale(0.9);
        opacity: 1;
    }

    100% {
        transform: scale(1);
        opacity: 1;
    }
}

/* ~/Content/piranya/media-queries.css */
/* Landscape phones and down */
@media (max-width: 480px) {
    .piranya-ltw480-show {
        display: block !important;
    }

    .piranya-ltw480-hide {
        display: none !important;
    }

    .piranya-ltw480-full-width {
        width: 100% !important;
    }
}

/* Landscape phone to portrait tablet */
@media (max-width: 767px) {
    .piranya-ltw767-show {
        display: block !important;
    }

    .piranya-ltw767-hide {
        display: none !important;
    }

    .piranya-ltw767-full-width {
        width: 100% !important;
    }
}
@media (max-width: 640px) {
    .piranya-ltw640-show {
        display: block !important;
    }

    .piranya-ltw640-hide {
        display: none !important;
    }

    .piranya-ltw640-full-width {
        width: 100% !important;
    }
}
@media (max-width: 979px) {
    .piranya-ltw979-show {
        display: block !important;
    }

    .piranya-ltw979-hide {
        display: none !important;
    }

    .piranya-ltw979-full-width {
        width: 100% !important;
    }
}
/* Portrait tablet to landscape and desktop */
@media (min-width: 768px) and (max-width: 979px) {
    .piranya-gtw768-ltw979-show {
        display: block !important;
    }

    .piranya-gtw768-ltw979-hide {
        display: none !important;
    }

    .piranya-gtw768-ltw979-full-width {
        width: 100% !important;
    }
}

@media (min-width: 481px) {
    .piranya-gtw481-show {
        display: block !important;
    }

    .piranya-gtw481-hide {
        display: none !important;
    }

    .piranya-gtw481-full-width {
        width: 100% !important;
    }
}

@media (min-width: 768px) {
    .piranya-gtw768-show {
        display: block !important;
    }

    .piranya-gtw768-hide {
        display: none !important;
    }

    .piranya-gtw768-full-width {
        width: 100% !important;
    }
}
/* Large desktop */
@media (min-width: 980px) {
    .piranya-gtw980-show {
        display: block !important;
    }

    .piranya-gtw980-hide {
        display: none !important;
    }

    .piranya-gtw980-full-width {
        width: 100% !important;
    }
}

/* ~/Content/piranya/default-menu.css */
.piranya-menu {
    padding: 0px;
    margin: 0px;
    list-style: none;
    margin: 0 auto 0 auto;
    width: auto;
    display: inline-block;
}

    .piranya-menu > li {
        float: left;
    }

        .piranya-menu > li > a {
            display: inline-block;
            width: 100%;
            text-decoration: none;
        }

/*Piranya breadcrumb default style*/

.piranya-breadcrumb-wrapper {
    width: 100%;
    margin-bottom: 10px;
    font-size: 0.8em;
}

.piranya-breadcrumb-wrapper > * {
    float: left;
    line-height: 1em;
    font-size: 1em;
    text-decoration: none;
    width: auto;
    padding: 0.1em 0;
}

.piranya-breadcrumb-wrapper > .separator {
    padding: 0.15em 5px;
    width: auto;
    margin: 0;
}

/* ~/Content/piranya/default-form.css */
.piranya-input-container {
    width: 100%;
    margin-bottom: 10px;
}

.piranya-input-container:last-of-type {
    margin-bottom: 0;
}

.piranya-validation-container {
    width: 100%;
}

.piranya-btn {
    padding: 5px 10px;
    cursor: pointer;
    border: none;
    background-color: black;
    color: white;
    white-space: normal;
    -webkit-appearance: none;
}

.piranya-btn-disabled,
.piranya-btn.disabled,
.piranya-btn[disabled] {
    cursor: not-allowed;
    opacity: 0.5;
}

button.piranya-btn > p {
    color: inherit;
    font-size: 1em;
    line-height: 1em;
}

.btn {
    cursor: pointer;
    transition: color 0.2s ease;
}

.piranya-input-container > label {
    width: 100%;
    float: left;
    margin-bottom: 5px;
}

.piranya-input-container.p-checkbox > label,
.piranya-input-container.p-radio > label {
    margin-bottom: 0;
}

.piranya-input-container.p-checkbox > .description {
    padding-left: 28px;
    width: calc(100% - 28px);
}

input.piranya-checkbox {
    margin-right: 5px;
}

.piranya-select {
    padding: 6px 5px;
    margin: 0;
    font-size: 1em;
    border-radius: 0;
    box-sizing: border-box;
    width: 100%;
}

    .piranya-select:focus {
        font-size: 1em;
    }

.piranya-txt,
.piranya-textarea {
    box-sizing: border-box;
    font-size: 1em;
    padding: 0.36em 0.32em;
}

    .piranya-txt.disabled,
    .piranya-textarea.disabled {
        background-color: rgb(235, 235, 228);
        pointer-events: none;
    }

.piranya-error-container {
    width: 100%;
    margin-bottom: 10px;
}

.piranya-label-must-be-filled {
    color: red;
}

.validation-message {
    color: red;
}

/* p-icon-button */

.p-icon-button {
    box-sizing: border-box;
    padding: 0.5em;
    float: left;
    border-radius: 0.5em;
    display: flex;
    align-items: center;
    text-decoration: none;
}

    .p-icon-button > .icon {
        margin-right: 0.63em;
        text-shadow: 5px 5px 15px black;
        font-size: 1.3em;
    }

    .p-icon-button > .action {
        float: right;
        font-size: 0.8em;
        padding-left: 0.63em;
        border-style: solid;
        border-width: 0 0 0 1px;
    }

/* end of p-icon-button */

/* Search box */

div.piranya-searchbox {
    position: relative;
}

div.piranya-searchbox > input {
    padding: 3px 10% 3px 3px;
    font-size: inherit;
    color: inherit;
    margin-bottom: 0;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border: 1px solid #ececec;
    border-radius: 3px;
    outline: 0;
    box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
    transition: border-color ease-in-out .15s, box-shadow ease-in-out .15s;
}

div.piranya-searchbox > .button-wrapper {
    position: absolute;
    right: 0;
    height: 100%;
}

div.piranya-searchbox button {
    height: 100%;
    padding: 0 15%;
    font-size: inherit;
    color: inherit;
    border: 0;
    background: none;
    cursor: pointer;
}

div.piranya-searchbox > input:focus {
    border-color: #66afe9;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 8px rgba(102,175,233,0.6);
    box-shadow: inset 0 1px 1px rgba(0,0,0,0.075), 0 0 8px rgba(102,175,233,0.6);
}

div.piranya-searchbox > .button-wrapper > button:hover {
    color: #66afe9;
}

/* End of search box */

/* p-radio and p-checkbox */

div.p-radio > input[type="radio"],
input.p-radio[type="radio"],
div.p-checkbox > input[type="checkbox"],
input.p-checkbox[type="checkbox"] {
    position: absolute;
    left: -9999px;
}

div.p-radio > input[type="radio"] + label,
input.p-radio[type="radio"] + label,
div.p-checkbox > input[type="checkbox"] + label,
input.p-checkbox[type="checkbox"] + label {
    position: relative;
    padding-left: 28px;
    padding-top: 2px;
    width: calc(100% - 28px);
    cursor: pointer;
    line-height: 20px;
    display: inline-block;
    cursor: pointer;
}

div.p-radio > input[type="radio"] + label:before,
input.p-radio[type="radio"] + label:before,
div.p-checkbox > input[type="checkbox"] + label:before,
input.p-checkbox[type="checkbox"] + label:before {
    content: '';
    position: absolute;
    left: 0;
    top: calc(50% - 9px);
    width: 18px;
    height: 18px;
    border: 1px solid #c3c3c3;
}

div.p-radio > input[type="radio"] + label:before,
input.p-radio[type="radio"] + label:before {
    border-radius: 100%;
}

div.p-radio > input[type="radio"] + label:after,
input.p-radio[type="radio"] + label:after {
    content: '';
    width: 12px;
    height: 12px;
    background: #709bc5;
    position: absolute;
    top: calc(50% - 5px);
    left: 4px;
    border-radius: 100%;
    opacity: 0;
    transform: scale(0);
    transition: all 0.2s ease;
}

div.p-radio > input[type="radio"]:checked + label:after,
input.p-radio[type="radio"]:checked + label:after {
    opacity: 1;
    transform: scale(1);
}

div.p-checkbox > input[type="checkbox"] + label:after,
input.p-checkbox[type="checkbox"] + label:after {
    content: '';
    position: absolute;
    opacity: 0;
    left: 7px;
    top: calc(50% - 6px);
    width: 4px;
    height: 10px;
    border: solid #709bc5;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg) scale(0);
    transition: all 0.2s ease;
}

div.p-checkbox > input[type="checkbox"]:checked + label:after,
input.p-checkbox[type="checkbox"]:checked + label:after {
    opacity: 1;
    transform: rotate(45deg) scale(1);
}

/* end of p-radio and p-checkbox */

/* p-checkbox-button */

label.p-checkbox-button {
    overflow: hidden;
    position: relative;
}

    label.p-checkbox-button > input {
        position: absolute;
        left: -9999px;
    }

    label.p-checkbox-button > span.status {
        display: flex;
        flex-flow: row nowrap;
        padding: 0.5em 0.3em;
        text-align: center;
        transition: background-color 0.5s ease, color 0.5s ease;
    }

        label.p-checkbox-button > span.status > span {
            box-sizing: border-box;
            color: inherit;
            flex: none;
            opacity: 0;
            width: 100%;
        }

            label.p-checkbox-button > span.status > span:not(:first-child) {
                margin-left: -100%;
            }

    label.p-checkbox-button > input:checked + span.status {
        background: #34b257;
        color: white;
    }

        label.p-checkbox-button > input:checked + span.status > span.checked {
            opacity: 1;
        }

    label.p-checkbox-button > input:not(:checked) + span.status > span.unchecked {
        opacity: 1;
    }

/* end of p-checkbox-button */

/* p-toggle-boxes */

ul.p-toggle-boxes {
    float: left;
    width: 100%;
    margin: 0;
    padding: 0;
    list-style-type: none;
}

ul.p-toggle-boxes > li,
div.p-toggle-box {
    float: left;
    width: 100%;
    margin: 0;
    border: 1px solid #ececec;
    border-radius: 2px;
    padding: 7px 9px;
    box-sizing: border-box;
    transition: all 0.5s ease;
    max-height: 45px;
    overflow: hidden;
}

ul.p-toggle-boxes > li p,
div.p-toggle-box p {
    line-height: 1.15;
}

ul.p-toggle-boxes > li:not(:first-child),
div.p-toggle-box:not(:first-child) {
    margin-top: 5px;
}

ul.p-toggle-boxes > li,
div.p-toggle-box {
    align-items: center;
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
}

ul.p-toggle-boxes > li:not(.disabled),
ul.p-toggle-boxes > li:not(.disabled) > div.p-radio,
ul.p-toggle-boxes > li:not(.disabled) > div.p-radio > input[type="radio"],
ul.p-toggle-boxes > li:not(.disabled) > div.p-checkbox,
ul.p-toggle-boxes > li:not(.disabled) > div.p-checkbox > input[type="checkbox"],
div.p-toggle-box:not(.disabled),
div.p-toggle-box:not(.disabled) > div.p-radio,
div.p-toggle-box:not(.disabled) > div.p-radio > input[type="checkbox"],
div.p-toggle-box:not(.disabled) > div.p-checkbox,
div.p-toggle-box:not(.disabled) > div.p-checkbox > input[type="checkbox"] {
    cursor: pointer;
}

ul.p-toggle-boxes > li > div.p-radio,
ul.p-toggle-boxes > li > div.p-checkbox,
div.p-toggle-box > div.p-radio,
div.p-toggle-box > div.p-checkbox {
    float: left;
    flex: 1;
    width: 100%;
}

ul.p-toggle-boxes > li > .content,
div.p-toggle-box > .content {
    padding: 0;
}

ul.p-toggle-boxes > li > .right,
div.p-toggle-box > .right {
    float: right;
    margin-left: auto;
    padding: 0;
}

ul.p-toggle-boxes > li.selected:not(.disabled),
div.p-toggle-box.selected:not(.disabled) {
    border-color: #709bc5;
    max-height: 160px;
}

ul.p-toggle-boxes > li.selected:not(.disabled) > .content,
ul.p-toggle-boxes > li.selected:not(.disabled) > .right,
div.p-toggle-box.selected:not(.disabled) > .content,
div.p-toggle-box.selected:not(.disabled) > .right {
    color: #709bc5;
}

ul.p-toggle-boxes > li > *,
ul.p-toggle-boxes > li > .content .choice,
ul.p-toggle-boxes > li > .right.choice,
ul.p-toggle-boxes > li > .right .choice,
div.p-toggle-box > *,
div.p-toggle-box > .content .choice,
div.p-toggle-box > .right.choice,
div.p-toggle-box > .right .choice {
    opacity: 1;
    transition: all 0.5s ease;
}

ul.p-toggle-boxes > li.disabled > *,
div.p-toggle-box.disabled > * {
    opacity: 0.3;
}

ul.p-toggle-boxes > li:not(.selected):not(.disabled) > .right,
div.p-toggle-box:not(.selected):not(.disabled) > .right {
    opacity: 0.7;
}

ul.p-toggle-boxes > li:not(.selected) > .right .choice,
div.p-toggle-box:not(.selected) > .right.choice,
div.p-toggle-box:not(.selected) > .right .choice {
    opacity: 0;
    visibility: hidden;
}

ul.p-toggle-boxes > li:not(.selected) > .content,
ul.p-toggle-boxes > li:not(.selected) > .content .choice,
div.p-toggle-box:not(.selected) > .content,
div.p-toggle-box:not(.selected) > .content .choice {
    opacity: 0;
    display: none;
}

ul.p-toggle-boxes > li > .content,
ul.p-toggle-boxes > li > .content > .choice,
div.p-toggle-box > .content,
div.p-toggle-box > .content > .choice {
    width: 100%;
    float: left;
}

ul.p-toggle-boxes > li.selected > .content,
ul.p-toggle-boxes > li.selected > .content > :not(:first-child):not(.empty),
div.p-toggle-box.selected > .content,
div.p-toggle-box.selected > .content > :not(:first-child):not(.empty) {
    margin-top: 10px;
}

ul.p-toggle-boxes > li input[type="text"],
div.p-toggle-box input[type="text"] {
    margin: 0;
    width: 100%;
    box-sizing: border-box;
}

@media all and (-ms-high-contrast: none), (-ms-high-contrast: active) {
    /* IE10+ */

    ul.p-toggle-boxes > li.has-content,
    div.p-toggle-box.has-content {
        display: block; /* Disable flex */
    }
}

/* end of p-toggle-boxes */

/* ~/Content/piranya/styles/piranya-alert-box.scss */
div.p-alert-box {
  align-items: center;
  border-radius: 5px;
  box-shadow: 0px 1px 5px #999;
  box-sizing: border-box;
  display: flex;
  font-size: 1.2em;
  flex-direction: row;
  padding: 0.5em 1em;
  width: 100%; }
  div.p-alert-box:not(:first-child) {
    margin-top: 10px; }
  div.p-alert-box:not(:last-child) {
    margin-bottom: 10px; }
  div.p-alert-box > i.icon,
  div.p-alert-box > p.message {
    color: #ffffff;
    font-size: 1em; }
  div.p-alert-box > i.icon {
    margin-top: 0.1em; }
    div.p-alert-box > i.icon:before {
      font-family: FontAwesome;
      font-size: 1em;
      margin-right: 0.7em; }
  div.p-alert-box.failure {
    background-color: #d20007; }
    div.p-alert-box.failure > .icon:before {
      content: "\f00d"; }
  div.p-alert-box.information {
    background-color: #3498db; }
    div.p-alert-box.information > .icon:before {
      content: "\f129"; }
  div.p-alert-box.notice {
    background-color: #bea474; }
    div.p-alert-box.notice > .icon:before {
      content: "\f0a1"; }
  div.p-alert-box.question {
    background-color: #f1c40f; }
    div.p-alert-box.question > .icon:before {
      content: "\f128"; }
  div.p-alert-box.success {
    background-color: #2ecc71; }
    div.p-alert-box.success > .icon:before {
      content: "\f00c"; }
  div.p-alert-box.tip {
    background-color: #16a085; }
    div.p-alert-box.tip > .icon:before {
      content: "\f0eb"; }
  div.p-alert-box.warning {
    background-color: #e74c3c; }
    div.p-alert-box.warning > .icon {
      margin-top: 0.2em; }
      div.p-alert-box.warning > .icon:before {
        content: "\f12a"; }


/* ~/Content/piranya/module/user/piranya-user.scss */
.piranya-birtday-container.piranya-input-container {
  display: flex;
  flex-direction: row;
  flex-wrap: wrap; }
  .piranya-birtday-container.piranya-input-container > select {
    flex-basis: 32%;
    margin-right: 2%; }
    .piranya-birtday-container.piranya-input-container > select:last-of-type {
      margin-right: 0; }

.piranya-view-users-actions .piranya-view-content {
  margin-top: 20px; }

.piranya-view-users-actions ul.piranya-user-actions {
  list-style-type: none;
  padding: 0;
  margin: 0; }
  .piranya-view-users-actions ul.piranya-user-actions > li {
    margin-bottom: 10px; }
    .piranya-view-users-actions ul.piranya-user-actions > li a {
      transition: background-color 0.4s ease-in-out; }
    .piranya-view-users-actions ul.piranya-user-actions > li .description {
      font-size: 0.8em; }
    .piranya-view-users-actions ul.piranya-user-actions > li > p {
      font-size: 1em; }
    .piranya-view-users-actions ul.piranya-user-actions > li .title {
      border-bottom: 1px solid white;
      margin-bottom: 5px;
      font-size: 1.5em; }

.piranya-view-users-actions .piranya-view-description {
  text-align: center; }

.piranya-view-users-actions .piranya-view-headline {
  text-align: center;
  font-size: 2.5em; }

.piranya-view-users-actions ul.piranya-user-actions > li a,
.piranya-view-users-actions .piranya-view-headline {
  display: block;
  padding: 5px;
  text-decoration: none; }

@media (max-width: 979px) {
  .piranya-view-users-actions ul.piranya-user-actions > li a,
  .piranya-view-users-actions .piranya-view-headline {
    background: rgba(101, 141, 179, 0.8);
    border-radius: 5px; }
  .piranya-view-users-actions ul.piranya-user-actions > li a:hover,
  .piranya-view-users-actions ul.piranya-user-actions > li a:active {
    background: rgba(52, 73, 94, 0.8); }
  .piranya-view-users-actions .piranya-view-headline {
    background: rgba(52, 73, 94, 0.8);
    font-size: 1.5em; } }

.user-action-entity {
  border: 1px solid black;
  border-radius: 5px;
  padding: 10px;
  box-sizing: border-box; }

.piranya-view-users-login > .piranya-view-center > .piranya-view-content > div {
  display: flex;
  flex-direction: column; }


/* ~/Content/piranya/styles/localization.css */
body.language-da .language-da-hide,
body.language-de .language-de-hide,
body.language-en .language-en-hide,
body.language-nl .language-nl-hide
{
    display: none;
}

body.language-da .language-da-show,
body.language-de .language-de-show,
body.language-en .language-en-show,
body.language-nl .language-nl-show
{
    display: block;
}

/* ~/Content/dynamic/fonts */
@font-face {
 font-family: 'Open Sans Regular';
 src: url('/File/1773/opensans-regular-webfont.ttf?ticks=636626723290000000') format('truetype');
}

@font-face {
 font-family: 'Fairfax Station NF Regular';
 src: url('/File/1832/fairfaxstationnf-webfont.ttf?ticks=636637296010000000') format('truetype');
}

@font-face {
 font-family: 'Open Sans Bold';
 src: url('/File/2501/opensans-bold-webfont.ttf?ticks=636626723290000000') format('truetype');
}

/* ~/Content/Piranya/WebViews/Users/PiranyaUserAdministration.css */
#piranya-select-birthdate-day {
    width: 22%;
    margin-right: 2%;
    float: left;
}

#piranya-select-birthdate-month {
    width: 50%;
    margin-right: 2%;
    float: left;
}

#piranya-select-birthdate-year {
    width: 24%;
    float: left;
}

.piranya-profile-picture-container > input {
    width: 100%;
}

/*User actions*/
.piranya-user-actions
{
    list-style-type: none;
    padding: 0px;
    margin: 0px;
}

.piranya-view-users-saved-addresses .piranya-view-content > * {
    float: left;
    clear: both;
    margin-bottom: 10px;
}

.piranya-view-users-saved-addresses h3,
.piranya-view-users-saved-addresses a {
    float: left;
    margin-right: 10px;
}

.piranya-view-users-saved-addresses .piranya-btn {
    margin-top: 5px;
}

.piranya-view-users-saved-addresses h3 {
    width: 100%
}

.piranya-view-users-saved-addresses .piranya-address-container {
    width: 100%;
}

.piranya-view-users-saved-addresses .piranya-address-container div {
    margin-top: 5px;
}

/* ~/Content/Piranya/WebViews/Users/PiranyaLogin.css */

.piranya-user-login-view-seperator {
    left: 50%;
    top: 0%;
    height: 100%;
    position: absolute;
    border-left: 1px dotted black;
}

.piranya-user-login-view-seperator > p {
    -webkit-transform: rotate(-90deg);
    -moz-transform: rotate(-90deg);
    -ms-transform: rotate(-90deg);
    -o-transform: rotate(-90deg);
    transform: rotate(-90deg);
    position: absolute;
    top: 50%;
    left: -32px;
    background-color: white;
    width: 60px;
    text-align: center;
    margin-top: -15px;
}

.piranya-view-users-login {
    display: flex;
    justify-content: center;
}

    .piranya-view-users-login .reason + .piranya-view-content {
        margin-top: 10px;
    }

.piranya-view-center.piranya-login-group {
    width: 100%;
    max-width: 340px;
    background: white;
    box-sizing: border-box;
    padding: 20px;
    display: inline-block;
}

    .piranya-login-group h1.piranya-view-headline,
    .piranya-login-group label,
    .piranya-login-group a {
        color: black;
    }

    .piranya-login-group h1 {
        width: 100%;
    }

.piranya-user-login-view-container .piranya-txt {
    width: 100%;
    box-sizing: border-box;
}

.piranya-user-login-view:not(.register) .register {
    display: none;
}

.piranya-social-media-login-wrapper .piranya-facebook-link {
    background-size: cover;
    background-position: center;
}

.piranya-social-media-login-wrapper .separator {
    height: 25px;
    text-align: center;
    position: relative;
    margin-top: 8px;
    width: 100%;
}

.piranya-social-media-login-wrapper .separator .text {
    display: inline-block;
    font-size: 1em;
    overflow: hidden;
    text-align: center;
	width: 100%;
    color: black;
}

.piranya-social-media-login-wrapper .separator .text:before,
.piranya-social-media-login-wrapper .separator .text:after {
    content: "";
    display: inline-block;
    height: 1px;
    position: relative;
    vertical-align: middle;
    width: 50%;
    background-color: #333;
}
.piranya-social-media-login-wrapper .separator .text:before {
    right: 0.5em;
    margin-left: -50%;
}
.piranya-social-media-login-wrapper .separator .text:after {
    left: 0.5em;
    margin-right: -50%;
}

.piranya-user-login-view > * {
    float: left;
    clear: both;
}

.piranya-user-login-view > :not(:last-child) {
    margin-bottom: 10px;
}

.piranya-user-login-view-remember-container {
    width: 100%;
}

.piranya-user-login-view-action-container a {
    clear: both;
    float: left;
}

.piranya-user-login-view .forgot-password {
    font-size: .9em;
    margin-bottom: 10px;
    float: left;
    clear: both;
}

    .piranya-user-login-view .forgot-password:hover {
        text-decoration: underline;
    }

.piranya-btn-login-wrapper {
    width: 100%;
}

.piranya-btn-login-wrapper > input {
    float: left;
}

.piranya-user-login-view-login, .piranya-user-login-view-guest {
    display: block;
}


@media only screen and (max-width: 979px) {
    .piranya-user-login-view-seperator {
        display: none;
    }

    .piranya-view-users-login .piranya-view-content .piranya-grid .piranya-col {
        width: 100%;
    }

    .piranya-user-login-view-inner-container {
        float: left;
    }
}

/* /content/dynamic/1.css */
body, html
{
    margin: 0px;
    padding: 0px;
    width: 100%;
    height: 100%;
    font-family: open_sansregular;
}
div
{
    float: left;
}
#main-wrapper
{
    min-height: 100%;
    width: 100%;
}
#main
{
    padding-bottom: 50px;
    height: 100%;
    width: 100%;
}
#top-bar
{
    width: 100%;
    height: 115px;
    border-bottom: 10px solid #009ADA;
    top: 0px;
    left: 0px;
    z-index: 1000;
}
#menu-bar > div
{
    width: 100%;
}
.center
{
    float: none;
    margin: 0px auto;
    position: relative;
    max-width: 980px;
    width: 97%;
}
#mobile-graphic
{
    width: 100%;
}
#piranya-page
{
    margin-bottom: 20px;
    width: 100%;
}
#piranya-page a
{
 font-size: 14px;  
}
#subpage-graphic
{
    position: absolute;
    top: 150px;
    left: 0px;
    width: 100%;
    min-height: 90px;
}
#logo
{
    float: left;
    margin-top: 12px;
}
#subpage-top
{
    width: 100%;
    height: 60px;
    background-color: #efeeee;
    margin-top: 89px;
}
#call
{
    float: right;
    margin-top: 7px;
}
#footer
{
    height: 50px;
    width: 100%;
    margin-top: -50px;
}
#footer p
{
    color: white;
    line-height: 100%;
    background-color: #818181;
    font-family: verdana;
    font-size: 13px;
    width: 100%;
    text-align: center;
    display: table-cell;
    vertical-align: middle;
}
.fullsize-bg-img
{
    background-size: 100% 100%;
    min-height: 120px !important;
}

/* /content/dynamic/27.css */
.reference-wrapper
{
    width: 100%;
    margin-bottom: 20px;
}

/* /content/dynamic/16.css */
h3
{
    font-family: open_sansregular;
    font-size: 1.4em;
    color: #CE1F23;
}
.btn-animation, .piranya-btn
{
  -webkit-transition: all 0.2s ease;
     -moz-transition: all 0.2s ease;
       -o-transition: all 0.2s ease;
      -ms-transition: all 0.2s ease;
          transition: all 0.2s ease;
}
.btn-animation:hover, .piranya-btn:hover
{
    opacity: 0.8;
}
input.piranya-btn
{
    padding: 5px 10px;
    cursor: pointer;
    border: none;
    background-color: #009ada;
    color: white;
}
form
{
    width: 100%;
}
label
{
    font-size: 0.8em;
}
.piranya-view-form-wrapper div[data-error]
{
    font-size: 0.8em;
}

/* /content/dynamic/17.css */
@font-face {
    font-family: 'open_sansregular';
    src: url('/file/1775');
    src: url('/file/1775?#iefix') format('embedded-opentype'),
         url('/file/1777') format('woff'),
         url('/file/1773') format('truetype'),
         url('/file/1776#open_sansregular') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'open_sans_bold';
    src: url('/file/2499');
    src: url('/file/2499?#iefix') format('embedded-opentype'),
         url('/file/2502') format('woff'),
         url('/file/2501') format('truetype'),
         url('/file/2500#fairfax') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'fairfax';
    src: url('/file/1834');
    src: url('/file/1834?#iefix') format('embedded-opentype'),
         url('/file/1833') format('woff'),
         url('/file/1832') format('truetype'),
         url('/file/1831#fairfax') format('svg');
    font-weight: normal;
    font-style: normal;
}
ul
{
    list-style-type: none;
}
li > p
{
    background: url('/image/1339') center left no-repeat;
}
li > p
{
    padding-left: 15px;
}

/* /content/dynamic/18.css */
.piranya-menu-wrapper.responsive > ul:not(.open)
{
    color:#009ADA;
}



@media (max-width: 480px) {
    .piranya-menu a
    {
       
    }
}
@media (min-width: 481px) {
    .piranya-menu i, .piranya-menu img, i.piranya-expander
    {
        display: none !important;
    }
}
@media (min-width: 980px) {
    .piranya-menu-wrapper
    {
        float: right;
            margin-top: 40px;
    }
    #piranya-menu-1
    {
        padding-left: 20px;
 
    }
    #piranya-menu-1 li
    {
        margin-right: 15px;
        position: relative;
        height: 41px;
    }
    #piranya-menu-1 li:last-child
    {
        margin-right: 0px;
    }
    #piranya-menu-1 a
    {
        color: #818181;
        font-family: 'open_sans_bold';
        line-height: 30px;
        font-size: 15px;
        vertical-align: middle;
        -webkit-transition: color 200ms;
        -moz-transition: color 200ms;
        -o-transition: color 200ms;
        -ms-transition: color 200ms;
        transition: color 200ms;
    }
    #piranya-menu-1 a:hover
    {
        color: #009ada;
    }
    #piranya-menu-1 li.piranya-menu-item-selected
    {
      
    }
#piranya-menu-1 li:hover > ul
    {
        visibility: visible;
        opacity: 1;
    }
    /*Submenu*/
    #piranya-menu-1 > li > ul
    {
        -webkit-transition: 300ms linear;
        -moz-transition: 300ms linear;
        -o-transition: 300ms linear;
        -ms-transition: 300ms linear;
        transition: 300ms linear;
        visibility: hidden;
        padding: 0px;
        opacity:0;
        position: absolute;
        top: 100%;
        list-style: none;
        z-index: 20000;
        background: url('/image/2465');
        padding-top: 10px;
    }
    #piranya-menu-1 > li > ul li
    {
        float: left;
        position: relative;
        height: 40px;
    }
    #piranya-menu-1 > li > ul li.piranya-menu-item-last
    {
        border-bottom: none;
    }
    #piranya-menu-1 > li > ul li:hover a
    {
        width: 100%;
    }
    #piranya-menu-1 > li > ul a
    {
        color: white;
        padding: 0px 10px;
        text-decoration: none;
        vertical-align: middle;
        float: left;
        z-index: 2;
        position: relative;
        width: 250px;
    }
}

.piranya-menu-wrapper.responsive > ul .content
{
    background-color:#009ADA;
    color:white;


}
.piranya-menu-wrapper.responsive > ul .content a
{
   
    color:white !important;
        padding:20px;
        white-space:nowrap;
    
}

@media (min-width: 980px)
{
 .piranya-menu-wrapper.responsive > ul li:hover > .content {
    /* max-height: 800px; */
    min-height: 250px;
}   
}


.piranya-menu-item-2 > ul .content
{
    background-color:transparent;
}
.piranya-menu-wrapper.responsive ul.open, .piranya-menu-wrapper.responsive ul.open .content
{
        background-color:transparent;
}

/* /content/dynamic/19.css */
@media screen and (max-width: 600px) {

}

/* /content/dynamic/22.css */
@media (max-width: 480px) {
    div.full-width-smartphone
    {
        width: 100%;
    }
    div#top-bar
    {
        height: auto;
        position: inherit;
    }
    div#subpage-top
    {
        margin-top: 0;
    }
}
@media (min-width: 481px) and  (max-width: 979px)
{
    div#top-bar
    {
        
    }
    img#subpage-graphic
    {
        top: 220px;
    }
    div#menu-bar
    {
        background-color: transparent;
        width: 100%;
        top: 130px;
    }
    img#arrow,
    img#call
    {
        display: none;
    }
}
@media (min-width: 601px)
{
    .piranya-gtw601-hide
    {
        display: none;
    }
}
@media (max-width: 600px)
{
    .piranya-ltw600-hide
    {
        display: none;
    }
}

/* /content/dynamic/23.css */
.gallery-wrapper
{
    width: 100%;
    margin-bottom: 20px;
}
.gallery-wrapper > h2
{
    width: 100%;
    margin-bottom: 5px;
}
.gallery-wrapper > div
{
    margin-top: 10px;
}
.gallery-wrapper img
{
    width: 100%;
}

/* /content/dynamic/30.css */
#cars-overview-wrapper
{
    width:100%;
}
 #cars-overview-header
{
    width: 98%;
    padding: 0% 1%;
    height: 30px;
    background-color: #009ada;
  }

#cars-overview-wrapper p
{
    color: black;
    float: left;
}
#cars-overview-wrapper .column-0
{
    width: 20%;

}
#cars-overview-wrapper .column-1
{
    width: 35%;

}
#cars-overview-wrapper .column-2
{
    width: 30%;
}
#cars-overview-wrapper .column-3
{
    width: 15%;
}
.car-overview
{
    width: 98%;
    padding: 1%;
    height: 80px;
    background-color: #fbf9f9;
}
.car-overview *
{
    height: 100%;
    float: left;
    line-height: 80px;
    vertical-align: middle;
}
.car-overview:nth-child(odd)
{
    background-color: #dde4ee;
}

/* /content/dynamic/31.css */
.items-wrapper
{
    width: 100%;
    float: left;
}
.items-wrapper *
{
    float: left;
}
.item-wrapper
{
    border-bottom: 1px solid #49a3db;
    padding: 2%;
    width: 96%;
    margin-bottom: 20px;
}
.item-image-wrapper
{
    max-width: 160px;
    width: 20%;
}
.item-image-wrapper img
{
    width: 100%;
}
.item-wrapper > p
{
    font-weight: bold;
    width: 78%;
    margin-left: 2%;
}
.item-wrapper > p.item-description
{
    font-weight: normal;
}
.item-wrapper > p > span
{
    font-weight: normal;
    float: none;
}
.item-link-wrapper
{
    float: right;
}
.item-link-wrapper a
{
    text-decoration: none;
}
.item-link-wrapper a:hover
{
    text-decoration: underline;
}

/* ~/content/piranya/module/custompage/menues/responsive.scss */
@charset "UTF-8";
.piranya-menu-wrapper.responsive ul ul,
.piranya-menu-wrapper.responsive ul ul li {
  float: left; }

.piranya-menu-wrapper.responsive .content > .p-layout-container > .title {
  display: none;
  /* Title within content is hidden by default */ }

/*Tablet portrait and smartphones*/
@media (max-width: 979px) {
  .piranya-menu-wrapper.responsive ul, .piranya-menu-wrapper.responsive li, .piranya-menu-wrapper.responsive .content {
    width: 100%; }
  body.has-active-menu {
    overflow: hidden; }
  .piranya-menu-wrapper.responsive {
    position: relative; }
  header, footer, #piranya-page {
    transition: transform 0.3s; }
  .piranya-menu-wrapper.responsive > ul {
    width: 32px;
    height: 32px;
    top: 10px;
    right: 10px;
    position: absolute;
    z-index: 1000;
    color: white;
    transition: width 0.3s; }
  .piranya-menu-wrapper.responsive li {
    color: #FFFFFF;
    padding: 0;
    list-style: none;
    font-size: 10px;
    visibility: hidden;
    line-height: 30px;
    transition: transform 0.2s linear;
    transform: translateX(calc(100% + 20px)); }
  .piranya-menu-wrapper.responsive > ul > li {
    padding: 5px 0;
    border-bottom: 1px dashed dimgrey; }
  .piranya-menu-wrapper.responsive li:before {
    position: absolute;
    line-height: 30px;
    vertical-align: middle;
    left: 0; }
  .piranya-menu-wrapper.responsive > ul > li:before {
    content: "\f111"; }
  .piranya-menu-wrapper.responsive > ul ul > li:before {
    content: "\f1db"; }
  .piranya-menu-wrapper.responsive a {
    color: inherit;
    text-decoration: none;
    display: block;
    width: calc(100% - 37px);
    padding: 0px 5px 0px 32px;
    line-height: 200%;
    font-size: 16px;
    text-align: left; }
  .piranya-menu-wrapper.responsive a:hover {
    color: #000; }
  .piranya-menu-wrapper.responsive .piranya-menu-item-selected > a {
    background: #999;
    color: #fff;
    border-radius: 5px;
    display: block;
    /* show menu item if main menu */
    background: none;
    color: #666; }
  .piranya-menu-wrapper.responsive > ul i {
    display: none; }
  .piranya-menu-wrapper.responsive .piranya-menu-wrapper.open {
    width: auto; }
  .piranya-menu-wrapper.responsive {
    margin: 0;
    position: absolute;
    right: 0;
    top: 0; }
  .piranya-menu-wrapper.responsive ul > li > a {
    color: #474C58; }
  .piranya-menu-wrapper.responsive > ul.open {
    background-color: #272822;
    border: 1px solid #aaa;
    box-sizing: border-box;
    height: 100%;
    overflow-x: hidden;
    overflow-y: auto;
    padding: 50px 0 0 20px;
    position: fixed;
    right: 0;
    top: 0;
    width: 300px;
    z-index: 10000; }
  .piranya-menu-wrapper.responsive > ul.closed {
    transition: width 250ms; }
  .piranya-menu-wrapper.responsive > ul.open li {
    transform: translateX(0);
    display: inline-block;
    visibility: visible; }
  .piranya-menu-wrapper.responsive > ul.open a {
    color: white; }
  .piranya-menu-wrapper.responsive > ul.open a:hover {
    color: #cccbcb; }
  .piranya-menu-wrapper.responsive > ul:not(.open) .close-btn {
    display: none; }
  .piranya-menu-wrapper.responsive > ul:not(.open) {
    cursor: pointer;
    overflow: hidden;
    text-align: center;
    line-height: 32px;
    font-size: 32px; }
  .piranya-menu-wrapper.responsive > ul:not(.open):before {
    content: "\f0c9"; }
  .piranya-menu-wrapper.responsive ul.open li.piranya-menu-item-selected:before {
    content: "\f00c"; }
  .piranya-menu-wrapper.responsive ul.open ul li.piranya-menu-item-selected:before {
    content: "\f00c"; }
  .piranya-menu-wrapper.responsive .piranya-menu-item-selected,
  .piranya-menu-wrapper.responsive .piranya-menu-item-selected-ancestor {
    display: block; }
  .piranya-menu-wrapper.responsive .piranya-menu-item-selected-ancestor > a {
    display: none;
    /* hide mainmenu item if ´submenu is selected */ }
  .piranya-menu-wrapper.responsive .piranya-menu-item-selected > a {
    pointer-events: none;
    cursor: default; }
  .piranya-menu-wrapper.responsive li.piranya-menu-item-selected > a {
    display: block;
    /* show only current <li> item */ }
  .piranya-menu-wrapper.responsive li.piranya-menu-item-selected ul {
    display: none; }
  /* on nav hover */
  .piranya-menu-wrapper.responsive ul.open,
  .piranya-menu-wrapper.responsive ul.open {
    background-image: none; }
  .piranya-menu-wrapper.responsive ul.open li, .piranya-menu-wrapper.responsive ul.open .close-btn {
    margin: 0 0 5px; }
  .piranya-menu-wrapper.responsive > ul.open ul {
    padding-left: 35px;
    display: block; }
  .piranya-menu-wrapper.responsive > ul.open ul > li a {
    padding-left: 20px; }
  .piranya-menu-wrapper.responsive ul.open li.piranya-menu-item-selected-root > a {
    display: block; }
  .piranya-menu-wrapper.responsive ul.open li.piranya-menu-item-selected:before {
    content: "\f00c"; }
  .piranya-menu-wrapper.responsive > ul.open > li.piranya-menu-item-selected {
    background-position-x: 10px; }
  .piranya-menu-wrapper.responsive > ul.open .close-btn {
    position: absolute;
    transition: all 0.2s;
    right: 10px;
    top: 10px;
    height: 32px;
    width: 32px;
    font-size: 32px;
    cursor: pointer;
    color: white; }
  .piranya-menu-wrapper.responsive > ul.open .close-btn:hover {
    color: #d89999; }
  .piranya-menu-wrapper.responsive .close-btn:focus {
    outline: none; }
  .piranya-menu-wrapper.responsive .close-btn:before {
    content: "\f061"; }
  .piranya-menu-wrapper.responsive > ul.open .close-btn, .piranya-menu-wrapper.responsive > ul, .piranya-menu-wrapper.responsive li {
    font-family: FontAwesome;
    text-rendering: auto;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale; }
  #piranya-menu-mask {
    position: fixed;
    top: 0;
    left: 0;
    overflow: hidden;
    width: 0;
    height: 0;
    background-color: #000;
    opacity: 0;
    transition: opacity 0.3s, width 0s 0.3s, height 0s 0.3s; }
  #piranya-menu-mask.is-active {
    width: 100%;
    height: 100%;
    opacity: 0.7;
    transition: opacity 0.3s; }
  header.has-push-right, footer.has-push-right, #piranya-page.has-push-right {
    transform: translateX(-300px); } }

@media (min-width: 980px) {
  .piranya-menu-wrapper.responsive > ul ul {
    display: flex;
    flex-direction: column;
    list-style-type: none;
    padding: 0; }
    .piranya-menu-wrapper.responsive > ul ul .content {
      display: none;
      /*Sub submenu not supported yet*/ }
  .piranya-menu-wrapper.responsive > ul a {
    vertical-align: middle;
    float: left; }
  .piranya-menu-wrapper.responsive > ul .content {
    position: absolute;
    overflow: hidden;
    max-height: 0;
    z-index: 1000;
    left: 0;
    top: 100%;
    transition: max-height 0.4s linear; }
  .piranya-menu-wrapper.responsive > ul li:hover > .content {
    max-height: 600px; }
  .piranya-menu-wrapper.responsive .close-btn {
    display: none; }
  .piranya-menu-wrapper.responsive i {
    display: none;
    /*Sub submenu not supported yet*/ }
  .piranya-menu-wrapper.responsive li {
    position: relative; } }


/* Element style 'h1' (#1) */
.piranya-element-style-1,
h1
{
 font-size: 1.8em;
 font-family: open_sans_bold;
 color: #BA3213;
 font-weight: normal;
}

/* Element style 'p' (#2) */
.piranya-element-style-2,
p
{
 font-family: open_sansregular;
 color: #818181;
 font-size: 0.9em;
 line-height: 180%;
}

/* Element style 'h2' (#3) */
.piranya-element-style-3,
h2
{
 font-family: open_sansregular;
 font-size: 1.2em;
 color: #494949;
}