@charset "UTF-8";
/* CSS Document */

.cookie-disclaimer {
        position: fixed;
        will-change: transform;
        bottom: 0;
        left: 0;
        right: 0;
        font-family: sans-serif;
        line-height: 1.25em;
        margin: 0;
        background-color: #87888a;
        color: #fff;
        font-size: 1em;
        font-size: 0.75rem;
        opacity: 0;
        padding: 1em;
        padding: 0.75rem;
        -webkit-transform: translateY(100%);
        transform: translateY(100%);
        -webkit-transition: opacity 0.3s, -webkit-transform 0.5s;
        transition: opacity 0.3s, transform 0.5s;
    }

    .cookie-disclaimer.is-active {
        opacity: 1;
        -webkit-transform: translateY(0);
        transform: translateY(0);
    }

    .cookie-disclaimer :first-child {
        margin-top: 0;
    }

    .cookie-disclaimer :last-child {
        margin-bottom: 0;
    }


    .cookie {
        display: -webkit-box;
        display: -ms-flexbox;
        display: flex;
    }


    .cookie__object--left {
        margin-right: 1em;
    }

    .cookie__object--right {
        margin-left: 1em;
        -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
        order: 1;
    }

    .cookie__body {
        -webkit-box-flex: 1;
        -ms-flex-positive: 1;
        flex-grow: 1;
        display: flex;
        align-items: center;
    }

    .cookie__body a {
        color: #E6E6E6;
    }

    .cookie__body a:hover {
        text-decoration: none;
        color: #236aa3;
    }

    .cookie-button {
        color: #fff;
        border-color: transparent;
        background: #236aa3;
        border-style: solid;
        border-width: 0.0625em;
        padding: 0.75em 1.5em;
        position: relative;
        line-hight: 1em;
    }

    .cookie-button::after {
        background-color: #236aa3;
        bottom: 0;
        content: '';
        left: 0;
        opacity: 0;
        position: absolute;
        right: 0;
        top: 0;
        -webkit-transition: opacity 0.3s;
        transition: opacity 0.3s;
        will-change: opacity;
        z-index: -1;
    }

    .cookie-button:focus::after,
    .cookie-button:hover::after {
        opacity: 1;
    }
    /*lsm-modal CSS*/

    #impressum-lsm-modal {
        text-align: center
    }

    #datenschutz-lsm-modal {
        text-align: left;
    }

    .lsm-modal {
        z-index: 999;
        width: 100%;
        height: 100%;
        top: 0;
        left: 0;
        background: rgba(240, 240, 240, 1.0);
        max-width: 90%;
        max-height: 90%;
        position: fixed;
        top: 50%;
        left: 50%;
        transform: translate(-50%, -50%);
        display: none;
        overflow-y: auto;
        padding-top: 5%;
    }

    .lsm-modal:target {
        outline: none;
        display: block;
    }

    .lsm-modal-body {
        width: 100%;
        height: 100%;
        display: flex;
        justify-content: center;
        align-items: center;
    }

    .lsm-modal-content {
        max-width: 90%;
        max-height: 90%;
        color: #000000;
    }

    .close {
        cursor: pointer;
        position: absolute;
        right: 32px;
        top: 32px;
        width: 32px;
        height: 32px;
        opacity: 0.5;
    }

    .close:hover {
        opacity: 1;
    }

    .close:before,
    .close:after {
        position: absolute;
        left: 15px;
        content: ' ';
        height: 33px;
        width: 2px;
        background-color: #333;
    }

    .close:before {
        transform: rotate(45deg);
    }

    .close:after {
        transform: rotate(-45deg);
    }
      /*Listen CSS*/

	  .lsm-links {
	      font-family: sans-serif;
	      display: flex;
	      justify-content: center;
	      text-align: center;
	  }

	  .lsm-links li {
	      list-style: none;
	      margin-right: 1em;
	  }
		
	@media (max-width: 980px)
	{
	    ul.lsm-links
	    {
	       flex-direction: column;
	        flex-wrap: wrap;
	    }
	    .lsm-links li {
	    	line-height: 2.5em;
	    }
	}