/* ~/Content/piranya/default.css */
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, 
.piranya-view-content {
    width: 100%;
    position: relative;
}

.piranya-view .piranya-view-headline,
.piranya-view .piranya-view-description {
    float: left;
    clear: both;
}

.piranya-view .piranya-view-description-text {
    margin: 10px 0px;
    clear: both;
}

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.6856.196271/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;
    float: left;
}

/* ~/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; }
}

.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;
}
.piranya-btn-disabled,
.piranya-btn.disabled,
.piranya-btn[disabled]
{
    cursor: pointer;
    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-txt, .piranya-textarea {
    width: 70%;
    padding-left: 2px;
}

    .piranya-txt.disabled,
    .piranya-textarea.disabled {
        background-color: rgb(235, 235, 228);
        pointer-events: none;
    }

.piranya-textarea {
    height: 100px;
}

.piranya-error-container {
    width: 100%;
    margin-bottom: 10px;
}

.piranya-label-must-be-filled {
    color: red;
}

.validation-message {
    color: red;
}

/* 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-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:not(.has-content),
div.p-toggle-box:not(.has-content) {
    display: flex;
    align-items: center;
}

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-checkbox {
    float: left;
}

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: 150px;
}

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) > .content,
ul.p-toggle-boxes > li:not(.selected) > .content .choice,
ul.p-toggle-boxes > li:not(.selected) > .right .choice,
div.p-toggle-box:not(.selected) > .content,
div.p-toggle-box:not(.selected) > .content .choice,
div.p-toggle-box:not(.selected) > .right.choice,
div.p-toggle-box:not(.selected) > .right .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 select,
div.p-toggle-box select {
    padding: 6px 5px;
    margin: 0;
    font-size: 0.9em;
    border-radius: 0;
    box-sizing: border-box;
    width: 100%;
}

ul.p-toggle-boxes > li input[type="text"],
div.p-toggle-box input[type="text"] {
    margin: 0;
    width: 100%;
    box-sizing: border-box;
}

/* end of p-toggle-boxes */

/* ~/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: 'roboto';
 src: url('/File/16352/Roboto-Regular.ttf?ticks=636235245870000000') format('truetype'), url('/File/16353/roboto-regular-webfont.woff?ticks=636235273410000000') format('woff');
}

@font-face {
 font-family: 'Ubuntu_Regular';
 src: url('/File/17178/Ubuntu.eot?ticks=636355541910000000#iefix') format('embedded-opentype'), url('/File/17180/Ubuntu.ttf?ticks=636355541920000000') format('truetype'), url('/File/17181/Ubuntu.woff?ticks=636355541920000000') format('woff');
}

@font-face {
 font-family: 'Ubuntu_Light';
 src: url('/File/17182/Ubuntu-Light.eot?ticks=636355542080000000#iefix') format('embedded-opentype'), url('/File/17184/Ubuntu-Light.ttf?ticks=636355542090000000') format('truetype'), url('/File/17185/Ubuntu-Light.woff?ticks=636355542090000000') format('woff');
}

@font-face {
 font-family: 'Ubuntu_Bold';
 src: url('/File/18218/Ubuntu-B.ttf?ticks=636379617340000000') format('truetype');
}

@font-face {
 font-family: 'Bree_Serif_Reg';
 src: url('/File/21552/Bree_Serif_Reg.ttf?ticks=636741987400000000') format('truetype');
}

/* ~/Content/Piranya/WebViews/Users/PiranyaUserAdministration.css */
.piranya-selectbox {
    width: 70%;
}

#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-login-group {
    width: 100%;
    max-width: 340px;
    background: white;
    box-sizing: border-box;
    padding: 20px;
    display: inline-block;
}

    .piranya-login-group h1.piranya-view-headline,
    .piranya-login-group label,
    .piranya-login-group a {
        color: black;
    }

    .piranya-login-group h1 {
        width: 100%;
    }

.piranya-user-login-view-container .piranya-txt {
    width: 100%;
    box-sizing: border-box;
}

.piranya-user-login-view:not(.register) .register {
    display: none;
}

.piranya-social-media-login-wrapper .piranya-facebook-link {
    background-size: cover;
    background-position: center;
}

.piranya-social-media-login-wrapper .separator {
    height: 25px;
    text-align: center;
    position: relative;
    margin-top: 8px;
    width: 100%;
}

.piranya-social-media-login-wrapper .separator .text {
    display: inline-block;
    font-size: 1em;
    overflow: hidden;
    text-align: center;
	width: 100%;
    color: black;
}

.piranya-social-media-login-wrapper .separator .text:before,
.piranya-social-media-login-wrapper .separator .text:after {
    content: "";
    display: inline-block;
    height: 1px;
    position: relative;
    vertical-align: middle;
    width: 50%;
    background-color: #333;
}
.piranya-social-media-login-wrapper .separator .text:before {
    right: 0.5em;
    margin-left: -50%;
}
.piranya-social-media-login-wrapper .separator .text:after {
    left: 0.5em;
    margin-right: -50%;
}

.piranya-user-login-view > * {
    float: left;
    clear: both;
}

.piranya-user-login-view > :not(:last-child) {
    margin-bottom: 10px;
}

.piranya-user-login-view-remember-container {
    width: 100%;
}

.piranya-user-login-view-action-container a {
    clear: both;
    float: left;
}

.piranya-user-login-view .forgot-password {
    font-size: .9em;
    margin-bottom: 10px;
    float: left;
    clear: both;
}

    .piranya-user-login-view .forgot-password:hover {
        text-decoration: underline;
    }

.piranya-btn-login-wrapper {
    width: 100%;
}

.piranya-btn-login-wrapper > input {
    float: left;
}

.piranya-user-login-view-login, .piranya-user-login-view-guest {
    display: block;
}


@media only screen and (max-width: 979px) {
    .piranya-user-login-view-seperator {
        display: none;
    }

    .piranya-view-users-login .piranya-view-content .piranya-grid .piranya-col {
        width: 100%;
    }

    .piranya-user-login-view-inner-container {
        float: left;
    }
}

/* /content/dynamic/1.css */
@-webkit-keyframes fadein {
    0% { -webkit-opacity: 0; }
    100% { -webkit-opacity: 1; }
}
@keyframes fadein {
    0% {opacity: 0}
    100% {opacity: 1;}
}

#socialmedia
{
    float:right;
    margin-top:10px;
}

iframe {
    max-width: 100%;
}

img {
    max-width: 100%;
}
.circle
{
    border-radius:50%;
    height:33px;
    width:33px;
    display:flex;
    justify-content: center;
    align-items:center;
    background-color:#5472d2;
}

.section-headline-wrapper
{
    width: 100%;
    padding-bottom: 40px;
    margin-bottom: 10px;
    text-align: center;
    box-sizing: border-box;
}

.section-headline-wrapper:after {
    background: url('/File/21553/line.png?ticks=636746291090000000') 50% no-repeat;
    display: block;
    text-align: center;
    content: "";
    margin-top: 10px;
    height: 2px;
}

.section
{
    margin-top:20px;
}

section{
    padding: 20px;
    box-sizing: border-box;
}

section.welcome {
    display:block;
    position: relative;
}

#welcome-text {


}

section.gallery {
    height: 395px;
    position: relative;
}

#piranya-page .annonce a.piranya-btn {
    width: 95px;
    text-align: center;
    color: white;
}


.page-content > div:last-child {
    width: 100%;
    margin-left:20px;
}

@media (max-width: 767px)
{


    #welcome-text h1
    {
    font-size:1.7em;   
    }
    #welcome-text h3
    {
        font-size:1.2em;   
    }
    section.gallery {
        margin-bottom: 0;
    }
}

.blackbox {
    width:30%;
    float: left;
    margin: 20px;
    background-color:rgba(0,0,0,0.7);
    height:150px;
}

.front-section, .front-section section {
    box-sizing: border-box;
}

.frontpage-box .box-wrapper {
    min-width: 100%;
    margin-top: 20px;
    box-sizing: border-box;
}

.frontpage-box img
{
    width:70px;
    height:70px;
    margin-bottom: 10px;
}

.frontpage-box .box-wrapper > a {
    padding: 20px;
    min-height: 200px;
    max-height: 200px;
    text-align: center;
    box-sizing: border-box;
    font-size: .9em;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.frontpage-box .box-wrapper > a:first-child {
    background-color:rgba(184,54,62,0.7);
}
.frontpage-box .box-wrapper > a:first-child:hover, .frontpage-box .box-wrapper > a:first-child:active {
    background-color: rgba(184,54,62,0.9);
}

.frontpage-box .box-wrapper > a:nth-child(2) {
    background-color:rgba(171,187,2,0.7);
}
.frontpage-box .box-wrapper > a:nth-child(2):hover, .frontpage-box .box-wrapper > a:nth-child(2):active {
    background-color:rgba(171,187,2,0.8);
}

.frontpage-box .box-wrapper > a:nth-child(3) {
    background-color:rgba(23,96,126,0.7);
}
.frontpage-box .box-wrapper > a:nth-child(3):hover, .frontpage-box .box-wrapper > a:nth-child(2):active {
    background-color:rgba(23,96,126,0.9);
}

.frontpage-box .box-wrapper > a:last-child {
    background-color:rgba(29, 126, 23, 0.7)
}
.frontpage-box .box-wrapper > a:last-child:hover, .frontpage-box .box-wrapper > a:last-child:active {
    background-color:rgba(29, 126, 23, 0.9)
}

.frontpage-box .box-wrapper > a > div h4 {
    margin-bottom: 10px;
}

.frontpage-box .box-wrapper > a > div h4, .frontpage-box .box-wrapper > a > div p {
   color: white;
}

.frontpage-box .box-wrapper > a > div p {
    font-family: Bree_Serif_Reg;
}

body, html
{
    margin: 0px;
    padding: 0px;
    width: 100%;
    height: 100%;
}

ul
{
    padding: 10px 0 10px 20px;
    margin: 0;
}

ul > * li {
    font-size: 1.3em;
    margin-top: 4px;
}

#front-elements {
    margin-top: 0;
}
#main-wrapper {
    min-height: 100%;
    width: 100%;
    background: linear-gradient( rgba(120, 191, 47, 0.67), rgba(15, 105, 137, .5) ), url(/image/21648);
    background-size: cover;
    background-repeat: no-repeat;
    background-position: center center;
}

body:not(.piranya-page-home) #main-wrapper {

    background: url(/image/18442);
    background-repeat:repeat;

}
@media(max-width: 800px)
{
    #welcome-text
    {
    margin-top:100px;
    }
}

#main-wrapper.frontpage section{
    position:absolute;
    bottom:100px;
}

#main
{
    width: 100%;
    height: 100%;
    padding-bottom: 50px;
}

div
{
    float: left;
}

.menu-wrapper
{
    width: 100%;

    top: 0;
    z-index: 100;
    left: 0;
    position:absolute;
    
}

#piranya-page
{
    width: 100%;
}

.center
{
    position: relative;
    max-width: 1200px;
    width: calc(100% - 20px);
    float: none;
    margin: 0px auto;
}

#frontpage-text
{
    margin-bottom:100px;
}

.top-image
{
    width: 100%;
    left: 0;
    position: absolute;
}

#logo
{
    float: left;
    margin-top:7px;
}

@media (max-width: 979px)
{
    #logo {
        height: 60px;
        margin-top:20px;
    }
}

@media screen and (max-width: 767px) {
    .frontpage-box .box-wrapper {
        grid-template-columns: 1fr;
        -ms-grid-template-columns: 1fr;
    }
    
    .frontpage-box img {
        display: initial;
        float: left;
    }
    .frontpage-box .box-wrapper > a {
        margin-bottom: 20px;
    }
    .frontpage-box .box-wrapper > a > div{

    }

    .frontpage-box .box-wrapper > a {
        display: flex;
        align-items: center;
    }
    
}

@media (max-width: 1200px)
{
    section.frontpage-box {
        position: initial;
    }
    section.welcome {
        position: initial;
    }
}

@media only screen and (max-width: 600px) {
    section.frontpage-box {
        padding: 0;
    }
    
    body .frontpage-box .box-wrapper .piranya-col {
        margin: 0;
    }
    
    body .box-wrapper .piranya-col:first-child {
        margin-left: 0;
    }
    
    body .box-wrapper .piranya-col {
        margin: 1% 0 1% 0%;
        height: 150px;
        min-height: inherit;
    } 


    body .frontpage-box .box-wrapper > a > div {
        max-width: 100%;
        width: 100%;
    }
    
    body .frontpage-box .box-wrapper > a > div h4 {
        font-size: 1em;
    }
}

@media (max-width: 980px) and (min-width: 601px) {
    .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, .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%;
    }

}

/* /content/dynamic/17.css */
h1, h2, h3, h4, body p
{
    font-family: 'Ubuntu_Regular';    
}



body.piranya-page-home h1 {
    font-size:4em;
    color: white;
}

h1
{
    font-size: 3em;
        color: #0e8318;
    font-weight:normal;
    font-family:'Bree_Serif_Reg';
    line-height:150%;
}


h2
{
    color: #0e8318;
    font-size: 2.3em;
    letter-spacing: 1px;
    font-weight:normal;
    font-family:'Bree_Serif_Reg';
}
h3
{
        color: #0e8318;
    font-size: 2.0em;
    letter-spacing: 1px;
    font-weight:normal;
    font-family:'Bree_Serif_Reg';
}
h4
{
    font-size:1.6em;
    font-weight:normal;
    font-family: 'Bree_Serif_Reg';
    padding: 5px 0;
        color: #0e8318;
}

h5
{
    font-size:1em;
    font-weight: normal;
    font-family: 'Bree_Serif_Reg'; 
}

body.piranya-page-home h3
{
    color: white;
}


li {
    font-family: 'Bree_Serif_Reg'; 
       color: #91959a;
       
       
}


a
{

    text-decoration: none;

    font-family:'Ubuntu_Light';
        color: #35915d;

}
p
{
    font-size: 0.9333em;
    line-height: 1.5em;
        color: #91959a;
}

.piranya-txt, .piranya-textarea{
    font-family: 'Ubuntu_Regular'
    
}



a:hover, #piranya-page a:hover
{
    text-decoration: underline;
}

.fa
{
    color:white;
    margin: 0 10px;

}

/* /content/dynamic/18.css */
.piranya-menu-wrapper.responsive ul > * li {
    margin-top: 0;
}

#submenu-wrapper .piranya-menu-wrapper.responsive
{
    margin-top:0px;
}

.piranya-menu-wrapper.responsive a
{
    color:white;
    font-size:1.3em;
    font-family:'Bree_Serif_Reg';
}

body:not(.piranya-page-home) .menu-wrapper {
    position: absolute;
    padding-bottom: 10px;
}

#piranya-menu-1 li:not(.piranya-menu-item-selected-root) a
{
    color: white;
    text-align: left;
}
#piranya-menu-1 > li.piranya-menu-item-last
{
    padding-right: 0;
}
#piranya-menu-1 > li.piranya-menu-item-last.piranya-menu-item-selected-root
{
    padding-right: 10px;
 
}
.piranya-menu-item-selected-root a
{
    color:white;
}
    
    
.piranya-menu
{
    display: block;
}
@media (max-width: 979px)
{

    .piranya-menu-wrapper.responsive {
        height: 100px;
    } 
    #header .piranya-menu-wrapper.responsive ul:not(.open) {
        position: initial;
    }

    #header .piranya-menu-wrapper.responsive > ul.open {
        height: 100%;
        padding-top: 0;
        background-color: #3c3c3c;
    }
    .piranya-menu-wrapper.responsive > ul:not(.open)
    {
        padding: 2px;
        color:white;
    }
    .piranya-menu-wrapper.responsive > ul:not(.open):before {
        content: "\f0c9";
        position: absolute;
        right: 10px;
        top: 50px;
    }
    .menu-wrapper {
        height: 100px;
        position:static;
    }
    
    body #header #header-image {
        height: 100px;
    }
    .piranya-menu-wrapper.responsive li:before {
        left: 0;
    }
    
    body .piranya-menu-wrapper.responsive > ul i {
        display: block;
    }

}
@media (min-width: 980px)
{
    .piranya-menu-wrapper.responsive > ul > li:hover ul {
        overflow: visible;
    }


    
    .piranya-menu-wrapper.responsive > ul ul li i.piranya-expander ~ ul {
        position: relative;
        display: block;
    }
    
    .piranya-menu-wrapper.responsive > ul ul li ul li a {
        font-size: 0.5em;
        background: #0e6483;
    }
    
    
    body .piranya-menu-wrapper.responsive > ul ul {
        transition: initial;
            background: #c62819;
    }

#submenu-wrapper .piranya-menu-wrapper.responsive > ul ul {
    position: static;
}
#submenu-wrapper .piranya-menu-wrapper.responsive > ul > li.piranya-menu-item-selected-root ul {
    max-height: 600px;
}
.menu-wrapper
{
         position:static;
}
#menu-wrapper
    {
        width: auto;
        float: right;
   
    }
    body .piranya-menu-wrapper.responsive
    {
        width: auto;
        float: right;
        margin-top:40px;
        clear:right;

    }
    body .piranya-menu-wrapper.responsive li
    {
        padding: 0 10px;
    }
    .piranya-menu-wrapper.responsive > ul > li > a
    {
        line-height: 50px;
    }
    .piranya-menu-wrapper.responsive ul ul li
    {
        float: left;
        padding: 0;
        min-width: 200px;
        width: 100%;
    }
    .piranya-menu-wrapper.responsive ul ul li a
    {
        box-sizing: border-box;
        line-height: 40px;
        padding: 0 20px;
        width: 100%;
        font-size: .8em;
    }
    #submenu-wrapper .piranya-menu-wrapper.responsive li ul li a {
        font-size: 0.7em;
        margin-left: 0;
        padding-left: 10px;
    }
    #submenu-wrapper .piranya-menu-wrapper.responsive li ul li a:before {
        content: "-";
        margin-right: 5px;
    }
    
    .piranya-menu-wrapper.responsive ul ul li a:hover
    {
        text-decoration: none;
        background-color: #7b180e;
    }    
    header .piranya-menu-wrapper.responsive > ul > li:hover ul
    {
        height: 350px;
    }
}

/* /content/dynamic/22.css */
@media (max-width: 979px) {
    .page-content {
        display: flex;
        flex-direction: column;
    }
    .page-content > div:first-child {
        display: none;
    }
    
    .page-content > div:last-child {
        width: 100%;
        margin: 0;
    }
}

@media (max-width: 767px) {
    div#subpage-top
    {
        margin-top: 0;
    }
    section.welcome {
        display: none;
    }
    section.gallery {
        height: auto;
    }
    .frontpage-box img {
        width: 50px;
        height: 50px;
    }
    .frontpage-box .box-wrapper > a > div {
        width: calc(100% - 60px);
    }
    .frontpage-box .box-wrapper > a > div h4 {
        font-size: 1.4em;
    }
}
@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: 779px)
{
    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;
    }
}

/* 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]: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);
        }
    }

    @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 p
{
    color:white;
    font-size: 0.9333em;
}

#footer
{
    height: 120px;
    display: table;
    width: 100%;
    bottom: 0;
        background-color: #35915d;


}

#footer-left
{
    width:40%;
    margin-top:20px;
}
#footer-right
{
    width:40%;
    margin-top:20px;
}

@media (max-width: 600px) {
 #footer-left
{
    width:100%;
    margin-top:20px;
}

#footer-right
{
    width:100%;
    margin-top:20px;
}
 
 
   
}

/* /content/dynamic/43.css */
.gallery-categories-wrapper
{
    width: 100%;
}
.category-wrapper
{
    padding: 0 10px;
    height: 50px;
    background-color: #222222;
    text-align: center;
    margin-right: 10px;
    margin-bottom: 10px;
      -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;
    cursor: pointer;
}
.category-wrapper:hover, .category-wrapper.selected
{
    background-color: #0e8318;
}
.category-wrapper p
{
    line-height: 50px;
    color: white;
    font-size: 1.1em;
}
#gallery-images-wrapper.isInitializing
{
    min-height: 500px;
    background: url('/image/10856') center center no-repeat;
}
#gallery-images-wrapper .piranya-col img
{
    max-width: 100%;
    -webkit-transition: all 2s ease-out;
    transition: all 2s ease-out;
}
#gallery-images-wrapper a
{
    overflow: hidden;
}
#gallery-images-wrapper .piranya-col img:hover
{
    -ms-transform: scale(1.2);
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}

/* /content/dynamic/44.css */
@media (min-width: 980px){
   #submenu-wrapper{
       background-color:#0e6483;
       width: 100%;
   }
   ul#piranya-menu-3 li, ul#piranya-menu-2 li, ul#piranya-menu-4 li, ul#piranya-menu-5 li
   {
       width:100%;
       border-bottom:1px solid #145c75;
   }
    
    #submenu-wrapper .piranya-menu-wrapper.responsive 
    {
       float: left;
       width: 100%;
    }
    
   #submenu-wrapper .piranya-menu-wrapper.responsive li 
   {
       padding:0px;

   }
      #submenu-wrapper .piranya-menu-wrapper.responsive li a
   {
       margin-left:10px;
   }
   
    #submenu-wrapper .piranya-menu-wrapper.responsive ul {
        width: 100%;
       
    }
    .piranya-grid .subpage-right {
        clear: none;
        margin-top: 0;
    }
}
@media (max-width: 979px){
    .subpage-right {
        max-width: 100%;
    }
    
    #submenu-wrapper .piranya-menu-wrapper.responsive {
        margin-top: 0px;
        position: relative;
    }
    
     #submenu-wrapper .piranya-menu-wrapper.responsive > ul {
         position: initial;
     }
    
    #piranya-menu-2, #piranya-menu-3, #piranya-menu-4, #piranya-menu-5 {
        /*display: none;*/
    }
}

/* /content/dynamic/46.css */
.event-calendar .fc-content {
    color: white;
}

div#calendar-wrapper, body #event-popup, body #event-popup p, body #event-popup a {
    font-family: ubuntu_regular;
}

.piranya-calendar-full button.fc-state-active, .piranya-calendar-full buttton.fc-state-down {
    background-color: #0D7899;
    color: white;
}

.piranya-calendar-full .fc-event {
    border-color: #0D7899;
    background-color: #0D7899;
}

.piranya-calendar-full .fc-event-container:hover > a {
    background: #1a4352;
    border-color: #1a4352;
}

.piranya-calendar-full.fc-unthemed .fc-today {
    background: rgba(13, 120, 153, 0.5);
    color: white;
}

.piranya-calendar-full .fc-button:focus {
    outline: none;
}

body #event-popup {
    max-width: 45%;
    min-height: 400px;
}

#event-popup h2 {
    font-size: 2em;
    color: #0e6483;
}

body #event-popup .right > img {
    max-height: 240px;
    margin-bottom: 30px;
}

body #event-popup .popup-header {
    margin-bottom: 30px;
}

body #event-popup .popup-header .title {
    display: inline-block;
    width: calc(100% - 60px);
}

#event-popup i, body #event-popup .right .content .value {
    color: #777777;
    font-size: 1.3em;
    font-weight: normal;
}

body #event-popup .right .content .value {
    margin: 0;
}

#event-popup .right {
    flex-direction: column;
}

#event-popup .right .content .value {
    margin: 5px 0px 0 10px;
}

#event-popup .url {
    background: #86b64d;
}

@media (max-width: 1200px)
{
    body .piranya-calendar-full {
        margin: 0 20px;
        width: calc(100% - 40px);
    }
    
    body #event-popup {
        max-width: 75%;
    }
}

/* /content/dynamic/48.css */
.expandable-panel h2, 
.expandable-panel p, 
.expandable-panel ol,  {
    margin:0px;
    padding:0px;
}
#container {
    width: 100%;
    margin:auto;
    margin-top:30px;
}
/* --------- COLLAPSIBLE PANELS ----------*/
 .expandable-panel {
    width:100%;
    position:relative;
    min-height:50px;
    overflow:auto;
    margin-bottom: 15px;
    border:1px solid #d4d4d4;
}
.expandable-panel-heading {
    width:100%;
    cursor:pointer;
    min-height:50px;
    clear:both;
    background-color:lightgray;
    position:relative;
}
.expandable-panel-heading:hover {
    color:#666;
}
.expandable-panel-heading h2 {
    padding:14px 10px 9px 15px;
    font-size:17px;
    color:black;
}

.expandable-panel-content {
    padding: 0 15px 0 15px;
    margin-top: -999px;
    width: 100%;
    box-sizing: border-box;
    background: white;
}
.expandable-panel-content p {
    padding:4px 0 6px 0;
}
.expandable-panel-content p:first-child {
    padding-top:10px;
}
.expandable-panel-content p:last-child {
    padding-bottom:15px;
}
.expandable-panel-heading h2:after {
    width:20px;
    height:20px;
    position:absolute;
    content: "\f103";
    right:15px;
    font-family: fontawesome;
}

.expandable-panel-heading.expanded h2:after {
    font-family: fontawesome;
    content: "\f102";
}

/* /content/dynamic/52.css */
#piranya-page ul.only-list li {
    font-size: 1.3em;
    list-style: none;
}

#piranya-page ul.only-list li:not(:first-child) {
    margin-top: 10px;
}

#piranya-page li a:before {
    font-family: fontawesome;
    margin-right: 15px;
}

#piranya-page li.letter a:before {
    content: "\f003";
}

#piranya-page li.clip a:before {
    content: "\f0c6";
}

/* /content/dynamic/53.css */
table
{
    font-family:'Ubuntu_Regular';
}

td
{
    background-color:#eaeaea;
    height:100px;
    text-align: center;
}

tr:nth-child(odd) td
{
    background-color: #fafafa;    
    height:100px;
}

th, 
tr:first-child td 
{
    background-color: #35925d;
    padding-left:10px;
    height:30px;
    color:white;
}

/* /content/dynamic/45.css */
#header
{

    color: white;
    line-height: 100%;
    width: 100%;
    text-align: center;
    display: table-cell;
    padding-bottom: 10px;
}

body:not(.piranya-page-home) #header
{
    padding-bottom: 40px;
}

#header p
{
    color:white;
}

#header #header-image {
    height: 176px;
    width: 100%;
    border-bottom: 10px solid #35925d;
     background-position: center;
   
}

/* piranya/menu/expandable */
.piranya-menu li {
    position: relative;
}

.piranya-menu .piranya-expander {
    display: inline-block;
    position: absolute;
    right: 4%;
    top: 0px;
    font-size: 1em;
    line-height: inherit;
    vertical-align: middle;
    z-index: 2;
}

.piranya-menu .piranya-expander:before {
    content: "\f067";
}

/*Expandable menu*/
.piranya-menu ul {
    min-height: 0;
    max-height: 0;
    -webkit-transition: all 0.8s ease;
    overflow: hidden;
    float: left;
}

.piranya-menu ul.expanded {
    max-height: 999px;
    visibility: visible;
    opacity: 1;
    box-sizing: border-box;
    width: 100%;
}
.piranya-menu ul ul {
    padding: 0;
}
.piranya-menu i.expanded:before
{
    content: "\f068";
}

/* /content/dynamic/56.css */
p
{
    font-feature-settings: 'lnum' 1;
    
}

.colums-1 {
    width: 100%;
}

.feature-box-inner
{
float:left;
    padding: 50px 0px;
    text-align:center;

display: flex;
flex-direction: column;
    align-items: center;
}

.fbox-icon
{
    display: flex;
    justify-content: center;
          color: #fff;
    background: #c62717;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    -ms-border-radius: 50%;
    -o-border-radius: 50%;
    line-height: 76px;

    font-size: 30px;
    margin-bottom: 20px;
}

.description p
{

    font-size: 20px;
    color: black;
    -webkit-transition: all 0.2s ease-in-out 0s;
    -o-transition: all 0.2s ease-in-out 0s;
    transition: all 0.2s ease-in-out 0s;
}
body .box
{
    background-color: #ececec;
    min-height:100px;
        display: inline-block;
        margin-bottom:20px;
}

/* /content/dynamic/16.css */
body div.p-radio > input[type="radio"] + label,
body input.p-radio[type="radio"] + label,
body div.p-checkbox > input[type="checkbox"] + label,
body input.p-checkbox[type="checkbox"] + label {
  width: 100%; }

.piranya-shop .highlight, .piranya-shop tr.highlight h3, .piranya-shop tr.highlight p
{
    color:black;
}
.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;
      background-color: #c62717;
    font-family: Bree_Serif_Reg;
    font-weight: bold;
    color: white;
    -webkit-border-radius: 3px;
    -moz-border-radius: 3px;
    border-radius: 3px;
    padding: 10px 40px;
}
.piranya-txt, .piranya-textarea
{
    width: 100%;
}
.btn-animation:hover, .piranya-btn:hover
{
    opacity: 0.9;
}
a.piranya-btn:hover
{
    text-decoration: none;
}
input.piranya-btn
{

    cursor: pointer;
    border: none;
    color: white;
    font-family: 'AvenirLTStdHeavy';
    font-weight: normal;
    letter-spacing: 1px;
    font-size: 1.05em;
input.piranya-btn
{

    cursor: pointer;
    border: none;
    color: white;
    font-family: 'AvenirLTStdHeavy';
    font-weight: normal;
    letter-spacing: 1px;
    font-size: 1.05em;
    background-color: #1aa29b;
    border-radius: 0px;
}
    border-radius: 0px;
}

input, textarea
{
    font-family: AvenirLTStdHeavy;
}
form
{
    width: 100%;
}
textarea
{
    min-height: 100px;
}
label
{
    font-size: 0.8em;
    color: #737373;
    font-family: AvenirLTStdHeavy;
    
}
.piranya-view-form-wrapper div[data-error]
{
    font-size: 0.8em;
}
.piranya-txt
{
    width: 340px;
    min-height: 15px;
    color: #666666;
    letter-spacing: 1px;
    border-radius: 3px;
    font-family: 'AvenirLTStdHeavy';
    font-weight: 400;
    padding: 15px;
    border: 1px solid #D0D0D0;
    background-color: #FBFBFB;
}
input.piranya-txt, textarea.piranya-textarea, textarea.piranya-txt
{
 
}
textarea.piranya-txt
{
    width: calc(100% - 4px);
    min-height: 150px;
}
::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color:    #232323;
}
:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
   color:    #232323;
   opacity:  1;
}
::-moz-placeholder { /* Mozilla Firefox 19+ */
   color:    #232323;
   opacity:  1;
}
:-ms-input-placeholder { /* Internet Explorer 10-11 */
   color:    #232323;
}


.contact-right
{
    float: right;
    width: 30%;
    height: 300px;
}
#contact-wrapper h2
{
    margin-bottom: 10px;
}
#contact-form, #footer-map
{
    width: 100%;
}
#footer-map
{
    height: 100%;
}
.contact-left
{
    width: calc(70% - 10px);
}
#contact-form div[data-field="Navn"], #contact-form div[data-field="Email"], #contact-form div[data-field="Emne"], #contact-form div[data-field="Telefon"]
{
    width: calc(50% - 5px);
}
#contact-form div[data-field="Email"], #contact-form div[data-field="Telefon"]
{
    float: right;
    clear: none;
}
@media (max-width: 767px)
{
    .contact-left, .contact-right 
    {
        width: 100%;
        margin-bottom: 20px;
    }
}


.piranya-view-form-wrapper > form div[data-field] > .editor > span[data-editor] > *
{
        width: calc(100% - 5px);
}

/* /content/dynamic/57.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;
}

.piranya-grid .member {
    border: 1px solid grey;
    padding: 10px;
    box-sizing: border-box;
    min-height: 201px;
}

.member img {
    margin-right: 20px;
    width: 100px;
    height: 130px;
}

/* ~/content/piranya/module/custompage/menues/responsive.css */
/*Tablet portrait and smartphones*/
@media (max-width: 979px) {
    body.has-active-menu {
        overflow: hidden;
    }

    .piranya-menu-wrapper.responsive {
        position: relative;
    }

    header, footer, #piranya-page
    {
        -webkit-transition: transform 0.3s;
        -moz-transition: transform 0.3s;
        -o-transition: transform 0.3s;
        -ms-transition: transform 0.3s;
        transition: transform 0.3s;
    }
    .piranya-menu-wrapper.responsive > ul {
        width: 32px;
        height: 32px;
        top: 10px;
        right: 10px;
        position: absolute;
        z-index: 1000;
        color: white;
        -webkit-transition: width 0.3s;
        -moz-transition: width 0.3s;
        -o-transition: width 0.3s;
        -ms-transition: width 0.3s;
        transition: width 0.3s;
    }

    .piranya-menu-wrapper.responsive li {
        color: #FFFFFF;
        padding: 0;
        width: 100%;
        list-style: none;
        font-size: 10px;
        visibility: hidden;
        line-height: 30px;
        -webkit-transition: transform 0.2s linear;
        -moz-transition: transform 0.2s linear;
        -o-transition: transform 0.2s linear;
        -ms-transition: transform 0.2s linear;
        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 {
        width: 280px;
        padding-left: 20px;
        top: 0;
        overflow-y: auto;
        right: 0;
        position: fixed;
        background-color: #272822;
        height: calc(100% - 50px);
        z-index: 10000;
        border: 1px solid #aaa;
        padding-top: 50px;
    }
    .piranya-menu-wrapper.responsive > ul.closed
    {
        -webkit-transition: width 250ms;
        -moz-transition: width 250ms;
        -o-transition: width 250ms;
        -ms-transition: width 250ms;
        transition: width 250ms;
    }
    .piranya-menu-wrapper.responsive > ul li
    {

    }
    .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;
         -webkit-transition: all 0.2s;
        -moz-transition: all 0.2s;
        -o-transition: all 0.2s;
        -ms-transition: all 0.2s;
        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 {
        width: 100%;
    }

    .piranya-menu-wrapper.responsive li {
        padding: 0px 20px;
        position: relative;
    }

    .piranya-menu-wrapper.responsive ul a {
        vertical-align: middle;
        float: left;
    }

    .piranya-menu-wrapper.responsive > ul > li:hover ul
    {
        max-height: 600px;
    }

    /*Submenu*/
    .piranya-menu-wrapper.responsive > ul ul {
        position: absolute;
        overflow: hidden;
        list-style-type: none;
        padding: 0;
        max-height: 0;
        z-index: 1000;
        left: 0;
        top: 100%;
        -webkit-transition: max-height 0.6s linear;
        -moz-transition: max-height 0.6s linear;
        -ms-transition: max-height 0.6s linear;
        -o-transition: max-height 0.6s linear;
        transition: max-height 0.6s linear;
    }

    .piranya-menu-wrapper.responsive .close-btn {
        display: none;
    }

    .piranya-menu-wrapper.responsive > ul ul ul, .piranya-menu-wrapper.responsive i
    {
        display: none; /*Sub submenu not added support yet*/
    }
}