﻿*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

.components-reconnect-show, .components-reconnect-failed, .components-reconnect-rejected, #components-reconnect-modal {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  width: 100%;
  height: 100%;
}

body {
  overflow: hidden;
  font-size: 14px;
}

body {
  font-family: "Roboto Condensed", "Roboto", sans-serif;
}

h1,
h2,
h3,
h4,
h5,
h6,
.h1,
.h2,
.h3,
.h4,
.h5,
.h6 {
  margin-bottom: 0.5rem;
  font-family: "Roboto Condensed", "Roboto", sans-serif;
  font-weight: 700;
  line-height: 1.25;
}

img {
  max-width: 100%;
}

a,
img {
  outline: none;
}

::-webkit-scrollbar-corner {
  background: transparent !important;
}

::-webkit-scrollbar {
  height: 6px;
  width: 6px;
  border-radius: 3px;
  background: transparent !important;
  transition: all 0.3s ease;
}
::-webkit-scrollbar:hover {
  background: #e2e2e2;
}

::-webkit-scrollbar-thumb {
  background: rgba(112, 128, 144, 0.6) !important;
  border-radius: 3px;
}

::-webkit-input-placeholder {
  color: #bbb;
}

::-moz-placeholder {
  color: #bbb;
}

:-moz-placeholder {
  color: #bbb;
}

:-ms-input-placeholder {
  color: #bbb;
}

.template-center-box {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  width: 100%;
}
.template-center-box .center-box-inner {
  margin: 0 auto;
}
.template-center-box .center-box-body {
  height: 100%;
}

.space-b {
  justify-content: space-between;
}

.cursor-pointer {
  cursor: pointer !important;
}

.form-control::-webkit-input-placeholder {
  color: #999;
  opacity: 1;
}

.form-control::-moz-placeholder {
  color: #999;
  opacity: 1;
}

.form-control:-ms-input-placeholder {
  color: #999;
  opacity: 1;
}

.form-control:-ms-input-placeholder {
  color: #999;
  opacity: 1;
}

.file-input-wrap {
  position: relative;
  cursor: pointer;
}
.file-input-wrap input[type=file] {
  opacity: 0 !important;
  left: 0;
  position: absolute;
  cursor: pointer;
  width: 100%;
  min-height: 32px;
}

.no-data {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
}
.no-data .page-icon {
  max-width: 500px;
  overflow: hidden;
  text-align: center;
}
.no-data .page-icon .icon {
  font-size: 60px;
  color: #cccccc;
  margin-bottom: 15px;
}

.form-group label.require::after, .form-group label.required::after {
  content: " *";
  color: #dc3545;
}

.cms-modal-overlay {
  position: absolute;
  top: 0px;
  left: 0px;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.5);
}

.cms-modal-wrapper {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 4px;
  display: flex;
  flex-direction: column;
}
.cms-modal-wrapper .form-header {
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.cms-modal-wrapper .form-footer {
  border-bottom: 0;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
}

.cms-modal-content {
  padding: 10px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  flex-grow: 1;
  background: #fff;
  border: 0;
  border-bottom: 1px solid #ccc;
}
.cms-modal-content .message {
  width: 100%;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  word-break: break-word;
}
.cms-modal-content .message .icons {
  width: 32px;
  height: 32px;
  flex: none;
  background-image: url(../images/notify_icons.png);
  background-repeat: no-repeat;
  margin-right: 10px;
}
.cms-modal-content .message .icons.confirm {
  background-position: 0px 0px;
}
.cms-modal-content .message .icons.success {
  background-position: 0px -115px;
}
.cms-modal-content .message .icons.info {
  background-position: 0px 36px;
}
.cms-modal-content .message .icons.question {
  background-position: 0px 0px;
}
.cms-modal-content .message .icons.warning {
  background-position: 0px -77px;
}
.cms-modal-content .message .icons.error {
  background-position: 0px -151px;
}

.cms-plugin-popup {
  display: none;
}
.cms-plugin-popup.show {
  display: block;
}
.cms-plugin-popup .plugin-wrapper {
  position: fixed;
  z-index: 101;
  right: 0;
  top: 61px;
  height: calc(100% - 60px);
  width: 980px;
  min-width: 300px;
  background: #fff;
  -webkit-transition: -webkit-transform ease-out 300ms;
  -moz-transition: -moz-transform ease-out 300ms;
  transition: transform ease-out 300ms;
  box-shadow: #999 7px 0px 11px -8px inset;
}
.cms-plugin-popup .plugin-wrapper .close-button {
  position: absolute;
  left: 10px;
  top: 4px;
  width: 30px;
  height: 30px;
  display: block;
  background: url(../images/close-icon.png) no-repeat center center transparent;
  cursor: pointer;
  opacity: 0.8;
  text-indent: -9999px;
  transition: all 0.2s ease;
}
.cms-plugin-popup .plugin-wrapper .close-button:hover {
  transform: rotate(90deg);
  opacity: 1;
}
.cms-plugin-popup .plugin-wrapper .plugin-header {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0;
  background: #f3f3f3;
  border-bottom: 1px solid #ccc8c8;
  font-size: 17px;
  height: 40px;
  text-transform: uppercase;
  color: #6b635b;
  box-shadow: #999 7px 0px 11px -8px inset;
  -webkit-box-shadow: #999 7px 0px 11px -8px inset;
  -moz-box-shadow: #999 7px 0px 11px -8px inset;
}
.cms-plugin-popup .plugin-wrapper .plugin-footer {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  width: 100%;
  background: #eee;
  border-top: 1px solid #ccc;
  align-items: center;
  justify-content: start;
  padding: 0 0 0 10px;
  height: 50px;
}
.cms-plugin-popup .plugin-wrapper .plugin-footer .btn-default {
  margin: 0 10px 0 0;
}
.cms-plugin-popup .plugin-wrapper .plugin-footer .btn-default.submit {
  background-color: #357ae8;
  background-image: -webkit-linear-gradient(top, #4d90fe, #357ae8);
  background-image: linear-gradient(top, #4d90fe, #357ae8);
  border: 1px solid #2f5bb7;
  color: #fff;
}
.cms-plugin-popup .plugin-wrapper .plugin-content {
  height: calc(100% - 92px);
  margin: 0;
  display: flex;
}
.cms-plugin-popup .popup-overlay {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 100;
  background: rgba(0, 0, 0, 0.5);
}

.box-pager {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  justify-content: flex-end;
  margin: 0 16px 20px 0;
}
.box-pager .box-paging {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  align-items: center;
  font-size: 13px;
}
.box-pager .box-paging .info-text {
  color: #000;
  margin: 0 20px;
}
.box-pager .box-paging .info-text .number {
  color: #003865;
}
.box-pager .box-paging .pager-container {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.box-pager .box-paging .pager-display {
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
}
.box-pager .box-paging .pager-display .page-link {
  margin: 0 2px;
  min-height: 25px;
  min-width: 30px;
  align-items: center;
  border: 1px solid #dbdbdb;
}
.box-pager .box-paging .pager-display .page-link.current {
  background: #708090;
  border: 0px solid #708090;
  cursor: default;
}
.box-pager .box-paging .page-link {
  padding: 5px 10px;
  min-width: 30px;
  display: -webkit-box;
  display: -moz-box;
  display: -ms-flexbox;
  display: -webkit-flex;
  display: flex;
  outline: none !important;
  box-shadow: none !important;
  border-color: #dbdbdb;
  justify-content: space-around;
  align-items: center;
  margin: 0 1px;
  border-radius: 3px;
  color: #003865;
  cursor: pointer;
}
.box-pager .box-paging .page-link.current, .box-pager .box-paging .page-link:hover {
  background: #003865;
  border: solid 1px #003865;
  color: #fff;
}
.box-pager .box-paging .page-link.current {
  cursor: default;
}
.box-pager .box-paging .page-link.first {
  margin-left: 0;
}
.box-pager .box-paging .page-link.last {
  margin-right: 0;
}
.box-pager .box-paging .page-link.disabled {
  color: #999;
  cursor: not-allowed;
  background: #f1f1f1;
}
.box-pager .box-paging .page-link.disabled:hover {
  background: #f1f1f1;
  border-color: #dbdbdb;
}
.box-pager .box-paging .page-link.total {
  cursor: default;
  color: #000;
}
.box-pager .box-paging .page-link.total:hover {
  background: #fff;
  border-color: #dbdbdb;
}
.box-pager .box-paging .page-link.dot {
  border: 0;
  background: none !important;
  color: #999;
  cursor: default;
}

.box-layout-upload {
  width: 350px;
  position: fixed;
  bottom: 0px;
  left: 70px;
  z-index: 100;
  box-shadow: rgba(0, 0, 0, 0.1) 0px -2px 10px;
  border-radius: 6px 6px 0px 0px;
  overflow: hidden;
}
.box-layout-upload .upload-box {
  background: #fff;
}
.box-layout-upload .upload-box .box-header {
  height: 52px;
  background-color: #0c0c0c;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0px 20px;
}
.box-layout-upload .upload-box .box-body {
  width: 100%;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  max-height: 40%;
}
.box-layout-upload .upload-box .box-body .media-upload {
  overflow: auto;
}
.box-layout-upload .upload-box .box-body .media-upload .upload-item {
  display: flex;
  align-items: center;
  padding: 10px;
}
.box-layout-upload .upload-box .box-body .media-upload .upload-item .upload-icon {
  margin-right: 10px;
}
.box-layout-upload .upload-box .box-body .media-upload .upload-item .upload-file-name {
  flex: 1 1 0%;
  overflow: hidden;
}
.box-layout-upload .upload-box .box-body .media-upload .upload-item .upload-process {
  margin-left: 10px;
}
.box-layout-upload .upload-box .upload-footer {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 12px;
  border-top: 1px solid #e4e4e4;
}

.relative {
  position: relative;
}

.picker-container {
  position: relative;
  display: flex;
  align-items: center;
}
.picker-container > label {
  width: 70px;
}
.picker-container input.colorpicker {
  border: 1px solid #ccc;
  width: 60px;
  padding: 2px;
  outline: none !important;
  text-transform: uppercase;
}
.picker-container .evo-colorind {
  width: 22px;
  height: 22px;
}
.picker-container .evo-pop {
  width: auto;
  bottom: 100%;
  font-size: 13px;
}
.picker-container .evo-more {
  font-size: 13px;
}
.picker-container .evo-color span {
  margin-top: -4px;
  font-size: 13px;
}
.picker-container .reset-color {
  height: 30px;
  width: 30px;
  color: #666;
  font-size: 13px;
  display: flex;
  align-items: center;
  border: 1px solid #cecece;
  margin-left: 3px;
  padding: 4px 6px;
  cursor: pointer;
}
.picker-container .reset-color:hover {
  background: #eee;
  color: #333;
  border: 1px solid #ccc;
}
.picker-container .rz-colorpicker {
  box-shadow: none;
  border-radius: 2px;
  height: 30px;
}
.picker-container .rz-colorpicker button {
  outline: none;
}
.picker-container .rz-colorpicker-value {
  border-radius: 2px;
}

.rz-colorpicker-popup {
  min-width: 160px;
  max-width: 232px;
  padding: 8px;
  border-radius: 2px;
  border: 1px solid #bbb;
}
.rz-colorpicker-popup .rz-colorpicker-colors .rz-colorpicker-item {
  margin: 2px;
}
.rz-colorpicker-popup .rz-colorpicker-button {
  justify-content: center;
}
.rz-colorpicker-popup .rz-colorpicker-rgba .rz-color-box .rz-spinner, .rz-colorpicker-popup .rz-colorpicker-rgba .rz-color-box .rz-textbox {
  padding: 0 3px;
  height: 25px;
  font-size: 13px;
  text-align: center;
  outline: none;
  border-radius: 2px;
}
.rz-colorpicker-popup .rz-colorpicker-rgba .rz-color-box .rz-spinner:focus, .rz-colorpicker-popup .rz-colorpicker-rgba .rz-color-box .rz-textbox:focus {
  border: 1px solid #bbb;
}
.rz-colorpicker-popup .rz-colorpicker-rgba .rz-color-box .rz-textbox {
  width: 60px;
}
.rz-colorpicker-popup button.rz-button-md {
  background: #eee;
  border: 1px solid #ccc;
  color: #000;
  font-size: 13px;
  width: 50px;
  text-align: center;
  padding: 0;
  height: 30px;
  line-height: initial;
  display: flex;
  align-items: center;
  justify-content: center;
}

.switch {
  width: 32px;
  height: 14px;
  position: absolute;
  display: inline-block;
  text-align: center;
  right: 15px;
  top: 50%;
  transform: translateY(-50%);
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
}
.switch .m__round {
  border-radius: 30px;
}
.switch .m__round::before {
  border-radius: 50%;
}
.switch .m__slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ddd;
  transition: 0.4s;
  outline: none;
}
.switch .m__slider::before {
  width: 12px;
  height: 12px;
  position: absolute;
  content: "";
  left: 1px;
  bottom: 1px;
  background-color: #fff;
  transition: 0.4s;
}
.switch input:checked + .m__slider {
  background-color: #1095EA;
}
.switch input:checked + .m__slider:before {
  transform: translateX(18px);
}

#PageCacheManager .buttons-container {
  margin: 0 auto;
}
#PageCacheManager .buttons-container ul {
  list-style: none;
}
#PageCacheManager .buttons-container > ul {
  list-style: none;
}
#PageCacheManager .buttons-container > ul > li {
  margin-top: 30px;
}
#PageCacheManager .buttons-container .btn-none {
  border: 0;
  outline: none;
  display: block;
  background: none;
  cursor: pointer;
}
#PageCacheManager .buttons-container .btn-none.red-color {
  display: inline-block;
}
#PageCacheManager .buttons-container .btn-none i {
  margin-right: 4px;
}
#PageCacheManager .buttons-container .btn-default {
  display: block;
  width: 100%;
  height: auto;
  text-align: left;
  line-height: 1.6;
  padding: 10px;
  white-space: initial;
  min-height: 70px;
  color: #537c9c;
  background: #f4f9fd;
  border: 1px solid #d0dae3;
}
#PageCacheManager .buttons-container.sub .item {
  margin-top: 30px;
}
#PageCacheManager .buttons-container.zone .items-container {
  margin-top: 30px;
}
#PageCacheManager .buttons-container.zone .btn-default {
  height: auto;
  min-height: initial;
  transition: all 0.2s ease-in;
  padding-left: 50px;
}
#PageCacheManager .buttons-container.zone .btn-default.parent {
  font-weight: 600;
}
#PageCacheManager .buttons-container.zone .btn-default:hover {
  color: #000;
}
#PageCacheManager .buttons-container.files {
  padding: 20px 0 20px;
}
#PageCacheManager .buttons-container.files .items {
  display: flex;
  border-bottom: 1px solid #d0dae3;
}
#PageCacheManager .buttons-container.files .item {
  margin: 0 0 0 0;
  padding: 8px 8px 8px 0;
}
#PageCacheManager .buttons-container.files .item.date, #PageCacheManager .buttons-container.files .item.size {
  text-align: right;
}
#PageCacheManager .buttons-container.files .item.ext {
  text-align: center;
  width: 50px;
}
#PageCacheManager .buttons-container.files .item.icon {
  padding-right: 0;
  text-align: center;
  width: 40px;
  cursor: pointer;
}
#PageCacheManager .buttons-container div.parent {
  position: relative;
  display: inline-flex;
  margin-top: 30px;
}
#PageCacheManager .buttons-container div.parent > ul {
  padding: 0 0 0 40px;
  margin-top: -40px;
}
#PageCacheManager .buttons-container div.parent .btn-d {
  text-align: center;
  position: absolute;
  left: 15px;
  height: 44px;
  width: 40px;
  outline: none !important;
  text-align: center;
  border: 0;
  background: none;
  padding: 0 10px;
  border-right: 1px solid #d0dae3;
}
#PageCacheManager .buttons-container div.parent .btn-d:focus, #PageCacheManager .buttons-container div.parent .btn-d:active {
  outline: none !important;
}
#PageCacheManager .buttons-container div.parent .btn-d i {
  display: inline-block;
}
#PageCacheManager .buttons-container div.parent .dropdown-toggle::after {
  font-size: 26px;
  content: none;
}
#PageCacheManager .buttons-container div.parent .dropdown-menu {
  padding: 20px 20px 0;
  width: calc(100% - 30px);
  position: relative;
}
#PageCacheManager .buttons-container div.parent .dropdown-menu .btn-default {
  padding: 10px 20px;
  margin: 0 0 20px;
  text-align: left;
}
#PageCacheManager .buttons-container .items-container .items {
  display: flex;
  width: 100%;
  border-bottom: 1px solid #d0dae3;
}
#PageCacheManager .buttons-container .items-container .items:hover {
  background: #f4f9fd;
}
#PageCacheManager .buttons-container .items-container .items .item {
  margin: 0 0 0 0;
  padding: 8px 8px 8px 0;
}
#PageCacheManager .buttons-container .items-container .title {
  display: flex;
  width: 100%;
}
#PageCacheManager .buttons-container .items-container .total {
  text-align: right;
}
#PageCacheManager .buttons-container .items-container .items-folders,
#PageCacheManager .buttons-container .items-container .items-files {
  overflow: auto;
  max-height: 60vh;
  padding: 0 10px 0;
}
#PageCacheManager nav {
  margin-top: 40px;
}
#PageCacheManager .tab-content {
  border: 1px solid #dee2e6;
  border-top: 0;
  /*overflow: auto;*/
  background: #fff;
  max-height: 70vh;
  height: 70vh;
  padding: 0 40px;
}
#PageCacheManager .nav-tabs {
  border-bottom: 1px solid #dee2e6;
}
#PageCacheManager .function-container {
  padding-top: 10px;
}

.box-func-default .items .item a {
  text-align: center;
  width: 100%;
  max-width: 60px;
  line-height: 60px;
  display: block;
}

.error-page {
  margin: 0 auto;
  padding: 4rem 0;
  text-align: center;
  width: 100%;
  text-align: center;
  background: #fff;
}
.error-page .holder-text {
  color: #dc3545;
}
.error-page .btn-404 {
  display: inline-block;
  background: #003865;
  color: #fff;
  padding: 10px 20px;
  border-radius: 3px;
  text-transform: uppercase;
  text-decoration: none !important;
}
.error-page .btn-404:hover {
  color: #f48320;
}

.mask-overlay {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: 1051;
  background: rgba(0, 0, 0, 0.6);
}
