html {
    height: 100%;
}

body {
    margin: 0px;
    padding: 0px;

    font-size: 14px;
    font-family: 'Trade-Gothic-Next-Pro', sans-serif;
    font-weight: 400;
    line-height: 130%;
    color: #333;

    width: 100%;
    height: 100%;
    background: #fff;
    position: relative;
}

form {
    margin: 0px;
    padding: 0px;
}

h1 {
    font-size: 28px;
    margin: 0px 0px 38px 0px;
    padding: 0px;
    line-height: 130%;
    font-weight: 400;
    text-transform: uppercase;
}

h2 {
    font-size: 24px;
    margin: 0px 0px 24px 0px;
    padding: 0px;
    line-height: 130%;
    font-weight: 400;
    text-transform: uppercase;
}

h3 {
    font-size: 20px;
    margin: 0px 0px 20px 0px;
    padding: 0px;
    line-height: 130%;
    font-weight: 400;
    text-transform: none;
}

p {
    font-size: 16px;
    margin: 0px 0px 16px 0px;
    padding: 0px;
    line-height: 130%;
    font-weight: 400;
}

.mobileonly {
    display: block !important;
}

.nonmobileonly {
    display: none !important;
}

@media (min-width: 768px) {
    .mobileonly {
        display: none !important;
    }

    .nonmobileonly {
        display: block !important;
    }
}

@media (min-width: 992px) {

}

@media (min-width: 1200px) {

}

.small {
    font-size: 11px;
}

strong, b {
    font-weight: 700;
}

a {
    text-decoration: underline;
    color: #555;
    transition: all 0.5s ease-in-out;
}

a:HOVER {
    text-decoration: none;
    color: #ccc;
    transition: all 0.5s ease-in-out;
}

.center {
    text-align: center;
}

.black {
    color: #000;
}

body.admin {
    padding: 15px;
}

header {
    background-color: #ccc;
    padding: 10px;
    margin-bottom: 10px;
    text-align: left;
    min-height: 60px;
}

header a.logout {
    float: right;
}

.event {
    margin-bottom: 60px;
    padding: 10px;
    border: 1px solid #f9f9f9;
}

.event > h1 {
    margin: 0;
    padding: 10px;
    color: #fff;
    background: #666;
}

.event > h1 > a {
    color: #fff;
    text-decoration: underline;
    float: right;
    text-transform: lowercase;
}

.event p {
    padding: 5px 0 5px 0;
}

.event ul.games {
    list-style-type: none;
    margin: 10px 0 0 0;
    padding: 0;
}

.event ul.games > li {
    padding: 10px;
    margin: 0 0 10px 0;
    background-color: #f0f0f0;
}

.event ul.questions {
    list-style-type: none;
    margin: 10px -10px 0 30px;
    padding: 0;
}

.event ul.questions > li {
    float: left;
    width: 150px;
    padding: 0 10px 0 10px;
    margin: 0 0 10px 0;
}

.event ul.questions > li > p {
    font-size: 11px;
}

.event ul.questions > li img.im {
    width: 100%;
}


.master-container {
    width: 100vw;
    height: 100vh;
    background-color: #b7a69e;
}

.reload,
.images-loading {
    position: absolute;
    display: block;
    top: 0;
    left: 0;
    width: 1.3vw;
    height: 1.3vw;
    opacity: 0.2;
    text-align: center;
    padding-top: 0.2vw;
    z-index: 2;
}

.reload i {
    color: #fff;
    font-size: 0.8vw;
}

.images-loading {
    top: auto;
    bottom: 0;
    left: 0vw;
    width: auto;
    padding-top: 0;
    color: #fff;
    font-size: 0.8vw;
    line-height: 1.3vw;
}

.game-container {
    width: 37%;
}

.master-container.tablets .game-container {
    width: 100%;
}

.sujet-container {
    width: 63%;
}

.game-container,
.sujet-container {
    height: 100vh;
    float: left;
    padding: 1.3vw;
}

.sujet-container.on-the-left {
    padding: 1.3vw 0 1.3vw 1.3vw;
}

.sujet-container.on-the-right {
    padding: 1.3vw 1.3vw 1.3vw 0;
}

.sujets,
.sujet-inner,
.game-inner {
    width: 100%;
    height: 100%;
    background-color: #fff;
}

.sujet-inner {
    background-position: center center;
    background-size: cover;
    background-repeat: no-repeat;
}

.game-inner {
    position: relative;
    background-image: url(/images/gamearea-bg-1.png), url(/images/gamearea-bg-2.png);
    background-position: center -2vh, bottom center;
    background-repeat: no-repeat, no-repeat;
    background-size: contain, contain;
}

.sujets {
    padding: 2.6vw 1.3vw 2.6vw 1.3vw;
}

.sujets .sujet-1 {
    float: left;
    width: 36%;
    height: 100%;
}

.sujets .sujet-middle {
    float: left;
    width: 28%;
}

.sujets .sujet-2 {
    float: left;
    width: 36%;
    height: 100%;
    text-align: right;
}

.sujets > div > img.sujet {
    max-width: 100%;
    max-height: 100%;
}

.sujets .sujet-middle img.sujet-middle {
    width: 100%;
    padding-top: 38vh;
    padding: 38vh 2vh 0 2vh;
}

#game-data {
    display: none;
}


.code-input {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.code-input > input {
    width: 25vw;
    height: 15vh;
    text-align: center;
    font-size: 10vh;
    letter-spacing: 1vw;
    background: #eee;
    border: 0;
}

.tablets.code-input > input {
    width: 70%;
}

.code-input > input.error {
    background: #f88;
}

.code-input > button {
    margin-left: 0.5vw;
    width: 15vh;
    height: 15vh;
    font-size: 10vh;
    background: #333;
    color: #fff;
}

.game-container button {
    background-color: #9e0521;
    color: #fff;
    padding: 1.8vw 1.8vw 1.4vw 1.8vw;
    font-size: 1.8vw;
    border-radius: 1.5vw;
    border: 0;
    outline: none;
}

.game-container button:hover {
    opacity: 0.8;
}

.tablets .game-container button {
    padding: 2.8vw 1.8vw 1.4vw 1.8vw;
    font-size: 7vw;
    line-height: normal;
}


.start-bottom,
.start-top {
    text-align: center;
    font-size: 3.8vw;
    line-height: 4.2vw;
    font-weight: 700;
    color: #9e0521;
}

.tablets .start-bottom, .tablets .start-top {
    font-size: 10vw;
    line-height: 11.5vw;
}

.start-top {
    padding-top: 15vh;
}

.start-bottom {
    width: 35%;
    background: #fff;
    margin: -3.9vh auto 0 auto;
    z-index: 1;
}

.start-bottom-under {
    margin: 3vh auto 0 auto;
    height: 1.3vw;
    background-color: #b7a69e;
    width: 65%;
    z-index: 0;
}

.tablets .start-bottom-under {
    height: 3vw;
}

button.start-button {
    display: block;
    margin: 6vh auto 6vh auto;
}

.start-question-marks {
    display: block;
    margin: auto;
    height: 31.7vh;
    border: 0;
}

@keyframes glowing {
    0% {
        box-shadow: 0 0 0 0px #fff;
    }
    50% {
        box-shadow: 0 0 5px 30px #9e0521;
    }
    100% {
        box-shadow: 0 0 0 0px #fff;
    }
}

@keyframes pulse {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(158, 5, 33, 0.5);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 2vw rgba(158, 5, 33, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(158, 5, 33, 0);
    }
}

button.start-button {
    animation: pulse 1.5s infinite;
}

.waiting-top {
    text-align: center;
    font-size: 3.3vw;
    line-height: 3.5vw;
    font-weight: 700;
    color: #9e0521;
    padding-top: 17vh;
    margin-bottom: 5vh;
}

.tablets .waiting-top {
    font-size: 10vw;
    line-height: 11.5vw;
}

.waiting-buttons {
    position: absolute;
    left: 1.3vw;
    right: 1.3vw;
    bottom: 4vw;
}

.tablets .waiting-buttons {
    bottom: 15vw;
}

button.waiting-play-alone,
button.waiting-play-cancel {
    display: block;
    width: 50%;
    margin: 1vh auto 1vh auto;
    padding: 1.2vw 1.2vw 0.8 w 1.2vw;
    font-size: 1.2vw;
    border-radius: 0.7vw;
}

button.waiting-play-alone,
button.waiting-play-alone:HOVER {
    opacity: 0;
}


.countdown-top {
    text-align: center;
    font-size: 3.3vw;
    line-height: 4.5vw;
    font-weight: 700;
    color: #9e0521;
    padding-top: 17vh;
    padding-bottom: 2vh;
}

.tablets .countdown-top {
    font-size: 10vw;
    line-height: 11.5vw;
}

.countdown-counter-container {
    position: relative;
    width: 85%;
    padding-bottom: 85%;
    margin: auto;
}

.countdown-counter {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
}

.countdown-counter > div {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #9e0521;
    font-size: 15vw;
    font-weight: 700;
    opacity: 1;
    transition: transform 1200ms ease-in-out;
}


.question-top {
    text-align: left;
    font-size: 2vw;
    line-height: 2vw;
    font-weight: 700;
    padding: 4vh 1.3vw 0 1.3vw;
    color: #6f6f6e;
}

.tablets .question-top {
    font-size: 5vw;
}

.question-category {
    padding: 3vh 1.3vw 2vh 1.3vw;
}

.question-category > img {
    aspect-ratio: 6.86/1;
    width: 100%;
}

.tablets .question-category {
    padding-top: 5vh;
}

.question-question {
    display: flex;
    align-items: center;
    justify-content: center;

    height: 20vh;
    font-size: 4.3vh;
    line-height: 4.7vh;
    font-weight: 700;
    color: #9e0521;
    padding: 0 1.3vw 0 1.3vw;
    text-align: center;
}

.tablets .question-question {
    height: 21vh;
    font-size: 8vw;
    line-height: 9vw;
}

.question-image {
    width: 27vw;
    height: 23vh;
    margin: 2vh auto 0vh auto;
    background-position: center center;
    background-size: contain;
    background-repeat: no-repeat;
}

.tablets .question-image {
    width: 90%;
    height: 26vh;
}

.question-image > img {
    max-width: 100%;
    max-height: 100%;
}

.question-answers {
    position: absolute;
    left: 1.3vw;
    right: 1.3vw;
    bottom: 4vw;
    margin: 0 -0.5vw 0 -0.5vw;
    padding: 0;
    list-style-type: none;
}

.tablets .question-answers {
    bottom: 12vw;
}

.question-answers > li {
    float: left;
    width: 50%;
    margin: 1vw 0 0 0;
    padding: 0 0.5vw 0 0.5vw;
}

.question-answers > li > button {
    width: 100%;
    text-align: center;
    padding: 4.3vh 1.2vw 4vh 1.2vw;
    font-size: 1.5vw;
    font-weight: 700;
    /*height: 8vh;*/
    border-radius: 1.2vw;
    background-repeat: no-repeat;
    background-position: center center;
    background-size: contain;
    background-color: #979797;
}

.tablets .question-answers > li > button {
    font-size: 4.5vw;
    padding: 4.8vw 1.8vw 3.4vw 1.8vw;
}

.question-answers > li > button.selected {
    background-color: #e42e21;
    background-image: url(/images/cross.png);
}

.question-answers > li > button.wrong {
    background-color: #e42e21;
}

.question-answers > li > button.correct {
    background-color: #47a729;
}

.question-answers > li > button.correct.selected {
    background-color: #47a729;
    background-image: url(/images/check.png);
}

.question-timer {
    position: absolute;
    z-index: 10;
    top: 1.9vh;
    left: 14vw;
    width: 2.8vw;
    height: 2.8vw;
}

.tablets .question-timer {
    left: 35vw;
    top: 2.7vh;
    width: 5vw;
    height: 5vw;
}

.question-timer .wrapper {
    position: relative;
    width: 5vw;
    height: 5vw;
    background: white;
}

.question-timer .pie {
    width: 50%;
    height: 100%;
    position: absolute;
    background: #eee;
    border: 0.1vh solid rgba(255, 255, 255, 0.2);
    transform-origin: 100% 50%;
}

.question-timer .spinner {
    border-radius: 100% 0 0 100% / 50% 0 0 50%;
    z-index: 200;
    border-right: none;
    animation: rota 10s linear infinite;
}

.question-timer .filler {
    border-radius: 0 100% 100% 0 / 0 50% 50% 0;
    left: 50%;
    z-index: 100;
    border-left: none;
    animation: fill 10s steps(1, end) infinite;
    opacity: 0;
}

.question-timer .mask {
    width: 56%;
    height: 106%;
    margin-left: -6%;
    margin-top: -3%;
    position: absolute;
    z-index: 300;
    opacity: 1;
    background: inherit;
    animation: mask 10s steps(1, end) infinite;
}

@keyframes rota {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

@keyframes fill {
    0% {
        opacity: 0;
    }
    50%, 100% {
        opacity: 1;
    }
}

@keyframes mask {
    0% {
        opacity: 1;
    }
    50%, 100% {
        opacity: 0;
    }
}

.finish-top,
.finish-results-text,
.finish-results {
    text-align: center;
    font-size: 3.3vw;
    line-height: 4.5vw;
    font-weight: 700;
    padding-top: 0vh;
    padding-bottom: 2vh;
    color: #666666;
}

.tablets .finish-top, .tablets .finish-results-text, .tablets .finish-results {
    font-size: 10vw;
    line-height: 11.5vw;
}

.finish-top {
    padding-top: 1vh;
}

.tablets .finish-top {
    padding-top: 4vh;

}

.finish-results {
    font-size: 5vw;
    padding-top: 0.1vh;
    padding-bottom: 1.3vh;
}

.tablets .finish-results {
    font-size: 15vw;
    padding-top: 3vh;
    padding-bottom: 3vh;
}

.finish-results-text {
    font-size: 2vw;
    line-height: 2.1vw;
    padding-top: 0;
    padding-bottom: 0vh;
    font-weight: 400;
}

.tablets .finish-results-text {
    font-size: 7vw;
    line-height: 11.5vw;
}

.finish-buttons {
    text-align: center;
    font-size: 4vw;
    line-height: 5vw;
    position: absolute;
    left: 1.3vw;
    right: 1.3vw;
    bottom: 4vw;
}

.tablets .finish-buttons {
    bottom: 15vw;
}

button.finish-button-1,
button.finish-button-2 {
    width: 55%;
    display: block;
    margin: 1vh auto 0 auto;
    padding: 2.4vw 1.8vw 2.1vw 1.8vw;

}

button.finish-button-1 {
    margin-top: 5vh;
}

.winning-status-font-color-lost {
    color: #900;
}

.winning-status-font-color-won {
    color: #090;
}

.winning-status-font-color-even {
    color: #990;
}

.rewe-cubes {
    display: block;
    width: 12vw;
    height: 4.8vw;
    margin: 16vh auto 16vh auto;
}

.rewe-cubes .cube1,
.rewe-cubes .cube2 {
    float: left;
    width: 40%;
    height: 100%;
    animation: rewe-cube-animation 1.3s infinite ease-in-out;
}

.rewe-cubes .cube1 {
    background-color: #cb0b1d;
}

.rewe-cubes .cube2 {
    margin-left: 20%;
    background-color: #fcc419;
    animation-delay: 0.6s;
}

@keyframes rewe-cube-animation {
    0%, 70%, 100% {
        opacity: 1;
    }
    35% {
        opacity: 0.5;
        transform: scale(1.1);
    }
}


.sk-cube-grid {
    width: 10vw;
    height: 10vw;
    margin: 0 auto;
}

.sk-cube-grid .sk-cube {
    width: 33.3333%;
    height: 33.3333%;
    background-color: #9e0521;
    float: left;
    -webkit-animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
    animation: sk-cubeGridScaleDelay 1.3s infinite ease-in-out;
}

.sk-cube-grid .sk-cube1 {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.sk-cube-grid .sk-cube2 {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}

.sk-cube-grid .sk-cube3 {
    -webkit-animation-delay: 0.4s;
    animation-delay: 0.4s;
}

.sk-cube-grid .sk-cube4 {
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
}

.sk-cube-grid .sk-cube5 {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

.sk-cube-grid .sk-cube6 {
    -webkit-animation-delay: 0.3s;
    animation-delay: 0.3s;
}

.sk-cube-grid .sk-cube7 {
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.sk-cube-grid .sk-cube8 {
    -webkit-animation-delay: 0.1s;
    animation-delay: 0.1s;
}

.sk-cube-grid .sk-cube9 {
    -webkit-animation-delay: 0.2s;
    animation-delay: 0.2s;
}

@-webkit-keyframes sk-cubeGridScaleDelay {
    0%, 70%, 100% {
        -webkit-transform: scale3D(1, 1, 1);
        transform: scale3D(1, 1, 1);
    }
    35% {
        -webkit-transform: scale3D(0, 0, 1);
        transform: scale3D(0, 0, 1);
    }
}

@keyframes sk-cubeGridScaleDelay {
    0%, 70%, 100% {
        -webkit-transform: scale3D(1, 1, 1);
        transform: scale3D(1, 1, 1);
    }
    35% {
        -webkit-transform: scale3D(0, 0, 1);
        transform: scale3D(0, 0, 1);
    }
}


.youtubeplay {
    position: absolute;
    width: 77px;
    height: 53px;
    top: 50%;
    left: 50%;
    margin-left: -38px;
    margin-top: -26px;
    z-index: 3;
    transition: all 0.5s ease-in-out;
}

.youtubeembed {
    position: relative;
    width: 100%;
    padding-bottom: 56.2%;
}

.youtubeembed iframe {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0px;
    left: 0px;
}

/*** slideshow include **/
ul.slideshow {
    display: block;
    list-style-type: none;
    margin: 0px -15px 0px -15px;
    padding: 0px;
}

ul.slideshow li {
    display: block;
    position: relative;
    float: left;
    padding: 15px 15px 15px 15px;
    margin: 0px;
}

ul.slideshow li a img.sthumbnail {
    width: 100%;
    border: 0px;
    transition: all 0.5s ease-in-out;
}

ul.slideshow li:HOVER a {
    opacity: 0.75;
    transition: all 0.5s ease-in-out;
}

ul.slideshow li {
    width: 50%;
    height: auto;
}

@media (min-width: 768px) {
    ul.slideshow li {
        width: 50%;
        height: auto;
    }
}

@media (min-width: 992px) {
    ul.slideshow li {
        width: 25%;
        height: auto;
    }
}

@media (min-width: 1200px) {
    ul.slideshow li {
        width: 25%;
        height: auto;
    }
}

/*** thimbnailed overlay - slideshow and projects magic **/
.thumbnailoverlay {
    display: none;
    position: absolute;
    width: 100%;
    background-color: #fff;
    color: #000;
    opacity: 0.75;
    padding: 7px 10px 7px 10px;
    font-size: 11px;
    max-height: 100%;
    overflow-y: hidden;
}

@media (min-width: 992px) {
    .thumbnailoverlay {
        padding: 10px 15px 10px 15px;
        font-size: 13px;
    }
}


/*** islides - slideshow interface **/
.islides {
    position: relative;
    padding: 15px 5px 15px 5px;
    background-color: #f2e9dd;
    margin-bottom: 3px;
}

.islides .previewimage {
    position: relative;
    border: 3px solid #fff;
    background: #fff url(/images/layout/loading.gif) no-repeat center center;
    text-align: center;
}

.islides .previewimage a {
    display: block;
    width: 100%;
    transition: none;
}

.islides .previewimage a:HOVER {
    transition: none;
}

.islides .previewimage a.hidden {
    display: none;
}

.islides .previewimage img {
    max-width: 100%;
    max-height: 100%;
}

.islides .slides {
    margin-top: 15px;
    width: 100%;
    overflow: hidden;
}

.islides.adminmode .islides .slides {
    overflow: auto;
}

.islides .slides ul {
    width: 200000px;
    list-style-type: none;
    margin: 0px;
    padding: 0px;
}

.islides.adminmode .slides ul {
    width: 100%;
}

.islides .slides ul li {
    float: left;
    margin-right: 15px;
}

.islides.adminmode .slides ul li {
    margin-bottom: 15px;
}

.islides .slides ul li img.thumb {
    border: 3px solid #fff;
    height: 75px;
}

.islides .slides ul li.selected img.thumb {
    border: 3px solid #ccc;
}

.islides .picture_prev, .islides .picture_next,
.islides .slides_prev, .islides .slides_next {
    position: absolute;
    display: block;
    width: 25px;
    height: 25px;
}

.islides .picture_prev {
    background: transparent url(/images/layout/arrowleft.png) no-repeat top left;
    top: 90px;
    left: 5px;
    z-index: 6;
}

.islides .picture_next {
    background: transparent url(/images/layout/arrowright.png) no-repeat top left;
    top: 90px;
    right: 5px;
    z-index: 6;
}

.islides .slides_prev {
    background: transparent url(/images/layout/arrowleft.png) no-repeat top left;
    bottom: 52px;
    left: 5px;
}

.islides .slides_next {
    background: transparent url(/images/layout/arrowright.png) no-repeat top left;
    bottom: 52px;
    right: 5px;
}

.slidestext {
    margin-top: 5px;
}

.islides.adminmode .slides_prev, .islides.adminmode .slides_next {
    display: none;
}

.islides .slides .lc-admincontrollayer-flat {
    display: none;
}

.islides.adminmode .slides .lc-admincontrollayer-flat {
    display: block;
}

@media (min-width: 768px) {
    .islides .picture_prev, .islides .picture_next {
        top: 280px;
    }

    .islides {
        padding: 15px 35px 15px 35px;
    }

    .islides .slides ul li img.thumb {
        height: 100px;
    }
}

@media (min-width: 992px) {

}

@media (min-width: 1200px) {

}


/*** main buttons classes **/
.lc-button {
    display: inline-block;
    line-height: 32px;
    background-color: #6C4A94;
    font-size: 16px;
    color: #fff;
    margin: 0px;
    padding: 0px 30px 0px 30px;
    text-decoration: none;
    transition: all 0.5s ease-in-out;
    text-align: center;
    text-transform: uppercase;
    border: 0px;
}

.lc-button:HOVER {
    transition: all 0.5s ease-in-out;
    background-color: #eee;
    color: #333;
}

.lc-button:DISABLED {
    background-color: #F8F8F8;
    color: #aaa;
}

.lc-button:focus {
    color: #fff !important;
}

.lc-button:active {
    color: #000 !important;
}

.lc-button-backlink {
    float: right;
}

.lc-button.small {
    font-size: 12px;
    line-height: 22px;
    padding: 0px 10px 0px 10px;
}

.lc-button-calltoaction {
    display: inline-block;
    margin: 40px 0px 60px 0px;
    font-size: 24px;
    line-height: 40px;
    font-weight: bold;
}


.lc-button-margined {
    margin-top: 15px !important;
}

.lc-button.redbutton {
    background-color: #666666;
    border-color: #666666;
}

.lc-button.redbutton:HOVER {
    background-color: #bbb;
    border-color: #bbb;
    color: #fff;
}

.lc-button.blackborder {
    background-color: transparent;
    border-color: #3E424D;
    color: #3E424D;
}

.lc-button.blackborder:HOVER {
    background-color: transparent;
    border-color: #ccc;
    color: #ccc;
}

.lc-button.lc-button-centered {
    display: block;
    margin-left: auto;
    margin-right: auto;
    width: 85%;
    font-size: 16px;
}

@media (min-width: 768px) {
    .lc-button.lc-button-centered {
        width: 360px;
        font-size: inherit;
    }
}


.black {
    color: #000000;
}

.greyedbox {
    background: #F3F3F3;
}

.ui-widget {
    font-size: 11px !important;
}

.ui-widget-overlay {
    opacity: 0.8;
    background: #fff url('/images/layout/overlaypattern.png') repeat top left;
}

div.layoutleft {
    float: left;
    margin-right: 30px;
}

div.layoutright {
    float: left;
}


.pages {
    margin: 24px 0;
    line-height: 34px;
}
.pages .page {
    height: 34px;
    min-width: 34px;
    display: inline-block;
    margin: 0 8px;
}
.pages .page-selected {
    color: black !important;
    bordeR: 1px solid black;
}


/**** end of Layout-specific styles ****/
#autowebroot {
    display: none;
}

a.picturepreview {
}

.clear {
    clear: both;
}

.clearright {
    clear: right;
}

div.pagescontainer {
}

div.pagescontainer div a {
}


form.inlineform {
    display: block;
    position: relative;
    margin: 0px;
    padding: 0px;
}

form.inlineform label {
    display: block;
    margin: 2px 10px 0px 0px;
    padding: 3px 0px 0px 0px;
    cursor: pointer;
}

form.anfrageform label {
    width: 150px !important;
}

form.inlineform label.required {
    font-weight: bold;
}

form.inlineform label.checkbox, form.inlineform label.radio {
    width: auto;
    font-size: 12px;
    padding: inherit;
    margin: inherit;
    float: none;
}

form.inlineform div.input {
    display: block;
    float: left;
    margin-bottom: 6px;
    line-height: 24px;
}

form.inlineform input.button, input.coolbutton {
    background: #000;
    border: 0px;
    margin: 8px 0px 0px 0px;
    padding: 0px 10px 0px 10px;
    height: 57px;
    line-height: 57px;
    color: #fff;
    font-weight: bold;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.5s ease-in-out;
}

form.inlineform input.button:HOVER, input.coolbutton:HOVER {
    background-color: #FF290B;
}

form.inlineform input.cancel {
    background-color: #AA6666;
}

form.inlineform input.loadingbutton {
    background: #EEEEEE url('/images/layout/loading.gif') center center no-repeat !important;
    color: transparent !important;
    border-color: #CCCCCC !important;
}

form.inlineform input.loading {
    color: transparent;
    background: transparent url('/images/layout/loading.gif') center center no-repeat;
}

form.inlineform input.inputerror, form.inlineform textarea.inputerror {
    background-image: url('/images/layout/inputerrorbg.png?aab');
}

form.inlineform input.textinput {
    background-color: #F1F1F1;
    border: 1px solid #C6C6C6;
    border-spacing: 0px;
    border-collapse: collapse;
    margin: 0px;
    padding: 0px;
    height: 24px;
    line-height: 24px;
    color: #333333;
}

form.inlineform textarea.textinput {
    background-color: #F7F7F7;
    border: 1px solid #C6C6C6;
    border-spacing: 0px;
    border-collapse: collapse;
    margin: 0px;
    padding: 0px;
    line-height: 24px;
    color: #333333;
}

form.inlineform p.error {
    color: #993300;
    font-weight: bold;
}

div.inlineformhint {
    position: absolute;
    width: 208px;
    min-height: 40px;
}

form.inlineform_small {
    font-size: 11px;
}

form.inlineform_small label {
    font-size: 11px;
    width: 90px;
}


/*** customising the lightgallery css's ***/
#lg-outer {
    background-color: rgba(255, 255, 255, 0.75) !important;
}

#lightGallery-close {
    color: #fff;
    opacity: 1;
    width: 42px;
    height: 38px;
}

#lightGallery-close:after {
    font-size: 30px;
}

#lg-action {
    top: 10px;
    bottom: auto;
}

.lg-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: none repeat scroll 0 0 rgba(255, 255, 255, 0.75);
    border-bottom: 1px solid #ddd;
    color: #000;
    min-height: 40px;
    padding: 10px 0px 10px 0px;
    white-space: normal;
    z-index: 9;
    line-height: 20px;
}

.lg-caption span {
    font-size: 18px;
    font-weight: 700;
    text-transform: uppercase;
}


.share-btn-group {
    display: block;
    line-height: 20px;
    text-align: center;
}

.share-btn {
    display: inline-block;
    color: #fff;
    border: none;
    line-height: 50px;
    padding: 0px;
    min-width: 50px;
    outline: none;
    margin-right: 5px;
    text-align: center;
    text-decoration: none;
    font-size: 16px;
}

.share-btn i {
    font-size: 16px;
}

.share-btn:hover {
    opacity: 0.5;
    color: #fff;
}

.share-btn:active {
    opacity: 0.5;
}

.share-btn.twitter {
    background: #55acee;
}

.share-btn.google-plus {
    background: #dd4b39;
}

.share-btn.facebook {
    background: #3B5998;
    padding: 0px 20px 0px 20px;
    margin-right: 10px;
}

.share-btn.linkedin {
    background: #4875B4;
}

.share-btn.email {
    background: #444444;
}

.share-btn.stumbleupon {
    background: #EB4823;
}

.share-btn.reddit {
    background: #ff5700;
}

@media (min-width: 768px) {
    .share-btn-group {
        display: inline-block;
    }

    .share-btn {
        line-height: 50px;
        min-width: 50px;
        margin-right: 2px;
    }
}


/*** the loading circle ****/
@-webkit-keyframes uil-default-anim {
    0% {
        opacity: 1
    }
    100% {
        opacity: 0
    }
}

@keyframes uil-default-anim {
    0% {
        opacity: 1
    }
    100% {
        opacity: 0
    }
}

.uil-default-css {
    position: relative;
    background: none;
    width: 200px;
    height: 200px;
    margin-left: auto;
    margin-right: auto;
    transform: scale(0.5, 0.5);
}

.uil-default-css > div {
    background: #000;
}

.uil-default-css > div:nth-of-type(1) {
    -webkit-animation: uil-default-anim 1s linear infinite;
    animation: uil-default-anim 1s linear infinite;
    -webkit-animation-delay: -0.5s;
    animation-delay: -0.5s;
}

.uil-default-css > div:nth-of-type(2) {
    -webkit-animation: uil-default-anim 1s linear infinite;
    animation: uil-default-anim 1s linear infinite;
    -webkit-animation-delay: -0.4166666666666667s;
    animation-delay: -0.4166666666666667s;
}

.uil-default-css > div:nth-of-type(3) {
    -webkit-animation: uil-default-anim 1s linear infinite;
    animation: uil-default-anim 1s linear infinite;
    -webkit-animation-delay: -0.33333333333333337s;
    animation-delay: -0.33333333333333337s;
}

.uil-default-css > div:nth-of-type(4) {
    -webkit-animation: uil-default-anim 1s linear infinite;
    animation: uil-default-anim 1s linear infinite;
    -webkit-animation-delay: -0.25s;
    animation-delay: -0.25s;
}

.uil-default-css > div:nth-of-type(5) {
    -webkit-animation: uil-default-anim 1s linear infinite;
    animation: uil-default-anim 1s linear infinite;
    -webkit-animation-delay: -0.16666666666666669s;
    animation-delay: -0.16666666666666669s;
}

.uil-default-css > div:nth-of-type(6) {
    -webkit-animation: uil-default-anim 1s linear infinite;
    animation: uil-default-anim 1s linear infinite;
    -webkit-animation-delay: -0.08333333333333331s;
    animation-delay: -0.08333333333333331s;
}

.uil-default-css > div:nth-of-type(7) {
    -webkit-animation: uil-default-anim 1s linear infinite;
    animation: uil-default-anim 1s linear infinite;
    -webkit-animation-delay: 0s;
    animation-delay: 0s;
}

.uil-default-css > div:nth-of-type(8) {
    -webkit-animation: uil-default-anim 1s linear infinite;
    animation: uil-default-anim 1s linear infinite;
    -webkit-animation-delay: 0.08333333333333337s;
    animation-delay: 0.08333333333333337s;
}

.uil-default-css > div:nth-of-type(9) {
    -webkit-animation: uil-default-anim 1s linear infinite;
    animation: uil-default-anim 1s linear infinite;
    -webkit-animation-delay: 0.16666666666666663s;
    animation-delay: 0.16666666666666663s;
}

.uil-default-css > div:nth-of-type(10) {
    -webkit-animation: uil-default-anim 1s linear infinite;
    animation: uil-default-anim 1s linear infinite;
    -webkit-animation-delay: 0.25s;
    animation-delay: 0.25s;
}

.uil-default-css > div:nth-of-type(11) {
    -webkit-animation: uil-default-anim 1s linear infinite;
    animation: uil-default-anim 1s linear infinite;
    -webkit-animation-delay: 0.33333333333333337s;
    animation-delay: 0.33333333333333337s;
}

.uil-default-css > div:nth-of-type(12) {
    -webkit-animation: uil-default-anim 1s linear infinite;
    animation: uil-default-anim 1s linear infinite;
    -webkit-animation-delay: 0.41666666666666663s;
    animation-delay: 0.41666666666666663s;
}


.mce-tinymce {
    border: 2px solid #bdc3c7;
    border-radius: 6px;
}

.stop-scrolling {
    height: 100%;
    overflow: hidden;
}

.lc-blocklink {
    display: block;
    margin: 5px 0px 5px 0px;
    text-align: center;
}

.lc-loginform .lc-blocklink {
    color: #999;
}

.lc-inlineform-error-hint {
    margin-left: 30px;
    margin-top: -10px !important;
    background-color: #C0392B;
    color: #fff;
    font-weight: bold;
    text-align: left;
    cursor: pointer;
}

.lc-inlineform-error-hint .arrow {
    top: -10px !important;
    left: 12px !important;
}

.lc-inlineform-error-hint .arrow:after {
    border-bottom-color: #C0392B !important;
}


@-webkit-keyframes DISABLED-BUTTON-LOADING {
    0% {
        background-position: 0px 0px;
    }
    100% {
        background-position: -28px 0px;
    }
}

.inlineform .btn-primary:disabled, .inlineform .btn-file.disabled {
    -webkit-animation: DISABLED-BUTTON-LOADING 2s infinite;
    animation-timing-function: linear;

    background: #bbb repeating-linear-gradient(
            45deg,
            rgba(255, 255, 255, 0),
            rgba(255, 255, 255, 0) 10px,
            rgba(255, 255, 255, 0.2) 10px,
            rgba(255, 255, 255, 0.2) 20px
    );
    background-size: 2800px auto;
}

.loopcms-imagefileinput {
    border: 0px;
    padding: 0px;
    margin: 0px;
}

.loopcms-imagefileinput tr td {
    vertical-align: top;
}

.lc-forms-btnfile {
    display: inline-block;
    width: 100%;
    height: 60px;
    padding: 20px 15px !important;
}

.lc-forms-existingfile {
    width: 70%;
    background-position: top left;
    background-repeat: no-repeat;
    color: #7F8C8D;
    margin-top: 0px;
    padding-left: 10px;
}

.lc-forms-existingfile img {
    float: left;
    width: 60px;
    height: 60px;
    margin-right: 10px;
    border: 1px solid #ccc;
}

.lc-forms-languagespacer {
    line-height: 60px;
    font-size: 20px;
    text-align: center;
    color: #fff;
    background-color: #D35400;
}

.lc-forms-imageresizebox {
    display: none;
    position: relative;
    background: #fff;
    width: 60px;
    height: 60px;
    border: 1px solid transparent;
    opacity: 0.5;
    transition: all 0.5s ease-in-out;
}

.lc-forms-imageresizebox:HOVER {
    border: 1px solid #ddd;
    transition: all 0.5s ease-in-out;
    opacity: 1;
}

.lc-forms-imageresizebox a {
    position: absolute;
    display: block;
    border: 1px solid #ddd;
    background: #fff;
    background-position: center center;
    background-repeat: no-repeat;
    text-decoration: none;
}

.lc-forms-imageresizebox a.selected {
    border-color: #B8FF71;
    background-color: #DFFFBF;
    text-decoration: none;
}

.lc-forms-imageresizebox a:HOVER {
    border-color: #777;
    background-color: #ddd;
    text-decoration: none;
}

.lc-forms-imageresizebox a.c {
    width: 30px;
    height: 30px;
    top: 15px;
    left: 15px;
    background-image: url(/images/admin/imageresizebox-c.png);
}

.lc-forms-imageresizebox a.tl {
    width: 18px;
    height: 18px;
    top: 3px;
    left: 3px;
    background-image: url(/images/admin/imageresizebox-tl.png);
}

.lc-forms-imageresizebox a.br {
    width: 18px;
    height: 18px;
    bottom: 3px;
    right: 3px;
    background-image: url(/images/admin/imageresizebox-br.png);
}


.ui-widget input, .ui-widget select, .ui-widget textarea, .ui-widget button {
    font-size: 12px;
}

.ui-dialog, label {
    font-size: 12px;
}

/* bootstrap changes */
.btn {
    color: #fff !important;
    font-weight: normal;
    text-decoration: none;
}

.form-group {
    margin-bottom: 10px;
}

.form-control.vld_required, .input-group-addon.vld_required {
    border-color: #F39C12;
}

.input-group-addon.vld_required {
    background-color: #F39C12;
}

.lc-forms-spacer {
    height: 1px;
    background-color: #fcfcfc;
    margin: 10px 0px 10px 0px;
}


/* Jquery UI customisation classes */
.lc-dialog-content {
    position: relative;
    padding-left: 15px !important;
    padding-right: 15px !important;
    padding-bottom: 15px !important;
    border-color: #ddd;
}

.ui-dialog {
    /*transition: top 0.5s ease-in-out;*/
    /*transition: left 0.5s ease-in-out;*/
    min-width: 350px;
    -webkit-box-shadow: 0px 0px 10px 10px rgba(120, 120, 120, 0.4);
    -moz-box-shadow: 0px 0px 10px 10px rgba(120, 120, 120, 0.4);
    box-shadow: 0px 0px 10px 10px rgba(120, 120, 120, 0.4);
    border-color: #eee;
    border-radius: 6px;

    z-index: 20001 !important;
}

.ui-dialog p {
    font-size: inherit;
}

.ui-widget-header {
    border: 0px;
    background: transparent;
    color: #16A085;
}

.ui-dialog-titlebar {
    padding-left: 15px !important;
    padding-right: 15px !important;
    line-height: 35px;
}

.ui-dialog-titlebar span {
    font-size: 17px;
    font-weight: normal;
}

.ui-dialog .ui-dialog-titlebar-close {
    right: 15px;
    top: 23px;
    border: 0px;
    background: transparent;
    color: #16A085;
}

.ui-button {
    padding: 5px;
}


.inlineform * {
    border-radius: 0px;
}

.contactform button {
    font-size: 12px;
    width: 100%;
    padding-left: 0px;
    padding-right: 0px;
    margin-top: 122px;
    color: #6C4A94;
    background-color: #fff;
}

.contactform input, .contactform textarea {
    border: 0px;
}

.contactform textarea {
    height: 124px;
}


.ltable {
    display: table;
    width: 100%;
}

.lrow {
    display: table-row;
}

.lcell {
    display: table-cell;
    vertical-align: middle;
    padding-bottom: 15px;
}

.lcell input {
    border: 0px;
}


:HOVER.notransition, .notransition {
    -webkit-transition: none !important;
    -moz-transition: none !important;
    -o-transition: none !important;
    -ms-transition: none !important;
    transition: none !important;
}


.list-title {
    font-weight: bold;
    text-decoration: none;
}

.list-title:hover {
    color: #000;
}

.list-title.old {
    font-weight: normal;
    color: #999;
}

.list-title.running {
    color: #24ab0d;
}

.list-title.archived {
    font-weight: normal;
    color: #f1c40f;
}

.list-tablet-or-screen-cell {
    text-align: center;
    white-space: nowrap;
}
.list-tablet-icon {
    font-size: 32px !important;
}
.list-screen-icon {
    font-size: 24px !important;
}

.my-table > tbody > tr:hover > td {
    background-color: #ccc;
}

.my-table > tbody > tr > td {
    vertical-align: middle;
}

.preview-image {
    height: 80px;
    margin: 0 15px 0 0;
    float: left;
}

.btn-small {
    padding: 8px 10px 6px 10px;
}


.col-home, .col-about, .col-contact, .col-impressum, .col-agb, .col-impressum {
    color: #6C4A94;
}

.bgcol-home, .bgcol-about, .bgcol-contact, .bgcol-impressum, .bgcol-agb, .bgcol-impressum {
    background-color: #6C4A94;
}

.col-team, .maincontentcontainer.team h1, .maincontentcontainer.team h2, .maincontentcontainer.team h3 {
    color: #AD4371;
}

.bgcol-team {
    background-color: #AD4371;
}

.col-services, .maincontentcontainer.services h1, .maincontentcontainer.services h2, .maincontentcontainer.services h3 {
    color: #6f7072;
}

.bgcol-services {
    background-color: #6f7072;
}

.col-education, .maincontentcontainer.education h1, .maincontentcontainer.education h2, .maincontentcontainer.education h3 {
    color: #D1AF94;
}

.bgcol-education {
    background-color: #D1AF94;
}

.col-bloodbank, .maincontentcontainer.bloodbank h1, .maincontentcontainer.bloodbank h2, .maincontentcontainer.bloodbank h3 {
    color: #CD3301;
}

.bgcol-bloodbank {
    background-color: #CD3301;
}

.col-jobs, .maincontentcontainer.jobs h1, .maincontentcontainer.jobs h2, .maincontentcontainer.jobs h3 {
    color: #66CDCC;
}

.bgcol-jobs {
    background-color: #66CDCC;
}

.col-news, .maincontentcontainer.news h1, .maincontentcontainer.news h2, .maincontentcontainer.news h3 {
    color: #006599;
}

.bgcol-news {
    background-color: #006599;
}

.col-white {
    color: #fff !important;
}


@media (max-width: 768px) {
    .next-image-50 > img, .next-image-50 > a > img {
        display: block;
        width: 50% !important;
        margin-left: auto;
        margin-right: auto;
        margin-bottom: 20px;
    }
}
