﻿/* BOOTSTRAP */
input[type='number'].form-control {
    -webkit-appearance: textfield;
    -moz-appearance: textfield;
}

::-webkit-inner-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
}
::-webkit-outer-spin-button {
    -webkit-appearance: none;
    -moz-appearance: none;
}

.modal-open {
    overflow:auto;
}

.modal-body .help-text {
    padding-bottom:15px;
}

/* GLOBAL */
#loadingOverlay {
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    display:flex;
    align-items:center;
    justify-content:center;
    background-color:rgba(0,0,0,0.1);
    z-index:100000;
}

.btn-highlight {
    font-weight: bold;
    background-color: rgb(249, 255, 118);
}
.btn-highlight:hover,
.btn-highlight:active,
.btn-highlight:focus
{
    font-weight:bold;
    background-color:yellow;
}

.bounce {
    animation: 2s ease 0s normal none infinite running bounce;
}

#formHelperArrow{
    height: 60px;
    width: 40px;
    top:50%;
    right:25px;
    margin-top: -30px;
    position: fixed;
}
@media only screen and (max-width : 768px)
{
    #formHelperArrow{
        display:none;
    }
}

#formHelperArrow i{
    margin-top:-15px;
    opacity:0.8;
}

/* WEBSHOP */
#language-selector-container {
    background-color:#fff;
    padding:5px;
}

.flag {
    display:block;
    width:75px;
    height:40px;
    background-size:100% 100%;
} 

.flag.language-1 {
    background-image:url('/Content/flags/flag-da.png');
}

.flag.language-2 {
    background-image:url('/Content/flags/flag-en.png');
}

.flag.language-3 {
    background-image:url('/Content/flags/flag-de.png');
}

.main-content {
    min-height:500px;
    padding-bottom:25px;
}

a {
    cursor:pointer;
}

footer a:hover, footer a:focus
{
    color:#ffffff;
}

.text-block h1,.text-block h2, .text-block h3, .text-block h4, .text-block h5 {
    margin:0;
    padding:0;
}

.text-block h1 {
    font-size:2em;
    padding-bottom:10px;
}
.text-block h2 {
    font-size:1.8em;
}
.text-block h3 {
    font-size:1.6em;
}
.text-block h4 {
    font-size:1.4em;
}
.text-block h5 {
    font-size:1.2em;
}

.clear {
    clear:both;
}

.float-left {
    float:left;
}

.float-right {
    float:right;
}

.table-borderless tbody tr td, .table-borderless tbody tr th, .table-borderless thead tr th {
    border: none;
}

.section {
    padding-bottom:15px;
}

.link-button {
    border:none;
    background-color:transparent;
}

    .link-button:hover {
        text-decoration:underline;
    }

#top {
    margin-top:10px;
    margin-bottom:15px;
}

    #top #user-menu {
        list-style-type:none;
    }
    #top #user-menu li{
        display:block;
        float:left;
        margin-right:10px;
    }
        #top #user-menu li a,
        #top #user-menu li a:hover,
        #top #user-menu li a:focus,
        #top #user-menu li a:active,
        #top #user-menu li button{
            text-decoration: none;
            font-weight: bold;
        } 
        
        #top a {
            color: #000000;
        }

#top #log-off-container {
    float:left;
    position:relative;
}

    #top #log-off-container button {
        text-transform:uppercase;
        font-weight:bold;
    }

#top #shopping-cart-link {
    float:right;
    position:relative;
    text-transform:uppercase;
    font-weight:bold;
}

    #top #shopping-cart-link .basket-count {
        display:block;
        background-color:#808080;
        color:#ffffff;
        position:absolute;
        top:-10px;
        right:-10px;
        border-radius:50%;
        min-width:20px;
        height:20px;
        line-height:20px;
        text-align:center;
        padding:0 3px;
    }

#banner img {
    width:100%;
}

.fa-2 {
    font-size:2em;
}
.fa-3 {
    font-size:3em;
}
.fa-4 {
    font-size:4em;
}
.fa-5 {
    font-size:5em;
}

* {
    box-sizing: border-box;
}

#progress {
    padding: 0;
    list-style-type: none;
    font-family: arial;
    font-size: 12px;
    clear: both;
    line-height: 1em;
    margin: 0 -1px;
    text-align: center;
    margin-top:15px;
    margin-bottom:15px;
}

#progress li {
    float: left;
    padding: 10px 30px 10px 40px;
    background: #bbb;
    color: #fff;
    position: relative;
    width: 19%;
    margin: 0 1px;
}

    #progress.count-4 li {
        width: 24%;
    }

#progress li a{
    display:block;
    width:100%;
    height:100%;
    color:#ffffff;
    text-transform:uppercase;
    font-weight:bold;
}

#progress li:before {
    content: '';
    border-left: 16px solid #fff;
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    position: absolute;
    top: 0;
    left: 0;
    
}
#progress li:after {
    content: '';
    border-left: 16px solid #bbb;
    border-top: 16px solid transparent;
    border-bottom: 16px solid transparent;
    position: absolute;
    top: 0;
    left: 100%;
    z-index: 20;
}

#progress li.active {
    background: #555;
}

#progress li.active:after {
    border-left-color: #555;
}

    #progress li.done {
        background:#000;
    }

    #progress li:first-child:before {
        border-left:16px solid #000;
    }

    #progress li.next:before {
        border-left:16px solid #bbb;
    }

    #progress li.active:first-child:before {
        border-left:16px solid #555555;
    }

    #progress li.done:after {
        border-left:16px solid #000;
    }


/* FORM */
.validation-error-text {
    color:#ff0000;
}

.form-group-start {
    padding-top:10px;
}

/* Ajax */
#ajax-loading-container {
    position:fixed;
    top:0;
    left:0;
    width:100%;
    height:100%;
    display:flex;
    justify-content:center;
    align-items:center;
    background-color:#fff;
    background-color:rgba(255,255,255,0.7);
    z-index:10000;
}

    #ajax-loading-container #ajax-loading-icon {
        width: 31px;
        height: 31px;
        background-image: url('Graphic/loading.gif');
        background-size:100% 100%;
    }

/* PREV / NEXT BUTTONS */
#button-panel {
    padding-top:15px;
    padding-bottom:15px;
}

    #button-panel .next,
    #button-panel .prev {
        background-color:#555;
        color:#fff;
        border:none;
        position: relative;
        line-height:32px;
        margin-right:32px;
        padding:0 25px;
        font-size:1.5em;
    }

    #button-panel .next {
        margin-right:35px;
    }
    #button-panel .prev {
        margin-left:35px;
    }

        #button-panel .next:after {
            content: '';
            border-left: 32px solid #555;
            border-top: 16px solid transparent;
            border-bottom: 16px solid transparent;
            z-index: 20;
            position:absolute;
            top:0;
            left:100%;
        }

        #button-panel .prev:before {
            content: '';
            border-right: 32px solid #555;
            border-top: 16px solid transparent;
            border-bottom: 16px solid transparent;
            z-index: 20;
            position:absolute;
            top:0;
            right:100%;
        }

        #button-panel .next:hover {
            background-color:#000;
        }

        #button-panel .next:hover:after {
            border-left: 32px solid #000;
        }

        #button-panel .next:hover,
        #button-panel .prev:hover {
            background-color:#000;
        }

        #button-panel .next:hover:after
        {
            border-left: 32px solid #000;
        }

        #button-panel .prev:hover:before 
        {
            border-right: 32px solid #000;
        }


/* Identification / Reidentification */
#identification-intro-panel
{
    padding-top:15px;
    padding-bottom:15px;
}

/* TICKETS */
.ticket-table td {
    vertical-align:middle !important;
}

.item-name {
    font-weight:bold;
}

    .item-name a {
        color:#000000;
        text-decoration:underline;
    }


.purchased-tickets-table .ticket-row td {
    border-top:1px solid #000000;
    padding:5px;
}

.purchased-tickets-table .ticket-items-table td {
    padding:5px;
}


/* ADDONS */
.item-group-container {
    margin-bottom:25px;
}

.item-group-image-container {
    position:relative;
    margin-bottom:10px;
    height:210px;
    display:flex;
    align-items:center;
    overflow:hidden;
    background-color:#cdcdcd;
}

.item-group-image-container img {
    /*max-width:100%;
    max-height:100%;*/
    width:100%;
    margin:auto;
    display:block;
}

    .item-group-image-container .text-overlay {
        position:absolute;
        bottom:0;
        left:0;
        width:100%;
        box-sizing:border-box;
        padding:5px 10px;
        background-color:rgb(127,127,127);
        background-color:rgba(127,127,127,0.85);
        color:#ffffff;
    }

/* SHOW BASKET */
.basket-overview th {
    border-bottom:1px solid #000000 !important;
}

.basket-overview .price {
    text-align:right;
    padding-right:15px;
}

.basket-overview .total-row td{
    border-top:1px solid #000000;
    border-bottom:2px solid #000000;
    font-weight:bold;
}

/* INVITATION */
.invitation-code {
    font-weight:bold;
    padding-right:25px;
}
.invitation-code .highlight
{
    background-color:yellow;
}

.invitation-code-description {
    font-weight:bold;
    padding-right:25px;
}

.item-invitation-highlight span {
    display:inline-block;
    padding:5px;
    background-color:yellow;
    font-weight:bold;
}

/* Onsite webshop complete*/
#arrow-container {
    text-align:center;
    padding:50px 0;
}

#arrow-container .arrow {
    display:inline-block;
    margin:0 10px;
}

.arrow-right {
  width: 0; 
  height: 0; 
  border-top: 60px solid transparent;
  border-bottom: 60px solid transparent;
  border-left: 60px solid grey;
}
    .arrow-right.on {
        border-left: 60px solid black;
    }


.arrow-left {
  width: 0; 
  height: 0; 
  border-top: 60px solid transparent;
  border-bottom: 60px solid transparent; 
  border-right:60px solid grey; 
}
    .arrow-left.on {
        border-right:60px solid black; 
    }

/* Footer / background */
body {
    background-color:#000000;
}

    body .content {
        background-color:#ffffff;
    }

footer {
    background-color:black;
    color:#ffffff;
    padding-top:15px;
    padding-bottom:15px;
    font-family: 'Lato', sans-serif;
    box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
}

    footer .logo {
        margin-right:50px;
        float:left;
        max-width:200px;
    }

    footer .logo svg {
        fill:#ffffff;
        height:50px;
        float:left;
    }

    footer .text {
        float:left;
    }


    footer a {
        color:#ffffff;
        text-decoration:underline;
    }


/*==========  Non-Mobile First Method  ==========*/

/* Large Devices, Wide Screens */
@media only screen and (max-width : 1200px) {
    #progress li {
        padding: 10px 20px 10px 20px;
    }

    .item-group-image-container {
        height:262px;
    }
}

/* Medium Devices, Desktops */
@media only screen and (max-width : 992px) {
    #progress li {
        padding: 10px 20px 10px 20px;
    }

    .item-group-image-container {
        height:415px;
    }
}

/* Small Devices, Tablets */
@media only screen and (max-width : 768px) {
    #progress li {
        padding: 10px 10px 10px 15px;
    }

    .item-group-image-container {
        height:400px;
    }
}

/* Extra Small Devices, Phones */ 
@media only screen and (max-width : 480px) {
    #progress {
        font-size:11px;
    }

    #progress li, #progress.count-4 li {
        width:49%;
    }

    .item-group-image-container {
        height:250px;
    }
}


.warning-notification {
    padding: 20px;
    font-size: 1.5em;
    background-color: yellow;
    text-align: center;
    box-shadow: 0px 5px 5px 0 rgba(0,0,0,0.5);
}