﻿/* Fonts */
@font-face {
    font-family: 'open_sansbold';
    src: url('/css/fonts/opensans-bold.eot');
    src: url('/css/fonts/opensans-bold.eot?#iefix') format('embedded-opentype'), url('/css/fonts/opensans-bold.woff') format('woff'), url('/css/fonts/opensans-bold.ttf') format('truetype'), url('/css/fonts/opensans-bold.svg#open_sansbold') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'open_sansitalic';
    src: url('/css/fonts/opensans-italic.eot');
    src: url('/css/fonts/opensans-italic.eot?#iefix') format('embedded-opentype'), url('/css/fonts/opensans-italic.woff') format('woff'), url('/css/fonts/opensans-italic.ttf') format('truetype'), url('/css/fonts/opensans-italic.svg#open_sansitalic') format('svg');
    font-weight: normal;
    font-style: normal;
}

@font-face {
    font-family: 'open_sansregular';
    src: url('/css/fonts/opensans-regular.eot');
    src: url('/css/fonts/opensans-regular.eot?#iefix') format('embedded-opentype'), url('/css/fonts/opensans-regular.woff') format('woff'), url('/css/fonts/opensans-regular.ttf') format('truetype'), url('/css/fonts/opensans-regular.svg#open_sansregular') format('svg');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'open_sansregular', Arial;
    background: #626262;
}

.contentWrapper {
    width: 62.5em;
    margin: auto;
}

b, strong {
    font-family: 'open_sansbold';
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'open_sansbold';
}

/* Topbar */
.top-bar {
    background: #ffffff; /* Old browsers */
    background: -moz-linear-gradient(top, #ffffff 0%, #e5e5e5 100%); /* FF3.6+ */
    background: -webkit-gradient(linear, left top, left bottom, color-stop(0%,#ffffff), color-stop(100%,#e5e5e5)); /* Chrome,Safari4+ */
    background: -webkit-linear-gradient(top, #ffffff 0%,#e5e5e5 100%); /* Chrome10+,Safari5.1+ */
    background: -o-linear-gradient(top, #ffffff 0%,#e5e5e5 100%); /* Opera 11.10+ */
    background: -ms-linear-gradient(top, #ffffff 0%,#e5e5e5 100%); /* IE10+ */
    background: linear-gradient(to bottom, #ffffff 0%,#e5e5e5 100%); /* W3C */
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#e5e5e5',GradientType=0 ); /* IE6-9 */
    border-bottom: 2px solid #cccccc;
    color: #000;
    height: 60px;
}

    .top-bar #toplogo {
        float: left;
        margin: 5px 50px 10px 0;
    }


/* Nav */
.nav {
}

    .nav ul, .nav li {
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .nav li {
        float: left;
        position: relative;
    }

    .nav a:hover {
        text-decoration: underline;
    }

.nav-primary {
    float: left;
    font-size: 0.9rem;
}

    .nav-primary a {
        color: #000;
        display: block;
        padding: 19px 15px 19px 0;
        margin-right: 30px;
        font-weight: 100;
        font-family: 'open_sansbold';
        background: url('/img/dd_arrow.png') no-repeat right center;
    }

    .nav-primary .nav-dropdown {
        position: absolute;
        top: 60px;
        left: 0;
        width: 200px;
        z-index: 9;
        display: none;
    }

        .nav-primary .nav-dropdown a {
            font-family: 'open_sansregular';
        }

    .nav-primary li:hover .nav-dropdown {
        display: block;
    }

    .nav-primary > ul > li:hover > a {
        text-decoration: underline;
    }

.nav-dropdown li {
    float: none;
    margin: 0;
    padding: 0;
}

.nav-dropdown a {
    background: #cfcfcf;
    color: #333333;
    border-bottom: 1px solid #dcdcdc;
    padding: 10px 15px;
    margin: 0;
    font-weight: 100;
}

.nav-dropdown li:last-of-type a {
    border-radius: 0 0 5px 5px;
    -moz-border-radius: 0 0 5px 5px;
    -webkit-border-radius: 0 0 5px 5px;
    border-bottom: 0;
}

.nav-secondary {
    float: right;
    margin-top: 15px;
}

    .nav-secondary a {
        display: block;
        color: #000;
        font-weight: 100;
        padding: 6px 10px 6px 33px;
        font-size: 0.8rem;
        border-right: 1px solid #c0c0c0;
    }

    .nav-secondary li:last-of-type a {
        border-right: 0;
    }

    .nav-secondary .link-help {
        background: url(/img/icon_question.png) no-repeat 11px center;
    }

    .nav-secondary .link-info {
        background: url(/img/icon_info.png) no-repeat 11px center;
    }

    .nav-secondary .link-key {
        background: url(/img/icon_key.png) no-repeat 11px center;
    }

    .nav-secondary .link-profile {
        background: url(/img/icon_profile.png) no-repeat 11px center;
    }

    .nav-secondary .link-logout {
        background: url(/img/icon_logout.png) no-repeat 11px center;
    }

    .nav-secondary .link-house {
        background: url(/img/icon_house.png) no-repeat 11px center;
    }

/* Sections */
.section {
    padding-top: 40px;
    padding-bottom: 40px;
    /*overflow: hidden;*/
    color: #000;
}

.section-blue {
    background: #2a8195;
    color: #fff;
}

.section-gray {
    background: #dcdbdb;
    color: #000;
}

.section-white {
    background: #fff;
    color: #000;
}

.section-darkgray {
    background: #626262;
    color: #fff;
}

.section-body {
    padding-top: 0;
}

.section-header {
    padding: 350px 0 100px 0;
    background-size: cover;
    /*background-image: url(/img/top_banner.gif);*/
    background-image: url(/img/headerImg.jpg);
    background-repeat: no-repeat;
    background-position: center center;
}

@media only screen and (max-width: 600px) {
    .section-header {
        padding: 90px 0 90px 0;
    }
}


.subpage-banner {
    height: 280px;
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}


@media only screen and (max-width: 600px) {
    .subpage-banner {
        height: 70px;
    }
}



.section-blue h1 {
    color: #fff;
}

.section-header h1 {
    font-size: 2em;
    line-height: 1.4em;
    margin-bottom: 40px;
}

.section-header a {
    font-family: 'open_sansbold';
    font-weight: 100;
    margin-left: 10px;
    margin-right: 10px;
    padding-right: 35px;
    padding-left: 35px;
}

.section h2 {
    font-size: 1.2em;
    margin: 0 0 20px 0
}

.section h3 {
    font-size: 1em;
    margin: 0 0 20px 0
}

.header-top {
    padding-top: 40px;
    padding-bottom: 20px;
    overflow: hidden;
}

    .header-top h4 {
        padding: 0;
        margin: 0;
    }

header hr {
    margin: 0 0 20px 0 !important;
    padding: 0;
}


.table {
    width: 100%;
}

/* helpers */
.text-center {
    text-align: center;
}


/* Rental list */
.rentals td {
    vertical-align: middle;
    border-top: 1px solid #e5e5e5;
}

.rentals .col1 {
    width: 14%;
}

.rentals .col2 {
    width: 33%;
}

.rentals .col3 {
    width: 5%;
}

.rentals .col4 {
    width: 5%;
}

.rentals .col5 {
    width: 18%;
}

.rentals td.col5 {
    text-align: right;
}

.rentals .col6 {
    width: 15%;
}

.rentals .col7 {
    width: 10%;
}


/* Rental details */

.rental-number {
    margin-top: 15px;
}

#signup-form {
    display: none;
}

.modal-close {
    margin: 15px 30px 0 0;
    display: block;
}

#rental-map {
    height: 400px;
    width: 100%;
    background-color: #efefef;
}
/* Frontpage */


/* Boxes*/

.box {
    padding: 10px;
}

.box-blue {
    background: #2a8195;
    color: #fff;
}

.box-gray {
    background: #efefef;
    color: #333;
}

.box-gold {
    background: #c7a974;
    color: #000;
}

.box-white {
    background: white;
    color: #000;
}

.box-red {
    background-color: #c60f13;
    color: #FFF;
}

.box-info-list {
    margin: 0;
    padding: 0;
    font-size: 0.9em;
}

.box-info-list-margin {
    margin-bottom: 30px;
}

.box-info-list li {
    list-style: none;
    padding: 5px 0;
    border-bottom: 1px solid #fff;
}

    .box-info-list li:last-of-type {
        border-bottom: 0;
    }

.box-info-list label {
    display: block;
    font-weight: 700;
    overflow: hidden;
}

    .box-info-list label span {
        float: right;
        font-weight: 100;
    }


.box-data li:last-of-type {
}

.box-data .standard {
}

    .box-data .standard label {
        font-weight: 100;
    }

.box-data .ialt {
    border-top: 1px solid #efefef;
}

    .box-data .ialt label {
        font-weight: 100;
    }

        .box-data .ialt label span {
            font-weight: 100;
        }

.box-data .total {
    border-top: 1px solid #c1c1c1;
    border-bottom: 1px solid #c1c1c1 !important;
    font-weight: 700;
}

    .box-data .total label {
        font-weight: 700;
    }

        .box-data .total label span {
            font-weight: 700;
        }
/* Tabs */
.tabs .tab-nav {
    overflow: hidden;
    border-bottom: 1px solid #2a8195;
    width: 100%;
}

    .tabs .tab-nav li {
        float: left;
        width: 19.2%;
        margin: 0 1% 0 0;
        list-style: none;
    }

        .tabs .tab-nav li:last-of-type {
            margin-right: 0;
        }

    .tabs .tab-nav a {
        display: block;
        padding: 20px 0;
        width: 100%;
        background-color: #eeeeee;
        text-decoration: none;
        color: #5b5b5b;
        text-align: center;
        border-radius: 4px 4px 0 0;
    }

        .tabs .tab-nav a:hover {
            text-decoration: underline;
        }

        .tabs .tab-nav a.active {
            background-color: #2a8195;
            color: #fff;
            font-family: 'open_sansbold';
        }


.tabs .tab-content-area {
    display: none;
    margin-top: 20px;
}

    .tabs .tab-content-area.active {
        display: block;
    }





/* Images */
.imageWrapper img {
    width: 100%;
    border: 0;
}

.image-with-border {
    border: 3px solid #fff;
    box-shadow: 0 0 10px -3px #000;
    -moz-box-shadow: 0 0 10px -3px #000;
    -webkit-box-shadow: 0 0 10px -3px #000;
    background-color: #fff;
}

    .image-with-border img {
    }

.frontpage-list-image {
    height: 140px;
    text-align: center;
    overflow: hidden
}


/* Gallery */
.gallery-link {
    background: #fff;
    display: block;
    border: 1px solid #fff;
}

    .gallery-link a {
        display: block;
        padding: 20px;
        text-decoration: underline;
    }


.image-gallery {
    overflow: hidden;
    height: 450px;
    position: relative;
}

    .image-gallery .image-gallery-nav {
        position: absolute;
        bottom: 0;
        z-index: 999;
        width: 20%;
        left: 40%;
    }

        .image-gallery .image-gallery-nav a {
            width: 50%;
            display: block;
            background: #FFF;
            float: left;
            text-align: center;
            padding: 10px 0;
        }

/* Button-list */
.button-list {
}

    .button-list a {
        padding: 100px 5px 15px 5px;
        text-align: center;
        display: block;
        font-family: 'open_sansbold';
        text-decoration: none;
        margin-bottom: 30px;
        font-size: 1em;
    }

        .button-list a:first-of-type {
            border-radius: 4px 4px 0 0;
            -moz-border-radius: 4px 4px 0 0;
            -webkit-border-radius: 4px 4px 0 0;
        }

        .button-list a:last-of-type {
            border-radius: 0 0 4px 4px;
            -moz-border-radius: 0 0 4px 4px;
            -webkit-border-radius: 0 0 4px 4px;
        }

.button-list-blue {
    background: #2a8195;
    color: #fff;
}

    .button-list-blue:hover {
        background-color: #226777;
        color: #FFF;
    }

.button-list-gray {
    background-color: #dcdbdb;
    color: #2a8195;
}

    .button-list-gray:hover {
        background-color: #ececec;
        color: #2a8195;
    }

.button-list-person {
    background-image: url('/img/icon_person.png');
    background-repeat: no-repeat;
    background-position: center 30px;
}

.button-list-signup {
    background-image: url('/img/icon_sign_white.png');
    background-repeat: no-repeat;
    background-position: center 30px;
}

.button-list-money {
    background-image: url('/img/icon_money.png');
    background-repeat: no-repeat;
    background-position: center 30px;
}

.button-list-unsignfrom {
    background-image: url('/img/icon_unsign.png');
    background-repeat: no-repeat;
    background-position: center 30px;
}

.button.gray {
    background-color: #dcdbdb;
    color: #2a8195;
}

.button.inverted {
    background: none;
    border: 3px solid #fff;
    color: #fff;
}

.button.gray:hover {
    background-color: #ececec;
    color: #2a8195;
}


/* Lists */

.house-list {
}

.house-list-item {
}

.house-list-item-link {
    display: block;
    padding: 10px 0;
}

/* Footer */
.page-footer {
    position: relative;
    bottom: 0;
}

    .page-footer h3 {
        margin-bottom: 10px;
        color: #ffffff;
    }

    .page-footer ul, .page-footer li {
        padding: 0;
        margin: 0;
        list-style: none;
    }

    .page-footer, .page-footer a {
        color: #e2e2e2;
    }

#newsletter .email {
    border-radius: 5px 0 0 5px;
}

#newsletter .submit {
    border-radius: 0 5px 5px 0;
}

.payment-cards {
    border-top: 1px dashed rgba(255,255,255, 0.5);
    padding-top: 25px;
    text-align: center;
    margin-bottom: 15px;
    line-height: 22px;
}

    .payment-cards a {
        font-size: small;
        position: relative;
        top: -5px;
        padding-right: 20px;
        margin-right: 10px;
        display: inline-block;
        height: 22px;
        line-height: 22px;
        border-right: 1px solid rgba(255,255,255, 0.5);
    }

    .payment-cards span {
        display: inline-block;
        height: 22px;
        margin-left: 5px;
        margin-right: 5px;
    }

        .payment-cards span.dankort {
            background: url('/img/paymentcards/dankort_22.gif');
            width: 40px;
        }

        .payment-cards span.edankort {
            background: url('/img/paymentcards/edankort_22.gif');
            width: 50px;
        }

        .payment-cards span.paypal {
            background: url('/img/paymentcards/paypal_22.gif');
            width: 50px;
        }

        .payment-cards span.nordea {
            background: url('/img/paymentcards/nordea_22.gif');
            width: 64px;
        }

        .payment-cards span.danske {
            background: url('/img/paymentcards/danske_22.gif');
            width: 92px;
        }

        .payment-cards span.brugsforeningen {
            background: url('/img/paymentcards/brugsforeningen_22.gif');
            width: 35px;
        }

        .payment-cards span.mastercard {
            background: url('/img/paymentcards/master_22.gif');
            width: 35px;
        }


        .payment-cards span.paypal {
            background: url('/img/paymentcards/paypal_22.gif');
            width: 50px;
        }


.company-info {
    text-align: center;
    font-size: small;
}

    .company-info span {
        padding-left: 20px;
        padding-right: 20px;
    }

.error input {
    margin-bottom: 1rem !important;
}

.payment-warning {
    padding: 10px;
    text-align: center;
    font-weight: bolder;
}

#receipt ul {
    list-style-type: none;
    margin-left: 0;
    margin-bottom: 0;
}

    #receipt ul li {
        padding-bottom: 10px;
    }

#receipt .button {
    margin-left: 10px;
}

#receipt span {
    line-height: 52px;
}

.receiptnav {
    padding: 0;
}

@media print {
    footer {
        display: none;
    }

    .large-6 {
        float: left;
        width: 50%;
    }

    .nav {
        display: none;
    }

    .receiptnav {
        display: none;
    }

    a[href]:after {
        content: none !important;
    }
}

.signup-for-all {
    text-align: left;
    color: white;
    background: #2a8195;
    padding: 10px;
    line-height: 36px;
    margin: 0;
    margin-bottom: 26px;
    font-weight: bold;
    font-size: 3vw;
    white-space: nowrap;
}

@media only screen and (min-width: 40.063em) {
    .signup-for-all {
        float: right;
        font-size: smaller;
    }
}

.icon-signup-for-all {
    display: block;
    float: left;
    padding: 0;
    margin: 0;
    margin-right: 10px;
    margin-left: 10px;
    width: 32px;
    height: 36px;
    background-image: url('/img/icon_sign_white.png');
    background-position: center;
    background-size: contain;
    background-repeat: no-repeat;
}

form#search {
    border: 1px solid #cccccc;
    display: block;
}

    form#search h2 {
        padding-top: 20px;
    }

    form#search input[type="checkbox"] {
        margin-right: 5px;
    }

ul.ejendomsfaciliteter {
    list-style: none;
    margin: 0;
}

    ul.ejendomsfaciliteter li {
        padding: 5px;
    }

    ul.ejendomsfaciliteter .icon {
        width: 32px;
        height: 32px;
        margin-right: 10px;
    }

.profile-form-wrapper {
    border-right: 1px solid #cccccc;
}

#loginRegisterModal .button {
    padding: 100px 5px 15px 5px;
    text-align: center;
    display: inline-block;
    font-family: 'open_sansbold';
    text-decoration: none;
    margin-bottom: 30px;
    font-size: 1em;
    width: 250px;
}

    #loginRegisterModal .button.login {
        background-image: url('/img/icon_person.png');
        background-repeat: no-repeat;
        background-position: center 30px;
    }

    #loginRegisterModal .button.register {
        background-image: url('/img/icon_sign_white.png');
        background-repeat: no-repeat;
        background-position: center 30px;
    }

.rental-area-content {
    padding-right: 0;
}

.back-nav a {
    font-size: 12px;
    display: block;
    margin-top: 10px;
    color: black;
    text-decoration: underline;
}

.button.inactive {
    opacity: 0.5;
}

.terms-box {
    border: 1px solid gray;
    height: 500px;
    overflow: auto;
    padding-top: 10px;
    margin-bottom: 20px;
}

/* keh 23-09-2014 */

.tablev2 {
    display: table;
    width: 100%;
}

    .tablev2 .rowv2 {
        display: table-row;
        width: 100%;
    }

        .tablev2 .rowv2 .columnv2 {
            display: table-column;
            width: 10%;
        }
/* EDITOR PROPERTIES - PLEASE DON'T DELETE THIS LINE TO AVOID DUPLICATE PROPERTIES */


/* MODAL POPUP
====================================================== */

.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content/Box */
.modal-content {
    background-color: #fefefe;
    margin: 15% auto; /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 80%; /* Could be more or less, depending on screen size */
    text-align: center;
}

    .modal-content .buttons {
        margin-top: 40px;
    }


/* The Close Button */
.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

    .close:hover,
    .close:focus {
        color: black;
        text-decoration: none;
        cursor: pointer;
    }



.area-description {
    height: 150px;
    overflow: hidden;
    position: relative;
}

    .area-description::after {
        content: "";
        position: absolute;
        z-index: 10;
        bottom: -130px;
        left: 0;
        right: 0;
        height: 300px;
        border-bottom: 8rem solid #fff;
        background: linear-gradient(to bottom,rgba(255,255,255,0),#fff);
    }

#readAll {
    padding: 10px;
}

.align-center {
    text-align: center;
}


.area-description.full {
    height: auto;
}

    .area-description.full:after {
        display: none;
    }
