.page-content .element-layout .element-content {
  height: 100%;
  width: 100%;
}
#colorbox {
  outline: 0;
}
.popup-notif {
  background: #f0f0f0;
  font-family: 'Open Sans';
  width: 680px;
}
.popup-notif p {
  margin-bottom: 10px;
}
.popup-notif strong {
  font-weight: bold;
}
.popup-notif .popup-notif-header {
  padding: 0 20px;
  background: #4d1657;
  height: 50px;
}
.popup-notif .popup-notif-header h3 {
  font-size: 14px;
  color: #fff;
  font-weight: bold;
  line-height: 50px;
  height: 50px;
}
.popup-notif .popup-notif-content {
  padding: 15px 20px;
}
.popup-notif .popup-notif-content * {
  font-size: 12px;
  color: #262626;
}
.popup-notif .popup-notif-footer {
  padding: 15px 20px;
}
.popup-notif .btn {
  border: none;
  background: #946a9c;
  color: #fff;
  font-size: 12px;
  display: inline-block;
  height: 30px;
  line-height: 30px;
  padding: 0 10px;
  outline: 0;
  cursor: pointer;
}
/* CK EDITOR */
.editor ul {
  margin-bottom: 10px !important;
}
.editor ul li {
  margin-left: 17px !important;
  list-style-type: disc;
}
.editor ol {
  margin-bottom: 10px !important;
}
.editor ol li {
  margin-left: 17px !important;
  list-style-type: decimal;
}
.editor dl {
  margin-bottom: 10px !important;
}
.editor dl dt {
  font-weight: bold;
}
.editor dl dd {
  margin-left: 17px !important;
}
.editor strong {
  font-weight: bold;
}
.editor em {
  font-style: italic;
}
.editor u {
  text-decoration: underline;
}
/* Full Block Loading */
.loading-layout-fullblock {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background: rgba(255, 255, 255, 0.5);
  height: 100%;
  z-index: 10000;
  -webkit-transition: all 300ms linear;
  -moz-transition: all 300ms linear;
  -ms-transition: all 300ms linear;
  -o-transition: all 300ms linear;
  transition: all 300ms linear;
  opacity: 0;
}
.loading-layout-fullblock .loading {
  width: 44px;
  height: 0;
  position: fixed;
  top: 50%;
  left: 50%;
  background-color: #fff;
  z-index: 10001;
  margin-left: -72px;
  padding: 0 50px;
  background-image: url(../../general/images/loader.gif);
  background-repeat: no-repeat;
  background-position: 50px 35px;
  -webkit-border-radius: 10px 10px 10px 10px;
  border-radius: 10px 10px 10px 10px;
  -webkit-transition: all 500ms ease;
  -moz-transition: all 500ms ease;
  -ms-transition: all 500ms ease;
  -o-transition: all 500ms ease;
  transition: all 500ms ease;
  overflow: hidden;
}
.loading-layout-fullblock .loading:after {
  content: 'LOADING';
  font-size: 10px;
  font-weight: bold;
  color: #9177e0;
  position: absolute;
  bottom: 35px;
  left: 0;
  text-align: center;
  width: 100%;
}
.loading-layout-fullblock .loading.active {
  height: 44px;
  padding-top: 50px;
  padding-bottom: 50px;
  margin-top: -72px;
}
/*
* --------------------------------
* ALERT MESSAGES
* --------------------------------
*/
.alert {
  background: #fff;
  line-height: 30px;
  height: 30px;
  padding-right: 10px;
  margin-bottom: 10px;
  position: relative;
}
.alert .alert-label {
  float: left;
  margin-right: 10px;
  display: block;
  color: #fff;
  padding: 0 10px;
}
.alert .alert-close {
  float: right;
  font-weight: bold;
  cursor: pointer;
}
.alert.success {
  color: #12ae24;
}
.alert.success .alert-label {
  background: #12ae24;
}
.alert.error {
  color: #f44545;
}
.alert.error .alert-label {
  background: #f44545;
}
.alert.error.border {
  border: 1px solid #f44545;
}
.alert.warning {
  color: #ffc102;
}
.alert.warning .alert-label {
  background: #ffc102;
}
.alert.info {
  color: #0070f3;
}
.alert.info .alert-label {
  background: #0070f3;
}
.alert.multi {
  height: auto;
  padding: 0 10px;
}
.alert.multi .alert-label {
  float: none;
  margin-right: 0;
  width: 100%;
  margin-left: -10px;
}
.alert.multi .alert-close {
  position: absolute;
  right: 10px;
  top: 5px;
  color: #fff;
  top: 0;
}