/*!
 * Tocco Business Framework, Standard CMS Styles
 *
 * Copyright Tocco AG
 *
 */

/* Basic Layout
-------------------------------------------------- */

html,
body {
    height: 100%;
    font-weight:300 !important;
    font-family: 'Open Sans', Helvetica, Arial, SANS-SERIF;
    font: 'Open Sans', Helvetica, Arial, SANS-SERIF;
    /* The html and body elements cannot have any padding or margin. */
}

/* Wrapper for page content to push down footer */
#wrap {
    min-height: 100%;
    height: auto;
    /* Negative indent footer by its height */
    margin: 0 auto -450px;
    /* Pad bottom by footer height */
    padding: 0 0 450px;
}

.header{
    background-color: whitesmoke;
    margin-bottom:20px;
}

/* Set the fixed height of the footer here */
.footer {
    margin-top:60px;
    height: 450px;
    color:#ccc;
}

.footer .container{
    border-top:solid 1px #eee;
}

.logo img{
    margin-bottom:20px;
    padding:20px;
    background:#fff;
}

.topnav{
    margin-top:10px;
}

h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
    font-weight: 300;
}

/*----------------------------*/
/* Navbar
/*-----------------------------*/

.navbar{
    background-color: whitesmoke;
    border-color: #ddd;
}

.navbar-nav .level3 > li a{
    display: block;
    padding: 3px 20px 3px 40px;
    clear: both;
    font-weight: normal;
    line-height: 1.428571429;
    color: #333333;
    white-space: nowrap;
}

.navbar-nav .level3 > li a:hover{
    color: #262626;
    text-decoration: none;
    background-color: #f5f5f5;
}

.navbar-form .form-control {
    display: auto;
}

/*----------------------------*/
/* Subnav
/*-----------------------------*/

.subnav .level2 a{
    padding-left:20px;
}

.subnav .level3 a{
    padding-left:40px;
}

.subnav .level4 a{
    padding-left:60px;
}

.subnav .active{
    font-weight:400;
}

/*----------------------------
    STANDARD WIDGETS
-----------------------------*/


/*----------------------------*/
/* Sitemap*/
/*-----------------------------*/

.sitemap a{
    display:block;
}

.sitemap .level1 li a{
    border-bottom:1px solid #eee;
    display:block;
    margin-bottom:10px;
}

.sitemap .level2{
    margin-left:20px;
}

.sitemap .level2 li a{
    border-bottom:1px solid #eee;
    margin-bottom:0px;
}

/*----------------------------
    Image Gallery
-----------------------------*/

.imagegallery{
    display:table;
    margin:0 auto;
}

.imagegallery a{
    width:120px;
    height:120px;
    display:inline-block;
    border-radius:2px;
    margin: 6px 6px 65px;
    position:relative;
    text-decoration:none;
    background-position:center center;
    background-repeat: no-repeat;
    background-size:cover;
    -moz-background-size:cover;
    -webkit-background-size:cover;
    max-width: 100%;
    text-align:center;
}

.imagegallery a:before{
    bottom: -136px;
    content: attr(title);
    max-width: 120px;
    position: relative;
    font-weight:normal;
    background:#fff;
    vertical-align: top;
    display:table;
    text-align: center;
    font-size:12px;
    margin-left:auto;
    margin-right:auto;
}

/*----------------------------*/
/*E-Mail form*/
/*-----------------------------*/
input.form-control{
    padding: 6px 12px !important;
    border: solid 1px #eee;
    font-size: 18px;
}


/*----------------------------*/
/* Carousel */
/*-----------------------------*/

/* Carousel base class */
.carousel {
    height: 300px;
    margin-bottom: 60px;
}
/* Since positioning the image, we need to help out the caption */
.carousel-caption {
    z-index: 10;
}

/* Declare heights because of positioning of img element */
.carousel .item {
    height: 300px;
    background-color: #777;
}
.carousel-inner > .item > img {
    position: absolute;
    top: 0;
    left: 0;
    min-width: 100%;
    height: 300px;
}

.carousel-inner, .carousel-control{
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
}

.carousel-caption,
.carousel-caption h1,
.carousel-caption h4{
    color:#fff;
}

@media (min-width: 768px) {
    /* Bump up size of carousel content */
    .carousel-caption p {
        margin-bottom: 20px;
        font-size: 21px;
        line-height: 1.4;
    }
}

/* Transition speed */
.carousel-inner > .item {
    -webkit-transition: 1s ease-in-out left;
    -moz-transition: 1s ease-in-out left;
    -o-transition: 1s ease-in-out left;
    transition: 1s ease-in-out left;
}

.carousel-caption {
    position: relative;
    right: 15%;
    bottom: 20px;
    left: 15%;
    z-index: 10;
    padding-top: 20px;
    padding-bottom: 20px;
    color: #ffffff;
    text-align: center;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.6);
}

/*----------------------------*/
    /*Buttons*/
/*-----------------------------*/
.btn-primary {
    color: white;
    text-shadow: 0 -1px 0 rgba(0, 0, 0, 0.25);
    background-color: #9A182B;
    background-image: -moz-linear-gradient(top,#d4203b,#9A182B);
    background-image: -webkit-gradient(linear,0 0,0 100%,from(#d4203b),to(#9A182B));
    background-image: -webkit-linear-gradient(top,#d4203b,#9A182B);
    background-image: -o-linear-gradient(top,#d4203b,#9A182B);
    background-image: linear-gradient(to bottom,#d4203b,#9A182B);
    background-repeat: repeat-x;
    border-color: #9A182B #9A182B #d4203b;
}

.btn-primary:hover, .btn-primary:active, .btn-primary.active, .btn-primary.disabled, .btn-primary[disabled] {
    color: white;
    background-color: #9A182B;
}

/*----------------------------*/
    /*Lists*/
/*-----------------------------*/
/*ul, ol {*/
    /*padding: 0;*/
    /*margin: 0 0 10px 0px;*/
/*}*/


/*.element .text ol li{*/
    /*list-style-type:decimal;*/
    /*list-style-position:inside;*/
/*}*/


/*.element .text ul li{*/
    /*list-style-type:none;*/
    /*background: url(/cms/img/bullet.png) no-repeat 0px 10px;*/
    /*padding-left:1em;*/
    /*margin-left:20px;*/
    /*overflow:hidden;*/
/*}*/




/*----------------------------*/
    /*Downloadfolder*/
/*-----------------------------*/

/*ul.folder{*/
    /*margin-left:0px;*/
/*}*/

/*li.file{*/
    /*overflow:hidden;*/
    /*margin-left:0px;*/
    /*list-style-type:none;*/
/*}*/

/*span.mimetype{*/
    /*height:16px;*/
    /*width:16px;*/
    /*background-repeat:no-repeat;*/
    /*padding:0;*/
    /*margin:2px;*/
    /*margin-right:6px;*/
    /*float:left;*/
/*}*/

/*a.filelink{*/
/*}*/

/*span.filesize{*/

/*}*/

/*----------------------------*/
   /*Google Maps &  other fixed width elements*/
/*-----------------------------*/

/*iframe,*/
/*.jwplayer object{*/
    /*width:100% !important;*/
/*}*/



/*------------------------------------------------------------------------------------------------------*/

/**
    *  PUBLIC FLOWS
    */

/* Set font to ALL items*/
.ext-el-mask-msg div,
.x-tab-strip span.x-tab-strip-text,
.x-form-field,
.x-form-grow-sizer,
.x-form-item,
.x-form-invalid-msg,
.x-small-editor .x-form-field,
.ext-webkit .x-small-editor .x-form-field,
.x-fieldset legend,
.x-btn,
.x-btn button,
.x-toolbar td,.x-toolbar span,.x-toolbar input,.x-toolbar div,.x-toolbar select,.x-toolbar label,
.x-grid3-hd-row td, .x-grid3-row td, .x-grid3-summary-row td,
.x-grid3-topbar, .x-grid3-bottombar,
.x-grid-group-hd div.x-grid-group-title,
.x-grid-empty,
.x-dd-drag-ghost,
.x-tree-node,
.x-date-middle,.x-date-left,.x-date-right,
.x-date-inner th,
.x-date-inner a,
.x-date-mp td,
.x-date-mp-btns button,
.x-tip .x-tip-mc,
.x-tip .x-tip-header-text,
.x-tip .x-tip-body,
.x-menu-list-item,
.x-box-mc,
.x-combo-list,
.x-combo-list-hd,
.x-combo-list-small,
.x-panel-tl .x-panel-header,
.x-panel-mc,
.x-panel-fbar td,.x-panel-fbar span,.x-panel-fbar input,.x-panel-fbar div,.x-panel-fbar select,.x-panel-fbar label,
.x-window-tl .x-window-header,
.x-window-mc,
.x-list-header-inner div em,
.x-list-body dt em,
.x-window-dlg .ext-mb-textarea
{
    font-family: 'Open Sans', Helvetica, Arial, SANS-SERIF !important;
    font: 'Open Sans', Helvetica, Arial, SANS-SERIF !important;
    color:inherit;
    font-weight:300;
    font-size:14px;
}

/*--------------------------------------------------------*/
    /*GENERAL Styling*/
/*---------------------------------------------------------*/

/* Remove standard white background color */
.x-panel-body{
    background-color:transparent;
}

/*  General headers (like h2) */
.x-fieldset-header{
    display:block;
    width:100%;
    border-bottom:solid 0px #CCC;
    padding-bottom:5px;
    margin:0px;
}

/* Always hide fieldset toggling icon */
.x-tool-toggle{
    display:none;
}

/* Hide pointer effect over labels */
.ext-container label:hover{
    cursor:default;
}
/*------------------------------------------------------------------------------------------------------*/

/**
    *  GENERAL BUTTON STYLING
    */


.x-fieldset-header-text{
    font-size: 140%;
    font-weight:normal;
    padding:0px;
}

/* Make all buttons prettier */
.x-btn button,
.x-btn-icon .x-btn-icon-small-left .x-btn-text {
    padding:3px 10px 3px 20px !important;
    height:auto !important;
    vertical-align:middle;
}

/* Adjust  button padding when icon is present */
.x-btn.x-btn-text-icon button {
    background-position: 3px center !important;
    padding-left:23px !important;
}

/* Adjust  button padding when no icon is present */
.x-btn.x-btn-noicon button{
    padding-left:10px !important;
}

/*------------------------------------------------------------------------------------------------------*/

/**
    *  GENERAL INPUT STYLING
    */

/* Unbold labels */
.ext-container label{
    font-weight:300;
    font-size:14px;
}

/*Label color of modified fields */
.fieldLabelModified {

}

/* Give some space below search box*/
.ext-container .search{
    margin-bottom:20px;
    width:auto !important;
}


/* Search buttons */
.search .x-panel-btns {
    padding-left: 0px;
}

.search .x-panel-btns td.x-toolbar-cell {
    padding-left: 0px;
}

/* Search results CMS search*/

.result-item-wrap{
    border-bottom:solid #ccc 1px;
    padding:10px;
}
.result-item-wrap:first-child{
    border-top: solid #ccc 1px;
}

.search-term-match {
    font-weight: bold;
}

.result-item-title-type {
    float: right;
}


/* Make dropdown items airier*/
.x-combo-list-item {
    padding-top:4px;
    padding-bottom:4px;
}

/* Style file picking fields same as input texts */
.x-form-item{
    min-height:20px;
    margin-bottom:15px;
}

input.x-form-text,
textarea.x-form-textarea {
    margin-bottom:0px;
    width: 100%;
    padding: 6px 12px 4px;
    font-size: 14px;
    line-height: 1.428571429;
    color: #555;
    vertical-align: middle;
    background-color: #fff;
    background-image: none;
    border: 1px solid #ccc;
    border-radius: 4px;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
    box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
    -webkit-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
    transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}

input.x-form-text {
    height: 27px !important;
}

input.x-form-text:focus,
textarea.x-form-textarea:focus {
    border-color: #66afe9;
    outline: 0;
    -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(102,175,233,0.6);
    box-shadow: inset 0 1px 1px rgba(0,0,0,0.075),0 0 8px rgba(102,175,233,0.6);
}

/* Style mandatory field background */
.x-form-invalid,
textarea.x-form-invalid,
.ext-webkit .x-form-invalid {
    border-color: rgba(178,80,82,0.6) !important;
    background: #ffffff;  /*Old browsers*/
    background: -moz-linear-gradient(top,  #ffffff 9%, #ffffff 41%, #ffffff 72%, #ffe8e8 93%, #ffe5e5 100%);  /*FF3.6+*/
    background: -webkit-gradient(linear, left top, left bottom, color-stop(9%,#ffffff), color-stop(41%,#ffffff), color-stop(72%,#ffffff), color-stop(93%,#ffe8e8), color-stop(100%,#ffe5e5));  /*Chrome,Safari4+*/
    background: -webkit-linear-gradient(top,  #ffffff 9%,#ffffff 41%,#ffffff 72%,#ffe8e8 93%,#ffe5e5 100%);  /*Chrome10+,Safari5.1+*/
    background: -o-linear-gradient(top,  #ffffff 9%,#ffffff 41%,#ffffff 72%,#ffe8e8 93%,#ffe5e5 100%);  /*Opera 11.10+*/
    background: -ms-linear-gradient(top,  #ffffff 9%,#ffffff 41%,#ffffff 72%,#ffe8e8 93%,#ffe5e5 100%);  /*IE10+*/
    background: linear-gradient(to bottom,  #ffffff 9%,#ffffff 41%,#ffffff 72%,#ffe8e8 93%,#ffe5e5 100%);  /*W3C*/
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffe5e5',GradientType=0 );  /*IE6-9*/
}

/* Style birthday validation*/
.x-form-invalid.birthdate-value{
    border:none;
    background:#fff;
}

.x-form-invalid.birthdate-value input,
.x-form-invalid.document-field input{
    border-color: rgba(178,80,82,0.6);
    background: #ffffff;
    background: -moz-linear-gradient(top, #ffffff 9%, #ffffff 41%, #ffffff 72%, #ffe8e8 93%, #ffe5e5 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(9%,#ffffff), color-stop(41%,#ffffff), color-stop(72%,#ffffff), color-stop(93%,#ffe8e8), color-stop(100%,#ffe5e5));
    background: -webkit-linear-gradient(top, #ffffff 9%,#ffffff 41%,#ffffff 72%,#ffe8e8 93%,#ffe5e5 100%);
    background: -o-linear-gradient(top, #ffffff 9%,#ffffff 41%,#ffffff 72%,#ffe8e8 93%,#ffe5e5 100%);
    background: -ms-linear-gradient(top, #ffffff 9%,#ffffff 41%,#ffffff 72%,#ffe8e8 93%,#ffe5e5 100%);
    background: linear-gradient(to bottom, #ffffff 9%,#ffffff 41%,#ffffff 72%,#ffe8e8 93%,#ffe5e5 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffe5e5',GradientType=0 );
}

.birthdate-value .x-box-inner{
    height:30px !important;
}

/* Style radio button / check box validation */
.x-form-invalid.x-form-radio-group,
.x-form-invalid.x-form-check-group,
.x-form-invalid.document-field{
    border:none;
    background:#fff;
}

.x-form-invalid.x-form-radio-group .x-form-cb-label,
.x-form-invalid.x-form-check-group .x-form-cb-label{
    border-bottom:solid 1px;
    border-color: rgba(178,80,82,0.6);
    background: #ffffff;
    background: -moz-linear-gradient(top, #ffffff 9%, #ffffff 41%, #ffffff 72%, #ffe8e8 93%, #ffe5e5 100%);
    background: -webkit-gradient(linear, left top, left bottom, color-stop(9%,#ffffff), color-stop(41%,#ffffff), color-stop(72%,#ffffff), color-stop(93%,#ffe8e8), color-stop(100%,#ffe5e5));
    background: -webkit-linear-gradient(top, #ffffff 9%,#ffffff 41%,#ffffff 72%,#ffe8e8 93%,#ffe5e5 100%);
    background: -o-linear-gradient(top, #ffffff 9%,#ffffff 41%,#ffffff 72%,#ffe8e8 93%,#ffe5e5 100%);
    background: -ms-linear-gradient(top, #ffffff 9%,#ffffff 41%,#ffffff 72%,#ffe8e8 93%,#ffe5e5 100%);
    background: linear-gradient(to bottom, #ffffff 9%,#ffffff 41%,#ffffff 72%,#ffe8e8 93%,#ffe5e5 100%);
    filter: progid:DXImageTransform.Microsoft.gradient( startColorstr='#ffffff', endColorstr='#ffe5e5',GradientType=0 );
}


/* Style trigger buttons for dropdown combos */

/* Make buttons as high as preceding input field, adjust bg position*/
.x-form-field-wrap .x-form-trigger {
    height: 27px;
    width:19px;
    background-size: auto 27px;
    background-position: 0 0;
}

/* Add a border to the first field*/
.x-form-field-wrap .x-form-trigger.x-form-clear-trigger{
    border-left: solid #ccc 1px;
}

/* Pull the buttons to the left*/
.x-form-field-trigger-wrap input{
    margin-right:-8px;
}

/* Style hover effect */
.x-form-field-wrap .x-form-trigger-over{
    background-position: -19px 0;
}

/* Add active effect*/
.x-form-field-wrap .x-form-trigger-click {
    background-position: -37px 0;
}

.ux-datetime-date input{
    padding-right:20px;
}

/* Style advanced search */
.search .x-panel-body{
    overflow:visible !important;
}

.search .x-panel-bwrap{
    overflow:visible;
}

/* Style document upload field */
.document-field,
.document-field .x-box-inner,
.document-field .x-box-layout-ct{
    height:30px !important;
}

.document-field .x-form-file{
    width:35px !important;
}

.PublicDms .document-field,
.PublicDms .document-field .x-box-inner,
.PublicDms .document-field .x-box-layout-ct{
    height:98px !important;
}


/*------------------------------------------------------------------------------------------------------*/

/**
    *  GENERAL GRID / LIST STYLING
    */

/* Style grid title row*/
.x-grid3-header{
    border-bottom: solid 0px #ccc;
    border-top: solid 1px #ccc;
}

/* Change font of title row */
.x-grid3-hd-inner{
    font-size:16px;
}

/* Get rid of ugly borders left and right of title row */
.x-grid3-hd-row td {
    border-left: none;
    border-right: none;
}

/* Get rid of ugly background image change when hovering over title row, but still keep link illusion */
td.x-grid3-hd-over .x-grid3-hd-inner,
td.sort-desc .x-grid3-hd-inner,
td.sort-asc .x-grid3-hd-inner,
td.x-grid3-hd-menu-open .x-grid3-hd-inner {
    background:none;
    cursor:pointer;
}

td.x-grid3-hd-over .x-grid3-hd-inner{
    text-decoration:underline;
    background:none;
}

.x-grid3-hd-over .x-grid3-hd-btn,
.x-grid3-hd-menu-open .x-grid3-hd-btn {
    background:none;
}

a.x-grid3-hd-btn:hover {
    background-image:none;
}

/* Make grid rows more airy*/
.x-grid3-cell-inner, .x-grid3-hd-inner{
    padding:8px;
}

/* Reposition registration icon*/
.x-action-col-cell .x-grid3-cell-inner {
    padding: 8px;
}

/* Adapt to responsive */
@media (max-width:979px){
    .x-grid3-cell-inner, .x-grid3-hd-inner{
        padding:8px 4px;
    }

    .x-action-col-cell .x-grid3-cell-inner {
        padding: 8px 4px;
    }
}

/* Get rid of ugly bg-image behind numberer col  */
.x-grid3-body .x-grid3-td-numberer {
    background-image:none !important;
}

/* Get rid of borders left and right of table */
.x-grid3-row{
    border-left:0px;
    border-right:0px;
}

/* Set the background of every alternate row */
.x-grid3-row-alt {
    background-color: #f8f8f8;
}

/* Set the effect color over hover over rows */
.x-grid3-row-over,
.x-grid3-row-selected.x-grid3-row-over{
    background-image:none;
    color: #000;
    text-shadow: 0 -1px 0 rgba(255, 255, 255, 0.25);
    background-color: #e7e7e7;
    cursor: pointer;
}

/* Remove selected row styles */
.x-grid3-row-selected,
.x-grid-body .x-grid3-row-selected .x-grid3-td-numberer{
    background-color: transparent !important;
    background-image: none !important;
    border-color: #ACACAC;

}

/* Remove background image from checkbox cells */
.x-grid3-body .x-grid3-td-checker {
    background-image: none;
}

/* Hide background from pagination below  grid */
.x-toolbar{
    background-image:none;
    background-color:transparent;
    padding-top:15px;
}

/* Fix toolbar that was too wide for some reason*/
.x-panel-bbar,
.x-toolbar{
    width:auto !important;
}






/*------------------------------------------------------------------------------------------------------*/

/**
    *  GENERAL DETAIL STYLING
    */

/* Reduce gap between items */
.ext-container label.x-form-item-label{
    margin-bottom:0px;
    padding:0px 3px 0px 0px;
    display:inline;
    line-height:22px;
}

/* General vertical margin between fieldsets in detail view */
.x-fieldset{
    border:0px;
    padding:0px;
    margin-bottom:30px;
}

/* Style title of Data set same as h1 */
.detail .label-value {
    display: block;
    font-size: 39px;
    font-weight: normal;
    line-height: 40px;
    margin: 10px 0;
    padding:0;
}

/* Display description same as lead */
.detail .main-value .description-value{
    margin-bottom: 20px;
    font-size: 21px;
    font-weight: 200;
    line-height: 30px;
}


/* Style labels in Main column */
.detail .main-value label{
    font-weight:600;
    line-height:20px;
    margin-top:15px;
    font-size:16px;
}

.detail .main-value .x-form-element {
    padding-bottom: 10px;
}

.update .x-form-check-wrap label,
.create .x-form-check-wrap label,
.detail .x-form-check-wrap label{
    display:inline;
}

/* Add some space between main column and sidebar */
.detail .main-value{
    margin-right:20px;
}

/* Give "Back to overview" buttons more space below Detail view */
.x-panel-footer.x-panel-btns{
    margin-top:10px;
}

/*--------------------------------------------------------*/
    /*MASK general styling*/
/*---------------------------------------------------------*/

/* Make mask loading icon white instead of gray */
.ext-el-mask-msg {
    border-color: #ccc;
    background-color: #fff;
}

/* Adjust padding inside of mask loading icon */
.x-mask-loading div {
    background-color: #fff;
    padding: 5px 5px 5px 25px;
}

/*--------------------------------------------------------*/
    /*MODAL (POPUP) general styling (country picker etc.)*/
/*---------------------------------------------------------*/
/* Hide popup shadow */
.x-shadow{
    display:none !important;
}

/* Style popup through x-window element*/
.x-window{
    background-color: #ffffff;
    border: 1px solid #ddd;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    border-radius: 6px;
    outline: none;
    -webkit-box-shadow: 1px 2px 7px rgba(82,168,236,0.6);
    -moz-box-shadow: 1px 2px 7px rgba(82,168,236,0.6);
    box-shadow: 1px 2px 7px rgba(82,168,236,0.6);
    -webkit-background-clip: padding-box;
    -moz-background-clip: padding-box;
    background-clip: padding-box;
}

/* Remove standard Ext bg images*/
.x-window-tl,
.x-window-tc,
.x-window-tr,
.x-window-ml,
.x-window-mr,
.x-window-bl,
.x-window-br,
.x-window-bc{
    background-image:none;
}

/* Make height auto instead of fixed*/
.x-window-body{
    height:auto !important;
}

/* Set fonts and padding*/
.x-window-mc {
    border:none;
    font-family: 'Lato', tahoma,arial,helvetica,sans-serif;
    background-color: #fff;
    padding: 0px 20px 20px;
}

/* Style the modal title*/
.x-window-mc legend{
    margin-bottom:10px;
}

/*.x-fieldset-header-text {*/
    /*font-size:20px;*/
    /*font-weight:normal;*/
/*}*/

/* Flush contact form button with rest of form */
.x-window .sendButton{
    margin-left:205px;
    margin-top:10px;
}

/* Give labels for contact form more space*/
.x-window label{
    width:200px !important;
}

/*--------------------------------------------------------*/
    /*Breadcrumbs*/
/*---------------------------------------------------------*/

.ext-container .breadcrumbs li.active a:before {
    content: "▸ ";
}

/*--------------------------------------------------------*/
    /*Popup Windows*/
/*---------------------------------------------------------*/
/*.x-toolbar .x-btn-tl, .x-toolbar .x-btn-tr, .x-toolbar .x-btn-tc, .x-toolbar .x-btn-ml, .x-toolbar .x-btn-mr, .x-toolbar .x-btn-mc, .x-toolbar .x-btn-bl, .x-toolbar .x-btn-br, .x-toolbar .x-btn-bc {*/


/*}*/

/*--------------------------------------------------------*/
    /*Currently unknown stylings*/
/*---------------------------------------------------------*/
/*.x-window-bwrap input,*/
/*.x-toolbar-cell input{*/
    /*margin-bottom:0px;*/
/*}*/

/*form.x-panel-body{*/
    /*margin-bottom:5px;*/
/*}*/


/*------------------------------------------------------------------------------------------------------*/

/**
    * SPECIFIC FLOW STYLING
    */

/* Style SOME fieldsets like box*/
.EventRegistration .detail .sidebarcol-value .x-fieldset,
.login_container .x-fieldset,
.CmsPublicResource .x-fieldset,
.x-fieldset,
.search,
.table-value{
    display: block;
    padding: 15px;
    line-height: 20px;
    border: 1px solid #ddd;
    -webkit-border-radius: 4px;
    -moz-border-radius: 4px;
    border-radius: 4px;
    -webkit-box-shadow: 0 1px 3px rgba(0,0,0,0.055);
    -moz-box-shadow: 0 1px 3px rgba(0,0,0,0.055);
    box-shadow: 0 1px 3px rgba(0,0,0,0.055);
    -webkit-transition: all .2s ease-in-out;
    -moz-transition: all .2s ease-in-out;
    -o-transition: all .2s ease-in-out;
    transition: all .2s ease-in-out;
    position:relative;
}


/* Reposition the legend so it looks nicer */
.detail .sidebarcol-value .x-fieldset legend,
.login_container .x-fieldset legend,
.CmsPublicResource .x-fieldset legend,
.x-fieldset legend{
    position:absolute;
    top:0;
    left:10;
}

/* Reposition the legend texts */
.detail .sidebarcol-value .x-fieldset-header-text,
.login_container .x-fieldset-header-text,
.CmsPublicResource .x-fieldset-header-text,
.x-fieldset-header-text{
    position: absolute;
    left: 0;
    bottom: -30px;
}

/* Reposition content following the legend*/
.detail .sidebarcol-value .x-fieldset .x-fieldset-bwrap,
.login_container .x-fieldset-bwrap,
.CmsPublicResource .x-fieldset-bwrap,
.x-fieldset-bwrap{
    margin-top:40px;
}

/*----------------------------
    News Tabs (News Archiv / List)
-----------------------------*/
.news .nav-tabs {
    border-bottom: 0px;
}

.news .nav-tabs > .active > a,
.news .nav-tabs > .active > a:hover,
.news .nav-tabs > .active > a:focus {
    color: #555555;
    background-color: #fff;
    border: 1px solid #ddd;
    border-bottom-color: #fff;
    cursor: default;
}


/*----------------------------
    News (preview, preview home, top)
-----------------------------*/
.news .article{
    padding-bottom:10px;
    border-bottom: solid 1px #ddd;
    margin-bottom:20px;
}

.news .category{
    text-transform:uppercase;
    color:#777;
}

.news article img{
    padding-right:10px;
    padding-bottom:10px;
}



/*--------------------------------------------------------*/
/*  Reference list */
/*---------------------------------------------------------*/

.reference_list table{
    width:100%;
    border-top: solid #ccc 1px;
}

.reference_list td{
    vertical-align:top;
    padding:7px;
    border-bottom: solid #ccc 1px;
}

.reference_list .logo{
    width:200px;
}

/*------------------------------------------------------------------------------------------------------*/

/**
    * @section Reference detail | Referenzdetail
    */

.reference_detail{
}

.reference_detail .intro{
    margin-bottom:10px;
}

.reference_detail .texts{
}

.reference_detail .logo{
    width:200px;
}

.services ul{
    margin-left:0px;
}
.services ul li{
    /*list-style-type:none;*/
    /*list-style-position:outside;*/
    /*background-image:url('/cms/common/standard/img/icon_list_services.gif');*/
    /*background-position:left;*/
    /*background-repeat:no-repeat;*/
    /*padding-left:20px;*/
    /*margin-left:0px;*/
    /*line-height:2em;*/
}


/*--------------------------------------------------------*/
/*  Veranstaltungtermine (Reservation Lecturer Booking Manage)
/*---------------------------------------------------------*/
.x-window  .ReservationLecturerBookingManage label{
    width:100px !important;
}

/*------------------------------------------------------------------------------------------------------*/

/**
    * @section Image slider | Bildshow
    */
.anythingSlider                         { width: 460px !important; }
.anythingSlider .wrapper                { width: 400px !important; margin: 0 20px!important; }
.anythingSlider .wrapper ul             { background: none !important; border-top: 0px !important; border-bottom: 0px  !important; }
.anythingSlider ul li                   { width: 400px !important; padding:0px !important;}
.anythingSlider .forward                { right: -25px !important; }
.anythingSlider .back                   { left: -48px !important; }
#thumbNav                               { display:none !important;}
.anythingSlider .arrow                  { background-image: url(/cms/common/components/AnythingSlider/images/arrows.png)!important; }

/*----------------------------*/
/*Slick Slider Image*/
/*-----------------------------*/
.slick-prev,
.slick-next {
    color: #B1BDBE!important;
}
.slideshow .slick-prev,
.slideshow .slick-next {
    opacity: .5;
    min-width: 36px;
    height: 50px;
}
.slideshow .slick-prev:before,
.slideshow .slick-next:before {
    font-size: 62px!important;
    font-family: Verdana;
    line-height: 0.5!important;
}
.slideshow .slick-prev {
    left: 2%!important;
}
.slideshow .slick-next {
    right: 2%!important;
    text-align: right;
}
.slick-next:before {
    content: "»" !important;
}
.slick-prev:before {
    content: "«" !important;
}
.slick-slide {
    float: left;
    height: auto;
    min-height: 1px;
    display: none;
    background-position: center right;
    background-size: 100% auto;
    background-repeat: no-repeat;
}
.slick-slide .container {
    line-height: 3;
    position: relative;
}
.slick-slide .container .row {
    display: table-cell;
}
.slide-content {
    display: table-cell;
    vertical-align: middle;
    height: 400px;
    text-align: left;
    font-size: 13px;
}
.slick-col{
    padding-left: 2.5em;
    padding-right: 2.5em;

}


/*----------------------------*/
/*Portfolio Widget */
/*-----------------------------*/

.portfolio-item {
    margin-bottom: 30px;
}

.recent-work-wrap {
    position: relative;
}

.recent-work-wrap img{
    width: 100%;
}

.recent-work-wrap .recent-work-inner{
    top: 0;
    background: transparent;
    opacity: .8;
    width: 100%;
    border-radius: 0;
    margin-bottom: 0;
}

.recent-work-wrap .recent-work-inner h3{
    margin: 10px 0;
}

.recent-work-wrap .recent-work-inner h3 a{
    font-size: 24px;
    color: #fff;
}

.recent-work-wrap .recent-work-inner p {
    font-size:14px;
}

.recent-work-wrap .overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    border-radius: 0;
    background: #b42c33;
    color: #fff;
    vertical-align: middle;
    -webkit-transition: opacity 500ms;
    -moz-transition: opacity 500ms;
    -o-transition: opacity 500ms;
    transition: opacity 500ms;
    padding: 30px;
}

.recent-work-wrap .overlay .preview {
    bottom: 0;
    display: inline-block;
    height: 35px;
    line-height: 35px;
    border-radius: 0;
    background: transparent;
    text-align: center;
    color: #fff;
}

.recent-work-wrap:hover .overlay {
    opacity: 1;
}


/*--------------------------------------------------------*/
    /*AUTH FORM (LOGIN) styling*/
/*---------------------------------------------------------*/
 /*Add some space between the two login boxes*/
.login_existing_user{
    margin-right:15px;
}

.login_container label{
    width:200px !important;
}

/*--------------------------------------------------------*/
    /*EVENT DETAIL*/
/*---------------------------------------------------------*/
/* Make some fields bold*/
.EventRegistration .detail .sidebar1-value .x-form-display-field{
    font-weight:600;
}

/* Make the columns responsive*/
@media (max-width:979px){
    .EventRegistration .detail .maincol-value,
    .EventRegistration .detail .sidebarcol-value{
        width:100% !important;
    }
}


/*--------------------------------------------------------*/
/*  Style date fields that appear too small */
/*---------------------------------------------------------*/
.EventRegistration .x-pulldown-date-field-day {
    width: 45px!important;
}

.EventRegistration .x-pulldown-date-field-month {
    margin-left: 10px;
    width: 100px!important;
}

.EventRegistration .x-pulldown-date-field-year {
    margin-left: 5px;
    width: 60px!important;
}


.ux-datetime-date input,
input.DateField{
    padding: 5px;
    width:100px !important;
}

.RangeField input{
    padding: 0px;
    width:85px !important;
}

.ux-datetime-time input{
    padding: 5px;
    width:60px !important;
}


/*--------------------------------------------------------*/
/*  Presence Check  / Präsenkontrolle  */
/*---------------------------------------------------------*/
.ext-strict .PresenceCheckPercent .x-small-editor .x-form-text{
    width: 70px !important;
    height:27px !important;
}

.ext-strict .PresenceCheck .x-small-editor .x-form-text{
    width: 120px !important;
    height:27px !important;
}

.PresenceCheckPercent .x-small-editor .x-form-field-wrap .x-form-trigger,
.PresenceCheck .x-small-editor .x-form-field-wrap .x-form-trigger {
    height: 27px;
}

.PresenceCheckPercent .checkboxmatrix-row-label{
    width:auto;
}

/*--------------------------------------------------------*/
    /*ADVERT VIEW LIST*/
/*---------------------------------------------------------*/

.advertItem{
    width:100%;
    display:table;
    padding:10px 0px;
    border-bottom: solid #ddd 1px;
}

.advertItem .table-item-wrap{
    width:100%;
    padding: 20px 0px;
}

.advertItem .preview{
    width:120px;
    float:left;
}

.advertItem .description{
    float:none;
}

.nc_preview{
    width:80px;
}

/*--------------------------------------------------------*/
    /*THERAPIST SEARCH DETAIL*/
/*---------------------------------------------------------*/

.TherapistSearch .membership-type{
    font-weight:400;
    margin-bottom:20px;
}

.TherapistSearch .x-form-item{
    margin-bottom:0px;
}

.TherapistSearch label{
    margin-bottom:0px;
}

.TherapistSearch legend{
    margin-bottom:10px;
}

.TherapistSearch .type{
    margin-bottom:20px
}


/*--------------------------------------------------------*/
    /*ADVERT CREATE FORM*/
/*---------------------------------------------------------*/

.AdvertCreate .x-box-inner,
.AdvertCreate .x-box-layout-ct{
    overflow:visible;
}

input[disabled], select[disabled], textarea[disabled], input[readonly], select[readonly], textarea[readonly] {
    background-color:transparent;
}

.x-form-check-wrap input {
    vertical-align: middle;
}


/*----------------------------*/
/* PublicSurvey */
/*-----------------------------*/

.PublicSurvey .x-panel-header-text h1 {
    font-size: 25px;
    margin-top: 10px;
}

.PublicSurvey .x-panel-header-text p {
    font-size: 14px;
}

.PublicSurvey .x-panel-body .x-panel-body-noborder {
    padding: 5px 0!important;
}

.PublicSurvey .x-form-label-left .x-form-item{
    margin-bottom: 0 !important;
}

.PublicSurvey .x-form-label-left .x-form-item label,
.PublicSurvey .x-form-label-left .x-form-item .x-form-element {
    padding: 3px;
}

.PublicSurvey .x-fieldset {
    margin-bottom: 0;
    margin: 10px 0;
}

/*----------------------------*/
/* ChecklistView */
/*-----------------------------*/

.ChecklistView .x-panel-body {
    border: 0;
}

.ChecklistView .x-panel-body .x-panel-body-noheader {
    padding: 0 !important;
}

.ChecklistView .x-fieldset .x-fieldset-noborder {
    border: 0 !important;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
    -webkit-box-shadow: 0 0 0;
    -moz-box-shadow: 0 0 0;
    box-shadow: 0 0 0;
}

/*--------------------------------------------------------*/
/*FLOATING DATE PICKER*/
/*---------------------------------------------------------*/

.x-date-menu ul.x-menu-list {
    margin-bottom: 0 !important;
}

/*--------------------------------------------------------*/
/*KEYBOARD CONTAINER*/
/*---------------------------------------------------------*/

.x-keyboard-container .x-form-field-wrap {
    width: 100px !important;
}

.x-keyboard-container .x-form-field {
    width: 80px !important;
}

.ext-strict .ext-webkit .x-small-editor .x-form-text {
    height: 19px !important;
}

/*--------------------------------------------------------*/
/*MEMBERSHIP JOINING BIRTHDAY DROPDOWNS*/
/*---------------------------------------------------------*/

.MembershipJoining .x-box-inner {
    height: 27px !important;
}

@media (min-width:480px) {
    .x-pulldown-date-field-day{
        width: 41px !important;
    }

    .x-pulldown-date-field-month {
        width: 110px !important;
    }

    .x-pulldown-date-field-year {
        width: 60px !important;
    }
}

/*--------------------------------------------------------*/
/*PUBLIC DMS*/
/*---------------------------------------------------------*/
/*Neutralization*/
.PublicDms .x-border-layout-ct,
.PublicDms .x-panel-header,
.PublicDms .x-accordion-hd,
.PublicDms .table-value,
.PublicDms .x-panel-bbar .x-toolbar,
.PublicDms .x-panel-tbar .x-toolbar,
.PublicDms .x-panel-tbar-noheader .x-toolbar,
.PublicDms .x-panel-mc .x-panel-tbar .x-toolbar,
.PublicDms .x-panel-body,
.PublicDms .x-grid3-header{
    background-color: #fff;
    background-image: none;
    border: 0 !important;

}
.PublicDms .x-grid3-header{
    background-color: #eee;
    border: 1px solid #ddd !important;
}

.PublicDms .table-value{
    padding: 0;
    margin: 0;
}


.PublicDms .document-field .x-form-file,
.MemberAdministrationDocument .document-field .x-form-file {
    height: 33px !important;
    width: 38px !important;
}

.PublicDms .document-field.mode-both .x-form-file,
.MemberAdministrationDocument .document-field.mode-both .x-form-file {
    right: 80px !important;
}

.PublicDms .document-field.mode-upload .x-form-file,
.MemberAdministrationDocument .document-field.mode-upload .x-form-file {
    right: 40px !important;
}

.PublicDms .x-btn *,
#public-dms-maximize-button.x-btn *,
#public-dms-maximize-button-container *{
    background-image: none;
}
/*Standard Grey Button*/
.PublicDms .x-panel-noborder .x-btn,
#public-dms-maximize-button.x-btn,
#public-dms-maximize-button-container .x-btn{
    background: #eee;
    border: 1px solid #ddd;
    margin: 7px 10px 7px 0;
    padding: 0 10px;
}
#public-dms-maximize-button-container .x-btn{
    margin: 7px 0 7px 10px;
}
/*Blue Button*/
.PublicDms .x-panel-tbar.x-panel-tbar-noheader .x-toolbar-left-row .x-toolbar-cell !.x-btn button.tdgi_icon_ext-gen34,
.PublicDms x-panel table.x-btn{
    background: #428bca;
    color: #fff;
}
/*Red Button*/
.PublicDms .x-panel-tbar.x-panel-tbar-noheader .x-toolbar-left-row .x-toolbar-cell !.x-btn button.tdgi_icon_ext-gen37{
    background: #B42C33;
    color: #fff;
}
.PublicDms {
    padding: 10px;
}
.PublicDms .search .x-btn{
    padding: 0;
    margin:  0;
}
.ext-strict .ext-webkit .x-small-editor .x-form-text{
    height: 27px!important;
    max-width: 40px;
    padding: 0 5px;
}
.PublicDms .x-panel-bbar table tr td {
    padding: 0 2px;
}
.PublicDms .x-small-editor .x-form-field-wrap .x-form-trigger{
    height: 27px!important;
    background-repeat: repeat;
    right: 2px;
}
.x-grid3-body .x-grid3-td-numberer .x-grid3-cell-inner{
    padding: 8px 5px 0 0!important;
}
.x-grid3-body .x-grid3-td-checker .x-grid3-cell-inner, .x-grid3-header .x-grid3-td-checker .x-grid3-hd-inner{
    margin-top: 5px!important;
}
.PublicDms .x-form-field-wrap.x-form-field-trigger-wrap input{
    width: 74px!important;
    height: 27px!important;
    text-align: left;
    font-size: 12px;
    padding: 0 2px;
}

.PublicDms .x-tree-node{
    padding: 3px 0;
}
.PublicDms .x-panel-header {
    background: #eee;
    border: 1px solid #ddd !important;
    margin-bottom: 0;
    padding: 5px;
}
.PublicDms #searchFilterPanel_0,
.PublicDms #searchPanel_0,
.PublicDms #openPanel_0{
    border-top: 1px solid #fff;
}
.PublicDms .x-panel.x-border-panel > .x-panel-header.x-unselectable{
    border: 0!important;
    background: none;
    height: 0;
    margin-bottom: 0;
}
.PublicDms span.xtb-sep{
    display: none;
}
.PublicDms #searchFilterPanel_0{
    display: block;
}
.PublicDms .x-toolbar-right-row .x-btn{
    margin: 7px 0 7px 10px;
}
.PublicDms #searchPanel_0 .x-box-inner .x-btn{
    padding: 2px!important;
    margin: 0 0 0 -15px!important;
    float: left;
    left: 102px;
}
.PublicDms .detail .label-value{
    font-size: 14px;
    line-height: 14px;
    font-family: 'Open Sans', Helvetica, Arial, sans-serif;
    font-weight: 300;
    padding: 4px 12px 6px 12px;
    border-radius: 0;
}
.PublicDms input.x-form-text, textarea.x-form-textarea{
    padding: 0 12px;
    line-height: 20px;
    border-radius: 0;
}
.PublicDms .x-form-field-wrap .x-btn{
    margin: 0 !important;
}
.PublicDms .x-fieldset{
    border: 0;
    box-shadow: none;
    padding: 0;
    margin: 5px 10px;
}
.PublicDmsResource.search {
    margin: 0!important;
    border-radius: 0;
}
.PublicDms .document-field .x-btn{
    margin: 0 !important;
}

/*----------------------------
    Section Float Fix
-----------------------------*/

div[id^="section-"] {
    clear:both;
}

/*----------------------------*/
    /*Print styles*/
/*-----------------------------*/

@media print {

    * { background: transparent !important; color: black !important; text-shadow: none !important; filter:none !important; -ms-filter: none !important; }
    a, a:visited { text-decoration: underline; white-space:normal;}
    a[href]:after { content: " (" attr(href) ")"; }
    abbr[title]:after { content: " (" attr(title) ")"; }
    a:after, a[href^="javascript:"]:after, a[href^="#"]:after { content: ""; }
    pre, blockquote { border: 1px solid #999; page-break-inside: avoid; }
    thead { display: table-header-group; }
    tr, img { page-break-inside: avoid; }
    img { max-width: 100% !important; }
    @page { margin: 0.5cm; }
    p, h2, h3 { orphans: 3; widows: 3; }
    h2, h3 { page-break-after: avoid; }
    #subnav, .topnav, .navbar, .breadcrumb, .logo, .footer, aside {display:none;}
}
