.well {
    border-radius: 2px;
}

.polaroid-images a
{
    background: white;
    display: inline;
    float: left;
    margin: 0 15px 30px;
    padding: 10px 10px 25px;
    text-align: center;
    text-decoration: none;
    -webkit-box-shadow: 0 4px 6px rgba(0, 0, 0, .3);
    -moz-box-shadow: 0 4px 6px rgba(0,0,0,.3);
    box-shadow: 0 4px 6px rgba(0,0,0,.3);
    -webkit-transition: all .15s linear;
    -moz-transition: all .15s linear;
    transition: all .15s linear;
    z-index:0;
    position:relative;
}

.polaroid-images a:after {
    color: #333;
    font-size: 20px;
    content: attr(title);
    position: relative;
    top:15px;
}

.polaroid-images img {
    display: block;
    width: inherit;
}

.polaroid-images a:nth-child(2n)
{
    -webkit-transform: rotate(4deg);
    -moz-transform: rotate(4deg);
    transform: rotate(4deg);
}
.polaroid-images a:nth-child(3n) {
    -webkit-transform: rotate(-24deg);
    -moz-transform: rotate(-24deg);
    transform: rotate(-24deg);
}
.polaroid-images a:nth-child(4n)
{
    -webkit-transform: rotate(14deg);
    -moz-transform: rotate(14deg);
    transform: rotate(14deg);
}
.polaroid-images a:nth-child(5n)
{
    -webkit-transform: rotate(-18deg);
    -moz-transform: rotate(-18deg);
    transform: rotate(-18deg);
}

.polaroid-images a:hover{
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transform: scale(1.2);
    -moz-transform: scale(1.2);
    transform: scale(1.2);
    z-index:10;
    -webkit-box-shadow: 0 10px 20px rgba(0, 0, 0, .7);
    -moz-box-shadow: 0 10px 20px rgba(0,0,0,.7);
    box-shadow: 0 10px 20px rgba(0,0,0,.7);
}

/* Styling of Site Labels */

.site-label {
    text-align: center;
    vertical-align: middle;
    font-size: 36px;
    font-weight: bold;
    color: #888888;
}

/* Cookie Message */
#cookie-msg {
    width: 100%;
    line-height: 40px;
    color: #F7F7F7;
    font-weight: 700;
    text-align: left;
    display: none;
    background: #2c353f;
    background-image: linear-gradient(#848484, #2c353f);
    position: fixed;
    bottom: 0;
    z-index: 9999;
}
#cookie-msg-inner {
    width: 90%;
    margin: 0 auto;
    overflow: hidden;
}
#cookie-msg-inner span {
    float: left;
    display: inline;
}
#cookieClose {
    float: right;
    display: inline;
    cursor: pointer;
    background: #2c353f;
    line-height: 24px;
    margin-top: 7px;
    border: 1px solid #FFF;
    border-radius: 3px;
    padding: 0 8px;
    font-weight: 700;
    color: #FFF;
    box-shadow: 0 0 1px #AFDAF7 inset;
}
#cookieClose:hover {
    background: #008bcf;
}
.cookmore {
    float: right;
    display: inline-block;
    font-weight: 700;
    text-decoration: underline;
    margin-left: 15px;
    color: #FFF !important;
}
.cookmore:hover {
    color: #008bcf !important;
}

/* CTA Danger Style (Red/Warning) */
.cta-danger {
    padding: 20px;
    border: 1px solid #c0392b;
    background: #e74c3c;
    text-align: center;
    position: relative;
}

.cta-danger .title {
    font-size: 15px;
    margin-bottom: 15px;
    color: #fff;
}

.cta-danger .desc {
    font-size: 13px;
    line-height: 22px;
    color: #fff;
    margin-bottom: 10px;
    padding: 10px 40px;
}

.cta-danger .bg-icon {
    position: absolute;
    font-size: 220px;
    color: rgba(255, 255, 255, 0.15);
    bottom: -40px;
    left: -20px;
    transition: all 0.4s ease-in-out;
}

.cta-danger:hover .bg-icon {
    transform: scale(1.2, 1.2);
}

/* Fix: Menu links should preserve original capitalization */
.header .menu-item .mega-submenu a,
.mega-submenu a,
.mega-submenu.normal-sub a,
.mega-submenu.no-image a {
    text-transform: none !important;
}

/* Fix: Disable CSS hover for menus - controlled via JavaScript */
@media only screen and (min-width: 1101px) {
    .menu-item > .mega-submenu {
        display: none !important;
    }
    .menu-item.menu-open > .mega-submenu {
        display: block !important;
    }
}

/* Fix: Sportarten menu - 5 columns instead of 6, prevent line breaks */
@media only screen and (min-width: 1101px) {
    .mega-submenu.no-image > li.submenu-column {
        width: 20%;
    }
    .mega-submenu.no-image .submenu-column h6,
    .mega-submenu.no-image .submenu-column ul li a {
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
    }
}

/* Prevent main menu items from wrapping */
@media only screen and (min-width: 1101px) {
    .header .main-menu {
        white-space: nowrap;
    }
    .header .main-menu > li {
        display: inline-block;
        float: none;
    }
    .header .main-menu > li > a {
        white-space: nowrap;
    }
}

/* Hide jQuery-generated burger menu (we use React-based one) */
.menu > a.menu-mobile {
    display: none !important;
}

/* Hide React burger menu icon on desktop */
.menu-mobile-react {
    display: none;
}

/* Show React burger menu icon at 1100px and below */
@media only screen and (max-width: 1100px) {
    .menu-mobile-react {
        display: block !important;
        position: absolute;
        right: 15px;
        top: 0;
        height: 80px;
        line-height: 80px;
        font-size: 24px;
        color: #787878;
        cursor: pointer;
        z-index: 100;
    }
    .menu-mobile-react:hover {
        color: #333;
    }
}

/* Hide desktop menu at 1100px and below */
@media only screen and (max-width: 1100px) {
    .header .main-menu {
        display: none !important;
    }
    .header .main-menu.show-on-mobile {
        display: block !important;
        background: #fff;
        text-align: left;
        color: #787878;
        max-height: 600px;
        overflow: scroll;
    }
    .header .menu-item .mega-submenu {
        margin-left: 30px;
    }
    .header .menu-item a {
        color: #787878;
        line-height: 50px;
    }
    .header .logo {
        padding-bottom: 0px;
    }
}