/* Copyright (C) YOOtheme GmbH, http://www.gnu.org/licenses/gpl.html GNU/GPL */

/* ========================================================================
   Use this file to add custom CSS easily
 ========================================================================== */

/****** Wrapper ******/
#wrapper{
    background-size: auto 142px, auto 142px;
    background-image: linear-gradient(#cccccc, #ffffff), linear-gradient(#ffffff, #cccccc);
}

.tm-main {
    max-width: 100%;
}

/****** Slider ******/
.prev-button{
    position: absolute;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    padding: 5px 10px;
    background: #fff;
    cursor: pointer;
}
.next-button{
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    padding: 5px 10px;
    background: #fff;
    cursor: pointer;
}

/****** Abo Form ******/
.abo-form select{
    width: 100%;
    box-sizing: border-box;
    margin-right: 20px;
    padding: 0 10px;
    height: 34px;
    line-height: 24px;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background: #e2e2e2 url('../images/pfeil.svg') no-repeat;
    background-size: 7px 5px;
    background-position: right 10px center;
}

.abo-form input[type=checkbox] {
    visibility: hidden;
}

.abo-form .checkbox{
    width: 25px;
    position: relative;
    float: left;
}
.abo-form .checkbox .star{
    display: none;
}
.abo-form .checkbox label {
    cursor: pointer;
    position: absolute;
    width: 25px;
    height: 25px;
    top: 0;
    left: 0;
    background: #e2e2e2;
    border:none;
}
.abo-form .checkbox label.invalid {
    border: 1px solid #da314b;
}
.abo-form .checkbox label:after {
    opacity: 0;
    content: '';
    position: absolute;
    width: 9px;
    height: 5px;
    background: transparent;
    top: 6px;
    left: 7px;
    border: 3px solid #333;
    border-top: none;
    border-right: none;
    transform: rotate(-45deg);
}
.abo-form .checkbox label:hover::after {
    opacity: 0.2;
}
.abo-form .checkbox input[type=checkbox]:checked + label:after {
    opacity: 1;
}

.abo-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.abo-list li {
    padding-left: 1em;
    text-indent: -.7em;
    line-height: 1.7;
}

.abo-list li::before {
    content: "• ";
    color: #ad4545; /* or whatever color you prefer */
}

/****** Page Verlagsgruppe ******/
.history li {
    min-height: 60px;
    margin: 20px 0;
    width: 50%;
    display: block;
    float: left;
    box-sizing: border-box;
}
.history li:nth-child(odd){
    padding-right: 15px;
}
.history li:nth-child(even){
    padding-left: 15px;
}
.history li > span {
    display: table-cell;
    vertical-align: middle;
}
.year {
    height: 20px;
    width: 60px;
    text-align: center;
    color: white;
    background: #ad4545;
    border-radius: 30px;
    -moz-border-radius: 30px;
    -webkit-border-radius: 30px;
    font-weight: bold;
    padding: 20px 0;
    margin-right: 40px;
    margin-bottom: 60px;
}

/****** Menu Störer ******/
.liborius-menu .uk-navbar-nav li a{
    position: relative;
}
.liborius-menu .uk-navbar-nav li:hover img{
    display: block;
}

.menu-stoerer{
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translate(-50%, -100%);
}



@media only screen and (max-width: 1023px) {
    .history li {
        width: 100%;
    }
    .history li:nth-child(odd){
        padding-right: 0;
    }
    .history li:nth-child(even){
        padding-left: 0;
    }
    .year {
        margin-bottom: 10px;
    }
}

