/* Fonts */
.font-regular {
  font-family: 'Karla', sans-serif;
  font-weight: 400;
}
.font-bold {
  font-family: 'Karla', sans-serif;
  font-weight: 700;
}
/* Font Colors */
/* Base Colors */
/* Shades of Gray */
/* Hightlight */
/* Error */
/* Info */
/* Success */
/* Language Specific */
/* Shadow Functions */
.shadow-default {
  -moz-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
}
.shadow-off {
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.shadow-language-specific {
  -moz-box-shadow: inset 3px 0 0 0 #FFCC66;
  -webkit-box-shadow: inset 3px 0 0 0 #FFCC66;
  box-shadow: inset 3px 0 0 0 #FFCC66;
}
.shadow-control {
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.shadow-control:focus {
  -moz-box-shadow: 0 0 8px #9C9E9F;
  -webkit-box-shadow: 0 0 8px #9C9E9F;
  box-shadow: 0 0 8px #9C9E9F;
}
.shadow-control.validation-error:focus {
  -moz-box-shadow: 0 0 8px #ff8282;
  -webkit-box-shadow: 0 0 8px #ff8282;
  box-shadow: 0 0 8px #ff8282;
}
.shadow-control.language-specific {
  -moz-box-shadow: inset 3px 0 0 0 #FFCC66;
  -webkit-box-shadow: inset 3px 0 0 0 #FFCC66;
  box-shadow: inset 3px 0 0 0 #FFCC66;
}
.shadow-control.language-specific:focus {
  -moz-box-shadow: inset 3px 0 0 0 #FFCC66, 0 0 8px #CCCCCC;
  -webkit-box-shadow: inset 3px 0 0 0 #FFCC66, 0 0 8px #CCCCCC;
  box-shadow: inset 3px 0 0 0 #FFCC66, 0 0 8px #CCCCCC;
}
.shadow-control.language-specific.validation-error:focus {
  -moz-box-shadow: inset 3px 0 0 0 #FFCC66, 0 0 8px #ff8282;
  -webkit-box-shadow: inset 3px 0 0 0 #FFCC66, 0 0 8px #ff8282;
  box-shadow: inset 3px 0 0 0 #FFCC66, 0 0 8px #ff8282;
}
/* --- Messagebox ---------------------------------------------------  */
.error-box,
.info-box,
.success-box {
  margin-bottom: 15px;
}
.error-box ul {
  padding-left: 0;
  margin-bottom: 0;
}
.success-box p,
.info-box p,
.error-box li {
  display: table;
  max-width: 600px;
  border: 3px solid;
  border-left-width: 36px;
  padding: 7px 12px 8px 12px;
  margin-bottom: 5px;
}
.success-box p::before,
.info-box p::before,
.error-box li::before {
  display: block;
  position: relative;
  color: #FFFFFF;
  font-size: 24px;
  left: -42px;
  top: 19px;
  margin-top: -24px;
}
.success-box p {
  border-color: #1C9F23;
}
.info-box p {
  border-color: #FDB427;
}
.error-box li {
  border-color: #ff3333;
}
.error-box li a {
  color: #ff3333;
  border-bottom: #ff3333;
}
.error-box li a:hover,
.error-box li a:focus {
  border-bottom: 1px solid #3C3C3C;
  color: #3C3C3C;
}
/* --- Login --------------------------------------------------------  */
div.panel.login-panel {
  margin: 150px auto 0 auto;
  padding: 10px;
  width: 493px;
}
div.panel.login-panel .panel-body {
  padding: 15px 5px 0 5px;
  border: 0;
}
.login-logo {
  margin-bottom: 20px;
}
.login-welcome {
  margin-bottom: 18px;
  color: #9C9E9F;
  text-transform: uppercase;
  font-size: 20px;
  line-height: 22px;
  font-family: 'Karla', sans-serif;
  font-weight: 400;
}
.login-mask {
  padding-top: 4px;
  position: relative;
}
.login-mask:after {
  position: absolute;
  right: 5px;
  top: 0;
  font-size: 60px;
  color: #EDEDED;
}
.form.form-horizontal.login-mask .form-group .col-left {
  width: 215px;
}
.form.form-horizontal.login-mask .form-group .col-right {
  width: auto;
}
/* --- Change Password ----------------------------------------------  */
.form.form-horizontal.changepassword-mask {
  position: relative;
}
.form.form-horizontal.changepassword-mask:after {
  position: absolute;
  right: 30px;
  top: 0;
  font-size: 60px;
  color: #EDEDED;
}
.form.form-horizontal.changepassword-mask .form-group .col-left {
  width: 30%;
}
.form.form-horizontal.changepassword-mask .form-group .col-right {
  width: 70%;
}
/* --- Dashboard ----------------------------------------------------  */
.dashboard .dashboard-container {
  display: block;
  float: left;
  padding-right: 25px;
  width: 275px;
}
.dashboard .dashboard-container .item {
  z-index: 10;
  display: table;
  margin-bottom: 20px;
  padding: 10px 15px;
  width: 100%;
  height: 300px;
  background-color: #EDEDED;
  cursor: pointer;
  position: relative;
  font-size: 14px;
}
.dashboard .dashboard-container .item h2 {
  display: table-header-group;
  text-transform: uppercase;
  font-size: 24px;
  font-family: 'Karla', sans-serif;
  font-weight: 700;
}
.dashboard .dashboard-container .item p {
  display: table-cell;
  vertical-align: bottom;
  text-transform: uppercase;
}
.dashboard .dashboard-container .item a {
  display: block;
  border-bottom: 1px solid transparent;
  color: #3C3C3C;
}
.dashboard .dashboard-container .item:hover {
  background-color: #313131;
  -moz-transform: scale(1.03);
  -ms-transform: scale(1.03);
  -o-transform: scale(1.03);
  -webkit-transform: scale(1.03);
  transform: scale(1.03);
  -moz-transition: all 0.2s ease-in-out;
  -o-transition: all 0.2s ease-in-out;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
}
.dashboard .dashboard-container .item:hover h2,
.dashboard .dashboard-container .item:hover a {
  color: #FFFFFF;
}
.dashboard .dashboard-container .item:hover a:hover,
.dashboard .dashboard-container .item:hover a:focus {
  color: #E46D00;
}
.dashboard .dashboard-container .item:after {
  color: #FFFFFF;
  font-size: 100px;
  position: absolute;
  top: 35%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
.dashboard .dashboard-container.extras .item:after {
  left: 45%;
}
@media (min-width: 920px) {
  .dashboard .dashboard-container.newrow {
    clear: both;
  }
}
/* --- Content Browser ----------------------------------------------- */
/* Tiles View */
.contentbrowser-contents > ul {
  margin: 0 -2px 0 -2px;
  padding-left: 0;
  list-style: none;
}
.contentbrowser-contents > ul > li {
  display: inline-block;
  margin: 0 2px 4px 2px;
}
.contentbrowser-contents > ul > li > div {
  padding: 5px 5px 5px 5px;
  width: 110px;
  border: 1px solid #CCCCCC;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  background-color: White;
  color: #3C3C3C;
  text-align: center;
  font-size: 10px;
  cursor: pointer;
}
.contentbrowser-contents > ul > li > div > div.image {
  margin: 0 auto;
  width: 60px;
  height: 60px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.contentbrowser-contents > ul > li > div span {
  display: block;
}
.contentbrowser-contents > ul > li > div span.ellipsis {
  overflow: hidden;
  width: 102px;
  -ms-text-overflow: ellipsis;
  -o-text-overflow: ellipsis;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.contentbrowser-contents > ul > li > div:hover {
  background-color: #FFDC80;
}
.contentbrowser-contents > ul > li > div.selected {
  background-color: #FF8D00;
}
/* Table View */
.contentbrowser-datatable table.gridview tbody tr.selected {
  background-color: #FF8D00;
  color: #FFFFFF;
}
/* --- Structure Header --------------------------------------------- */
div.form.structure-header {
  position: relative;
  height: 34px;
}
div.form.structure-header .form-group {
  margin-bottom: 0;
}
div.form.structure-header .form-submit {
  margin: 0;
}
div.form.structure-header div.left {
  padding-right: 70px;
}
div.form.structure-header div.right {
  position: absolute;
  top: 3px;
  right: 0;
  width: 70px;
}
/* --- Form Item Dialog ----------------------------------------------- */
.modal-formitem-overflow {
  padding-right: 10px;
}
.modal-formitem-overflow div.col-right {
  overflow: scroll;
  padding: 0px 5px 5px 5px !important;
  width: 110px;
  border: 1px solid #CCCCCC;
  -moz-border-radius: 4px;
  -webkit-border-radius: 4px;
  border-radius: 4px;
  background-color: #FFFFFF;
  color: #3C3C3C;
  text-align: left;
  font-size: 12px;
}
/* New List Dialog*/
.list-zipupload i.tooltip {
  margin-left: 5px;
  vertical-align: top;
}
.list-zipupload div.tooltip {
  width: 420px;
}
.list-zipupload div.tooltip .tooltip-inner {
  max-width: 420px;
}
/* Publication */
.btn.btn-primary.btn-publish {
  margin-left: 10px;
}
div.status-online {
  color: #1C9F23;
}
div.status-planned {
  color: #E46D00;
}
div.status-expired {
  color: #9C9E9F;
}
/* Media List */
.medialist-thumb {
  width: 45px;
  height: 30px;
  background-position: center;
  background-repeat: no-repeat;
  background-size: contain;
}
.mediadetail-preview {
  width: 100%;
  height: 240px;
}
.mediadetail-preview img {
  max-width: 100%;
  max-height: 100%;
}
/* Content Direct Language Links */
.language-link,
.language-link-nottranslated {
  display: inline-block;
  padding: 4px;
  color: #1C9F23;
  text-align: center;
  text-transform: uppercase;
  font-family: 'Karla', sans-serif;
  font-weight: 700;
}
tr:hover .language-link,
tr:hover .language-link-nottranslated {
  color: #FFFFFF;
}
.language-link-disabled,
tr:hover .language-link-disabled {
  color: #3C3C3C;
}
tr:hover .language-link-disabled:hover {
  color: #FFFFFF;
}
/* --- Content Association ----------------------------------------------  */
.content-association {
  position: relative;
}
.content-association .col-right {
  padding-right: 60px;
}
.content-association .col-right .form-control-edit {
  position: absolute;
  top: 1px;
  right: 15px;
}
.content-association .col-right .form-control-edit a {
  font-size: 14px;
  color: #3C3C3C;
}
.content-association .col-right .form-control-edit a:hover,
.content-association .col-right .form-control-edit a:focus {
  border-bottom: none;
}
/* --- Search Bar ----------------------------------------------  */
.form-horizontal .form-group.search-bar {
  margin-bottom: 15px;
}
.search-bar .resetIcon {
  color: #3C3C3C;
}
.search-bar .resetIcon:hover,
.search-bar .resetIcon:focus {
  border-bottom: none;
  text-decoration: none;
}
.search-bar .resetIcon i {
  vertical-align: sub;
}