﻿/*
 * DASHBOARD base style.
 * Use only for dashboard itself.
 */

/*
 * COLOR PALETTE (old)
 * - grey:              #5a5a5a
 * - grey-2:            #6F6F6F
 * - grey-light:        #dddddd
 * - grey-light-2:      #f2f2f2
 * - blue:              #39bced
 * - orange:            #ff6b36
 * - orange-light:      #ffd2c2
 *
 * v2:
 * Oranje: #EC6620
 * lichtoranje: fdf1e5
 * Donkeroranje: #d65d00
 * button filter -> Groen: #70A0A1
 * button filter -> Groen-hover: #81b9ba
 */


/********************
 * FONT 
 *******************/

@font-face {
  font-family: 'regular';
  src: url("/resources/fonts/ralewayregular/raleway-regular-webfont.eot");
  src: url("/resources/fonts/ralewayregular/raleway-regular-webfont.eot?#iefix") format("embedded-opentype"), 
       url("/resources/fonts/ralewayregular/raleway-regular-webfont.woff") format("woff"), 
       url("/resources/fonts/ralewayregular/raleway-regular-webfont.woff2") format("woff2"), 
       url("/resources/fonts/ralewayregular/raleway-regular-webfont.ttf") format("truetype"), 
       url("/resources/fonts/ralewayregular/raleway-regular-webfont.svg#RexLight") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'bold';
  src: url("/resources/fonts/ralewaysemibold/raleway-semibold-webfont.eot");
  src: url("/resources/fonts/ralewaysemibold/raleway-semibold-webfont.eot?#iefix") format("embedded-opentype"), 
       url("/resources/fonts/ralewaysemibold/raleway-semibold-webfont.woff") format("woff"), 
       url("/resources/fonts/ralewaysemibold/raleway-semibold-webfont.woff2") format("woff2"), 
       url("/resources/fonts/ralewaysemibold/raleway-semibold-webfont.ttf") format("truetype"), 
       url("/resources/fonts/ralewaysemibold/raleway-semibold-webfont.svg#RexLight") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
  font-family: 'header';
  src: url("/resources/fonts/unitedsanscond/UnitedSansSmCdMd.eot");
  src: url("/resources/fonts/unitedsanscond/UnitedSansSmCdMd.eot?#iefix") format("embedded-opentype"), 
       url("/resources/fonts/unitedsanscond/UnitedSansSmCdMd.woff") format("woff"), 
       url("/resources/fonts/unitedsanscond/UnitedSansSmCdMd.ttf") format("truetype"), 
       url("/resources/fonts/unitedsanscond/UnitedSansSmCdMd.svg#RexLight") format("svg");
  font-weight: normal;
  font-style: normal;
}

@font-face {
    font-family: 'Montserrat';
    src: url('/resources/fonts/montserrat/Montserrat-Regular.woff') format('woff'), /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
    url('/Resources/Fonts/Montserrat/Montserrat-Regular.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5, Opera 10+, Safari 3—5 */
} 

@font-face {
    font-family: 'MontserratBold';
    src: url('/resources/fonts/montserrat/Montserrat-Bold.woff') format('woff'), /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
    url('/Resources/Fonts/Montserrat/Montserrat-Bold.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5, Opera 10+, Safari 3—5 */
} 

@font-face {
    font-family: 'MontserratSemiBold';
    src: url('/resources/fonts/montserrat/Montserrat-SemiBold.woff') format('woff'), /* Chrome 6+, Firefox 3.6+, IE 9+, Safari 5.1+ */
    url('/Resources/Fonts/Montserrat/Montserrat-SemiBold.ttf') format('truetype'); /* Chrome 4+, Firefox 3.5, Opera 10+, Safari 3—5 */
} 

/********************
 * GENERAL 
 *******************/

body, html {
    font-family: 'Montserrat', sans-serif;
    font-size:14px;
}

/********************
 * FONT : BOLD 
 *******************/

.action-bar .breadcrumbs {  }


/********************
 * DECK 
 *******************/

.deck { 
    position: relative; 
    overflow: hidden; 
    width: auto; 
    /*height: 100vh;*/ /* legacy */
    z-index: 1; 
    /*padding: 0 0 0 90px;*/ /* legacy */
    padding: 0;
    -webkit-transition: padding 150ms ease-in-out; 
    -moz-transition: padding 150ms ease-in-out; 
    -o-transition: padding 150ms ease-in-out; 
    transition: padding 150ms ease-in-out; 
}

.deck > .main {
    /*height: 100vh;*/ /* legacy */
    /*padding-right: 230px;*/

    position: relative;
    /*height: 100vh;*/ /* legacy */
    -webkit-transition: height 150ms ease-in-out;
    -moz-transition: height 150ms ease-in-out;
    -o-transition: height 150ms ease-in-out;
    transition: height 150ms ease-in-out;

    /*max-height: 100vh;*/ /* legacy */
    /*height: calc( 100% - 40px );*/
    /*height: calc( 100vh - 40px );*/
}

.deck > .main > .inner { position: relative; height: 100%;  padding-top: 0; overflow-y: auto;}


/********************
 * ICONS 
 *******************/

.sprite { background-image: url(/environments/dashboard/base/sprites/sprite.png); background-repeat: no-repeat; }

a.icon::before {
    content: "";
    display: block;
    height: 150%;
    width: 0;
}

.icon.edit,
.icon.delete,
.icon.preview,
.icon.arrow-left,
.icon.arrow-right,
.icon.configure,
.icon.gear
 {
    display: block;
    background-image: url(/environments/dashboard/base/sprites/sprite.png);
    background-repeat: no-repeat;
    height: 40px;
    width: 50px;
    overflow: hidden;
    cursor: pointer;
}

.icon.edit { background-position: -75px -252px; }
.icon.edit:hover { background-position: -475px -252px; }
.icon.delete { background-position: -198px -490px; }
.icon.delete:hover { background-position: -598px -490px; }
.icon.preview { background-position: -75px -300px; }
.icon.preview:hover { background-position: -475px -300px; }

.icon.arrow-left { background-position: -690px -830px; height:30px; width:30px; }
.icon.arrow-right { background-position: -745px -832px; height:30px; width:30px; }

.icon.arrow-left.small { background-position: -742px -982px; height: 20px; width: 20px; }
.icon.arrow-right.small { background-position: -758px -982px; height: 20px; width: 20px; }

.icon.configure{ background-position: -150px -690px; width: 22px; height: 22px;}
.icon.gear{ background-position: -690px -170px; width: 22px; height: 22px;}
.icon.gear.grey{ background-position: -090px -170px; width: 22px; height: 22px;}
/*.icon.gear.big{ background-image: url(/environments/dashboard/base/sprites/entry.png); background-position: -100px -830px; width: 30px;height: 30px;}*/


/********************
 * UI 
 *******************/

ul { list-style:none;padding:0;margin:0; }
ul li.bullet{background-image:url('/Resources/Images/Bullet.gif');background-repeat:no-repeat;background-position:0 7px;padding-left:15px;}


/********************
 * UI : PILL
 *******************/

.dashboard .pill { background-color: #a8a8a8; border-radius: 2px; box-shadow: 0 1px 2px 1px rgba(0, 0, 0, 0.1) inset; color: #fff; display: inline-block; font-size: 11px; height: 16px; line-height: 16px; min-width: 18px; padding: 0 4px; text-align: center; }
.dashboard .pill-right { float: right; }
.dashboard table.dataTable .details-control .pill a,
.dashboard .pill a, .dashboard .pill a:active, .dashboard .pill a:hover, .dashboard .pill a:visited,
.dashboard .pill .pill-inner { color: #fff !important; text-decoration: none !important; cursor: pointer; }
.dashboard .pill.pill-pointer-cursor { cursor: pointer !important; }
/*.dashboard .group-info {
    margin-top: 2px;
    font-size: 12px;
    height: 16px;
    padding: 1px 3px 2px 3px;
    border-radius: 5px;
}*/


/********************
 * UI : SELECT-TAG >> FILTER
 *******************/

.form-input .select2-container .select2-choice .select2-search-choice-close { left: unset; top: 50%; }

.ui-select-tag { display: block; padding: 0; margin-bottom: 25px; width:100%; min-width: 180px; max-width: 270px; padding-bottom: 16px; background-color:#f3f3f3; border-radius: 3px; overflow: hidden; -moz-box-sizing:border-box; -webkit-box-sizing:border-box; box-sizing:border-box; }
.ui-select-tag > .accent { height: 8px; background-color: #fd9d27; }
.ui-select-tag > .label { margin: 14px 18px 10px 18px; padding-bottom: 10px; border-bottom: 1px solid #f3f3f3; font-family:'bold'; font-size: 1.1em; }
.ui-select-tag .tags { list-style: none; margin: 15px 18px 0 18px; }
.ui-select-tag .tag { margin: 6px 0 0 0; padding: 0 0 2px 0; position:relative; -webkit-touch-callout: none; 
                      -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; 
                      white-space: nowrap; /*overflow: hidden;*/ -ms-word-break: break-word; word-break: break-word; }
.ui-select-tag .tag:hover { cursor: pointer; }
.ui-select-tag .tag .label { display: inline-block; /*max-width: 176px;*/ padding: 1px 0 0 0; white-space: normal; overflow: hidden; -ms-text-overflow: ellipsis; -o-text-overflow: ellipsis; text-overflow: ellipsis; -ms-word-wrap:break-word; word-wrap:break-word; font-size:0.9em; vertical-align: top; }

.ui-select-tag .tag > .right { position:absolute;top:0;right:0; text-align: right; }
.ui-select-tag .tag > .right .edit { display:inline-block; display:none; }
.ui-select-tag .tag > .right .pill { display:inline-block; }

.ui-select-tag .tag .edit { display:none;  }
.ui-select-tag .tag .pill { -moz-border-radius: 5px; border-radius: 5px; color: white; /*position:absolute;top:0;right:0;*/ /*float: right;*/ min-width: 20px; max-width:28px; text-align: center; font-size:12px; padding: 1px 3px 2px 3px; background-color: #fd9d27; }

.ui-select-tag .tag > .mark { display: inline-block; width: 20px; }
.ui-select-tag .tag > .radio:before { margin-right: 8px; color: #b7b7b7; }
.ui-select-tag .tag.active > .radio:before { margin-right: 8px; color: #b7b7b7; }
.ui-select-tag .tag > .checkbox:before { margin-right: 8px; color: #b7b7b7; }
.ui-select-tag .tag.active > .checkbox:before { margin-right: 8px; color: #b7b7b7; }

/* font awesome */
.ui-select-tag .tag > .radio,
.ui-select-tag .tag > .checkbox { font-family:'Font Awesome\ 5 Pro'; font-weight: 400; -moz-osx-font-smoothing: grayscale; -webkit-font-smoothing: antialiased; display: inline-block; font-style: normal; font-variant: normal; text-rendering: auto; line-height: 1; }
.ui-select-tag .tag > .radio:before { content: "\f111"; }
.ui-select-tag .tag.active > .radio:before { content: "\f192"; }
.ui-select-tag .tag > .checkbox:before { content: "\f0c8"; }
.ui-select-tag .tag.active > .checkbox:before { content: "\f14a"; }

.ui-select-tag .tag.active .label { font-family: 'bold'; /*color:#fd9d27;*/}
.ui-select-tag .tag.active .pill { background-color: #fd9d27; }
.ui-select-tag .tag:hover .label { color:#fd9d27;}

.ui-select-tag .group { margin: 8px 0 0 0; padding: 0 0 2px 0;  }
.ui-select-tag .group > .label { font-family: 'bold'; }
.ui-select-tag .tag.grouped { }
.ui-select-tag .separator { margin: 8px 0 0 0; padding: 0 0 2px 0; min-height: 10px; }
.ui-select-tag .separator > .label { font-family: 'bold'; }

.filter-block .filter-block-label { margin: 20px 20px 0 20px; font-size: 1.1em; font-family: 'Bold';}

/********************
 * HEADER 
 *******************/

.main > .inner > .header { }
.main > .inner > .header .primary { height: 60px; background-color: #5b6770; }
.main > .inner > .header .primary .logo { float:left; margin: 0 0 0 34px; height: 60px; }
.main > .inner > .header .primary .logo > img { height: 100%; max-width: 100%; }
.main > .inner > .header .primary .title { float:left; margin: 0 0 0 40px; padding: 10px 0 0 0; color:#fff; font-family:'header'; font-size:30px;  }
.main > .inner > .header .primary .title .text {  }
.main > .inner > .header .banner { height: 40px; }
.main > .inner > .header .banner > img { height: 100%; width: 100%; }

/********************
 * FOOTER 
 *******************/

.main > .inner > .footer-push { height: 40px; }
.main > .inner > .footer { position:fixed; left:0; right:0; bottom:0; background-color: #d1d7dc; text-align:center; padding: 12px 0 12px 0; }
.main > .inner > .footer .text { }
.main > .inner > .footer .highlight { font-family:'bold'; color:#5b6770; }
.main > .inner > .footer a.highlight { text-decoration:none; }

/********************
 * ACTION BAR 
 *******************/

.main > .inner > .action-bar { }
.main > .inner > .action-bar > .inner { margin: 0; background: #f7f7f7 none repeat scroll 0 0; padding: 12px 20px 8px 20px; width: auto; min-height: 52px; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; }
.main > .inner > .action-bar > .inner > .right { min-width: 400px; float: right; text-align:right; }

/* elements */
.main > .inner > .action-bar .clickable { cursor:pointer; }
.main > .inner > .action-bar > .inner > .right > input[type=text] { padding: 9px; border: none; width: 300px; font-size: 0.9em; margin-left: 7px; -webkit-border-radius: 3px; -moz-border-radius: 3px; border-radius: 3px; }
.main > .inner > .action-bar > .inner > .right > button { display:inline-block; margin-left: 7px; }
.main > .inner > .action-bar > .inner > .right > button > .display { display:inline-block; padding: 0 5px 0 5px; }
.main > .inner > .action-bar > .inner > .right > label { margin-left: 7px; }
.main > .inner > .action-bar > .inner > .right > .display.passive { color: #959595; }

/* breadcrumbs */
.action-bar .breadcrumbs { margin: 6px 0 0 0; padding: 0; list-style: none; float: left; }
.action-bar .breadcrumbs li { float: left; font-family:'bold'; margin: 0 12px 0 0; }
.action-bar .breadcrumbs li a { padding: 0.25em 1.5em; text-decoration: none; display: block; }
.action-bar .breadcrumbs li span { display: block; }
.action-bar .breadcrumbs li.link { cursor:pointer; }
.action-bar .breadcrumbs li.link > a { text-decoration:none; color: #606060; padding:0; }
.action-bar .breadcrumbs li.link:hover > a { color: #fd9d27;  }

/* dropdown */
.action-bar ul.dropdown { display: inline-block; z-index: 12; list-style: none; padding: 0; margin: 0; position:relative; }
.action-bar ul.dropdown .options { display: none; position: absolute; z-index: 12; right: 0; background-color: #ECECEC; max-height:400px; overflow-y:auto; overflow-x:hidden; }
.action-bar ul.dropdown > li:hover ul { display: block; }
.action-bar ul.dropdown > li > a { cursor: pointer; text-decoration: none; padding: 8px; margin-left: 7px; }
.action-bar ul.dropdown .option { float: none !important; text-align: left; padding: 5px 10px 5px 10px; white-space: nowrap; }
.action-bar ul.dropdown .option:hover { background-color: #dcdcdc; cursor: pointer; }
.action-bar ul.dropdown .option > a { text-decoration: none; color: inherit; }
.action-bar ul.dropdown .option > .label { padding: 5px 5px 5px 5px; }
.action-bar ul.dropdown .option > .checkbox { margin: 5px 5px 5px 5px; color: #CCC; }
.action-bar ul.dropdown .option.active .label { color: #fd9d27; }
.action-bar ul.dropdown .option.active .checkbox { color: #fd9d27; }

/* Add switch (deprecated) */
.action-bar ul.additem-root {  display: inline-block; z-index: 12; list-style: none; padding: 0; margin: 0; position:relative; }
.action-bar ul.additem-root ul { display: none; position: absolute; z-index: 12; right: 0; background-color: #F3F3F3; }
.action-bar ul.additem-root li:hover ul { display: block; }
.action-bar ul.additem-root > li > a { cursor: pointer; text-decoration: none; padding: 8px; margin-left: 7px; }
.action-bar ul.additem-root ul li a { text-decoration: none; color: inherit; }
.action-bar ul.additem-root ul li { float: none !important; text-align: right; padding: 5px 10px 5px 20px; }
.action-bar ul.additem-root ul li:hover { background-color: #E9E9E9; cursor: pointer; }
.action-bar ul.additem-root > li {display: inline-block; }

/********************
 * PAGE
 *******************/

.main > .inner > .page { background-color:#fff; }
.main > .inner > .page.inset { padding: 20px; }
.main > .inner > .page > .col1,
.main > .inner > .page > .col2 { -webkit-box-sizing: border-box; -moz-box-sizing: border-box; box-sizing: border-box; /*padding: 1.25em 1.5em;*/ }

/* page: container */
.page .container { background-color: #f3f3f3; border-radius: 3px; overflow: hidden; }
.page .container > .accent { height: 8px; background-color: #fd9d27; }
.page .container > .body { padding:10px 10px 10px 10px; }

/* page: cols */
.page.mod > .cols > .col1 { padding: 20px; width: 310px; }
.page.mod > .cols > .col2 { padding: 20px; width: calc(100% - 310px); overflow-x: auto; }


/*****************
 * UI: BLOCKS
 *****************/

.overview.blocks { padding: 20px; }
.overview.blocks > .block { min-width: 260px; max-width:350px; background-color: #f3f3f3;  border-radius: 4px; overflow: hidden; margin: 0 24px 24px 0; display:inline-block; vertical-align:top; -moz-box-sizing: border-box; -webkit-box-sizing: border-box; box-sizing: border-box; }

.overview.blocks > .block > .head { background-color: #ea881f; padding: 12px 18px 10px 18px; }
.overview.blocks > .block > .head > .title { color: #fff; font-family: 'bold'; font-size: 1.1em; }
.overview.blocks > .block.alternate > .head { background-color: #5B6770; }

.overview.blocks > .block > .body { padding: 14px 18px 14px 18px; }
.overview.blocks > .block > .body ul.list { list-style: none; }
.overview.blocks > .block > .body > .empty { font-style:italic; font-size: 0.9em; }

.overview.blocks > .block .list .item { position:relative; margin: 8px 0 16px 0; }
.overview.blocks > .block .list .item.inactive { opacity: 0.6; }
.overview.blocks > .block .list .item > .icon { float: left; }
.overview.blocks > .block .list .item > .display { float: left; cursor: pointer; margin-right:24px; }
.overview.blocks > .block .list .item > .display > a { text-decoration:none; color:inherit; }
.overview.blocks > .block .list .item > .display:hover .label { color: #f4661a;}
.overview.blocks > .block .list .item > .action { position:absolute; top: 4px; right: 0;width: 20px; text-align: center; }
.overview.blocks > .block .list .item .label { font-family: 'bold'; font-size: 1.0em; }
.overview.blocks > .block .list .item .description { font-size: 0.9em; font-style: italic; margin: 2px 0 0 0;  display: inline; -ms-word-wrap: break-word; word-wrap: break-word; }

.overview.blocks > .block .item .action.pin { font-family:'Font Awesome\ 5 Pro'; cursor: pointer; }
.overview.blocks > .block .item .action.pin i { font-size: 16px; color: #e7e7e7; }
.overview.blocks > .block .item .action.pin:hover i { color: #606060; }
.overview.blocks > .block .item .action.pin i:before { content: "\f08d"; }
.overview.blocks > .block .item .action.pin.active i { color: #f4661a; -ms-transform: rotate(35deg); /* IE 9 */ -webkit-transform: rotate(35deg); /* Chrome, Safari, Opera */ -moz-transform: rotate(35deg); -o-transform: rotate(35deg); transform: rotate(35deg); }
.overview.blocks > .block .item .action.pin.active:hover i { color: #606060; }

/* blocks: flex */
.overview.blocks { display: -ms-flexbox; display: -webkit-flex; display: flex; -webkit-flex-wrap: wrap; -ms-flex-wrap: wrap; flex-wrap: wrap; }
.overview.blocks > .block { display: -ms-flexbox; display: -webkit-flex; display: flex; -ms-flex-direction: column; -webkit-flex-direction: column; flex-direction: column; }

/* blocks: responsive */
@media screen and (min-width:1010px) and (max-width: 1290px) {
    .overview.blocks .block { width:30%;max-width:30%; }
}
@media screen and (min-width:750px) and (max-width: 1010px) {
    .overview.blocks .block { width:44%; max-width:44%; }
}
@media screen and (max-width: 750px) {
    .overview.blocks .block { width:100%; max-width:100%; }
}

/*****************
 * TOOL: ITEM VIEWER
 *****************/

/* item-view */
.item-view.card,
.item-view.row { margin: 6px; padding: 12px; border: 1px solid #dcdcdc; border-radius: 2px; /*-webkit-box-shadow: 0px 0px 3px 0px rgba(220,220,220,1); -moz-box-shadow: 0px 0px 3px 0px rgba(220,220,220,1); box-shadow: 0px 0px 3px 0px rgba(220,220,220,1); */ }
.item-view.card .image > img,
.item-view.row .image > img { max-width: 100%; max-height: 100%; }
.item-view.card.clickable,
.item-view.row.clickable { cursor: pointer; }
.item-view.card.clickable:hover,
.item-view.row.clickable:hover { background-color: #fafafa; }

/* item-view: card-small */
.item-view.card.small .image { width: 15%; float: left; width: 80px; margin-right: 5%; height: 50px; }
.item-view.card.small .info { width: 80%; float: left; width: calc(95% - 80px); color: #9d9d9d; font-size: 16px; min-height: 50px; }
.item-view.card.small .info .label { color: #535353; font-weight: bold; font-size: 16px; }
.item-view.card.small .info .description { font-size: 15px; }

/* item-view: row-big */
.item-view.row.big .image { width: 15%; float: left; width: 80px; margin-right: 5%; height: 50px; }
.item-view.row.big .info { width: 80%; float: left; width: calc(95% - 80px); color: #9d9d9d; font-size: 16px; min-height: 50px; }
.item-view.row.big .info .label { color: #535353; font-weight: bold; font-size: 16px; }
.item-view.row.big .info .description { font-size: 15px; }

/* item-view: row-small */
.item-view.row.small { margin: 4px; padding: 4px; }
.item-view.row.small .image { width: 15%; float: left; width: 40px; height: 36px; margin-right: 5%; }
.item-view.row.small .info { width: 80%; float: left; width: calc(95% - 40px); color: #9d9d9d; font-size: 16px; }
.item-view.row.small .info .label { color: #535353; font-weight: bold; font-size: 14px; }
.item-view.row.small .info .description { font-size: 13px; }

/* item-view: grid-row */
div.item-view.grid-row { display:table; width:100%; }
.item-view.grid-row > div { display:table-cell; padding: 10px; }
.item-view.grid-row > td { padding: 10px; }
.item-view.grid-row .gcol-thumb { width: 100px; max-width: 100px; }
.item-view.grid-row .gcol-thumb > img { max-height: 100%; max-width: 100%; }
.item-view.grid-row .gcol-manage > .template { display: flex; }
.item-view.grid-row .actions > .action { display:inline-block; cursor:pointer; margin: 4px; width: 20px; text-align:center; }
.item-view.grid-row .actions > .action i { font-size: 1.2em; }
.item-view.grid-row .checkable > .checkbox { cursor:pointer; padding:4px; width: 20px; text-align:center; }
.item-view.grid-row .checkable > .checkbox > input { cursor:pointer; }
.item-view.grid-row .checkable > .checkbox > .checked { display:none; }
.item-view.grid-row.selected .checkable i { display:inline-block; }
.item-view.grid-row.selected .checkable > .checkbox > i.checked { display:inline-block; }
.item-view.grid-row.selected .checkable > .checkbox > i.unchecked { display:none; }
.item-view.grid-row .checkable > .checkbox.selected > i.checked { display:inline-block; }
.item-view.grid-row .checkable > .checkbox.selected > i.unchecked { display:none; }
.item-view.grid-row .gcol > .template > .actions { display:inline-block; }
.item-view.grid-row .gcol > .template > .checkable { display:inline-block; }

/*****************
 * TOOL: PORTAL OVERVIEW
 *****************/
.portal-overview .portal-item { cursor:pointer; width: 200px; margin: 10px; border-radius: 6px; background-color: #f3f3f3; display: inline-block; }
.portal-overview .portal-item .info-primary { padding: 10px; }
.portal-overview .portal-item .image { padding:10px; min-height:68px; overflow: hidden; position:relative; -webkit-border-top-left-radius: 6px; -webkit-border-top-right-radius: 6px; -moz-border-radius-topleft: 6px; -moz-border-radius-topright: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; }
.portal-overview .portal-item .image img { width: 100%; }
.portal-overview .portal-item .image .overlay { background: rgba(0,0,0,0.6); opacity: 0; position: absolute; top: 0; left: 0; bottom: 0; right: 0; -moz-transition: opacity 0.3s; -o-transition: opacity 0.3s; -webkit-transition: opacity 0.3s; transition: opacity 0.3s; -webkit-border-top-left-radius: 6px; -webkit-border-top-right-radius: 6px; -moz-border-radius-topleft: 6px; -moz-border-radius-topright: 6px; border-top-left-radius: 6px; border-top-right-radius: 6px; }
.portal-overview .portal-item:hover .image .overlay { opacity: 1; }

/* portal-button */
.portal-overview .portal-item:hover .highlight.portal-button { opacity: 1; }
.portal-overview .portal-item .highlight.portal-button { opacity: 0; z-index: 1; position: absolute; top: 18px; height: 32px; width: 32px; line-height: 32px; text-align: center; background-color: rgba(255, 255, 255, 1.0); border-radius: 16px; }
.portal-overview .portal-item .highlight.portal-button > i { position: relative; display: block; color: #5a5a5a; padding: 8px 0 0 0; font-size:16px; }

/* portal-switch */
.portal-overview .portal-item .highlight.portal-button.portal-switch {right:14px;}
.portal-overview .portal-item.active .highlight.portal-button.portal-switch { opacity: 1; background-color: #5a5a5a; }
.portal-overview .portal-item.active .highlight.portal-button.portal-switch > i { color: #fff; }
.portal-overview .portal-item.active:hover .highlight.portal-button.portal-switch { background-color: rgba(255, 255, 255, 1.0); }
.portal-overview .portal-item.active:hover .highlight.portal-button.portal-switch > i { color: #5a5a5a; }

/* portal-feed */
.portal-overview .portal-item .highlight.portal-button.portal-feed {right: 54px;}

/* portal-duplicate */
.portal-overview .portal-item .highlight.portal-button.portal-duplicate {right: 94px;}

/* portal-origin */
.portal-overview .portal-item .highlight.portal-button.portal-origin { left: 14px; opacity: 1; background-color: #5a5a5a; }
.portal-overview .portal-item .highlight.portal-button.portal-origin > i { color: #fff; }

/* Detail dialog */
.portal-detail-dialog .card { background-color: #f3f3f3; border-radius: 8px; padding: 20px 25px; margin-top: 10px; }
.portal-detail-dialog .card .left { float: left; width: 200px; position: relative; }
.portal-detail-dialog .card .left .image { width: 175px; height: 175px; text-align: center; cursor: pointer; background-size: cover; background-position: center center; }
.portal-detail-dialog .card .info .name { font-size: 1.2em; color: #5b5b5b; }
.portal-detail-dialog .card .info .customer { color: #a9a9a9; }
.portal-detail-dialog .card .info .description { color: #a9a9a9; }
.portal-detail-dialog .card .card-divider { width: 100%; height: 10px; }
.portal-detail-dialog .card .bottom { margin-top: 10px; }
.portal-detail-dialog .card .edit-image-button { float: left; }
.portal-detail-dialog .card .edit-portal-button { float: right; }

.portal-detail-dialog .area-info { background-color: #f3f3f3; border-radius: 8px; padding: 20px 25px; margin-top: 10px; }
.portal-detail-dialog .area-info p { width: 20%; display: inline-block; }
.portal-detail-dialog .area-info span { width: 70%; display: inline-block; margin-left: 5%; }
.portal-detail-dialog .area-info .license-info { position: relative; }
.portal-detail-dialog .area-info .license-info button { position: absolute; top: 0px; right: 0px; }

.portal-detail-dialog .area-info .module-info .module { width: 100%; clear: both; margin-bottom: 10px; }
.portal-detail-dialog .area-info .module-info .module span { width: 80%; float: left; margin-left: 0; }
.portal-detail-dialog .area-info .module-info .module .actions { width: 15%; float: right; }
.portal-detail-dialog .area-info .module-info .module .actions .onoffswitch { display: inline-block; }
.portal-detail-dialog .area-info .module-info .module .actions .edit { display: inline-block; }
.portal-detail-dialog .area-info .module-info .module .actions .edit i { color: #a8a8a8; font-size: 20px; }

.portal-detail-dialog .area-workspace { padding: 0 8px; margin-left: 10px; }

/*****************
 * TOOL: ON/OFF SWITCH
 *****************/
.onoffswitch { position: relative; width: 50px; -webkit-user-select:none; -moz-user-select:none; -ms-user-select: none; }
.onoffswitch-checkbox { display: none; }
.onoffswitch-label { display: block; overflow: hidden; cursor: pointer; height: 16px; padding: 0; line-height: 16px; border: 2px solid #CCCCCC; border-radius: 16px; background-color: #FFFFFF; transition: background-color 0.3s ease-in; }
.onoffswitch-label:before { content: ""; display: block; width: 16px; margin: 0px; background: #FFFFFF; position: absolute; top: 0; bottom: 0; right: 32px; border: 2px solid #CCCCCC; border-radius: 16px; transition: all 0.3s ease-in 0s; }
.onoffswitch-checkbox:checked + .onoffswitch-label { background-color: #ff6b36; }
.onoffswitch-checkbox:checked + .onoffswitch-label, .onoffswitch-checkbox:checked + .onoffswitch-label:before { border-color: #ff6b36; }
.onoffswitch-checkbox:checked + .onoffswitch-label:before { right: 0px; }

/*****************
 * Button: account management producer hover
 *****************/
.interactive-hyperlink:hover { text-decoration:underline; }

/*****************
 * Survey list tool different height
 *****************/
.survey .tool-appbuilder .ab-steps > .tool-list > .tool-list-body > .tool-list-items { height: calc(100% - 50px); }


/*****************
 * mx-action block
 *****************/
.mx-action-block, .import-block { height: 100%; width: 100%; background-color: #F8F8F8; padding: 40px; padding-top: 20px; box-sizing: border-box; color: black; transition: .2s all ease; border-radius: 5px; margin: 0px;}
.mx-action-block:hover, .import-block:hover, .mx-action-block.active, .import-block.active { background-color: #EBEBEB; cursor: pointer; }
.mx-action-block-icon { font-size: 50px; }
.mx-action-block-header, .import-block-header { font-size: 20px; font-weight: bold; }
.mx-action-block-content, .import-block-content { margin-top: 5px; }
.mx-action-col-margin, .import-block-margin { margin-top: 15px; margin-bottom: 15px; }
.mx-action-block.list-item, .import-block.list-item { margin: 10px 0px; height: initial;}
.mx-action-block.disabled, .import-block.disabled { cursor: initial !important; opacity: 0.6; background-color: #F8F8F8 !important;}
.mx-action-title .title { font-size: 25px; font-weight: bold; }
.mx-action-title .description { font-size: 14px; }

.status-bullet.success, .dialog_workflow_analytics .status-bullet.success { color: #28a745; }
.status-bullet.warning, .dialog_workflow_analytics .status-bullet.warning { color: #ffc107; }
.status-bullet.error, .dialog_workflow_analytics .status-bullet.error { color: #dc3545; }