/* ~/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.7192.195751/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: 'oswald-regular';
 src: url('/File/8204/oswald-regular-webfont.eot?ticks=636468226100000000#iefix') format('embedded-opentype'), url('/File/8206/oswald-regular-webfont.ttf?ticks=636468226120000000') format('truetype'), url('/File/8207/oswald-regular-webfont.woff?ticks=636468226150000000') format('woff');
}

@font-face {
 font-family: 'oswald-light';
 src: url('/File/8199/oswald-light-webfont.eot?ticks=636445234320000000#iefix') format('embedded-opentype'), url('/File/8201/oswald-light-webfont.ttf?ticks=636447926920000000') format('truetype'), url('/File/8202/oswald-light-webfont.woff?ticks=636450033750000000') format('woff');
}

@font-face {
 font-family: 'Tahoma';
 src: url('/File/8590/Tahoma.eot?ticks=636445177060000000#iefix') format('embedded-opentype'), url('/File/8593/Tahoma.ttf?ticks=636445147220000000') format('truetype'), url('/File/8594/Tahoma.woff?ticks=636450033560000000') 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 */
#header-wrapper
{
    width:100%;
    background-color:white;
    height:96px;
}
@-webkit-keyframes fadein {
    0% { -webkit-opacity: 0; }
    100% { -webkit-opacity: 1; }
}
@keyframes fadein {
    0% {opacity: 0}
    100% {opacity: 1;}
}
body, html
{
    margin: 0px;
    padding: 0px;
    width: 100%;
    background-color: #f5f5f5;
    height: 100%;
    font-family: opensans;
}
ul
{
    padding: 0;
    margin: 0;
}
#main-wrapper
{
    width: 100%;
    min-height: 100%;
}
#main
{
    width: 100%;
    height: 100%;
}
div
{
    float: left;
}
#piranya-page
{
    height: 100%;
    width: 100%;
    
    margin: 20px 0;
    opacity: 0;
    animation-duration: 100ms;
    animation-timing-function: ease;
    animation-fill-mode: forwards;
    animation-name: fadein;
    -webkit-animation-duration: 100ms;
    -webkit-animation-timing-function: ease;
    -webkit-animation-fill-mode: forwards;
    -webkit-animation-name: fadein;
    -webkit-animation-delay: 100ms;
    animation-delay: 100ms;
}
.center
{
    position: relative;
    max-width: 1200px;
    width: 97%;
    float: none;
    margin: 0px auto;
}

.top-image
{
    width: 100%;
    top: 6px;
    left: 0;
 
}
#logo
{
    float: left;

    width: 100%;
    max-width: 300px;
}

/*Frontpage forms*/
#deal-wrapper
{
    margin: 10px 0px;
}
#deal-wrapper, #deal-wrapper img
{
    width: 100%;
    float: left;
}
#deal-form-wrapper
{
    width: 100%;
    margin: 20px 0px;
}
#deal-form-wrapper div[data-field="Navn"], #deal-form-wrapper div[data-field="Telefon"], #deal-form-wrapper div[data-field="Email"]
{
    width: calc(33.333% - 7px);
    clear: none;
    margin: 0 0 16px 0;
}
#deal-form-wrapper div[data-field="Telefon"]
{
    margin: 0px 10px 16px 10px;
    width: calc(33.333% - 6px);
}
#deal-form-wrapper input[input="submit"]
{
    margin-top: 10px;
}
@media (max-width: 767px)
{
    #deal-form-wrapper div[data-field="Navn"], #deal-form-wrapper div[data-field="Telefon"], #deal-form-wrapper div[data-field="Email"]
    {
        width: 100%;
        clear: none;
        margin: 0 0 10px 0;
    }

    #header-wrapper {
        min-height: 0;
    }
}

.contactsec
{
    margin-top:50px;
    margin-bottom:50px;
}

/* /content/dynamic/16.css */
.btn-animation, .piranya-btn
{

    border-radius: 3px;
        color: white;
    background-color: black;
    text-transform: uppercase;
    padding: 10px 40px;
    margin: 0 auto;
    display: block;
}
a.piranya-btn:hover
{
    text-decoration: none;
}
.error input, .error textarea
{
    background-color: #ff9595;
}
input[type=submit].piranya-btn
{
    margin: 0 auto;
}
.piranya-txt, .piranya-textarea
{
    width: 100%;
}
.btn-animation:hover, .piranya-btn:hover
{
    opacity: 0.8;
}
input.piranya-btn
{

    cursor: pointer;
    border: none;

    
}
input, textarea
{
    font-family: opensans;
}
form
{
    width: 100%;
}
textarea
{
    min-height: 100px;
}
label
{
    font-size: 0.8em;
    color: #737373;
    font-family: opensans;
    font-weight: bold;
}
.piranya-view-form-wrapper div[data-error]
{
    font-size: 0.8em;
}
.piranya-txt
{
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
-webkit-box-shadow: 0px 2px 2px 0px rgba(227,228,231,.8);
-moz-box-shadow: 0px 2px 2px 0px rgba(227,228,231,.8);
box-shadow: 0px 2px 2px 0px rgba(227,228,231,.8);
    border: 1px solid #f0f0f0;
    height: 35px;
    padding-left: 5px;
        font-family: opensans;
}
/*input.piranya-txt, textarea.piranya-textarea, textarea.piranya-txt
{
    width: calc(100% - 6px);
}
textarea.piranya-txt
{
    width: calc(100% - 6px);
}*/

/* /content/dynamic/17.css */
@font-face {
    font-family: 'oswald_medium';
    src: url('/file/8165');
    src: url('/file/8165?#iefix') format('embedded-opentype'),
         url('/file/8168') format('woff2'),
         url('/file/8167') format('woff'),
         url('/file/8169') format('truetype'),
         url('/file/8166#oswald_medium') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'opensans';
    src: url('/file/8175');
    src: url('/file/8175?#iefix') format('embedded-opentype'),
         url('/file/8177') format('woff2'),
         url('/file/8176') format('woff'),
         url('/file/8179') format('truetype'),
         url('/file/8178#opensans') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'oswald-light';
    src: url('/file/8199');
    src: url('/file/8199?#iefix') format('embedded-opentype'),
         url('/file/8203') format('woff2'),
         url('/file/8202') format('woff'),
         url('/file/8201') format('truetype'),
         url('/file/8200#oswald_light') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'oswald_regular';
    src: url('/file/8204');
    src: url('/file/8204?#iefix') format('embedded-opentype'),
         url('/file/8208') format('woff2'),
         url('/file/8207') format('woff'),
         url('/file/8206') format('truetype'),
         url('/file/8209#oswald_regular') format('svg');
    font-weight: normal;
    font-style: normal;
}
@font-face {
    font-family: 'tahomabd';
    src: url('/file/8612');
    src: url('/file/8612?#iefix') format('embedded-opentype'),
         url('/file/8614') format('woff'),
         url('/file/8615') format('truetype'),
         url('/file/8616#tahomabd') format('svg');
    font-weight: normal;
    font-style: normal;
}




h1, h2, h3
{
    font-family: 'oswald_medium';    
}

h4
{
    font-family: 'tahomabd';  
}
h1
{
font-size:1.3em;
color: #151515;
}
h2
{
    color: black;
    font-size: 1.4em;
    letter-spacing: 1px;
}
h3
{
    color: #3E3E3E;
    font-size: 1.1em;
    letter-spacing: 1px;
}
h4
{
  color:white;
    font-size: 0.9em;
    letter-spacing: 1px;
    border-bottom: 1px solid #747474;
}

a
{
    color: #c2c2c2;
    text-decoration: none;
}
a:hover
{
    text-decoration: underline;
}

/* /content/dynamic/18.css */
@media (max-width: 979px)
{
    div#header-wrapper .piranya-menu-wrapper > ul
    {
        width: 32px;
        right: 2%;
        top: 14px;
        left: auto;
        height: 32px;
        border-radius: 0px;
    }
    div#header-wrapper ul#piranya-menu-1 i
    {
        display: none;
    }
    ul#piranya-menu-1.piranya-menu
    {
        width: 100%;
        overflow: hidden;
    }
    #header-wrapper .piranya-menu-wrapper.open
    {
        width: auto;
    }
    div#header-wrapper
    {
        z-index: 102;
        
    }
    ul#piranya-menu-1 a
    {
        background-color: white;
        font-family: 'oswald-light';
    }
    div#header-wrapper .piranya-menu-wrapper
    {
        z-index: 103;
    }
    div#header-wrapper div.piranya-menu-wrapper
    {
        margin: 0;
        position: absolute;
        right: 0;
        top: 20px;
    }
    div#header-wrapper #piranya-menu-1 li a
    {
        font-size: 1.05em;
        line-height: 100%;
    }
    div#header-wrapper #piranya-menu-1 > li > a
    {
        font-size: 1.2em;
        color: #00519c;
    }
    div#header-wrapper div.piranya-menu-wrapper > ul.open
    {
        width: 70%;
        height: auto;
        z-index: 10000;
        border: 1px solid #aaa;
    }
    div#header-wrapper div.piranya-menu-wrapper > ul:not(.open) li
    {
        display: none;
    }
    div#header-wrapper div.piranya-menu-wrapper > ul:not(.open)
    {
        cursor: pointer;
    }
    div#header-wrapper .piranya-menu-wrapper ul.open li, div#header-wrapper .piranya-menu-wrapper ul.open li
    {
        margin-bottom: 0px;
    }
    div#header-wrapper .piranya-menu-wrapper ul.open li.piranya-menu-item-selected
    {
        background: url(/content/piranya/Images/ResponsiveTabletMenu/IconResponsiveMenuSelected.png) 10px center no-repeat;
    }
    div#header-wrapper .piranya-menu-wrapper ul.open ul li.piranya-menu-item-selected
    {
        background: url(/content/piranya/Images/ResponsiveTabletMenu/IconResponsiveMenuSelected.png) left center no-repeat;
    }
}
@media (min-width: 980px)
{
    #menu-wrapper
    {
        width: 100%;
    }
    .piranya-menu-wrapper
    {
        float: right;
        margin-top:20px;
    }
    #header-wrapper #piranya-menu-1 ul
    {
        position: absolute;
        overflow: hidden;
        list-style-type: none;
        height: 0px;
        z-index: 1000;
        left: 0;
        top: 100%;
        -webkit-transition: height 0.4s linear;
        -moz-transition: height 0.4s linear;
        -ms-transition: height 0.4s linear;
        -o-transition: height 0.4s linear;
        transition: height 0.4s linear;
    }
    #piranya-menu-1 > li > i
    {
        display: none;
    }
    #piranya-menu-1 li:not(:last-child)
    {
        margin-right: 5px;
        padding-right: 10px;
    }
    #piranya-menu-1 > li
    {
        position: relative;
    }
    #piranya-menu-1 a
    {
        font-family: 'oswald_medium';
        color: white;
        padding-left: 10px;
        line-height: 45px;
        font-size: 1.2em;
        background-color: #00519c;
        vertical-align: middle;
        float: left;
        letter-spacing: 1px;
        -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;
    }
    #header-wrapper #piranya-menu-1 > li > a:hover
    {
        color: grey;
    }
    #header-wrapper #piranya-menu-1 li:hover ul
    {
        height: 300px;
    }
    #header-wrapper #piranya-menu-1 ul li
    {
        float: left;
        width: 100%;
        clear: left;
    }
    #header-wrapper #piranya-menu-1 ul a
    {
        display: block;
        white-space: nowrap;
        font-size: 1em;
        width: 100%;
        float: left;
    }
    #header-wrapper #piranya-menu-1 ul a:hover
    {
        text-decoration: none;
        background-color: grey;
    }
}
/*Custompage submenu*/
#submenu-wrapper
{
    width: 100%;
}
#submenu-wrapper .piranya-menu-wrapper
{
    width: 100%;
    float: left;
}
#submenu-wrapper #piranya-menu-1 li
{
    width: 100%;
    margin: 0;
    padding: 0;
    float: left;
}
#submenu-wrapper #piranya-menu-1 ul li
{
    margin-bottom: 10px;  
}
#submenu-wrapper #piranya-menu-1 li a
{
    width: calc(100% - 20px);
        line-height: 45px;
    font-size: 1.2em;
    background-color: #00519c;
    vertical-align: middle;
    float: left;
    letter-spacing: 1px;
    -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;
    padding: 10px;
    font-family: oswald-light;
    color: black;
    background: #f5f5f5 url('/image/8262') calc(100% - 10px) center no-repeat;
}
#submenu-wrapper #piranya-menu-1 li a:hover, #submenu-wrapper #piranya-menu-1 li.piranya-menu-item-selected a
{
    text-decoration: none;
    background: #9cdd5b url('/image/8263') calc(100% - 10px) center no-repeat;
}
#submenu-wrapper #piranya-menu-1 > li > a, #submenu-wrapper #piranya-menu-1 > li > i
{
    display: none;
}
#submenu-wrapper #piranya-menu-1 > li ul
{
    display: block;
    list-style-type: none;
    padding: 0;
    margin: 0;
}

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

/* /content/dynamic/22.css */
@media (max-width: 480px) {
    div#subpage-top
    {
        margin-top: 0;
    }
    body div#piranya-page
    {
        margin-top: 100px;
    }
}
@media (max-width: 767px)
{
    div.piranya-page296-1, div.piranya-page289-1, div.piranya-page290-1, div.piranya-page295-1, div.piranya-page291-1, div.piranya-page286-1
    {
        width: 100%;
        margin: 0;
        max-width: none;
    }
}
@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;
    }
}
@media (min-width: 481px)
{
    #piranya-menu-1 .piranya-menu-item-icon
    {
        display: none;
    }
}

/* ~/Content/piranya/menu/bar.css */
@media only screen and (max-width: 979px) {


#header-wrapper .piranya-menu-wrapper {
    position: relative;
    margin: 20px 0;
    min-height: 22px;
    text-align: center;
    width: 100%;
}

#header-wrapper .piranya-menu-wrapper ul {
    margin: 0;
    padding: 0;
    min-height: 22px;
}

#header-wrapper .piranya-menu-wrapper li {
    color: #999;
    padding: 0;
    width: 100%;
    list-style: none;
    display: inline-block;
    line-height: 30px;
}

#header-wrapper .piranya-menu-wrapper a {
    color: inherit;
    text-decoration: none;
    display: block;
    width: calc(100% - 37px);
    padding: 5px 5px 5px 32px;
    line-height: inherit;
    text-align: left;
}

#header-wrapper .piranya-menu-wrapper p {
    display: none;
}

#header-wrapper .piranya-menu-wrapper a:hover {
    color: #000;
}

#header-wrapper .piranya-menu-wrapper .piranya-menu-item-selected > a {
    background: #999;
    color: #fff;
    border-radius: 5px;
    display: block; /* show menu item if main menu */
    background: none;
    color: #666;
}

/*Nested menu*/
#header-wrapper .piranya-menu-wrapper > ul {
    width: 80%;
    position: absolute;
    top: 0;
    left: 10%;
    border: solid 1px #aaa;
    background: #fff url('/content/v1.0.7192.195751/piranya/Images/ResponsiveTabletMenu/IconResponsiveMenu.png') no-repeat 10px center;
    border-radius: 5px;
    box-shadow: 0 1px 2px rgba(0,0,0,.3);
    z-index: 1000;
}

#header-wrapper .piranya-menu-wrapper > ul ul > li {
    background: none;
}

#header-wrapper .piranya-menu-wrapper li {
    display: none; /* hide all <li> items */
}

#header-wrapper .piranya-menu-wrapper .piranya-menu-item-selected,
#header-wrapper .piranya-menu-wrapper .piranya-menu-item-selected-ancestor {
    display: block;
}

#header-wrapper .piranya-menu-wrapper .piranya-menu-item-selected-ancestor > a {
    display: none; /* hide mainmenu item if ´submenu is selected */
}

#header-wrapper .piranya-menu-wrapper .piranya-menu-item-selected > a {
    pointer-events: none;
    cursor: default;
}

#header-wrapper .piranya-menu-wrapper li.piranya-menu-item-selected > a {
    display: block; /* show only current <li> item */
}

#header-wrapper .piranya-menu-wrapper li.piranya-menu-item-selected ul {
    display: none;
}

/* on nav hover */
#header-wrapper .piranya-menu-wrapper ul.open,
#header-wrapper .piranya-menu-wrapper ul.open 
{
    background-image: none;
}

#header-wrapper .piranya-menu-wrapper ul.open li,
#header-wrapper .piranya-menu-wrapper ul.open li 
{
    display: block;
    margin: 0 0 5px;
}

#header-wrapper .piranya-menu-wrapper > ul.open ul,
#header-wrapper .piranya-menu-wrapper > ul.open ul 
{
    padding-left: 35px;
    display: block;
}

#header-wrapper .piranya-menu-wrapper > ul.open ul > li a,
#header-wrapper .piranya-menu-wrapper > ul.open ul > li a 
{
    padding-left: 20px;
}

#header-wrapper .piranya-menu-wrapper > ul.open ul > li,
#header-wrapper .piranya-menu-wrapper > ul.open ul > li
{
    background: url('/content/v1.0.7192.195751/piranya/Images/ResponsiveTabletMenu/IconSubmenu.png') left 20px no-repeat;
}

#header-wrapper .piranya-menu-wrapper ul.open li.piranya-menu-item-selected-root > a ,
#header-wrapper .piranya-menu-wrapper ul.open li.piranya-menu-item-selected-root > a 
{
    display: block;
}

#header-wrapper .piranya-menu-wrapper ul.open li.piranya-menu-item-selected,
#header-wrapper .piranya-menu-wrapper ul.open li.piranya-menu-item-selected 
{
    background: url('/content/v1.0.7192.195751/piranya/Images/ResponsiveTabletMenu/IconResponsiveMenuSelected.png') left 14px no-repeat;
}

#header-wrapper .piranya-menu-wrapper > ul.open > li.piranya-menu-item-selected,
#header-wrapper .piranya-menu-wrapper > ul.open > li.piranya-menu-item-selected 
{
    background-position-x: 10px;
}
}

/* piranya/grid-responsive */


.piranya-grid
{
    width: 100%;
}

.piranya-grid > .p-layout-container {
    min-height: 1px;
}

.piranya-section {
    clear: both;
    padding: 0px;
    margin: 0px;
}

.piranya-group:before,
.piranya-group:after {
    content: "";
    display: table;
}

.piranya-group:after {
    clear: both;
}

.piranya-group {
    zoom: 1; /* For IE 6/7 (trigger hasLayout) */
}

.piranya-col {
    display: block;
    float: left;
    margin: 1% 0 1% 1.6%;
}

.piranya-col:first-child {
    margin-left: 0;
}

.piranya-col.align {
    text-align: center;
}

.piranya-col > .align {
    margin: 0 auto;
    float: none;
    text-align: initial;
}

/* all browsers except IE6 and lower */

/*Grid*/
/*  GRID OF ONE   ============================================================================= */
.span_1_of_1 {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

/*  GRID OF TWO   ============================================================================= */
.span_2_of_2 {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.span_1_of_2 {
    width: 49.2%;
}

/*  GRID OF THREE   ============================================================================= */
.span_3_of_3 {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.span_2_of_3 {
    width: 66.1333333333333%;
}

.span_1_of_3 {
    width: 32.2666666666667%;
}

/*  GRID OF FOUR   ============================================================================= */
.span_4_of_4 {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.span_3_of_4 {
    width: 74.6%;
}

.span_2_of_4 {
    width: 49.2%;
}

.span_1_of_4 {
    width: 23.8%;
}

/*  GRID OF FIVE   ============================================================================= */
.span_5_of_5 {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.span_4_of_5 {
    width: 79.68%;
}

.span_3_of_5 {
    width: 59.36%;
}

.span_2_of_5 {
    width: 39.04%;
}

.span_1_of_5 {
    width: 18.72%;
}

/*  GRID OF SIX   ============================================================================= */
.span_6_of_6 {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.span_5_of_6 {
    width: 83.0666666666667%;
}

.span_4_of_6 {
    width: 66.13333333333333%;
}

.span_3_of_6 {
    width: 49.2%;
}

.span_2_of_6 {
    width: 32.2666666666667%;
}

.span_1_of_6 {
    width: 15.3333333333333%;
}

/*  GRID OF SEVEN   ============================================================================= */
.span_7_of_7 {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.span_6_of_7 {
    width: 85.4857142857143%;
}

.span_5_of_7 {
    width: 70.9714285714286%;
}

.span_4_of_7 {
    width: 56.4571428571429%;
}

.span_3_of_7 {
    width: 41.9428571428572%;
}

.span_2_of_7 {
    width: 27.4285714285714%;
}

.span_1_of_7 {
    width: 12.9142857142857%;
}

/*  GRID OF EIGHT   ============================================================================= */
.span_8_of_8 {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.span_7_of_8 {
    width: 87.3%;
}

.span_6_of_8 {
    width: 74.6%;
}

.span_5_of_8 {
    width: 61.9%;
}

.span_4_of_8 {
    width: 49.2%;
}

.span_3_of_8 {
    width: 36.5%;
}

.span_2_of_8 {
    width: 23.8%;
}

.span_1_of_8 {
    width: 11.1%;
}

/*  GRID OF NINE   ============================================================================= */
.span_9_of_9 {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.span_8_of_9 {
    width: 88.7111111111111%;
}

.span_7_of_9 {
    width: 77.4222222222222%;
}

.span_6_of_9 {
    width: 66.1333333333333%;
}

.span_5_of_9 {
    width: 54.8444444444444%;
}

.span_4_of_9 {
    width: 43.5555555555556%;
}

.span_3_of_9 {
    width: 32.2666666666667%;
}

.span_2_of_9 {
    width: 20.9777777777778%;
}

.span_1_of_9 {
    width: 9.68888888888889%;
}

/*  GRID OF TEN   ============================================================================= */
.span_10_of_10 {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.span_9_of_10 {
    width: 89.84%;
}

.span_8_of_10 {
    width: 79.68%;
}

.span_7_of_10 {
    width: 69.52%;
}

.span_6_of_10 {
    width: 59.36%;
}

.span_5_of_10 {
    width: 49.2%;
}

.span_4_of_10 {
    width: 39.04%;
}

.span_3_of_10 {
    width: 28.88%;
}

.span_2_of_10 {
    width: 18.72%;
}

.span_1_of_10 {
    width: 8.56%;
}

/*  GRID OF ELEVEN   ============================================================================= */
.span_11_of_11 {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.span_10_of_11 {
    width: 90.7636363636364%;
}

.span_9_of_11 {
    width: 81.5272727272727%;
}

.span_8_of_11 {
    width: 72.2909090909091%;
}

.span_7_of_11 {
    width: 63.0545454545455%;
}

.span_6_of_11 {
    width: 53.8181818181818%;
}

.span_5_of_11 {
    width: 44.5818181818182%;
}

.span_4_of_11 {
    width: 35.3454545454545%;
}

.span_3_of_11 {
    width: 26.1090909090909%;
}

.span_2_of_11 {
    width: 16.8727272727273%;
}

.span_1_of_11 {
    width: 7.63636363636364%;
}

/*  GRID OF TWELVE   ============================================================================= */
.span_12_of_12 {
    width: 100%;
    margin-left: 0;
    margin-right: 0;
}

.span_11_of_12 {
    width: 91.5333333333333%;
}

.span_10_of_12 {
    width: 83.0666666666667%;
}

.span_9_of_12 {
    width: 74.6%;
}

.span_8_of_12 {
    width: 66.1333333333333%;
}

.span_7_of_12 {
    width: 57.6666666666667%;
}

.span_6_of_12 {
    width: 49.2%;
}

.span_5_of_12 {
    width: 40.7333333333333%;
}

.span_4_of_12 {
    width: 32.2666666666667%;
}

.span_3_of_12 {
    width: 23.8%;
}

.span_2_of_12 {
    width: 15.3333333333333%;
}

.span_1_of_12 {
    width: 6.86666666666667%;
}

.span_1_of_1 > .align, .span_2_of_2 > .align, .span_3_of_3 > .align, .span_4_of_4 > .align, .span_5_of_5 > .align, .span_6_of_6 > .align, .span_7_of_7 > .align, 
.span_8_of_8 > .align, .span_9_of_9 > .align, .span_10_of_10 > .align, .span_11_of_11 > .align, .span_12_of_12 > .align  {
    margin: 0;
    float: left;
    clear: both;
}

@media (min-width: 980px) {
    .span_1_of_2:nth-child(-n+2), .span_1_of_3:nth-child(-n+3), .span_1_of_4:nth-child(-n+4),
    .span_1_of_5:nth-child(-n+5), .span_1_of_6:nth-child(-n+6), .span_1_of_7:nth-child(-n+7), .span_1_of_8:nth-child(-n+8),
    .span_1_of_9:nth-child(-n+9), .span_1_of_10:nth-child(-n+10), .span_1_of_11:nth-child(-n+11), .span_1_of_12:nth-child(-n+12) {
        margin-top: 0;
    }

    .span_1_of_2:nth-last-child(-n+2), .span_1_of_3:nth-last-child(-n+3), .span_1_of_4:nth-last-child(-n+4),
    .span_1_of_5:nth-last-child(-n+5), .span_1_of_6:nth-last-child(-n+6), .span_1_of_7:nth-last-child(-n+7), .span_1_of_8:nth-last-child(-n+8),
    .span_1_of_9:nth-last-child(-n+9), .span_1_of_10:nth-last-child(-n+10), .span_1_of_11:nth-last-child(-n+11), .span_1_of_12:nth-last-child(-n+12) {
        margin-bottom: 0;
    }

    .span_1_of_2:nth-child(2n+1), .span_1_of_3:nth-child(3n+1), .span_1_of_4:nth-child(4n+1),
    .span_1_of_5:nth-child(5n+1), .span_1_of_6:nth-child(6n+1), .span_1_of_7:nth-child(7n+1), .span_1_of_8:nth-child(8n+1),
    .span_1_of_9:nth-child(9n+1), .span_1_of_10:nth-child(10n+1), .span_1_of_11:nth-child(11n+1), .span_1_of_12:nth-child(12n+1) {
        clear: both;
        margin-left: 0;
    }

    .span_1_of_2:nth-child(2n+1) > .align, .span_1_of_3:nth-child(3n+1) > .align, .span_1_of_4:nth-child(4n+1) > .align,
    .span_1_of_5:nth-child(5n+1) > .align, .span_1_of_6:nth-child(6n+1) > .align, .span_1_of_7:nth-child(7n+1) > .align, .span_1_of_8:nth-child(8n+1) > .align,
    .span_1_of_9:nth-child(9n+1) > .align, .span_1_of_10:nth-child(10n+1) > .align, .span_1_of_11:nth-child(11n+1) > .align, .span_1_of_12:nth-child(12n+1) > .align {
        margin: 0;
        float: left;
    }

    .span_1_of_2:nth-child(2n) > .align, .span_1_of_3:nth-child(3n) > .align, .span_1_of_4:nth-child(4n) > .align,
    .span_1_of_5:nth-child(5n) > .align, .span_1_of_6:nth-child(6n) > .align, .span_1_of_7:nth-child(7n) > .align, .span_1_of_8:nth-child(8n) > .align,
    .span_1_of_9:nth-child(9n) > .align, .span_1_of_10:nth-child(10n) > .align, .span_1_of_11:nth-child(11n) > .align, .span_1_of_12:nth-child(12n) > .align {
        margin: 0;
        float: right;
    }
}

/* Portrait tablet to landscape and desktop */
@media (min-width: 481px) and (max-width: 980px) {
    .span_1_of_2 {
        width: 100%;
    }
    
    .span_1_of_2 {
        margin: 1% 0 1% 0%;
    }
    
    .span_1_of_3, .span_1_of_4, .span_1_of_5, .span_1_of_6, .span_1_of_7, .span_1_of_8, .span_1_of_9, .span_1_of_10, .span_1_of_11, .span_1_of_12 {
        width: 49.2%;
    }

    .span_1_of_3:nth-child(-n+2), .span_1_of_4:nth-child(-n+2), .span_1_of_5:nth-child(-n+2), 
    .span_1_of_6:nth-child(-n+2), .span_1_of_7:nth-child(-n+2), .span_1_of_8:nth-child(-n+2),
    .span_1_of_9:nth-child(-n+2), .span_1_of_10:nth-child(-n+2), .span_1_of_11:nth-child(-n+2), .span_1_of_12:nth-child(-n+2) {
        margin-top: 0;
    }

    .span_1_of_3:nth-last-child(-n+2), .span_1_of_4:nth-last-child(-n+2), .span_1_of_5:nth-last-child(-n+2), 
    .span_1_of_6:nth-last-child(-n+2), .span_1_of_7:nth-last-child(-n+2), .span_1_of_8:nth-last-child(-n+2),
    .span_1_of_9:nth-last-child(-n+2), .span_1_of_10:nth-last-child(-n+2), .span_1_of_11:nth-last-child(-n+2), .span_1_of_12:nth-last-child(-n+2) {
        margin-bottom: 0;
    }

    .span_1_of_3:nth-child(2n+1), .span_1_of_4:nth-child(2n+1), .span_1_of_5:nth-child(2n+1), 
    .span_1_of_6:nth-child(2n+1), .span_1_of_7:nth-child(2n+1), .span_1_of_8:nth-child(2n+1),
    .span_1_of_9:nth-child(2n+1), .span_1_of_10:nth-child(2n+1), .span_1_of_11:nth-child(2n+1), .span_1_of_12:nth-child(2n+1) {
        clear: both;
        margin-left: 0;
    }

    .span_1_of_2 > .align, .span_1_of_3:nth-child(2n+1) > .align, .span_1_of_4:nth-child(2n+1) > .align,
    .span_1_of_5:nth-child(2n+1) > .align, .span_1_of_6:nth-child(2n+1) > .align, .span_1_of_7:nth-child(2n+1) > .align, .span_1_of_8:nth-child(2n+1) > .align,
    .span_1_of_9:nth-child(2n+1) > .align, .span_1_of_10:nth-child(2n+1) > .align, .span_1_of_11:nth-child(2n+1) > .align, .span_1_of_12:nth-child(2n+1) > .align {
        margin: 0;
        float: left;
    }

    .span_1_of_3:nth-child(2n) > .align, .span_1_of_4:nth-child(2n) > .align,
    .span_1_of_5:nth-child(2n) > .align, .span_1_of_6:nth-child(2n) > .align, .span_1_of_7:nth-child(2n) > .align, .span_1_of_8:nth-child(2n) > .align,
    .span_1_of_9:nth-child(2n) > .align, .span_1_of_10:nth-child(2n) > .align, .span_1_of_11:nth-child(2n) > .align, .span_1_of_12:nth-child(2n) > .align {
        margin: 0;
        float: right;
    }
}

/*  GO FULL WIDTH AT LESS THAN 480 PIXELS */

@media only screen and (max-width: 480px) {
    .span_12_of_12, .span_11_of_12, .span_10_of_12, .span_9_of_12, .span_8_of_12, .span_7_of_12, .span_6_of_12, .span_5_of_12, .span_4_of_12, .span_3_of_12, .span_2_of_12, .span_1_of_12 {
        width: 100%;
    }

    .span_11_of_11, .span_10_of_11, .span_9_of_11, .span_8_of_11, .span_7_of_11, .span_6_of_11, .span_5_of_11, .span_4_of_11, .span_3_of_11, .span_2_of_1, .span_1_of_11 {
        width: 100%;
    }

    .span_10_of_10, .span_9_of_10, .span_8_of_10, .span_7_of_10, .span_6_of_10, .span_5_of_10, .span_4_of_10, .span_3_of_10, .span_2_of_10, .span_1_of_10 {
        width: 100%;
    }

    .span_9_of_9, .span_8_of_9, .span_7_of_9, .span_6_of_9, .span_5_of_9, .span_4_of_9, .span_3_of_9, .span_2_of_9, .span_1_of_9 {
        width: 100%;
    }

    .span_8_of_8, .span_7_of_8, .span_6_of_8, .span_5_of_8, .span_4_of_8, .span_3_of_8, .span_2_of_8, .span_1_of_8 {
        width: 100%;
    }

    .span_7_of_7, .span_6_of_7, .span_5_of_7, .span_4_of_7, .span_3_of_7, .span_2_of_7, .span_1_of_7 {
        width: 100%;
    }

    .span_6_of_6, .span_5_of_6, .span_4_of_6, .span_3_of_6, .span_2_of_6, .span_1_of_6 {
        width: 100%;
    }

    .span_5_of_5, .span_4_of_5, .span_3_of_5, .span_2_of_5, .span_1_of_5 {
        width: 100%;
    }

    .span_4_of_4, .span_3_of_4, .span_2_of_4, .span_1_of_4 {
        width: 100%;
    }

    .span_3_of_3, .span_2_of_3, .span_1_of_3 {
        width: 100%;
    }

    .span_2_of_2, .span_1_of_2 {
        width: 100%;
    }

    .piranya-col {
        margin: 1% 0 1% 0%;
    }

    .piranya-col:first-child {
        margin-top: 0;
    }

    .piranya-col:last-child {
        margin-bottom: 0;
    }

    .piranya-col.align > .align {
        margin: 0;
        float: left;
    }
}

@supports (display: grid) {
    .piranya-grid[data-column-count]:not([data-auto-position]):not([data-auto-align-columns="True"]):not([data-positioned="true"]) {
        display: grid;
        grid-gap: 15px;
    }

    .piranya-grid[data-column-count="1"]:not([data-auto-position]):not([data-auto-align-columns="True"]) {
        grid-template-columns: 1fr;
        grid-auto-rows: auto;
    }

    .piranya-grid[data-column-count="2"]:not([data-auto-position]):not([data-auto-align-columns="True"]) {
        grid-template-columns: repeat(2, 1fr);
    }

    .piranya-grid[data-column-count="3"]:not([data-auto-position]):not([data-auto-align-columns="True"]) {
        grid-template-columns: repeat(3, 1fr);
    }

    .piranya-grid[data-column-count="4"]:not([data-auto-position]):not([data-auto-align-columns="True"]) {
        grid-template-columns: repeat(4, 1fr);
    }

    .piranya-grid[data-column-count="5"]:not([data-auto-position]):not([data-auto-align-columns="True"]) {
        grid-template-columns: repeat(5, 1fr);
    }

    .piranya-grid[data-column-count="6"]:not([data-auto-position]):not([data-auto-align-columns="True"]) {
        grid-template-columns: repeat(6, 1fr);
    }

    .piranya-grid[data-column-count="7"]:not([data-auto-position]):not([data-auto-align-columns="True"]) {
        grid-template-columns: repeat(7, 1fr);
    }

    .piranya-grid[data-column-count]:not([data-auto-position]):not([data-auto-align-columns="True"]) > .piranya-col {
        width: 100%;
        margin: 0;
    }

    @media only screen and (max-width: 980px) {
        .piranya-grid[data-column-count="2"]:not([data-auto-position]):not([data-auto-align-columns="True"]) {
            grid-template-columns: 1fr;
            grid-auto-rows: auto;
        }

        .piranya-grid[data-column-count="3"]:not([data-auto-position]):not([data-auto-align-columns="True"]) {
            grid-template-columns: repeat(2, 1fr);
        }

        .piranya-grid[data-column-count="4"]:not([data-auto-position]):not([data-auto-align-columns="True"]) {
            grid-template-columns: repeat(3, 1fr);
        }

        .piranya-grid[data-column-count="5"]:not([data-auto-position]):not([data-auto-align-columns="True"]) {
            grid-template-columns: repeat(4, 1fr);
        }

        .piranya-grid[data-column-count="6"]:not([data-auto-position]):not([data-auto-align-columns="True"]) {
            grid-template-columns: repeat(5, 1fr);
        }

        .piranya-grid[data-column-count="7"]:not([data-auto-position]):not([data-auto-align-columns="True"]) {
            grid-template-columns: repeat(6, 1fr);
        }
    }

    @media only screen and (max-width: 480px) {
        .piranya-grid[data-column-count]:not([data-auto-position]):not([data-auto-align-columns="True"]) {
            grid-template-columns: 1fr;
            grid-auto-rows: auto;
        }
    }
}

/* /content/dynamic/35.css */
#footer-map
{
    width: 100%;
    height: 395px;
}

#contact-text a
{
    color:black;
}

#footer
{
    width: 100%;
    min-height: 300px;
}
#upper-footer
{
    min-height: 230px;
    padding-top: 20px;
    width: 100%;
    background-color: #282932;    
}
#lower-footer
{
    height: 50px;
    display: table;
    width: 100%;
}
#lower-footer p
{
    border-top:1px solid #373840;
    color: white;
    line-height: 100%;
    background-color: #282932;
    width: 100%;
    text-align: center;
    display: table-cell;
    vertical-align: middle;
}
#upper-footer .piranya-col h3
{
    border-bottom: 1px solid #888888;
    color: #82c341;
    padding-bottom: 3px;
}
#upper-footer .piranya-col p
{
    color: white;
}

#upper-footer a 
{
    color:white;
}
.remote-support {
    background-color:#889a3e;
    padding:5px 5px;
    line-height: 4em;
    user-select: none;
}

/* /content/dynamic/34.css */
#slidewrap,
#slider-wrapper
{
    width: 100%;

}

.piranya-page-home .fullwidthbanner-container {
    margin-top: 0px;
}


.piranya-page-home .tp-caption.very_big_white, .very_big_white 
{
    background-color: initial;
    text-transform: uppercase;
    font-size:2.5em;
    font-family: oswald_medium;
    text-shadow: 2px 2px 8px #2c2c2c;
    letter-spacing: 3px;
        color:white;
}

.piranya-page-home .tp-caption.big_white{ 
    background-color: initial;

    font-size:1.4em;
    font-family: oswald_medium;
    text-shadow: 2px 2px 8px #2c2c2c;
    letter-spacing: 1px;
    color:white;
}

.piranya-page-home .tp-caption.big_white p
{ 
   
    color:white;
        font-family: oswald_medium;
            font-size:1.0em;
}

/* /content/dynamic/40.css */
/* 
 *  Owl Carousel - Animate Plugin
 */
 #piranya-page .owl-dots
 {
     display: none !important;
 }
.owl-carousel .animated {
  -webkit-animation-duration: 1000ms;
  animation-duration: 1000ms;
  -webkit-animation-fill-mode: both;
  animation-fill-mode: both;
}
.owl-carousel .owl-animated-in {
  z-index: 0;
}
.owl-carousel .owl-animated-out {
  z-index: 1;
}
.owl-carousel .fadeOut {
  -webkit-animation-name: fadeOut;
  animation-name: fadeOut;
}
.carousel-wrapper
{
    width: calc(100% - 100px);
    margin: 0px 50px;
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }

  100% {
    opacity: 0;
  }
}

/* 
 * 	Owl Carousel - Auto Height Plugin
 */
.owl-height {
  -webkit-transition: height 500ms ease-in-out;
  -moz-transition: height 500ms ease-in-out;
  -ms-transition: height 500ms ease-in-out;
  -o-transition: height 500ms ease-in-out;
  transition: height 500ms ease-in-out;
}

/* 
 *  Core Owl Carousel CSS File
 */
.owl-carousel {
  display: none;
  width: 100%;
    position: relative;
  -webkit-tap-highlight-color: transparent;
  /* position relative and z-index fix webkit rendering fonts issue */
  position: relative;
  z-index: 1;
}
.owl-carousel .owl-stage {
  position: relative;
  -ms-touch-action: pan-Y;
}
.owl-carousel .owl-stage:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.owl-carousel .owl-stage-outer {
  position: relative;
  overflow: hidden;
  z-index: 1000;
  width: 100%;
  /* fix for flashing background */
  -webkit-transform: translate3d(0px, 0px, 0px);
}
.owl-carousel .owl-controls .owl-nav .owl-prev,
.owl-carousel .owl-controls .owl-nav .owl-next,
.owl-carousel .owl-controls .owl-dot {
  cursor: pointer;
  cursor: hand;
  -webkit-user-select: none;
  -khtml-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-controls
{
    width: 100%;
    height: 100%;
    position: absolute;
}
.owl-nav
{
    position: absolute;
    height: 100%;
    width: 100%;
}
.owl-carousel .owl-nav .owl-next, .owl-carousel.owl-theme .owl-nav .owl-next
{
    float: right;
    background: url('/image/8326') center center no-repeat;
    width: 36px;
    height: 39px;
    color: transparent;
    position: absolute;
    right: -50px;
    top: calc(50% - 20px);
    transition: all .2s ease-in-out;
    cursor: pointer;
}
.owl-carousel .owl-nav .owl-prev, .owl-carousel.owl-theme .owl-nav .owl-prev
{
    background: url('/image/8142') center center no-repeat;
    height: 39px;
    width: 36px;
    color: transparent;
    position: absolute;
    left: -50px;
    top: calc(50% - 20px);
    transition: all .2s ease-in-out;
    cursor: pointer;
}
#piranya-page .owl-carousel .owl-nav.disabled
{
    display: block;    
}
#piranya-page .owl-theme .owl-nav .owl-next:hover
{
    background: transparent url('/image/8326') center center no-repeat;
    color: transparent;
}
#piranya-page .owl-theme .owl-nav .owl-prev:hover
{
    background: transparent url('/image/8142') center center no-repeat;
    color: transparent;
}
.owl-carousel .owl-nav .owl-prev:hover, .owl-carousel.owl-theme .owl-nav .owl-prev:hover
{
    left: -55px;
}
.owl-carousel .owl-nav .owl-next:hover, .owl-carousel.owl-theme .owl-nav .owl-next:hover
{
    right: -55px;
}
.owl-carousel.owl-loaded {
  display: block;
}
.owl-carousel.owl-loading {
  opacity: 0;
  display: block;
}
.owl-carousel.owl-hidden {
  opacity: 0;
}
.owl-carousel .owl-refresh .owl-item {
  display: none;
}
.owl-carousel .owl-item {
  position: relative;
  min-height: 1px;
  float: left;
  -webkit-backface-visibility: hidden;
  -webkit-tap-highlight-color: transparent;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
.owl-carousel .owl-item img {
  display: block;
  width: 100%;
  -webkit-transform-style: preserve-3d;
}
.owl-carousel.owl-text-select-on .owl-item {
  -webkit-user-select: auto;
  -moz-user-select: auto;
  -ms-user-select: auto;
  user-select: auto;
}
.owl-carousel .owl-grab {
  cursor: move;
  cursor: -webkit-grab;
  cursor: -o-grab;
  cursor: -ms-grab;
  cursor: grab;
}
.owl-carousel.owl-rtl {
  direction: rtl;
}
.owl-carousel.owl-rtl .owl-item {
  float: right;
}

/* No Js */
.no-js .owl-carousel {
  display: block;
}

/* 
 * 	Owl Carousel - Lazy Load Plugin
 */
.owl-carousel .owl-item .owl-lazy {
  opacity: 0;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-item img {
  transform-style: preserve-3d;
}

/* 
 * 	Owl Carousel - Video Plugin
 */
.owl-carousel .owl-video-wrapper {
  position: relative;
  height: 100%;
  background: #000;
}
.owl-carousel .owl-video-play-icon {
  position: absolute;
  height: 80px;
  width: 80px;
  left: 50%;
  top: 50%;
  margin-left: -40px;
  margin-top: -40px;
  background: url("owl.video.play.png") no-repeat;
  cursor: pointer;
  z-index: 1;
  -webkit-backface-visibility: hidden;
  -webkit-transition: scale 100ms ease;
  -moz-transition: scale 100ms ease;
  -ms-transition: scale 100ms ease;
  -o-transition: scale 100ms ease;
  transition: scale 100ms ease;
}
.owl-carousel .owl-video-play-icon:hover {
  -webkit-transition: scale(1.3, 1.3);
  -moz-transition: scale(1.3, 1.3);
  -ms-transition: scale(1.3, 1.3);
  -o-transition: scale(1.3, 1.3);
  transition: scale(1.3, 1.3);
}
.owl-carousel .owl-video-playing .owl-video-tn,
.owl-carousel .owl-video-playing .owl-video-play-icon {
  display: none;
}
.owl-carousel .owl-video-tn {
  opacity: 0;
  height: 100%;
  background-position: center center;
  background-repeat: no-repeat;
  -webkit-background-size: contain;
  -moz-background-size: contain;
  -o-background-size: contain;
  background-size: contain;
  -webkit-transition: opacity 400ms ease;
  -moz-transition: opacity 400ms ease;
  -ms-transition: opacity 400ms ease;
  -o-transition: opacity 400ms ease;
  transition: opacity 400ms ease;
}
.owl-carousel .owl-video-frame {
  position: relative;
  z-index: 1;
}

/* /content/dynamic/41.css */
#frontpage-items-wrapper
{
    width: calc(100% - 150px);
    padding: 0 75px;
    overflow: hidden;
}
.carousel-item-wrapper
{
    width: 100%;
    max-width: 300px;
    float: none;
    margin: 0 auto;
}
.item-image-wrapper, .item-image-wrapper img
{
    width: 100%;
}
.item-description-wrapper > h3
{
    width: 100%;
    float: left;
    margin-top: 20px;
}
.item-description-wrapper .piranya-btn
{
    background-color: black;
    border-radius: 0;
    float: left;
    width: 100%;
    padding: 10px 0;
    text-align: center;
    margin-top: 20px;
}
.small-green-border
{
    width: 40px;
    border-bottom: 2px solid #3172ae;
    margin-top: 5px;
}
.item-description-wrapper .description
{
    float: left;
    width: 100%;
    min-height: 100px;
    margin-top: 10px;
}

/* /content/dynamic/42.css */
#employees-wrapper
{
    margin-top: 20px;
}
.employee-wrapper
{
    width: calc(100% - 11px);
    background-color: #fbfbfb;
    border: 1px solid #e2e6e7;
    padding: 10px;
}
.employee-wrapper a
{
    color: black;
}
.employee-wrapper img
{
    width: calc(100% - 2px);
    border: 1px solid #999797;
}

/* /content/dynamic/36.css */
#offer-left-wrapper #deal-form-wrapper div[data-field="Navn"], #offer-left-wrapper #deal-form-wrapper div[data-field="Telefon"], #offer-left-wrapper #deal-form-wrapper div[data-field="Email"]
{
    width: 100%;   
}
#offer-left-wrapper #deal-form-wrapper div[data-field="Telefon"]
{
    margin: 0px 0px 16px 0px;
}
#offer-left-wrapper
{
    width: calc(100% - 2px);
    background-color: #fbfbfb;
    border: 1px solid #e2e6e7;
}
#offer-left-wrapper img
{
    float: none;
    display: block;
    margin: 10px auto;
}
#offer-left-wrapper > div
{
    width: calc(100% - 42px);
    padding: 20px;
}
#offer-left-wrapper > div > p
{
    font-size: 1.1em;
    text-align: center;
    float: left;
    width: 100%;
    margin: 10px 0;
}
#offer-left-wrapper #deal-form-wrapper
{
    margin: 0;
}
#offer-left-wrapper .piranya-btn
{
    background-color: #787e7b;
    width: 100%;
}



#offer-left-wrapper
{
    margin-top:0px !important;
}

/* /content/dynamic/43.css */
@media (min-width: 980px) {
  #header-wrapper #piranya-menu-1 > li > a:hover {
    background-color: #00376b;
    color: white; } }


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