body {
  overflow-x: hidden;
}

body[data-controller=Signin] {
  height: 100vh;
}
body[data-controller=Signin] #app {
  height: inherit;
}

.login {
  background-color: #265daf;
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  height: fit-content;
}

.btn-circle {
  background: transparent;
  border-radius: 100% !important;
  height: 40px;
  font-size: 16px;
  padding: 12px 0;
  width: 40px;
}

.btn-circle-xs {
  height: 30px;
  line-height: 16px;
  padding: 6px 0px;
  width: 30px;
}

/*LOADER FB*/
.lds-fb {
  display: inline-block;
  position: relative;
  width: 40px;
  height: 40px;
}

.lds-fb div {
  display: inline-block;
  position: absolute;
  left: 4px;
  width: 8px;
  background: #fff;
  box-shadow: 0px 0px 5px 1px rgba(0, 0, 0, 0.4);
  animation: lds-fb 1.2s cubic-bezier(0, 0.5, 0.5, 1) infinite;
}

.lds-fb div:nth-child(1) {
  left: 4px;
  animation-delay: -0.24s;
}

.lds-fb div:nth-child(2) {
  left: 16px;
  animation-delay: -0.12s;
}

.lds-fb div:nth-child(3) {
  left: 28px;
  animation-delay: 0;
}

@keyframes lds-fb {
  0% {
    top: 4px;
    height: 32px;
  }
  50%, 100% {
    top: 12px;
    height: 16px;
  }
}
/*LOADING BTN*/
a .content-loader,
button .content-loader {
  text-align: center;
  position: relative;
  left: calc(50% - 10px);
  top: calc(50% - 10px);
  width: 20px;
  height: 20px;
  background-color: transparent;
  border-radius: 100%;
}
a .content-loader .loader-circle,
button .content-loader .loader-circle {
  position: absolute;
  left: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px #eee;
  opacity: 1;
}
a .content-loader .loader-line-mask,
button .content-loader .loader-line-mask {
  position: absolute;
  right: 0%;
  top: 0%;
  width: 10px;
  height: 20px;
  margin-right: 10px;
  margin-top: 0px;
  overflow: hidden;
  -webkit-transform-origin: 10px 10px;
  -moz-transform-origin: 10px 10px;
  -ms-transform-origin: 10px 10px;
  -o-transform-origin: 10px 10px;
  transform-origin: 10px 10px;
  -webkit-mask-image: -webkit-linear-gradient(top, #000000, rgba(0, 0, 0, 0));
  -webkit-animation: rotate 1.2s infinite linear;
  -moz-animation: rotate 1.2s infinite linear;
  -o-animation: rotate 1.2s infinite linear;
  animation: rotate 1.2s infinite linear;
}
a .content-loader .loader-line-mask .loader-line,
button .content-loader .loader-line-mask .loader-line {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px #666;
}

.btn-group .btn-circle .content-loader {
  top: 0;
}

/*LOADING INPUT*/
.cont-form-input {
  position: relative;
}
.cont-form-input .content-loader {
  text-align: center;
  position: absolute;
  right: 0;
  top: 1px;
  width: 20px;
  height: 20px;
  background-color: #fff;
  border-radius: 100%;
}
.cont-form-input .content-loader .loader-circle {
  position: absolute;
  right: 0;
  top: 0;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px #eee;
  opacity: 1;
}
.cont-form-input .content-loader .loader-line-mask {
  position: absolute;
  right: 0%;
  top: 0%;
  width: 10px;
  height: 20px;
  margin-right: 10px;
  margin-top: 0px;
  overflow: hidden;
  -webkit-transform-origin: 10px 10px;
  -moz-transform-origin: 10px 10px;
  -ms-transform-origin: 10px 10px;
  -o-transform-origin: 10px 10px;
  transform-origin: 10px 10px;
  -webkit-mask-image: -webkit-linear-gradient(top, #000000, rgba(0, 0, 0, 0));
  -webkit-animation: rotate 1.2s infinite linear;
  -moz-animation: rotate 1.2s infinite linear;
  -o-animation: rotate 1.2s infinite linear;
  animation: rotate 1.2s infinite linear;
}
.cont-form-input .content-loader .loader-line-mask .loader-line {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px #666;
}
.cont-form-input .content-loader .fa-check {
  color: #1abd36;
}
.cont-form-input .content-loader .fa-times {
  color: #f83535;
}

/*LOADING LOGO*/
.vertical-centered-box {
  position: absolute;
  width: 100%;
  height: 100%;
  text-align: center;
  background-color: transparent;
  top: 0;
  left: 0;
}
.vertical-centered-box .content {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  vertical-align: middle;
  text-align: left;
  font-size: 0;
}
.vertical-centered-box .content .loader-circle {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px #eee;
  opacity: 1;
  margin-left: -30px;
  margin-top: -30px;
}
.vertical-centered-box .content .loader-line-mask {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 30px;
  height: 60px;
  margin-left: -30px;
  margin-top: -30px;
  overflow: hidden;
  -webkit-transform-origin: 30px 30px;
  -moz-transform-origin: 30px 30px;
  -ms-transform-origin: 30px 30px;
  -o-transform-origin: 30px 30px;
  transform-origin: 30px 30px;
  -webkit-mask-image: -webkit-linear-gradient(top, #000000, rgba(0, 0, 0, 0));
  -webkit-animation: rotate 1.2s infinite linear;
  -moz-animation: rotate 1.2s infinite linear;
  -o-animation: rotate 1.2s infinite linear;
  animation: rotate 1.2s infinite linear;
}
.vertical-centered-box .content .loader-line-mask .loader-line {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  box-shadow: inset 0 0 0 1px #666;
}

.vertical-centered-box:after {
  content: "";
  display: inline-block;
  height: 100%;
  vertical-align: middle;
  margin-right: -0.25em;
}

svg.sk_loader_svg {
  width: 30px;
}
svg.sk_loader_svg rect, svg.sk_loader_svg path {
  fill: #ccc !important;
}

/*lesshat-selector {
-lh-property: 0; } */
@-webkit-keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@-moz-keyframes rotate {
  0% {
    -moz-transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(360deg);
  }
}
@-o-keyframes rotate {
  0% {
    -o-transform: rotate(0deg);
  }
  100% {
    -o-transform: rotate(360deg);
  }
}
@keyframes rotate {
  0% {
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/*[not-existing] {
zoom: 1;
}*/
/*
lesshat-selector {
-lh-property: 0; }
@-webkit-keyframes fade{ 0% { opacity: 1;} 50% { opacity: 0.25;}}
@-moz-keyframes fade{ 0% { opacity: 1;} 50% { opacity: 0.25;}}
@-o-keyframes fade{ 0% { opacity: 1;} 50% { opacity: 0.25;}}
@keyframes fade{ 0% { opacity: 1;} 50% { opacity: 0.25;}}
[not-existing] {
zoom: 1;
}
lesshat-selector {
-lh-property: 0; }
@-webkit-keyframes fade-in{ 0% { opacity: 0;} 100% { opacity: 1;}}
@-moz-keyframes fade-in{ 0% { opacity: 0;} 100% { opacity: 1;}}
@-o-keyframes fade-in{ 0% { opacity: 0;} 100% { opacity: 1;}}
@keyframes fade-in{ 0% { opacity: 0;} 100% { opacity: 1;}}
[not-existing] {
zoom: 1;
}
*/
/*LOADING*/
.lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 64px;
  height: 64px;
}
.lds-ellipsis div {
  position: absolute;
  top: 27px;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: #fff;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.lds-ellipsis div:nth-child(1) {
  left: 6px;
  animation: lds-ellipsis1 0.6s infinite;
}
.lds-ellipsis div:nth-child(2) {
  left: 6px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(3) {
  left: 26px;
  animation: lds-ellipsis2 0.6s infinite;
}
.lds-ellipsis div:nth-child(4) {
  left: 45px;
  animation: lds-ellipsis3 0.6s infinite;
}

.btn .lds-ellipsis {
  height: 41px;
}
.btn .lds-ellipsis div {
  top: 15px;
}

.btn-sm .lds-ellipsis,
.btn-xs .lds-ellipsis,
.btn-xs-important .lds-ellipsis {
  height: 13px;
}
.btn-sm .lds-ellipsis div,
.btn-xs .lds-ellipsis div,
.btn-xs-important .lds-ellipsis div {
  top: 4px;
}

.input-group-addon .lds-ellipsis {
  height: 27px;
}
.input-group-addon .lds-ellipsis div {
  top: 11px;
}

.lds-ellipsis.loading-sk-green div {
  background-color: #666;
}

.btn-inverse .lds-ellipsis.loading-sk-green div,
.btn-primary .lds-ellipsis.loading-sk-green div {
  background-color: #fff;
}

.btn-sm .lds-ellipsis.loading-sk-green div,
.btn-xs .lds-ellipsis.loading-sk-green div,
.btn-xs-important .lds-ellipsis.loading-sk-green div {
  width: 9px;
  height: 9px;
}

.loading-2-circles .lds-ellipsis.loading-sk-green div {
  width: 8px;
  height: 8px;
}
.loading-2-circles .lds-ellipsis {
  display: inline-block;
  position: relative;
  width: 41px;
  height: 41px;
}
.loading-2-circles .lds-ellipsis div {
  position: absolute;
  top: 16px;
  border-radius: 50%;
  background: #666;
  animation-timing-function: cubic-bezier(0, 1, 1, 0);
}
.loading-2-circles .lds-ellipsis div:nth-child(1) {
  left: 6px;
  animation: lds-ellipsis1 0.6s infinite;
}
.loading-2-circles .lds-ellipsis div:nth-child(2) {
  left: 6px;
  animation: lds-ellipsis2 0.6s infinite;
}
.loading-2-circles .lds-ellipsis div:nth-child(3) {
  display: none;
}
.loading-2-circles .lds-ellipsis div:nth-child(4) {
  left: 24.5px;
  animation: lds-ellipsis3 0.6s infinite;
}

.btn-sm .lds-ellipsis.loading-sk-green div,
.btn-xs .lds-ellipsis.loading-sk-green div,
.btn-xs-important .lds-ellipsis.loading-sk-green div {
  width: 9px;
  height: 9px;
}

.btn-sm.loading-2-circles .lds-ellipsis.loading-sk-green,
.btn-xs.loading-2-circles .lds-ellipsis.loading-sk-green,
.btn-xs-important.loading-2-circles .lds-ellipsis.loading-sk-green {
  height: 13px;
}
.btn-sm.loading-2-circles .lds-ellipsis.loading-sk-green div,
.btn-xs.loading-2-circles .lds-ellipsis.loading-sk-green div,
.btn-xs-important.loading-2-circles .lds-ellipsis.loading-sk-green div {
  top: 5px;
}

.loading-xs .lds-ellipsis {
  height: 17px;
}
.loading-xs .lds-ellipsis div {
  top: 5px;
}

.btn-red .lds-ellipsis div {
  background-color: #fff;
}

.btn-default .lds-ellipsis div {
  background-color: #666;
}

.loading-white .lds-ellipsis div {
  background-color: #fff;
}

@keyframes lds-ellipsis1 {
  0% {
    transform: scale(0);
  }
  100% {
    transform: scale(1);
  }
}
@keyframes lds-ellipsis3 {
  0% {
    transform: scale(1);
  }
  100% {
    transform: scale(0);
  }
}
@keyframes lds-ellipsis2 {
  0% {
    transform: translate(0, 0);
  }
  100% {
    transform: translate(19px, 0);
  }
}
/*BOUNCE*/
.bounce-wrapper {
  width: 200px;
  height: 60px;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.bounce-circle {
  width: 20px;
  height: 20px;
  position: absolute;
  border-radius: 50%;
  background-color: #4d6593;
  left: 15%;
  transform-origin: 50%;
  animation: bouncecircle 0.5s alternate infinite ease;
}

@keyframes bouncecircle {
  0% {
    top: 60px;
    height: 5px;
    border-radius: 50px 50px 25px 25px;
    transform: scaleX(1.7);
  }
  40% {
    height: 20px;
    border-radius: 50%;
    transform: scaleX(1);
  }
  100% {
    top: 0%;
  }
}
.bounce-circle:nth-child(2) {
  left: 45%;
  animation-delay: 0.2s;
}

.bounce-circle:nth-child(3) {
  left: auto;
  right: 15%;
  animation-delay: 0.3s;
}

.bounce-shadow {
  width: 20px;
  height: 4px;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.5);
  position: absolute;
  top: 62px;
  transform-origin: 50%;
  z-index: -1;
  left: 15%;
  filter: blur(1px);
  animation: bounceshadow 0.5s alternate infinite ease;
}

@keyframes bounceshadow {
  0% {
    transform: scaleX(1.5);
  }
  40% {
    transform: scaleX(1);
    opacity: 0.7;
  }
  100% {
    transform: scaleX(0.2);
    opacity: 0.4;
  }
}
.bounce-shadow:nth-child(4) {
  left: 45%;
  animation-delay: 0.2s;
}

.bounce-shadow:nth-child(5) {
  left: auto;
  right: 15%;
  animation-delay: 0.3s;
}

.bounce-wrapper span {
  position: absolute;
  top: 75px;
  font-size: 20px;
  left: 15%;
}

/*TIMER*/
@-moz-keyframes timer-loader {
  0% {
    -moz-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@-webkit-keyframes timer-loader {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
@keyframes timer-loader {
  0% {
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }
  100% {
    -moz-transform: rotate(360deg);
    -ms-transform: rotate(360deg);
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}
/* :not(:required) hides this rule from IE9 and below */
.timer-loader:not(:required) {
  border: 6px solid #869ac0;
  -moz-border-radius: 24px;
  -webkit-border-radius: 24px;
  border-radius: 24px;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: inline-block;
  overflow: hidden;
  position: relative;
  text-indent: -9999px;
  width: 48px;
  height: 48px;
}

.timer-loader:not(:required)::before {
  -moz-animation: timer-loader 1250ms infinite linear;
  -webkit-animation: timer-loader 1250ms infinite linear;
  animation: timer-loader 1250ms infinite linear;
  -moz-transform-origin: 3px 3px;
  -ms-transform-origin: 3px 3px;
  -webkit-transform-origin: 3px 3px;
  transform-origin: 3px 3px;
  background: #869ac0;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  content: "";
  display: block;
  position: absolute;
  width: 6px;
  height: 19.2px;
  left: 15px;
  top: 15px;
}

.timer-loader:not(:required)::after {
  -moz-animation: timer-loader 15000ms infinite linear;
  -webkit-animation: timer-loader 15000ms infinite linear;
  animation: timer-loader 15000ms infinite linear;
  -moz-transform-origin: 3px 3px;
  -ms-transform-origin: 3px 3px;
  -webkit-transform-origin: 3px 3px;
  transform-origin: 3px 3px;
  background: #869ac0;
  -moz-border-radius: 3px;
  -webkit-border-radius: 3px;
  border-radius: 3px;
  content: "";
  display: block;
  position: absolute;
  width: 6px;
  height: 16px;
  left: 15px;
  top: 15px;
}

a {
  color: #5571a4;
}

a:hover, a:focus {
  color: #34486d;
  text-decoration: none;
}

.circle {
  border-radius: 100%;
}

.toasts-container {
  z-index: 1060;
}

.d-hide {
  opacity: 0;
  pointer-events: none;
}

.app-header {
  z-index: 1032;
}

.sidebar-form {
  margin-top: 60px;
  position: fixed;
  top: 0;
  right: -600px;
  bottom: 0;
  width: 400px;
  max-width: 75%;
  background-color: #dbdfeb;
  box-shadow: 0px 0px 20px 1px rgba(0, 0, 0, 0.3);
  transition: right 0.3s ease;
  z-index: 1031;
}
.sidebar-form .sidebar-body {
  height: calc(100% - 60px);
  overflow-y: auto;
  padding: 12px 15px;
}
.sidebar-form .sidebar-footer {
  height: 60px;
  padding: 12px 15px;
  border-top: solid 1px #c9d2e3;
  text-align: right;
}

.sidebar-form.open {
  right: 0;
}

a.btn[data-action=new-item] {
  position: fixed;
  bottom: 10px;
  border-radius: 100%;
  width: 70px;
  height: 70px;
  font-size: 22px;
  padding: 17px 0;
  right: calc(50% - 35px - 120px);
  z-index: 1030;
}

.app-sidebar-minified a.btn[data-action=new-item] {
  right: calc(50% - 35px - 32px);
}

@media (max-width: 991.98px) {
  a.btn[data-action=new-item] {
    right: calc(50% - 35px) !important;
  }
}
.col-team,
.col-portfolio {
  margin-bottom: 2rem;
  background-color: #eceef4;
}
.col-team.ui-sortable-helper,
.col-portfolio.ui-sortable-helper {
  box-shadow: rgba(0, 0, 0, 0.4) 0px 10px 30px -3px;
  border-radius: 20px;
}
.col-team.ui-sortable-placeholder,
.col-portfolio.ui-sortable-placeholder {
  background-color: rgba(26, 189, 54, 0.1) !important;
  border-radius: 20px;
  visibility: visible !important;
}
.col-team a[href="#delete"],
.col-portfolio a[href="#delete"] {
  position: absolute;
  top: 64%;
  display: inline-block;
  left: calc(50% - 17px);
  background-color: white;
  width: 35px;
  height: 35px;
  text-align: center;
  border-radius: 100%;
  padding: 8px 0;
  color: #ff5050;
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.4);
}
.col-team a:not([href="#delete"]),
.col-portfolio a:not([href="#delete"]) {
  text-align: center;
  display: block;
  padding: 15px;
}
.col-team a:not([href="#delete"]) .cont-team-status,
.col-team a:not([href="#delete"]) .cont-portfolio-status,
.col-portfolio a:not([href="#delete"]) .cont-team-status,
.col-portfolio a:not([href="#delete"]) .cont-portfolio-status {
  position: absolute;
  top: 5px;
  left: 0;
  right: 0;
  z-index: 1;
}
.col-team a:not([href="#delete"]) .cont-team-status > span,
.col-team a:not([href="#delete"]) .cont-portfolio-status > span,
.col-portfolio a:not([href="#delete"]) .cont-team-status > span,
.col-portfolio a:not([href="#delete"]) .cont-portfolio-status > span {
  background-color: white !important;
}
.col-team a:not([href="#delete"]) .cont-portfolio-figure,
.col-portfolio a:not([href="#delete"]) .cont-portfolio-figure {
  height: 220px;
  width: 220px;
  border-radius: 90px;
  overflow: hidden;
  margin: auto;
  will-change: transform;
}
.col-team a:not([href="#delete"]) .cont-portfolio-figure figure,
.col-portfolio a:not([href="#delete"]) .cont-portfolio-figure figure {
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
  background-position: center;
  background-size: cover;
  background-color: #ebebeb;
}
.col-team a:not([href="#delete"]):hover .cont-portfolio-figure figure,
.col-portfolio a:not([href="#delete"]):hover .cont-portfolio-figure figure {
  transform: scale(1.1);
}
.col-team a:not([href="#delete"]) img,
.col-portfolio a:not([href="#delete"]) img {
  height: 60px;
  margin-top: 2rem;
  max-width: 100%;
}

.col-team a[href="#delete"] {
  top: 55%;
}
.col-team .cont-team-figure {
  height: 150px;
  width: 150px;
  border-radius: 50px;
  overflow: hidden;
  margin: auto;
  will-change: transform;
}
.col-team .cont-team-figure figure {
  width: 100%;
  height: 100%;
  transition: transform 0.6s ease;
  background-position: center;
  background-size: cover;
}
.col-team p {
  line-height: 1.5rem;
  text-align: center;
  color: #23292F;
}
.col-team p strong {
  letter-spacing: 0.15rem;
  text-transform: uppercase;
  display: block;
}
.col-team p small {
  color: #4CACFF;
  display: block;
  font-size: 0.9rem;
}

.upload-file-content a {
  display: inline-block;
}
.upload-file-content [data-target="#file-picture"] .file-placeholder,
.upload-file-content [data-target="#file-image"] .file-placeholder {
  height: 150px;
  width: 150px;
  border-radius: 60px;
  overflow: hidden;
  position: relative;
}
.upload-file-content [data-target="#file-picture"] .file-placeholder figure,
.upload-file-content [data-target="#file-image"] .file-placeholder figure {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
  background-color: #ebebeb;
}
.upload-file-content [data-target="#file-logo"] .file-placeholder {
  position: relative;
}
.upload-file-content [data-target="#file-logo"] .file-placeholder img {
  max-width: 100%;
  height: 50px;
}
.upload-file-content input[type=file] {
  display: none;
}
.upload-file-content .cont-loader {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  text-align: center;
  top: calc(50% - 20px);
}

.card-placeholder {
  height: 100%;
  height: 220px;
  text-align: center;
}
.card-placeholder .cont-btn-action {
  position: absolute;
  top: calc(50% - 35px);
  left: 0;
  right: 0;
}
.card-placeholder .cont-loader {
  position: absolute;
  top: calc(50% - 22px);
  left: 0;
  right: 0;
  z-index: 1;
}

.cont-help-articles-list .col-article-placeholer,
.cont-help-articles-list .col-article-item,
.cont-blog-articles-list .col-article-placeholer,
.cont-blog-articles-list .col-article-item {
  margin-bottom: 1rem;
}
.cont-help-articles-list .card-article,
.cont-blog-articles-list .card-article {
  height: 220px;
  background-position: center;
  background-size: cover;
}

.card-category {
  max-height: 250px;
}

.btn-action-icon-text {
  display: block;
}
.btn-action-icon-text i {
  background-color: #1abd36;
  width: 50px;
  height: 50px;
  text-align: center;
  padding: 18px 0;
  border-radius: 100%;
  color: #fff;
  margin-top: 0;
  transition: all 0.3s ease;
}
.btn-action-icon-text span {
  display: block;
  color: #666;
  text-transform: uppercase;
  font-size: 0.8rem;
  margin-top: 0;
  transition: all 0.3s ease;
}

.btn-action-icon-text:hover i {
  margin-top: -10px;
}
.btn-action-icon-text:hover span {
  margin-top: 10px;
}

.list-group-placeholder a {
  color: #666;
}
.list-group-placeholder a:hover {
  color: #666;
}

.cont-help-categories-list .col-placeholder,
.cont-help-categories-list .col-category-item,
.cont-blog-categories-list .col-placeholder,
.cont-blog-categories-list .col-category-item {
  margin-bottom: 1rem;
}

.cont-form-right {
  /*top: 90px;
  position: sticky;*/
  border-left: 1px solid #c9d2e3;
  padding: 0 0 1rem 1rem;
  height: 100%;
}

.note-editable p {
  margin-bottom: 0px;
}

.breadcrumb-item span.badge {
  color: #fff;
  font-size: 0.7rem;
  line-height: 0.8rem;
  margin-left: 0.8rem;
}

.cover-image-preview a {
  display: block;
}
.cover-image-preview a .cover-image-preview-img {
  height: 200px;
  background-size: cover;
  background-position: center;
  position: relative;
}
.cover-image-preview a .cover-image-preview-img .cont-loader {
  position: absolute;
  left: 0;
  right: 0;
  text-align: center;
  top: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.4);
  border-radius: 0.4rem;
}
.cover-image-preview a .cover-image-preview-img .cont-loader .lds-fb {
  top: calc(50% - 20px);
}

.input-file-hidden {
  display: none;
}

.mega-progress {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 5px;
  background-color: #eee;
}
.mega-progress .mega-progress-bar {
  background-color: #1abd36;
  height: 100%;
  transition: all 0.6s ease;
  width: 0;
}

.mega-progress.mega-progress-fixed {
  z-index: 9999999;
  position: fixed;
  top: 0px;
  left: 0px;
  width: 100%;
}

.cont-language-picker {
  position: absolute;
  top: 15px;
  right: 15px;
}
.cont-language-picker a img {
  height: 1rem;
  transition: all 0.3s ease;
}
.cont-language-picker a[data-status=inactive] img {
  filter: grayscale(1);
  opacity: 0.4;
}
.cont-language-picker a[data-status=active] img {
  filter: none;
  opacity: 1;
}

.note-editing-area blockquote {
  position: relative;
  margin-top: 35px;
  margin-bottom: 35px;
  padding: 30px 20px 0px;
  border: 0px;
  vertical-align: baseline;
  quotes: none;
  position: relative;
  text-align: center;
  color: rgb(0, 0, 0);
}
.note-editing-area blockquote:before {
  content: "";
  position: absolute;
  background-image: url(/assets/images/quotes.png);
  background-repeat: no-repeat;
  background-position: 50% 0;
  width: 24px;
  height: 36px;
  top: -10px;
  left: 50%;
  -webkit-transform: translateX(-50%);
  -moz-transform: translateX(-50%);
  transform: translateX(-50%);
}

.cont-list-hader-info {
  margin-bottom: 1rem;
}

/*Help Center Groups*/
.app-content-help-groups .cont-placeholder {
  margin-bottom: 2rem;
}
.app-content-help-groups h3 {
  font-size: 1rem;
}
.app-content-help-groups h3 img {
  height: 1rem;
  margin-top: -4px;
}
.app-content-help-groups .cont-help-groups .list-group {
  margin-bottom: 0.5rem;
}
.app-content-help-groups .cont-help-groups .list-group.ui-sortable-handle {
  cursor: grab;
}
.app-content-help-groups .cont-help-groups .list-group.ui-sortable-handle.ui-sortable-helper {
  cursor: grabbing;
}
.app-content-help-groups .cont-help-groups .list-group.ui-sortable-handle.ui-sortable-placeholder {
  border: dashed 1px #bbb;
  border-radius: 0.5rem;
  visibility: visible !important;
  background-color: #eee;
}

/*Modal*/
#photo_gallery .modal-dialog {
  /*height: calc(100vh - 3.50rem);*/
  height: 100%;
  width: 100%;
  max-width: 100%;
  margin: 0;
}
#photo_gallery .modal-dialog .modal-content {
  height: 100%;
}
#photo_gallery .modal-dialog .modal-content .modal-body {
  height: 100%;
  padding: 0;
}
#photo_gallery .modal-dialog .modal-content .modal-body .modal-container-fluid {
  height: 100%;
  padding: 0;
}
#photo_gallery .modal-dialog .modal-content .modal-body .modal-container-fluid .modal-row {
  height: 100%;
}
#photo_gallery .modal-dialog .modal-content .modal-body .modal-container-fluid .modal-row .modal-col-left,
#photo_gallery .modal-dialog .modal-content .modal-body .modal-container-fluid .modal-row .modal-col-right {
  height: 100%;
  overflow-y: auto;
}
#photo_gallery .modal-dialog .modal-content .modal-body .modal-container-fluid .modal-row .modal-col-left .cont-gallery-items {
  padding: 1rem;
}
#photo_gallery .modal-dialog .modal-content .modal-body .modal-container-fluid .modal-row .modal-col-right {
  border-left: solid 1px #eee;
  background-color: #222;
  color: #fff;
}
#photo_gallery .modal-dialog .modal-content .modal-body .modal-container-fluid .modal-row .modal-col-right .gallery-info-text {
  padding: 1rem;
}
#photo_gallery .col-placeholder {
  margin-bottom: 1rem;
}
#photo_gallery .col-placeholder .card {
  border: dashed 1px #eee !important;
  height: 100px;
}
#photo_gallery .col-placeholder .card .cont-btn-action {
  top: calc(50% - 22px);
}
#photo_gallery .col-placeholder .card .cont-btn-action a i {
  width: 30px;
  height: 30px;
  padding: 8px 0;
}
#photo_gallery .col-placeholder .card .cont-btn-action a span {
  font-size: 0.6rem;
}
#photo_gallery .col-placeholder .card .cont-btn-action a:hover i {
  margin-top: 0px;
}
#photo_gallery .col-placeholder .card .cont-btn-action a:hover span {
  margin-top: 0px;
}
#photo_gallery .col-gallery-item {
  margin-bottom: 1rem;
}
#photo_gallery .col-gallery-item .card-article {
  height: 100px;
  background-position: center;
  background-size: contain;
  background-repeat: no-repeat;
  box-shadow: 0rem 1rem 1rem -1rem rgba(0, 0, 0, 0.4);
  border: solid 1px #eee !important;
}
#photo_gallery .col-gallery-item .card-article .card-img-overlay {
  padding: 0 10px 0 10px;
}
#photo_gallery .col-gallery-item .card-article .card-img-overlay a[data-toggle=dropdown] i {
  text-shadow: 0px 0px 3px rgba(0, 0, 0, 0.7);
}
#photo_gallery .col-gallery-item .card-article .card-img-overlay a[data-toggle=dropdown]:hover {
  color: #fff;
}
#photo_gallery .col-gallery-item .card-article .card-btn-cover {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
}
#photo_gallery .gallery-info .gallery-info-image {
  height: 200px;
  margin-bottom: 2rem;
  box-shadow: 0rem 1rem 3rem -1rem rgba(0, 0, 0, 0.4);
  background-color: #666;
  display: flex;
  align-items: center;
  justify-content: center;
}
#photo_gallery .gallery-info .gallery-info-image img {
  max-width: 100%;
  max-height: 100%;
}
#photo_gallery .gallery-info .gallery-info-text .row {
  margin-bottom: 1rem;
}
#photo_gallery .gallery-info .gallery-info-text .row .col-12:first-child {
  color: #777;
}
#photo_gallery .gallery-info .gallery-info-text .row .col-12:last-child span {
  word-break: break-all;
}
#photo_gallery .cont-gallery-upload-manager .card-placeholder {
  height: initial;
  border: dashed 1px #eee !important;
  margin: 1rem;
  padding: 1rem;
}
#photo_gallery .cont-gallery-upload-manager .card-placeholder .cont-btn-action {
  position: initial;
}

.h3 .spinner-border {
  font-size: 0.6rem;
}

ol.breadcrumb {
  border-bottom: solid 1px #dae0ec;
}
ol.breadcrumb li svg {
  height: 30px;
}
ol.breadcrumb li svg path {
  fill: #808080;
}
ol.breadcrumb li a {
  font-weight: 400;
  font-size: 1rem;
  color: #666;
  line-height: 1.8rem;
}
ol.breadcrumb li a:not([data-toggle=modal]) {
  border-radius: 0.4rem;
  padding: 0 0.6rem;
}
ol.breadcrumb li a:not([data-toggle=modal]):hover {
  background-color: #e2e5ea;
}
ol.breadcrumb li a[data-toggle=modal] {
  display: inline-block;
  width: 30px;
  height: 30px;
  text-align: center;
  border-radius: 100%;
  background-color: rgba(0, 0, 0, 0.04);
  font-size: 0.8rem;
  padding: 0.3rem;
  line-height: 1.4rem;
  transition: all 0.3s ease;
  margin-left: 0.5rem;
}
ol.breadcrumb li a[data-toggle=modal]:hover {
  background-color: #ccc;
}

.breadcrumb-item + .breadcrumb-item {
  padding-left: 0 !important;
}

.breadcrumb-item + .breadcrumb-item::before {
  display: none;
}

#cont-breadcrumb.has-btn-floating {
  position: relative;
}
#cont-breadcrumb.has-btn-floating ol.breadcrumb {
  padding-right: 120px !important;
}
#cont-breadcrumb.has-btn-floating .btn-floating-right {
  position: absolute;
  top: 13px;
  right: 16px;
}

#cont-empty,
.cont-search-empty {
  position: relative;
  -webkit-box-flex: 1 0 auto;
  -webkit-flex: 1 0 auto;
  flex: 1 0 auto;
  min-height: 430px;
  min-width: 430px;
}
#cont-empty .empty-folder,
.cont-search-empty .empty-folder {
  text-align: center;
  bottom: 0;
  left: 0;
  margin: auto;
  position: absolute;
  right: 0;
  top: 0;
  height: 430px;
  width: 430px;
}
#cont-empty .empty-folder .ef-bg,
.cont-search-empty .empty-folder .ef-bg {
  -webkit-border-radius: 50%;
  border-radius: 50%;
  background-color: rgba(0, 0, 0, 0.04);
  position: absolute;
  left: 0;
  top: 0;
  height: 430px;
  width: 430px;
}
#cont-empty .empty-folder .ef-icon,
.cont-search-empty .empty-folder .ef-icon {
  -webkit-transition: all 0.5s;
  transition: all 0.5s;
  left: calc(50% - 48px);
  position: absolute;
  top: 150px;
}
#cont-empty .empty-folder .ef-icon i,
.cont-search-empty .empty-folder .ef-icon i {
  font-size: 6rem;
  color: #b3b3b3;
}
#cont-empty .empty-folder .ef-text,
.cont-search-empty .empty-folder .ef-text {
  bottom: 110px;
  height: 54px;
  margin-bottom: auto;
  margin-top: auto;
  position: absolute;
  text-align: center;
  width: 100%;
  color: #909090;
  padding: 0 4rem;
}
#cont-empty .empty-folder .ef-text p.ef-text-title,
.cont-search-empty .empty-folder .ef-text p.ef-text-title {
  font-size: 1.2rem;
  margin-bottom: 0.2rem;
}
#cont-empty .empty-folder .ef-text p.ef-text-p,
.cont-search-empty .empty-folder .ef-text p.ef-text-p {
  margin: 0;
  font-size: 0.8rem;
}

#cont-folders {
  margin-bottom: 1rem;
}
#cont-folders #cont-folders-list .item-folder {
  margin-bottom: 1.5rem;
}
#cont-folders #cont-folders-list .item-folder .if-inside {
  background-color: #fff;
  padding: 1rem;
  border-radius: 0.6rem;
  box-shadow: 0px 10px 10px -10px rgba(0, 0, 0, 0.4);
}
#cont-folders #cont-folders-list .item-folder .if-inside .if-preview {
  text-align: center;
}
#cont-folders #cont-folders-list .item-folder .if-inside .if-preview img {
  max-width: 100%;
}
#cont-folders #cont-folders-list .item-folder .if-inside .if-text {
  color: #666;
  margin-left: -15px;
  margin-right: -15px;
  margin-bottom: -15px;
  padding: 15px;
  border-radius: 0 0 10px 10px;
}
#cont-folders #cont-folders-list .item-folder .if-inside.focus .if-text {
  background-color: #e2e5ea;
}
#cont-folders #cont-folders-list .item-folder.item-file-list .if-inside {
  padding: 0;
}
#cont-folders #cont-folders-list .item-folder.item-file-list .if-inside .if-preview {
  display: none;
}
#cont-folders #cont-folders-list .item-folder.item-file-list .if-inside .if-text {
  border-radius: 0.6rem;
  margin: 0;
}

#cont-files {
  margin-bottom: 1rem;
}
#cont-files h4 {
  font-weight: 100;
  margin-bottom: 1rem;
}
#cont-files #cont-files-list .item-file {
  margin-bottom: 1.5rem;
}
#cont-files #cont-files-list .item-file .if-inside {
  cursor: pointer;
  background-color: #fff;
  padding: 1rem;
  border-radius: 0.6rem;
  box-shadow: 0px 10px 10px -10px rgba(0, 0, 0, 0.4);
}
#cont-files #cont-files-list .item-file .if-inside .if-preview {
  text-align: center;
}
#cont-files #cont-files-list .item-file .if-inside .if-preview img {
  max-width: 100%;
}
#cont-files #cont-files-list .item-file .if-inside .if-icon {
  text-align: center;
  height: 191px;
  color: #e2e5ea;
  font-size: 8rem;
}
#cont-files #cont-files-list .item-file .if-inside .if-text {
  color: #666;
  margin-left: -15px;
  margin-right: -15px;
  margin-bottom: -15px;
  padding: 15px;
  border-radius: 0 0 10px 10px;
}
#cont-files #cont-files-list .item-file .if-inside.focus .if-text {
  background-color: #e2e5ea;
}
#cont-files #cont-files-list .item-file-placeholder {
  margin-bottom: 1.5rem;
}
#cont-files #cont-files-list .item-file-placeholder .ifp-inside {
  position: relative;
  height: 100%;
  background-color: #fff;
  padding: 1rem;
  border-radius: 0.6rem;
  box-shadow: 0px 10px 10px -10px rgba(0, 0, 0, 0.4);
}
#cont-files #cont-files-list .item-file-placeholder.item-file-list {
  height: 150px;
}
#cont-files #cont-files-list .item-file-block .ifb-none {
  display: none;
}
#cont-files #cont-files-list .item-file-list {
  width: 100%;
  max-width: 100%;
  flex: 0 0 100%;
}
#cont-files #cont-files-list .item-file-list .ifl-none {
  display: none;
}
#cont-files #cont-files-list .item-file-list .if-inside {
  padding: 0;
  background-color: #fff;
}
#cont-files #cont-files-list .item-file-list .if-inside .if-preview {
  width: 150px;
  float: left;
}
#cont-files #cont-files-list .item-file-list .if-inside .if-preview img {
  border-radius: 0.6rem 0 0 0.6rem;
}
#cont-files #cont-files-list .item-file-list .if-inside .if-text {
  width: calc(100% - 150px);
  float: left;
  margin: 0;
}
#cont-files #cont-files-list .item-file-list .if-inside .if-text h3 {
  font-size: 1.2rem;
}
#cont-files #cont-files-list .item-file-list .if-inside .if-text .facts-list ul li {
  font-size: 0.8rem;
  font-weight: 100;
}
#cont-files #cont-files-list .item-file-list .if-inside .if-text .facts-list ul li span {
  width: 100%;
  display: block;
  overflow-wrap: anywhere;
  word-break: break-word;
  margin: 0;
  font-weight: 400;
}
#cont-files #cont-files-list .item-file-list .if-inside .if-text .facts-list ul li span:last-child {
  font-weight: 100;
  margin-bottom: 0.4rem;
  font-style: italic;
}
#cont-files #cont-files-list .item-file-list .if-inside:after {
  content: "";
  display: block;
  clear: both;
}
#cont-files #cont-files-list .item-file-list .if-inside.focus .if-text {
  background-color: #fff;
}

.btn-change-items-view.btn-items-view-list svg.svg-items-block {
  display: initial;
}
.btn-change-items-view.btn-items-view-list svg.svg-items-list {
  display: none;
}

.btn-change-items-view.btn-items-view-block svg.svg-items-block {
  display: none;
}
.btn-change-items-view.btn-items-view-block svg.svg-items-list {
  display: initial;
}

.modal .modal-dialog .modal-content .modal-body {
  padding: 30px;
}
.modal .modal-dialog .modal-content .modal-body .modal-form .form-group label.label-lg {
  font-size: 1.2rem;
}
.modal .modal-footer {
  border: none;
  padding: 30px;
  padding-top: 0;
}

.ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.fs-1-rem {
  font-size: 1rem !important;
}

.card .card-body .form-group label small {
  color: #bbb;
}

#canvas canvas {
  max-width: 100%;
}

.qr-shapes-selector ul li {
  display: inline-block;
  margin-right: 10px;
  margin-bottom: 10px;
}
.qr-shapes-selector ul li a {
  display: block;
  padding: 5px;
  box-shadow: 0px 8px 10px -7px rgba(0, 0, 0, 0.4);
  border: solid 1px #eee;
  transition: all 0.3s ease;
}
.qr-shapes-selector ul li a img {
  height: 60px;
}
.qr-shapes-selector ul li a:hover {
  opacity: 0.7;
}
.qr-shapes-selector ul li a.selected {
  background-color: #7f8ba3;
  border: solid 1px #7f8ba3;
}

.card-sticky-canvas {
  position: sticky;
  top: 75px;
}

#cont-edit {
  padding-bottom: 2rem;
}

#img-logo-render {
  max-width: 100%;
  height: 50px;
}

.contextmenu {
  border: none;
  -webkit-border-radius: 6px;
  border-radius: 6px;
  -webkit-box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2);
  box-shadow: 0 8px 10px 1px rgba(0, 0, 0, 0.14), 0 3px 14px 2px rgba(0, 0, 0, 0.12), 0 5px 5px -3px rgba(0, 0, 0, 0.2);
  display: block;
  margin-top: -10px;
  max-width: 448px;
  min-width: 320px;
  opacity: 0;
  outline: 1px solid transparent;
  overflow-y: hidden;
  padding: 0;
  pointer-events: none;
  -webkit-transition: height 267ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, margin-top 267ms cubic-bezier(0.4, 0, 0.2, 1), opacity 267ms cubic-bezier(0.4, 0, 0.2, 1);
  transition: height 267ms cubic-bezier(0.4, 0, 0.2, 1) 0ms, margin-top 267ms cubic-bezier(0.4, 0, 0.2, 1), opacity 267ms cubic-bezier(0.4, 0, 0.2, 1);
  will-change: height, margin-top, opacity;
  z-index: 2300;
  box-sizing: border-box;
  overflow-x: hidden;
  background: #fff;
  cursor: default;
  font-size: 13px;
  margin: 0;
  position: fixed;
  height: 0;
}
.contextmenu .cm-inside {
  overflow: visible;
  padding: 16px 0;
}
.contextmenu .cm-inside a.cm-item {
  display: block;
}
.contextmenu .cm-inside .cm-item {
  border: none;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #202124;
  height: auto;
  min-height: 32px;
  padding: 0 24px;
  min-width: 198px;
  position: relative;
  cursor: pointer;
  list-style: none;
  margin: 0;
  white-space: nowrap;
}
.contextmenu .cm-inside .cm-item .cm-item-inside {
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  color: #202124;
  -webkit-font-smoothing: antialiased;
  font-size: 14px;
  font-weight: 400;
  line-height: 32px;
  min-height: 32px;
  padding: 0 0 0 40px;
  position: relative;
}
.contextmenu .cm-inside .cm-item .cm-item-inside .cm-item-icon {
  height: auto;
  left: 0;
  line-height: 0;
  margin: 0;
  min-width: 24px;
  -webkit-box-ordinal-group: 1;
  -webkit-order: 1;
  order: 1;
  text-align: center;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  opacity: 0.5;
  background-origin: border-box;
  background-repeat: no-repeat;
  position: absolute;
  right: auto;
  vertical-align: middle;
  width: 21px;
}
.contextmenu .cm-inside .cm-item .cm-item-inside .cm-item-text {
  -webkit-box-ordinal-group: 2;
  -webkit-order: 2;
  order: 2;
}
.contextmenu .cm-inside .cm-item .cm-item-inside .cm-item-text .cm-item-text-inside .cm-item-text-text {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
}
.contextmenu .cm-inside .cm-item-divider {
  border-top: 1px solid #ebebeb;
  border-top-color: #dadce0;
  margin: 8px 0 7px 0;
}
.contextmenu .cm-inside .cm-item:hover {
  background-color: #eee;
}
.contextmenu .cm-inside .cm-item.inactive {
  cursor: default;
  color: #eee;
  background-color: #fff !important;
}
.contextmenu .cm-inside .cm-item.inactive .cm-item-inside {
  color: #eee;
}
.contextmenu .cm-inside .cm-item.inactive .cm-item-inside .cm-item-icon svg {
  fill: #eee;
}

.contextmenu.open {
  margin-top: 0;
  opacity: 1;
  overflow-y: auto;
  outline: 1px solid transparent;
  pointer-events: auto;
}

.cont-folders-tree {
  margin-bottom: 1rem;
}
.cont-folders-tree .folder-tree-item .fti-folder {
  cursor: pointer;
  border-bottom: solid 1px #eee;
  padding: 0.5rem;
  color: #666;
}
.cont-folders-tree .folder-tree-item .fti-folder:hover {
  background-color: #eee;
}
.cont-folders-tree .folder-tree-item .fti-folder.selected {
  border-color: #6f9ffc;
  color: #222;
}
.cont-folders-tree .folder-tree-item .fti-childs {
  padding-left: 1.5rem;
}

.input-group-text a {
  color: #666;
}

.col-file-info {
  border-left: solid 1px #dae0ec;
  max-height: calc(100vh - 60px);
  overflow-y: auto;
  position: sticky;
  top: 60px;
}
.col-file-info .file-info {
  position: relative;
}
.col-file-info .file-info .fi-close {
  position: absolute;
  top: 0px;
  right: 0px;
  z-index: 1;
}
.col-file-info .file-info .fi-close a svg {
  fill: #666;
}
.col-file-info .file-info .fi-image {
  height: 200px;
  margin-bottom: 2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.col-file-info .file-info .fi-image img {
  max-width: 100%;
  max-height: 100%;
}
.col-file-info .file-info .fi-image i.fas {
  font-size: 8rem;
  color: #e2e5ea;
}
.col-file-info .file-info .fi-text .row {
  margin-bottom: 1rem;
}
.col-file-info .file-info .fi-text .row .col-12:first-child {
  color: #5f6368;
}
.col-file-info .file-info .fi-text .row .col-12:last-child span {
  word-break: break-all;
}

#modal-download .file_name {
  font-size: 0.8rem;
  color: #666;
  font-weight: 100;
}

#canvas-download {
  position: absolute;
  top: -999999999px;
  left: -999999999px;
  opacity: 0;
}

#modal-download-folder .modal-processing {
  display: none;
}
#modal-download-folder .modal-processing .mp-progress-ready {
  display: none;
}
#modal-download-folder .modal-processing .mp-progress-warnings {
  display: none;
}
#modal-download-folder [data-action=download-folder-zip] {
  display: none;
}
#modal-download-folder .modal-processing .mp-progress-numbers {
  font-size: 1rem;
}
#modal-download-folder .modal-processing .mp-progress-ready {
  margin-bottom: 1rem;
}
#modal-download-folder .modal-processing .mp-progress-bar {
  margin-bottom: 2rem;
}

#modal-download-folder.processing .modal-form {
  display: none;
}
#modal-download-folder.processing .modal-processing {
  display: block;
}

#modal-download-folder.has-warnings .modal-form {
  display: none;
}
#modal-download-folder.has-warnings .modal-processing {
  display: block;
}
#modal-download-folder.has-warnings .modal-processing .mp-progress-numbers {
  display: none;
}
#modal-download-folder.has-warnings .modal-processing .mp-progress-ready {
  display: none;
}
#modal-download-folder.has-warnings .modal-processing .mp-progress-warnings {
  display: block;
}
#modal-download-folder.has-warnings [data-action=download-folder] {
  display: none;
}
#modal-download-folder.has-warnings [data-action=download-folder-zip] {
  display: inline-block;
}

#modal-download-folder.ready .modal-form {
  display: none;
}
#modal-download-folder.ready .modal-processing {
  display: block;
}
#modal-download-folder.ready .modal-processing .mp-progress-numbers {
  display: none;
}
#modal-download-folder.ready .modal-processing .mp-progress-ready {
  display: block;
}
#modal-download-folder.ready [data-action=download-folder] {
  display: none;
}
#modal-download-folder.ready [data-action=download-folder-zip] {
  display: inline-block;
}

.btn-circle-custom {
  display: inline-block;
  width: 30px;
  height: 30px;
  text-align: center;
  border-radius: 100%;
  background-color: rgba(0, 0, 0, 0.04);
  font-size: 0.8rem;
  padding: 0.2rem 0rem;
  line-height: 1.4rem;
  transition: all 0.3s ease;
}
.btn-circle-custom svg {
  fill: #666;
}

.small_folder_name {
  font-weight: 100;
  font-size: 0.8rem;
}

div#datatable-whitelabel_wrapper.dataTables_wrapper div.dt-buttons.btn-group div.btn-group button.buttons-page-length,
button.buttons-page-length {
  border-top-left-radius: 6px !important;
  border-bottom-left-radius: 6px !important;
}

/*SERVICES*/
.card-services-validation .cont-input-text {
  margin-bottom: 1rem;
}
.card-services-validation .cont-input-csv .cont-input-csv-area {
  background-color: #eee;
  border-radius: 10px;
  padding: 2rem;
  position: relative;
}
.card-services-validation .cont-input-csv .cont-input-csv-area input {
  cursor: pointer;
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.card-services-validation .cont-input-csv .cont-input-csv-area div {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  color: #666;
}
.card-services-validation .cont-input-csv .cont-input-csv-area div small {
  text-transform: initial;
  letter-spacing: 0;
  font-size: 0.7rem;
}

.card-services-validation-results table .item-validated.is-valid .itv-verdict {
  color: #1abd36;
}
.card-services-validation-results table .item-validated.is-invalid .itv-verdict {
  color: #bd1a30;
}
.card-services-validation-results table .item-validated.is-risky .itv-verdict {
  color: #b2bd1a;
}

.app-sidebar .menu .menu-item .menu-icon + .menu-text {
  text-transform: capitalize;
}

/*LABELS*/
.text-active {
  color: #1abd36 !important;
}

.bg-active-transparent-2 {
  background: rgba(26, 189, 54, 0.2) !important;
}

.text-deleted {
  color: #ff3b30 !important;
}

.bg-deleted-transparent-2 {
  background: rgba(255, 59, 48, 0.2) !important;
}

.text-not-validated {
  color: #ff9500 !important;
}

.bg-not-validated-transparent-2 {
  background: rgba(255, 149, 0, 0.2) !important;
}

.app-sidebar .menu .menu-item.active:not(.has-sub) > .menu-link {
  background: rgba(201, 210, 227, 0.5);
  color: #3c4e71;
}

.app-sidebar .menu .menu-item.active:not(.has-sub) > .menu-link .menu-icon {
  color: #3c4e71;
}

.app-sidebar .menu .menu-item {
  margin-bottom: 5px;
}

/*MESSAGES*/
#mailbox-list-more {
  text-align: center;
  padding: 1rem 0;
}

.mailbox .mailbox-list .mailbox-list-item,
.mailbox .mailbox-list .mailbox-list-item.active {
  background-color: #f6f7fa;
}

.mailbox .mailbox-list .mailbox-list-item.unread {
  background-color: #fff;
}

/*PROCEDURES*/
.table thead th {
  border-top: 0;
}

.border-radius-1 {
  border-radius: 1rem;
}

/*messages*/
.mailbox {
  position: relative;
}

.mailbox-toolbar-item-floating {
  position: absolute;
  top: 0px;
  left: 0px;
  background-color: #fff;
  width: 45px;
  padding: 15px 0;
  z-index: 99;
  text-align: center;
}

.mailbox .mailbox-toolbar {
  padding-left: 50px;
}

.mailbox .dropdown {
  z-index: 99;
}

.mailbox .dropdown-menu.show {
  z-index: 99999;
}

/*notifications*/
.dropdown-menu.dropdown-notification .dropdown-notification-item.viewed {
  background: #f0f2f6;
}

.dropdown-menu.dropdown-notification .dropdown-notification-actions {
  display: none;
  position: absolute;
  top: 5px;
  right: 5px;
}

.dropdown-notification-item-wrapper {
  position: relative;
}

.dropdown-notification-item-wrapper:hover .dropdown-notification-actions {
  display: block;
}

.dropdown-menu.dropdown-notification .dropdown-notification-item {
  border-bottom: 0;
}

.dropdown-menu.dropdown-notification .dropdown-notification-item-wrapper:last-child .dropdown-notification-item {
  border-bottom: 1px solid #dae0ec;
}

table#table-processes tbody tr td:nth-child(2) {
  font-weight: 600;
}

#data-to-print > div {
  width: 560px;
}

#data-to-print > div > div {
  width: 100%;
  border-bottom: solid 1px #aaa;
  margin-bottom: 5px;
}

#data-to-print > div > div > div:nth-child(1) {
  vertical-align: middle;
  width: 49%;
  display: inline-block;
  padding: 5px;
  font-size: 10px;
}

#data-to-print > div > div > div:nth-child(2) {
  vertical-align: middle;
  width: 49%;
  display: inline-block;
  padding: 5px;
  font-size: 10px;
}

@media (max-width: 575.98px) {
  #cont-empty {
    min-height: 300px;
    min-width: 300px;
  }
  #cont-empty .empty-folder {
    height: 300px;
    width: 300px;
  }
  #cont-empty .empty-folder .ef-bg {
    height: 300px;
    width: 300px;
  }
  #cont-empty .empty-folder .ef-icon {
    top: 100px;
    left: calc(50% - 24px);
  }
  #cont-empty .empty-folder .ef-icon i {
    font-size: 4rem;
  }
  #cont-empty .empty-folder .ef-text {
    bottom: 80px;
    padding: 0 4rem;
  }
  #cont-empty .empty-folder .ef-text p.ef-text-title {
    font-size: 1rem;
  }
  #cont-empty .empty-folder .ef-text p.ef-text-p {
    font-size: 0.6rem;
  }
  #table-processes_wrapper #table-processes_filter {
    width: 100%;
  }
  #table-processes_wrapper #table-processes_info,
  #table-processes_wrapper #table-processes_length,
  #table-processes_wrapper .dt-buttons {
    display: none;
  }
}
@media (max-width: 767.98px) {
  #cont-breadcrumb.has-btn-floating ol.breadcrumb {
    padding-right: 0 !important;
    padding-left: 0 !important;
  }
  #cont-breadcrumb.has-btn-floating .btn-floating-right {
    position: initial;
    text-align: right;
    margin: 0 15px 1rem 15px;
  }
}
@media (max-width: 991.98px) {
  .mailbox .mailbox-body .mailbox-sidebar {
    width: 100%;
  }
}

/*# sourceMappingURL=main.css.map */
