body{
    /*the font-family wasn't set to the body element but gets applied multiple times to every ui element, which could be removed over the working progress */
    font-family: 'Source Sans Pro', Arial, Helvetica, sans-serif;
}
#body {
	text-align:center;
}
a{
    color: #065da6;
    cursor: pointer;
}
hr{
    border-color: #e5e5e5;
}

/*new button colors */
.button,
.btn-primary,
.btn-red,
.btn-green{
    color: #fff;
    padding: 10px;
    border-width: 0px;
    cursor: pointer;
    border-radius: 2px;
    letter-spacing: 1px;
    font-weight: 200;
    font-size: 1em;

    -webkit-transition: all ease-in-out 0.2s;
    -moz-transition: all ease-in-out 0.2s;
    -ms-transition: all ease-in-out 0.2s;
    -o-transition: all ease-in-out 0.2s;
    transition: all ease-in-out 0.2s;
}
.modal-dialog .btn-default {
    padding: 10px;
    border-radius: 2px;
}
.breadcrumb  .btn-primary{
    padding: 4px 12px;
}


.btn:focus{
    outline: 0!important;
}
.button,
.btn-primary {
    background-color: #065da6;
}
.button:hover,
.button:focus,  
.btn-primary:hover,
.btn-primary:focus{
    color: #fff;
    background: #00539c;
    outline:none!important;
}
.button-red,
.btn-red {
    background-color: #cb3d35;
}
.button-red:hover,
.button-red:focus,
.btn-red:hover,
.btn-red:focus{
    color: #fff;
    background-color: #c1332b;
    outline:none!important;
}
.button-green,
.btn-green {
    background-color: #50aa38;
}
.button-green:hover,
.button-green:focus,
.btn-green:hover,
.btn-green:focus{
    color: #fff;
    background: #46a02e;
    outline:none!important;
}

.btn-primary.icon i,
.btn-green.icon i,
.btn-red.icon i{
    margin-right: 8px;
    vertical-align: baseline;
}

.btn.disabled,
.btn[disabled]{
    background: #cccccc;
    cursor: default;
}
.btn-primary.disabled.focus, .btn-primary.disabled:focus, .btn-primary.disabled:hover, .btn-primary[disabled].focus, .btn-primary[disabled]:focus, .btn-primary[disabled]:hover, fieldset[disabled] .btn-primary.focus, fieldset[disabled] .btn-primary:focus, fieldset[disabled] .btn-primary:hover {
    background-color: #cccccc;
    border-color: none;
}


/*new button colors */


.backstretch img{
    width: auto!important;
    height: auto!important;
    left: 50%!important;
    top: 34px!important;
    margin-left: -166px!important;
}
body.body-own.body-login{
    height: auto;
}
.loginWrapper{
    position: absolute;
    width: 100%;
    max-width: 400px;
    height: auto;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    padding: 40px 30px;
    background: #fff;
    box-shadow: 0 0 30px 0 rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    text-align: center;
}
.loginWrapper .loginlogo{
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 30px;
    padding: 0 20px;
}
.loginWrapper #login{
    color: #000000;
    width: 100%;
    height:	auto;
    text-align: center;
    z-index: 2;
}

#loginmask, #maintenance {
    color: #000000;
    z-index: 2;
    position: relative;
}

#loginmask h1,
#maintenance h1{
	text-transform: uppercase;
	font-size: 30px;
	font-weight: 200;
    text-align: center;
}

#loginmask form {
    margin-top: 15px;
}

#loginmask input[type="password"],
#loginmask input[type="text"]{
	padding: 15px;
	font-size: 16px;
	color: #474747;
    margin-bottom: 15px;
    margin-top: 6px;
    width: 100%;
    z-index: 2;
    position: relative;
}

#loginmask button#submit {
	cursor: pointer;
    padding: 15px;
    margin-top: 6px;
    width: 100%;
}
#loginmask button#submit[disabled=disabled] {
    background-color: darkgrey;
    cursor: default;
}
#loginmask button#submit .glyphicons{
    font-size: 1.3em;
}
.back2MyleadButton{
    display: inline;
}
.back2MyleadButton i{
    font-size: 10px;
    vertical-align: initial;
}

a.back2MyleadButton {
    cursor: pointer;
    white-space: nowrap;
}
.linkHolder {
    margin-top: 10px;
    text-align: center;
}
.linkHolder span{
    margin: 0 10px;
    color:#757f84;
}
.forgotPassword{
    width: 100%;
    text-align: right;
    margin-top: 10px;
    font-weight: 300;
    display: block;
}
.instruction{
    margin-top: 8px;
}
.invalid{
    border: 1px solid #cb3d35;
}
.warning{
    color: #cb3d35;
    width: 100%;
    margin: -6px 0 15px;
    font-size: 0.9em;
    text-align: right;
    z-index: 1;
}

/* Animation for login/password responses*/
.animated {
    -webkit-animation-duration: 0.3s;
    animation-duration: 0.3s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    /*-webkit-animation-delay: 0.3s;*/
    /*animation-delay: 0.3s;*/
    animation-iteration-count: 1;
}
@-webkit-keyframes slideInDown {
    from {
        -webkit-transform: translate3d(0, -180%, 0);
        transform: translate3d(0, -180%, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
@keyframes slideInDown {
    from {
        -webkit-transform: translate3d(0, -180%, 0);
        transform: translate3d(0, -180%, 0);
        visibility: visible;
    }
    to {
        -webkit-transform: translate3d(0, 0, 0);
        transform: translate3d(0, 0, 0);
    }
}
.slideInDown{
    -webkit-animation-name: slideInDown;
    animation-name: slideInDown;
}
/* ===== */

.response{
    width: auto;
    margin: 20px 30px;
    padding: 5px 8px;
    text-align: center;
    z-index: 1;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}
.positive{
    color: #50aa38;
    border: 1px solid #50aa38;
}
.negative{
    border: 1px solid #cb3d35;
    color: #cb3d35;
}

#maintenance {
    text-align: center;
    padding-top: 40px;

}

#maintenance h1{
    margin-left: 0px;
}

#maintenance p{
    color: #ffffff;
    margin: 18px 34px;
}

#maintenance_icon{
    position: absolute;
    margin-top: -150px;
    margin-left: -200px;
    padding-top: 34px;
    top: 50%;
    left: 50%;
    background: url("/media/images/maintenance.svg");
    background-size: 200px 235px;
    background-position-x: 50%;
    background-position-y: 50%;
    background-repeat: no-repeat;
    width: 400px;
    height: 270px;
    z-index: 1;
    opacity: 0.3;
}

.settings-frame-button {
	width: 100%;
}

.settings-frame-select {
	width: 100%;
}

.fullscreen-loader {
	position: fixed;
	top: 0;
	left: 0;
	right: 0;
	bottom: 0;
	background-color: rgba(0, 0, 0, 0.3);
	z-index: 1000;
}

.fullscreen-loader > img {
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -16px;
	margin-top: -16px;
	width: 31px;
	height: 31px;
}

.fullscreen-loader > .progress{
    position: absolute;
    left: 50%;

    transform: translateX(-50%);
    color: #f6f6f6;
    top: 60%;
    width: 60%;
}
.fullscreen-loader .progress-status-info,
#uploadContainer .progress-status-info{
    position: absolute;
    color: #cccccc;
    width: 100%;
    left: 50%;
}
.fullscreen-loader > .progress .progress-bar{
    -webkit-transition: width ease;
    -o-transition: width ease;
    transition: width ease;
}


/*this is the container that makes the green buttons within the main div appear centered*/
.centeredButtonContainer{
	margin: 0 auto;
	height: 100%;
	box-sizing: border-box;
	text-align: center;
	position: relative;
	display: block;
	padding-top: 25%;
}

div#uploadContainer input[type="file"]#import{
	display: none;
}
div#uploadContainer label{
	width: 150px;
	display: block;
	background: #065da6;
	padding: 10px;
    text-align: center;
	color: #fff;
	border-radius: 2px;
	letter-spacing: 1px;
	font-weight: 200;
	cursor: pointer;
}
#uploadContainer .fileList{
	margin-top: 30px;
}
#uploadContainer .fileList .fileName{
	width: auto;
	max-width: 30px;
	overflow: hidden;
}
#uploadContainer progress[value]{
	-webkit-appearance: none;
	-moz-appearance: none;
	-ms-appearance: none;

	appearance: none;
	height: 10px;
	width: 368px;
}
#uploadContainer div.progress {
	background-color: #eee;
	border-radius: 2px;
	height: 20px;
    width: 40%;
}

div.progress-bar{
	background-color: #065da6;
    height:22px!important;
    position: relative;
}


/* Feedback generator */

.feedbackGenerator:hover .gridster {
    opacity: 1;
}

#event-tabs {
	width: 100%;
	min-height: 350px;
    max-width: 1070px;
}

#feedback-links {
    width: 45%;
    display: inline-block;
    vertical-align: top;
    padding-bottom: 20px;
}

#feedback-links a {
	display: inline-block;
	text-decoration: none;
}

#feedback-links a.selected {
	display: inline-block;
	text-decoration: underline
}

#feedback-details {
    display: inline-block;
    width: 54%;
}

#feedback-details img {
    width: 100%;
}
.gridster {
    width: 1024px;
    /* margin: 0 auto; */

    opacity: .8;

    -webkit-transition: opacity .6s;
    -moz-transition: opacity .6s;
    -o-transition: opacity .6s;
    -ms-transition: opacity .6s;
    transition: opacity .6s;
    background: #02205A;
}

.gridster .gs_w {
	background-color: #02205A;
    cursor: pointer;
    -webkit-box-shadow: 0 0 10px rgba(255,255,255,0.3);
    box-shadow: 0 0 10px rgba(255,255,255,0.3);
}

.gridster .player {
    -webkit-box-shadow: 3px 3px 5px rgba(0,0,0,0.3);
    box-shadow: 3px 3px 5px rgba(0,0,0,0.3);
}

.gridster .gs_w.try {
    background-image: url(../img/sprite.png);
    background-repeat: no-repeat;
    background-position: 37px -169px;

}

.gridster .input {
	background-color: #345D91;
	border: none;
	width: 99%;	
}

.gridster li.multibutton .input {
	background-image: url("/media/images/feedback_form_button_bg.png");
	background-repeat: no-repeat;
	background-color: inherit;
	color: #345D91;
	text-align: center;
	line-height: 40px;
}

.gridster [data-sizey="1"] .input {
	height: 40px;
}

.gridster [data-sizey="2"] .input {
	height: 122px;
}

.gridster li {
	color: #eee;
	background-color: #02205A;
	padding: 5px
}

.gridster li label {
	display: inline-block;
	min-width: 100px;
	min-height: 20px;
}

.gridster .preview-holder {
    border: none!important;
    border-radius: 0!important;
    background: rgba(255,255,255,.2)!important;
}

#selectButtonAddEmployeesDialog select {
    width: 515px;
    height: 350px;
    background-image: none;
    overflow: scroll;
}

button#selectButtonAdd[disabled], button#selectButtonRem[disabled] {
    background: #808080;
    cursor: default;
}

.textfield {
	cursor: move;
}

a.user-for-shared-event {
    text-decoration: none;
}

#input-file {
    display: none;
}

#button-file {
    color: #fff;
    height: 34px;
    overflow: hidden;
    color: #fff;
    background: #065da6;
    outline: none;
    margin-right: 4px;
    margin-bottom: 4px;
    background-position-x: 98%;
    border-radius: 2px;
    float: left; position:
    relative;
    cursor: pointer;
    border: none;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -o-border-radius: 2px;
    border-radius: 2px;
}

#button-file:active {
    background: #065da6;
}

#button-file:hover {
    cursor: pointer;
}


input.uplicate-slide-element-button settings-frame-button[type="button"] {
    width: 240px;
    height: 34px;
    overflow: hidden;
    color: #fff;
    background: #065da6;
    outline: none;
    margin-right: 4px;
    margin-bottom: 4px;
    background-position-x: 98%;
    border-radius: 2px;
    position: relative;
    cursor: pointer;
    border: none;
}


.feedbackGenerator .fieldButtons{
    position: absolute;
    right: 8px;
    top: 3px;
}

#settingsBoxForm label.error  {
    color: #cb3d35;
    font-size: 10pt;
    padding-left: 5px;
}

/*** Sharing ***/
#presentationWrapper h3,
#eventWrapper h3,
#event h3,
#main h3,
.feedbackGenerator h3,
#fileManagerView h3,
#employeeContainer h3 {
    margin-bottom: .3em;
    font-weight: normal;
    margin-top: 0;
}

#presentationWrapper, #eventWrapper {
    display: inline-block;
    clear: both;
    float: left;
}

.ui-selected {
  background-color: #999;
}

.ui-selecting {
  background-color: #e2e2e2;	
}

UL#selectButtonItems LI {
  font-size: 25px;
  margin-bottom: 2px;
  padding-left: 30px;
  
}

.lead-date {
    font-weight: bold;
    margin-top: 5px;
    margin-bottom: 5px;
}

/*      employee management     */

#employeeContainer tr{
    border: none;
}
.form-control{
    height: 34px;

}
.form_signature textarea{
    height: 150px;

}
.modal{
    background-color: rgba(0,0,0, 0.4);
    position: fixed;
    /*other browsers than ie will ignore the vendor and use fix*/
    position: -ms-page;
}
.modal-dialog{
    margin-top: 70px;
}

.modal-dialog .modal-content {
    height: auto;
    max-height: 720px;
    overflow: scroll;
}
.modal-dialog .modal-body {
    overflow: scroll;
    max-height: 580px;
}
.modal-dialog .modal-title{
    font-weight: 600;
}

.pagination > .active > a,
.pagination > .active > span,
.pagination > .active > a:hover,
.pagination > .active > span:hover,
.pagination > .active > a:focus,
.pagination > .active > span:focus{
    background-color: #065da6;
    border-color: #065da6;
}
.pagination > li > a,
.pagination > li > span{
    color: initial;
}
.pagination > li > a:hover,
.pagination > li > span:hover,
.pagination > li > a:focus,
.pagination > li > span:focus{
    color: #000000;
}

form *{
    -webkit-box-sizing: border-box;
}

.table_button{
    width: 40px;
}
#employeeContainer .icon-remove,
#employeeContainer .icon-pencil,
#employeeContainer .icon_check,
#employeeContainer .icon_keys{
    font-size: 16px;
    color: #000;
    background-color: transparent;
    width: 40px;
    padding: 0px;
    height: 100%;
}

form.clicked input.ng-invalid{
    border-color: #cb3d35;
}

#employeeContainer tr.updated {
    background-color: #cbffa8;
}

.employee-table {
    padding-right: 100px;
    width: 100%;
}


.delta-token {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 200px;
}


/*
angular-filemanager custom css
*/

#angular-main{
    height: calc(100% - 22px);
    display: block;
}
#fileManagerView,
#fileManagerView .modal-dialog.file-manager,
#fileManagerView .modal-content.file-manager,
#fileManagerView .modal-body.file-manager,
angular-filemanager,
angular-filemanager .file-manager,
angular-filemanager .file-manager .main{
    height: 100%;
    display: block;
}
.file-manager-body{
    max-height: calc(100% - 85px);
    overflow-y: scroll;
}
.file-manager-body table{
    border: 1px solid #e2e2e2;
    margin-bottom: 0;
}
angular-filemanager nav.navbar {
    display: none !important;
}

angular-filemanager .row .main {
    margin-left: 0;
}
.file-tree ul.nav.nav-sidebar {
    margin: 0;
    padding: 0;
    padding-left: 12px;
}

.file-tree ul.nav.nav-sidebar > li {
    border-left: 1px solid #ddd;
    padding-left: 4px;
}

.file-tree ul.nav.nav-sidebar > li > a {
    padding: 2px 2px 2px 4px;
}

.file-tree ul.nav.nav-sidebar:first-child {
    padding-left: 0;
}

.file-tree ul.nav.nav-sidebar.file-tree-root > li {
    border-left: none;
    padding-left: 0px;
}

/* =============== FILE MANAGER AND MODAL POPUPS =============== */


.modal.fade.in{
    background-color: rgba(0,0,0,0.4);
    padding: 0!important;
}
/*list of owncloud data*/
.modal-footer{
    position: relative;
}
.choseFile {
    height: auto;
    max-height: calc(100% - 60px);
}
.choseFile .modal-content{
    overflow: hidden;
}
.choseFile .modal-body{
    max-height: calc(100% - 110px);
    height: auto;
    overflow: hidden;
}
.choseFile .modal-body .file-manager-body{
    overflow: scroll;
    height: 440px;
}
.choseFile .modal-body angular-filemanager{
    max-height:100%;
    height: auto;
    overflow: hidden;
    display: block;
    width:100%;
}
.choseFile .modal-body angular-filemanager .scrollList{
    max-height:500px;
    height: auto;
    overflow-y: scroll;
    display: block;
    width:100%;
}
.choseFile .upload{
    position: absolute;
    left: 15px;
    font-size: 14px;
}
.choseFile .upload i{
    font-size: 18px;
    vertical-align: sub;
    margin-right: 5px;
}

ol.breadcrumb{
    overflow: auto;
    padding: 15px 15px 5px 15px;
    margin-bottom: 0;
    border-bottom-left-radius: 0;
    border-bottom-right-radius: 0;
    /*border-bottom: 1px solid #e2e2e2;*/
}
.breadcrumb .glyphicon:before,
.breadcrumb span .glyphicon:before{
    padding-right: 5px;
}
.breadcrumb .back-btn {
    margin-right: 30px
}
.breadcrumb .back-btn .glyphicon:before{
    padding-right: 0;
}
.breadcrumb ul.file-actions button{
    width: 145px;
    padding: 5px 10px;
    text-align:center;
}
.breadcrumb span.dotty{
    margin-left: -6px;
}
.breadcrumb ul.file-actions button i.glyphicon {
    vertical-align: baseline;
}
.breadcrumb ul.file-actions button i.glyphicon:before {
    padding-right: 0px;
}
.breadcrumb ul.file-actions{
    float: right;
    margin: -5px 0 0 0;
}
.modal .breadcrumb ul.file-actions button,
.modal .searchbar button{
    width: 220px;
}
.modal .searchbar input {
    width: calc(100% - 230px);
}

.breadcrumb ul.file-actions button.upload{
    margin-left: 10px;
}
/* ===============       Search       =============== */

.searchbar{
    overflow: auto;
    background-color: #f5f5f5;
    padding: 5px 15px 15px 15px;
    position: relative;
}
.searchbar input,
.searchbar button{
    padding: 5px 10px;
}
.searchbar input{
    display: inline-block;
    float: left;
    width: calc(100% - 310px);
}
.searchbar input:focus{
    outline: 1px solid #337ab7;
    box-shadow: none;
}
.searchbar button{
    display: inline-block;

    margin-left: 10px;
    width: 300px;
    border: 1px solid transparent;
}
.table.table-files th,
.table.table-files td{
    padding: 7px 15px;
}
.table.table-files>tbody>tr>td{
    vertical-align: middle;
}

/* =============== OVERLAY IM OVERLAY =============== */
.modal-open .modal-body .modal,
#imagepreview{
    overflow: visible;
}
#imagepreview img{
    max-width: 100%;
    max-height: 550px;
}
#information-target {
    width: 50%;
}
#information ul{
    margin-top: 10px;
}

#information li{
    list-style: initial;
    cursor: pointer;
}

svg.spinner-container{
    width:70px;
    height:70px;
    display: block;
    margin: auto;
}
#fileManagerView .modal-dialog{
    margin-top: 100px;
}

#fileManagerView .modal-content.file-manager{
    width: 100%;
    margin: 0;
    border: 0 #fff solid;
    box-shadow: none;
    height: 100%;
    max-height: none;
}

.breadcrumb>li+li.pull-right:before{
    content: '';
}

#fileManagerView .modal-dialog.file-manager{
    width: 100%;
    margin: 0;
    height: calc(100% - 33px);
}
#fileManagerView .modal-body.file-manager{
    width: 100%;
    margin: 0;
    height: 100%;
    max-height: initial;
    padding:15px 0;
}

/* =============== DRAG N DROP AREA =============== */

#uploadfile input[type="file"],
#uploadfile input[type="file"]:FOCUS{
    width: 100%;
    border: 2px solid silver;
    outline: none;
    color: #333333;
    background-color: transparent;
    margin: 0;
    height: 40px;
    display: none;
}
#uploadfile label{
    padding-top: 10px;
    padding-bottom: 10px;
}
.btn.btn-marg{
    display: block;
    margin: 10px 0;
}
#uploadfile ol{
    padding-left: 15px;
    max-height: 500px;
    overflow-y: scroll;
}
#uploadfile ol li{
    list-style-type: decimal;
}




/* =============== END FILE MANAGER AND MODAL POPUPS =============== */



/*
bugfixing
*/

.modal-backdrop {
    position: inherit !important;
}
.modal-body .clearfix {
    padding-top: 20px;
}

.presentationStyleCB {
    margin-right: 8px !important;
}

#coordinatesLabel,
.separationSpace {
    font-size: 14px;
    font-weight:normal !important;
}

a {
    text-decoration: none !important;
}


/* =============== key tags management =============== */
#presentationKeywordModal .modal-content,
#userKeywordModal .modal-content{
    height: auto;
    max-height: none;
    overflow: visible;
}
#presentationKeywordModal .modal-body,
#userKeywordModal .modal-body{
    overflow: visible;
    max-height: none;
}

.keywordsManagement table{
    width: 100%;
}
.keywordsManagement thead{
    font-weight: 600;
}
td#empty{
    visibility: hidden;
    padding-top: 0px;
    padding-bottom: 0px;
}
.keywordsManagement td {
    padding: 8px;
}
.keywordsManagement td.keyGroup,
.keywordsManagement td.keyLinks{
    width: 50%;
    vertical-align: top;
}
.keywordsManagement td.keyGroup {
    vertical-align: middle;
}
.keywordsManagement h4{
    margin-top: 20px;
    margin-left: 8px;
}
#directAccessEvents>div, #directAccessPresentation>div{
    margin-top: 10px;
}
tags-input .tags {
    background: none;
    border: none;
    box-shadow: none;
}
tags-input .host{
    margin: 0px;
}
tags-input .tags.focused,
tags-input .tags:focus{
    /*box-shadow: none;*/
}
tags-input .tags .tag-item {
    border: 1px solid #cccccc;
    background: #ffffff;
    color: inherit;
    height: auto;
    padding: 4px 10px;
    margin: 1px;
    font-family: Arial;
    cursor: default;
}
tags-input .tags .input {
    background: none;
    border-radius: 2px;
    color: #000000;
    height: auto;
    line-height: 25px;
    padding: 4px;
    font-family: Arial;
}
tags-input .tags .input::-webkit-input-placeholder{
    color: #999;
}
tags-input .tags .tag-item.selected,
tags-input .tags .tag-item.selected .remove-button{
    color: #ffffff;
    background: #cb3d35;
}
tags-input .autocomplete {
    margin-bottom: 10px;
    margin-top: 0px;
    /*position: fixed;*/
    width: auto;
    min-width: 39%;
}
tags-input .autocomplete .suggestion-item.selected,
tags-input .autocomplete .suggestion-item.selected em{
    background-color: #065da6;
}
tags-input .tags .tag-item .remove-button:active {
    color: #cb3d35;
}
.keyLinkGroup:nth-child(n+2){
    padding-top: 4px;
}
.keyLinkGroupTitle{
    display: inline-block;
    font-weight: 600;
    padding-right: 6px;
}
.keyLink{
    width: auto;
    position: relative;
    display: inline-block;
}
.keyLink:last-child .comma{
    display: none;
}
button.btn.icon-remove {
    background: none;
    height: 100%;
}
.btn.addKeygroup{
    width: 100%;
    background: none;
    padding: 16px;
    padding-right: 20px;
    border-radius: 0px 0px 2px 2px;
}
.btn.addKeygroup:hover {
    background: #e2e2e2;
}
.btn.addKeygroup::before{
    float: right;
}

/* ===== TinyMCE styles ===== */
.tox-toolbar-overlord {
    left: 380px !important;
    top: 1px !important;
    position: fixed !important;
    width: 720px !important;
    border-width: 0;
}

.tox .tox-edit-area__iframe {
    background: transparent !important;
}

.tox-tinymce {
    border: none !important;
}

.angular-ui-tree-handle {
    background: #f8faff;
    border: 1px solid #dae2ea;
    color: #7c9eb2;
    padding: 10px 10px;
}

.angular-ui-tree-handle:hover {
    color: #438eb9;
    background: #f4f6f7;
    border-color: #dce2e8;
}

.angular-ui-tree-placeholder {
    background: #f0f9ff;
    border: 2px dashed #bed2db;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

tr.angular-ui-tree-empty {
    height:100px
}

.group-title {
    background-color: #687074 !important;
    color: #FFF !important;
}


/* --- Tree --- */
.tree-node {
    border: 1px solid #dae2ea;
    background: #f8faff;
    color: #7c9eb2;
}

.nodrop {
    background-color: #f2dede;
}

.tree-node-content {
    margin: 10px;
}
.tree-handle {
    padding: 10px;
    background: #428bca;
    color: #FFF;
    margin-right: 10px;
}

.angular-ui-tree-placeholder {
    background: #f0f9ff;
    border: 2px dashed #bed2db;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}



.flex{
    display: flex;
    align-items: center;
    padding: 0;
    margin: 0;
}

/* ===== Portfolios ===== */

/* Page Structure */

.page.portfolio{
    height: 100%;
    overflow: scroll;
}
.portfolio .main{
    margin-bottom: 15px;
}
.portfolio .header,
.portfolio .footer{
    position: absolute;
    z-index: 100;
    background: #fafafa;
    width: 100%;
}
.portfolio .header{
    top: 0;
    padding: 15px 0;
    border-bottom: 1px solid #e5e5e5;
}
.portfolio .footer{
    bottom: 0;
    /*padding: 10px;*/
    margin: 0 -15px;
    border-top: 1px solid #e5e5e5;
}
.portfolio .footer button.btn-default {
    background: transparent;
}
.portfolio .footer button.btn-default:hover {
    background: inherit;
}

.portfolio .content{
    padding: 80px 0 40px;
}

/* Form definition */

.portfolio .footer button{
    border-radius: 0;
    flex: 1;
    border: none;
    height: 40px;
}
.portfolio label{
    display: block;
}
.portfolio select{
    color: initial!important;
    font-weight: initial;
}
.portfolio #category .input-container{
    display: inline-block;
    width: calc(100% - 58px);
}
.portfolio #category img{
    display: inline-block;
    padding-left: 10px;
    padding-bottom: 6px;
    vertical-align: bottom;
    max-height: 32px;
    max-width: 48px;
    box-sizing: content-box;
}

/* Portfolio Structure */

.tree-node,
.tree-node:hover {
    color: initial;
    background: transparent;
    border: none;
    border-bottom: 1px solid #e5e5e5;
}
.tree-node:hover {
    background: #fafafa;
}
.tree-node.head {
    display: flex;
    cursor: initial!important;
}
.tree-node.head:hover {
    background: #fafafa;
}
.tree-node.head .title {
    flex: 1;
    display: flex;
    align-items: center;
}
.tree-node.head .title {
    font-size: 16px;
}
.tree-node.head .title:before {
    content: url("/media/images/folder-s.svg");
    margin-top: 4px;
}

.tree-node.head .actions {
    display: inline-block;
    flex-grow: 0;
    color: initial;
}
li.angular-ui-tree-node > ol > li .tree-node-content .title{
    font-size: 14px!important;
}

.tree-node-content {
    display: flex;
    align-items: center;
    margin: 0;
    padding: 5px 10px;
}
.presentation .tree-node-content{
    cursor: pointer;
}

.tree-node-content input {
    min-width: 250px;
    padding: 6px 8px;
    box-shadow: none;
    border: none;
    background: transparent;
}
.tree-node-content .name{
    margin: 0;
    flex: 1;
}
.tree-node-content input:hover,
.tree-node-content input:focus{
    background: #f0f0f0;
}