/* ~/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.7212.230521/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=637031577640000000') format('truetype');
}

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

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

@font-face {
 font-family: 'CondBold';
 src: url('/File/2684/opensans-condbold-webfont.eot?ticks=637031469620000000#iefix') format('embedded-opentype'), url('/File/2692/opensans-condbold-webfont.ttf?ticks=637033334250000000') format('truetype'), url('/File/2687/opensans-condbold-webfont.woff?ticks=637031388850000000') format('woff');
}

@font-face {
 font-family: 'Oswald';
 src: url('/File/6314/oswald-regular-webfont.eot?ticks=637031469610000000#iefix') format('embedded-opentype'), url('/File/6317/oswald-regular-webfont.ttf?ticks=637032759940000000') format('truetype'), url('/File/6316/oswald-regular-webfont.woff?ticks=637031525140000000') format('woff');
}

@font-face {
 font-family: 'lobster';
 src: url('/File/6585/Lobster_1.4-webfont.eot?ticks=637033468760000000#iefix') format('embedded-opentype'), url('/File/6587/Lobster_1.4-webfont.ttf?ticks=637033468770000000') format('truetype'), url('/File/6588/Lobster_1.4-webfont.woff?ticks=637033468780000000') format('woff');
}

@font-face {
 font-family: 'Playball';
 src: url('/File/7206/playball-webfont.eot?ticks=637031468640000000#iefix') format('embedded-opentype'), url('/File/7208/playball-webfont.ttf?ticks=637031577580000000') format('truetype'), url('/File/7209/playball-webfont.woff?ticks=637031388970000000') format('woff');
}

/* ~/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;
    }
}

/* piranya/facebook */
.p-facebook-login-button.p-icon-button {
  background-color: #516eab;
  color: white;
  font-size: 1.5em; }
  .p-facebook-login-button.p-icon-button:hover {
    color: #f1eeea; }
  .p-facebook-login-button.p-icon-button > .action {
    border-color: white; }

/* Comments */
.piranya-facebook.comment.create {
  text-align: center; }

.piranya-facebook.comment.create > * {
  margin: 0 0 10px 0; }

.piranya-facebook.comment.create > h1,
.piranya-facebook.comment.create > p {
  width: 100%; }

.piranya-facebook.comment.create > p + p {
  margin-top: 30px; }

.piranya-facebook.comment.create > .reason {
  font-size: 1.2em; }

.piranya-facebook.comment.create > .piranya-btn {
  width: auto;
  clear: both;
  margin-top: 30px; }

.piranya-facebook.comment.create > .piranya-btn + .piranya-btn {
  margin-left: 10px; }

.piranya-facebook.comment.create > .indicator-title {
  width: 100%;
  margin-top: 40px; }

/* end of Comments */


/* /content/dynamic/1.css */
.hej td
{
color:#696F6F;
font-family:open_sansregular;
font-size: 14px;
    color: #696F6F;
    padding-top: 2px;
    padding-bottom: 2px;
}
.hej tr td:nth-child(1)
{
    padding-left: 5px;
}
.hej tr
{
    background-color: white;
}
.hej tr:nth-child(odd)
{
    background-color: white;
}
div#piranya-page197-0-0-1.align
{
text-align: left;
}

body, html
{
    margin: 0px;
    padding: 0px;
    width: 100%;
    height: 100%;
    font-family: open_sansregular;
}
div
{
    float: left;
}
#main-wrapper
{
    min-height: 100%;
    width: 100%;

}
#food-img
{
    position: absolute;
    calc(50% - 58px);
    top: -56px;
    z-index: 100;
    left: calc(50% - 120px)

}
#food-img1
{
    position: absolute;
    calc(50% - 30px);
    top: -56px;
    z-index: 100;
    left: calc(50% - 0px)

}
#main
{
    padding-bottom: 50px;
    height: 100%;
    width: 100%;
}
#arc
{
    width: 50%;
    max-width: 387px;
    position: absolute;
    left: 0px;
    top: 113px;
    z-index: 100;
}
#slider-img
{
    position: absolute;
    bottom: -5px;
    z-index: 1000;
    left: 50%;
}
#slider-img > img
{
    margin-left: -490px
}
#fblogo
{

    float:right;
    width: 219px;
    height: 52px;
}

#top-bar
{
    width: 100%;
    background-color: rgba(0,0,0,0.7);
    height: 100px;
    z-index: 1000;
    position:absolute;

}
#top-bar.underside
{
    position:static;
}

#top-bar .languages
{
    position: absolute;
    top: 10px;
    left: 100px;
}

#top-bar .languages > a
{
    margin-right: 5px;
}

#menu-bar > div
{
    width: 100%;
}
.splitter-btn-wrapper *
{
    float: right;
}
.splitter-btn-wrapper
{
    padding: 0px 10px;
    float:right;
}
.splitter-btn-wrapper img
{

    margin-top: 3px;
}
.splitter-btn-wrapper p
{
    margin-top: 2px;
    font-size: .75em;
    color:white;
margin-right:10px;
}
.center
{
    float: none;
    margin: 0px auto;
    position: relative;
    max-width: 980px;
    width: 97%;
}
#mobile-graphic
{
    width: 100%;
}
#piranya-page 
{
    margin: 20px 0px 20px 0px;
    width: 96%;
    padding: 2%;
    position: relative;
}

body #piranya-page
{
    margin-top: 120px;
    background-color: white;
}

#subpage-graphic
{
    width: 100%;
    background-image: url('/image/5742');
    height: 200px;
}

#logo
{
    float: left;
    margin: 15px 0px;
    max-width: 298px;
    width: 60%;
    clear:left;
}

@media (max-width: 979px)
{
    #logo
    {
        position: static;
        float: left;
        margin-top: 10px;

    }
}
#subpage-top
{
    width: 100%;
    height: 60px;


}
#call
{
    float: right;
    margin-top: 7px;
}
#footer
{
    height: 50px;
    width: 100%;
    margin-top: -50px;
}
#footer p
{
    color: white;
    line-height: 100%;
    background-color: #1388a9;
    font-family: verdana;
    width: 100%;
    text-align: center;
    display: table-cell;
    vertical-align: middle;
}

.fullsize-bg-img
{
    background-size: 100% 100%;
    min-height: 120px !important;
}
#footer > .center > img
{
    float: right;
}
#map-canvas
{
    width: 100%;
    height: 200px;
}
.piranya-cycle-controls-container
{
display:none;
}

#dateandcall
{

    width: 200px;

}
#dateandcall *
{
    float: left;
    color: white;
    line-height: 130%;
    font-weight: bold;
}
#dateandcall p
{
    margin-right: 10px;
}
#dateandcall img
{

}
#splitter
{
    width: 100%;
    height: 25px;
  background-color: #148aa8;

}

#top-bar .info-bar {
    position: relative;
    top: -30px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    padding: 10px;
    background-color: #ffa800;
    z-index: -1;
    display: none;
    
}

#footer .center-container {
    display: flex;
    flex-flow: column nowrap;
    justify-content: center;
    align-items: center;
    padding: 10px;
    background-color: #1388a9;
    img {
        margin-top: 20px;
        max-width: 150px;
    }
}

/* /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;
}
.piranya-txt, .piranya-textarea
{
    width: 100%;
}
.btn-animation:hover, .piranya-btn:hover
{
    opacity: 0.8;
}
input.piranya-btn
{
    padding: 5px 80px;
    cursor: pointer;
    border: none;
    background-color: #1388a9;
    color: white;
    margin-top: 55px;
}
form
{
    width: 100%;
    
}
label
{
    font-size: 0.8em;
    color: #737373;
}
.piranya-view-form-wrapper div[data-error]
{
    font-size: 0.8em;
}
.piranya-txt
{
background-color : #e3e3e3;
border: 0px solid #008000;
height: 25px;
}

.piranya-view-form-wrapper > form > fieldset
{
width: 90%;

}

.piranya-view-form-wrapper > form > fieldset > label
{
font-size:30px;
}
label
{
display:none;
}



#tbody
{
color:red;
}


#room td
{
    background-color:#eaeaea;
    height:50px;
    font-size:16px;
    padding-left: 20px;
        width: 75%;
}
#room tr:nth-child(odd) td
{
    background-color: #f5f5f5;    
    height:50px;
}
#room th, #room tr:first-child td 
{
background-color: #198aa8;
padding-left:20px;
font-family: Playball;
color:white;
font-size:1.4em;
}

td img
{
    max-width:200px;
}

/* /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;
}
@font-face {
    font-family: 'playball';
    src: url('/file/7206');
    src: url('/file/7206?#iefix') format('embedded-opentype'),
         url('/file/7209') format('woff'),
         url('/file/7208') format('truetype'),
         url('/file/7207#playball') format('svg');
    font-weight: normal;
    font-style: normal;
}@font-face {
    font-family: 'Cond_Light';
    src: url('/file/2688');
    src: url('/file/2688?#iefix') format('embedded-opentype'),
         url('/file/2691') format('woff'),
         url('/file/2693') format('truetype'),
         url('/file/2689#Cond_Light') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'Cond_Bold';
    src: url('/file/2684');
    src: url('/file/2684?#iefix') format('embedded-opentype'),
         url('/file/2687') format('woff'),
         url('/file/2692') format('truetype'),
         url('/file/2685#Cond_Light') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'archive';
    src: url('/file/6287');
    src: url('/file/6287?#iefix') format('embedded-opentype'),
         url('/file/6286') format('woff'),
         url('/file/6288') format('truetype'),
         url('/file/6284#archive') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'oswald';
    src: url('/file/6314');
    src: url('/file/6314?#iefix') format('embedded-opentype'),
         url('/file/6316') format('woff'),
         url('/file/6317') format('truetype'),
         url('/file/6315#oswald') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'lobster';
    src: url('/file/6585');
    src: url('/file/6585?#iefix') format('embedded-opentype'),
         url('/file/6588') format('woff'),
         url('/file/6587') format('truetype'),
         url('/file/6584#lobster') format('svg');
    font-weight: normal;
    font-style: normal;
}

h1
{
     color:#148aa8;
     font-family: Playball;
     font-size:1.8em;
     font-weight:normal;
}

p
{
 font-family: open_sansregular;

 font-size: 0.9em;
 line-height: 180%;
}
h3
{
    font-family: Playball;
    font-size: 18px;
    font-weight: bold;
    line-height: 140%;
    color: rgb(105, 111, 111);
}

ul
{
    list-style-type: none;
}
li > p
{
    background: url('/image/1339') center left no-repeat;
}
li > p
{
    padding-left: 15px;
}

/* /content/dynamic/18.css */
@media (max-width: 460px) {
  #piranya-menu-1 a {
    background-color: #148aa8; } }

.piranya-menu i, .piranya-menu img, i.piranya-expander {
  display: none !important; }

@media (max-width: 979px) {
  div.piranya-menu-wrapper {
    margin-top: 0px;
    margin-bottom: 40px; }
  body .piranya-menu-wrapper.responsive > ul {
    top: 46px; } }

@media (min-width: 980px) {
  #top-bar .piranya-menu-wrapper.responsive {
    width: auto; }
  #top-bar .piranya-menu-wrapper.responsive li {
    padding: 0; }
  .piranya-menu-wrapper {
    float: right;
    clear: right; }
  #piranya-menu-1 > li {
    position: relative;
    background: url("/image/6251") center 80px no-repeat; }
  #piranya-menu-1 li:last-child {
    margin-right: 0px; }
  #piranya-menu-1 a {
    color: white;
    padding: 10px 8px;
    font-family: 'open_sans_bold';
    font-size: 0.7em;
    text-transform: uppercase;
    line-height: 15px;
    vertical-align: middle;
    -webkit-transition: color 200ms;
    -moz-transition: color 200ms;
    -o-transition: color 200ms;
    -ms-transition: color 200ms;
    transition: color 200ms;
    white-space: nowrap; }
  #piranya-menu-1 > li > a {
    text-align: center;
    padding-top: 40px;
    padding-bottom: 20px;
    width: auto; }
  #piranya-menu-1 a:hover {
    color: #148aa8; }
  #piranya-menu-1 li.piranya-menu-item-selected a {
    color: white; }
  #piranya-menu-1 > li.piranya-menu-item-selected {
    border-right: none;
    background-position-y: 20px;
    background-color: #1388a9; }
  /*Submenu*/
  #piranya-menu-1 > li .content {
    background: url("/image/2465"); }
    #piranya-menu-1 > li .content > .p-layout-container > .title {
      display: none; }
  #piranya-menu-1 > li ul li {
    float: left;
    position: relative;
    width: calc(100% - 20px); }
  #piranya-menu-1 > li ul li.piranya-menu-item-last {
    border-bottom: none; }
  #piranya-menu-1 > li ul li:hover a {
    width: 100%;
    color: #f69c55; }
  #piranya-menu-1 > li > ul a {
    color: white;
    padding: 5px 5px;
    text-decoration: none;
    vertical-align: middle;
    float: left;
    z-index: 2;
    position: relative;
    width: 250px; } }

@media (max-width: 979px) {
  .piranya-menu-wrapper.responsive > ul.open a {
    font-family: 'open_sans_bold'; } }


/* /content/dynamic/20.css */
/*-----------------------------------------------------------------------------

	-	Revolution Slider 1.5.3 -

		Screen Stylesheet

version:   	2.1
date:      	09/18/11
last update: 06.12.2012
author:		themepunch
email:     	info@themepunch.com
website:   	http://www.themepunch.com
-----------------------------------------------------------------------------*/


/*-----------------------------------------------------------------------------

	-	Revolution Slider 2.0 Captions -

		Screen Stylesheet

version:   	1.4.5
date:      	09/18/11
last update: 06.12.2012
author:		themepunch
email:     	info@themepunch.com
website:   	http://www.themepunch.com
-----------------------------------------------------------------------------*/



/*************************
	-	CAPTIONS	-
**************************/

.tp-hide-revslider,.tp-caption.tp-hidden-caption	{	visibility:hidden !important; display:none !important;}

.tp-caption { z-index:1;}
.tp-caption.big_white{
			position: absolute;
        background: url('/image/2465');
			color: white;
			font-size: 24px;
			line-height: 120%;
        font-family: Cond_Bold;
        padding: 5px 10px;
		}
.tp-caption.very_big_white{
        background: url('/image/2467');
			position: absolute;
			color: white;
        padding: 5px 10px;
    font-family: 'Cond_Bold';
			text-shadow: none;

    letter-spacing: -1.5px;
    font-size: 50px;

					}

.tp-caption.boxshadow{
		-moz-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
		-webkit-box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
		box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.5);
	}

.tp-caption.black{
		color: #000;
		text-shadow: none;
  font-weight: 300;
			font-size: 19px;
			line-height: 19px;
	}

.tp-caption.noshadow {
		text-shadow: none;
	}

.tp-caption a {
	color: #ff7302; text-shadow: none;	-webkit-transition: all 0.2s ease-out; -moz-transition: all 0.2s ease-out; -o-transition: all 0.2s ease-out; -ms-transition: all 0.2s ease-out;
}

.tp-caption a:hover {
	color: #ffa902;
}


.tp_inner_padding	{	box-sizing:border-box;
						-webkit-box-sizing:border-box;
						-moz-box-sizing:border-box;
						max-height:none !important;	}

/******************************
	-	BUTTONS	-
*******************************/

.button				{	padding:6px 13px 5px; border-radius: 3px; -moz-border-radius: 3px; -webkit-border-radius: 3px; height:30px;
						cursor:pointer;
						color:#fff !important; text-shadow:0px 1px 1px rgba(0, 0, 0, 0.6) !important; font-size:15px; line-height:45px !important;
						background:url(../images/gradient/g30.png) repeat-x top; font-family: arial, sans-serif; font-weight: bold; letter-spacing: -1px;
					}

.button.big			{	color:#fff; text-shadow:0px 1px 1px rgba(0, 0, 0, 0.6); font-weight:bold; padding:9px 20px; font-size:19px;  line-height:57px !important; background:url(../images/gradient/g40.png) repeat-x top;}


.purchase:hover,
.button:hover,
.button.big:hover		{	background-position:bottom, 15px 11px;}



	@media only screen and (min-width: 768px) and (max-width: 959px) {

	 }



	@media only screen and (min-width: 480px) and (max-width: 767px) {
		.button	{	padding:4px 8px 3px; line-height:25px !important; font-size:11px !important;font-weight:normal;	}
		a.button { -webkit-transition: none; -moz-transition: none; -o-transition: none; -ms-transition: none;	 }


	}

    @media only screen and (min-width: 0px) and (max-width: 479px) {
		.button	{	padding:2px 5px 2px; line-height:20px !important; font-size:10px !important;}
		a.button { -webkit-transition: none; -moz-transition: none; -o-transition: none; -ms-transition: none;	 }
	}





/*	BUTTON COLORS	*/



.button.green, .button:hover.green,
.purchase.green, .purchase:hover.green			{ background-color:#21a117; -webkit-box-shadow:  0px 3px 0px 0px #104d0b;        -moz-box-shadow:   0px 3px 0px 0px #104d0b;        box-shadow:   0px 3px 0px 0px #104d0b;  }


.button.blue, .button:hover.blue,
.purchase.blue, .purchase:hover.blue			{ background-color:#1d78cb; -webkit-box-shadow:  0px 3px 0px 0px #0f3e68;        -moz-box-shadow:   0px 3px 0px 0px #0f3e68;        box-shadow:   0px 3px 0px 0px #0f3e68;}


.button.red, .button:hover.red,
.purchase.red, .purchase:hover.red				{ background-color:#cb1d1d; -webkit-box-shadow:  0px 3px 0px 0px #7c1212;        -moz-box-shadow:   0px 3px 0px 0px #7c1212;        box-shadow:   0px 3px 0px 0px #7c1212;}

.button.orange, .button:hover.orange,
.purchase.orange, .purchase:hover.orange		{ background-color:#ff7700; -webkit-box-shadow:  0px 3px 0px 0px #a34c00;        -moz-box-shadow:   0px 3px 0px 0px #a34c00;        box-shadow:   0px 3px 0px 0px #a34c00;}

.button.darkgrey,.button.grey,
.button:hover.darkgrey,.button:hover.grey,
.purchase.darkgrey, .purchase:hover.darkgrey	{ background-color:#555; -webkit-box-shadow:  0px 3px 0px 0px #222;        -moz-box-shadow:   0px 3px 0px 0px #222;        box-shadow:   0px 3px 0px 0px #222;}

.button.lightgrey, .button:hover.lightgrey,
.purchase.lightgrey, .purchase:hover.lightgrey	{ background-color:#888; -webkit-box-shadow:  0px 3px 0px 0px #555;        -moz-box-shadow:   0px 3px 0px 0px #555;        box-shadow:   0px 3px 0px 0px #555;}



/****************************************************************

	-	SET THE ANIMATION EVEN MORE SMOOTHER ON ANDROID   -

******************************************************************/

.tp-simpleresponsive .slotholder *,
.tp-simpleresponsive img			{ -webkit-transform: translateZ(0);
										  -webkit-backface-visibility: hidden;
										  -webkit-perspective: 1000;
									}


/************************************************
	  - SOME CAPTION MODIFICATION AT START  -
*************************************************/
.tp-simpleresponsive .caption,
.tp-simpleresponsive .tp-caption {
	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";	-moz-opacity: 0;	-khtml-opacity: 0;	opacity: 0; position:absolute; visibility: hidden;

}

.tp-simpleresponsive img	{	max-width:none;}



/******************************
	-	IE8 HACKS	-
*******************************/
.noFilterClass {
	filter:none !important;
}


/******************************
	-	SHADOWS		-
******************************/
.tp-bannershadow  {
		position:absolute;

		margin-left:auto;
		margin-right:auto;
		-moz-user-select: none;
        -khtml-user-select: none;
        -webkit-user-select: none;
        -o-user-select: none;
	}

.tp-bannershadow.tp-shadow1 {	background:url(../assets/shadow1.png) no-repeat; background-size:100%; width:890px; height:30px; bottom:-30px;}
.tp-bannershadow.tp-shadow2 {	background:url(../assets/shadow2.png) no-repeat; background-size:100%; width:890px; height:60px;bottom:-60px;}
.tp-bannershadow.tp-shadow3 {	background:url(../assets/shadow3.png) no-repeat; background-size:100%; width:890px; height:60px;bottom:-60px;}


/********************************
	-	FULLSCREEN VIDEO	-
*********************************/
.caption.fullscreenvideo {	left:0px; top:0px; position:absolute;width:100%;height:100%;}
.caption.fullscreenvideo iframe	{ width:100% !important; height:100% !important;}

.tp-caption.fullscreenvideo {	left:0px; top:0px; position:absolute;width:100%;height:100%;}
.tp-caption.fullscreenvideo iframe	{ width:100% !important; height:100% !important;}

/************************
	-	NAVIGATION	-
*************************/

/** BULLETS **/

.tpclear		{	clear:both;}


.tp-bullets								{	z-index:1000; position:absolute;
												-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
												-moz-opacity: 1;
												-khtml-opacity: 1;
												opacity: 1;
												-webkit-transition: opacity 0.2s ease-out; -moz-transition: opacity 0.2s ease-out; -o-transition: opacity 0.2s ease-out; -ms-transition: opacity 0.2s ease-out;
                                    background: url('/image/1244');
                                    height: 20px;
                                    padding: 10px 20px;
    -webkit-border-radius: 7px;
    border-radius: 7px;
border: 1px solid #ffffff;
											}
.tp-bullets.hidebullets					{
												-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
												-moz-opacity: 0;
												-khtml-opacity: 0;
												opacity: 0;
											}


.tp-bullets.simplebullets.navbar						{ 	border:1px solid #666; border-bottom:1px solid #444; background:url(../assets/boxed_bgtile.png); height:40px; padding:0px 10px; -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px ;}

.tp-bullets.simplebullets.navbar-old					{ 	 background:url(../assets/navigdots_bgtile.png); height:35px; padding:0px 10px; -webkit-border-radius: 5px; -moz-border-radius: 5px; border-radius: 5px ;}


.tp-bullets.simplebullets.round .bullet					{	cursor:pointer; position:relative;	background:url('/image/1249') no-Repeat top left;	width:20px;	height:20px;  margin-right:0px; float:left; margin-top:0px; margin-left:3px;}
.tp-bullets.simplebullets.round .bullet.last			{	margin-right:3px;}

.tp-bullets.simplebullets.round-old .bullet				{	cursor:pointer; position:relative;	background:url(../assets/bullets.png) no-Repeat bottom left;	width:23px;	height:23px;  margin-right:0px; float:left; margin-top:-12px;}
.tp-bullets.simplebullets.round-old .bullet.last		{	margin-right:0px;}


/**	SQUARE BULLETS **/
.tp-bullets.simplebullets.square .bullet				{	cursor:pointer; position:relative;	background:url(../assets/bullets2.png) no-Repeat bottom left;	width:19px;	height:19px;  margin-right:0px; float:left; margin-top:-10px;}
.tp-bullets.simplebullets.square .bullet.last			{	margin-right:0px;}


/**	SQUARE BULLETS **/
.tp-bullets.simplebullets.square-old .bullet			{	cursor:pointer; position:relative;	background:url(../assets/bullets2.png) no-Repeat bottom left;	width:19px;	height:19px;  margin-right:0px; float:left; margin-top:-10px;}
.tp-bullets.simplebullets.square-old .bullet.last		{	margin-right:0px;}


/** navbar NAVIGATION VERSION **/
.tp-bullets.simplebullets.navbar .bullet			{	cursor:pointer; position:relative;	background:url(../assets/bullet_boxed.png) no-Repeat top left;	width:18px;	height:19px;   margin-right:5px; float:left; margin-top:10px;}

.tp-bullets.simplebullets.navbar .bullet.first		{	margin-left:0px !important;}
.tp-bullets.simplebullets.navbar .bullet.last		{	margin-right:0px !important;}



/** navbar NAVIGATION VERSION **/
.tp-bullets.simplebullets.navbar-old .bullet			{	cursor:pointer; position:relative;	background:url(../assets/navigdots.png) no-Repeat bottom left;	width:15px;	height:15px;  margin-left:5px !important; margin-right:5px !important;float:left; margin-top:10px;}
.tp-bullets.simplebullets.navbar-old .bullet.first		{	margin-left:0px !important;}
.tp-bullets.simplebullets.navbar-old .bullet.last		{	margin-right:0px !important;}


.tp-bullets.simplebullets .bullet:hover,
.tp-bullets.simplebullets .bullet.selected				{	background-position:top left; }

.tp-bullets.simplebullets.round .bullet:hover,
.tp-bullets.simplebullets.round .bullet.selected,
.tp-bullets.simplebullets.navbar .bullet:hover,
.tp-bullets.simplebullets.navbar .bullet.selected		{	background-position:bottom left; }



/*************************************
	-	TP ARROWS 	-
**************************************/
.tparrows												{	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";
															-moz-opacity: 1;
															-khtml-opacity: 1;
															opacity: 1;
															-webkit-transition: opacity 0.2s ease-out; -moz-transition: opacity 0.2s ease-out; -o-transition: opacity 0.2s ease-out; -ms-transition: opacity 0.2s ease-out;

														}
.tparrows.hidearrows									{
															-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)";
															-moz-opacity: 0;
															-khtml-opacity: 0;
															opacity: 0;
														}
.tp-leftarrow											{	z-index:100;cursor:pointer; position:relative;	width:40px;	height:40px;   }
.tp-rightarrow											{	z-index:100;cursor:pointer; position:relative;	width:40px;	height:40px;   }


.tp-leftarrow.round										{	z-index:100;cursor:pointer; position:relative; width:19px;	height:14px;  margin-right:3px; float:left; margin-top: 2px;	}
.tp-rightarrow.round									{	z-index:100;cursor:pointer; position:relative; width:19px;	height:14px;  margin-left:3px; float:left;	margin-top: 2px;}


.tp-leftarrow.round-old									{	z-index:100;cursor:pointer; position:relative;	background:url(../assets/arrow_left.png) no-Repeat top left;	width:26px;	height:26px;  margin-right:0px; float:left; margin-top:-13px;	}
.tp-rightarrow.round-old								{	z-index:100;cursor:pointer; position:relative;	background:url(../assets/arrow_right.png) no-Repeat top left;	width:26px;	height:26px;  margin-right:0px; float:left;	margin-top:-13px;}


.tp-leftarrow.navbar									{	z-index:100;cursor:pointer; position:relative; width:20px;	height:15px;   float:left;	margin-right:6px; margin-top:12px;}
.tp-rightarrow.navbar									{	z-index:100;cursor:pointer; position:relative; width:20px;	height:15px;   float:left;	margin-left:6px; margin-top:12px;}


.tp-leftarrow.navbar-old								{	z-index:100;cursor:pointer; position:relative;	width:9px;	height:16px;   float:left;	margin-right:6px; margin-top:10px;}
.tp-rightarrow.navbar-old								{	z-index:100;cursor:pointer; position:relative; width:9px;	height:16px;   float:left;	margin-left:6px; margin-top:10px;}

.tp-leftarrow.navbar-old.thumbswitharrow				{	margin-right:10px; }
.tp-rightarrow.navbar-old.thumbswitharrow				{	margin-left:0px; }

.tp-leftarrow.square									{	z-index:100;cursor:pointer; position:relative;	width:12px;	height:17px;   float:left;	margin-right:0px; margin-top:-9px;}
.tp-rightarrow.square									{	z-index:100;cursor:pointer; position:relative;	width:12px;	height:17px;   float:left;	margin-left:0px; margin-top:-9px;}


.tp-leftarrow.square-old								{	z-index:100;cursor:pointer; position:relative;	width:12px;	height:17px;   float:left;	margin-right:0px; margin-top:-9px;}
.tp-rightarrow.square-old								{	z-index:100;cursor:pointer; position:relative;	width:12px;	height:17px;   float:left;	margin-left:0px; margin-top:-9px;}


.tp-leftarrow.default									{	z-index:100;cursor:pointer; position:relative;	width:40px;	height:40px;

														}
.tp-rightarrow.default									{	z-index:100;cursor:pointer; position:relative;	width:40px;	height:40px;

														}




.tp-leftarrow:hover,
.tp-rightarrow:hover 									{	background-position:bottom left; }






/****************************************************************************************************
	-	TP THUMBS 	-
*****************************************************************************************************

 - tp-thumbs & tp-mask Width is the width of the basic Thumb Container (500px basic settings)

 - .bullet width & height is the dimension of a simple Thumbnail (basic 100px x 50px)

 *****************************************************************************************************/


.tp-bullets.tp-thumbs						{	z-index:1000; position:absolute; padding:3px;background-color:#fff;
												width:500px;height:50px; 			/* THE DIMENSIONS OF THE THUMB CONTAINER */
												margin-top:-50px;
											}


.fullwidthbanner-container .tp-thumbs		{  padding:3px;}

.tp-bullets.tp-thumbs .tp-mask				{	width:500px; height:50px;  			/* THE DIMENSIONS OF THE THUMB CONTAINER */
												overflow:hidden; position:relative;}


.tp-bullets.tp-thumbs .tp-mask .tp-thumbcontainer	{	width:5000px; position:absolute;}

.tp-bullets.tp-thumbs .bullet				{   width:100px; height:50px; 			/* THE DIMENSION OF A SINGLE THUMB */
												cursor:pointer; overflow:hidden;background:none;margin:0;float:left;
												-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=50)";
												/*filter: alpha(opacity=50);	*/
												-moz-opacity: 0.5;
												-khtml-opacity: 0.5;
												opacity: 0.5;

												-webkit-transition: all 0.2s ease-out; -moz-transition: all 0.2s ease-out; -o-transition: all 0.2s ease-out; -ms-transition: all 0.2s ease-out;
											}


.tp-bullets.tp-thumbs .bullet:hover,
.tp-bullets.tp-thumbs .bullet.selected		{ 	-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";

												-moz-opacity: 1;
												-khtml-opacity: 1;
												opacity: 1;
											}
.tp-thumbs img								{	width:100%; }


/************************************
		-	TP BANNER TIMER		-
*************************************/
.tp-bannertimer								{	display: none;}
.tp-bannertimer.tp-bottom					{	bottom:0px !important;height:5px;}




/***************************************
	-	RESPONSIVE SETTINGS 	-
****************************************/


	@media only screen and (min-width: 768px) and (max-width: 959px) {

	 }



	@media only screen and (min-width: 480px) and (max-width: 767px) {
			.responsive .tp-bullets.tp-thumbs				{	width:300px !important; height:30px !important;}
			.responsive .tp-bullets.tp-thumbs .tp-mask		{	width:300px !important; height:30px !important;}
			.responsive .tp-bullets.tp-thumbs .bullet		{	width:60px !important;height:30px !important;}

	}

    @media only screen and (min-width: 0px) and (max-width: 479px) {
				.responsive .tp-bullets	{	display:none}
				.responsive .tparrows	{	display:none;}
	}





/*********************************************

	-	BASIC SETTINGS FOR THE BANNER	-

***********************************************/

 .tp-simpleresponsive img {
		-moz-user-select: none;
        -khtml-user-select: none;
        -webkit-user-select: none;
        -o-user-select: none;
}



.tp-simpleresponsive a{	text-decoration:none;}

.tp-simpleresponsive ul {
	list-style:none;
	padding:0;
	margin:0;
}

.tp-simpleresponsive >ul >li{
	list-stye:none;
	position:absolute;
	visibility:hidden;
}
/*  CAPTION SLIDELINK   **/
.caption.slidelink a div,
.tp-caption.slidelink a div {	width:10000px; height:10000px;  background:url(../assets/coloredbg.png) repeat;}

.tp-loader 	{	 margin:-22px -22px; top:50%; left:50%; z-index:10000; position:absolute;width:32px;height:32px;
				border-radius: 3px;
				-moz-border-radius: 3px;
				-webkit-border-radius: 3px;
			}


.tp-transparentimg {	content:"url(../assets/transparent.png)"}
.tp-3d				{	-webkit-transform-style: preserve-3d;
						 -webkit-transform-origin: 50% 50%;
					}

/* /content/dynamic/21.css */
/*-----------------------------------------------------------------------------

REVOLUTION RESPONSIVE BASIC STYLES OF HTML DOCUMENT

Screen Stylesheet

version:   	1.0
date:      	26/06/12
author:		themepunch
email:     	support@themepunch.com
website:   	http://www.themepunch.com
-----------------------------------------------------------------------------*/


/**********************
	-	RESET	-
************************/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, font, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td {
    margin: 0; padding: 0; border: 0; outline: 0; font-size: 100%; vertical-align: baseline;
}


/***********************
	-	BASICS 	-
***********************/
html {
	overflow-x:hidden;
	padding: 0 !important;
	background:#fff;
	margin:0px !important;
}

.fullwidthbanner-container
{
    float: none;
}
.fullwidthbanner-container div
{
    float: none;
}
  /*********************************************************************************************
		-	SET THE SCREEN SIZES FOR THE BANNER IF YOU WISH TO MAKE THE BANNER RESOPONSIVE 	-
  **********************************************************************************************/

  /*	-	THE BANNER CONTAINER (Padding, Shadow, Border etc. )	-	*/


	 .fullwidthbanner-container{
		width:100% !important;
		position:relative;
		padding:0;
		max-height:483px !important;
		overflow:hidden;
	}

/* /content/dynamic/22.css */
@media (max-width: 480px) {
    div#subpage-top
    {
        margin-top: 0;
    }
}
@media (min-width: 481px) and  (max-width: 979px)
{
    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/33.css */
@media print {
  #top-bar,
  #footer {
    display: none;
  }

  #main-wrapper,
  #main {
    min-height: 0;
    height: auto;
  }

  body div {
    max-width: unset;
    z-index: unset;
    clear: unset;
    margin-top: unset;
  }

  .center {
    float: left;
    width: 100%;
    max-width: unset;
  }

  body:not(.piranya-page-home) #piranya-page {
    margin-top: 0;
    background-color: none;
    min-height: 0 !important;
  }

  body h1 {
    float: left;
  }

  body p {
    color: #696F6F;
  }
}

/* ~/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 'h2' (#3) */
.piranya-element-style-3,
h2
{
 font-family: open_sansregular;
 font-size: 0.9em;
 color: #494949;
}