/* Add here all your CSS customizations */


a {

    color: #ed153e;
}

h1, h2, h3, h4 {
    -webkit-hyphens: auto;
    -ms-hyphens: auto;
    hyphens: auto;
}



svg.f-loader {
    animation: 2s linear infinite svg-animation;
    max-width: 30px;
    position: absolute;
    top: 0px;
    left: 0px;
    bottom: 20px;
}

@keyframes svg-animation {
    0% {
        transform: rotateZ(0deg);
    }
    100% {
        transform: rotateZ(360deg)
    }
}

circle {
    animation: 1.4s ease-in-out infinite both circle-animation;
    display: block;
    fill: transparent;
    stroke: #ed153e;
    stroke-linecap: round;
    stroke-dasharray: 283;
    stroke-dashoffset: 280;
    stroke-width: 10px;
    transform-origin: 50% 50%;
}

@keyframes circle-animation {
    0%,
    25% {
        stroke-dashoffset: 280;
        transform: rotate(0);
    }

    50%,
    75% {
        stroke-dashoffset: 75;
        transform: rotate(45deg);
    }

    100% {
        stroke-dashoffset: 280;
        transform: rotate(360deg);
    }
}

.card {

    height: 100%;
}

.equal {
    display: flex;
    display: -webkit-flex;
    flex-wrap: wrap;
}


.area-header-image {

    height: 340px;
    overflow: hidden;
}

.area-header-image img {

    width: 100%;
    height: auto;
    min-height: 340px;
}

.header-logo img {

    height: 60px;
}


#footer a {

    color: #CCC;
}

.area-image img {
    width: 100%;
    height: auto;
}

.table-striped tbody tr:nth-of-type(odd) {
    background-color: #ededed;
}

.pimcore_area_headlines .page-header {
    background-color: #ededed;
    margin: 0 0 50px 0;
    min-height: 50px;
    padding: 25px 0;
    position: relative;
    text-align: center;
    border-bottom: 3px solid #ed153e;
}

/* Info Window */
#info {

    display: none;
    background-color: #FFF;
    width: 300px;
    position: absolute;
    top: 100px;
    right: 10%;
    margin: 0 auto;
}


#info .img img {

    margin: 0 0 10px 0;
    width: 100%;
}

#info .close {

    width: 30px;
    height: 30px;
    position: absolute;
    top: 5px;
    right: 0;
    fill: #000;
    background-color: #FFF;
}

#info div.bar {

    height: 5px;
    background-color: #ed153e;
}
#info div.content {

    margin: 2em;
}


.card .btn {
    background-color: transparent;
    color: #FFF;
    text-transform: uppercase;
    border: 2px solid #FFF;
}


/* FORM */

.custom-select {


}
.custom-select select {
    display: none; /*hide original SELECT element: */
}


/* style the items (options), including the selected item: */
.select-items div {
    cursor: pointer;
    padding: 0.9rem .75rem;
}

/* Style items (options): */
.select-items {
    position: absolute;
    background-color: #f1f3f7;
    top: 100%;
    height: auto !important;
    border-radius: 0;
    margin: 5px;
    left: 0;
    right: 0;
    z-index: 99;
}

/* Hide the items when the select box is closed: */
.select-hide {
    display: none;
}

.select-items div:hover, .same-as-selected {
    background-color: rgba(0, 0, 0, 0.1);
}


@media (max-width: 767px) {

    .area-header-image {

        height: 180px;
        overflow: hidden;
    }

    .call-to-action.call-to-action-height-2 {

        padding: 0;
    }

    .pimcore_area_headlines .page-header {
        margin: 0 0 0 0;
    }

}

@media(min-width:1200px){

    .header-logo img {

        height: 80px;
    }

    aside .container {

        padding: 0;
    }
}