* {
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    font-family: 'Quicksand', sans-serif;
    line-height: 145%;
}

a {
    text-decoration: none;
}

html {
}

body {
}

h1 {
    color: darkcyan;
    font-size: 18px;
}
h2 {
    color: darkcyan;
    font-size: 16px;
}
b {
    font-weight: bold;
}
textarea {
    resize: vertical; 
    max-height: 200px; 
    min-height: 100px; 
}
.websiteInner {
    width: 100%;
    padding: 20px;
}
.clearFix::after {
    content: '';
    display: block;
    clear: both;
}
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 90px;
    background: darkcyan;
    padding: 20px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    z-index: 2;
}

.menuIcon, .loginIcon, .backIcon {
    width: 50px;
    cursor: pointer;
}

.menuIcon i, .loginIcon i, .backIcon i {
    color: white;
}

.menuIcon i {
    font-size: 50px;
}

.logo {
   width: auto;
   height: 50px;
}

.logo > img {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    width: auto;
}

.navigation {
    position: fixed;
    top: 90px;
    left: 0;
    display: none;
    width: 100%;
    border-bottom: 5px solid darkcyan;
    z-index: 2;
}

.navigation ul {
    width: 100%;
}

.navigation ul li {
    width: 100%;
}

.navigation ul li a:hover, .navigation ul li a.active{
    color: white;
    background: #21355a;
    font-weight: bold;
}

.navigation ul li a:hover i, .navigation ul li a.active i{
    color: white;
    font-weight: bold;
}

.navigation ul li a {
    display: block;
    padding: 10px 20px;
    background: white;
    color: #707070;
}

.navigation ul li a i{
    color: #707070;
}

.content {
    margin-top: 110px;
    padding-bottom: 20px;
}

.content .canvas, .draftCanvas {
    width: 100%;
    max-width: 600px;
    margin: 20px auto 0;
}

.content .canvas {
    border: 3px solid #707070;
}

.draftCanvas {
    border: 2px solid #EAEAEA;
}

@media (min-width: 641px) {
    .content .canvas, .draftCanvas{
        width: 600px;
    }
}

.content .canvas canvas, .draftCanvas canvas {
    display: block;
    width: 100%;
    height: 100%;
    touch-action: none;
}

.draftCanvas.canvasScrollable canvas {
    touch-action: initial;
}

.content .canvas .hint {
    width: 100%;
    display: none;
}
.content .images img {
    width: 100%;
    height: auto;
    border: 5px #eaeaea solid;
    display: block;
}
.content .images .image + .image {
    margin-top: 20px;
}
.canvasSettings {
    margin-top: 10px;
}
.colorCircles {
    display: table;
    margin: 0 auto;
}
.colorCircles .circle {
    width: 50px;
    height: 50px;
    border: black 5px solid;
    -webkit-border-radius: 25px;
    -moz-border-radius: 25px;
    border-radius: 25px;
    float: left;
    position: relative;
    cursor: pointer;
    display: inline-block;
}
.colorCircles .circle + .circle {
    margin-left: 10px;
}
.colorCircles .circle.black {
    border: black 3px solid;
}
.colorCircles .circle .circleInner {
    position: absolute;
    top: 50%;
    left: 50%;
    margin-top: -12px;
    margin-left: -12px;
    -webkit-border-radius: 15px;
    -moz-border-radius: 15px;
    border-radius: 15px;
}
.colorCircles .circle.play .circleInner {
    left: 60%;
}
.colorCircles .circle.save .circleInner {
    left: 55%;
}
.colorCircles .circle .circleInner i {
    font-size: 24px;
}

.circle.black .circleInner i {
    color: black;
}

.circle.darkred {
    border: darkred 5px solid;
}
.circle.darkred .circleInner i {
    color: darkred;
}

.circle.forestgreen {
    border: forestgreen 5px solid;
}
.circle.forestgreen .circleInner i {
    color: forestgreen;
}

.circle.dodgerblue {
    border: dodgerblue 5px solid;
}
.circle.dodgerblue .circleInner i {
    color: dodgerblue;
}

.circle.mediumpurple {
    border: mediumpurple 5px solid;
}
.circle.mediumpurple .circleInner i {
    color: mediumpurple;
}

.circle.darkgrey {
    border: #707070 3px solid;
}
.circle.darkgrey .circleInner i {
    color: #707070;
}

.circle.white {
    border: black 5px solid;
}
.circle.white .circleInner i {
    color: black;
}

.buttons {
    width: 100%;
    margin-top: 20px;
}
.buttons a, .buttons input[type=submit], .button {
    width: auto;
    background: darkcyan;
    color: #fff;
    display: block;
    padding: 5px 20px;
    border: none;
    text-decoration: none;
}
.buttons .button.left {
    float: left;
}
.buttons .button.right {
    float: right;
}

.seperator{
    border-bottom: 2px solid #eaeaea;
    margin: 20px 5%;
}

.seperatorSmall{
    border-bottom: 2px solid #eaeaea;
    width: 100px;
    margin: 0 auto;
}

.seperator:last-child{
    border: none;
    margin: 0;
}

.buttonContainer{
    display: flex;
    width: auto;
}

.buttonContainer .buttonLink:not(:first-child){
    margin-left: 20px;
}

.buttonLink {
    position: relative;
    width: auto;
    height: 35px;
    font-size: 14px;
    background: darkcyan;
    color: #fff;
    padding: 5px 10px;
    border: none;
    border-radius: 5px;
    text-align: center;
    line-height: 1.8;
    text-decoration: none;
    cursor: pointer;
}

.backgroundRed {
    background: rgb(173, 86, 86) !important;
}

.backgroundGrey {
    background: #e0e0e0 !important;
}

.backgroundDarkGrey {
    background: #888 !important;
}

.iconLink {
    position: relative;
    width: auto;
    cursor: pointer;
}

.buttonLink > a, .iconLink > a, .clickLink > a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.buttonLink i {
    color: #fff;
}

.overflow{
    /* white-space: nowrap; */
    overflow: hidden;
    text-overflow: ellipsis;  
}

/* .overflow:hover{
    overflow: visible;
    white-space: normal;
    height: auto;
    z-index: 1000;
} */

.breakWords {
    word-break: break-all;  
}

.spaceIcons{
    margin-left: 5px;
}

.hidden{
    display: none !important; 
}

.colorWhite, .colorWhite i{
    color: white !important;
}

.colorBlack, .colorBlack i{
    color: black !important;
}

.colorGrey, .colorGrey i{
    color: #e0e0e0 !important;
}

.colorDarkGrey, .colorDarkGrey i{
    color: #707070 !important;
}

.disabledIcon, .disabledIcon i {
    color: #e0e0e0 !important;
}

.disabledPointerCursor {
    cursor: initial !important;
}

.disabledPointerCursor i {
    color: #e0e0e0 !important;
}

.noselect {
    -webkit-touch-callout: none;
    -webkit-user-select: none;
    -khtml-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; 
}

.noOrder {
    order: unset !important;
}

.inputWarning {
	position: absolute;
	top: 25px;
	width: 100%;
	color: rgb(160, 94, 94);
	font-weight: bold;
}

/*+++ PROFILE +++*/
h1 a {
    padding-left: 10px;
}
.infoBox {
    width: 100%;
    padding: 10px;
    border: 1px solid #eaeaea;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
.infoBox .left, .infoBox .right {
    width: 45%;
    float: left;
}
.infoBox .left {
    margin-right: 5%;
}
.infoBox .right {
    margin-left: 5%;
}
.infoBox + h2 {
    margin-top: 25px;
}

.ideas {
    width: 100%;
}
.ideas .row {
    width: 100%;
}
.ideas .row + .row {
    margin-top: 5%;
}
.ideas .row .idea {
    width: 100%;
    padding-top: 100%;
    position: relative;
}
.ideas .row .wrapper {
    width: 47.5%;
    float: left;
    border: 5px solid #eaeaea;
}
.ideas .row .wrapper + .wrapper {
    margin-left: 5%;
}
.idea a {
    position: absolute;
    width: 100%;
    height: 100%;
    left: 0;
    top: 0;
}
canvas.detail {
    width: 100%;
    padding-top: 50%;
    margin: 0 auto;
    position: relative;
    display: block;
}
.detailCanvas {
    border: 5px solid #eaeaea;
}

/* +++ POPUP +++ */
.overlay {
    position: fixed;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    top: 0;
    left: 0;
}
.popup {
    width: 80%;
    margin: 0 auto;
    margin-top: 50px;
}
.popup .header {
    height: auto;
    padding: 10px;
}
.popup .header h1 {
    color: #fff;
    line-height: 100%;
    font-size: 18px;
}
.popup .content {
    padding: 10px;
    background: white;
    margin-top: 0;
}
.popup .content input {
    width: auto;
    padding: 10px;
    background: darkcyan;
    color: #fff;
    border: none;
    cursor: pointer;
}

/*+++ INPUTFIELDS +++*/
.inputRow {
    width: 100%;
}
.inputRow + div {
    margin-top: 20px;
}
.inputRow + .inputRow {
    margin-top: 10px;
}
.inputRow label {
    width: 100%;
    display: block;
    font-weight: bold;
}

.inputRow label.required::after{
    content: "*";
    color: red;
    padding-left: 5px;
}

.inputRow > input,  .inputRow > textarea{
    width: 100%;
    padding: 5px 10px;
    border: 1px solid #eaeaea;
}

.inputRow label + input {
    margin-top: 5px;
}
.inputRow.center {
    width: 500px;
    margin: 0 auto;
}
.inputRow.center > input {
    border: 0;
    border-bottom: 1px solid #eaeaea;
    font-size: 22px;
    text-align: center;
}

/* +++ BACKEND +++ */

.backendComponentContainer {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    width: 100%;
    text-align: center;
}

.backendComponentContainer h1 {
    width: 100%;
    margin-bottom: 40px;
}

.backendComponentContainer .backendComponent {
    flex: 0 0 250px;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 60px;
    margin-right: 30px;
    border: 1px solid #8f8f8f;
    border-radius: 5px;
    text-decoration: none;
    color: white;
    font-weight: bold;
    font-size: 18px;
}

.pill-container{
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: flex-start;
    padding: 5px 0;
    width: 100%;
}

.pill-container .pill, .draftPills .pill, .inputField .pill{
    width: auto;
    height: 25px;
    margin: 5px;
    padding: 6px 8px;
    color: white;
    font-size: 12px;
    text-align: center;
    line-height: 1.2;
    border-radius: 5px;
    background-color: #21355a;
}

.pill.pillGreen, .pill.kywPill {
    background: #3B955C;
}

.create {
    margin-top: 10px;
}
.create input {
    padding: 5px 10px;
    border: 1px solid #eaeaea;
}
.create label + div {
    margin-top: 5px;
}
.create .createInput {
    display: flex;
    justify-content: space-between;
}
.create .createInput :first-child {
    width: 70%;
}
.create .createInput > * {
    flex: 0 0 auto;
}

.checkbox-container{
    margin: 0 5px;
    display: flex;
}

.buttons a.backend-button{
    background-color: #002040;
}

.changePlaybackSpeed i.fa-angle-right{
    font-size: 24px !important;
    margin-left: -4.5px;
    margin-top: 0;
}

/* +++ OVERVIEW +++ */

.headlineContainer {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    width: 100%;
}

.headlineContainer .headline {
    flex: 0 1 auto;
    order: 1;
    font-size: 22px;
}

.headlineContainer .searchField {
    position: relative;
    flex: 0 1 100%;
    order: 3;
    margin: 20px 0;
}

.headlineContainer .buttonLink {
    flex: 0 1 auto;
    order: 2;
}

@media (min-width: 600px){

    .headlineContainer {
        margin-bottom: 40px;
    }

    .headlineContainer .searchField {
        flex: 1 1 auto;
        order: 2;
        max-width: 600px;
        margin: 0 30px;
    }

    .headlineContainer .buttonLink {
        order: 3;
    }

    .headlineContainer .headline {
        margin-bottom: 20px;
    }
}

.floatAddButton{
    position: fixed;
    left: 50%;
    bottom: 20px;
    margin-left: -75px;
    z-index: 2;
}

.floatScrollToTopButton{
    position: fixed;
    left: 20px;
    bottom: 55px;
    width: 30px;
    height: 30px;
    z-index: 2;
}

@media (min-width: 600px) {
    .floatScrollToTopButton {
        bottom: 35px;
    }
}

.draftHeader{
    display: flex;
    width: 100%;
    justify-content: flex-start;
    margin-bottom: 20px;
}

.draftHeader > div{
    cursor: pointer;
}

.draftHeader .draftImage{
    width: 100px;
    text-align: center;
    position: relative;
}

.draftHeader .draftName, .draftItem .draftName{
    flex: 1 0 0;
}

.draftHeader .draftDescription, .draftItem .draftDescription {
    flex: 1 0 0;
}

.draftHeader .draftPills, .draftItem .draftPills{
    display: none;
}

.grid {
    width: 100%;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.draftItem{
    position: relative;
    width: 100%;
    height: 140px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    margin-bottom: 10px;
}

.draftItem .draftInfoContainer {
    width: 100%;
    height: 80%;
    display: flex;
    justify-content: flex-start;
    position: relative;
    flex: 0 auto;
}

.draftItem .draftImage {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    overflow: hidden;
}

.draftItem .draftImage > a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.draftItem .draftImage > img {
    max-width: 100%;
    max-height: 100%;
    height: auto;
    width: auto;
}

.draftItem .draftName {
    color: #21355a;
    font-weight: bold;
    line-height: 1.4;
}

.draftItem .draftDescription {
    height: 90%;
    font-size: 13px;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 5;
}

.draftItem .draftAction {
    width: 100%;
    height: 20%;
    display: flex;
    flex-direction: row;
    justify-content: center;
    flex: 0 auto;
}

.draftItem .draftAction .draftDelete, .draftItem .draftAction .draftEdit {
    width: 50%;
    height: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.draftItem .draftAction .draftDelete {
    background-color: rgb(226, 107, 107);
    border-radius: 0 5px 5px 0;
}
.draftItem .draftAction .draftEdit {
    background-color: #8f8f8f;
    border-radius: 5px 0 0 5px;
}

.draftAction i {
    color: white;
}

.draftItem .draftName, .draftItem .draftDescription, .draftItem .draftPills, .draftHeader .draftName, .draftHeader .draftDescription, .draftHeader .draftPills{
    padding-left: 20px;
}

@media (min-width: 800px){
    .draftHeader{
        width: 90%;
        padding: 0 20px;
    }
    
    .draftItem{
        flex-direction: row;
        padding: 20px;
    }
    
    .draftItem .draftInfoContainer{
        width: 90%;
        height: 100%;
    }
    
    .draftItem .draftAction{
        flex: 0 auto;
        width: 10%;
        height: 100%;
    }

    .draftItem .draftDescription {
        height: 100%;
        padding-right: 10px;
        -webkit-line-clamp: unset;
    }
}

@media (min-width: 1260px) {

    .draftHeader .draftName, .draftItem .draftName {
        flex: 0 auto;
        width: 300px;
    }
    
    .draftHeader .draftDescription, .draftItem .draftDescription {
        flex: 0 auto;
        width: 400px;
    }

    .draftHeader .draftPills{
        display: block;
        flex: 1 0 0;
    }

    .draftItem .draftPills{
        display: flex;
        flex-wrap: wrap;
        justify-content: flex-start;
        flex: 1 0 0;
        overflow: hidden;
    }
}

.draftNewDraft{
    text-align: center;
    font-size: 18px;
}

.saveCreateDraft{
    margin-top: 40px;
    justify-content: center;
}

.paginationControls{
    display: flex;
    width: 100%;
    justify-content: center;
    align-items: center;
    padding: 15px;
}

.paginationControls .page{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 30px;
    height: 30px;
    margin-right:5px; 
    border: 1px solid #707070;
    border-radius: 5px;
    color: #707070;
    cursor: pointer;
}

.paginationControls .page.selected{
    background: darkcyan;
    color: white;
    font-weight: bold;
}

/* +++ Content +++ */

.contentHighlight {
    background: darkcyan !important;
    color: white !important;
}

.contentPlaceholder {
    height: 80px;
    width: 450px;
    border: 1px dotted darkcyan;
    opacity: 0.3;
}

.contentList {
    display: flex;
    justify-content: flex-start;
    flex-wrap: wrap;
    width: 100%;
}

.contentContainer {
    position: relative;
    display: flex;
    justify-content: flex-end;
    width: 450px;
    height: 80px;
    margin: 0 40px 40px 0;
}

.contentContainer .contentIndex {
    position: absolute;
    left: 25px;
    top: 15px;
    width: 50px;
    height: 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #EAEAEA;
    color: white;
    font-size: 18px;
    -webkit-clip-path: circle(50%);
    clip-path: circle(50%);
}

.contentContainer .contentBody {
    flex: 0 1 300px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 10px 30px;
    background: #EAEAEA;
    color: #8f8f8f;
    font-size: 18px;
    border-radius: 5px 0 0 5px;
}

.contentContainer .contentAction {
    position: relative;
    flex: 0 0 50px;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #d19495;
}

.contentContainer .contentAction.contentActionEnd {
    border-radius: 0 5px 5px 0;
}

.contentContainer .contentAction i {
    color: white;
    font-size: 18px;
}

/* +++ Breadcrumb +++ */

.breadcrumbContainer > a, .breadcrumbContainer > a:visited {
    color: #8F8F8F;
}

.breadcrumbContainer > i {
    color: #8F8F8F;
    padding: 0 6px 0 4px;
}

.breadcrumbContainer a.breadCrumbLink {
    font-size: 18px;
    color: #8F8F8F;
}

.breadcrumbContainer a.breadcrumbLink.currentLocation {
    font-weight: bold;
    color: #008B8B;
}

/* +++ Frontend +++ */

.frontend .websiteDescription{
    width: 100%;
    font-size: 16px;
    line-height: 22px;
    color: #707070;
    padding: 0;
}

.frontend .searchField {
    position: relative;
    width: 100%;
}

.frontend .searchField input, .headlineContainer .searchField input{
    width: 100%;
    height: 35px;
    border: 1px solid #B8B8B8;
    border-radius: 25px;
    padding: 0 14px;
    outline: none;
}

@media (min-width: 500px){
    .frontend .searchField{
        display: flex;
        justify-content: flex-end;
    }

    .frontend .searchField input{
        width: 300px;
    }
}

.frontend .searchField input::placeholder, .headlineContainer .searchField input::placeholder{
    color: #EAEAEA;
}

.frontend .searchField input:focus, .headlineContainer .searchField input:focus{
    border: 2px solid darkcyan;
    box-shadow: inset 0 1px 1px rgba(0,0,0,0.0125),0 0 8px rgba(0, 139, 139, 0.5);
}

.frontend .searchField i, .headlineContainer .searchField i{
    position: absolute;
    right: 14px;
    top: 9px;
    color: #707070;
}

.frontend .draftOverview{
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;
    align-items: flex-start;
    list-style-type: none;
    width: 100%;
    margin-top: 20px;
}

.frontend .draftOverview .draftImageContainer{
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    /* padding: 0 0 15px 15px; */
    padding-bottom: 15px;
}

.noSearchResults{
    display: flex;
    width: 100%;
    justify-content: center;
    font-size: 20px;
    font-weight: bold;
    color: #707070;
}

@media (min-width: 350px){
    .frontend .draftOverview .draftImageContainer{
        width: calc(100%/2);
    }
}
@media (min-width: 490px){
    .frontend .draftOverview .draftImageContainer{
        width: calc(100%/3);
    }
}

@media (min-width: 950px){
    .frontend .draftOverview .draftImageContainer{
        width: calc(100%/6);
    }
}

@media (min-width: 1400px){
    .frontend .draftOverview .draftImageContainer{
        width: calc(100%/9);
    }
}

.frontend .draftOverview .draftImageContainer .draftImage{
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 150px;
    height: 150px;
    border: 1px solid #EAEAEA;
    border-radius: 5px;
    overflow: hidden;
    cursor: pointer;
}

.frontend .draftOverview .draftImageContainer .draftImage:hover{
    -webkit-box-shadow: 6px 6px 5px -5px rgba(0,0,0,0.3);
    -moz-box-shadow: 6px 6px 5px -5px rgba(0,0,0,0.3);
    box-shadow: 6px 6px 5px -5px rgba(0,0,0,0.3);
    border: 2px solid darkcyan;
}

.frontend .draftOverview .draftImageContainer .draftImage > a {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.frontend .draftOverview .draftImageContainer .draftImage > img{
    max-width: 90%;
    max-height: 90%;
    height: auto;
    width: auto;
}

.frontend .loadAdditionalDrafts{
    width: 100%;
    margin: 15px auto 0;
    font-weight: bold;
    cursor: pointer;
}

@media (min-width: 500px){
    .frontend .loadAdditionalDrafts{
        width: 200px;
    }
}

/* +++ Modal +++ */

.showing-modal {
    overflow: hidden;
  }

.modalOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.6);
    z-index: 9998;
}

.modalContainer{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    min-height: 100%;
    padding: 20px;
    background-color: #fff;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    z-index: 9999;
}

@media (min-width: 1100px) {
    .modalContainer {
        left: 0;
        right: 0;
        width: 80vw;
        margin: 0 auto;
    }
}

@media (min-width: 1600px) {
    .modalContainer {
        width: 60vw;
    }
}

.modalContainer.modalSmall, .modalContainer.modalMedium{
    top: 130px;
    left: 0;
    right: 0;
    width: 400px;
    height: 140px;
    max-height: 140px;
    min-height: 140px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 5px;
    overflow: hidden;
}

.modalContainer.modalMedium {
    width: 600px;
    height: 250px;
    min-height: 250px;
    max-height: 250px;
}

.modalContainer::before {
    position: absolute;
    top: 0;
    left: 0;
    content: '';
    width: 100%;
    display: block;
    height: 7px;
    background: darkcyan;
}

.modalContainer .modalHeader{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    height: 40px;
}

.modalContainer .modalHeader .modalTitle{
    flex: 1 1 auto;
    color: darkcyan;
    font-size: 20px;
    font-weight: bold;
}

.modalContainer .modalHeader  i.fa-times{
    line-height: 1;
    font-size: 20px;
}

.modalContainer .modalHeader .backButton{
    font-size: 16px;
}

.modalContainer .modalBody{
    width: 100%;
    margin-top: 30px;
}

.modalContainer .modalBody .modalDescription{
    font-size: 16px;
    color: #707070;
    margin: 20px 0;
    line-height: 1.8;
}

.modalContainer .modalBody .modalSection {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    width: 100%;
    margin-bottom: 30px;
}

.modalContainer .modalBody .modalSection .modalLabel {
    flex: 0 0 160px;
    font-size: 18px;
    color: #8f8f8f;
}

.modalContainer .modalBody .modalSection .modalInput {
	position: relative;
    flex: 0 0 400px;
    width: 100%;
	padding-left: 20px;
}

.modalContainer .modalBody .modalSection .modalInput input[type=text] {
    width: 100%;
    padding: 0 5px;
    border: none;
    border-bottom: 1px solid #8f8f8f;
    font-size: 18px;
}

.modalContainer .modalBody .modalSection .modalInput select {
    width: 100%;
    border-color: #8f8f8f;
    font-size: 18px;
}

.modalContainer .modalFooter{
    display: flex;
    justify-content: flex-end;
    align-items: center;
    width: 100%;
    margin-top: 30px;
}

.modalContainer .modalFooter .buttonLink {
    margin-left: 10px;
}

/* +++ Impressum +++ */

.impressum-container{
    width: 100%;
    margin: 0 auto;
    padding: 15px;
}

@media (min-width: 466px){
    .impressum-container{
        width: 80%;
        padding: 0;
    }
}

 @media (min-width: 701px){
     .impressum-container{
         width: 50%;
     }
 }

.impressum-container h1{
    font-size: 20px;
}

.impressum-container h2{
    font-size: 18px;
}

.impressum-container p, .impressum-container td{
    font-size: 14px;
}

.impressum-header{
    text-align: center;
    margin-bottom: 40px;
}

.impressum-header h1{
    font-size: 24px;
}

.impressum-header h2{
    font-size: 22px;
}

.impressum-section{
    margin-bottom: 30px;
}

.impressum-table{
    width: 100%;
    margin-bottom: 10px;
}

.impressum-table td{
    padding: 2px 0;
}

.impressum-table p{
    margin: 14px 0;
}

.impressum-topic{
    color: darkcyan;
    text-align: center;
}

/* +++ Loading Indicator +++ */

.loadingIndicator {
    min-width: 100%;
    min-height: 100%;
    background: rgba(255, 255, 255, 0.7);
    z-index: 9999;
}

.loadingIndicator.fixed {
    position: fixed;
    top: 90px;
    left: 0;
}

.sk-circle {
    margin: 40px auto;
    width: 60px;
    height: 60px;
    position: relative;
}

.loadingIndicator.fixed .sk-circle {
    margin: 160px auto;
}
  
.sk-circle .sk-child {
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
}
.sk-circle .sk-child:before {
    content: '';
    display: block;
    margin: 0 auto;
    width: 15%;
    height: 15%;
    background-color: darkcyan;
    border-radius: 100%;
    -webkit-animation: sk-circleBounceDelay 1.2s infinite ease-in-out both;
            animation: sk-circleBounceDelay 1.2s infinite ease-in-out both;
}
.sk-circle .sk-circle2 {
    -webkit-transform: rotate(30deg);
        -ms-transform: rotate(30deg);
            transform: rotate(30deg); }
.sk-circle .sk-circle3 {
    -webkit-transform: rotate(60deg);
        -ms-transform: rotate(60deg);
            transform: rotate(60deg); }
.sk-circle .sk-circle4 {
    -webkit-transform: rotate(90deg);
        -ms-transform: rotate(90deg);
            transform: rotate(90deg); }
.sk-circle .sk-circle5 {
    -webkit-transform: rotate(120deg);
        -ms-transform: rotate(120deg);
            transform: rotate(120deg); }
.sk-circle .sk-circle6 {
    -webkit-transform: rotate(150deg);
        -ms-transform: rotate(150deg);
            transform: rotate(150deg); }
.sk-circle .sk-circle7 {
    -webkit-transform: rotate(180deg);
        -ms-transform: rotate(180deg);
            transform: rotate(180deg); }
.sk-circle .sk-circle8 {
    -webkit-transform: rotate(210deg);
        -ms-transform: rotate(210deg);
            transform: rotate(210deg); }
.sk-circle .sk-circle9 {
    -webkit-transform: rotate(240deg);
        -ms-transform: rotate(240deg);
            transform: rotate(240deg); }
.sk-circle .sk-circle10 {
    -webkit-transform: rotate(270deg);
        -ms-transform: rotate(270deg);
            transform: rotate(270deg); }
.sk-circle .sk-circle11 {
    -webkit-transform: rotate(300deg);
        -ms-transform: rotate(300deg);
            transform: rotate(300deg); }
.sk-circle .sk-circle12 {
    -webkit-transform: rotate(330deg);
        -ms-transform: rotate(330deg);
            transform: rotate(330deg); }
.sk-circle .sk-circle2:before {
    -webkit-animation-delay: -1.1s;
            animation-delay: -1.1s; }
.sk-circle .sk-circle3:before {
    -webkit-animation-delay: -1s;
            animation-delay: -1s; }
.sk-circle .sk-circle4:before {
    -webkit-animation-delay: -0.9s;
            animation-delay: -0.9s; }
.sk-circle .sk-circle5:before {
    -webkit-animation-delay: -0.8s;
            animation-delay: -0.8s; }
.sk-circle .sk-circle6:before {
    -webkit-animation-delay: -0.7s;
            animation-delay: -0.7s; }
.sk-circle .sk-circle7:before {
    -webkit-animation-delay: -0.6s;
            animation-delay: -0.6s; }
.sk-circle .sk-circle8:before {
    -webkit-animation-delay: -0.5s;
            animation-delay: -0.5s; }
.sk-circle .sk-circle9:before {
    -webkit-animation-delay: -0.4s;
            animation-delay: -0.4s; }
.sk-circle .sk-circle10:before {
    -webkit-animation-delay: -0.3s;
            animation-delay: -0.3s; }
.sk-circle .sk-circle11:before {
    -webkit-animation-delay: -0.2s;
            animation-delay: -0.2s; }
.sk-circle .sk-circle12:before {
    -webkit-animation-delay: -0.1s;
            animation-delay: -0.1s; }

@-webkit-keyframes sk-circleBounceDelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0);
                transform: scale(0);
    } 40% {
        -webkit-transform: scale(1);
                transform: scale(1);
    }
}

@keyframes sk-circleBounceDelay {
    0%, 80%, 100% {
        -webkit-transform: scale(0);
                transform: scale(0);
    } 40% {
        -webkit-transform: scale(1);
                transform: scale(1);
    }
}
.inputField {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-flow: row wrap;
    width: 100%;
    padding: 5px 10px;
    border: 1px solid #eaeaea;
}

.inputField .tagInput {
    flex: 1 auto;
    height: 25px;
    padding: 2px 10px;
    outline: none;
    border: none;
}

.inputField .pill {
    flex: 0 auto;
}

.pill .removePill {
    margin-left: 3px;
    font-size: 13px;
    cursor: pointer;
}

.pill .pillName {
    color: white;
    font-size: 12px;
    line-height: 1.2;
    cursor: pointer;
}

.toasterNotification {
    position: fixed;
    bottom: 80px;
    left: 0;
    right: 0;
    display: none;
    justify-content: center;
    align-items: center;
    width: 275px;
    height: 50px;
    padding: 5px;
    margin: 0 auto;
    border: 2px solid darkcyan;
    border-radius: 5px;
    background: rgba(0, 137, 137, 0.569);
    color: white;
    font-size: 16px;
    font-weight: bold;
    text-align: center;
    z-index: 9999;
}

/* +++ TEMPLATES +++ */

.templateSelection, .stepModule {
    margin-bottom: 20px;
}

.stepModule {
    position: relative;
    width: 100%;
    padding: 20px 30px;
    border-radius: 5px;
    background: #eaeaea;
}

.stepModule .removeModule {
    position: absolute;
    top: 5px;
    right: 5px;
}

.stepModule .removeModule > i {
    color: #400;
    font-size: 20px;
    cursor: pointer;
}

.whatYouSee {
    width: 100%;
    margin-top: 20px;
}

.whatYouSee .options {
    display: flex;
    flex: 0 auto;
    padding: 20px;
    background: #eaeaea;
    border: 1px solid #8f8f8f;
    border-bottom: none;
    border-radius: 5px 5px 0 0;
}

.whatYouSee .options .iconGroup {
    display: flex;
    flex: 0 auto;
    -webkit-user-select: none; /* webkit (safari, chrome) browsers */
    -moz-user-select: none; /* mozilla browsers */
    -khtml-user-select: none; /* webkit (konqueror) browsers */
    -ms-user-select: none; /* IE10+ */
}

.whatYouSee .options .iconGroup + .iconGroup {
    margin-left: 20px;
    
}

.whatYouSee .options .iconGroup .icon {
    padding: 5px 10px;
    background: darkcyan;
    color: #fff;
    border-radius: 5px;
    cursor: pointer;
}

.whatYouSee .options .iconGroup .icon.selected {
    background: darkcyan;
}

.whatYouSee .options .iconGroup .icon i {
    color: #fff;
    -webkit-user-select: none; /* webkit (safari, chrome) browsers */
    -moz-user-select: none; /* mozilla browsers */
    -khtml-user-select: none; /* webkit (konqueror) browsers */
    -ms-user-select: none; /* IE10+ */
}

.whatYouSee .options .iconGroup .icon + .icon {
    margin-left: 10px;
}

.whatYouSee textarea {
    width: 100%;
    padding: 10px;
    min-height: 250px;
    max-height: 1000px;
    border: 1px solid #8f8f8f;
    border-radius: 0 0 5px 5px;
    background: white;
    font-size: 16px;
    resize: vertical;
}

input.iconPath {
    border: 1px solid #8f8f8f;
    border-radius: 5px;
}

.previewIcon, .addModule {
    text-align: center;
    padding: 30px 0;
}

.previewIcon > i {
    font-size: 40px;
}

.addModule {
    position: relative;
}

.addModule > i {
    color: darkcyan;
    font-size: 50px;
    cursor: pointer;
}

.addModule .moduleSelection {
    position: absolute;
    bottom: 100px;
    right: 0;
    left: 0;
    display: flex;
    justify-content: space-around;
    flex-wrap: wrap;
    margin: 0 auto;
    padding: 20px 10px;
    border: 2px solid #8f8f8f;
    border-radius: 5px;
    background: white;
    z-index: 9999;
}

.addModule .moduleSelection:after {
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	width: 0;
	height: 0;
	border: 20px solid transparent;
	border-top-color: #ffffff;
	border-bottom: 0;
	margin-left: -20px;
	margin-bottom: -20px;
}

.addModule .moduleSelection .newModule {
    width: 100px;
    margin-bottom: 10px;
    border-radius: 5px;
    background: darkcyan;
    color: white;
    text-align: center;
    cursor: pointer;
}

@media (min-width: 800px) {
    .addModule .moduleSelection {
        width: 600px;
    }
        
    .addModule .moduleSelection .newModule {
        margin-bottom: 0;
    }
}
