/*
 Theme Name:   ada18 Child
 Description:  ada Child Theme
 Author:       Jenny | Franzi
 Author URI:   www.jenniferbruns.de
 Template:     ada
 Version:      1.0.0
 Tags:         light, dark, two-columns, right-sidebar, responsive-layout, accessibility-ready
 Text Domain:  ada-child
*/

/* =Theme customization starts here
-------------------------------------------------------------- */

@font-face {
    font-family: "Roobert";
    src: url("fonts/Roobert-Light.otf");
    font-weight: 300;
}
@font-face {
    font-family: "Roobert";
    src: url("fonts/Roobert-Regular.otf");
    font-weight: 400;
}

.direction {
    direction: ltr;
}

html,
body,
button,
input,
select,
textarea {
    font-family: "Roobert", sans-serif;
    font-weight: 300;
    color: #000;
}

a {
    color: #FE5EA1;
    text-decoration: none;
}
a:hover, .entry-title a:hover, .entry-content a:hover, .comment-content a:hover {
    color: #ff4f1a;
}

a:visited {
	color: inherit;
}
b, strong {
	font-family: "Roobert", sans-serif !important;
	font-weight: 400 !important;
}
.ef-program-active, 
html[class*=uk-] {
	font-family: "Roobert", sans-serif;
	font-weight: 300;
}
.ef-program-active h1,
.ef-program-active h2,
.ef-program-active h3,
.ef-program-active h4,
.ef-program-active h5,
.ef-program-active h6 {
    font-family: "Roobert", sans-serif;
    font-weight: 400;
}


.container {
	max-width: 1080px;
	margin: 0 auto;
	padding: 0 15px;
}
.container > h2 {
	font-size: 26px;
	font-weight: 400;
	color: #000;
}
.container-wide {
    padding: 0 15px;
    max-width: 1600px;
    margin: 0 auto;
}
.clearfix:before {
  content: "";
  display: table-cell;
}
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

@media (min-width: 480px){
    .container, .container-wide {
        padding: 0 25px;
    }
}

#ef-hero {
    position: relative;
    background-color: #f9f8f7;
    min-height: 100vh;
}
#ef-hero h1 {
    font-family: "Roobert";
    font-weight: 300;
    font-size: 40px;
    line-height: 1.2em;
    margin: 15px 0;
}
.hero-overlay {
    padding: 200px 0;
}
.hero-video-container {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -1;
}
#hero-video {
    height: 100%;
    object-position: top;
}

.datevenue {
    font-family: "Roboto Mono";
    font-weight: 300;
    font-size: 16px;
    line-height: 1.3em;
}
.datevenue__date {
    margin-right: 2em;
}

.hero-buttons {
    margin-top: 50px;
}

.ef-button, .action-button {
    font-size: 19px;
    line-height: 1em;
    font-family: 'Roobert';
    padding: 0.5em 1.3em;
    color: #000;
    border-radius: 100px;
    text-decoration: none;
    border: 1px solid transparent;
}

.ef-button.ef-button--primary, .action-button {
    background-color: #000;
    color: #fff;
}

.ef-button.ef-button--secondary {
	color: #000;
    border-color: #000;
}

.ef-button:hover, .action-button:hover {
    text-decoration: none;
}

.ef-button.ef-button--primary:hover, .action-button:hover {
    background: transparent;
    color: #000;
    border-color: #000;
}

.ef-button.ef-button--secondary:hover {
    background-color: #000;
    color: #fff;
    border-color: transparent;
}

.ef-button + .ef-button, .action-button + .action-button {
    margin-left: 5px;
}

#ef-hero .badge-wrapper {
	display: flex;
	justify-content: flex-end;
	margin-top: 50px;
	position: absolute;
	bottom: 15px;
	right: 15px;
}

#ef-hero .badge span {
	display: block;
	font-size: 30px;
	font-weight: 300;
	line-height: 1.3em;
}
#ef-hero .badge strong {
	font-weight: 400;
}

@media (max-aspect-ratio: 16/9){
    #hero-video {
        object-fit: cover;
    }
}
@media (min-width: 768px){
    #ef-hero h1 {
        font-size: 50px;
    }
    #ef-hero .badge span {
    	font-size: 45px;
    }
}
@media (min-width: 1200px){
    #ef-hero h1 {
        font-size: 75px;
    }
}
@media (max-height: 480px){
    .hero-overlay {
        padding: 100px 0;
    }
}

@media (max-width: 767px){
	.hide-on-small {
		display: none !important;
	}
}
@media (min-width: 768px){
	.hide-on-large {
		display: none !important;
	}
}

.ef-fade-in {
    animation: ef-fade-in 1s ease-in both;
}
@keyframes ef-fade-in {
    0% {
        opacity: 0;
    }
    100% {
        opacity: 1;
    }
}

.ef-slide-in-left {
    animation: ef-slide-in-left 1s cubic-bezier(0.6, -0.28, 0.74, 0.05) both;
}
@keyframes ef-slide-in-left {
    0% {
        transform: translateX(-100%);
    }
    100% {
        transform: translateX(0%);
    }
}

.ef-slide-in-right {
    animation: ef-slide-in-right 1s cubic-bezier(0.6, -0.28, 0.74, 0.05) both;
}
@keyframes ef-slide-in-right {
    0% {
        transform: translateX(100%);
    }
    100% {
        transform: translateX(0%);
    }
}

.ef-slide-in-top {
    animation: ef-slide-in-top 0.6s ease both;
}
@keyframes ef-slide-in-top {
    0% {
        transform: translateY(-100%);
    }
    100% {
        transform: translateY(0%);
    }
}

.ef-rotate-90 {
    transform: rotate(90deg);
}
.ef-rotate-270 {
    transform: rotate(270deg);
}

@media(min-width: 769px){
    .alignfull {
        width: calc(100vw - 9px);
        margin-left: calc(50% - 50vw);
        margin-right: calc(50% - 50vw);
    }
    .su-row.alignfull .su-column-size-1-4 {
        margin-left: 10px;
        width: calc((100% - 30px) / 4);
    }
    .su-row.alignfull.flex {
        display: flex;
        align-items: center;
        justify-content: center;
        flex-wrap: wrap;
    }
    .su-row.alignfull.flex .su-column {
        margin: 0;
    }
    .su-row.alignfull.flex .su-column-size-1-3 {
        width: calc(100% / 3);
    }
    .su-row.alignfull.flex .su-column-size-2-3 {
        width: calc(100% / 3 * 2) !important;
    }
    .su-row.alignfull.flex .su-column-size-1-3 .su-note {
        font-size: 1.2em;
        font-weight: 700;
        display: flex;
        justify-content: center;
        text-align: left;
    }
}
.su-row.alignfull {
    margin-bottom: 0;
    line-height: 1em;
}
.su-row.alignfull + .su-row.alignfull {
    margin-top: 10px;
}
.su-row.bg-visual {
	display: flex;
    flex-wrap: wrap;
    justify-content: center;
    position: relative;
    z-index: 1;
}
.su-row.bg-visual::before {
	content: '';
	position: absolute;
	top: 0;
	left: 10vw;
	width: 100%;
	height: 100%;
	background-image: url(http://ada-lovelace-festival.com/wp-content/uploads/2023/02/230217-ada_lovelace_festival_2023_keyvisual_V3.jpg);
	background-size: contain;
	background-position: center;
	background-repeat: no-repeat;
	z-index: -1;
	opacity: 1;
}
.su-row.bg-visual.bg-visual-2::before {
	background-image: url(http://ada-lovelace-festival.com/wp-content/uploads/2023/02/230217-ada_lovelace_festival_2023_keyvisual_V3.jpg);
}
.usp {
    border: 3px solid #FE5EA1;
    font-size: 17px;
    padding: 25px;
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    line-height: 1.2em;
}
.usp strong {
    font-size: 20px;
}
@media(max-width: 768px){
    .usp {
        text-align: center;
    }
}

.partner-block {
	text-align: left;
}
.partner-block h3 {
	font-size: 1em;
	font-weight: 400;
	text-transform: uppercase;
}
.partner-item {
	padding: 25px 0;
}

.su-button {
    background: transparent !important;
    border: 1px solid #000 !important;
    color: #000 !important;
    font-weight: 400 !important;
    font-family: "Roobert" !important;
    font-size: 19px !important;
    line-height: 1em !important;
    padding: 0.5em 1.3em !important;
    border-radius: 100px !important;
    text-decoration: none;
    transition: none !important;
}
.su-button > span {
	background: transparent !important;
	border: none !important;
	color: #000 !important;
	font-weight: 400 !important;
	font-family: "Roobert" !important;
	font-size: 19px !important;
	line-height: 1em !important;
	padding: 0 !important;
	transition: none !important;
}
.su-button:hover, .su-button:hover > span {
	background: #000 !important;
	color: #fff !important;
	border-color: transparent !important;
	text-decoration: none;
}

.su-button.primary {
	background: #000 !important;
	color: #fff !important;
	border-color: transparent;
}
.su-button.primary > span {
	color: #fff !important;
}
.su-button.primary:hover, .su-button.primary:hover > span {
	background: transparent !important;
	color: #000 !important;
	border-color: #000 !important;
}

.su-note, .su-note-inner {
    border-radius: 0 !important;
    border: none !important;
}
.su-button-style-flat:hover span {
	top: 0 !important;
}

#video {
    margin: 0 auto;
    padding: 50px 0px;
    text-align: center;
    max-width: 100%;
}

.warning {
    background: #840217 none repeat scroll 0 0;
    color: #fff;
    font-size: 22px;
    font-weight: 600;
    padding: 0 10px;
    text-transform: uppercase;
}

#programm-2017 .su-row .su-column {
    margin: 0%;
    border: 1px solid #fff;
}

#programm-2017 .su-column-size-1-5 {
    width: 20%;
}

.pause {
    background: #efefef !important;
}

.pause h3 {
    color: #1b2836 !important;
}

.uhrzeit {
    background: #fff;
    display: inline;
    padding: 0px 5px;
}

#mainstage {
    text-align: center;
    background: #31c0ac;
    padding: 5px;
    color: #fff;
    padding: 5px;
}

.mainstage-unterpunkt {
    background: #cbefea;
    text-align: center;
    border-bottom: 2px solid #fff;
    padding: 5px;
}

.mainstage-unterpunkt a {
    text-align: center;
    line-height: 1.5em;
    color: #1b2836 !important;
}

#programm-nav .su-button {
    display: block !important;
    margin-top: 5px;
}

#programm-nav {
    position: fixed;
    left: 0%;
}

.brand {
    min-height: 660px !important;
}

.brand-highlight {
    min-height: 660px !important;
    background: #000;
}

.brand-extra {
    min-height: 990px !important;
}

#mainstage h3 {
    font-size: 30px;
    text-transform: uppercase;
    font-weight: 600;
}

.mainstage-unterpunkt h3 {
    font-size: 20px;
    font-weight: 400;
    line-height: 1em;
    color: #31c0ac;
}

#stage-2 {
    text-align: center;
    background: #31c0ac;
    padding: 5px;
    color: #fff;
}

.stage-2-unterpunkt {
    background: #cbefea;
    text-align: center;
    border-bottom: 2px solid #fff;
    padding: 5px;
    min-height: 330px;
}

.stage-2-unterpunkt a {
    text-align: center;
    line-height: 1.5em;
    color: #1b2836 !important;
}

.notes-wrapper {
    display: flex;
    flex-wrap: wrap;
    position: relative;
    padding: 15px 15px;
/*    background-image: url(images/bubbles.png); */
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    margin-top: 50px;
}
.notes-wrapper .su-column-inner, .notes-wrapper .notes-1, .notes-wrapper .notes-2 {
    height: 100%;
}

.notes-1, .notes-2 {
	background-color: rgba(255, 255, 255, 0.6);
	padding: 25px;
	border-radius: 8px;
	box-shadow: 1px 1px 6px rgba(0, 0, 0, 0.1);
}
.notes-text-1 p, .notes-text-2 p {
    color: #000 !important;
}

@media (max-width: 479px){
	.notes-wrapper {
		background-size: cover;
		padding: 0 15px;
	}
}
@media (min-width: 1280px){
	.notes-wrapper {
		padding: 50px 15px;
	}
}

.su-lightbox h3:hover {
    color: #ed6357;
}

.su-lightbox-content li {
    list-style-type: circle;
}

#stage-2 h3 {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 600;
}

.stage-2-unterpunkt h3 {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2em;
    color: #31c0ac;
    padding: 5px;
}

#stage-3 {
    text-align: center;
    background: #50c67c;
    padding: 5px;
    color: #fff;
}

.stage-3-unterpunkt {
    background: #d3f1de;
    text-align: center;
    border-bottom: 2px solid #fff;
    padding: 5px;
    min-height: 330px;
}

.stage-3-unterpunkt a {
    text-align: center;
    line-height: 1.5em;
    color: #1b2836 !important;
}

#stage-3 h3 {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 600;
}

.stage-3-unterpunkt h3 {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2em;
    color: #50c67c;
    padding: 5px;
}

#workshop-1 {
    text-align: center;
    background: #e16d60;
    padding: 5px;
    color: #fff;
    min-height: 82px;
}

.workshop-1-unterpunkt {
    background: #f7dad7;
    text-align: center;
    border-bottom: 2px solid #fff;
    padding: 5px;
    min-height: 330px;
}

.workshop-1-unterpunkt a {
    text-align: center;
    line-height: 1.5em;
    color: #1b2836 !important;
}

#workshop-1 h3 {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 600;
}

.workshop-1-unterpunkt h3 {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2em;
    color: #e16d60;
    padding: 5px;
}

#workshop-2 {
    text-align: center;
    background: #a46687;
    padding: 5px;
    color: #fff;
    min-height: 82px;
}

.workshop-2-unterpunkt {
    background: #e4bdd2;
    text-align: center;
    border-bottom: 2px solid #fff;
    padding: 5px;
    min-height: 330px;
}

.workshop-2-unterpunkt a {
    text-align: center;
    line-height: 1.5em;
    color: #1b2836 !important;
}

#workshop-2 h3 {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 600;
}

.workshop-2-unterpunkt h3 {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2em;
    color: #a46687;
    padding: 5px;
}

#workshop-3 {
    text-align: center;
    background: #5c8690;
    padding: 5px;
    color: #fff;
    min-height: 82px;
}

.workshop-3-unterpunkt {
    background: #aecad1;
    text-align: center;
    border-bottom: 2px solid #fff;
    padding: 5px;
    min-height: 330px;
}

.workshop-3-unterpunkt a {
    text-align: center;
    line-height: 1.5em;
    color: #1b2836 !important;
}

#workshop-3 h3 {
    font-size: 20px;
    text-transform: uppercase;
    font-weight: 600;
}

.workshop-3-unterpunkt h3 {
    font-size: 20px;
    font-weight: 400;
    line-height: 1.2em;
    color: #5c8690;
    padding: 5px;
}

.su-button-center {
    text-align: center;
    margin-bottom: 5px;
}

.video-content {
    max-width: 1080px;
    margin: 0 auto;
}

#video h2 {
    color: #FE5EA1;
    font-size: 38px;
}

.responsive-video iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.responsive-video {
    position: relative;
    padding-bottom: 56.25%;
    padding-top: 0px;
    height: 0;
    overflow: hidden;
    width: 100%;
}

#primary {
    padding: 0;
    background-color: #fff;
}
.hentry {
	padding: 0;
}
#primary h1.entry-title {
    font-weight: 400;
}
#primary p {
	color: inherit;
}

body.home #primary {
	padding: 0;
}
body.home #content {
	background-color: #f8f8f8;
	text-align: left;
    padding-top: 0;
}
body.home #primary .entry-title {
	border-top: 8px solid #000;
	padding-top: 20px;
	display: inline-block;
	margin: 50px 0 15px;
	font-weight: 400;
}
body.home #speaker .role {
	display: none;
}
body.home #speaker .team-members {
    margin-left: -35px;
}

body.blog #content {
	text-align: left;
}
.paging-navigation .meta-nav {
	background-color: #000;
}
.paging-navigation a {
	color: #000;
}
#impressions {
    background: #f8f8f8;
    padding: 0px;
}

#impressions .su-column-size-1-2 {
    width: 50% !important;
}
@media (max-width: 768px){
    #impressions .su-column {
        width: 100% !important;
    }
}
@media (min-width: 769px){
    #impressions .su-row {
        display: flex;
        align-items: center;
    }
}

#impressions .su-column-size-1-3 {
    width: 33.33%;
}

#impressions .su-row {
    margin-bottom: 0;
    margin-left: -1%;
}

#impressions .su-row .su-column {
    margin: 0 !important;
    padding-left: 1%;
    padding-bottom: 1%;
}

.tt_tooltip_text {
    display: none !important;
}

#navbar .page-id-2 {
    display: none;
}

#menu-item-5620 > a {
    background: #f76759 !important;
    color: #fff !important;
}

.kopf-3 {
    background: #111 url(https://wiwo.konferenz.de/ada/wp-content/uploads/2016/08/code-header.jpg) no-repeat center top fixed;
    margin-bottom: 0px;
    margin-top: -60px;
    padding: 40px 0px 0px 0px;
    text-align: center;
}

.kopf-stream {
    background: #fff url(images/mi_bg.jpg) no-repeat center top fixed;
    margin-bottom: 0px;
    margin-top: -60px;
    padding: 40px 0px 0px 0px;
    text-align: center;
}


.primary-link {
    color: #fff;
    font-size: 15px;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}


.action-link {
    color: #fff;
    font-size: 15px;
    font-weight: 700 !important;
    text-transform: uppercase;
    letter-spacing: 1px;
}


/* COUNTDOWN */

.countdown {
    color: #FE5EA1;
    text-align: center;
    background-color: rgba(255, 255, 255, 0.7);
    border-radius: 10px;
    box-shadow: 0px 0px 5px 5px rgba(82, 82, 82, 0.17);
}

.countdown li {
    display: inline-block;
    font-size: 1.5em;
    list-style-type: none;
    padding: 1em;
    text-align: center;
    text-transform: uppercase;
}

.countdown li span {
    display: block;
    font-size: 2em;
}

.form {
    background-color: rgba(255, 255, 255, 0.7);
    padding: 5px;
    border-radius: 10px;
    box-shadow: 0px 0px 5px 5px rgba(82, 82, 82, 0.17);
}

.kopf-4 {
    margin-bottom: 0px;
    background: none;
    margin-top: 0px;
    background: #efefef no-repeat center bottom fixed;
    padding: 50px;
    text-align: center;
}

.tt_event_theme_page {
    background: #ffffff none repeat scroll 0 0;
    margin: 0 auto 30px;
    padding: 30px;
    width: 1200px;
}

.blockquote {
    border: 2px solid #a2c626;
    font-size: 1em;
    font-weight: 500;
    padding: 20px 40px;
    color: #444;
    font-style: italic;
}

.blockquote:hover {
    background: rgba(162, 198, 38, 0.2);
    transition: background-color 0.5s;
}

.speaker-background {
    background: #FE5EA1;
    padding: 1px;
    color: #fff;
    text-align: center;
    font-weight: 300;
}

.quote {
    float: left;
    font-family: serif;
    font-size: 8.8em;
    font-weight: 700;
    margin-right: 10px;
    /*margin-top: -163px;*/
    color: #a2c626;
}

.quote-2 {
    color: #f76759;
    float: left;
    font-family: serif;
    font-size: 98px;
    font-weight: 700;
    line-height: 1em;
    margin-right: 9px;
    margin-top: -29px;
}

.quote-3 {
    color: #f76759;
    float: left;
    font-family: serif;
    font-size: 98px;
    font-weight: 700;
    line-height: 1em;
    margin-right: 9px;
    margin-top: -29px;
}

.quote-author {
    text-align: right;
}

.video-background {
    margin: 0 auto;
    max-width: 1080px;
    text-align: center;
}
.height {
    height: 340px;
}

.recent-partner {
    float: left;
    margin: 20px 10px;
    width: 150px;
}

.logo-container {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    flex-wrap: wrap;
}
.logo-container > a {
	margin: 10px 0;
}
.logo-container img {
    max-height: 50px;
    width: auto;
   /* max-width: 150px;*/
}

.entry-thumbnail img {
    display: inline;
    margin: 0 auto 10px;
}

.timetable_clearfix.tabs_box_navigation.tt_responsive.sf-timetable-menu {
    display: none !important;
}

.widget {
    background-color: none;
    background: none;
    margin: 0 0 24px;
    word-wrap: break-word;
}
.widget a, .widget a:visited {
    color: #FE5EA1;
}

#group {
    margin: 0 auto;
    text-align: center;
    padding: 10px 0 30px;
    background-color: #fff;
}

.tt_timetable td {
    height: 120px;
}

.page-id-4283 .tt_timetable .event {
    background: none;
}

.page-id-4283 .tt_timetable .event:hover {
    background: none;
}

.fb-page {
    background: #fff;
    ;
}

.su-column-size-3-4 {
    width: 70% !important;
}

#post-805 {
    margin-bottom: 250px;
}

#menu-item-3510 > a {
    background: #fff none repeat scroll 0 0 !important;
    font-size: 22px !important;
    font-weight: bold !important;
    color: #000 !important;
}

/*.rotate {
    -webkit-transition-duration: 1.8s;
    -moz-transition-duration: 1.8s;
    -o-transition-duration: 1.8s;
    transition-duration: 1.8s;
    -webkit-transition-property: -webkit-transform;
    -moz-transition-property: -moz-transform;
    -o-transition-property: -o-transform;
    transition-property: transform;
    overflow: hidden;
}

.rotate:hover {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -o-transform: rotate(360deg);
}*/
.navigation a {
    color: #FE5EA1;
}
.navigation a:hover {
    color: #0000ff;
}

.navigation.paging-navigation {
    background: #fff;
}

.comment-respond {
    background-color: #efefef;
    padding: 30px 0;
}

.site-main .widget-area {
    border-left: 1px solid #ccc;
    float: right;
    padding-left: 20px;
    width: 320px;
}

.entry-title a {
    color: #141412;
    font-size: 35px;
    line-height: 0.8em;
}

h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: "Roobert", sans-serif;
    font-weight: 400;
}

h2 {
    font-size: 38px;
}

h4 {
    font-size: 30px;
    color: #555;
}

.tt_event_page_left {
    float: left;
    text-align: center;
    width: 100%;
}

.team-members {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
}

.team-member img, img.portrait-2, img.round {
    background-image: radial-gradient(circle at center, #fff 15%, #a8a7af);
    border-radius: 50%;
}

.team-member .su-button, .team-member .su-button > span {
    font-size: 14px !important;
}

.member {
    color: #000;
    font-size: 15px;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0;
}

.stoerer2 {
    float: right;
    padding: 0px;
    position: fixed;
    right: 0px;
    text-align: center;
    bottom: 0px;
    z-index: 20000;
}

.tt_event_theme_page h3 {
    color: #1d2939;
    font-size: 29px;
    font-weight: 400;
}

.stoerer {
    float: right;
    padding: 10px;
    position: relative;
    right: 50px;
    text-align: center;
    top: 80px;
    border: 3px solid #1d2939;
}

.stoerer.animated.infinite.bounce span {
    font-size: 12px;
}

.stoerer.animated.infinite.pulse a {
    color: #1d2939;
    text-decoration: none;
}

.stoerer.animated.infinite.pulse a:hover {
    color: #1d2939;
    font-size: 16px;
}

.read-more {
    display: block;
    background: #999;
    float: right;
    color: #fff;
    margin-top: 30px;
    padding: 2px 6px;
    font-size: 13px;
}

.read-more:hover {
    background: #000000;
    text-decoration: none;
}

.su-expand-link.su-expand-link-less img,
.su-expand-link.su-expand-link-more img {
    border: 0 none !important;
}

.maincall {
    background: none;
    border: 2px solid #fff;
    width: 300px;
    margin: 10px;
}

.portrait {
    border: 5px solid #fff;
    border-radius: 100%;
    float: left;
    margin-right: 15px;
    margin-bottom: 33px;
}

.portrait-2 + .name, .portrait-2 + p + .name {
    display: none;
}

.bio {
	background-color: #FE5EA1;
	color: #fff;
    margin-top: -130px;
    padding: 124px 10px 10px;
    text-align: center;
}
#primary .bio p {
	color: #fff;
	font-size: 1.2em;
	line-height: 1.4em;
}

.tech {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    border: 4px solid #FE5EA1;
    padding: 5px 20px;
    text-align: center;
}

.trend {
    padding: 10px;
    text-align: center;
    border: 4px solid #ed635699;
}


/* CHANGE THE WORLD */

.change-world {
    background: #fff;
    text-align: left !important;
}

.change-world li {
    list-style-type: none;
    padding: 7px 25px;
}

.change-world h2 {
    font-size: 1.7em !important;
}


/* ENDE */

.id-4350 {
    height: 166px !important;
}

.id-4502 {
    height: 201px;
}

input:focus,
textarea:focus {
    border: 1px solid #d80c8c;
    outline: 0;
}

#wpcf7-f70-w1-o1 button,
input,
textarea {
    border: 1px solid #093c6b;
    font-family: inherit;
    padding: 5px;
}

#wpcf7-f70-w1-o1 button,
input[type="submit"],
input[type="button"],
input[type="reset"] {
    background-color: #000 !important;
    color: #fff !important;
    border: none;
}

#logos img {
    margin: 0 20px;
}

.background-nexen {
    background-color: #093c6b !important;
    /*min-height: 450px;*/
    position: absolute;
    width: 100%;
    display: block;
    overflow: hidden;
    z-index: -10;
}

.entry-content a,
.comment-content a {
    color: #FE5EA1;
}

.entry-meta a,
.call-headline h3 span,
#slider h1 span {
    color: #093c6b;
}

.call-headline h3 span,
#slider h1 span,
#tweets a {
    color: #093c6b;
}

figure.wp-caption.alignleft,
img.alignleft {
    margin-right: 0px;
}

.white {
    color: #fff !important;
    line-height: 50px;
    text-transform: uppercase;
    font-weight: 700;
    font-family: "Roobert", sans-serif;
    font-weight: 300;
    /*text-shadow: 0 0 7px #000;*/
    word-wrap: normal !important;
}

#logo-table {
    background: #ffffff;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    align-items: center;
}

#logos h2 {
    font-size: 18px !important;
    margin-top: 0px !important;
    color: #555 !important;
    margin-bottom: 7px !important;
}

#logos {
    margin: 0 auto;
    text-align: center;
}
body.home #breadcrumb {
	display: none;
}

.su-quote-style-default::before,
.su-quote-style-default::after {
    margin: 10px;
}

.highlight {
    background: #efefef;
    border: 1px solid #ccc;
    border-radius: 5px;
}

#breadcrumb {
    width: 100%;
    color: #000;
    padding-bottom: 5px;
    padding-top: 5px;
    font-size: 16px;
}
#breadcrumb a {
	color: #999;
}

#tweets img {
    float: left;
    margin-bottom: 5px;
    margin-right: 10px;
}

#ef-shariff {
    position: fixed;
    z-index: 1100;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
    padding: 5px;
}
#ef-shariff .shariff a {
	background-color: #000 !important;
}

#ef-shariff .shariff li {
	margin: 1px !important;
}
.kopf {
    /*background: #222 url("images/BG-2017.jpg") repeat fixed center bottom;*/
    background-color: #f8f8f8;
    margin-bottom: 40px;
    padding-top: 20px;
}

@media (max-width: 767px){
	.kopf {
		margin-bottom: 0;
	}
}

.adas-day {
    background: #d0b9d5 url("https://wiwo.konferenz.de/ada/wp-content/uploads/2015/10/BG-ada-day.jpg") repeat fixed center top;
    margin-bottom: 40px;
    margin-top: -41px;
    padding-top: 20px;
}

.kopf-programm {
    background: #222;
    margin-bottom: 40px;
    margin-top: -41px;
    padding-top: 20px;
}

#content-programm {
    background: #222 url("images/bg-programm.png") repeat fixed center bottom;
    min-width: 1400px;
}

.entry-content-wide {
    min-width: 1980px;
    margin: 0 auto;
    padding: 10px 20px;
}

.su-tabs {
    background: none repeat scroll 0 0 !important;
    border-radius: 0 !important;
    margin: 0 0 1.5em;
    padding: 3px;
}

.su-tabs-pane.su-clearfix {
    background: none;
}

.su-tabs-nav span.su-tabs-current {
    background: #fff none repeat scroll 0 0 !important;
    border: 1px solid #ccc !important;
    cursor: default;
    font-size: 20px;
    color: #111;
}

.su-tabs-nav span {
    border-top-left-radius: 3px;
    border-top-right-radius: 3px;
    color: #ccc;
    cursor: pointer;
    display: inline-block;
    font-size: 13px;
    line-height: 20px;
    margin-right: 3px;
    min-height: 40px;
    padding: 10px 15px;
    transition: all 0.2s ease 0s;
    background: #f7f7f7;
}

.su-tabs-nav span {
    border: 1px solid #ccc !important;
    background: #fff;
}

.su-tabs-nav {
    margin-bottom: -16px !important;
    margin-left: 15px;
}

td {
    text-align: center;
}

.cta-button {
    margin: 5px;
    width: 270px;
}

.timer {
    border: 1px solid #000;
    padding: 2px 10px 0;
}

.entry-content-programm {
    max-width: 1350px;
}

#cr-subscribe input,
textarea {
    background: #ccc;
    border: 1px solid #ccc;
}

#cr-subscribe h2 {
    margin: 10px 0 15px;
}

#cr-subscribe h2 span {
    color: #fdb813;
}

.mfp-bg {
    background: #fff !important;
}

.su-table td {
    border: 2px solid #fff !important;
    font-size: 13px;
}

#cr-subscribe button .mfp-close-btn-in,
.mfp-close {
    background: none !important;
}

.cr-field {
    float: left;
    margin-right: 10px;
}

#cr-mail {
    float: left;
    width: 50%;
}

#cr-mail input {
    width: 100%;
}

#cr-mail input,
textarea {
    background: #fff;
    border-bottom: 1px solid #fdb813;
    border-left: 5px solid #fdb813;
    border-right: 1px solid #fdb813;
    border-top: 1px solid #fdb813;
}

.entry-content img.alignleft,
.entry-content .wp-caption.alignleft {
    margin-left: 0px;
}

#menu-item-523 a {
    background-color: #ed6356 !important;
    font-weight: bold !important;
    color: #fff !important;
}

#menu-item-523 a:hover {
    background-color: #b84137;
    color: #fff !important;
}

#content {
    background: #fff;
    width: 100%;
    padding: 10px 0;
    text-align: center;
}

#content .su-tabs-pane {
    font-size: 16px;
}

.icon {
    background: #fff;
    border-radius: 100px;
    width: 200px;
    height: 200px;
    margin: 0 auto;
    -webkit-box-shadow: 0px 4px 3px 0px rgba(128, 128, 128, 0.6);
    -moz-box-shadow: 0px 4px 3px 0px rgba(128, 128, 128, 0.6);
    box-shadow: 0px 4px 3px 0px rgba(128, 128, 128, 0.6);
}

.center-text {
    text-align: center;
}

.metaslider .caption-wrap {
    background: none !important;
    bottom: none !important;
    opacity: 1.0 !important;
    text-align: center;
    top: 73px;
}

.metaslider .caption {
    color: #fff;
    padding: 15px 0 !important;
}

.su-dropcap-style-flat {
    background: #a9b037 !important;
}

.call-headline {
    color: #000;
    text-align: right;
}

.call-headline h2 {
    color: #000;
    font-size: 68px;
    font-weight: 300;
    line-height: 37px;
    margin: 16px 0;
    text-transform: uppercase;
}

.call-headline h3 {
    color: #000;
    font-family: Playball, cursive;
    font-size: 76px;
    line-height: 50px;
    margin: 16px 0;
    padding-bottom: 10px;
}

.call-headline img {
    float: right;
}

.anmeldung {
    background: #fff;
    border: 1px solid #093c6b;
    padding: 20px;
}

#primary .entry-title {
	padding-left: 15px;
	padding-right: 15px;
    color: #000;
    font-size: 35px;
    font-weight: bold;
    line-height: 1em;
    text-align: left;
}

#ef-nav {
    background: #fff;
    margin-bottom: 10px;
    margin-top: 0px;
    text-align: right;
}

.entry-content h2 {
    font-size: 25px;
}

#ef-nav .qtrans_flag_tr {
    background: #C92427;
    font-weight: bold;
}

#ef-nav .qtrans_flag_en {
    background: #0c2337;
    font-weight: bold;
}

#ef-nav p {
    color: #555;
    float: left;
    font-size: 12px;
    margin-bottom: 6px;
    margin-right: 10px;
    padding-top: 5px;
    font-weight: bold;
}

.ef-nav-center {
    margin: 0 auto;
    padding: 0 20px 0px 35px;
    max-width: 1980px;
}

#ef-nav a {
    color: #000;
    font-size: 11px;
    margin-left: 5px;
    padding: 2px 5px;
    text-transform: uppercase;
}

#ef-nav menu,
ol,
ul {
    margin: 0;
}

#ef-nav li {
    display: inline;
    line-height: 0;
    list-style: none;
}

.gift-box,
.gift-box2,
.gift-box3,
.gift-box4 {
    background: #fff;
    box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.1);
    color: #000;
    display: none;
    height: 50%;
    margin: 100px auto;
    padding: 25px;
    position: relative;
    width: 800px;
    max-width: 95%;
}

.mfp-close-btn-in .mfp-close {
    color: #fff !important;
}

.gift-box h3,
.gift-box2 h3,
.gift-box3 h3,
.gift-box4 h3 {
    color: #1d2939;
    font-size: 30px;
}

.su-lightbox > h2:hover {
    cursor: pointer;
    opacity: .6;
}


/* TEST VIDEO */

#slider .ef-hero-video {
    position: fixed;
    z-index: -1000;
}

#slider {
    padding-top: 80px;
    margin-top: -100px;
}

.line h3 strong {
    font-weight: 400;
    font-size: 55px;
}

#menu-item-3135 a {
    background: #FE5EA1;
    color: #fff;
    font-weight: bold;
    -webkit-border-radius: 5px 5px 5px 5px;
    border-radius: 5px 5px 5px 5px;
}

#menu-item-3135 a:hover {
    background: #a85810;
}

#gallery-tr {
    padding: none;
}

#gallery-tr .su-carousel {
    max-height: 160px;
    padding: none;
}

#gallery-tr .su-carousel .su-carousel-slide img {
    border: none;
    border-radius: 0px;
    padding: 0px;
}

#gallery-tr .su-carousel-slide > a,
.su-carousel-slide > img,
.su-carousel-slide > a > img {
    display: inline;
}

#slider h2 {
    text-align: center;
    color: #a2c626;
    font-size: 40px;
    font-weight: 400;
    margin-top: -25px;
    padding: 0px;
    font-family: "Roobert", sans-serif;
    font-weight: 400;
}

#slider h2 span {
    text-align: center;
    color: #fff;
    font-size: 55px;
    font-size: 4.6vw;
    margin-top: -25px;
    padding: 0px;
    font-family: "Roobert", sans-serif;
    font-weight: 300;
    text-transform: uppercase;
    text-shadow: 0 0 7px #000;
    word-wrap: normal !important;
}

#slider h1 {
    font-size: 70px;
    line-height: 62px;
    margin-bottom: 20px;
    margin-top: 0;
    text-shadow: 0px 0px 10px rgba(0, 0, 0, .7);
}

#slider h1 {
    color: #fff;
    font-family: "Roobert", sans-serif;
    font-size: 50px;
    font-weight: 400;
    line-height: 1.2em;
    margin-top: -60px;
    padding: 0;
    text-align: center;
}

#slider h1 span {
    color: #a2c626;
}

#slider p {
    font-family: "Roobert", sans-serif;
    font-weight: 300px;
    text-align: center;
    color: #1d2939;
    font-size: 30px;
    font-weight: 300;
    margin-top: -66px;
    margin-bottom: 62px;
    line-height: 1em;
}

#slider p span {
    color: #bed5e8;
    font-size: 16px;
    line-height: 24px;
    font-weight: normal;
    background: #0c2337;
    display: block;
    width: 300px;
    margin: 0 auto;
    padding: 5px 15px;
    border: 1px solid #133757;
    -webkit-border-radius: 8px 8px 8px 8px;
    border-radius: 8px 8px 8px 8px;
    -webkit-box-shadow: 0 0 10px 0 #000000;
    box-shadow: 0 0 10px 0 #000000;
}

.site-slider {
    font-size: 14px;
    text-align: left;
    padding-bottom: 0px;
}

.header-logo {
    display: block;
    height: 40px;
}


.content2 {
    background: linear-gradient(rgba(248, 248, 248, 0.8) 100%, transparent), url(https://www.ada-lovelace-festival.com/wp-content/uploads/2019/05/Ada-Lovelace-Festival_Pause.jpg) center top fixed no-repeat;
    background-size: cover;
}

.content2 iframe {
    border: 0px solid #333;
    max-width: 100%;
    padding: 0px;
    -webkit-border-radius: 5px 5px 5px 5px;
    border-radius: 5px 5px 5px 5px;
}

.fish {
    background: url(images/fish.jpg) no-repeat;
}

#content ul {
    padding-left: 15px;
}

#wpcf7-f70-w1-o1 p {
    margin-bottom: 15px;
}

.fokus {
    background: #efefef none repeat scroll 0 0;
    padding: 10px;
    text-align: center;
}

.center {
    max-width: 1080px;
    margin: 0 auto;
    text-align: center;
}

.page-id-567 form p::first-letter {
    margin-left: 5px;
}

#wpcf7-f70-w1-o1 button,
input,
textarea {
    background: #efefef none repeat scroll 0 0;
    border: 1px solid;
    border-radius: 0;
    padding: 7px;
}

.regular strong {}

.regular {
    background: #1974a1 none repeat scroll 0 0;
    text-align: left;
    font-size: 16px;
    color: #fff;
}

#menu-item-3793 > a {
    background: #ed6356 none repeat scroll 0 0 !important;
    color: #fff !important;
}

.freelancer {
    background: #28a2c0 none repeat scroll 0 0;
    text-align: left;
    font-size: 16px;
    color: #fff;
}

.studys strong {
    float: right;
    padding-right: 5px;
}

.studys {
    background: #3ac5ee none repeat scroll 0 0;
    text-align: left;
    font-size: 16px;
    color: #fff;
}

.passiv {
    background: #dddcdc none repeat scroll 0 0;
    text-align: left;
    font-size: 20px;
    color: #fff;
}

.passiv ul li {
    font-size: 16px;
}

.su-tooltip {
    cursor: help;
}

.ecke {
    background: #b8eefe url("images/ecke.png") no-repeat left top;
    border: #f1fcff 1px solid;
    padding: 10px 0px;
}

.ecke-passiv {
    background: #fff url("images/ecke-grey.png") no-repeat left top;
    border: #efefef 1px solid;
    padding: 10px 0px;
}

.info-icon {
    cursor: pointer;
    right: 20px;
}

#wpcf7-f70-w1-o1 textarea:focus {
    background: #fff;
    border: 1px solid #093c6b;
}

#footer-partner img {
   /* filter: grayscale(1);*/
}

#ada-ch {
	text-align: center;
	margin-top: 75px;
}

#wpcf7-f70-w1-o1,
.site-footer .widget p {
    color: #888;
}

.site-footer {
    background-color: #000;
    color: #efefef;
}

.site-footer a {
    color: #ccc;
}

#footercontainer .cta {
	font-size: 24px;
	line-height: 1.4em;
	padding: 25px 10px;
}

#wpcf7-f70-w1-o1 button,
input[type="submit"],
input[type="button"],
input[type="reset"] {
    -webkit-border-radius: 5px 5px 5px 5px;
    background: #093c6b;
    border-color: #093c6b;
    border-radius: 0px;
    color: #000;
    font-size: 17px;
}

.site-title {
    font-size: 10px;
    font-weight: bold;
    line-height: 1;
    margin: 0;
    padding: 0px;
}

#wpcf7-f70-w1-o1 div.wpcf7-validation-errors {
    -webkit-border-radius: 5px 5px 5px 5px;
    background: none repeat scroll 0 0 #fbd3dd;
    border: none;
    border-radius: 5px 5px 5px 5px;
    color: red;
    left: 230px;
    position: absolute;
    top: 361px;
    width: 300px;
    z-index: 1000000000;
}

span.wpcf7-not-valid-tip {
    color: #f63016;
}

div.wpcf7-validation-errors {
    background: #f9cabb;
    border: 1px solid #f62c2c;
    -webkit-border-radius: 5px 5px 5px 5px;
    border-radius: 5px 5px 5px 5px;
    color: #f62c2c;
    padding: 15px;
}

div.wpcf7-mail-sent-ok {
    -webkit-border-radius: 5px 5px 5px 5px;
    background: #dff4ad;
    border: 1px solid #38650b;
    border-radius: 5px 5px 5px 5px;
    color: #38650b;
    padding: 15px;
}

.menu-toggle,
.menu-toggle:hover,
.menu-toggle:focus,
.menu-toggle:active {
    background: none;
    border: none;
    color: #000;
    padding: 12px;
    font-weight: 400;
}
.menu-toggle:hover,
.menu-toggle:focus,
.menu-toggle:active {
	background-color: #000 !important;
	color: #fff;
}

#reallysimpletwitterwidget-2 {
    color: #000;
}

#reallysimpletwitterwidget-2 ul li a {
    background: none;
    display: inline;
    list-style: none;
    list-style-image: none;
    padding: 0;
    color: #FE5EA1;
}

.aligncenter.size-thumbnail.wp-image-7480.rotate.ideas-icon {
    margin-top: -75px;
    background-color: #fff;
    border-radius: 100%;
    box-shadow: 0px 0px 0px 10px rgba(255, 255, 255, .3);
    position: absolute;
    margin-left: 20%;
    width: 90px;
}

#reallysimpletwitterwidget-2 ul li img {
    float: left;
    margin-right: 9px;
}

.archive-header {
    display: none;
}

#reallysimpletwitterwidget-2 ul li {
    background: none;
    margin-bottom: 20px;
    margin-top: 20px;
}

#reallysimpletwitterwidget-2 ul {
    list-style: none;
    margin-left: 0;
}

#reallysimpletwitterwidget-2 .rstw_link_user {
    font-weight: 700;
    margin-left: 25px;
}

#site-cta,
#site-cta2 {
    background: #f8f8f8;
    color: #000;
    font-size: 18px;
    text-align: left;
}

#site-cta img {
    float: left;
}

#site-cta {
    background: #efefef;
}

#site-cta h2 {
    color: #fff;
    font-size: 58px;
    font-weight: 400;
    line-height: 54px;
    margin: 0;
    text-transform: uppercase;
}

#site-cta strong {
    font-size: 60px;
}

.small {
    font-size: 13px;
}

.button-home {
    float: right;
    margin-top: 0;
}

#site-cta p {
    display: block;
    font-size: 17px;
    margin: 0;
}

.xy {
    font-size: 20px;
}

#site-logos {
    background-color: #fff;
    border-bottom: 1px solid #E3E3E3;
    color: #4c3909;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 14px;
    margin-bottom: 0;
}

#site-logos strong {
    color: #093c6b;
    font-style: italic;
}

.cta {
    margin: 0 auto;
    max-width: 1080px;
    padding: 8px 10px;
    text-align: center;
}

#site-logos p {
    font-size: 24px;
    margin: 0;
}


/*Speaker*/

#ada-box {
    text-align: center;
    background: #ace2e5;
}

#speaker-box {
    text-align: center;
    background: #dbebed;
    padding: 30px 0;
    display: none;
}

#speaker-box h2 {
    color: #FE5EA1;
}

#ada-box h2 {
    color: #FE5EA1;
}

#speaker {
    text-align: center;
    padding: 50px 0;
    color: #555;
}

#speaker-2 {
    text-align: center;
    margin: 0px auto;
    max-width: 1380px;
    color: #555;
}

#speaker .widget {
    background: none;
}

#about {
	padding: 50px 0;
	background-color: #fff;
}
#about img.alignright {
	margin-top: -100px;
	margin-left: 50px;
}
#about .responsive-video {
	margin-top: 25px;
}

.round {
    -webkit-border-radius: 100%;
    border-radius: 100%;
}

.page-header {
    background: #4a5b6b;
}


/*Speaker-Ende*/

.role {
    background: transparent;
    border-radius: 2px;
    color: #1d2939;
    font-size: 13px;
    font-weight: 700;
    padding: 3px;
    margin: -5px 0 -2px;
}

.team-member-text {
    margin-top: 10px;
}

.my-full-size {
    height: auto;
    margin-left: auto !important;
    margin-right: auto !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
}

#sidebar {
    background: #efefef;
    margin-top: -10px;
    padding: 15px;
}

.twitterblock {
    background: none;
    color: #000;
    padding: 0px;
    text-align: center;
    margin: 50px 0;
}

#ort {
    margin-left: 5px;
    width: 50%;
}

#tweets ul {
    list-style: none;

    padding-left: 0;
}

.postid-6502 .site-main .widget-area {
    display: none;
}

.postid-6502 .entry-content {
    padding: 0 60px 60px;
}

.postid-6502 .entry-header {
    padding: 0 60px 60px;
}

#tweets li {
    background: #fff;
    border: 1px solid #fff;
    margin: 10px;
    padding: 10px 14px;
    max-width: 45%;
    text-align: left;
    display: inline-block;
    font-size: 13px;
    vertical-align: top;
    min-height: 120px;
    float: left;
}

.really_simple_twitter_widget li {
    clear: none !important;
}

#tweets a {
    color: #FE5EA1;
}

#posts {
    background: #f8f8f8;
    color: #1d2939;
    text-align: center;
    padding: 25px 0;
}
#posts .write {
	box-shadow: none;
}

.home-posts {
    margin: 0 auto;
    max-width: 1080px;
    padding-bottom: 25px;
    padding-top: 25px;
}


#posts .write h2 {
    clear: none;
    font-family: "Roobert", sans-serif;
    font-weight: 400;
    font-size: 20px;
    padding: 15px;
    margin-bottom: 5px;
    margin-top: 17px;
}

#posts .write h2 a {
    color: #1d2939;
    font-family: 'Roobert', sans-serif;
    font-weight: 400;
}

#posts .write h3 {
    clear: none;
    color: #1d2939;
    font-family: "Roobert", sans-serif;
    font-weight: 400;
    font-size: 40px;
    margin-top: 0;
}


/*CR-Form*/

#cr-subscribe {
    background: #1d2939 url(#) left top no-repeat;
    color: #fff;
    padding: 30px 0px;
}

.subscribe {
    margin: 0 auto;
    max-width: 780px;
}

#cr-subscribe input,
textarea {
    background: #1d2939;
    border: 1px solid #fff;
    color: #fff;
    -webkit-border-radius: 0 0 0 0;
    border-radius: 0 0 0 0;
}

#cr-subscribe form {
    text-align: center;
}

#cr-subscribe h3 {
    margin: 10px 0px 15px 0px;
    text-align: center;
    font-size: 22px;
    font-weight: 300;
    color: #a2c626;
}

#cr-subscribe h2 span {}

.mfp-bg {
    background: #fff !important;
}

#cr-subscribe button {
    background: #ed6356 none repeat scroll 0 0;
    border: none;
    color: #fff;
    font-size: 17px;
    font-weight: bold;
    line-height: 26px;
    margin-top: 20px;
    padding: 7px 22px;
    text-shadow: none;
}

#cr-subscribe button a:hover {
    background: #b3be2e;
}

#cr-subscribe button .mfp-close-btn-in,
.mfp-close {
    background: none !important;
}

.cr-field {
    float: left;
    margin-right: 10px;
    width: 175px;
    color: #fff;
    display: block;
}

#cr-mail {
    width: 50%;
    float: right;
    color: #fff;
}

.cr_ipe_radio {
    color: #fff !important;
}

#cr-mail input {
    width: 100%;
}

#cr-mail input,
textarea {
    background: #fff;
    border: 1px solid #fff;
    color: #fff;
}

#cr-mail input {
    background: #1d2939;
    border: 1px solid #fff;
    color: #fff;
}

#cr-field input,
textarea {
    background: #fff;
    border: 1px solid;
    color: #000;
}


/* Placeholder text color -- selectors need to be separate to work. */

::-webkit-input-placeholder {
    color: #e6edf5;
}

:-moz-placeholder {
    color: #e6edf5;
}

::-moz-placeholder {
    color: #e6edf5;
}

:-ms-input-placeholder {
    color: #e6edf5;
}


/*CR-Form ENDE*/

#posts p {
    font-size: 15px;
}

.homethumb {
    float: left;
    margin-bottom: 5px;
    margin-right: 20px;
    margin-top: 0;
    width: 100px;
}

.write {
    background: #fff;
    width: 20%;
    text-align: left;
    min-height: 305px;
    display: inline-block;
    margin: 15px;
    position: relative;
    vertical-align: top;
    -webkit-box-shadow: 0 0 10px 0 #ccc;
    box-shadow: 0 0 10px 0 #ccc;
}

.write:nth-child(odd) {
    clear: both;
}

.su-list ul li {
    display: block !important;
    line-height: 1.3em;
    list-style-type: none !important;
    margin: 0 !important;
    padding: 4px 0 3px 1.2em !important;
    position: relative;
}

.site-header {
	position: fixed;
	top: 0;
	z-index: 100000;
    width: 100%;
    padding-top: 25px;
    padding-bottom: 25px;
    background-color: #fff;
    transition: padding 0.1s ease-out, background-color 0.2s ease-out;
}
.site-header.sticky {
	padding: 15px 0;
}
.site-header.sticky #breadcrumb {
	display: none;
}
.home .site-header:not(.sticky) {
    background-color: rgba(255,255,255,0);
}

.navbar {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    text-align: right;
    max-width: 100%;
    background: none;
}

.none,
body.page-id-289 div#imagecontainer {
    display: none;
}

.mfp-content .gift-box,
.mfp-content .gift-box2,
.mfp-content .gift-box3,
.mfp-content .gift-box4 {
    display: block;
}

.main-navigation {
    margin: 0;
}

ul.nav-menu,
div.nav-menu > ul {
    margin: 0;
    padding: 0px;
}

#menu-item-3645 {
    display: none;
}

.site {
    background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
    border-left: medium none;
    border-right: medium none;
    margin: 0 auto;
    max-width: 100%;
    width: 100%;
}

.nav-menu .sub-menu,
.nav-menu .children {
    border: none !important;
    border-top: 0;
    padding: 0;
    position: absolute;
    left: -2px;
    z-index: 99999;
    height: 1px;
    width: 1px;
    overflow: hidden;
    clip: rect(1px, 1px, 1px, 1px);
}

.nav-menu li a {
    font-size: 19px;
    line-height: 1em;
    font-family: 'Roobert';
    color: #000;
    padding: 0.5em 1.3em;
}

.main-navigation:not(.toggled-on) .nav-menu > li.current-menu-item > a, .main-navigation:not(.toggled-on) .nav-menu > li:hover > a, .main-navigation:not(.toggled-on) .nav-menu > li:focus > a {
    background: #000 !important;
    border-radius: 20px;
    color: #fff !important;
}

.main-navigation:not(.toggled-on) .sub-menu li a {
    background-color: #f5f5f5;
}

.main-navigation:not(.toggled-on) .nav-menu .sub-menu ul,
.main-navigation:not(.toggled-on) .nav-menu .children ul {

    right: 100%;
    left: auto;
}


ul.nav-menu ul a, .nav-menu ul ul a {
    color: #000;
}

.nav-menu li > ul.sub-menu {
    padding: 10px !important;
    background: transparent;
}

.nav-menu > li > ul.sub-menu {
    text-align: left;
    left: 0;
    right: auto;
}

.nav-menu li:hover > a, .nav-menu li a:hover, .nav-menu li:focus > a, .nav-menu li a:focus {
    background-color: transparent;
    color: #FE5EA1;
    outline: none;
}

ul.nav-menu ul a:hover, .nav-menu ul ul a:hover, ul.nav-menu ul a:focus, .nav-menu ul ul a:focus {
    background-color: transparent;
    color: #FE5EA1;
    outline: none;
}


.nav-menu .sub-menu,
.nav-menu .children {
    background-color: none;
    border-top: 0;
    padding: 0;
    position: absolute;
    left: auto;
    right: 0px;
    z-index: 99999;
    height: 1px;
    width: 1px;
    overflow: hidden;
}

.toggled-on.main-navigation {
    width: 200px;
}

.toggled-on .nav-menu {
    background-color: rgba(255,255,255,0.95);
    text-align: left;
}
.toggled-on .nav-menu li > ul.sub-menu {
    padding: 0 !important;
}
.toggled-on .nav-menu > li a:hover, .toggled-on .nav-menu > ul a:hover, .toggled-on .nav-menu li.focus > a {
    background: none !important;
    color: #FE5EA1;
}


.site {
    background: none;
    margin: 0 auto;
    max-width: 100%;
    width: 100%;
    border-left: none;
    border-right: none;
    transition: margin-top 0.2s ease-out;
}

.entry-header,
.entry-content,
.entry-summary,
.entry-meta {
    margin: 0 auto;
    max-width: 1080px;
    width: 100%;
}

.ie8 .sidebar .entry-header,
.ie8 .sidebar .entry-content,
.ie8 .sidebar .entry-summary,
.ie8 .sidebar .entry-meta {
    max-width: 1080px;
}

.site-info {
    margin: 0 auto;
    max-width: 1980px;
    padding: 30px 20px;
    background: #000;
}

#colophon ul li {
    display: inline;
}

#colophon li {
    margin-right: 10px;
}

#colophon menu,
ol,
ul {
    padding: 0px;
}

#likebox-wrapper * {
    width: 100% !important;
}

.nav-menu .current_page_item > a,
.nav-menu .current_page_ancestor > a,
.nav-menu .current-menu-item > a,
.nav-menu .current-menu-ancestor > a {
    color: inherit;
    font-style: normal;
}

.sidebar .entry-header,
.sidebar .entry-content,
.sidebar .entry-summary,
.sidebar .entry-meta {
    max-width: 1080px;
}

#content .su-frame-style-default .su-frame-inner {
    border: 0px solid #eee;
    padding: 0px;
}

#content .su-frame-style-default {
    width: 100%;
    background: none repeat scroll 0 0 #fff;
    border: 0px solid #999;
    box-shadow: none;
    padding: 0px;
}

#content .video-wall .su-column-size-1-2 {
    width: 48%;
    margin: 25px 0;
}

#content .video-wall .su-column-size-1-2:nth-child(odd) {
    margin-right: 2%;
}

#content .video-wall .su-column-size-1-2:nth-child(even) {
    margin-left: 2%;
}


#content .ef-programm [id^="ef-topics-filter"] {
    padding-left: 0;
}

#content .ef-programm-main-wrapper {
    text-align: left;
}

.ef-programm-main-wrapper .uk-button-group .uk-button:active,
.ef-programm-main-wrapper .uk-button-group .uk-button.uk-active {
  background: #FE5EA1 !important;
}
.ef-programm-main-wrapper .uk-button-group .uk-button:hover {
    background-color: #FE5EA1 !important;
    opacity: 0.7;
}
.ef-programm-main-wrapper .uk-subnav-pill > .uk-active > * {
  background-color: #FE5EA1 !important;
  color: #fff !important;
}
.ef-programm .ef-programm-main-filter a {
  color: #FE5EA1 !important;
}
.ef-programm .uk-panel-box .ef-topic-cat {
  background-color: #FE5EA1 !important;
}
.ef-programm .ef-programm-time {
  background-color: #FE5EA1 !important;
}
.ef-programm .ef-programm-parallel .uk-tab {
  border-bottom: 1px solid #FE5EA1 !important;
}
.ef-programm .ef-programm-parallel .uk-tab > li.uk-active > a {
  background-color: #FE5EA1 !important;
  border-color: #FE5EA1 !important;
}
.ef-programm .ef-program-section h3 {
  background: rgba(255, 121, 80, 0.2) !important;
}
.ef-programm-list-view div[data-uk-filter]:not(.ef-program-section) {
  border-color: rgba(255, 121, 80, 0.6) !important;
}
.ef-programm .ef-programm-person figure figcaption img {
    width: auto;
}
.ef-programm-main-wrapper .su-button-center {
    text-align: left;
}

.ef-personen .uk-panel-box {
	background: transparent;
}

.ef-personen .team-member .member .pulse::before {
	background-color: #FE5EA1;
}
.ef-personen .team-members .ef-speaker-info {
	font-weight: 300;
}

@media (max-width: 1269px) {
    .write {
        height: auto;
        margin: 1%;
        width: 30%;
    }
    #tweets li {
        max-width: 45%;
    }
    .stoerer2 {
        display: none;
    }
    .aligncenter.size-thumbnail.wp-image-7480.rotate.ideas-icon {
        margin-left: 4%;
        width: 80px;
    }
}

@media( max-width: 1069px){
	.menu-toggle {
		font-size: 20px;
	}
}

@media (max-width: 999px) {

    .kopf-stream {
        background: #fff url(images/mi_bg.jpg) no-repeat center top fixed;
    }
    #slider h2 span {
        text-align: center;
        font-size: 49px;
        font-weight: 700;
        word-wrap: normal !important;
    }
/*    .rotate {
        -webkit-transition-duration: none;
        -moz-transition-duration: none;
        -o-transition-duration: none;
        transition-duration: none;
        -webkit-transition-property: -webkit-transform;
        -moz-transition-property: -moz-transform;
        -o-transition-property: -o-transform;
        transition-property: transform;
        overflow: hidden;
    }
    .rotate:hover {
        -webkit-transform: rotate(0deg);
        -moz-transform: rotate(0deg);
        -o-transform: rotate(0deg);
    }*/
    .aligncenter.size-thumbnail.wp-image-7480.rotate.ideas-icon {
        margin-top: -45px;
        margin-left: 4%;
        width: 80px;
    }
    .sidebar .entry-header,
    .sidebar .entry-content,
    .sidebar .entry-summary,
    .sidebar .entry-meta,
    .sidebar .comment-list,
    .sidebar .comment-reply-title,
    .sidebar .comment-navigation,
    .sidebar .comment-respond .comment-form,
    .sidebar .featured-gallery,
    .sidebar .post-navigation .nav-links,
    .author.sidebar .author-info {
        max-width: 95%;
        padding-left: 0;
        padding-right: 0;
    }
    #event .su-column {
        float: none !important;
        margin: 0 0 1.5em !important;
        width: 100% !important;
    }
    .write {
        width: 45%;
        height: auto;
        margin: 1%;
    }
    #tweets li {
        max-width: 45%;
    }
    #slider .ef-hero-video {
        display: none;
    }
    #slider h1 {
        font-size: 40px;
    }
}

@media (max-width: 860px) {
    .cr-field {
        width: 50%;
        margin-right: 0px;
    }
    .cr-field input {
        width: 100%;
        float: left;
    }
    #cr-mail {
        width: 100%;
        float: left;
    }
    #slider {
        margin-top: -50px;
    }
}

@media (max-width: 820px) {
    #tweets li {
        max-width: 100%;
    }
    #primary {
        padding: 0px 0;
    }
    #video {
        padding: 20px 0px;
    }
    .header-logo {
        max-width: 160px;
    }
    #ef-nav {
        display: none;
    }
    body.page-id-4 div.site {
        margin-top: 0px;
    }
    .widget-area {
        display: none;
    }
}

@media (max-width: 800px) {
    .widget-area {
        display: none;
    }
}
@media(max-width: 767px){
	#about img.alignright {
		display: none;
	}
}

@media (max-width: 643px) {
    #primary .entry-title {
        font-size: 20px;
    }
    .download-programm {
        display: none;
    }
    .cr-field {
        width: 100%;
        margin-right: 0px;
    }
    .cr-field input {
        width: 100%;
        float: left;
    }
    #cr-mail {
        width: 100%;
        float: left;
    }
    #slider h1 {
        font-size: 35px;
    }
    #slider h1 strong {
        font-size: 35px !important;
    }
    #slider h1 span {
        font-size: 35px !important;
    }
    h2 {
        font-size: 20px;
    }
    .content2 {
        display: none;
    }
    #content .entry-header {
        padding: none;
    }
    .header-logo {
        max-width: 165px;
    }
    #logos img {
        margin: 10px;
    }
    #posts h3 {
        font-size: 25px;
    }
    #slider {
        margin-top: 0px;
    }
    .ada-small {
        display: none;
    }
    #slider h2 span {
        text-align: center;
        font-size: 40px;
        font-weight: 700;
        word-wrap: normal !important;
    }
    .write {
        height: auto;
        margin: 10px 0;
        width: 100%;
    }
    #gallery-tr {
        display: none;
    }
    .stoerer2 {
        display: none;
    }
    .white {
        line-height: 26px;
    }
    .su-button.su-button-style-ghost.maincall {
        width: 225px;
    }
    #slider {
        width: 100%;
    }
    #primary {
        width: 100%;
    }
    #slider {
        padding: 30px 0;
        margin-top: 0px;
    }
    .widget-area {
        display: none;
    }
    #cr-subscribe {
        background-image: none;
        width: 100%
    }
    #change-world h2 {
        font-family: 'Comfortaa', 'Open Sans', sans-serif;
        font-size: 1.8em;
    }
    #change-world li {
        list-style-type: none;
        padding: 7px 0px;
    }
    .aligncenter.size-thumbnail.wp-image-7480.rotate.ideas-icon {
        display: none;
    }
}

@media (max-width: 359px) {
    .stoerer2,
    .stoerer {
        display: none;
    }
    #slider h2 span {
        text-align: center;
        font-size: 25px;
        font-weight: 700;
        word-wrap: normal !important;
    }
    #likebox-wrapper * {
        display: none;
    }
}

/**
*
*   Video Startseite (15.11.2018)
*
**/

.video-wrapper {
    width: 1050px;
    max-width: 100%;
    margin: 0 auto;
}

#ef-shariff + div {
    padding: 50px 0;
}

#ef-shariff + div h1 {
    margin: 0;
}

#slider .primary-link {
    display: none;
}

#slider > div > br {
    display: none;
}

@media(min-width: 768px){
	#contact .team-member {
		width: 50%;
	}
}

@media(min-width: 1200px) {

	#speaker .team-member {
	    width: 220px;
	}

	#contact .team-member {
		width: 33%;
	}

    #ef-shariff + div {
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
        flex-wrap: wrap;
        padding: 50px 15px 197px;
        z-index: 1;
        position: relative;
        width: 1080px;
        margin: 0 auto;
        box-sizing: border-box;
        max-width: 100%;
    }
    .video-wrapper {
        position: absolute;
        bottom: 0;
        left: 50%;
        transform: translate(-50%, 50%);
    }

    .aligncenter.size-thumbnail.wp-image-7480.rotate.ideas-icon {
        margin-left: calc((100% - 1140px) / 2);
    }

    #footer-partner {
    	padding: 50px 0;
    }
}

@media(max-width: 1199px) {
    img[src*=ada_logo] {
        max-width: 225px;
    }
    #slider {
        padding-bottom: 0;
    }
}
.ctf-tweets {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
    text-align: left;
    font-size: 14px;

}
.ctf-item {
    width: 49%;
    box-sizing: border-box;
    padding: 25px;
    margin: 0.5%;
    background-color: #fff;
}
#ctf #ctf-more {
    width: 33%;
    margin: 15px auto;
    background-color: rgba(0,0,0,0.7);
}
#ctf #ctf-more:hover {
    background-color: #000;
}
@media(max-width: 767px){
    .ctf-item {
        width: 100%;
        margin: 5px 0;
    }
}
