.fn-wysiwyg{
    display: none;
}

body,
button{
	font-family: 'Yanone Kaffeesatz', 'Lato', Arial;
}

body{
    background-color: #ffffff;
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
    /* opacity: 0; */
    letter-spacing: 1px;
}

main{
    padding: 20px;
}


/* TITLES */
.titles{
    font-weight: bold;
}
.titles--1{
    font-size: 25px;
}
.titles .titles__title{
    
}

header{
    position: -webkit-sticky;
    position: sticky;
    left: 0;
    top:0;
    right: 0;
    text-transform: uppercase;
    background: #333333;
    z-index: 200;
    box-shadow: 0px 3px 5px 2px rgba(92, 92, 92, 0.46);
}

header .logo{
    display: none;
}
header .logo img{
    max-width: 100%;
    max-height: 80px;
}
header nav {
    
}
header nav ul{
    
}
header nav ul li{
    color: #ffffff;    
}
header nav ul li:not(:first-child){
    border-left: 1px solid #bfbfbf;
}
header nav ul li a{
    display: block;
    text-align: center;
    color: #ffffff;
    padding: 10px;
    font-size: 10px;
    max-width: 80px;
    min-width: 75px;
    overflow: hidden;
    text-overflow: ellipsis;
    transition: .5s;
}
header nav ul li a:hover,
header nav ul li a.active{
    background: mediumseagreen;
}
@media(min-width:600px){
    header .logo{
        min-width: 200px;
        text-align: center;
    }
    header nav ul li a{
        padding: 20px;
        font-size: 16px;
        max-width: none;
    }
}

.sidebar {
    position: fixed;
    width: 100px;
    top: 30px;
    left: 0;
    bottom: 0;
    color: #ffffff; 
    background: #333333;
    box-shadow: 5px 0px 6px 0px rgba(92, 92, 92, 0.25);
    -o-transform: translateX(calc(-100% + 10px));
    -ms-transform: translateX(calc(-100% + 10px));
    -moz-transform: translateX(calc(-100% + 10px));
    -webkit-transform: translateX(calc(-100% + 10px));
    transform: translateX(calc(-100% + 10px));
    transition: .5s;
    z-index: 199;
}
.sidebar.active{
    -o-transform: translateX(0);
    -ms-transform: translateX(0);
    -moz-transform: translateX(0);
    -webkit-transform: translateX(0);
    transform: translateX(0);
}
.sidebar__toggler{
    position: absolute;
    background: transparent;
    top: 0;
    bottom: 0;
    right: -10px;
    width: 20px;
}
.sidebar__toggler:hover{
    cursor: pointer;
}
.sidebar__toggler:after{
    position: absolute;
    content: '+';
    bottom: 20px;
    left: 10px;
    background: #333333;
    padding: 15px;
    color: inherit;
    line-height: 17px;
    font-size: 30px;
    border-radius: 0 5px 5px 0;
    width: 50px;
    box-sizing: border-box;
    text-align: center;
}
.sidebar__toggler.active:after{
    content: '-';
}
.sidebar nav ul li:not(:last-child){
    border-bottom: 1px solid #444444;
}
.sidebar__main{
    background: #4c5f54;
}
.sidebar__secondary{
    
}
.sidebar nav ul li{
    color: #ffffff; 
}
.sidebar nav ul li:not(:first-child){
    border-top: 1px solid #666666;
}
.sidebar nav ul li a{
    padding: 15px 10px;
    display: block;
    text-align: center;
    color: #ffffff;
    font-size: 12px;
}
.sidebar nav ul li a:hover,
.sidebar nav ul li a.active{
    background: mediumseagreen;
}

@media(min-width: 600px){
    .sidebar {
        top: 56px;
    }
}

.mainSection{
    transition: .5s;
}
.sidebar + .mainSection{
    margin-left: 10px;
}
.sidebar.active + .mainSection{
    margin-left: 100px;
}

/* LOGIN */
/* .login_box{
    position: absolute;
    top: 50%;
    transform: translate(-50%, -50%);
} */


/* SELECTORS */
/* CHOSEN */
.chosen-container > a,
select{
    font-family: inherit;
    position: relative;
    display: block;
    overflow: hidden;
    text-decoration: none;
    white-space: nowrap;
    cursor: pointer;
    color: #777777;
    background: #ffffff;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    -o-appearance: none;
    background-image: url(/app/assets/img/arrows/arrow-down-grey.png)!important;
    background-size: 30px;
    background-repeat: no-repeat;
    background-position: right 10px top 50%;
    width: 100%;
    box-sizing: border-box;
    box-shadow: none!important;
    line-height: initial;
    padding-right: 45px!important; 
}
.chosen-container-single .chosen-single div{
    display:none;
}
.chosen-container .chosen-search{
    margin:0;
    padding:5px 10px;
}
.chosen-container .chosen-search input{
    border-radius:2px;
    border: 1px solid #cccccc;
    margin:0;
}
.customSelect .customSelect__drop,
.chosen-container .chosen-drop{
    background: #ffffff;
    box-sizing: border-box;
    border: 1px solid #dddddd;
    width: auto;
    min-width: 100%;
    margin-top: -2px;
    border-radius: 0 0 4px 4px;
    position: absolute;
    top: 100%;
    z-index: 1010;
    width: 100%;
    box-shadow: 0 4px 5px rgba(0,0,0,.15);
}
/* .chosen-container .chosen-drop{
    display:none;
    left: auto!important;
} */

.customSelect__results,
.chosen-container .chosen-results{
    margin:0;
    padding:0;
}
.customSelect__result,
.chosen-container .chosen-results li{
    font-size: 14px;
    padding: 7px 20px 7px 10px;
    white-space: nowrap;
    cursor:pointer;
    color: #777777;
    line-height: 1.1;
}
.customSelect__result.selected,
.chosen-container .chosen-results li.highlighted,
.chosen-container .chosen-results li.result-selected{
    background: #f43140;
    color: #ffffff;
}
.customSelect__result.selected{

}
.customSelect .customSelect__drop{
    opacity:0;
    overflow: hidden;
    max-height: 0;
    transition: max-height .2s;
}
.customSelect--open .customSelect__drop{
    display: block;
    overflow:auto;
    max-height: 400px;
    opacity:1;
}


/* FORMS */
.form{

}
.form__field{
    display: block;
    margin-bottom: 15px;
}
.form__label{
    display: block;
    font-size: 14px;
    line-height: 14px;
}
.form__input{
    padding: 10px;
    margin-top: 5px;
}
.form__response{

}

/* GENERIC FORM STYLES */
/*--- Custom Checkbox --- */
.checkbox {
    display: block;
    cursor: pointer;
    position: relative;
    font-size: 1em;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.checkbox label{
    display: block;
    cursor: pointer;
}

/* Hide the browser's default checkbox */
.checkbox__input {
    position: absolute;
    left: -999999px;
    opacity: 0;
    -webkit-appearance: checkbox;
}
.checkbox__text-link{
    text-decoration: underline;
}

/* Create a custom checkbox */
.checkbox__checkmark,
.checkbox__text{
    vertical-align: middle;
    line-height: 1.2;
    font-size: 13px;
}
.checkbox__checkmark {
    position: relative;
    display: inline-block;
    height: 20px;
    width: 20px;
    background-color: #ffffff;
    cursor: pointer;
    transition: 0.2s all;
    margin-right: 5px;
    border-radius: 50%;
}
.checkbox__checkmark svg {
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    -o-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    fill: #424050;
    width: 75%;
    height: 75%;
    transition: 0.2s all;
}
#checkbox__textLink{
    text-decoration: underline;
}
.checkbox__label{
    cursor: pointer;
    display: table;
}
.checkbox__label > *{
    display: table-cell;
}

/* Show/hide the checkmark when checked */
.checkbox__checkmark svg{
    fill: #ffffff;
    display: none;
}
.checkbox__checkmark[class*='checkbox__checkmark--'] svg{
    display: none;
}
.checkbox input:not(:checked) ~ span .checkbox__checkmark svg {
    opacity: 0;
    -webkit-transform: translate(-50%, -50%) scale(0);
    -ms-transform: translate(-50%, -50%) scale(0);
    -o-transform: translate(-50%, -50%) scale(0);
    transform: translate(-50%, -50%) scale(0);
}
.checkbox input:checked ~ span .checkbox__checkmark svg {
    opacity: 1;
    -webkit-transform: translate(-50%, -50%) scale(1);
    -ms-transform: translate(-50%, -50%) scale(1);
    -o-transform: translate(-50%, -50%) scale(1);
    transform: translate(-50%, -50%) scale(1);
}

.checkbox__checkmark--bullet:before{
    content: '';
    border-radius: 50%;
    background: #f63440;
    top: 6px;
    left: 6px;
    bottom: 5px;
    right: 6px;
    position: absolute;
}
.checkbox input:not(:checked) ~ span .checkbox__checkmark--bullet:before {
    opacity: 0;
}
.checkbox input:checked ~ span .checkbox__checkmark--bullet:before {
    opacity: 1;
}
/*--- END Custom Checkbox --- */

.adminForm__errors {
    color: rgb(185, 74, 72);
    margin-bottom: 5px;
}
.adminForm__field.error input,
.checkbox__legal.error ~ span .checkbox__checkmark{
    border-color: rgb(185, 74, 72);
}

.adminForm__fieldset{
    display: block;
}
@media(min-width: 1000px){
    .adminForm__fieldset{
        display: grid;
        grid-template-columns: [start] 0.25fr [line2] 0.25fr [line3] 0.25fr [line4] 0.25fr [end];
        grid-column-gap: 10px;
    }
}
.adminForm__field>label{
    display: block;
}
.adminForm__field--fullRow{
    grid-column-start: start;
    grid-column-end: end;
}
.adminForm__field--col2to3{
    grid-column-start: line2;
    grid-column-end: end;
}
.adminForm__field--comments textarea{
    height: 100px;
}
.adminForm__field--subject>div{
    border: 1px solid #c3c3c3;
    border-right: none;
    background-color: #f4f4f4;
    color: #777777;
    padding: 15px 0 15px 15px;
    height: 50px;
    font-size: 14px;
    line-height: initial;
    white-space: nowrap;
}
.adminForm__field--subject select option:checked,
.adminForm__field--subject select{
    font-weight: bold;
}

.adminForm__field--subject select option:not(:checked){
    font-weight: normal;
}

.adminForm__field > label > .adminForm__field_title{
    margin-bottom: 8px;
    display: block;
    padding-left: 5px;
}
.adminForm__field_input{
    display: flex;
    align-items: center;
    background: #b1b1b1;
    color: #ffffff;
}
.adminForm__field_input span{

}
.adminForm__field_input_detail{
    padding: 0 10px;
}
.adminForm__field--border select,
.adminForm__field--border input,
.adminForm__field--border textarea{
    border: 1px solid #c3c3c3!important;
}
.adminForm__field--subject>select{
border-left: none!important;
padding-left: 5px;
}

.adminForm{
    color: #777777;
}
.adminForm__title{
    font-size: 18px;
    color: #333333;
    font-weight: 800;
    margin-bottom: 30px;
}
.adminForm__subtitle{
    margin-bottom: 20px;
}
.adminForm input,
.adminForm select,
.adminForm textarea,
.checkbox__checkmark{
    background-color: #f4f4f4;
    color: #777777;
    border: 1px solid #c8c8c8;
    padding: 10px;
}
.adminForm select{
    background-image: url(../img/arrow-down.png)!important;
}
.adminForm select option{
    color: #333333;
}
.adminForm select option:hover{
    background-color: #f63440;
}
.adminForm textarea{
    min-height: 100px;
}

.board input,
.board select,
.board textarea,
.board .checkbox__checkmark,
.board .adminForm__field--viewer>div{
    background-color: #ffffff;
}

/* Placeholder overrides */
.adminForm input::-webkit-input-placeholder,
.adminForm textarea::-webkit-input-placeholder { /* WebKit, Blink, Edge */
    color: rgba(255, 255, 255, 0.6);
    opacity: 0;
}
.adminForm input:-moz-placeholder,
.adminForm textarea:-moz-placeholder { /* Mozilla Firefox 4 to 18 */
    color: rgba(255, 255, 255, 0.6);
    opacity: 0;
}
.adminForm input::-moz-placeholder,
.adminForm textarea::-moz-placeholder { /* Mozilla Firefox 19+ */
    color: rgba(255, 255, 255, 0.6);
    opacity: 0;
}
.adminForm input:-ms-input-placeholder,
.adminForm textarea:-ms-input-placeholder { /* Internet Explorer 10-11 */
    color: rgba(255, 255, 255, 0.6);
    opacity: 0;
}   
.adminForm input::-ms-input-placeholder,
.adminForm textarea::-ms-input-placeholder { /* Microsoft Edge */
    color: rgba(255, 255, 255, 0.6);
    opacity: 0;
}

.adminForm a:not(.btn){
    font-weight: 800;
    color: #f63440;
}
.adminForm a.btn{
	color: #ffffff;
font-weight: normal;
}

.adminForm__field .has-error,
.adminForm__field.has-error{
    position: relative;
}

.adminForm__field .has-error:before,
.adminForm__field.has-error:before{
    position: absolute;
    top: -5px;
    left: -10px;
}

.adminForm__errors{
    color: #f53541;
    font-size: 13px;
}
/* .adminForm__field.has-error:before,
.adminForm__field .has-error:before,
.adminForm__errors p:before{
    content: '!';
    border: 1px solid #f53541;
    border-radius: 50%;
    height: 15px;
    line-height: 15px;
    width: 16px;
    display: inline-block;
    text-align: center;
    margin-right: 5px;
    background: #f53541;
    color: #ffffff;
    z-index: 1;
} */

.adminForm__field .has-error:before{
    bottom: 17px;
    top: auto;
    right: 10px;
    left: auto;
}
.adminForm .fn-lf-errors.show{
    margin: 20px 0 0;
    border-top: 1px solid #f53541;
    padding-top: 15px;
}
.adminForm__tabs{
    text-align: right;
    width: 100%;
}
a.adminForm__tab{
    padding: 20px;
    background: #333333;
    display: inline-block;
    color: #ffffff;
}
a.adminForm__tab:hover,
a.adminForm__tab--active{
    background: mediumseagreen;
}
.adminForm__field{
    display: block;
    margin-bottom: 15px;
}
.adminForm__field--edit_url > div{
    margin-top: 15px;
}
.adminForm__label{
    display:block;
    margin-bottom: 15px;
}
.adminForm__actions{
    margin-top: 30px;
    width: 100%;
}
.adminForm__actions .btn{
    display: block;
    width: 100%;
    color: #ffffff;
}
.adminForm__actions .btn:not(:last-child){
    margin-bottom: 10px;
}
@media(min-width:600px){
    .adminForm__field--edit_url{
        display: flex;
    }
    .adminForm__field--edit_url > label{
        width: 75%;
    }
    .adminForm__field--edit_url > div{
        width: 25%;
        margin-top: 30px;
        text-align: right;
    }
    .adminForm__actions .btn{
        display: initial;
        width: auto;
    }
    .adminForm__actions .btn:not(:last-child){
        margin: 0;
    }
}


.loginWrapper{
    position: fixed;
    top: 50%;
    left: 50%;
    -ms-transform: translate(-50%,-50%);
    -o-transform: translate(-50%,-50%);
    -moz-transform: translate(-50%,-50%);
    -webkit-transform: translate(-50%,-50%);
    transform: translate(-50%,-50%);
    width: 90%;
    width: calc(100% - 30px);
    text-align: center;
}
.loginWrapper>*{
    width: 100%;
}
.homeBackLogo{
    margin-bottom: 20px;
}
.homeBackLogo__logo{
    max-height: 150px;
    display: block;
    width: auto;
    max-width: 350px;
    margin: 0 auto 20px;
}
.homeBackLogo__title{
    font-size: 20px;
    font-weight: bold;
    display: none;
}

.loginBox{
    display: inline-block;
    padding: 40px 30px 15px;
    border: 1px solid #d2d2d2;
    box-shadow: 0 0 9px 0px rgba(0, 0, 0, 0.14);
}
.loginBox input{
    text-align: center;
    padding: 15px 10px;
    font-size: 18px;
}
.loginBox .adminForm__label{
    font-size: 20px;
}
.loginBox .adminForm__field{
    display: block;
    margin: 0 auto 25px;
}
.loginBox .adminForm__response{
    margin-top: 20px;
    color: red;
    font-size: 14px;
}
@media(min-width:600px){
    .homeBackLogo{
        margin-bottom: 40px;
    }
    .loginBox{
        padding: 40px 40px 20px;
        max-width: 350px;
    }
}

/* Default classes */
.head{
    background: #3db371;
    color: #ffffff;
}

.responses{
    margin-bottom: 30px;
    border: 2px solid #d2d2d2;
    background: #f7f7f7;
    font-size: 12px;
    padding: 10px 10px 10px 30px;
    line-height: 1.2;
}
.responses li{
    list-style: circle;
}
.responses li:not(:last-child){
    margin-bottom: 10px;
}

.responses--post{

}
.editInfo{
    font-size: 10px;
    color: #aaaaaa;
}
.editInfo > *:not(:last-child){
    margin-bottom: 5px;
}

/* BOARDS */

.board{
    margin-top: 20px;
    padding: 20px;
    border: 1px solid #d6d6d6;
    background: #f5f5f5;
}
.board__title{
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 20px;
    grid-column-start: start;
    grid-column-end: 5;
}
.board__title--small{
    font-size: 18px;
    margin-bottom: 15px;
}
.board--sourcelist{}

.sourceList{
    font-size: 12px;
    width: 100%;
    text-align: left;
}
.sourceList__header{
    font-size: 14px;
    font-weight: bold;
    border: 1px solid #3db371;
}
.sourceList__header th{
    padding: 10px;
    text-align: left;
}
.sourceList__item{
    border: 1px solid #c8c8c8;
    background: #ffffff;
    border-top: 0;
}
.sourceList__item--featured{
    font-weight: bold;
}
.sourceList__item--unpublished{
    color: red;
}
.sourceList__item:nth-child(even){
    background: #c8c8c8;
}
.sourceList__field{
    padding: 8px 10px;
    position: relative;
}
.sourceList__field a{
    text-decoration: underline;
}
.sourceList__field--name{}
.sourceList__field--url{}
.sourceList__field--noItem{
    text-align: center;
}
.sourceList__details{

}
.sourceList__details_box{
    padding: 20px;
    border: 1px solid #ffffff;
    border-radius: 3px;
    font-size: 16px;
}
.sourceList__details_title{
    font-size: 25px;
    font-weight: bold;
}
.sourceList__details_label{
    font-size: 20px;
    font-weight: bold;
}
.sourceList__details_content{
    margin: 8px 0;
}

/* FIELD LISTS STRUCTURE */
.adminForm__field--viewer{
    
}
.adminForm__field--viewer label{
    
}
.adminForm__field--viewer>div{
    position: relative;
    border: 1px solid #d6d6d6;
    background: #f4f4f4;
    padding: 10px;
    min-height: 75px;
}
.adminForm__field--viewer>div .media-selector-placeholder{
    position: absolute;
    top: 50%;
    left: 25px;
    color: #d44f4f;
    font-weight: 300;
    font-style: italic;
    font-size: 12px;
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 0;
}
.adminForm__field--viewer>div .media-selector-link{
    position: absolute;
    top: 50%;
    left: 25px;
    -moz-transform: translateY(-50%);
    -o-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    transform: translateY(-50%);
    z-index: 0;
    color: #3cb371;
    font-size: 16px;
}
.adminForm__field--viewer>div div{
    position: absolute;
    top: 20px;
    right: 20px;
    z-index: 2;
}
.adminForm__field--viewer>div button{
    margin-left: 5px;
}
.adminForm__field--viewer>div img{
    position: relative;
    z-index: 1;
}

/* BOARD - NAMING */
.naming{

}
.naming__title{

}
.naming__resume{
    margin-top: 25px;
    padding-left: 20px;
}
.naming__list li > *{
	display: inline-block;
}
.naming__list li > a{
	max-width: 15%;
}
.naming__list li > span{
	max-width: 75%;
}
