@charset "utf-8";
/* 
	base.css
	Project: Honeycomb CMS v4.0
*/
/*------ imports ------*/
/* 
	definitions.less
	Project: Honeycomb CMS v4.0
*/
/* 
	mixins.less

*/
/*------ utilities ------*/
/*------ typography ------*/
.light {
  font-weight: 300;
}
.regular {
  font-weight: 400;
}
.medium {
  font-weight: 500;
}
.semibold {
  font-weight: 600;
}
.bold {
  font-weight: 700;
}
.extrabold {
  font-weight: 800;
}
.black {
  font-weight: 900;
}
.uppercase {
  text-transform: uppercase;
}
.capitalize {
  text-transform: capitalize;
}
.strikethrough {
  text-decoration: line-through;
}
.underline {
  text-decoration: underline;
}
/*------ forms ------*/
/*------ display ------*/
.full {
  width: 100%;
}
.half {
  width: 50%;
}
.auto {
  width: auto;
}
.auto-width {
  width: auto !important;
}
.auto-height {
  height: auto !important;
}
.sr-only {
  position: absolute;
  margin: 0;
  padding: 0;
  border: 0;
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  background: none;
  overflow: hidden;
}
.f_right {
  float: right;
  display: block;
}
.f_left {
  float: left;
  display: block;
}
.clear {
  display: block;
  clear: both;
}
.clearfix:after {
  content: "";
  display: table;
  clear: both;
}
.right {
  text-align: right;
}
.left {
  text-align: left;
}
.center {
  text-align: center;
}
.relative {
  position: relative;
}
.absolute {
  position: absolute;
}
.block {
  display: block !important;
}
.inline-block {
  display: inline-block !important;
}
.inline {
  display: inline !important;
}
.hidden {
  display: none !important;
}
@media all and (max-width: 480px) {
  .show-tablet-p {
    display: none !important;
  }
}
@media all and (max-width: 768px) {
  .show-tablet-l {
    display: none !important;
  }
}
@media all and (max-width: 1024px) {
  .show-notebook {
    display: none !important;
  }
}
@media all and (max-width: 1366px) {
  .show-desktop {
    display: none !important;
  }
}
@media all and (max-width: 1920px) {
  .show-widescreen {
    display: none !important;
  }
}
@media all and (min-width: 481px) {
  .hide-tablet-p {
    display: none !important;
  }
}
@media all and (min-width: 769px) {
  .hide-tablet-l {
    display: none !important;
  }
}
@media all and (min-width: 1025px) {
  .hide-notebook {
    display: none !important;
  }
}
@media all and (min-width: 1367px) {
  .hide-desktop {
    display: none !important;
  }
}
@media all and (min-width: 1921px) {
  .hide-widescreen {
    display: none !important;
  }
}
.noborder {
  border: 0 !important;
}
.nobg {
  background: none !important;
}
.nomargin {
  margin: 0 !important;
}
.nomargin-v,
.nomargin-t {
  margin-top: 0 !important;
}
.nomargin-h,
.nomargin-r {
  margin-right: 0 !important;
}
.nomargin-v,
.nomargin-b {
  margin-bottom: 0 !important;
}
.nomargin-h,
.nomargin-l {
  margin-left: 0 !important;
}
.nopadding {
  padding: 0 !important;
}
.nopadding-v,
.nopadding-t {
  padding-top: 0 !important;
}
.nopadding-h,
.nopadding-r {
  padding-right: 0 !important;
}
.nopadding-v,
.nopadding-b {
  padding-bottom: 0 !important;
}
.nopadding-h,
.nopadding-l {
  padding-left: 0 !important;
}
/*------ gradients ------*/
/* generating report colours */
/*------ flexbox ------*/
/*------ columns ------*/
/* For elements within a .multi-column element. Prevents elements from breaking into multiple columns */
/*------ filters ------*/
/*------ masks ------*/
/*------ transformations ------*/
/*------ animations ------*/
/*
	animations.less

*/
/*---- keyframes ----*/
@-webkit-keyframes shimmer {
  to {
    background-position: 200%;
  }
}
@-moz-keyframes shimmer {
  to {
    background-position: 200%;
  }
}
@-o-keyframes shimmer {
  to {
    background-position: 200%;
  }
}
@keyframes shimmer {
  to {
    background-position: 200%;
  }
}
@media all and (min-width: 1025px) and (prefers-reduced-motion: no-preference) {
  #login-wrapper::before {
    -webkit-animation: shimmer 7s linear infinite;
    -ms-animation: shimmer 7s linear infinite;
    animation: shimmer 7s linear infinite;
    -webkit-animation-fill-mode: both;
    -ms-animation-fill-mode: both;
    animation-fill-mode: both;
    -webkit-animation-play-state: var(--animation-play-state, running);
            animation-play-state: var(--animation-play-state, running);
  }
}
/* 
	forms.less
	Project: Honeycomb CMS v4.0
	
*/
[hidden] {
  display: none !important;
}
/*------ standard elements ------*/
label {
  display: block;
  height: 20px;
  margin-bottom: 5px;
}
.form-field {
  float: left;
  display: block;
  max-width: 100%;
  margin: 0 10px 0 0;
}
.flex-container .form-field,
.flex-container .img-holder {
  float: none;
}
.input,
.select,
.textarea {
  font-size: 16px;
  font-family: 'Open Sans', sans-serif;
  color: #666666;
  font-weight: 400;
  border-radius: 0;
  border: 1px solid #CCC;
  background-color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 4px 8px;
  width: 260px;
  max-width: 100%;
  height: 40px;
  margin-bottom: 20px;
  outline: none;
  -webkit-transition: color 0.3s ease 0s, background-color 0.3s ease 0s, border-color 0.3s ease 0s;
  -moz-transition: color 0.3s ease 0s, background-color 0.3s ease 0s, border-color 0.3s ease 0s;
  -ms-transition: color 0.3s ease 0s, background-color 0.3s ease 0s, border-color 0.3s ease 0s;
  -o-transition: color 0.3s ease 0s, background-color 0.3s ease 0s, border-color 0.3s ease 0s;
  transition: color 0.3s ease 0s, background-color 0.3s ease 0s, border-color 0.3s ease 0s;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.input:focus,
.select:focus,
.textarea:focus {
  background-color: rgba(105, 159, 185, 0.8);
  color: #fff;
  border-color: #699fb9;
}
.input:disabled,
.select:disabled,
.textarea:disabled {
  background-color: #EEE !important;
  color: #999999 !important;
}
.input.full,
.select.full,
.textarea.full {
  width: 100%;
}
.textarea {
  height: 125px;
  resize: none;
}
.select {
  padding-right: 22px;
  background-image: url("../images/angle-down.svg");
  background-position: calc(100% - 6px) calc(50% + 1px);
  background-repeat: no-repeat;
  background-size: 10px auto;
  text-overflow: "";
  line-height: 1.5;
}
.input_md,
.select_md {
  width: 188px;
}
.input_sm,
.select_sm {
  width: 128px;
}
.input_xs,
.select_xs {
  width: 60px;
}
.input_lg {
  width: 540px;
}
.select_lg {
  height: 50px;
}
#seo-description.textarea {
  height: 200px;
}
input[type=file] {
  padding: 4px;
  line-height: 30px;
  font-size: 80%;
  color: #999999;
}
.checkbox,
.radio {
  display: none;
}
.checkbox + label,
.radio + label {
  position: relative;
  display: inline-block;
  padding: 1px 10px 1px 26px;
  margin: 0 0 2px;
  cursor: pointer;
  line-height: 20px;
  color: #2a617c;
}
.checkbox + label.no-text,
.radio + label.no-text {
  padding-left: 10px;
}
.checkbox + label:before,
.radio + label:before,
.radio:checked + label:after {
  position: absolute;
  content: "";
  display: inline-block;
  line-height: 19px;
  left: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #CCC;
  text-align: center;
  color: #2a617c;
  background: #fff;
}
.checkbox:disabled + label:before,
.radio:disabled + label:before {
  background-color: #EEE;
}
.radio + label:before,
.radio:checked + label:after {
  border-radius: 50%;
}
.radio:checked + label:after {
  -ms-transform: scale(0.6);
  -o-transform: scale(0.6);
  transform: scale(0.6);
  -webkit-transform: scale(0.6) rotate(0.02deg);
  -moz-transform: scale(0.6) rotate(0.02deg);
  border-color: transparent;
  background: #e46143;
}
.checkbox:checked + label:before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f00c";
  font-size: 14px;
}
.password-wrap {
  position: relative;
}
.password-wrap .toggle-password {
  position: absolute;
  z-index: 2;
  top: 12px;
  right: 14px;
  color: #e46143;
  cursor: pointer;
  opacity: 0.5;
  -webkit-transition: 0.4s;
  transition: 0.4s;
}
.password-wrap .toggle-password:hover {
  color: #2a617c;
}
.password-wrap:hover .toggle-password,
.password-wrap:focus .toggle-password {
  opacity: 1;
}
.password-wrap .input {
  padding-right: 40px;
  width: calc(240px - 30px);
}
.password-wrap .input:focus + .toggle-password {
  color: #fff;
}
.password-wrap .input:focus + .toggle-password:hover {
  color: #2a617c;
}
.img-holder {
  float: left;
  display: block;
  max-width: 260px;
  min-height: 64px;
  margin: 0 10px 20px 0;
}
.img-holder img {
  display: block;
  width: 100%;
  min-height: 64px;
  border: 1px solid #CCC;
  margin-bottom: 10px;
}
.cropbox {
  border: 1px solid #CCC !important;
}
.mce-panel {
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.mce-tinymce {
  margin-bottom: 10px !important;
}
.mce-tinymce .mce-edit-area {
  padding: 10px;
}
.mce-tinymce .mce-ico.mce-i-flag::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f024";
}
.panel-content.nopadding .mce-tinymce {
  margin: 0 !important;
  border-width: 1px 0 !important;
  overflow: hidden;
}
/*------ tag editor ------*/
.tag-editor-hidden-src {
  position: absolute;
  margin: 0;
  padding: 0;
  border: 0;
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  background: none;
  overflow: hidden;
}
ul.tag-editor {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -ms-flex-line-pack: start;
      align-content: flex-start;
  gap: 5px;
  padding: 8px;
  min-height: 40px;
  margin-left: 0;
  margin-right: 0;
  resize: vertical;
  list-style-type: none;
  overflow: auto;
  cursor: text;
}
ul.tag-editor li {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin: 0;
  overflow: hidden;
  line-height: 22px;
}
ul.tag-editor input {
  margin: 0;
  padding: 0;
  border: 0;
  vertical-align: inherit;
  outline: none;
  cursor: text;
  -webkit-box-shadow: none;
          box-shadow: none;
  background: none;
  font: inherit;
  letter-spacing: inherit;
}
ul.tag-editor .ui-sortable-placeholder {
  visibility: visible !important;
  border: 2px dashed #CCC;
  max-height: 22px;
  padding-right: 12px;
}
ul.tag-editor .tag-editor-tag {
  padding: 0 5px;
  background: #EEE;
  overflow: hidden;
  cursor: pointer;
  white-space: nowrap;
}
ul.tag-editor .tag-editor-tag.active {
  background: none !important;
}
ul.tag-editor .tag-editor-delete {
  width: 1em;
  padding: 0 4px;
  font-size: 16px;
  background: #EEE;
  cursor: pointer;
  text-align: center;
}
ul.tag-editor .tag-editor-delete i:before {
  content: "\00d7";
  display: inline-block;
  line-height: 20px;
  font-style: normal;
}
ul.tag-editor .tag-editor-delete:hover i:before {
  color: #999999;
}
ul.tag-editor .tag-editor-tag.active + .tag-editor-delete,
ul.tag-editor .tag-editor-tag.active + .tag-editor-delete i {
  visibility: hidden;
  cursor: text;
}
ul.tag-editor .tag-editor-spacer,
ul.tag-editor li[style^="width"] {
  display: none;
}
ul.tag-editor.full {
  width: 100%;
}
td .tag-editor {
  min-height: 40px;
  height: auto;
  margin: 0;
}
.ui-dialog ul.tag-editor {
  padding: 4px 8px;
  margin: 0;
}
/*------ buttons ------*/
.button,
a.button,
.button-sm,
a.button-sm {
  position: relative;
  display: inline-block;
  vertical-align: top;
  background: #699fb9;
  border: none;
  color: #fff;
  font-size: 16px;
  padding: 0 15px 0 65px;
  text-decoration: none;
  height: 50px;
  line-height: 50px;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  font-family: 'Exo', sans-serif;
  text-transform: uppercase;
  font-weight: 800;
  -webkit-transition: color 0.3s ease 0s, background-color 0.3s ease 0s, border-color 0.3s ease 0s, opacity 0.3s ease 0s;
  -moz-transition: color 0.3s ease 0s, background-color 0.3s ease 0s, border-color 0.3s ease 0s, opacity 0.3s ease 0s;
  -ms-transition: color 0.3s ease 0s, background-color 0.3s ease 0s, border-color 0.3s ease 0s, opacity 0.3s ease 0s;
  -o-transition: color 0.3s ease 0s, background-color 0.3s ease 0s, border-color 0.3s ease 0s, opacity 0.3s ease 0s;
  transition: color 0.3s ease 0s, background-color 0.3s ease 0s, border-color 0.3s ease 0s, opacity 0.3s ease 0s;
}
.button i,
a.button i,
.button-sm i,
a.button-sm i {
  position: absolute;
  display: block;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  margin: 0;
  background: #4c87a3;
  -webkit-transition: color 0.3s ease 0s, background-color 0.3s ease 0s, border-color 0.3s ease 0s, opacity 0.3s ease 0s;
  -moz-transition: color 0.3s ease 0s, background-color 0.3s ease 0s, border-color 0.3s ease 0s, opacity 0.3s ease 0s;
  -ms-transition: color 0.3s ease 0s, background-color 0.3s ease 0s, border-color 0.3s ease 0s, opacity 0.3s ease 0s;
  -o-transition: color 0.3s ease 0s, background-color 0.3s ease 0s, border-color 0.3s ease 0s, opacity 0.3s ease 0s;
  transition: color 0.3s ease 0s, background-color 0.3s ease 0s, border-color 0.3s ease 0s, opacity 0.3s ease 0s;
}
.button:hover,
a.button:hover,
.button-sm:hover,
a.button-sm:hover,
.button:focus,
a.button:focus,
.button-sm:focus,
a.button-sm:focus {
  background: #2a617c;
  color: #fff;
}
.button:hover i,
a.button:hover i,
.button-sm:hover i,
a.button-sm:hover i,
.button:focus i,
a.button:focus i,
.button-sm:focus i,
a.button-sm:focus i {
  background: #141111;
}
.button:disabled,
a.button:disabled,
.button-sm:disabled,
a.button-sm:disabled,
.button.disabled,
a.button.disabled,
.button-sm.disabled,
a.button-sm.disabled,
.button.loading,
a.button.loading,
.button-sm.loading,
a.button-sm.loading {
  background-color: #CCC !important;
  color: #EEE !important;
  cursor: default !important;
  text-decoration: line-through;
}
.button:disabled i,
a.button:disabled i,
.button-sm:disabled i,
a.button-sm:disabled i,
.button.disabled i,
a.button.disabled i,
.button-sm.disabled i,
a.button-sm.disabled i,
.button.loading i,
a.button.loading i,
.button-sm.loading i,
a.button-sm.loading i {
  background-color: #bfbfbf !important;
  color: #fff !important;
  cursor: default !important;
}
.button.loading,
a.button.loading,
.button-sm.loading,
a.button-sm.loading {
  font-size: 0;
  text-decoration: none;
  pointer-events: none;
}
.button.loading i::before,
a.button.loading i::before,
.button-sm.loading i::before,
a.button-sm.loading i::before {
  display: inline-block;
  font-size: 16px;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f110";
  -webkit-animation: fa-spin 2s linear infinite;
  -ms-animation: fa-spin 2s linear infinite;
  animation: fa-spin 2s linear infinite;
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-play-state: var(--animation-play-state, running);
          animation-play-state: var(--animation-play-state, running);
}
.button.loading::after,
a.button.loading::after,
.button-sm.loading::after,
a.button-sm.loading::after {
  content: 'Loading...';
  font-size: 16px;
}
.button + .button,
a.button + .button,
.button-sm + .button,
a.button-sm + .button,
.button + .button-sm,
a.button + .button-sm,
.button-sm + .button-sm,
a.button-sm + .button-sm {
  margin-left: 10px;
}
.button-sm,
a.button-sm {
  height: 40px;
  line-height: 40px;
  padding: 0 15px;
  background: #699fb9;
}
.button-sm i,
a.button-sm i {
  position: relative;
  display: inline;
  line-height: inherit;
  margin-right: 15px;
  background: none;
}
.button-sm:hover,
a.button-sm:hover,
.button-sm:focus,
a.button-sm:focus {
  background: #4c87a3;
}
.button-sm:hover i,
a.button-sm:hover i,
.button-sm:focus i,
a.button-sm:focus i {
  background: none;
}
.button-sm:disabled i,
a.button-sm:disabled i,
.button-sm.disabled i,
a.button-sm.disabled i {
  color: #EEE !important;
  cursor: default !important;
  background: none !important;
}
.button-sm.delete i,
a.button-sm.delete i {
  background: #999999;
}
.button-sm.delete:hover i,
a.button-sm.delete:hover i {
  background: #141111;
}
.actions-nav .button-sm,
.actions-nav a.button-sm {
  margin: 1px 0 0 1px;
  border: 1px solid #699fb9;
  color: #699fb9;
  background: transparent;
}
.actions-nav .button-sm:hover,
.actions-nav a.button-sm:hover,
.actions-nav .button-sm:focus,
.actions-nav a.button-sm:focus {
  color: #fff;
  background: #699fb9;
}
.cancel {
  display: inline-block;
  line-height: 50px;
  padding: 0;
  font-size: 16px;
}
.delete,
a.delete {
  background: #999999;
}
.delete i,
a.delete i {
  background: #CCC;
  color: #666666;
}
.delete:hover,
a.delete:hover,
.delete:focus,
a.delete:focus {
  background: #141111;
}
.delete:hover i,
a.delete:hover i,
.delete:focus i,
a.delete:focus i {
  color: #fff;
  background: #302828;
}
.img-holder {
  position: relative;
}
.img-holder .recrop-button {
  position: absolute;
  top: 1px;
  left: 1px;
  background: rgba(44, 44, 44, 0.7);
  cursor: pointer;
  -webkit-box-sizing: content-box;
          box-sizing: content-box;
  border: 0;
  padding: 8px;
  font-size: 16px;
  color: #fff;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.img-holder .recrop-button:hover {
  color: #e46143;
  background: #141111;
}
/*------ datepicker ------*/
.ui-datepicker {
  width: 260px;
  padding: 0.2em 4px 0 4px;
  display: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #2a617c;
  -moz-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.16);
  -webkit-box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.16);
  box-shadow: 0px 0px 4px 0px rgba(0, 0, 0, 0.16);
  /* with multiple calendars */
}
.ui-datepicker .ui-datepicker-header {
  position: relative;
  padding: 0.2em 0;
  background: #2a617c;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}
.ui-datepicker .ui-datepicker-prev,
.ui-datepicker .ui-datepicker-next {
  position: absolute;
  top: 2px;
  width: 1.8em;
  height: 1.8em;
}
.ui-datepicker .ui-datepicker-prev span,
.ui-datepicker .ui-datepicker-next span {
  position: absolute;
  display: block;
  left: 50%;
  margin-left: -8px;
  top: 50%;
  margin-top: -8px;
  font-size: 0px;
  color: #699fb9;
  -webkit-transition: color 0.3s ease 0s;
  -moz-transition: color 0.3s ease 0s;
  -ms-transition: color 0.3s ease 0s;
  -o-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
}
.ui-datepicker .ui-datepicker-prev span::before,
.ui-datepicker .ui-datepicker-next span::before {
  font-size: 16px;
  line-height: 1;
}
.ui-datepicker .ui-datepicker-prev:hover span,
.ui-datepicker .ui-datepicker-next:hover span {
  color: #FFF;
}
.ui-datepicker .ui-datepicker-prev span::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f137";
}
.ui-datepicker .ui-datepicker-next span::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f138";
}
.ui-datepicker .ui-datepicker-prev-hover,
.ui-datepicker .ui-datepicker-next-hover {
  color: #fff;
}
.ui-datepicker .ui-datepicker-prev {
  left: 2px;
}
.ui-datepicker .ui-datepicker-next {
  right: 2px;
}
.ui-datepicker .ui-datepicker-title {
  margin: 0 2.3em;
  line-height: 1.8em;
  text-align: center;
}
.ui-datepicker select.ui-datepicker-month,
.ui-datepicker select.ui-datepicker-year {
  width: 45%;
}
.ui-datepicker table {
  width: 100%;
  font-size: 0.9em;
  border-collapse: collapse;
  margin: 0 0 0.4em;
}
.ui-datepicker table th {
  padding: 0.7em 0.3em;
  height: auto;
  text-align: center;
  font-weight: bold;
  border: 0;
  background: #EEE;
}
.ui-datepicker table td {
  border: 0;
  padding: 2px;
  background: #fff !important;
}
.ui-datepicker table td span,
.ui-datepicker table td a {
  display: block;
  padding: 0.3em;
  text-align: right;
  text-decoration: none;
  border: 1px solid #EEE;
}
.ui-datepicker table td a.ui-state-active {
  border-color: #e46143;
}
.ui-datepicker table td a.ui-state-hover {
  background: #e46143;
  color: #fff;
  font-weight: 700;
}
.ui-datepicker table td.ui-datepicker-today a {
  background: #2a617c;
  color: #fff;
  font-weight: 700;
}
.ui-datepicker .ui-datepicker-buttonpane {
  background-image: none;
  margin: 0.7em 0 0 0;
  padding: 0 0.2em;
  border-left: 0;
  border-right: 0;
  border-bottom: 0;
}
.ui-datepicker .ui-datepicker-buttonpane button {
  overflow: visible;
  float: right;
  width: auto;
  margin: 0;
  padding: 2px 5px 12px 5px;
  font-size: 12px;
  line-height: 1.4;
  color: #FFF;
  border: 0;
  background: none;
  -webkit-appearance: none;
  cursor: pointer;
  -webkit-transition: color 0.3s ease 0s;
  -moz-transition: color 0.3s ease 0s;
  -ms-transition: color 0.3s ease 0s;
  -o-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
}
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
  float: left;
}
.ui-datepicker .ui-datepicker-buttonpane button:hover {
  color: #e46143;
}
.ui-datepicker.ui-datepicker-multi {
  width: auto;
}
.ui-datepicker.ui-datepicker-multi .ui-datepicker-group {
  float: left;
}
.ui-datepicker.ui-datepicker-multi .ui-datepicker-group table {
  width: 98%;
  margin: 0 auto 0.4em;
}
.ui-datepicker.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
  border-left-width: 0;
}
.ui-datepicker.ui-datepicker-multi .ui-datepicker-buttonpane {
  clear: left;
}
.ui-datepicker .ui-datepicker-multi-2 .ui-datepicker-group {
  width: 50%;
}
.ui-datepicker .ui-datepicker-multi-3 .ui-datepicker-group {
  width: 33.3%;
}
.ui-datepicker .ui-datepicker-multi-4 .ui-datepicker-group {
  width: 25%;
}
.ui-datepicker .ui-datepicker-row-break {
  clear: both;
  width: 100%;
  font-size: 0;
}
/* with month and year select */
.ui-datepicker select {
  font-size: 16px;
  font-family: 'Open Sans', sans-serif;
  color: #666666;
  font-weight: 400;
  border-radius: 0;
  border: 1px solid #CCC;
  background-color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 4px 8px;
  width: 260px;
  max-width: 100%;
  height: 40px;
  margin-bottom: 20px;
  outline: none;
  -webkit-transition: color 0.3s ease 0s, background-color 0.3s ease 0s, border-color 0.3s ease 0s;
  -moz-transition: color 0.3s ease 0s, background-color 0.3s ease 0s, border-color 0.3s ease 0s;
  -ms-transition: color 0.3s ease 0s, background-color 0.3s ease 0s, border-color 0.3s ease 0s;
  -o-transition: color 0.3s ease 0s, background-color 0.3s ease 0s, border-color 0.3s ease 0s;
  transition: color 0.3s ease 0s, background-color 0.3s ease 0s, border-color 0.3s ease 0s;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  padding-right: 22px;
  background-image: url("../images/angle-down.svg");
  background-position: calc(100% - 6px) calc(50% + 1px);
  background-repeat: no-repeat;
  background-size: 10px auto;
  text-overflow: "";
  line-height: 1.5;
  font-size: 14px !important;
  padding-top: 0;
  padding-bottom: 0;
  margin: 1px 2px 4px;
  height: 30px;
  background-position: 88% 8px;
}
.ui-datepicker select:focus {
  background-color: rgba(105, 159, 185, 0.8);
  color: #fff;
  border-color: #699fb9;
}
.ui-datepicker select:disabled {
  background-color: #EEE !important;
  color: #999999 !important;
}
.ui-datepicker select.full {
  width: 100%;
}
/*------ google map picker ------*/
.gllpLatlonPicker {
  position: relative;
  border: 0;
  padding: 0;
  margin: 0 15px 10px 0;
  max-width: 100%;
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.gllpMap {
  position: relative;
  z-index: 1;
  width: 590px;
  height: 235px;
  max-width: 100%;
  overflow: hidden;
  resize: both;
}
.gllpSearch {
  position: absolute;
  top: 10px;
  left: 10px;
  z-index: 2;
  border-radius: 2px;
  background: #FFF;
  -webkit-box-shadow: 0px 1px 4px -1px rgba(0, 0, 0, 0.3);
          box-shadow: 0px 1px 4px -1px rgba(0, 0, 0, 0.3);
  overflow: hidden;
  color: #666;
}
.gllpSearch .input {
  border: 0;
}
.gllpSearch .input::-webkit-input-placeholder {
  color: #999;
}
.gllpSearch .input:-ms-input-placeholder {
  color: #999;
}
.gllpSearch .input::-moz-placeholder {
  color: #999;
}
.gllpSearch .input:-moz-placeholder {
  color: #999;
}
.gllpSearch .input::-ms-input-placeholder {
  color: #999;
}
.gllpSearch .input::placeholder {
  color: #999;
}
.gllpSearch .input,
.gllpSearch .input:focus {
  background: none;
  color: inherit;
}
.gllpSearch .input:focus::-webkit-input-placeholder {
  color: #666;
}
.gllpSearch .input:focus:-ms-input-placeholder {
  color: #666;
}
.gllpSearch .input:focus::-moz-placeholder {
  color: #666;
}
.gllpSearch .input:focus:-moz-placeholder {
  color: #666;
}
.gllpSearch .input:focus::-ms-input-placeholder {
  color: #666;
}
.gllpSearch .input:focus::placeholder {
  color: #666;
}
.gllpSearch .button-sm {
  position: relative;
  padding: 0;
  font-size: 18px;
  color: inherit;
  background: #FFF;
}
.gllpSearch .button-sm:hover,
.gllpSearch .button-sm:focus {
  color: #111;
}
.gllpSearch .button-sm::after {
  position: absolute;
  top: 0;
  right: auto;
  bottom: 0;
  left: 0;
  width: 1px;
  height: 30px;
  margin: auto;
  background-color: #e6e6e6;
  content: '';
}
fieldset.gllpLatlonPicker {
  float: left;
  display: block;
}
/*------ alerts ------*/
.success {
  color: #65B561;
}
.error {
  color: #CC0000;
}
.alert {
  color: #e0b400;
}
.required {
  border-color: #CC0000;
  color: #CC0000;
}
.system-alert {
  background: #fff;
  margin: 0 0 20px;
  opacity: 0;
  overflow: hidden;
  -moz-box-shadow: 0px 0px 4px 0px rgba(102, 102, 102, 0.16);
  -webkit-box-shadow: 0px 0px 4px 0px rgba(102, 102, 102, 0.16);
  box-shadow: 0px 0px 4px 0px rgba(102, 102, 102, 0.16);
}
.system-alert .title {
  padding: 20px 20px 20px 15px;
  text-transform: uppercase;
  color: #fff;
  font-size: 16px;
  font-family: 'Exo', sans-serif;
  font-weight: 800;
}
.system-alert .title i {
  padding-right: 10px;
}
.system-alert .message {
  padding: 20px 15px;
  color: #141111;
}
.system-alert.important .panel-toggle {
  color: #fff;
  font-size: 16px;
}
.system-alert.important .title {
  background: #699fb9;
  color: #fff;
}
.system-alert.important.error .title {
  background: #CC0000;
}
.system-alert.error .title {
  background: #CC0000;
}
.system-alert.success .title {
  background: #65B561;
}
.system-alert.mini {
  position: relative;
  width: 100%;
  color: #fff;
  background: #141111;
  opacity: 0.9;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.system-alert.mini p {
  padding-bottom: 10px;
}
.system-alert.mini .message {
  padding: 10px 15px;
  color: #fff;
  font-size: 12px;
  font-weight: 600;
}
.system-alert.mini.error .title,
.system-alert.mini.success .title {
  padding-bottom: 0;
  background: none;
}
.system-alert.mini.error .title i {
  color: #CC0000;
}
.system-alert.mini.success .title i {
  color: #65B561;
}
#system-mini-alerts {
  position: fixed;
  z-index: 20;
  top: 110px;
  right: 20px;
  width: 260px;
  pointer-events: none;
}
/*------ login table ------*/
#login-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  min-height: 400px;
  background-size: cover;
  background-position: center;
}
#login-wrapper::before,
#login-wrapper::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
#login-wrapper::before {
  background-image: -webkit-gradient(linear, left top, right top, from(#93a4ac), color-stop(#e46143), to(#93a4ac));
  background-image: linear-gradient(90deg, #93a4ac, #e46143, #93a4ac);
  background-size: 200% auto;
  z-index: 0;
  opacity: 0.6;
}
#login-wrapper::after {
  background-color: #000;
  opacity: 0.25;
  z-index: 1;
}
#login-header {
  padding: 0 0 20px;
  margin: 0 0 25px;
  border-bottom: 1px solid #EEE;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 10px;
}
#login-header img {
  max-width: 45px;
}
#login-header img + img {
  max-width: 140px;
}
#login-form {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 360px;
  max-width: 100%;
  margin: 0;
  padding: 25px 25px 40px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #fff;
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 10;
}
#login-form .form-field {
  display: block;
  float: none;
  margin: 0 0 20px;
}
#login-form .form-field label {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  font-family: 'Exo', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
}
#login-form .form-field label a {
  display: inline-block;
  margin-left: auto;
  font-family: 'Open Sans', sans-serif;
  text-transform: none;
  font-weight: 400;
}
#login-form .form-field .input {
  width: 100%;
  height: 50px;
}
#login-form .checkbox + label {
  padding-top: 15px;
}
#login-form #login-buttons {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
#login-form #login-buttons .button {
  margin-left: auto;
}
#login-form #login-alert {
  background: #ffe6e6;
  color: #CC0000;
  font-weight: 600;
  padding: 5px 10px;
  margin-bottom: 20px;
}
#login-form #login-alert.success {
  background: #ecf6ec;
  color: #65B561;
}
#login-form .toggle-password {
  top: 16px;
  right: 16px;
  font-size: 16px;
}
/*------ search form ------*/
#search-form {
  position: relative;
  float: left;
  display: block;
}
#search-form .input {
  float: left;
  display: block;
  height: 50px;
  padding-right: 20px;
}
#search-form .select {
  height: 50px;
}
#search-form .button {
  padding: 0;
  width: 50px;
}
#search-form .button i {
  background: #93a4ac;
}
#search-form .button:hover i,
#search-form .button:focus i {
  background: #141111;
}
#search-form #clear-search {
  position: absolute;
  z-index: 1;
  left: 240px;
  line-height: 50px;
}
.multiple-search .input,
.multiple-search .select {
  margin-right: 10px;
}
/*------ social inputs ------*/
.social {
  position: relative;
}
.social .input {
  position: relative;
  z-index: 1;
  padding-left: 50px;
}
.social .fab {
  position: absolute;
  display: block;
  z-index: 2;
  width: 38px;
  height: 38px;
  top: 1px;
  left: 1px;
  background-color: #ea8670;
  color: #fff;
  font-size: 20px;
  text-align: center;
  line-height: 38px;
}
/*------ img position picker ------*/
.img-position-picker {
  position: relative;
  float: left;
  clear: both;
  margin-bottom: 20px;
}
.img-position-picker img {
  display: block;
  width: 600px;
  max-width: 100%;
}
.img-position-picker.img-picker-small img {
  width: 300px;
}
.img-position-picker .radios-wrapper {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}
.img-position-picker .radios-wrapper input[type="radio"] {
  display: none;
}
.img-position-picker .radios-wrapper input[type="radio"] + label {
  position: absolute;
  top: 0;
  left: 0;
  display: block;
  width: 33.33333333%;
  height: 33.33333333%;
  margin: 0;
  padding: 0;
  border: 1px solid #fff;
  z-index: 1;
  cursor: pointer;
}
.img-position-picker .radios-wrapper input[type="radio"].left-0 + label {
  left: 0;
}
.img-position-picker .radios-wrapper input[type="radio"].left-3 + label {
  left: 33.33333333%;
}
.img-position-picker .radios-wrapper input[type="radio"].left-6 + label {
  left: 66.66666667%;
}
.img-position-picker .radios-wrapper input[type="radio"].top-0 + label {
  top: 0;
}
.img-position-picker .radios-wrapper input[type="radio"].top-3 + label {
  top: 33.33333333%;
}
.img-position-picker .radios-wrapper input[type="radio"].top-6 + label {
  top: 66.66666667%;
}
.img-position-picker .radios-wrapper input[type="radio"]:checked + label {
  background: rgba(228, 97, 67, 0.75);
}
/*------ 5 star rating input ------*/
.rating-wrapper {
  margin: 0 0 20px;
}
.rating-select {
  display: inline-block !important;
  font-size: 25px;
  padding: 6px 0 9px;
  line-height: 1em;
  vertical-align: top;
  white-space: nowrap;
}
.rating-select input {
  position: absolute;
  width: 0.1px;
  height: 0.1px;
  visibility: hidden;
  opacity: 0;
}
.rating-select label {
  position: relative;
  display: block;
  color: #e46143;
  cursor: pointer;
  float: right;
  -webkit-transition: color 0.3s ease 0s;
  -moz-transition: color 0.3s ease 0s;
  -ms-transition: color 0.3s ease 0s;
  -o-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
}
.rating-select label:not(:first-of-type) {
  padding: 0 5px 0 0;
}
.rating-select label::before,
.rating-select label::after {
  display: block;
  font-family: "Font Awesome 6 Free";
  font-weight: 400;
  content: "\f005";
}
.rating-select label::before {
  -webkit-transition: opacity 0.1s ease 0s;
  -moz-transition: opacity 0.1s ease 0s;
  -ms-transition: opacity 0.1s ease 0s;
  -o-transition: opacity 0.1s ease 0s;
  transition: opacity 0.1s ease 0s;
}
.rating-select label::after {
  opacity: 0;
  font-weight: 900;
  -webkit-transition: opacity 0.15s ease 0s;
  -moz-transition: opacity 0.15s ease 0s;
  -ms-transition: opacity 0.15s ease 0s;
  -o-transition: opacity 0.15s ease 0s;
  transition: opacity 0.15s ease 0s;
  position: absolute;
  top: 0;
  left: 0;
}
.rating-select label:hover,
.rating-select label:hover ~ label {
  color: #2a617c;
}
.rating-select > input:checked ~ label::after {
  opacity: 1;
}
.rating-select > input:checked ~ label::before {
  opacity: 0;
  -webkit-transition: opacity 0.1s ease 0.15s;
  -moz-transition: opacity 0.1s ease 0.15s;
  -ms-transition: opacity 0.1s ease 0.15s;
  -o-transition: opacity 0.1s ease 0.15s;
  transition: opacity 0.1s ease 0.15s;
}
.rating-select input:disabled + label {
  color: #999999;
}
/*------ actions nav ------*/
.actions-nav {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-bottom: 20px;
  border-bottom: 1px solid #CCC;
}
.actions-nav .column,
.actions-nav .flex-column {
  margin-bottom: 20px;
}
.actions-nav .column.right,
.actions-nav .flex-column.right {
  margin-left: auto;
}
.actions-nav .nav-item {
  display: inline-block;
}
.actions-nav .nav-item ~ .nav-item {
  margin-left: 10px;
}
.actions-nav #search-form .input {
  margin-bottom: 0;
}
/*------ multiselects ------*/
.multiselect {
  width: 235px;
  height: 115px;
  margin: 0 0 20px;
  padding: 10px;
  border: 1px solid #CCC;
  background: #fff;
  outline: none;
  border-radius: 0;
  font-size: 16px;
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  line-height: 30px;
  color: #666666;
  text-overflow: "";
  list-style: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  -webkit-transition: background-color 0.3s ease 0s;
  -moz-transition: background-color 0.3s ease 0s;
  -ms-transition: background-color 0.3s ease 0s;
  -o-transition: background-color 0.3s ease 0s;
  transition: background-color 0.3s ease 0s;
}
.multiselect .checkbox + label,
.multiselect .radio + label {
  padding-right: 0;
}
.multiselect.multiselect-lg {
  width: 352.5px;
  height: 230px;
}
.multiselect-field {
  display: inline-block;
  margin-right: 10px;
  vertical-align: middle;
}
.multiselect option {
  padding: 4px 8px 4px 4px;
}
.multiselect-arrows {
  display: inline-block;
  margin: 5px 20px 0 10px;
  vertical-align: middle;
}
.multiselect-arrow,
a.multiselect-arrow {
  display: block;
  margin: 0 0 1px 0 !important;
  padding: 0 20px;
}
/*------ dropzone ------*/
.dropzone {
  margin-bottom: 20px;
  border-style: dashed;
  border-color: #e46143;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.dropzone input[type="file"] {
  display: none;
}
.dropzone .dz-message.dz-default {
  margin: 45px 0;
  color: #666666;
  font-size: 16px;
}
.dropzone .dz-message.dz-default small {
  margin: 4px 0 5px;
}
.dropzone.dz-drag-hover,
.dropzone:hover {
  border-color: #2a617c;
  background: #fef7f5;
}
.dropzone.dz-drag-hover .button-sm,
.dropzone:hover .button-sm {
  background-color: #e46143;
}
.dropzone.dz-drag-hover {
  border-style: solid;
}
.dz-gallery {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  list-style: none;
  margin: -6px;
  padding: 0;
}
.dz-gallery li {
  position: relative;
  margin: 0 6px 12px;
  overflow: hidden;
}
.dz-gallery li .container-checkbox {
  position: absolute;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 0;
  height: 0;
  opacity: 0;
}
.dz-gallery li .container-checkbox + label {
  position: relative;
  display: block;
  width: 150px;
  height: auto;
  min-height: 150px;
  padding: 6px;
  margin-bottom: 0;
  background-color: #EEE;
  cursor: pointer;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.dz-gallery li .container-checkbox + label > i {
  font-size: 80px;
  line-height: 130px;
  color: #2a617c;
}
.dz-gallery li .container-checkbox:checked + label {
  background-color: #e46143;
}
.dz-gallery li .container-checkbox:not(:checked) + label img {
  -webkit-filter: grayscale(1);
  -moz-filter: grayscale(1);
  -ms-filter: grayscale(1);
  filter: grayscale(1);
}
.dz-gallery li img,
.dz-gallery li .text-option {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  max-width: calc(100% - 12px);
  max-height: calc(100% - 12px);
  -webkit-transform: translate(-50%, -50%);
  -moz-transform: translate(-50%, -50%);
  -o-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.dz-gallery li .text-option {
  font-weight: 700;
  font-size: 16px;
  text-align: center;
}
.dz-gallery li .caption {
  padding: 10px;
  text-align: center;
  line-height: 1;
}
.dz-gallery li .caption strong {
  color: #666666;
}
.dz-gallery li .sort-handler {
  position: absolute;
  top: 6px;
  left: 6px;
  padding: 9px;
  background: rgba(20, 17, 17, 0.7);
  opacity: 0;
  cursor: pointer;
  color: #fff;
  text-align: center;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.dz-gallery li .sort-handler:hover {
  background: #141111;
}
.dz-gallery li .sort-handler:active {
  cursor: -webkit-grabbing;
  cursor: grabbing;
}
.dz-gallery li .sort-handler i {
  color: inherit;
}
.dz-gallery li .buttons {
  position: absolute;
  left: 6px;
  right: 6px;
  bottom: 6px;
  background: rgba(20, 17, 17, 0.7);
  opacity: 0;
  text-align: center;
  -webkit-transform: translateY(20px);
  -moz-transform: translateY(20px);
  -ms-transform: translateY(20px);
  -o-transform: translateY(20px);
  transform: translateY(20px);
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.dz-gallery li .buttons small {
  display: block;
  padding: 6px;
  line-height: 1.4;
  color: #fff;
}
.dz-gallery li .buttons a {
  display: inline-block;
  margin: 5px 0;
  padding: 3px 5px;
  color: #fff;
}
.dz-gallery li .buttons a i {
  font-size: 18px;
  cursor: pointer;
}
.dz-gallery li .buttons a:hover,
.dz-gallery li .buttons a:active {
  color: #e46143;
}
.dz-gallery li .buttons:hover,
.dz-gallery li .buttons:active {
  background: #333;
}
.dz-gallery li:hover .sort-handler,
.dz-gallery li:active .sort-handler {
  opacity: 1;
}
.dz-gallery li:hover .buttons,
.dz-gallery li:active .buttons {
  opacity: 1;
  -webkit-transform: translateY(0);
  -moz-transform: translateY(0);
  -ms-transform: translateY(0);
  -o-transform: translateY(0);
  transform: translateY(0);
}
.dz-gallery li.placeholder-item {
  display: block;
  width: 192px;
  border: 1px dashed #ddd;
  background: #EEE;
}
/*------ image/icon picker ------*/
.item-picker {
  --width: 250px;
  --spacing: 6px;
  display: -ms-grid;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(var(--width), 1fr));
  gap: 20px;
  padding-bottom: 10px;
}
.item-picker input[type="checkbox"] {
  position: absolute;
  margin: 0;
  padding: 0;
  border: 0;
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  background: none;
  overflow: hidden;
}
.item-picker label {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column;
          flex-flow: column;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-box-flex: 0 0 auto;
  -moz-box-flex: 0 0 auto;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
  position: relative;
  height: auto;
  margin: 0;
  padding: var(--spacing);
  border: 1px solid #CCC;
  cursor: pointer;
}
.item-picker label img {
  display: block;
  padding-bottom: 10px;
  width: 100%;
  height: auto;
}
.item-picker label i:not(.handle) {
  display: block;
  font-size: 30px;
  line-height: 90px;
  text-align: center;
  color: #e46143;
}
.item-picker label .handle {
  color: #FFF;
  background-color: rgba(20, 17, 17, 0.7);
  opacity: 0;
  font-size: 16px;
  line-height: 30px;
  text-align: center;
  position: absolute;
  top: var(--spacing);
  right: auto;
  bottom: auto;
  left: var(--spacing);
  width: 30px;
  height: 30px;
  margin: auto;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row;
          flex-flow: row;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.item-picker label .title {
  font-weight: bold;
}
.item-picker label:hover {
  border-color: #e46143;
}
.item-picker label:hover .handle {
  opacity: 1;
}
.item-picker :checked + label {
  background-color: #e46143;
  border-color: #e46143;
}
.item-picker :checked + label,
.item-picker :checked + label small,
.item-picker :checked + label i:not(.handle) {
  color: #FFF;
}
.item-picker .placeholder-item {
  border: 2px dashed #CCC;
}
.item-picker.icons {
  --width: 150px;
  --spacing: 10px;
}
.item-picker.icons label {
  padding: 10px;
}
.item-picker.icons label i:not(.handle) {
  font-size: inherit;
  line-height: inherit;
  padding-bottom: 10px;
}
.item-picker.icons label .handle {
  width: auto;
  height: auto;
  line-height: inherit;
  background: none;
  font-size: inherit;
  opacity: 1;
  color: #CCC;
}
.item-picker.icons :checked + label .handle {
  color: #FFF;
}
/*------ autocomplete ------*/
.ui-autocomplete.ui-menu {
  position: absolute;
  top: 0;
  right: 0;
  bottom: auto;
  left: auto;
  display: block;
  max-height: 200px;
  margin: 0;
  padding: 0;
  border: 1px solid #CCC;
  border-width: 0 1px 1px;
  overflow-y: auto;
  background-color: #FFF;
  list-style: none;
  z-index: 2;
}
.ui-autocomplete.ui-menu li {
  display: block;
}
.ui-autocomplete.ui-menu .ui-menu-item {
  padding: 4px 8px;
  cursor: pointer;
  color: #e46143;
  background-color: inherit;
  -webkit-transition: background-color 0.3s ease 0s;
  -moz-transition: background-color 0.3s ease 0s;
  -ms-transition: background-color 0.3s ease 0s;
  -o-transition: background-color 0.3s ease 0s;
  transition: background-color 0.3s ease 0s;
}
.ui-autocomplete.ui-menu .ui-menu-item:not(:last-child) {
  border-bottom: 1px solid #CCC;
}
.ui-autocomplete.ui-menu .ui-menu-item:hover {
  background-color: #EEE;
}
/*------ button styles in tinymce ------*/
.mce-menu-item .mce-ico,
.mce-menu-item .mce-text {
  color: #333 !important;
}
/*------ iconpicker ------*/
.iconpicker-container {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  width: 260px;
}
.iconpicker-container .input {
  width: auto;
  -webkit-box-flex: 1 1 auto;
  -moz-box-flex: 1 1 auto;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
.iconpicker-container .iconpicker-component {
  display: block;
  width: 40px;
  height: 40px;
  background-color: #93a4ac;
  color: #FFF;
  line-height: 40px;
  text-align: center;
  -webkit-transition: background-color 0.3s ease 0s;
  -moz-transition: background-color 0.3s ease 0s;
  -ms-transition: background-color 0.3s ease 0s;
  -o-transition: background-color 0.3s ease 0s;
  transition: background-color 0.3s ease 0s;
}
.iconpicker-container .iconpicker-component i {
  font-style: normal;
}
.iconpicker-container .iconpicker-component i[class=""]:before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f002";
}
.iconpicker-container .iconpicker-component:hover {
  background-color: #2a617c;
}
.iconpicker-popover.popover {
  width: 266px;
}
.iconpicker-popover.popover.bottom > .arrow {
  top: -9px;
  border-bottom-color: #CCC;
  z-index: 2;
}
.iconpicker-popover .popover-content {
  position: relative;
  border: 1px solid #CCC;
  z-index: 1;
}
.iconpicker-popover .iconpicker-search {
  font-size: 16px;
  font-family: 'Open Sans', sans-serif;
  color: #666666;
  font-weight: 400;
  border-radius: 0;
  border: 1px solid #CCC;
  background-color: #fff;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding: 4px 8px;
  width: 260px;
  max-width: 100%;
  height: 40px;
  margin-bottom: 20px;
  outline: none;
  -webkit-transition: color 0.3s ease 0s, background-color 0.3s ease 0s, border-color 0.3s ease 0s;
  -moz-transition: color 0.3s ease 0s, background-color 0.3s ease 0s, border-color 0.3s ease 0s;
  -ms-transition: color 0.3s ease 0s, background-color 0.3s ease 0s, border-color 0.3s ease 0s;
  -o-transition: color 0.3s ease 0s, background-color 0.3s ease 0s, border-color 0.3s ease 0s;
  transition: color 0.3s ease 0s, background-color 0.3s ease 0s, border-color 0.3s ease 0s;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  width: 100%;
}
.iconpicker-popover .iconpicker-search:focus {
  background-color: rgba(105, 159, 185, 0.8);
  color: #fff;
  border-color: #699fb9;
}
.iconpicker-popover .iconpicker-search:disabled {
  background-color: #EEE !important;
  color: #999999 !important;
}
.iconpicker-popover .iconpicker-search.full {
  width: 100%;
}
/*------ cropper ------*/
.cropper-wrapper {
  --overlay: rgba(0, 0, 0, 0.6);
  position: relative;
  background: repeating-conic-gradient(#808080 0% 25%, #666 0% 50%) 0% 16px;
  overflow: hidden;
}
.cropper-wrapper img {
  display: block;
  margin: auto;
  max-width: 100%;
}
.cropper-wrapper .cropper-image {
  position: relative;
  height: 50vw;
  max-height: 600px;
}
.cropper-wrapper .cropper-image > img {
  max-height: 100%;
  background-color: #999999;
}
.cropper-wrapper .cropper-image::before {
  font-size: 48px;
  line-height: 1em;
  text-align: center;
  color: #FFF;
  opacity: 0;
  z-index: 1;
  pointer-events: none;
  -webkit-transition: opacity 0.3s ease 0.3s;
  -moz-transition: opacity 0.3s ease 0.3s;
  -ms-transition: opacity 0.3s ease 0.3s;
  -o-transition: opacity 0.3s ease 0.3s;
  transition: opacity 0.3s ease 0.3s;
  -webkit-animation: fa-spin 2s linear infinite;
  -ms-animation: fa-spin 2s linear infinite;
  animation: fa-spin 2s linear infinite;
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-play-state: var(--animation-play-state, running);
          animation-play-state: var(--animation-play-state, running);
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 1em;
  height: 1em;
  margin: auto;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f110";
}
.cropper-wrapper .cropper-alert {
  position: absolute;
  top: 0;
  right: auto;
  bottom: auto;
  left: auto;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -moz-box;
  display: flex;
  -ms-flex-flow: nowrap;
      flex-flow: nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: baseline;
      -ms-flex-align: baseline;
          align-items: baseline;
  gap: 10px;
  padding: 8px 12px;
  color: #FFF;
  background-color: var(--overlay);
  font-weight: 700;
  opacity: 0;
  white-space: nowrap;
  pointer-events: none;
  z-index: 1;
  -webkit-transition: opacity 0.3s ease 0s;
  -moz-transition: opacity 0.3s ease 0s;
  -ms-transition: opacity 0.3s ease 0s;
  -o-transition: opacity 0.3s ease 0s;
  transition: opacity 0.3s ease 0s;
}
.cropper-wrapper .cropper-alert.active {
  opacity: 1;
}
.cropper-wrapper .cropper-alert a {
  pointer-events: auto;
}
.cropper-wrapper .cropper-alert a:hover {
  color: #f4bfb2;
}
.cropper-wrapper .cropper-controls {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  position: relative;
  background-color: #FFF;
  gap: 10px;
  padding: 10px;
}
.cropper-wrapper .cropper-controls .control {
  margin: 0;
}
.cropper-wrapper .cropper-controls .cropper-zoom {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -moz-box;
  display: flex;
  -ms-flex-flow: nowrap;
      flex-flow: nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 20px;
  padding: 0px 15px;
  font-family: 'Exo', sans-serif;
  font-weight: 800;
  text-transform: uppercase;
  background-color: #e46143;
  color: #FFF;
  pointer-events: auto;
  font-size: 16px;
}
.cropper-wrapper .cropper-controls .cropper-zoom span {
  margin-top: 2px;
}
.cropper-wrapper .cropper-controls input[type="range"] {
  width: 100%;
  background: none;
  color: inherit;
  --height: 14px;
  --track-height: 2px;
  height: var(--height);
}
.cropper-wrapper .cropper-controls input[type="range"],
.cropper-wrapper .cropper-controls input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
}
.cropper-wrapper .cropper-controls input[type="range"]::-webkit-slider-runnable-track {
  height: var(--height);
}
.cropper-wrapper .cropper-controls input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: var(--height);
  width: var(--height);
  border-radius: 50%;
  border: 0;
  background-color: currentColor;
  cursor: pointer;
  margin-top: calc(var(--height)/-2 + var(--track-height)/2);
}
.cropper-wrapper .cropper-controls input[type="range"]::-webkit-slider-runnable-track {
  width: 100%;
  height: var(--track-height);
  border: 0;
  background-color: currentColor;
}
.cropper-wrapper .cropper-controls input[type="range"]::-moz-range-thumb {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  height: var(--height);
  width: var(--height);
  border-radius: 50%;
  border: 0;
  background-color: currentColor;
  cursor: pointer;
  margin-top: calc(var(--height)/-2 + var(--track-height)/2);
}
.cropper-wrapper .cropper-controls input[type="range"]::-moz-range-track {
  width: 100%;
  height: var(--track-height);
  border: 0;
  background-color: currentColor;
}
.cropper-wrapper .cropper-canvas,
.cropper-wrapper .cropper-wrap-box {
  overflow: visible;
}
.cropper-wrapper .cropper-point,
.cropper-wrapper .cropper-line {
  opacity: 1;
}
.cropper-wrapper .cropper-point {
  background-color: #FFF;
}
.cropper-wrapper .cropper-line {
  background-color: #ee9986;
}
.cropper-wrapper .line-n,
.cropper-wrapper .line-s {
  height: 1px;
}
.cropper-wrapper .line-e,
.cropper-wrapper .line-w {
  width: 1px;
}
.cropper-wrapper .line-n {
  top: -1px;
}
.cropper-wrapper .line-e {
  right: -1px;
}
.cropper-wrapper .line-s {
  bottom: -1px;
}
.cropper-wrapper .line-w {
  left: -1px;
}
.cropper-wrapper:not(.cropper-init) .cropper-image::before {
  opacity: 1;
}
.cropper-wrapper:not(.cropper-init) .cropper-image::after {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.5);
  content: '';
}
.usagewrapper {
  border: 1px solid #CCC;
  position: relative;
  height: 30px;
  width: 250px;
  background: #EEE;
}
.usagestats {
  position: absolute;
  left: 0px;
  padding-left: 10px;
  line-height: 30px;
  color: #999999;
  font-size: 10px;
  text-align: right;
}
.usage {
  height: 30px;
  position: absolute;
}
.withinlimit {
  background: #e46143;
}
.overlimit {
  background: #FFCC00;
}
.warninglimit {
  background: #CC0000;
}
#statsbyemail #search-form {
  margin-bottom: 10px;
}
#statsbyemail #search-form input {
  margin: 0;
}
#statsbyemail tr:nth-child(4n-1) td {
  background: #EEE;
}
.stats-expanded td {
  padding: 0;
  background-color: #EEE;
  font-size: 10px;
  color: #999999;
}
.stats-expanded td div {
  display: none;
  padding: 10px 20px 10px 100px;
  border-top: 1px solid #CCC;
  border-bottom: 1px solid #CCC;
}
.stats-expanded td a {
  font-size: 10px;
}
.stats-loader {
  background: url('../images/loading.gif') 5px 3px no-repeat;
  padding-left: 30px;
}
#search-form .select {
  height: 50px;
  margin-bottom: 20px;
}
/* multi-select filter bootstrap style overrides */
.form-field.filter {
  max-width: 400px;
}
@media (max-width: 481px) {
  .form-field.filter {
    width: 100%;
    max-width: 100%;
  }
}
.select.filter-multi-select {
  visibility: hidden;
}
.filter-multi-select {
  --fms-badge-color: #699fb9;
}
.filter-multi-select .form-control {
  outline: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  margin-bottom: 20px;
  padding: 4px 8px;
  width: 100%;
  min-width: 400px;
  height: 40px;
  line-height: 32px;
  font-size: 16px;
  font-weight: 400;
  font-family: 'Open Sans', sans-serif;
  color: #666666;
  background-color: #fff;
  border-radius: 0;
  border: 1px solid #CCC;
  overflow: hidden;
}
.filter-multi-select .form-control .select-counter {
  position: relative;
  top: -2px;
  color: #aaa;
  font-size: 12px;
  margin-right: 8px;
}
.filter-multi-select .selected-items .item {
  padding: 0 0 0 0.7em;
  line-height: 1em;
  font-size: 14px;
}
.filter-multi-select .dropdown-menu.show {
  border-radius: 0;
  border: 1px solid #CCC;
}
.filter-multi-select .filter.dropdown-item .form-control {
  margin-bottom: 10px;
}
.filter-multi-select > .dropdown-toggle::before {
  margin-right: 0.755em;
}
.filter-multi-select > .dropdown-menu > .filter > button {
  top: 1.3rem;
}
.filter-multi-select .custom-control-input:disabled ~ .custom-control-label {
  margin-left: -44px;
  margin-top: 8px;
  padding-left: 20px;
  font-weight: 700;
  color: #93a4ac;
}
@media (max-width: 481px) {
  .filter-multi-select .form-control {
    min-width: 100%;
  }
  .filter-multi-select .dropdown-menu.show {
    width: 100%;
  }
  .filter-multi-select .dropdown-item .custom-control {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -moz-box;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-flow: column wrap;
            flex-flow: column wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
    white-space: normal;
  }
  .filter-multi-select .dropdown-item .custom-control-label {
    -webkit-box-flex: 1;
        -ms-flex: 1;
            flex: 1;
    min-height: 1.25rem;
  }
}
.single-select .filter-multi-select .custom-control-input:disabled ~ .custom-control-label {
  margin-left: 0;
  margin-top: 0;
  padding-left: 0;
  font-weight: 500;
  color: #212529;
}
.single-select .filter-multi-select .custom-control-input:disabled[value*="single-select-disabled"] ~ .custom-control-label {
  margin-left: -44px;
  margin-top: 8px;
  padding-left: 20px;
  font-weight: 700;
  color: #93a4ac;
}
.single-select .select-counter {
  display: none;
}
/****** colour definitions for reporting ******/
:root {
  --report-range-1: rgba(228, 124, 67, 0.85);
  --report-range-2: rgba(228, 151, 67, 0.85);
  --report-range-3: rgba(228, 177, 67, 0.85);
  --report-range-4: rgba(228, 204, 67, 0.85);
  --report-range-5: rgba(225, 228, 67, 0.85);
  --report-range-6: rgba(198, 228, 67, 0.85);
  --report-range-7: rgba(67, 118, 228, 0.85);
  --report-range-8: rgba(97, 67, 228, 0.85);
  --report-range-9: rgba(178, 67, 228, 0.85);
  --report-range-10: rgba(228, 67, 198, 0.85);
  --report-range-11: rgba(228, 67, 117, 0.85);
  --report-range-12: rgba(228, 97, 67, 0.85);
  --report-range-13: rgba(105, 146, 185, 0.85);
  --report-range-14: rgba(105, 132, 185, 0.85);
  --report-range-15: rgba(105, 119, 185, 0.85);
  --report-range-16: rgba(105, 106, 185, 0.85);
  --report-range-17: rgba(118, 105, 185, 0.85);
  --report-range-18: rgba(131, 105, 185, 0.85);
  --report-range-19: rgba(185, 171, 105, 0.85);
  --report-range-20: rgba(159, 185, 105, 0.85);
  --report-range-21: rgba(119, 185, 105, 0.85);
  --report-range-22: rgba(105, 185, 131, 0.85);
  --report-range-23: rgba(105, 185, 171, 0.85);
  --report-range-24: rgba(105, 159, 185, 0.85);
  --products-range-1: rgba(105, 146, 185, 0.55);
  --products-range-2: rgba(105, 132, 185, 0.55);
  --products-range-3: rgba(105, 119, 185, 0.55);
  --products-range-4: rgba(105, 106, 185, 0.55);
  --products-range-5: rgba(118, 105, 185, 0.55);
  --products-range-6: rgba(131, 105, 185, 0.55);
  --products-range-7: rgba(185, 171, 105, 0.55);
  --products-range-8: rgba(159, 185, 105, 0.55);
  --products-range-9: rgba(119, 185, 105, 0.55);
  --products-range-10: rgba(105, 185, 131, 0.55);
  --products-range-11: rgba(105, 185, 171, 0.55);
  --products-range-12: rgba(105, 159, 185, 0.55);
  --report-insurance: rgba(126, 217, 87, 0.85);
}
/*------ reset ------*/
* {
  margin: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
body,
html {
  width: 100%;
  height: 100%;
  background: #EEE;
  scroll-padding-top: 85px;
}
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  display: block;
}
img {
  border: 0;
  -ms-interpolation-mode: bicubic;
}
p {
  padding: 0 0 20px 0;
  margin: 0;
}
ul,
ol {
  padding: 0 0 20px 0;
  margin: 0 0 0 40px;
}
hr {
  border: 0;
  border-top: 1px solid #CCC;
  height: 0px;
  background: #FFF;
  padding: 0;
  margin: 0 0 20px 0;
}
/*------ typography ------*/
body,
tr,
td {
  font-family: 'Open Sans', sans-serif;
  font-weight: 400;
  font-size: 14px;
  line-height: 1.4em;
  color: #141111;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  letter-spacing: -0.02em;
}
a {
  text-decoration: none;
  cursor: pointer;
  outline: none;
  color: #699fb9;
  -webkit-transition: color 0.3s ease 0s, background-color 0.3s ease 0s;
  -moz-transition: color 0.3s ease 0s, background-color 0.3s ease 0s;
  -ms-transition: color 0.3s ease 0s, background-color 0.3s ease 0s;
  -o-transition: color 0.3s ease 0s, background-color 0.3s ease 0s;
  transition: color 0.3s ease 0s, background-color 0.3s ease 0s;
}
a:hover,
a:focus {
  color: #2a617c;
  text-decoration: none;
}
h1,
h2,
h3,
h4,
h5,
h6,
.sp-sales-wrap .product-label {
  font-family: 'Exo', sans-serif;
  padding: 0;
  margin: 0;
  font-weight: 500;
}
h1 {
  font-size: 24px;
  line-height: 1.2;
}
h2 {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 600;
}
h3 {
  font-size: 16px;
  margin-bottom: 15px;
}
h4,
.sp-sales-wrap .product-label {
  font-size: 14px;
  margin-bottom: 10px;
  letter-spacing: 0;
}
h5 {
  font-size: 13px;
  margin-bottom: 5px;
  letter-spacing: 0;
}
h6 {
  font-size: 12px;
  margin-bottom: 0px;
  letter-spacing: 0;
}
small {
  font-size: 80%;
  color: #93a4ac;
}
.color-theme1 {
  color: #e46143;
}
.color-theme2 {
  color: #2a617c;
}
.color-theme3 {
  color: #93a4ac;
}
.color-grey {
  color: #999999;
}
.color-error {
  color: #CC0000;
}
.fas {
  font-weight: 900 !important;
}
.far {
  font-weight: 400 !important;
}
.fab {
  font-weight: 400 !important;
}
.medium {
  font-weight: 500;
}
.extrabold {
  font-weight: 800;
}
.bolder {
  font-weight: 900;
}
.text-underlined {
  text-decoration: underline;
}
.text-caps {
  text-transform: uppercase;
}
.truncate {
  display: block;
  vertical-align: middle;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: 100%;
}
.truncate.rtl {
  direction: rtl;
}
/*------ cms mixins ------*/
.flex-container {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  gap: 10px;
  width: 100%;
}
.flex-container.no-wrap {
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
}
.flex-container.align-start {
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
}
.flex-container.align-center {
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.flex-container.align-end {
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: flex-end;
}
.flex-container.justify-start {
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
}
.flex-container.justify-center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.flex-container.justify-space {
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.flex-container.justify-end {
  -webkit-box-pack: end;
      -ms-flex-pack: end;
          justify-content: flex-end;
}
.flex-container.gap-0 {
  gap: 0px;
}
.flex-container.gap-20 {
  gap: 20px;
}
.flex-container.gap-30 {
  gap: 30px;
}
.flex-container.gap-40 {
  gap: 40px;
}
.flex-container .flex-column {
  max-width: 100%;
}
.flex-container .flex-column.stretch {
  -webkit-box-flex: 1;
      -ms-flex: 1;
          flex: 1;
}
.flex-container .flex-column.no-shrink {
  -ms-flex-negative: 0;
      flex-shrink: 0;
}
.flex-container .flex-column.no-grow {
  -webkit-box-flex: 0;
      -ms-flex-positive: 0;
          flex-grow: 0;
}
.flex-container .flex-column.align-start {
  -ms-flex-item-align: start;
      align-self: flex-start;
}
.flex-container .flex-column.align-center {
  -ms-flex-item-align: center;
      -ms-grid-row-align: center;
      align-self: center;
}
.flex-container .flex-column.align-end {
  -ms-flex-item-align: end;
      align-self: flex-end;
}
.flex-container .flex-column.center {
  margin-right: auto;
}
.flex-container .flex-column.center,
.flex-container .flex-column.right {
  margin-left: auto;
}
.input-button {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -ms-flex-wrap: nowrap;
      flex-wrap: nowrap;
  width: 260px;
  max-width: 100%;
}
.input-button .input {
  display: block;
  margin: 0;
  height: auto;
  -webkit-box-flex: 1 1 auto;
  -moz-box-flex: 1 1 auto;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
}
.input-button .button-sm,
.input-button .button {
  margin: 0;
  padding: 0;
  text-align: center;
  -webkit-box-flex: 0 0 auto;
  -moz-box-flex: 0 0 auto;
  -webkit-flex: 0 0 auto;
  -ms-flex: 0 0 auto;
  flex: 0 0 auto;
}
.input-button .button {
  width: 50px;
}
.input-button .button-sm {
  width: 40px;
}
.input-button .button::empty::before,
.input-button .button-sm::empty::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f002";
}
.input-button.large {
  width: 320px;
}
.gravatar-link {
  position: relative;
  display: block;
}
.gravatar-link .tooltip {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0 !important;
  right: 0;
  width: 40px !important;
  height: 40px !important;
  margin: auto;
  padding: 0;
  background: rgba(179, 0, 0, 0.75);
  color: #FFF;
  text-align: center;
  line-height: 40px;
}
.gravatar {
  display: block;
  width: 40px;
  height: 40px;
  border: 1px solid #CCC;
  overflow: hidden;
}
/*------ interface ------*/
#cms-wrapper {
  position: relative;
  width: 100%;
  min-height: 100%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  padding-left: 20px;
}
#section-title {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
  -webkit-transition: left 0.3s ease-out 0s;
  -moz-transition: left 0.3s ease-out 0s;
  -ms-transition: left 0.3s ease-out 0s;
  -o-transition: left 0.3s ease-out 0s;
  transition: left 0.3s ease-out 0s;
  z-index: 100;
  top: 0;
  left: 0;
  right: 0;
  background: #FFF;
  padding: 0 20px;
  margin: 0 0 30px -20px;
  height: 85px;
  width: calc(100% + 40px);
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#section-title h1 {
  -webkit-box-flex: 1 1 auto;
  -moz-box-flex: 1 1 auto;
  -webkit-flex: 1 1 auto;
  -ms-flex: 1 1 auto;
  flex: 1 1 auto;
  padding-left: 10px;
}
#section-title h1 i {
  padding-right: 15px;
}
#section-title h1 small {
  font-size: 60%;
}
#section-title .back-to-site {
  -webkit-box-flex: 0 1 auto;
  -moz-box-flex: 0 1 auto;
  -webkit-flex: 0 1 auto;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  display: block;
  white-space: nowrap;
  padding-left: 15px;
}
#section-title .back-to-site i {
  padding-left: 5px;
}
#cms-content {
  position: relative;
  z-index: 1;
  padding: 0 20px;
}
#dashboard-overview {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: flex-start;
  position: relative;
  width: calc(100% + 20px);
  left: -10px;
}
#dashboard-overview .flex-column {
  margin-left: 10px;
  margin-right: 10px;
}
.cms-overview {
  width: 100%;
  max-width: 400px;
}
.cms-overview table a {
  color: #141111;
}
.cms-overview table a:hover {
  color: #e46143;
}
.cms-overview table a i {
  width: 18px;
  text-align: center;
}
.dashboard-box {
  width: 200px;
  height: 170px;
  margin: 0 20px 20px 0;
  padding: 20px 0 0 0;
  background: #FFF;
  -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
}
.cms-overview {
  width: 100%;
  max-width: 400px;
}
.cms-overview table a {
  color: #141111;
}
.cms-overview table a:hover {
  color: #e46143;
}
.cms-overview table a i {
  width: 18px;
  text-align: center;
}
.panel {
  display: block;
  clear: both;
  margin-bottom: 20px;
  background: #FFF;
  -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
}
.panel.f_left,
.panel.f_right {
  clear: none;
}
.panel.f_left {
  margin-right: 20px;
}
.panel.f_right {
  margin-left: 20px;
}
.panel-header {
  position: relative;
  padding: 15px 50px 15px 20px;
  line-height: 30px;
  background: #141111;
  color: #FFF;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
}
.panel-header.required {
  color: #CC0000;
}
.panel-header form {
  line-height: 40px;
}
.panel-header form .input,
.panel-header form .select {
  text-transform: none;
}
.panel-header .panel-toggle {
  position: absolute;
  -webkit-transform: translateY(-50%);
  -moz-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  -o-transform: translateY(-50%);
  transform: translateY(-50%);
  top: 50%;
  right: 20px;
  color: #FFF;
  cursor: pointer;
  -webkit-transition: color 0.3s ease 0s;
  -moz-transition: color 0.3s ease 0s;
  -ms-transition: color 0.3s ease 0s;
  -o-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
}
.panel-header .panel-toggle:hover {
  color: #e46143;
}
.panel-header .panel-switch {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  margin: 0;
  float: none;
  clear: both;
  line-height: 10px;
}
.panel-header .panel-switch label:first-child {
  padding: 0 10px 0 0;
  line-height: 30px;
  height: auto;
  margin: 0;
}
.panel-header .button-sm.right {
  margin-left: auto;
}
.panel-header .button.hollow,
.panel-header .button-sm.hollow {
  font-size: 14px;
  border: 1px solid #699fb9;
  color: #FFF;
  background: transparent;
}
.panel-header .button.hollow:hover,
.panel-header .button-sm.hollow:hover,
.panel-header .button.hollow:focus,
.panel-header .button-sm.hollow:focus {
  color: #FFF;
  background: #699fb9;
}
.panel-header small {
  line-height: 1.4;
}
.panel-content {
  padding: 15px 15px 5px;
  overflow: hidden;
  overflow-x: auto;
}
.panel-content.collapsed {
  display: none;
}
.panel-content.report-filters {
  overflow: visible;
}
.panel-content p:only-child {
  padding-bottom: 10px;
}
.panel-content .sub-title {
  font-weight: 700;
  padding-bottom: 10px;
}
#cms-footer,
.tablesorter-save-order {
  position: absolute;
  z-index: 900;
  background: #FFF;
  left: 0;
  right: 0;
  padding: 10px 20px;
  text-align: left;
}
#cms-footer .flex-container,
.tablesorter-save-order .flex-container {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
#cms-footer .flex-column,
.tablesorter-save-order .flex-column {
  width: 100%;
}
#cms-footer .flex-column.left,
.tablesorter-save-order .flex-column.left {
  -webkit-box-ordinal-group: 3;
      -ms-flex-order: 2;
          order: 2;
  min-width: 175px;
}
#cms-footer .flex-column.right,
.tablesorter-save-order .flex-column.right {
  -webkit-box-ordinal-group: 2;
      -ms-flex-order: 1;
          order: 1;
}
#cms-footer .delete,
.tablesorter-save-order .delete {
  margin-right: 15px;
}
#cms-footer .button,
#cms-footer .cancel,
.tablesorter-save-order .button,
.tablesorter-save-order .cancel {
  margin-top: 5px;
  margin-bottom: 5px;
}
@media all and (min-width: 481px) {
  #cms-footer .flex-container,
  .tablesorter-save-order .flex-container {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -moz-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row nowrap;
            flex-flow: row nowrap;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
    -webkit-box-align: stretch;
        -ms-flex-align: stretch;
            align-items: stretch;
  }
  #cms-footer .flex-column,
  .tablesorter-save-order .flex-column {
    width: auto;
  }
  #cms-footer .flex-column.left,
  .tablesorter-save-order .flex-column.left {
    -webkit-box-ordinal-group: 2;
        -ms-flex-order: 1;
            order: 1;
  }
  #cms-footer .flex-column.right,
  .tablesorter-save-order .flex-column.right {
    -webkit-box-ordinal-group: 3;
        -ms-flex-order: 2;
            order: 2;
  }
}
@media all and (min-width: 769px) {
  #cms-wrapper {
    padding-left: 85px;
  }
  #section-title {
    position: fixed;
    z-index: 1000;
    padding: 0 30px;
    width: auto;
    left: 85px;
    right: 0;
    margin: 0;
  }
  #section-title h1 {
    padding: 0;
  }
  #cms-content {
    padding: 115px 30px 95px;
  }
  .panel-header {
    display: -webkit-flex;
    display: -ms-flexbox;
    display: -webkit-box;
    display: -moz-box;
    display: flex;
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-flow: row wrap;
            flex-flow: row wrap;
    -webkit-box-pack: start;
        -ms-flex-pack: start;
            justify-content: flex-start;
    -webkit-box-align: center;
        -ms-flex-align: center;
            align-items: center;
    gap: 5px;
  }
  .panel-header .panel-switch {
    margin-left: auto;
  }
  .panel-content {
    padding: 20px 20px 10px;
  }
  #cms-footer,
  .tablesorter-save-order {
    position: fixed;
    left: 85px;
    bottom: 0;
    padding: 15px 30px;
  }
}
@media all and (min-width: 1025px) {
  #cms-content {
    padding: 125px 30px 105px;
  }
}
/*------ navigation ------*/
#cms-menu {
  display: block;
  position: fixed;
  z-index: 900;
  top: 0;
  bottom: 0;
  left: -280px;
  width: 300px;
  background: #FFF;
  font-family: 'Exo', sans-serif;
  font-weight: 500;
  -webkit-transition: left 0.3s ease-out 0s;
  -moz-transition: left 0.3s ease-out 0s;
  -ms-transition: left 0.3s ease-out 0s;
  -o-transition: left 0.3s ease-out 0s;
  transition: left 0.3s ease-out 0s;
}
#cms-menu #menu-header {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: absolute;
  z-index: 3;
  top: 0;
  left: 0;
  right: 0;
  height: 85px;
  padding-left: 75px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #141111;
}
#cms-menu #menu-header a {
  position: relative;
  z-index: 1;
  display: inline-block;
  margin: 0 20px;
  padding: 10px 0 10px 30px;
  color: #FFF;
}
#cms-menu #menu-header a i {
  position: absolute;
  -webkit-transition: color 0.3s ease 0s;
  -moz-transition: color 0.3s ease 0s;
  -ms-transition: color 0.3s ease 0s;
  -o-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
  top: 12px;
  left: 0;
  width: 18px;
  color: #93a4ac;
}
#cms-menu #menu-header a:hover,
#cms-menu #menu-header a.active {
  color: #e46143;
}
#cms-menu #menu-header a:hover i,
#cms-menu #menu-header a.active i {
  color: inherit;
}
#cms-menu #menu-header #cms-title {
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  width: 75px;
  height: 85px;
  padding: 15px 10px 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #FFF;
  text-align: center;
}
#cms-menu #menu-header #cms-title a {
  display: block;
  margin: 0;
  padding: 0;
  height: 70px;
  border-bottom: 1px solid #EEE;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
#cms-menu #menu-header #cms-title a img {
  max-width: 35px;
}
#cms-menu #menu-header #cms-title a small {
  display: block;
  color: #999999;
  font-size: 9px;
  line-height: 26px;
  white-space: nowrap;
}
#cms-menu nav#menu-icons {
  position: absolute;
  z-index: 2;
  top: 85px;
  bottom: 0;
  left: 0;
  width: 75px;
  overflow: hidden;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #FFF;
}
#cms-menu nav#menu-icons > ul {
  position: absolute;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-flow: column nowrap;
          flex-flow: column nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  margin: 0;
  padding: 24px 0 0;
  list-style: none;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  text-align: center;
}
#cms-menu nav#menu-icons > ul > li {
  display: block;
  padding: 0 10px 24px;
}
#cms-menu nav#menu-icons > ul > li a {
  display: block;
  overflow: hidden;
  padding: 0;
  color: #2a617c;
  font-size: 9px;
  line-height: 1.4;
  text-overflow: ellipsis;
  text-transform: uppercase;
}
#cms-menu nav#menu-icons > ul > li a i {
  display: block;
  margin-bottom: 8px;
  font-size: 20px;
}
#cms-menu nav#menu-icons > ul > li a .initials {
  position: relative;
  display: block;
  width: 24px;
  height: 24px;
  margin: 0 auto 10px;
}
#cms-menu nav#menu-icons > ul > li a .initials span {
  position: relative;
  display: block;
  z-index: 1;
  line-height: 26px;
  color: #FFF;
  text-indent: 1px;
  letter-spacing: 0em;
  font-weight: 900;
}
#cms-menu nav#menu-icons > ul > li a .hexagon {
  position: absolute;
  z-index: 0;
  display: block;
  top: 0;
  left: 0;
  width: 24px;
  height: 14px;
  background: #2a617c;
  margin: 6px auto 12px;
  -webkit-transition: background 0.3s ease 0s;
  -moz-transition: background 0.3s ease 0s;
  -ms-transition: background 0.3s ease 0s;
  -o-transition: background 0.3s ease 0s;
  transition: background 0.3s ease 0s;
  -webkit-transform: rotate(-90deg);
  -moz-transform: rotate(-90deg);
  -ms-transform: rotate(-90deg);
  -o-transform: rotate(-90deg);
  transform: rotate(-90deg);
}
#cms-menu nav#menu-icons > ul > li a .hexagon:before,
#cms-menu nav#menu-icons > ul > li a .hexagon:after {
  position: absolute;
  -webkit-transition: border 0.3s ease 0s;
  -moz-transition: border 0.3s ease 0s;
  -ms-transition: border 0.3s ease 0s;
  -o-transition: border 0.3s ease 0s;
  transition: border 0.3s ease 0s;
  content: '';
  width: 0;
  height: 0;
}
#cms-menu nav#menu-icons > ul > li a .hexagon:before {
  top: -6px;
  left: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 6px solid #2a617c;
}
#cms-menu nav#menu-icons > ul > li a .hexagon:after {
  bottom: -6px;
  left: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-top: 6px solid #2a617c;
}
#cms-menu nav#menu-icons > ul > li a:hover,
#cms-menu nav#menu-icons > ul > li a.active {
  color: #e46143;
}
#cms-menu nav#menu-icons > ul > li a:hover .hexagon,
#cms-menu nav#menu-icons > ul > li a.active .hexagon {
  background: #e46143;
}
#cms-menu nav#menu-icons > ul > li a:hover .hexagon:before,
#cms-menu nav#menu-icons > ul > li a.active .hexagon:before {
  border-bottom: 6px solid #e46143;
}
#cms-menu nav#menu-icons > ul > li a:hover .hexagon:after,
#cms-menu nav#menu-icons > ul > li a.active .hexagon:after {
  border-top: 6px solid #e46143;
}
#cms-menu nav#menu-icons > ul > li ul {
  display: block;
  list-style: none;
  margin: 0;
  padding: 0;
}
#cms-menu nav#menu-icons > ul > li ul li {
  padding-top: 24px;
}
#cms-menu nav#menu-icons > ul > li:last-child {
  margin-top: auto;
}
#cms-menu nav#menu-icons > ul > li:last-child a {
  padding-top: 24px;
  border-top: 1px solid #EEE;
}
#cms-menu nav#menu-icons > ul > li:last-child a i {
  margin: 6px 0 0;
}
#cms-menu nav#menu-list {
  position: absolute;
  z-index: 1;
  top: 85px;
  bottom: 0;
  left: 75px;
  right: 0;
  overflow: hidden;
  background: #141111;
}
#cms-menu nav#menu-list > ul {
  list-style: none;
  margin: 0;
  padding: 10px 0 40px;
}
#cms-menu nav#menu-list > ul li {
  display: block;
  padding: 0 20px;
}
#cms-menu nav#menu-list > ul li a {
  position: relative;
  display: inline-block;
  padding: 10px 0 10px 30px;
  color: #FFF;
  font-size: 14px;
  line-height: 1.2;
}
#cms-menu nav#menu-list > ul li a i {
  position: absolute;
  -webkit-transition: color 0.3s ease 0s;
  -moz-transition: color 0.3s ease 0s;
  -ms-transition: color 0.3s ease 0s;
  -o-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
  top: 10px;
  left: 0;
  width: 18px;
  text-align: center;
  color: #93a4ac;
}
#cms-menu nav#menu-list > ul li a:hover,
#cms-menu nav#menu-list > ul li a.active,
#cms-menu nav#menu-list > ul li a.ui-state-active {
  color: #e46143;
}
#cms-menu nav#menu-list > ul li a:hover i,
#cms-menu nav#menu-list > ul li a.active i,
#cms-menu nav#menu-list > ul li a.ui-state-active i {
  color: inherit;
}
#cms-menu nav#menu-list > ul li ul {
  list-style: none;
  margin: 0 0 2px;
  padding: 0;
}
#cms-menu nav#menu-list > ul li ul li {
  padding: 0 0 0 8px;
}
#cms-menu nav#menu-list > ul li ul li a {
  padding: 5px 0 5px 20px;
  border-left: 2px solid #93a4ac;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  font-size: 12px;
  color: #CCC;
}
#cms-menu nav#menu-list > ul li ul li a:hover {
  color: #FFF;
}
#cms-menu nav#menu-list > ul li.false-active > a {
  color: #FFF;
}
#cms-menu nav#menu-list > ul li.false-active > a:hover {
  color: #e46143;
}
#cms-menu nav#menu-list > ul li.accordion:not(.expanded) ul {
  display: none;
}
#cms-menu nav#menu-list > ul li.menu-header {
  position: relative;
}
#cms-menu nav#menu-list > ul li.menu-header h6 {
  color: #93a4ac;
  margin-bottom: 10px;
  letter-spacing: 0.2em;
  font-weight: 800;
  text-transform: uppercase;
  -webkit-transition: color 0.3s ease 0s;
  -moz-transition: color 0.3s ease 0s;
  -ms-transition: color 0.3s ease 0s;
  -o-transition: color 0.3s ease 0s;
  transition: color 0.3s ease 0s;
}
#cms-menu nav#menu-list > ul li.menu-header:not(:first-child) {
  margin-top: 30px;
}
#cms-menu nav#menu-list > ul li.menu-header.toggle-trigger {
  cursor: pointer;
}
#cms-menu nav#menu-list > ul li.menu-header.toggle-trigger:after {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f107";
  display: inline-block;
  position: absolute;
  top: 0;
  right: 0;
  margin-right: 12px;
  font-size: 12px;
  color: #93a4ac;
  opacity: 0.5;
  -webkit-transition: color 0.3s ease 0s, opacity 0.3s ease 0s;
  -moz-transition: color 0.3s ease 0s, opacity 0.3s ease 0s;
  -ms-transition: color 0.3s ease 0s, opacity 0.3s ease 0s;
  -o-transition: color 0.3s ease 0s, opacity 0.3s ease 0s;
  transition: color 0.3s ease 0s, opacity 0.3s ease 0s;
}
#cms-menu nav#menu-list > ul li.menu-header.toggle-trigger.open:after {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f106";
}
#cms-menu nav#menu-list > ul li.menu-header.toggle-trigger:hover h6 {
  color: #699fb9;
}
#cms-menu nav#menu-list > ul li.menu-header.toggle-trigger:hover:after {
  color: #699fb9;
  opacity: 1;
}
#cms-menu nav#menu-list > ul li.expanded:not(.false-active) > a {
  color: #e46143;
}
#cms-menu nav#menu-list > ul li.expanded:not(.false-active) > a i {
  color: inherit;
}
#menu-toggle {
  position: absolute;
  -webkit-transform: translate(50%, -50%);
  -moz-transform: translate(50%, -50%);
  -o-transform: translate(50%, -50%);
  transform: translate(50%, -50%);
  -webkit-transition: background-color 0.3s ease 0s;
  -moz-transition: background-color 0.3s ease 0s;
  -ms-transition: background-color 0.3s ease 0s;
  -o-transition: background-color 0.3s ease 0s;
  transition: background-color 0.3s ease 0s;
  display: block;
  z-index: 100;
  top: 50%;
  right: 0;
  width: 30px;
  height: 30px;
  margin: 0;
  padding: 8px;
  color: #FFF;
  font-size: 14px;
  text-align: center;
  line-height: 32px;
  background-color: #93a4ac;
  border-radius: 50%;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  line-height: 1;
  cursor: pointer;
}
#menu-toggle:hover {
  background-color: #e46143;
}
.menu-simple #cms-menu {
  width: 95px;
  left: -75px;
}
.menu-simple #cms-menu #menu-header a:last-child {
  display: none;
}
.menu-simple #menu-toggle {
  right: 0;
}
.menu-open #cms-menu {
  left: 0;
}
.animated #cms-content {
  -webkit-transition: margin 0.3s ease-out 0s;
  -moz-transition: margin 0.3s ease-out 0s;
  -ms-transition: margin 0.3s ease-out 0s;
  -o-transition: margin 0.3s ease-out 0s;
  transition: margin 0.3s ease-out 0s;
}
.animated #menu-toggle {
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.animated #cms-footer,
.animated .tablesorter-save-order {
  -webkit-transition: left 0.3s ease-out 0s;
  -moz-transition: left 0.3s ease-out 0s;
  -ms-transition: left 0.3s ease-out 0s;
  -o-transition: left 0.3s ease-out 0s;
  transition: left 0.3s ease-out 0s;
}
.steps-nav {
  display: block;
  margin-bottom: 20px;
}
.steps-nav ul {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.steps-nav ul li {
  padding: 0 1px 0 0;
  text-align: center;
  font-size: 16px;
  min-width: 120px;
}
.steps-nav ul li:last-child {
  padding-right: 0;
}
.steps-nav ul li a {
  position: relative;
  display: block;
  padding: 15px 30px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background: #93a4ac;
  color: #FFF;
  border-top: 2px solid #EEE;
  border-bottom: 2px solid #EEE;
  font-weight: 800;
  text-transform: uppercase;
}
.steps-nav ul li a small {
  display: block;
  color: #CCC;
}
.steps-nav ul li a:hover,
.steps-nav ul li a.active {
  background: #141111;
}
.steps-nav ul li a:hover small,
.steps-nav ul li a.active small {
  color: #e46143;
}
.steps-nav ul li a.active {
  border-color: #141111;
}
.steps-nav ul li a.disabled {
  background: #f8f9fa;
  border-color: #EEE;
  color: #EEE;
  cursor: not-allowed;
}
.steps-nav ul li a.disabled small {
  color: #EEE;
}
@media all and (min-width: 769px) {
  #cms-wrapper {
    padding-left: 85px;
  }
  #menu-toggle {
    right: 5px;
  }
  #cms-menu {
    left: -215px;
  }
  #cms-menu #menu-header #cms-title {
    position: fixed;
  }
  #cms-menu nav#menu-icons {
    position: fixed;
  }
  .menu-open #menu-toggle {
    right: 0;
  }
  .menu-simple #cms-menu {
    width: 85px !important;
    left: 0;
  }
  .menu-simple #menu-toggle {
    display: none;
  }
}
@media all and (min-width: 1025px) {
  .menu-open:not(.menu-simple) #cms-content {
    margin-left: 215px;
  }
  .menu-open:not(.menu-simple) #section-title,
  .menu-open:not(.menu-simple) #cms-footer,
  .menu-open:not(.menu-simple) .tablesorter-save-order {
    left: 300px;
  }
}
/*------ tables ------*/
table:not([class^="fc"]):not(.ui-datepicker-calendar):not(.mce-grid) {
  position: relative;
  width: 100%;
}
table:not([class^="fc"]):not(.ui-datepicker-calendar):not(.mce-grid):not(.nostripe) tr:nth-child(2n) {
  background: #EEE;
}
table:not([class^="fc"]):not(.ui-datepicker-calendar):not(.mce-grid) tr {
  background: #FFF;
}
table:not([class^="fc"]):not(.ui-datepicker-calendar):not(.mce-grid) tr.first-child {
  -moz-box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5) inset;
  -webkit-box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5) inset;
  box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5) inset;
}
table:not([class^="fc"]):not(.ui-datepicker-calendar):not(.mce-grid) tr.first-child:nth-child(2n) {
  -moz-box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35) inset;
  -webkit-box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35) inset;
  box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35) inset;
}
table:not([class^="fc"]):not(.ui-datepicker-calendar):not(.mce-grid) tr.last-child {
  -moz-box-shadow: 0 -10px 10px -10px rgba(0, 0, 0, 0.5) inset;
  -webkit-box-shadow: 0 -10px 10px -10px rgba(0, 0, 0, 0.5) inset;
  box-shadow: 0 -10px 10px -10px rgba(0, 0, 0, 0.5) inset;
}
table:not([class^="fc"]):not(.ui-datepicker-calendar):not(.mce-grid) tr.last-child:nth-child(2n) {
  -moz-box-shadow: 0 -10px 10px -10px rgba(0, 0, 0, 0.35) inset;
  -webkit-box-shadow: 0 -10px 10px -10px rgba(0, 0, 0, 0.35) inset;
  box-shadow: 0 -10px 10px -10px rgba(0, 0, 0, 0.35) inset;
}
table:not([class^="fc"]):not(.ui-datepicker-calendar):not(.mce-grid) tr.first-child.last-child {
  -moz-box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5) inset, 0 -10px 10px -10px rgba(0, 0, 0, 0.5) inset;
  -webkit-box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5) inset, 0 -10px 10px -10px rgba(0, 0, 0, 0.5) inset;
  box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5) inset, 0 -10px 10px -10px rgba(0, 0, 0, 0.5) inset;
}
table:not([class^="fc"]):not(.ui-datepicker-calendar):not(.mce-grid) tr.first-child.last-child:nth-child(2n) {
  -moz-box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35) inset, 0 -10px 10px -10px rgba(0, 0, 0, 0.35) inset;
  -webkit-box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35) inset, 0 -10px 10px -10px rgba(0, 0, 0, 0.35) inset;
  box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35) inset, 0 -10px 10px -10px rgba(0, 0, 0, 0.35) inset;
}
table:not([class^="fc"]):not(.ui-datepicker-calendar):not(.mce-grid) tr.bolder td,
table:not([class^="fc"]):not(.ui-datepicker-calendar):not(.mce-grid) tr.bold td {
  font-weight: inherit;
}
table:not([class^="fc"]):not(.ui-datepicker-calendar):not(.mce-grid) th.center,
table:not([class^="fc"]):not(.ui-datepicker-calendar):not(.mce-grid) td.center {
  text-align: center;
}
table:not([class^="fc"]):not(.ui-datepicker-calendar):not(.mce-grid) th.right,
table:not([class^="fc"]):not(.ui-datepicker-calendar):not(.mce-grid) td.right {
  text-align: right;
}
table:not([class^="fc"]):not(.ui-datepicker-calendar):not(.mce-grid) th {
  background: #bec8cd;
  font-family: 'Exo', sans-serif;
  padding: 5px 20px;
  text-align: left;
  height: 60px;
  text-transform: uppercase;
  font-weight: 800;
}
table:not([class^="fc"]):not(.ui-datepicker-calendar):not(.mce-grid) th.right {
  text-align: right;
}
table:not([class^="fc"]):not(.ui-datepicker-calendar):not(.mce-grid) td {
  padding: 10px 20px;
  -webkit-transition: background-color 0.5s ease 0s;
  -moz-transition: background-color 0.5s ease 0s;
  -ms-transition: background-color 0.5s ease 0s;
  -o-transition: background-color 0.5s ease 0s;
  transition: background-color 0.5s ease 0s;
}
table:not([class^="fc"]):not(.ui-datepicker-calendar):not(.mce-grid) tr[data-level] td {
  padding: 15px 20px;
}
table:not([class^="fc"]):not(.ui-datepicker-calendar):not(.mce-grid) tr[data-level='1']:after {
  left: 0px;
}
table:not([class^="fc"]):not(.ui-datepicker-calendar):not(.mce-grid) tr[data-level='2']:after {
  left: 30px;
}
table:not([class^="fc"]):not(.ui-datepicker-calendar):not(.mce-grid) tr[data-level='3']:after {
  left: 60px;
}
table:not([class^="fc"]):not(.ui-datepicker-calendar):not(.mce-grid) tr[data-level='4']:after {
  left: 90px;
}
table:not([class^="fc"]):not(.ui-datepicker-calendar):not(.mce-grid) tr[data-level='5']:after {
  left: 120px;
}
table:not([class^="fc"]):not(.ui-datepicker-calendar):not(.mce-grid).sortable:not(.tablesorter) tr[data-level] td.show-lvl:before,
table:not([class^="fc"]):not(.ui-datepicker-calendar):not(.mce-grid).helper-sortable tr[data-level] td.show-lvl:before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f3bf";
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
  display: inline-block;
  margin-right: 10px;
  font-size: 12px;
  color: #699fb9;
}
table:not([class^="fc"]):not(.ui-datepicker-calendar):not(.mce-grid).sortable:not(.tablesorter) tr[data-level='1'] td.show-lvl:before,
table:not([class^="fc"]):not(.ui-datepicker-calendar):not(.mce-grid).helper-sortable tr[data-level='1'] td.show-lvl:before {
  content: "";
  margin-right: 0;
}
table:not([class^="fc"]):not(.ui-datepicker-calendar):not(.mce-grid).sortable:not(.tablesorter) tr[data-level='2'] td.show-lvl,
table:not([class^="fc"]):not(.ui-datepicker-calendar):not(.mce-grid).helper-sortable tr[data-level='2'] td.show-lvl {
  padding-left: 25px;
}
table:not([class^="fc"]):not(.ui-datepicker-calendar):not(.mce-grid).sortable:not(.tablesorter) tr[data-level='3'] td.show-lvl,
table:not([class^="fc"]):not(.ui-datepicker-calendar):not(.mce-grid).helper-sortable tr[data-level='3'] td.show-lvl {
  padding-left: 50px;
}
table:not([class^="fc"]):not(.ui-datepicker-calendar):not(.mce-grid).sortable:not(.tablesorter) tr[data-level='4'] td.show-lvl,
table:not([class^="fc"]):not(.ui-datepicker-calendar):not(.mce-grid).helper-sortable tr[data-level='4'] td.show-lvl {
  padding-left: 75px;
}
table:not([class^="fc"]):not(.ui-datepicker-calendar):not(.mce-grid).sortable:not(.tablesorter) tr[data-level='5'] td.show-lvl,
table:not([class^="fc"]):not(.ui-datepicker-calendar):not(.mce-grid).helper-sortable tr[data-level='5'] td.show-lvl {
  padding-left: 100px;
}
table:not([class^="fc"]):not(.ui-datepicker-calendar):not(.mce-grid).checkbox-list {
  display: table;
}
table:not([class^="fc"]):not(.ui-datepicker-calendar):not(.mce-grid) td.handle {
  color: #999999;
}
table:not([class^="fc"]):not(.ui-datepicker-calendar):not(.mce-grid).sortable.saveable tr.higher td.handle,
table:not([class^="fc"]):not(.ui-datepicker-calendar):not(.mce-grid).sortable.saveable tr.lower td.handle {
  color: #e46143;
}
table:not([class^="fc"]):not(.ui-datepicker-calendar):not(.mce-grid) .subtle-header th,
table:not([class^="fc"]):not(.ui-datepicker-calendar):not(.mce-grid) .subtle-header td {
  height: 45px;
}
table:not([class^="fc"]):not(.ui-datepicker-calendar):not(.mce-grid) .transparent-header th,
table:not([class^="fc"]):not(.ui-datepicker-calendar):not(.mce-grid) .transparent-header td {
  background: transparent;
}
table:not([class^="fc"]):not(.ui-datepicker-calendar):not(.mce-grid) .theme1-header th,
table:not([class^="fc"]):not(.ui-datepicker-calendar):not(.mce-grid) .theme1-header td {
  color: #FFF;
  background: rgba(228, 97, 67, 0.75);
}
table:not([class^="fc"]):not(.ui-datepicker-calendar):not(.mce-grid) .theme1-header th small,
table:not([class^="fc"]):not(.ui-datepicker-calendar):not(.mce-grid) .theme1-header td small {
  color: #EEE;
}
table:not([class^="fc"]):not(.ui-datepicker-calendar):not(.mce-grid) .theme2-header th,
table:not([class^="fc"]):not(.ui-datepicker-calendar):not(.mce-grid) .theme2-header td {
  color: #FFF;
  background: rgba(42, 97, 124, 0.75);
}
table:not([class^="fc"]):not(.ui-datepicker-calendar):not(.mce-grid) .theme2-header th small,
table:not([class^="fc"]):not(.ui-datepicker-calendar):not(.mce-grid) .theme2-header td small {
  color: #EEE;
}
table:not([class^="fc"]):not(.ui-datepicker-calendar):not(.mce-grid) .dark-header th,
table:not([class^="fc"]):not(.ui-datepicker-calendar):not(.mce-grid) .dark-header td {
  color: #FFF;
  background: rgba(20, 17, 17, 0.75);
}
table:not([class^="fc"]):not(.ui-datepicker-calendar):not(.mce-grid) .table-footer * {
  font-weight: 700;
}
table:not([class^="fc"]):not(.ui-datepicker-calendar):not(.mce-grid) .table-footer td {
  background: #FFF;
  border-top: 3px solid #e46143;
}
table:not([class^="fc"]):not(.ui-datepicker-calendar):not(.mce-grid) .table-footer + .table-footer td {
  border-top: 1px solid #EEE;
}
table:not([class^="fc"]):not(.ui-datepicker-calendar):not(.mce-grid) .highlight {
  height: 70px;
  position: relative !important;
}
table:not([class^="fc"]):not(.ui-datepicker-calendar):not(.mce-grid) .highlight:after {
  position: absolute;
  content: "";
  display: inline-block;
  height: inherit;
  left: 0;
  right: 0;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  border: 1px dashed #e46143;
  z-index: 9;
}
table:not([class^="fc"]):not(.ui-datepicker-calendar):not(.mce-grid) .highlight:nth-child(n) {
  background-color: #FFF;
}
table:not([class^="fc"]):not(.ui-datepicker-calendar):not(.mce-grid) .highlight ~ tr:nth-child(2n + 1) {
  background: #eee;
}
table:not([class^="fc"]):not(.ui-datepicker-calendar):not(.mce-grid) .highlight ~ tr:nth-child(2n) {
  background-color: #FFF;
}
table:not([class^="fc"]):not(.ui-datepicker-calendar):not(.mce-grid) .highlight td {
  display: none;
}
table:not([class^="fc"]):not(.ui-datepicker-calendar):not(.mce-grid) .handle {
  position: relative;
}
table:not([class^="fc"]):not(.ui-datepicker-calendar):not(.mce-grid) .handle:hover {
  cursor: move;
  cursor: -webkit-grab;
  cursor: -moz-grab;
  cursor: grab;
}
table:not([class^="fc"]):not(.ui-datepicker-calendar):not(.mce-grid) .handle:active,
table:not([class^="fc"]):not(.ui-datepicker-calendar):not(.mce-grid) .handle .ui-sortable-helper {
  cursor: move;
  cursor: -webkit-grabbing;
  cursor: -moz-grabbing;
  cursor: grabbing;
}
table:not([class^="fc"]):not(.ui-datepicker-calendar):not(.mce-grid) .services-addons tr,
table:not([class^="fc"]):not(.ui-datepicker-calendar):not(.mce-grid) .services-addons td,
table:not([class^="fc"]):not(.ui-datepicker-calendar):not(.mce-grid) .services-addons tr:nth-child(2n) {
  background: none;
}
table:not([class^="fc"]):not(.ui-datepicker-calendar):not(.mce-grid) .services-addons td {
  padding: 8px 10px 5px 0;
  vertical-align: top;
}
table:not([class^="fc"]):not(.ui-datepicker-calendar):not(.mce-grid) .services-addons tr.addon-row td {
  padding: 2px 10px 2px 0;
  color: #2a617c;
}
.ui-sortable-helper {
  border: 1px solid #f8f9fa;
  -webkit-transform-origin: left;
          transform-origin: left;
  -webkit-transition: -webkit-transform 0.3s;
  transition: -webkit-transform 0.3s;
  transition: transform 0.3s;
  transition: transform 0.3s, -webkit-transform 0.3s;
  opacity: 0.9;
  background: #FFF !important;
}
.ui-sortable-helper tr[data-level] td {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
table.nowrap,
td.nowrap,
th.nowrap {
  white-space: nowrap;
}
.leadin-field-options-table {
  padding: 10px 0;
}
.leadin-field-options-table tr:nth-child(n) {
  background: transparent;
}
/*------ tablesorter ------*/
.tablesorter .tablesorter-header {
  position: relative;
  cursor: pointer;
  outline: none;
}
.tablesorter .sorter-false {
  cursor: default;
}
.tablesorter .tablesorter-headerAsc,
.tablesorter .tablesorter-headerDesc {
  background: #eaedee;
}
.tablesorter .tablesorter-headerAsc:after,
.tablesorter .tablesorter-headerDesc:after {
  position: absolute;
  font-size: 16px;
  top: 50%;
  right: 8px;
  height: 20px;
}
.tablesorter .tablesorter-headerAsc:after {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f0d8";
  margin-top: -10px;
}
.tablesorter .tablesorter-headerDesc:after {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f0d7";
  margin-top: -8px;
}
.tablesorter .show,
.tablesorter .hide {
  display: block;
  text-indent: -9999px;
  height: 18px;
}
.tablesorter .show:after,
.tablesorter .hide:after {
  display: block;
  text-align: center;
  font-size: 16px;
  text-indent: 0;
  margin-top: -16px;
}
.tablesorter .show:after {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f00c";
  color: #65B561;
}
.tablesorter .hide:after {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f00d";
  color: #141111;
}
.tablesorter .button-sm {
  margin: 1px;
}
.pager {
  display: block;
  position: relative !important;
  top: auto !important;
  padding: 10px 20px;
  background: #FFF;
  border-top: 1px solid #EEE;
  text-align: center;
}
.pager .pagebuttons .button-sm {
  width: 40px;
  text-align: center;
  margin: 0 1px;
  border: 0;
  padding: 0;
}
.pager .pagebuttons .button-sm.hoverable {
  outline-offset: -3px;
  outline: 3px dashed #e46143;
  -webkit-transition: background-color 0.3s ease 0s;
  -moz-transition: background-color 0.3s ease 0s;
  -ms-transition: background-color 0.3s ease 0s;
  -o-transition: background-color 0.3s ease 0s;
  transition: background-color 0.3s ease 0s;
}
.pager .pagebuttons .button-sm.dragged-over {
  background-color: #e46143;
  outline-color: #2a617c;
}
.pager .pagebuttons .button-sm.disabled {
  background: #EEE !important;
  color: #FFF !important;
  cursor: default;
  outline: 0;
  text-decoration: none;
}
.pager .pagedisplay {
  display: block;
  padding: 0 0 5px;
}
.pager .pagebuttons {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 240px;
  margin: 0 auto;
}
.pager .gotoPage {
  width: 70px;
  height: 40px;
  margin: 0 1px;
}
.tablesorter-sticky-visible {
  visibility: hidden !important;
}
.tablesorter-save-order {
  display: none;
}
.tablesorter-save-order .flex-column {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
@media all and (min-width: 769px) {
  .tablesorter-sticky-visible {
    visibility: visible !important;
  }
}
/*------ charts ------*/
.panel-content.chart {
  display: block !important;
  min-height: 68px !important;
  padding: 0;
  overflow: hidden;
}
.panel-content.chart table.chart-stats {
  width: 100%;
  height: 68px;
  table-layout: fixed;
}
.panel-content.chart table.chart-stats th:not(:first-child) {
  border-left: 1px solid #93a4ac;
}
.panel-content.chart table.chart-stats small,
.panel-content.chart table.chart-stats b,
.panel-content.chart table.chart-stats strong {
  display: block;
  color: #FFF;
  font-size: 18px;
}
.panel-content.chart table.chart-stats th.highlight {
  background: #e46143;
}
.panel-content.chart table.chart-stats.steps th {
  text-align: center;
  font-size: 16px;
  color: #2a617c;
  background: rgba(147, 164, 172, 0.5);
  border: 0;
}
.panel-content.chart table.chart-stats.steps th i {
  display: block;
  margin-bottom: 10px;
  line-height: 1;
}
.panel-content.chart table.chart-stats.steps th.disabled {
  color: #999999;
  background: rgba(204, 204, 204, 0.9);
}
.panel-content.chart table.chart-stats.steps th.active {
  color: #FFF;
  background: #e46143;
}
.panel-content.chart table.chart-stats.bigger th {
  padding: 12px 20px;
}
.panel-content.chart table.chart-stats.bigger th small {
  display: inline-block;
  margin-bottom: 10px;
  font-weight: 600;
  text-transform: none;
  font-size: 100%;
  font-family: 'Open Sans', sans-serif;
  color: #141111;
}
.panel-content.chart table.chart-stats.bigger th b,
.panel-content.chart table.chart-stats.bigger th strong {
  font-size: 22px;
}
.panel-content.chart table.chart-stats.dark th {
  color: #EEE;
  background: rgba(20, 17, 17, 0.85);
  background: #2a617c;
}
.panel-content.chart table.chart-stats.dark th small {
  color: #EEE;
}
.panel-content.chart.closed :not(.chart-stats) {
  display: none;
}
.chart-container {
  position: relative;
  width: 100%;
  margin-bottom: 30px;
  padding: 20px 20px 0 20px;
}
.chart-container canvas {
  display: block;
  width: 100%;
  height: 200px;
}
.chart-container.tall-chart canvas {
  height: 400px;
}
.chart-container.taller-chart canvas {
  height: 600px;
}
.sp-sales-wrap .product-label {
  display: inline-block;
  margin: 0 2px 0 0;
  padding: 6px 6px 4px;
  line-height: 1;
  color: #FFF;
  background-color: #CCC;
  border-radius: 2px;
  -moz-box-shadow: 0px 0px 2px 0px rgba(17, 17, 17, 0.25);
  -webkit-box-shadow: 0px 0px 2px 0px rgba(17, 17, 17, 0.25);
  box-shadow: 0px 0px 2px 0px rgba(17, 17, 17, 0.25);
  cursor: pointer;
}
.sp-sales-wrap .chart-product-option {
  min-width: 280px;
}
.chart-labels {
  margin-top: 30px;
}
.chart-labels .product-label {
  margin: 4px;
}
.sales-chart-container {
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  width: 100%;
}
.sales-chart-container .outside-donut {
  position: absolute;
  margin: 0 auto;
}
.sales-chart-container .outside-donut:before {
  content: '';
  position: absolute;
  top: -4px;
  right: 0;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 100%;
  margin: auto;
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2) inset;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2) inset;
  border-radius: 50%;
}
.sales-chart-container .inside-donut {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  width: 230px !important;
  height: 234px !important;
  margin: auto;
  min-height: 0;
  opacity: 0.85;
}
.sales-chart-container .inside-donut:before {
  content: '';
  position: absolute;
  top: -4px;
  right: 0;
  bottom: 0;
  left: 0;
  width: 220px;
  height: 220px;
  margin: auto;
  -webkit-box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2) inset;
  box-shadow: 0 0 15px 0 rgba(0, 0, 0, 0.2) inset;
  border-radius: 50%;
}
.chart-wrapper.multiple h3 {
  margin-top: 30px;
  margin-bottom: -5px;
}
.chart-wrapper.multiple {
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
.chart-wrapper.multiple .sales-chart-container .outside-donut:before {
  top: 0;
  width: 100%;
  height: 100%;
}
.chart-wrapper.multiple .sales-chart-container .inside-donut {
  width: 150px !important;
  height: 150px !important;
}
.chart-wrapper.multiple .sales-chart-container .inside-donut:before {
  top: 0;
  width: 140px;
  height: 140px;
}
.ct-legend {
  text-align: center;
}
.chart-product-option {
  display: inline-block;
  vertical-align: top;
  min-width: 280px;
  padding: 0 60px 30px 0;
  text-align: left;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.chart-product-option p strong {
  display: inline-block;
  font-weight: 600;
}
.chart-product-option .product-label {
  margin-right: 2px;
}
.product-chart .ct-chart-donut .ct-label {
  font-size: 1em;
  font-weight: 600;
  color: #ffffff;
  fill: #ffffff;
}
.product-chart .ct-chart-donut .ct-slice-donut-solid {
  stroke: #ffffff;
  stroke-width: 2px;
  pointer-events: all;
}
.product-chart .ct-chart-donut .ct-series {
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.product-chart .ct-chart-bar .ct-label {
  font-size: 14px;
  color: #333;
  fill: #333;
}
.product-chart .tooltip {
  position: absolute;
  width: auto;
  max-width: 200px;
  height: auto;
  z-index: 1;
  padding: 8px 15px;
  font-weight: 600;
  font-size: 14px;
  color: #333;
  background-color: #fff;
  border: 1px solid #CCC;
  border-radius: 3px;
  -moz-box-shadow: 0px 0px 4px 0px rgba(102, 102, 102, 0.16);
  -webkit-box-shadow: 0px 0px 4px 0px rgba(102, 102, 102, 0.16);
  box-shadow: 0px 0px 4px 0px rgba(102, 102, 102, 0.16);
  opacity: 0.8;
  pointer-events: none;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.product-chart .tooltip.tooltip-hidden {
  opacity: 0;
}
.panel-content.chart-hovered .chart-product-option:not(.chart-data-selected),
.panel-content.chart-hovered .chart-labels .product-label:not(.chart-data-selected) {
  -webkit-filter: grayscale(60%);
  -moz-filter: grayscale(60%);
  -ms-filter: grayscale(60%);
  filter: grayscale(60%);
  opacity: 0.5;
}
.panel-content.chart-hovered .ct-chart-pie .ct-series:not(.chart-data-selected),
.panel-content.chart-hovered .ct-chart-donut .ct-series:not(.chart-data-selected) {
  opacity: 0.2;
}
/*------ sitemap ------*/
#site-pages .page-name i {
  margin-right: 5px;
  color: #999999;
  vertical-align: middle;
}
#sitemap-reference {
  max-height: 300px !important;
  padding: 0;
}
#sitemap-reference li {
  margin-top: 5px;
}
#sitemap-reference .sitemap-button {
  font-size: 14px;
  margin: 0;
}
#sitemap-reference .sitemap-button i {
  margin-right: 0;
}
@media all and (min-width: 769px) {
  #sitemap-reference {
    max-height: 400px !important;
  }
}
@media notebook {
  #sitemap-reference {
    max-height: 500px !important;
  }
}
.sitemap-pages tr:not(.level-1) .page-name:before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f3bf";
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
  display: inline-block;
  margin-right: 10px;
  font-size: 12px;
  color: #e46143;
}
.sitemap-pages tr.level-2 .page-name {
  padding-left: 30px;
}
.sitemap-pages tr.level-3 .page-name {
  padding-left: 50px;
}
.sitemap-pages tr.level-4 .page-name {
  padding-left: 70px;
}
.sitemap-pages tr.level-5 .page-name {
  padding-left: 90px;
}
.sitemap-pages tr td:last-child {
  padding-right: 10px;
  padding-left: 0;
  width: 100px;
}
/*------ toggle switch ------*/
.onoffswitch {
  display: inline-block;
  width: 80px;
  background-color: #FFF;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.onoffswitch input {
  position: absolute;
  margin: 0;
  padding: 0;
  border: 0;
  width: 0.1px;
  height: 0.1px;
  opacity: 0;
  background: none;
  overflow: hidden;
}
.onoffswitch label {
  display: block;
  width: 150%;
  height: auto;
  margin: 0;
  cursor: pointer;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
  -webkit-transition: background-color 0.2s ease-in 0s, transform 0.2s ease-in 0s;
  -moz-transition: background-color 0.2s ease-in 0s, transform 0.2s ease-in 0s;
  -ms-transition: background-color 0.2s ease-in 0s, transform 0.2s ease-in 0s;
  -o-transition: background-color 0.2s ease-in 0s, transform 0.2s ease-in 0s;
  -webkit-transition: background-color 0.2s ease-in 0s, -webkit-transform 0.2s ease-in 0s;
  transition: background-color 0.2s ease-in 0s, -webkit-transform 0.2s ease-in 0s;
  transition: background-color 0.2s ease-in 0s, transform 0.2s ease-in 0s;
  transition: background-color 0.2s ease-in 0s, transform 0.2s ease-in 0s, -webkit-transform 0.2s ease-in 0s;
}
.onoffswitch label .inner,
.onoffswitch label::before,
.onoffswitch label::after {
  text-align: center;
  width: 40px;
  height: 30px;
  padding: 0;
  font-size: 14px;
  line-height: 30px;
  color: #FFF;
  -webkit-transition: transform 0.3s ease 0s;
  -moz-transition: transform 0.3s ease 0s;
  -ms-transition: transform 0.3s ease 0s;
  -o-transition: transform 0.3s ease 0s;
  -webkit-transition: -webkit-transform 0.3s ease 0s;
  transition: -webkit-transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s;
  transition: transform 0.3s ease 0s, -webkit-transform 0.3s ease 0s;
}
.onoffswitch label::before {
  background-color: #699fb9;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f00c";
}
.onoffswitch label::after {
  background-color: #CC0000;
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f00d";
}
.onoffswitch label .inner {
  background-color: #93a4ac;
  opacity: 0;
  -webkit-transition: opacity 0.15s ease 0s;
  -moz-transition: opacity 0.15s ease 0s;
  -ms-transition: opacity 0.15s ease 0s;
  -o-transition: opacity 0.15s ease 0s;
  transition: opacity 0.15s ease 0s;
}
.onoffswitch label .inner::before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f068";
}
.onoffswitch :not(:checked) + label {
  -webkit-transform: translateX(-33.33%);
  -moz-transform: translateX(-33.33%);
  -ms-transform: translateX(-33.33%);
  -o-transform: translateX(-33.33%);
  transform: translateX(-33.33%);
}
.onoffswitch :indeterminate + label,
.onoffswitch [indeterminate] + label {
  -webkit-transform: translateX(-16.665%);
  -moz-transform: translateX(-16.665%);
  -ms-transform: translateX(-16.665%);
  -o-transform: translateX(-16.665%);
  transform: translateX(-16.665%);
}
.onoffswitch :indeterminate + label::before,
.onoffswitch [indeterminate] + label::before {
  -webkit-transform: translateX(-100%);
  -moz-transform: translateX(-100%);
  -ms-transform: translateX(-100%);
  -o-transform: translateX(-100%);
  transform: translateX(-100%);
}
.onoffswitch :indeterminate + label::after,
.onoffswitch [indeterminate] + label::after {
  -webkit-transform: translateX(100%);
  -moz-transform: translateX(100%);
  -ms-transform: translateX(100%);
  -o-transform: translateX(100%);
  transform: translateX(100%);
}
.onoffswitch :indeterminate + label .inner,
.onoffswitch [indeterminate] + label .inner {
  opacity: 1;
}
.switch-sorter {
  display: none;
}
table tr:nth-child(odd) td .onoffswitch {
  background-color: #EEE;
}
table td .onoffswitch,
table th .onoffswitch,
table td .item-status,
table th .item-status {
  display: block;
}
table td.center .onoffswitch,
table th.center .onoffswitch,
table td.center .item-status,
table th.center .item-status {
  margin: auto;
}
table td.right .onoffswitch,
table th.right .onoffswitch,
table td.right .item-status,
table th.right .item-status {
  margin-left: auto;
}
/*------ page status buttons ------*/
.item-status {
  position: relative;
  display: inline-block;
  width: 125px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.item-status button {
  width: 40px;
  margin: 0 1px 0 0 !important;
  height: 30px;
  padding: 0;
  font-size: 16px;
  font-weight: normal;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
  background-clip: padding-box;
}
.item-status button i {
  width: 40px;
  height: 30px;
  line-height: 30px;
  color: #666666;
  background: #EEE;
}
.item-status button:hover i {
  color: #FFF;
  background: #4c87a3;
}
.item-status button.active i {
  color: #FFF;
  background: #699fb9;
}
table tr:nth-child(2n) .item-status button i,
.panel-header .item-status button i {
  background: #FFF;
}
table tr:nth-child(2n) .item-status button:hover i,
.panel-header .item-status button:hover i {
  color: #FFF;
  background: #4c87a3;
}
table tr:nth-child(2n) .item-status button.active i,
.panel-header .item-status button.active i {
  color: #FFF;
  background: #699fb9;
}
/*------ jquery ui helpers ------*/
.ui-helper-hidden {
  display: none;
}
.ui-helper-hidden-accessible {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  border: 0;
  overflow: hidden;
  clip: rect(0 0 0 0);
}
.ui-helper-clearfix:before,
.ui-helper-clearfix:after {
  content: "";
  display: table;
}
.ui-helper-clearfix:after {
  clear: both;
}
.ui-helper-clearfix {
  zoom: 1;
}
.ui-widget-overlay,
.ui-widget-overlay.ui-front {
  position: fixed;
  z-index: 9999;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.5;
}
/*------ tabs ------*/
.tabs.page-content {
  display: none;
}
.tabs {
  display: block !important;
  margin-bottom: 20px;
}
.tabs > ul {
  position: relative;
  list-style: none;
  margin: 0;
  padding: 0 0 0 1px;
  width: 100%;
  z-index: 1;
  border-bottom: 1px solid rgba(238, 238, 238, 0.5);
}
.tabs > ul > li {
  position: relative;
  display: inline-block;
  margin-right: 2px;
  margin-top: 1px;
  margin-bottom: -1px;
}
.tabs > ul > li a {
  display: block;
  z-index: 1;
  padding: 15px 20px;
  background: #CCC;
  color: #666666;
  font-weight: 800;
  line-height: 30px;
  margin: 0 0 0 -1px;
  outline: none;
  text-decoration: none;
  text-transform: uppercase;
  -moz-box-shadow: 0 -5px 10px -5px rgba(102, 102, 102, 0.16) inset;
  -webkit-box-shadow: 0 -5px 10px -5px rgba(102, 102, 102, 0.16) inset;
  box-shadow: 0 -5px 10px -5px rgba(102, 102, 102, 0.16) inset;
}
.tabs > ul > li a:hover {
  background: #fef7f5;
}
.tabs > ul li:not(.ui-tabs-tab):first-child a,
.tabs > ul li.ui-state-active a:hover,
.tabs > ul li.ui-state-active a {
  background: #FFF;
  color: #141111;
  z-index: 2;
  -moz-box-shadow: none;
  -webkit-box-shadow: none;
  box-shadow: none;
  text-shadow: none;
}
.tabs > ul li:not(.ui-tabs-tab):first-child::before,
.tabs > ul li.ui-state-active::before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  clip-path: inset(-10px -10px 0 -10px);
}
.tabs > ul ~ .ui-tabs-panel.nopadding > .mce-tinymce.mce-container {
  margin-left: -1px;
}
.tabs > ul ~ .ui-tabs-panel ~ .ui-tabs-panel > .mce-tinymce.mce-container {
  margin-left: 0px;
}
.tabs > :not(ul:first-child) {
  position: relative;
  display: block;
  clear: both;
  padding: 20px 20px 10px;
  background: #FFF;
}
.tabs > :not(ul:first-child):before {
  position: absolute;
  content: "";
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  -moz-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
  box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
}
.tabs > :not(ul:first-child) ~ * {
  display: none;
}
/*------ dialog box ------*/
.ui-dialog {
  position: absolute;
  max-height: calc(100% - 40px);
  z-index: 10000;
  top: 0;
  left: 0;
  padding: 0;
  overflow: hidden;
  outline: none !important;
  background: #FFF;
  color: #141111;
  border: 0;
  -moz-box-shadow: 0px 0px 10px 0px rgba(102, 102, 102, 0.16);
  -webkit-box-shadow: 0px 0px 10px 0px rgba(102, 102, 102, 0.16);
  box-shadow: 0px 0px 10px 0px rgba(102, 102, 102, 0.16);
}
.ui-dialog .ui-dialog-titlebar {
  position: relative;
  padding: 20px;
  background: #141111;
  font-family: 'Exo', sans-serif;
  color: #FFF;
  font-size: 18px;
  font-weight: 800;
}
.ui-dialog.dialog-error .ui-dialog-titlebar {
  background: #CC0000;
}
.ui-dialog .ui-dialog-title {
  float: left;
  margin: 0 25px 0 0;
  text-transform: uppercase;
}
.ui-dialog .ui-dialog-titlebar-close {
  position: absolute;
  right: 10px;
  top: 50%;
  width: 20px;
  margin: -8px 4px 0 0;
  padding: 0;
  height: 20px;
  background: none;
  color: #FFF;
  text-align: center;
  text-decoration: none;
  border: 0;
  font-size: 0;
  cursor: pointer;
  font-weight: 700;
}
.ui-dialog .ui-dialog-titlebar-close:hover,
.ui-dialog .ui-dialog-titlebar-close:focus {
  background: none;
  color: #FFF;
}
.ui-dialog .ui-dialog-titlebar-close span {
  display: block;
}
.ui-dialog .ui-dialog-titlebar-close .ui-icon-closethick {
  display: block;
  background: none;
  outline: none;
}
.ui-dialog .ui-dialog-titlebar-close .ui-icon-closethick:before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f00d";
  font-size: 20px;
  font-style: normal;
  text-decoration: inherit;
}
.ui-dialog ul,
.ui-dialog ol {
  margin: 0 0 0 20px;
}
.ui-dialog ul:last-child,
.ui-dialog ol:last-child {
  padding: 0;
}
.ui-dialog ul ul,
.ui-dialog ol ul,
.ui-dialog ul ol,
.ui-dialog ol ol {
  padding: 5px 0;
}
.ui-dialog .ui-dialog-content {
  position: relative;
  max-height: 90% !important;
  border: 0;
  padding: 20px;
  background: none;
  overflow: auto;
  zoom: 1;
}
.ui-dialog .ui-dialog-buttonpane {
  text-align: left;
  border-width: 1px 0 0 0;
  background-image: none;
  margin: 0;
  padding: 0 10px 10px;
}
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset {
  clear: both;
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row wrap;
          flex-flow: row wrap;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
  -webkit-box-align: stretch;
      -ms-flex-align: stretch;
          align-items: stretch;
}
.ui-dialog .ui-dialog-buttonpane .ui-button {
  margin: 0 10px 5px 10px;
  cursor: pointer;
  background: #666666;
  color: #FFF;
  outline: none !important;
  border: 0;
  font-size: 12px;
  text-transform: none;
  padding: 5px 10px;
  font-weight: 600;
  -webkit-transition: all 0.3s ease 0s;
  -moz-transition: all 0.3s ease 0s;
  -ms-transition: all 0.3s ease 0s;
  -o-transition: all 0.3s ease 0s;
  transition: all 0.3s ease 0s;
}
.ui-dialog .ui-dialog-buttonpane .ui-button i {
  margin-right: 5px;
}
.ui-dialog .ui-dialog-buttonpane .ui-button:hover {
  background: #141111;
  color: #FFF;
}
.ui-dialog .ui-dialog-buttonpane .ui-button .ui-resizable-se {
  width: 14px;
  height: 14px;
  right: 3px;
  bottom: 3px;
}
/*------ tooltip ------*/
.tooltip {
  font-weight: 800;
  color: #699fb9;
  cursor: pointer;
  padding-left: 5px;
  font-family: 'Open Sans', sans-serif;
}
.handle .tooltip {
  position: absolute;
  top: 0;
  left: -5px;
  bottom: 0;
}
.ui-tooltip {
  position: absolute;
  display: none;
  background: #141111;
  font-size: 12px;
  width: 210px;
  padding: 20px;
  color: #FFF;
  z-index: 99;
  line-height: 18px;
  opacity: 0.9;
  word-break: break-word;
  -moz-box-shadow: 0 0 20px 0px rgba(102, 102, 102, 0.16);
  -webkit-box-shadow: 0 0 20px 0px rgba(102, 102, 102, 0.16);
  box-shadow: 0 0 20px 0px rgba(102, 102, 102, 0.16);
}
.ui-tooltip h4 {
  color: #e46143;
}
.ui-tooltip h4:only-child {
  margin: 0;
}
.ui-tooltip p {
  padding-bottom: 15px;
}
.ui-tooltip p:only-child {
  padding: 0;
}
.ui-tooltip small {
  color: #EEE;
  font-size: 85%;
  line-height: 1.3;
  display: inline-block;
}
/*------ seo styles ------*/
.google-preview {
  padding: 0 10px 20px;
  overflow: hidden;
  min-width: 240px;
}
.google-preview div {
  font-family: Arial, Helvetica, sans-serif;
  color: #545454;
  font-size: 13px;
  line-height: 18px;
}
.google-preview div h2 {
  font-family: inherit;
  font-size: 18px;
  font-weight: normal;
  color: #1a0dab;
  margin: 0 0 3px;
  padding: 0;
}
.google-preview div h6 {
  font-family: inherit;
  margin-bottom: 6px;
  font-size: 14px;
  color: #006621;
}
.seo-pass {
  color: #65B561 !important;
}
.seo-fail {
  color: #CC0000 !important;
}
.seo-average {
  color: #FFCC00 !important;
}
.seo-summary {
  width: 65%;
  list-style: none;
  margin: 0;
}
.seo-summary li {
  padding: 0 0 10px 30px;
  line-height: 18px;
  text-indent: -28px;
}
.seo-summary li:before {
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  content: "\f111";
  font-style: normal;
  text-decoration: inherit;
  padding-right: 12px;
  font-size: 16px;
  line-height: 1;
}
.seo-summary li.seo-1:before {
  color: #CC0000 !important;
}
.seo-summary li.seo-2:before {
  color: #FFCC00 !important;
}
.seo-summary li.seo-3:before {
  color: #65B561 !important;
}
tr[class^="seo-"] > td:first-child {
  position: relative;
  border-left: 5px solid #ff6767;
}
tr[class^="seo-"] > td:first-child .tooltip {
  position: absolute;
  display: block;
  top: 0;
  left: -5px;
  width: 5px;
  height: 100%;
}
tr.seo-1 > td:first-child {
  border-left: 5px solid #CC0000;
}
tr.seo-2 > td:first-child {
  border-left: 5px solid #FFCC00;
}
tr.seo-3 > td:first-child {
  border-left: 5px solid #65B561;
}
.graph,
.progress-bar {
  width: 150px;
  margin-right: 20px;
}
.graph p,
.progress-bar p {
  color: #141111;
  font-weight: 800;
  text-transform: uppercase;
}
.graph p small,
.progress-bar p small {
  display: block;
  font-size: 14px;
  font-weight: 500;
}
.progress-bar {
  width: 400px;
  height: auto;
  max-width: 100%;
  min-height: 130px;
  font-size: 16px;
  padding: 20px;
  -webkit-box-sizing: border-box;
          box-sizing: border-box;
}
.progress-bar .percentage {
  display: -webkit-flex;
  display: -ms-flexbox;
  display: -webkit-box;
  display: -moz-box;
  display: flex;
  -webkit-box-orient: horizontal;
  -webkit-box-direction: normal;
      -ms-flex-flow: row nowrap;
          flex-flow: row nowrap;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.progress-bar .percentage .numbers {
  margin-right: 10px;
  font-size: 60px;
  font-family: 'Exo', sans-serif;
  line-height: 1;
  font-weight: 900;
}
.progress-bar .percentage p {
  padding: 0;
}
.radial-progress,
.radial-progress.site-avg {
  position: relative;
  margin: 0 auto 10px auto;
  width: 100px;
  height: 100px;
  background-color: #fef7f5;
  border-radius: 50%;
}
.radial-progress .circle .mask,
.radial-progress.site-avg .circle .mask,
.radial-progress .circle .fill,
.radial-progress.site-avg .circle .fill,
.radial-progress .circle .shadow,
.radial-progress.site-avg .circle .shadow {
  width: 100px;
  height: 100px;
  position: absolute;
  border-radius: 50%;
}
.radial-progress .circle .shadow,
.radial-progress.site-avg .circle .shadow {
  -webkit-box-shadow: 6px 6px 10px rgba(0, 0, 0, 0.1) inset;
          box-shadow: 6px 6px 10px rgba(0, 0, 0, 0.1) inset;
}
.radial-progress .circle .mask,
.radial-progress.site-avg .circle .mask,
.radial-progress .circle .fill,
.radial-progress.site-avg .circle .fill {
  -webkit-backface-visibility: hidden;
  transition: -webkit-transform 1s;
  transition: -ms-transform 1s;
  -webkit-transition: -webkit-transform 1s;
  transition: transform 1s;
  transition: transform 1s, -webkit-transform 1s;
  border-radius: 50%;
}
.radial-progress .circle .mask,
.radial-progress.site-avg .circle .mask {
  clip: rect(0px, 100px, 100px, 50px);
}
.radial-progress .circle .mask .fill,
.radial-progress.site-avg .circle .mask .fill {
  clip: rect(0px, 50px, 100px, 0px);
  background-color: #e46143;
}
.radial-progress .inset,
.radial-progress.site-avg .inset {
  width: 70px;
  height: 70px;
  position: absolute;
  z-index: 2;
  margin-left: 15px;
  margin-top: 15px;
  background-color: #FFF;
  border-radius: 50%;
  -webkit-box-shadow: 6px 6px 10px rgba(0, 0, 0, 0.1);
          box-shadow: 6px 6px 10px rgba(0, 0, 0, 0.1);
}
.radial-progress .inset .percentage,
.radial-progress.site-avg .inset .percentage {
  height: 22px;
  width: 57px;
  overflow: hidden;
  position: absolute;
  top: 24px;
  left: 6.5px;
  line-height: 1;
}
.radial-progress .inset .percentage .numbers span,
.radial-progress.site-avg .inset .percentage .numbers span {
  width: 57px;
  display: inline-block;
  vertical-align: top;
  text-align: center;
  font-weight: 700;
  font-size: 22px;
  color: #e46143;
}
.radial-progress.p100 .circle.animate .mask.full,
.radial-progress.site-avg.p100 .circle.animate .mask.full,
.radial-progress.p100 .circle.animate .fill,
.radial-progress.site-avg.p100 .circle.animate .fill {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.radial-progress.p100 .circle.animate .fill.fix,
.radial-progress.site-avg.p100 .circle.animate .fill.fix {
  -webkit-transform: rotate(360deg);
  -moz-transform: rotate(360deg);
  -ms-transform: rotate(360deg);
  -o-transform: rotate(360deg);
  transform: rotate(360deg);
}
.radial-progress.p99 .circle.animate .mask.full,
.radial-progress.site-avg.p99 .circle.animate .mask.full,
.radial-progress.p99 .circle.animate .fill,
.radial-progress.site-avg.p99 .circle.animate .fill {
  -webkit-transform: rotate(178.2deg);
  -moz-transform: rotate(178.2deg);
  -ms-transform: rotate(178.2deg);
  -o-transform: rotate(178.2deg);
  transform: rotate(178.2deg);
}
.radial-progress.p99 .circle.animate .fill.fix,
.radial-progress.site-avg.p99 .circle.animate .fill.fix {
  -webkit-transform: rotate(356.4deg);
  -moz-transform: rotate(356.4deg);
  -ms-transform: rotate(356.4deg);
  -o-transform: rotate(356.4deg);
  transform: rotate(356.4deg);
}
.radial-progress.p98 .circle.animate .mask.full,
.radial-progress.site-avg.p98 .circle.animate .mask.full,
.radial-progress.p98 .circle.animate .fill,
.radial-progress.site-avg.p98 .circle.animate .fill {
  -webkit-transform: rotate(176.4deg);
  -moz-transform: rotate(176.4deg);
  -ms-transform: rotate(176.4deg);
  -o-transform: rotate(176.4deg);
  transform: rotate(176.4deg);
}
.radial-progress.p98 .circle.animate .fill.fix,
.radial-progress.site-avg.p98 .circle.animate .fill.fix {
  -webkit-transform: rotate(352.8deg);
  -moz-transform: rotate(352.8deg);
  -ms-transform: rotate(352.8deg);
  -o-transform: rotate(352.8deg);
  transform: rotate(352.8deg);
}
.radial-progress.p97 .circle.animate .mask.full,
.radial-progress.site-avg.p97 .circle.animate .mask.full,
.radial-progress.p97 .circle.animate .fill,
.radial-progress.site-avg.p97 .circle.animate .fill {
  -webkit-transform: rotate(174.6deg);
  -moz-transform: rotate(174.6deg);
  -ms-transform: rotate(174.6deg);
  -o-transform: rotate(174.6deg);
  transform: rotate(174.6deg);
}
.radial-progress.p97 .circle.animate .fill.fix,
.radial-progress.site-avg.p97 .circle.animate .fill.fix {
  -webkit-transform: rotate(349.2deg);
  -moz-transform: rotate(349.2deg);
  -ms-transform: rotate(349.2deg);
  -o-transform: rotate(349.2deg);
  transform: rotate(349.2deg);
}
.radial-progress.p96 .circle.animate .mask.full,
.radial-progress.site-avg.p96 .circle.animate .mask.full,
.radial-progress.p96 .circle.animate .fill,
.radial-progress.site-avg.p96 .circle.animate .fill {
  -webkit-transform: rotate(172.8deg);
  -moz-transform: rotate(172.8deg);
  -ms-transform: rotate(172.8deg);
  -o-transform: rotate(172.8deg);
  transform: rotate(172.8deg);
}
.radial-progress.p96 .circle.animate .fill.fix,
.radial-progress.site-avg.p96 .circle.animate .fill.fix {
  -webkit-transform: rotate(345.6deg);
  -moz-transform: rotate(345.6deg);
  -ms-transform: rotate(345.6deg);
  -o-transform: rotate(345.6deg);
  transform: rotate(345.6deg);
}
.radial-progress.p95 .circle.animate .mask.full,
.radial-progress.site-avg.p95 .circle.animate .mask.full,
.radial-progress.p95 .circle.animate .fill,
.radial-progress.site-avg.p95 .circle.animate .fill {
  -webkit-transform: rotate(171deg);
  -moz-transform: rotate(171deg);
  -ms-transform: rotate(171deg);
  -o-transform: rotate(171deg);
  transform: rotate(171deg);
}
.radial-progress.p95 .circle.animate .fill.fix,
.radial-progress.site-avg.p95 .circle.animate .fill.fix {
  -webkit-transform: rotate(342deg);
  -moz-transform: rotate(342deg);
  -ms-transform: rotate(342deg);
  -o-transform: rotate(342deg);
  transform: rotate(342deg);
}
.radial-progress.p94 .circle.animate .mask.full,
.radial-progress.site-avg.p94 .circle.animate .mask.full,
.radial-progress.p94 .circle.animate .fill,
.radial-progress.site-avg.p94 .circle.animate .fill {
  -webkit-transform: rotate(169.2deg);
  -moz-transform: rotate(169.2deg);
  -ms-transform: rotate(169.2deg);
  -o-transform: rotate(169.2deg);
  transform: rotate(169.2deg);
}
.radial-progress.p94 .circle.animate .fill.fix,
.radial-progress.site-avg.p94 .circle.animate .fill.fix {
  -webkit-transform: rotate(338.4deg);
  -moz-transform: rotate(338.4deg);
  -ms-transform: rotate(338.4deg);
  -o-transform: rotate(338.4deg);
  transform: rotate(338.4deg);
}
.radial-progress.p93 .circle.animate .mask.full,
.radial-progress.site-avg.p93 .circle.animate .mask.full,
.radial-progress.p93 .circle.animate .fill,
.radial-progress.site-avg.p93 .circle.animate .fill {
  -webkit-transform: rotate(167.4deg);
  -moz-transform: rotate(167.4deg);
  -ms-transform: rotate(167.4deg);
  -o-transform: rotate(167.4deg);
  transform: rotate(167.4deg);
}
.radial-progress.p93 .circle.animate .fill.fix,
.radial-progress.site-avg.p93 .circle.animate .fill.fix {
  -webkit-transform: rotate(334.8deg);
  -moz-transform: rotate(334.8deg);
  -ms-transform: rotate(334.8deg);
  -o-transform: rotate(334.8deg);
  transform: rotate(334.8deg);
}
.radial-progress.p92 .circle.animate .mask.full,
.radial-progress.site-avg.p92 .circle.animate .mask.full,
.radial-progress.p92 .circle.animate .fill,
.radial-progress.site-avg.p92 .circle.animate .fill {
  -webkit-transform: rotate(165.6deg);
  -moz-transform: rotate(165.6deg);
  -ms-transform: rotate(165.6deg);
  -o-transform: rotate(165.6deg);
  transform: rotate(165.6deg);
}
.radial-progress.p92 .circle.animate .fill.fix,
.radial-progress.site-avg.p92 .circle.animate .fill.fix {
  -webkit-transform: rotate(331.2deg);
  -moz-transform: rotate(331.2deg);
  -ms-transform: rotate(331.2deg);
  -o-transform: rotate(331.2deg);
  transform: rotate(331.2deg);
}
.radial-progress.p91 .circle.animate .mask.full,
.radial-progress.site-avg.p91 .circle.animate .mask.full,
.radial-progress.p91 .circle.animate .fill,
.radial-progress.site-avg.p91 .circle.animate .fill {
  -webkit-transform: rotate(163.8deg);
  -moz-transform: rotate(163.8deg);
  -ms-transform: rotate(163.8deg);
  -o-transform: rotate(163.8deg);
  transform: rotate(163.8deg);
}
.radial-progress.p91 .circle.animate .fill.fix,
.radial-progress.site-avg.p91 .circle.animate .fill.fix {
  -webkit-transform: rotate(327.6deg);
  -moz-transform: rotate(327.6deg);
  -ms-transform: rotate(327.6deg);
  -o-transform: rotate(327.6deg);
  transform: rotate(327.6deg);
}
.radial-progress.p90 .circle.animate .mask.full,
.radial-progress.site-avg.p90 .circle.animate .mask.full,
.radial-progress.p90 .circle.animate .fill,
.radial-progress.site-avg.p90 .circle.animate .fill {
  -webkit-transform: rotate(162deg);
  -moz-transform: rotate(162deg);
  -ms-transform: rotate(162deg);
  -o-transform: rotate(162deg);
  transform: rotate(162deg);
}
.radial-progress.p90 .circle.animate .fill.fix,
.radial-progress.site-avg.p90 .circle.animate .fill.fix {
  -webkit-transform: rotate(324deg);
  -moz-transform: rotate(324deg);
  -ms-transform: rotate(324deg);
  -o-transform: rotate(324deg);
  transform: rotate(324deg);
}
.radial-progress.p89 .circle.animate .mask.full,
.radial-progress.site-avg.p89 .circle.animate .mask.full,
.radial-progress.p89 .circle.animate .fill,
.radial-progress.site-avg.p89 .circle.animate .fill {
  -webkit-transform: rotate(160.2deg);
  -moz-transform: rotate(160.2deg);
  -ms-transform: rotate(160.2deg);
  -o-transform: rotate(160.2deg);
  transform: rotate(160.2deg);
}
.radial-progress.p89 .circle.animate .fill.fix,
.radial-progress.site-avg.p89 .circle.animate .fill.fix {
  -webkit-transform: rotate(320.4deg);
  -moz-transform: rotate(320.4deg);
  -ms-transform: rotate(320.4deg);
  -o-transform: rotate(320.4deg);
  transform: rotate(320.4deg);
}
.radial-progress.p88 .circle.animate .mask.full,
.radial-progress.site-avg.p88 .circle.animate .mask.full,
.radial-progress.p88 .circle.animate .fill,
.radial-progress.site-avg.p88 .circle.animate .fill {
  -webkit-transform: rotate(158.4deg);
  -moz-transform: rotate(158.4deg);
  -ms-transform: rotate(158.4deg);
  -o-transform: rotate(158.4deg);
  transform: rotate(158.4deg);
}
.radial-progress.p88 .circle.animate .fill.fix,
.radial-progress.site-avg.p88 .circle.animate .fill.fix {
  -webkit-transform: rotate(316.8deg);
  -moz-transform: rotate(316.8deg);
  -ms-transform: rotate(316.8deg);
  -o-transform: rotate(316.8deg);
  transform: rotate(316.8deg);
}
.radial-progress.p87 .circle.animate .mask.full,
.radial-progress.site-avg.p87 .circle.animate .mask.full,
.radial-progress.p87 .circle.animate .fill,
.radial-progress.site-avg.p87 .circle.animate .fill {
  -webkit-transform: rotate(156.6deg);
  -moz-transform: rotate(156.6deg);
  -ms-transform: rotate(156.6deg);
  -o-transform: rotate(156.6deg);
  transform: rotate(156.6deg);
}
.radial-progress.p87 .circle.animate .fill.fix,
.radial-progress.site-avg.p87 .circle.animate .fill.fix {
  -webkit-transform: rotate(313.2deg);
  -moz-transform: rotate(313.2deg);
  -ms-transform: rotate(313.2deg);
  -o-transform: rotate(313.2deg);
  transform: rotate(313.2deg);
}
.radial-progress.p86 .circle.animate .mask.full,
.radial-progress.site-avg.p86 .circle.animate .mask.full,
.radial-progress.p86 .circle.animate .fill,
.radial-progress.site-avg.p86 .circle.animate .fill {
  -webkit-transform: rotate(154.8deg);
  -moz-transform: rotate(154.8deg);
  -ms-transform: rotate(154.8deg);
  -o-transform: rotate(154.8deg);
  transform: rotate(154.8deg);
}
.radial-progress.p86 .circle.animate .fill.fix,
.radial-progress.site-avg.p86 .circle.animate .fill.fix {
  -webkit-transform: rotate(309.6deg);
  -moz-transform: rotate(309.6deg);
  -ms-transform: rotate(309.6deg);
  -o-transform: rotate(309.6deg);
  transform: rotate(309.6deg);
}
.radial-progress.p85 .circle.animate .mask.full,
.radial-progress.site-avg.p85 .circle.animate .mask.full,
.radial-progress.p85 .circle.animate .fill,
.radial-progress.site-avg.p85 .circle.animate .fill {
  -webkit-transform: rotate(153deg);
  -moz-transform: rotate(153deg);
  -ms-transform: rotate(153deg);
  -o-transform: rotate(153deg);
  transform: rotate(153deg);
}
.radial-progress.p85 .circle.animate .fill.fix,
.radial-progress.site-avg.p85 .circle.animate .fill.fix {
  -webkit-transform: rotate(306deg);
  -moz-transform: rotate(306deg);
  -ms-transform: rotate(306deg);
  -o-transform: rotate(306deg);
  transform: rotate(306deg);
}
.radial-progress.p84 .circle.animate .mask.full,
.radial-progress.site-avg.p84 .circle.animate .mask.full,
.radial-progress.p84 .circle.animate .fill,
.radial-progress.site-avg.p84 .circle.animate .fill {
  -webkit-transform: rotate(151.2deg);
  -moz-transform: rotate(151.2deg);
  -ms-transform: rotate(151.2deg);
  -o-transform: rotate(151.2deg);
  transform: rotate(151.2deg);
}
.radial-progress.p84 .circle.animate .fill.fix,
.radial-progress.site-avg.p84 .circle.animate .fill.fix {
  -webkit-transform: rotate(302.4deg);
  -moz-transform: rotate(302.4deg);
  -ms-transform: rotate(302.4deg);
  -o-transform: rotate(302.4deg);
  transform: rotate(302.4deg);
}
.radial-progress.p83 .circle.animate .mask.full,
.radial-progress.site-avg.p83 .circle.animate .mask.full,
.radial-progress.p83 .circle.animate .fill,
.radial-progress.site-avg.p83 .circle.animate .fill {
  -webkit-transform: rotate(149.4deg);
  -moz-transform: rotate(149.4deg);
  -ms-transform: rotate(149.4deg);
  -o-transform: rotate(149.4deg);
  transform: rotate(149.4deg);
}
.radial-progress.p83 .circle.animate .fill.fix,
.radial-progress.site-avg.p83 .circle.animate .fill.fix {
  -webkit-transform: rotate(298.8deg);
  -moz-transform: rotate(298.8deg);
  -ms-transform: rotate(298.8deg);
  -o-transform: rotate(298.8deg);
  transform: rotate(298.8deg);
}
.radial-progress.p82 .circle.animate .mask.full,
.radial-progress.site-avg.p82 .circle.animate .mask.full,
.radial-progress.p82 .circle.animate .fill,
.radial-progress.site-avg.p82 .circle.animate .fill {
  -webkit-transform: rotate(147.6deg);
  -moz-transform: rotate(147.6deg);
  -ms-transform: rotate(147.6deg);
  -o-transform: rotate(147.6deg);
  transform: rotate(147.6deg);
}
.radial-progress.p82 .circle.animate .fill.fix,
.radial-progress.site-avg.p82 .circle.animate .fill.fix {
  -webkit-transform: rotate(295.2deg);
  -moz-transform: rotate(295.2deg);
  -ms-transform: rotate(295.2deg);
  -o-transform: rotate(295.2deg);
  transform: rotate(295.2deg);
}
.radial-progress.p81 .circle.animate .mask.full,
.radial-progress.site-avg.p81 .circle.animate .mask.full,
.radial-progress.p81 .circle.animate .fill,
.radial-progress.site-avg.p81 .circle.animate .fill {
  -webkit-transform: rotate(145.8deg);
  -moz-transform: rotate(145.8deg);
  -ms-transform: rotate(145.8deg);
  -o-transform: rotate(145.8deg);
  transform: rotate(145.8deg);
}
.radial-progress.p81 .circle.animate .fill.fix,
.radial-progress.site-avg.p81 .circle.animate .fill.fix {
  -webkit-transform: rotate(291.6deg);
  -moz-transform: rotate(291.6deg);
  -ms-transform: rotate(291.6deg);
  -o-transform: rotate(291.6deg);
  transform: rotate(291.6deg);
}
.radial-progress.p80 .circle.animate .mask.full,
.radial-progress.site-avg.p80 .circle.animate .mask.full,
.radial-progress.p80 .circle.animate .fill,
.radial-progress.site-avg.p80 .circle.animate .fill {
  -webkit-transform: rotate(144deg);
  -moz-transform: rotate(144deg);
  -ms-transform: rotate(144deg);
  -o-transform: rotate(144deg);
  transform: rotate(144deg);
}
.radial-progress.p80 .circle.animate .fill.fix,
.radial-progress.site-avg.p80 .circle.animate .fill.fix {
  -webkit-transform: rotate(288deg);
  -moz-transform: rotate(288deg);
  -ms-transform: rotate(288deg);
  -o-transform: rotate(288deg);
  transform: rotate(288deg);
}
.radial-progress.p79 .circle.animate .mask.full,
.radial-progress.site-avg.p79 .circle.animate .mask.full,
.radial-progress.p79 .circle.animate .fill,
.radial-progress.site-avg.p79 .circle.animate .fill {
  -webkit-transform: rotate(142.2deg);
  -moz-transform: rotate(142.2deg);
  -ms-transform: rotate(142.2deg);
  -o-transform: rotate(142.2deg);
  transform: rotate(142.2deg);
}
.radial-progress.p79 .circle.animate .fill.fix,
.radial-progress.site-avg.p79 .circle.animate .fill.fix {
  -webkit-transform: rotate(284.4deg);
  -moz-transform: rotate(284.4deg);
  -ms-transform: rotate(284.4deg);
  -o-transform: rotate(284.4deg);
  transform: rotate(284.4deg);
}
.radial-progress.p78 .circle.animate .mask.full,
.radial-progress.site-avg.p78 .circle.animate .mask.full,
.radial-progress.p78 .circle.animate .fill,
.radial-progress.site-avg.p78 .circle.animate .fill {
  -webkit-transform: rotate(140.4deg);
  -moz-transform: rotate(140.4deg);
  -ms-transform: rotate(140.4deg);
  -o-transform: rotate(140.4deg);
  transform: rotate(140.4deg);
}
.radial-progress.p78 .circle.animate .fill.fix,
.radial-progress.site-avg.p78 .circle.animate .fill.fix {
  -webkit-transform: rotate(280.8deg);
  -moz-transform: rotate(280.8deg);
  -ms-transform: rotate(280.8deg);
  -o-transform: rotate(280.8deg);
  transform: rotate(280.8deg);
}
.radial-progress.p77 .circle.animate .mask.full,
.radial-progress.site-avg.p77 .circle.animate .mask.full,
.radial-progress.p77 .circle.animate .fill,
.radial-progress.site-avg.p77 .circle.animate .fill {
  -webkit-transform: rotate(138.6deg);
  -moz-transform: rotate(138.6deg);
  -ms-transform: rotate(138.6deg);
  -o-transform: rotate(138.6deg);
  transform: rotate(138.6deg);
}
.radial-progress.p77 .circle.animate .fill.fix,
.radial-progress.site-avg.p77 .circle.animate .fill.fix {
  -webkit-transform: rotate(277.2deg);
  -moz-transform: rotate(277.2deg);
  -ms-transform: rotate(277.2deg);
  -o-transform: rotate(277.2deg);
  transform: rotate(277.2deg);
}
.radial-progress.p76 .circle.animate .mask.full,
.radial-progress.site-avg.p76 .circle.animate .mask.full,
.radial-progress.p76 .circle.animate .fill,
.radial-progress.site-avg.p76 .circle.animate .fill {
  -webkit-transform: rotate(136.8deg);
  -moz-transform: rotate(136.8deg);
  -ms-transform: rotate(136.8deg);
  -o-transform: rotate(136.8deg);
  transform: rotate(136.8deg);
}
.radial-progress.p76 .circle.animate .fill.fix,
.radial-progress.site-avg.p76 .circle.animate .fill.fix {
  -webkit-transform: rotate(273.6deg);
  -moz-transform: rotate(273.6deg);
  -ms-transform: rotate(273.6deg);
  -o-transform: rotate(273.6deg);
  transform: rotate(273.6deg);
}
.radial-progress.p75 .circle.animate .mask.full,
.radial-progress.site-avg.p75 .circle.animate .mask.full,
.radial-progress.p75 .circle.animate .fill,
.radial-progress.site-avg.p75 .circle.animate .fill {
  -webkit-transform: rotate(135deg);
  -moz-transform: rotate(135deg);
  -ms-transform: rotate(135deg);
  -o-transform: rotate(135deg);
  transform: rotate(135deg);
}
.radial-progress.p75 .circle.animate .fill.fix,
.radial-progress.site-avg.p75 .circle.animate .fill.fix {
  -webkit-transform: rotate(270deg);
  -moz-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  -o-transform: rotate(270deg);
  transform: rotate(270deg);
}
.radial-progress.p74 .circle.animate .mask.full,
.radial-progress.site-avg.p74 .circle.animate .mask.full,
.radial-progress.p74 .circle.animate .fill,
.radial-progress.site-avg.p74 .circle.animate .fill {
  -webkit-transform: rotate(133.2deg);
  -moz-transform: rotate(133.2deg);
  -ms-transform: rotate(133.2deg);
  -o-transform: rotate(133.2deg);
  transform: rotate(133.2deg);
}
.radial-progress.p74 .circle.animate .fill.fix,
.radial-progress.site-avg.p74 .circle.animate .fill.fix {
  -webkit-transform: rotate(266.4deg);
  -moz-transform: rotate(266.4deg);
  -ms-transform: rotate(266.4deg);
  -o-transform: rotate(266.4deg);
  transform: rotate(266.4deg);
}
.radial-progress.p73 .circle.animate .mask.full,
.radial-progress.site-avg.p73 .circle.animate .mask.full,
.radial-progress.p73 .circle.animate .fill,
.radial-progress.site-avg.p73 .circle.animate .fill {
  -webkit-transform: rotate(131.4deg);
  -moz-transform: rotate(131.4deg);
  -ms-transform: rotate(131.4deg);
  -o-transform: rotate(131.4deg);
  transform: rotate(131.4deg);
}
.radial-progress.p73 .circle.animate .fill.fix,
.radial-progress.site-avg.p73 .circle.animate .fill.fix {
  -webkit-transform: rotate(262.8deg);
  -moz-transform: rotate(262.8deg);
  -ms-transform: rotate(262.8deg);
  -o-transform: rotate(262.8deg);
  transform: rotate(262.8deg);
}
.radial-progress.p72 .circle.animate .mask.full,
.radial-progress.site-avg.p72 .circle.animate .mask.full,
.radial-progress.p72 .circle.animate .fill,
.radial-progress.site-avg.p72 .circle.animate .fill {
  -webkit-transform: rotate(129.6deg);
  -moz-transform: rotate(129.6deg);
  -ms-transform: rotate(129.6deg);
  -o-transform: rotate(129.6deg);
  transform: rotate(129.6deg);
}
.radial-progress.p72 .circle.animate .fill.fix,
.radial-progress.site-avg.p72 .circle.animate .fill.fix {
  -webkit-transform: rotate(259.2deg);
  -moz-transform: rotate(259.2deg);
  -ms-transform: rotate(259.2deg);
  -o-transform: rotate(259.2deg);
  transform: rotate(259.2deg);
}
.radial-progress.p71 .circle.animate .mask.full,
.radial-progress.site-avg.p71 .circle.animate .mask.full,
.radial-progress.p71 .circle.animate .fill,
.radial-progress.site-avg.p71 .circle.animate .fill {
  -webkit-transform: rotate(127.8deg);
  -moz-transform: rotate(127.8deg);
  -ms-transform: rotate(127.8deg);
  -o-transform: rotate(127.8deg);
  transform: rotate(127.8deg);
}
.radial-progress.p71 .circle.animate .fill.fix,
.radial-progress.site-avg.p71 .circle.animate .fill.fix {
  -webkit-transform: rotate(255.6deg);
  -moz-transform: rotate(255.6deg);
  -ms-transform: rotate(255.6deg);
  -o-transform: rotate(255.6deg);
  transform: rotate(255.6deg);
}
.radial-progress.p70 .circle.animate .mask.full,
.radial-progress.site-avg.p70 .circle.animate .mask.full,
.radial-progress.p70 .circle.animate .fill,
.radial-progress.site-avg.p70 .circle.animate .fill {
  -webkit-transform: rotate(126deg);
  -moz-transform: rotate(126deg);
  -ms-transform: rotate(126deg);
  -o-transform: rotate(126deg);
  transform: rotate(126deg);
}
.radial-progress.p70 .circle.animate .fill.fix,
.radial-progress.site-avg.p70 .circle.animate .fill.fix {
  -webkit-transform: rotate(252deg);
  -moz-transform: rotate(252deg);
  -ms-transform: rotate(252deg);
  -o-transform: rotate(252deg);
  transform: rotate(252deg);
}
.radial-progress.p69 .circle.animate .mask.full,
.radial-progress.site-avg.p69 .circle.animate .mask.full,
.radial-progress.p69 .circle.animate .fill,
.radial-progress.site-avg.p69 .circle.animate .fill {
  -webkit-transform: rotate(124.2deg);
  -moz-transform: rotate(124.2deg);
  -ms-transform: rotate(124.2deg);
  -o-transform: rotate(124.2deg);
  transform: rotate(124.2deg);
}
.radial-progress.p69 .circle.animate .fill.fix,
.radial-progress.site-avg.p69 .circle.animate .fill.fix {
  -webkit-transform: rotate(248.4deg);
  -moz-transform: rotate(248.4deg);
  -ms-transform: rotate(248.4deg);
  -o-transform: rotate(248.4deg);
  transform: rotate(248.4deg);
}
.radial-progress.p68 .circle.animate .mask.full,
.radial-progress.site-avg.p68 .circle.animate .mask.full,
.radial-progress.p68 .circle.animate .fill,
.radial-progress.site-avg.p68 .circle.animate .fill {
  -webkit-transform: rotate(122.4deg);
  -moz-transform: rotate(122.4deg);
  -ms-transform: rotate(122.4deg);
  -o-transform: rotate(122.4deg);
  transform: rotate(122.4deg);
}
.radial-progress.p68 .circle.animate .fill.fix,
.radial-progress.site-avg.p68 .circle.animate .fill.fix {
  -webkit-transform: rotate(244.8deg);
  -moz-transform: rotate(244.8deg);
  -ms-transform: rotate(244.8deg);
  -o-transform: rotate(244.8deg);
  transform: rotate(244.8deg);
}
.radial-progress.p67 .circle.animate .mask.full,
.radial-progress.site-avg.p67 .circle.animate .mask.full,
.radial-progress.p67 .circle.animate .fill,
.radial-progress.site-avg.p67 .circle.animate .fill {
  -webkit-transform: rotate(120.6deg);
  -moz-transform: rotate(120.6deg);
  -ms-transform: rotate(120.6deg);
  -o-transform: rotate(120.6deg);
  transform: rotate(120.6deg);
}
.radial-progress.p67 .circle.animate .fill.fix,
.radial-progress.site-avg.p67 .circle.animate .fill.fix {
  -webkit-transform: rotate(241.2deg);
  -moz-transform: rotate(241.2deg);
  -ms-transform: rotate(241.2deg);
  -o-transform: rotate(241.2deg);
  transform: rotate(241.2deg);
}
.radial-progress.p66 .circle.animate .mask.full,
.radial-progress.site-avg.p66 .circle.animate .mask.full,
.radial-progress.p66 .circle.animate .fill,
.radial-progress.site-avg.p66 .circle.animate .fill {
  -webkit-transform: rotate(118.8deg);
  -moz-transform: rotate(118.8deg);
  -ms-transform: rotate(118.8deg);
  -o-transform: rotate(118.8deg);
  transform: rotate(118.8deg);
}
.radial-progress.p66 .circle.animate .fill.fix,
.radial-progress.site-avg.p66 .circle.animate .fill.fix {
  -webkit-transform: rotate(237.6deg);
  -moz-transform: rotate(237.6deg);
  -ms-transform: rotate(237.6deg);
  -o-transform: rotate(237.6deg);
  transform: rotate(237.6deg);
}
.radial-progress.p65 .circle.animate .mask.full,
.radial-progress.site-avg.p65 .circle.animate .mask.full,
.radial-progress.p65 .circle.animate .fill,
.radial-progress.site-avg.p65 .circle.animate .fill {
  -webkit-transform: rotate(117deg);
  -moz-transform: rotate(117deg);
  -ms-transform: rotate(117deg);
  -o-transform: rotate(117deg);
  transform: rotate(117deg);
}
.radial-progress.p65 .circle.animate .fill.fix,
.radial-progress.site-avg.p65 .circle.animate .fill.fix {
  -webkit-transform: rotate(234deg);
  -moz-transform: rotate(234deg);
  -ms-transform: rotate(234deg);
  -o-transform: rotate(234deg);
  transform: rotate(234deg);
}
.radial-progress.p64 .circle.animate .mask.full,
.radial-progress.site-avg.p64 .circle.animate .mask.full,
.radial-progress.p64 .circle.animate .fill,
.radial-progress.site-avg.p64 .circle.animate .fill {
  -webkit-transform: rotate(115.2deg);
  -moz-transform: rotate(115.2deg);
  -ms-transform: rotate(115.2deg);
  -o-transform: rotate(115.2deg);
  transform: rotate(115.2deg);
}
.radial-progress.p64 .circle.animate .fill.fix,
.radial-progress.site-avg.p64 .circle.animate .fill.fix {
  -webkit-transform: rotate(230.4deg);
  -moz-transform: rotate(230.4deg);
  -ms-transform: rotate(230.4deg);
  -o-transform: rotate(230.4deg);
  transform: rotate(230.4deg);
}
.radial-progress.p63 .circle.animate .mask.full,
.radial-progress.site-avg.p63 .circle.animate .mask.full,
.radial-progress.p63 .circle.animate .fill,
.radial-progress.site-avg.p63 .circle.animate .fill {
  -webkit-transform: rotate(113.4deg);
  -moz-transform: rotate(113.4deg);
  -ms-transform: rotate(113.4deg);
  -o-transform: rotate(113.4deg);
  transform: rotate(113.4deg);
}
.radial-progress.p63 .circle.animate .fill.fix,
.radial-progress.site-avg.p63 .circle.animate .fill.fix {
  -webkit-transform: rotate(226.8deg);
  -moz-transform: rotate(226.8deg);
  -ms-transform: rotate(226.8deg);
  -o-transform: rotate(226.8deg);
  transform: rotate(226.8deg);
}
.radial-progress.p62 .circle.animate .mask.full,
.radial-progress.site-avg.p62 .circle.animate .mask.full,
.radial-progress.p62 .circle.animate .fill,
.radial-progress.site-avg.p62 .circle.animate .fill {
  -webkit-transform: rotate(111.6deg);
  -moz-transform: rotate(111.6deg);
  -ms-transform: rotate(111.6deg);
  -o-transform: rotate(111.6deg);
  transform: rotate(111.6deg);
}
.radial-progress.p62 .circle.animate .fill.fix,
.radial-progress.site-avg.p62 .circle.animate .fill.fix {
  -webkit-transform: rotate(223.2deg);
  -moz-transform: rotate(223.2deg);
  -ms-transform: rotate(223.2deg);
  -o-transform: rotate(223.2deg);
  transform: rotate(223.2deg);
}
.radial-progress.p61 .circle.animate .mask.full,
.radial-progress.site-avg.p61 .circle.animate .mask.full,
.radial-progress.p61 .circle.animate .fill,
.radial-progress.site-avg.p61 .circle.animate .fill {
  -webkit-transform: rotate(109.8deg);
  -moz-transform: rotate(109.8deg);
  -ms-transform: rotate(109.8deg);
  -o-transform: rotate(109.8deg);
  transform: rotate(109.8deg);
}
.radial-progress.p61 .circle.animate .fill.fix,
.radial-progress.site-avg.p61 .circle.animate .fill.fix {
  -webkit-transform: rotate(219.6deg);
  -moz-transform: rotate(219.6deg);
  -ms-transform: rotate(219.6deg);
  -o-transform: rotate(219.6deg);
  transform: rotate(219.6deg);
}
.radial-progress.p60 .circle.animate .mask.full,
.radial-progress.site-avg.p60 .circle.animate .mask.full,
.radial-progress.p60 .circle.animate .fill,
.radial-progress.site-avg.p60 .circle.animate .fill {
  -webkit-transform: rotate(108deg);
  -moz-transform: rotate(108deg);
  -ms-transform: rotate(108deg);
  -o-transform: rotate(108deg);
  transform: rotate(108deg);
}
.radial-progress.p60 .circle.animate .fill.fix,
.radial-progress.site-avg.p60 .circle.animate .fill.fix {
  -webkit-transform: rotate(216deg);
  -moz-transform: rotate(216deg);
  -ms-transform: rotate(216deg);
  -o-transform: rotate(216deg);
  transform: rotate(216deg);
}
.radial-progress.p59 .circle.animate .mask.full,
.radial-progress.site-avg.p59 .circle.animate .mask.full,
.radial-progress.p59 .circle.animate .fill,
.radial-progress.site-avg.p59 .circle.animate .fill {
  -webkit-transform: rotate(106.2deg);
  -moz-transform: rotate(106.2deg);
  -ms-transform: rotate(106.2deg);
  -o-transform: rotate(106.2deg);
  transform: rotate(106.2deg);
}
.radial-progress.p59 .circle.animate .fill.fix,
.radial-progress.site-avg.p59 .circle.animate .fill.fix {
  -webkit-transform: rotate(212.4deg);
  -moz-transform: rotate(212.4deg);
  -ms-transform: rotate(212.4deg);
  -o-transform: rotate(212.4deg);
  transform: rotate(212.4deg);
}
.radial-progress.p58 .circle.animate .mask.full,
.radial-progress.site-avg.p58 .circle.animate .mask.full,
.radial-progress.p58 .circle.animate .fill,
.radial-progress.site-avg.p58 .circle.animate .fill {
  -webkit-transform: rotate(104.4deg);
  -moz-transform: rotate(104.4deg);
  -ms-transform: rotate(104.4deg);
  -o-transform: rotate(104.4deg);
  transform: rotate(104.4deg);
}
.radial-progress.p58 .circle.animate .fill.fix,
.radial-progress.site-avg.p58 .circle.animate .fill.fix {
  -webkit-transform: rotate(208.8deg);
  -moz-transform: rotate(208.8deg);
  -ms-transform: rotate(208.8deg);
  -o-transform: rotate(208.8deg);
  transform: rotate(208.8deg);
}
.radial-progress.p57 .circle.animate .mask.full,
.radial-progress.site-avg.p57 .circle.animate .mask.full,
.radial-progress.p57 .circle.animate .fill,
.radial-progress.site-avg.p57 .circle.animate .fill {
  -webkit-transform: rotate(102.6deg);
  -moz-transform: rotate(102.6deg);
  -ms-transform: rotate(102.6deg);
  -o-transform: rotate(102.6deg);
  transform: rotate(102.6deg);
}
.radial-progress.p57 .circle.animate .fill.fix,
.radial-progress.site-avg.p57 .circle.animate .fill.fix {
  -webkit-transform: rotate(205.2deg);
  -moz-transform: rotate(205.2deg);
  -ms-transform: rotate(205.2deg);
  -o-transform: rotate(205.2deg);
  transform: rotate(205.2deg);
}
.radial-progress.p56 .circle.animate .mask.full,
.radial-progress.site-avg.p56 .circle.animate .mask.full,
.radial-progress.p56 .circle.animate .fill,
.radial-progress.site-avg.p56 .circle.animate .fill {
  -webkit-transform: rotate(100.8deg);
  -moz-transform: rotate(100.8deg);
  -ms-transform: rotate(100.8deg);
  -o-transform: rotate(100.8deg);
  transform: rotate(100.8deg);
}
.radial-progress.p56 .circle.animate .fill.fix,
.radial-progress.site-avg.p56 .circle.animate .fill.fix {
  -webkit-transform: rotate(201.6deg);
  -moz-transform: rotate(201.6deg);
  -ms-transform: rotate(201.6deg);
  -o-transform: rotate(201.6deg);
  transform: rotate(201.6deg);
}
.radial-progress.p55 .circle.animate .mask.full,
.radial-progress.site-avg.p55 .circle.animate .mask.full,
.radial-progress.p55 .circle.animate .fill,
.radial-progress.site-avg.p55 .circle.animate .fill {
  -webkit-transform: rotate(99deg);
  -moz-transform: rotate(99deg);
  -ms-transform: rotate(99deg);
  -o-transform: rotate(99deg);
  transform: rotate(99deg);
}
.radial-progress.p55 .circle.animate .fill.fix,
.radial-progress.site-avg.p55 .circle.animate .fill.fix {
  -webkit-transform: rotate(198deg);
  -moz-transform: rotate(198deg);
  -ms-transform: rotate(198deg);
  -o-transform: rotate(198deg);
  transform: rotate(198deg);
}
.radial-progress.p54 .circle.animate .mask.full,
.radial-progress.site-avg.p54 .circle.animate .mask.full,
.radial-progress.p54 .circle.animate .fill,
.radial-progress.site-avg.p54 .circle.animate .fill {
  -webkit-transform: rotate(97.2deg);
  -moz-transform: rotate(97.2deg);
  -ms-transform: rotate(97.2deg);
  -o-transform: rotate(97.2deg);
  transform: rotate(97.2deg);
}
.radial-progress.p54 .circle.animate .fill.fix,
.radial-progress.site-avg.p54 .circle.animate .fill.fix {
  -webkit-transform: rotate(194.4deg);
  -moz-transform: rotate(194.4deg);
  -ms-transform: rotate(194.4deg);
  -o-transform: rotate(194.4deg);
  transform: rotate(194.4deg);
}
.radial-progress.p53 .circle.animate .mask.full,
.radial-progress.site-avg.p53 .circle.animate .mask.full,
.radial-progress.p53 .circle.animate .fill,
.radial-progress.site-avg.p53 .circle.animate .fill {
  -webkit-transform: rotate(95.4deg);
  -moz-transform: rotate(95.4deg);
  -ms-transform: rotate(95.4deg);
  -o-transform: rotate(95.4deg);
  transform: rotate(95.4deg);
}
.radial-progress.p53 .circle.animate .fill.fix,
.radial-progress.site-avg.p53 .circle.animate .fill.fix {
  -webkit-transform: rotate(190.8deg);
  -moz-transform: rotate(190.8deg);
  -ms-transform: rotate(190.8deg);
  -o-transform: rotate(190.8deg);
  transform: rotate(190.8deg);
}
.radial-progress.p52 .circle.animate .mask.full,
.radial-progress.site-avg.p52 .circle.animate .mask.full,
.radial-progress.p52 .circle.animate .fill,
.radial-progress.site-avg.p52 .circle.animate .fill {
  -webkit-transform: rotate(93.6deg);
  -moz-transform: rotate(93.6deg);
  -ms-transform: rotate(93.6deg);
  -o-transform: rotate(93.6deg);
  transform: rotate(93.6deg);
}
.radial-progress.p52 .circle.animate .fill.fix,
.radial-progress.site-avg.p52 .circle.animate .fill.fix {
  -webkit-transform: rotate(187.2deg);
  -moz-transform: rotate(187.2deg);
  -ms-transform: rotate(187.2deg);
  -o-transform: rotate(187.2deg);
  transform: rotate(187.2deg);
}
.radial-progress.p51 .circle.animate .mask.full,
.radial-progress.site-avg.p51 .circle.animate .mask.full,
.radial-progress.p51 .circle.animate .fill,
.radial-progress.site-avg.p51 .circle.animate .fill {
  -webkit-transform: rotate(91.8deg);
  -moz-transform: rotate(91.8deg);
  -ms-transform: rotate(91.8deg);
  -o-transform: rotate(91.8deg);
  transform: rotate(91.8deg);
}
.radial-progress.p51 .circle.animate .fill.fix,
.radial-progress.site-avg.p51 .circle.animate .fill.fix {
  -webkit-transform: rotate(183.6deg);
  -moz-transform: rotate(183.6deg);
  -ms-transform: rotate(183.6deg);
  -o-transform: rotate(183.6deg);
  transform: rotate(183.6deg);
}
.radial-progress.p50 .circle.animate .mask.full,
.radial-progress.site-avg.p50 .circle.animate .mask.full,
.radial-progress.p50 .circle.animate .fill,
.radial-progress.site-avg.p50 .circle.animate .fill {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.radial-progress.p50 .circle.animate .fill.fix,
.radial-progress.site-avg.p50 .circle.animate .fill.fix {
  -webkit-transform: rotate(180deg);
  -moz-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  -o-transform: rotate(180deg);
  transform: rotate(180deg);
}
.radial-progress.p49 .circle.animate .mask.full,
.radial-progress.site-avg.p49 .circle.animate .mask.full,
.radial-progress.p49 .circle.animate .fill,
.radial-progress.site-avg.p49 .circle.animate .fill {
  -webkit-transform: rotate(88.2deg);
  -moz-transform: rotate(88.2deg);
  -ms-transform: rotate(88.2deg);
  -o-transform: rotate(88.2deg);
  transform: rotate(88.2deg);
}
.radial-progress.p49 .circle.animate .fill.fix,
.radial-progress.site-avg.p49 .circle.animate .fill.fix {
  -webkit-transform: rotate(176.4deg);
  -moz-transform: rotate(176.4deg);
  -ms-transform: rotate(176.4deg);
  -o-transform: rotate(176.4deg);
  transform: rotate(176.4deg);
}
.radial-progress.p48 .circle.animate .mask.full,
.radial-progress.site-avg.p48 .circle.animate .mask.full,
.radial-progress.p48 .circle.animate .fill,
.radial-progress.site-avg.p48 .circle.animate .fill {
  -webkit-transform: rotate(86.4deg);
  -moz-transform: rotate(86.4deg);
  -ms-transform: rotate(86.4deg);
  -o-transform: rotate(86.4deg);
  transform: rotate(86.4deg);
}
.radial-progress.p48 .circle.animate .fill.fix,
.radial-progress.site-avg.p48 .circle.animate .fill.fix {
  -webkit-transform: rotate(172.8deg);
  -moz-transform: rotate(172.8deg);
  -ms-transform: rotate(172.8deg);
  -o-transform: rotate(172.8deg);
  transform: rotate(172.8deg);
}
.radial-progress.p47 .circle.animate .mask.full,
.radial-progress.site-avg.p47 .circle.animate .mask.full,
.radial-progress.p47 .circle.animate .fill,
.radial-progress.site-avg.p47 .circle.animate .fill {
  -webkit-transform: rotate(84.6deg);
  -moz-transform: rotate(84.6deg);
  -ms-transform: rotate(84.6deg);
  -o-transform: rotate(84.6deg);
  transform: rotate(84.6deg);
}
.radial-progress.p47 .circle.animate .fill.fix,
.radial-progress.site-avg.p47 .circle.animate .fill.fix {
  -webkit-transform: rotate(169.2deg);
  -moz-transform: rotate(169.2deg);
  -ms-transform: rotate(169.2deg);
  -o-transform: rotate(169.2deg);
  transform: rotate(169.2deg);
}
.radial-progress.p46 .circle.animate .mask.full,
.radial-progress.site-avg.p46 .circle.animate .mask.full,
.radial-progress.p46 .circle.animate .fill,
.radial-progress.site-avg.p46 .circle.animate .fill {
  -webkit-transform: rotate(82.8deg);
  -moz-transform: rotate(82.8deg);
  -ms-transform: rotate(82.8deg);
  -o-transform: rotate(82.8deg);
  transform: rotate(82.8deg);
}
.radial-progress.p46 .circle.animate .fill.fix,
.radial-progress.site-avg.p46 .circle.animate .fill.fix {
  -webkit-transform: rotate(165.6deg);
  -moz-transform: rotate(165.6deg);
  -ms-transform: rotate(165.6deg);
  -o-transform: rotate(165.6deg);
  transform: rotate(165.6deg);
}
.radial-progress.p45 .circle.animate .mask.full,
.radial-progress.site-avg.p45 .circle.animate .mask.full,
.radial-progress.p45 .circle.animate .fill,
.radial-progress.site-avg.p45 .circle.animate .fill {
  -webkit-transform: rotate(81deg);
  -moz-transform: rotate(81deg);
  -ms-transform: rotate(81deg);
  -o-transform: rotate(81deg);
  transform: rotate(81deg);
}
.radial-progress.p45 .circle.animate .fill.fix,
.radial-progress.site-avg.p45 .circle.animate .fill.fix {
  -webkit-transform: rotate(162deg);
  -moz-transform: rotate(162deg);
  -ms-transform: rotate(162deg);
  -o-transform: rotate(162deg);
  transform: rotate(162deg);
}
.radial-progress.p44 .circle.animate .mask.full,
.radial-progress.site-avg.p44 .circle.animate .mask.full,
.radial-progress.p44 .circle.animate .fill,
.radial-progress.site-avg.p44 .circle.animate .fill {
  -webkit-transform: rotate(79.2deg);
  -moz-transform: rotate(79.2deg);
  -ms-transform: rotate(79.2deg);
  -o-transform: rotate(79.2deg);
  transform: rotate(79.2deg);
}
.radial-progress.p44 .circle.animate .fill.fix,
.radial-progress.site-avg.p44 .circle.animate .fill.fix {
  -webkit-transform: rotate(158.4deg);
  -moz-transform: rotate(158.4deg);
  -ms-transform: rotate(158.4deg);
  -o-transform: rotate(158.4deg);
  transform: rotate(158.4deg);
}
.radial-progress.p43 .circle.animate .mask.full,
.radial-progress.site-avg.p43 .circle.animate .mask.full,
.radial-progress.p43 .circle.animate .fill,
.radial-progress.site-avg.p43 .circle.animate .fill {
  -webkit-transform: rotate(77.4deg);
  -moz-transform: rotate(77.4deg);
  -ms-transform: rotate(77.4deg);
  -o-transform: rotate(77.4deg);
  transform: rotate(77.4deg);
}
.radial-progress.p43 .circle.animate .fill.fix,
.radial-progress.site-avg.p43 .circle.animate .fill.fix {
  -webkit-transform: rotate(154.8deg);
  -moz-transform: rotate(154.8deg);
  -ms-transform: rotate(154.8deg);
  -o-transform: rotate(154.8deg);
  transform: rotate(154.8deg);
}
.radial-progress.p42 .circle.animate .mask.full,
.radial-progress.site-avg.p42 .circle.animate .mask.full,
.radial-progress.p42 .circle.animate .fill,
.radial-progress.site-avg.p42 .circle.animate .fill {
  -webkit-transform: rotate(75.6deg);
  -moz-transform: rotate(75.6deg);
  -ms-transform: rotate(75.6deg);
  -o-transform: rotate(75.6deg);
  transform: rotate(75.6deg);
}
.radial-progress.p42 .circle.animate .fill.fix,
.radial-progress.site-avg.p42 .circle.animate .fill.fix {
  -webkit-transform: rotate(151.2deg);
  -moz-transform: rotate(151.2deg);
  -ms-transform: rotate(151.2deg);
  -o-transform: rotate(151.2deg);
  transform: rotate(151.2deg);
}
.radial-progress.p41 .circle.animate .mask.full,
.radial-progress.site-avg.p41 .circle.animate .mask.full,
.radial-progress.p41 .circle.animate .fill,
.radial-progress.site-avg.p41 .circle.animate .fill {
  -webkit-transform: rotate(73.8deg);
  -moz-transform: rotate(73.8deg);
  -ms-transform: rotate(73.8deg);
  -o-transform: rotate(73.8deg);
  transform: rotate(73.8deg);
}
.radial-progress.p41 .circle.animate .fill.fix,
.radial-progress.site-avg.p41 .circle.animate .fill.fix {
  -webkit-transform: rotate(147.6deg);
  -moz-transform: rotate(147.6deg);
  -ms-transform: rotate(147.6deg);
  -o-transform: rotate(147.6deg);
  transform: rotate(147.6deg);
}
.radial-progress.p40 .circle.animate .mask.full,
.radial-progress.site-avg.p40 .circle.animate .mask.full,
.radial-progress.p40 .circle.animate .fill,
.radial-progress.site-avg.p40 .circle.animate .fill {
  -webkit-transform: rotate(72deg);
  -moz-transform: rotate(72deg);
  -ms-transform: rotate(72deg);
  -o-transform: rotate(72deg);
  transform: rotate(72deg);
}
.radial-progress.p40 .circle.animate .fill.fix,
.radial-progress.site-avg.p40 .circle.animate .fill.fix {
  -webkit-transform: rotate(144deg);
  -moz-transform: rotate(144deg);
  -ms-transform: rotate(144deg);
  -o-transform: rotate(144deg);
  transform: rotate(144deg);
}
.radial-progress.p39 .circle.animate .mask.full,
.radial-progress.site-avg.p39 .circle.animate .mask.full,
.radial-progress.p39 .circle.animate .fill,
.radial-progress.site-avg.p39 .circle.animate .fill {
  -webkit-transform: rotate(70.2deg);
  -moz-transform: rotate(70.2deg);
  -ms-transform: rotate(70.2deg);
  -o-transform: rotate(70.2deg);
  transform: rotate(70.2deg);
}
.radial-progress.p39 .circle.animate .fill.fix,
.radial-progress.site-avg.p39 .circle.animate .fill.fix {
  -webkit-transform: rotate(140.4deg);
  -moz-transform: rotate(140.4deg);
  -ms-transform: rotate(140.4deg);
  -o-transform: rotate(140.4deg);
  transform: rotate(140.4deg);
}
.radial-progress.p38 .circle.animate .mask.full,
.radial-progress.site-avg.p38 .circle.animate .mask.full,
.radial-progress.p38 .circle.animate .fill,
.radial-progress.site-avg.p38 .circle.animate .fill {
  -webkit-transform: rotate(68.4deg);
  -moz-transform: rotate(68.4deg);
  -ms-transform: rotate(68.4deg);
  -o-transform: rotate(68.4deg);
  transform: rotate(68.4deg);
}
.radial-progress.p38 .circle.animate .fill.fix,
.radial-progress.site-avg.p38 .circle.animate .fill.fix {
  -webkit-transform: rotate(136.8deg);
  -moz-transform: rotate(136.8deg);
  -ms-transform: rotate(136.8deg);
  -o-transform: rotate(136.8deg);
  transform: rotate(136.8deg);
}
.radial-progress.p37 .circle.animate .mask.full,
.radial-progress.site-avg.p37 .circle.animate .mask.full,
.radial-progress.p37 .circle.animate .fill,
.radial-progress.site-avg.p37 .circle.animate .fill {
  -webkit-transform: rotate(66.6deg);
  -moz-transform: rotate(66.6deg);
  -ms-transform: rotate(66.6deg);
  -o-transform: rotate(66.6deg);
  transform: rotate(66.6deg);
}
.radial-progress.p37 .circle.animate .fill.fix,
.radial-progress.site-avg.p37 .circle.animate .fill.fix {
  -webkit-transform: rotate(133.2deg);
  -moz-transform: rotate(133.2deg);
  -ms-transform: rotate(133.2deg);
  -o-transform: rotate(133.2deg);
  transform: rotate(133.2deg);
}
.radial-progress.p36 .circle.animate .mask.full,
.radial-progress.site-avg.p36 .circle.animate .mask.full,
.radial-progress.p36 .circle.animate .fill,
.radial-progress.site-avg.p36 .circle.animate .fill {
  -webkit-transform: rotate(64.8deg);
  -moz-transform: rotate(64.8deg);
  -ms-transform: rotate(64.8deg);
  -o-transform: rotate(64.8deg);
  transform: rotate(64.8deg);
}
.radial-progress.p36 .circle.animate .fill.fix,
.radial-progress.site-avg.p36 .circle.animate .fill.fix {
  -webkit-transform: rotate(129.6deg);
  -moz-transform: rotate(129.6deg);
  -ms-transform: rotate(129.6deg);
  -o-transform: rotate(129.6deg);
  transform: rotate(129.6deg);
}
.radial-progress.p35 .circle.animate .mask.full,
.radial-progress.site-avg.p35 .circle.animate .mask.full,
.radial-progress.p35 .circle.animate .fill,
.radial-progress.site-avg.p35 .circle.animate .fill {
  -webkit-transform: rotate(63deg);
  -moz-transform: rotate(63deg);
  -ms-transform: rotate(63deg);
  -o-transform: rotate(63deg);
  transform: rotate(63deg);
}
.radial-progress.p35 .circle.animate .fill.fix,
.radial-progress.site-avg.p35 .circle.animate .fill.fix {
  -webkit-transform: rotate(126deg);
  -moz-transform: rotate(126deg);
  -ms-transform: rotate(126deg);
  -o-transform: rotate(126deg);
  transform: rotate(126deg);
}
.radial-progress.p34 .circle.animate .mask.full,
.radial-progress.site-avg.p34 .circle.animate .mask.full,
.radial-progress.p34 .circle.animate .fill,
.radial-progress.site-avg.p34 .circle.animate .fill {
  -webkit-transform: rotate(61.2deg);
  -moz-transform: rotate(61.2deg);
  -ms-transform: rotate(61.2deg);
  -o-transform: rotate(61.2deg);
  transform: rotate(61.2deg);
}
.radial-progress.p34 .circle.animate .fill.fix,
.radial-progress.site-avg.p34 .circle.animate .fill.fix {
  -webkit-transform: rotate(122.4deg);
  -moz-transform: rotate(122.4deg);
  -ms-transform: rotate(122.4deg);
  -o-transform: rotate(122.4deg);
  transform: rotate(122.4deg);
}
.radial-progress.p33 .circle.animate .mask.full,
.radial-progress.site-avg.p33 .circle.animate .mask.full,
.radial-progress.p33 .circle.animate .fill,
.radial-progress.site-avg.p33 .circle.animate .fill {
  -webkit-transform: rotate(59.4deg);
  -moz-transform: rotate(59.4deg);
  -ms-transform: rotate(59.4deg);
  -o-transform: rotate(59.4deg);
  transform: rotate(59.4deg);
}
.radial-progress.p33 .circle.animate .fill.fix,
.radial-progress.site-avg.p33 .circle.animate .fill.fix {
  -webkit-transform: rotate(118.8deg);
  -moz-transform: rotate(118.8deg);
  -ms-transform: rotate(118.8deg);
  -o-transform: rotate(118.8deg);
  transform: rotate(118.8deg);
}
.radial-progress.p32 .circle.animate .mask.full,
.radial-progress.site-avg.p32 .circle.animate .mask.full,
.radial-progress.p32 .circle.animate .fill,
.radial-progress.site-avg.p32 .circle.animate .fill {
  -webkit-transform: rotate(57.6deg);
  -moz-transform: rotate(57.6deg);
  -ms-transform: rotate(57.6deg);
  -o-transform: rotate(57.6deg);
  transform: rotate(57.6deg);
}
.radial-progress.p32 .circle.animate .fill.fix,
.radial-progress.site-avg.p32 .circle.animate .fill.fix {
  -webkit-transform: rotate(115.2deg);
  -moz-transform: rotate(115.2deg);
  -ms-transform: rotate(115.2deg);
  -o-transform: rotate(115.2deg);
  transform: rotate(115.2deg);
}
.radial-progress.p31 .circle.animate .mask.full,
.radial-progress.site-avg.p31 .circle.animate .mask.full,
.radial-progress.p31 .circle.animate .fill,
.radial-progress.site-avg.p31 .circle.animate .fill {
  -webkit-transform: rotate(55.8deg);
  -moz-transform: rotate(55.8deg);
  -ms-transform: rotate(55.8deg);
  -o-transform: rotate(55.8deg);
  transform: rotate(55.8deg);
}
.radial-progress.p31 .circle.animate .fill.fix,
.radial-progress.site-avg.p31 .circle.animate .fill.fix {
  -webkit-transform: rotate(111.6deg);
  -moz-transform: rotate(111.6deg);
  -ms-transform: rotate(111.6deg);
  -o-transform: rotate(111.6deg);
  transform: rotate(111.6deg);
}
.radial-progress.p30 .circle.animate .mask.full,
.radial-progress.site-avg.p30 .circle.animate .mask.full,
.radial-progress.p30 .circle.animate .fill,
.radial-progress.site-avg.p30 .circle.animate .fill {
  -webkit-transform: rotate(54deg);
  -moz-transform: rotate(54deg);
  -ms-transform: rotate(54deg);
  -o-transform: rotate(54deg);
  transform: rotate(54deg);
}
.radial-progress.p30 .circle.animate .fill.fix,
.radial-progress.site-avg.p30 .circle.animate .fill.fix {
  -webkit-transform: rotate(108deg);
  -moz-transform: rotate(108deg);
  -ms-transform: rotate(108deg);
  -o-transform: rotate(108deg);
  transform: rotate(108deg);
}
.radial-progress.p29 .circle.animate .mask.full,
.radial-progress.site-avg.p29 .circle.animate .mask.full,
.radial-progress.p29 .circle.animate .fill,
.radial-progress.site-avg.p29 .circle.animate .fill {
  -webkit-transform: rotate(52.2deg);
  -moz-transform: rotate(52.2deg);
  -ms-transform: rotate(52.2deg);
  -o-transform: rotate(52.2deg);
  transform: rotate(52.2deg);
}
.radial-progress.p29 .circle.animate .fill.fix,
.radial-progress.site-avg.p29 .circle.animate .fill.fix {
  -webkit-transform: rotate(104.4deg);
  -moz-transform: rotate(104.4deg);
  -ms-transform: rotate(104.4deg);
  -o-transform: rotate(104.4deg);
  transform: rotate(104.4deg);
}
.radial-progress.p28 .circle.animate .mask.full,
.radial-progress.site-avg.p28 .circle.animate .mask.full,
.radial-progress.p28 .circle.animate .fill,
.radial-progress.site-avg.p28 .circle.animate .fill {
  -webkit-transform: rotate(50.4deg);
  -moz-transform: rotate(50.4deg);
  -ms-transform: rotate(50.4deg);
  -o-transform: rotate(50.4deg);
  transform: rotate(50.4deg);
}
.radial-progress.p28 .circle.animate .fill.fix,
.radial-progress.site-avg.p28 .circle.animate .fill.fix {
  -webkit-transform: rotate(100.8deg);
  -moz-transform: rotate(100.8deg);
  -ms-transform: rotate(100.8deg);
  -o-transform: rotate(100.8deg);
  transform: rotate(100.8deg);
}
.radial-progress.p27 .circle.animate .mask.full,
.radial-progress.site-avg.p27 .circle.animate .mask.full,
.radial-progress.p27 .circle.animate .fill,
.radial-progress.site-avg.p27 .circle.animate .fill {
  -webkit-transform: rotate(48.6deg);
  -moz-transform: rotate(48.6deg);
  -ms-transform: rotate(48.6deg);
  -o-transform: rotate(48.6deg);
  transform: rotate(48.6deg);
}
.radial-progress.p27 .circle.animate .fill.fix,
.radial-progress.site-avg.p27 .circle.animate .fill.fix {
  -webkit-transform: rotate(97.2deg);
  -moz-transform: rotate(97.2deg);
  -ms-transform: rotate(97.2deg);
  -o-transform: rotate(97.2deg);
  transform: rotate(97.2deg);
}
.radial-progress.p26 .circle.animate .mask.full,
.radial-progress.site-avg.p26 .circle.animate .mask.full,
.radial-progress.p26 .circle.animate .fill,
.radial-progress.site-avg.p26 .circle.animate .fill {
  -webkit-transform: rotate(46.8deg);
  -moz-transform: rotate(46.8deg);
  -ms-transform: rotate(46.8deg);
  -o-transform: rotate(46.8deg);
  transform: rotate(46.8deg);
}
.radial-progress.p26 .circle.animate .fill.fix,
.radial-progress.site-avg.p26 .circle.animate .fill.fix {
  -webkit-transform: rotate(93.6deg);
  -moz-transform: rotate(93.6deg);
  -ms-transform: rotate(93.6deg);
  -o-transform: rotate(93.6deg);
  transform: rotate(93.6deg);
}
.radial-progress.p25 .circle.animate .mask.full,
.radial-progress.site-avg.p25 .circle.animate .mask.full,
.radial-progress.p25 .circle.animate .fill,
.radial-progress.site-avg.p25 .circle.animate .fill {
  -webkit-transform: rotate(45deg);
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -o-transform: rotate(45deg);
  transform: rotate(45deg);
}
.radial-progress.p25 .circle.animate .fill.fix,
.radial-progress.site-avg.p25 .circle.animate .fill.fix {
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.radial-progress.p24 .circle.animate .mask.full,
.radial-progress.site-avg.p24 .circle.animate .mask.full,
.radial-progress.p24 .circle.animate .fill,
.radial-progress.site-avg.p24 .circle.animate .fill {
  -webkit-transform: rotate(43.2deg);
  -moz-transform: rotate(43.2deg);
  -ms-transform: rotate(43.2deg);
  -o-transform: rotate(43.2deg);
  transform: rotate(43.2deg);
}
.radial-progress.p24 .circle.animate .fill.fix,
.radial-progress.site-avg.p24 .circle.animate .fill.fix {
  -webkit-transform: rotate(86.4deg);
  -moz-transform: rotate(86.4deg);
  -ms-transform: rotate(86.4deg);
  -o-transform: rotate(86.4deg);
  transform: rotate(86.4deg);
}
.radial-progress.p23 .circle.animate .mask.full,
.radial-progress.site-avg.p23 .circle.animate .mask.full,
.radial-progress.p23 .circle.animate .fill,
.radial-progress.site-avg.p23 .circle.animate .fill {
  -webkit-transform: rotate(41.4deg);
  -moz-transform: rotate(41.4deg);
  -ms-transform: rotate(41.4deg);
  -o-transform: rotate(41.4deg);
  transform: rotate(41.4deg);
}
.radial-progress.p23 .circle.animate .fill.fix,
.radial-progress.site-avg.p23 .circle.animate .fill.fix {
  -webkit-transform: rotate(82.8deg);
  -moz-transform: rotate(82.8deg);
  -ms-transform: rotate(82.8deg);
  -o-transform: rotate(82.8deg);
  transform: rotate(82.8deg);
}
.radial-progress.p22 .circle.animate .mask.full,
.radial-progress.site-avg.p22 .circle.animate .mask.full,
.radial-progress.p22 .circle.animate .fill,
.radial-progress.site-avg.p22 .circle.animate .fill {
  -webkit-transform: rotate(39.6deg);
  -moz-transform: rotate(39.6deg);
  -ms-transform: rotate(39.6deg);
  -o-transform: rotate(39.6deg);
  transform: rotate(39.6deg);
}
.radial-progress.p22 .circle.animate .fill.fix,
.radial-progress.site-avg.p22 .circle.animate .fill.fix {
  -webkit-transform: rotate(79.2deg);
  -moz-transform: rotate(79.2deg);
  -ms-transform: rotate(79.2deg);
  -o-transform: rotate(79.2deg);
  transform: rotate(79.2deg);
}
.radial-progress.p21 .circle.animate .mask.full,
.radial-progress.site-avg.p21 .circle.animate .mask.full,
.radial-progress.p21 .circle.animate .fill,
.radial-progress.site-avg.p21 .circle.animate .fill {
  -webkit-transform: rotate(37.8deg);
  -moz-transform: rotate(37.8deg);
  -ms-transform: rotate(37.8deg);
  -o-transform: rotate(37.8deg);
  transform: rotate(37.8deg);
}
.radial-progress.p21 .circle.animate .fill.fix,
.radial-progress.site-avg.p21 .circle.animate .fill.fix {
  -webkit-transform: rotate(75.6deg);
  -moz-transform: rotate(75.6deg);
  -ms-transform: rotate(75.6deg);
  -o-transform: rotate(75.6deg);
  transform: rotate(75.6deg);
}
.radial-progress.p20 .circle.animate .mask.full,
.radial-progress.site-avg.p20 .circle.animate .mask.full,
.radial-progress.p20 .circle.animate .fill,
.radial-progress.site-avg.p20 .circle.animate .fill {
  -webkit-transform: rotate(36deg);
  -moz-transform: rotate(36deg);
  -ms-transform: rotate(36deg);
  -o-transform: rotate(36deg);
  transform: rotate(36deg);
}
.radial-progress.p20 .circle.animate .fill.fix,
.radial-progress.site-avg.p20 .circle.animate .fill.fix {
  -webkit-transform: rotate(72deg);
  -moz-transform: rotate(72deg);
  -ms-transform: rotate(72deg);
  -o-transform: rotate(72deg);
  transform: rotate(72deg);
}
.radial-progress.p19 .circle.animate .mask.full,
.radial-progress.site-avg.p19 .circle.animate .mask.full,
.radial-progress.p19 .circle.animate .fill,
.radial-progress.site-avg.p19 .circle.animate .fill {
  -webkit-transform: rotate(34.2deg);
  -moz-transform: rotate(34.2deg);
  -ms-transform: rotate(34.2deg);
  -o-transform: rotate(34.2deg);
  transform: rotate(34.2deg);
}
.radial-progress.p19 .circle.animate .fill.fix,
.radial-progress.site-avg.p19 .circle.animate .fill.fix {
  -webkit-transform: rotate(68.4deg);
  -moz-transform: rotate(68.4deg);
  -ms-transform: rotate(68.4deg);
  -o-transform: rotate(68.4deg);
  transform: rotate(68.4deg);
}
.radial-progress.p18 .circle.animate .mask.full,
.radial-progress.site-avg.p18 .circle.animate .mask.full,
.radial-progress.p18 .circle.animate .fill,
.radial-progress.site-avg.p18 .circle.animate .fill {
  -webkit-transform: rotate(32.4deg);
  -moz-transform: rotate(32.4deg);
  -ms-transform: rotate(32.4deg);
  -o-transform: rotate(32.4deg);
  transform: rotate(32.4deg);
}
.radial-progress.p18 .circle.animate .fill.fix,
.radial-progress.site-avg.p18 .circle.animate .fill.fix {
  -webkit-transform: rotate(64.8deg);
  -moz-transform: rotate(64.8deg);
  -ms-transform: rotate(64.8deg);
  -o-transform: rotate(64.8deg);
  transform: rotate(64.8deg);
}
.radial-progress.p17 .circle.animate .mask.full,
.radial-progress.site-avg.p17 .circle.animate .mask.full,
.radial-progress.p17 .circle.animate .fill,
.radial-progress.site-avg.p17 .circle.animate .fill {
  -webkit-transform: rotate(30.6deg);
  -moz-transform: rotate(30.6deg);
  -ms-transform: rotate(30.6deg);
  -o-transform: rotate(30.6deg);
  transform: rotate(30.6deg);
}
.radial-progress.p17 .circle.animate .fill.fix,
.radial-progress.site-avg.p17 .circle.animate .fill.fix {
  -webkit-transform: rotate(61.2deg);
  -moz-transform: rotate(61.2deg);
  -ms-transform: rotate(61.2deg);
  -o-transform: rotate(61.2deg);
  transform: rotate(61.2deg);
}
.radial-progress.p16 .circle.animate .mask.full,
.radial-progress.site-avg.p16 .circle.animate .mask.full,
.radial-progress.p16 .circle.animate .fill,
.radial-progress.site-avg.p16 .circle.animate .fill {
  -webkit-transform: rotate(28.8deg);
  -moz-transform: rotate(28.8deg);
  -ms-transform: rotate(28.8deg);
  -o-transform: rotate(28.8deg);
  transform: rotate(28.8deg);
}
.radial-progress.p16 .circle.animate .fill.fix,
.radial-progress.site-avg.p16 .circle.animate .fill.fix {
  -webkit-transform: rotate(57.6deg);
  -moz-transform: rotate(57.6deg);
  -ms-transform: rotate(57.6deg);
  -o-transform: rotate(57.6deg);
  transform: rotate(57.6deg);
}
.radial-progress.p15 .circle.animate .mask.full,
.radial-progress.site-avg.p15 .circle.animate .mask.full,
.radial-progress.p15 .circle.animate .fill,
.radial-progress.site-avg.p15 .circle.animate .fill {
  -webkit-transform: rotate(27deg);
  -moz-transform: rotate(27deg);
  -ms-transform: rotate(27deg);
  -o-transform: rotate(27deg);
  transform: rotate(27deg);
}
.radial-progress.p15 .circle.animate .fill.fix,
.radial-progress.site-avg.p15 .circle.animate .fill.fix {
  -webkit-transform: rotate(54deg);
  -moz-transform: rotate(54deg);
  -ms-transform: rotate(54deg);
  -o-transform: rotate(54deg);
  transform: rotate(54deg);
}
.radial-progress.p14 .circle.animate .mask.full,
.radial-progress.site-avg.p14 .circle.animate .mask.full,
.radial-progress.p14 .circle.animate .fill,
.radial-progress.site-avg.p14 .circle.animate .fill {
  -webkit-transform: rotate(25.2deg);
  -moz-transform: rotate(25.2deg);
  -ms-transform: rotate(25.2deg);
  -o-transform: rotate(25.2deg);
  transform: rotate(25.2deg);
}
.radial-progress.p14 .circle.animate .fill.fix,
.radial-progress.site-avg.p14 .circle.animate .fill.fix {
  -webkit-transform: rotate(50.4deg);
  -moz-transform: rotate(50.4deg);
  -ms-transform: rotate(50.4deg);
  -o-transform: rotate(50.4deg);
  transform: rotate(50.4deg);
}
.radial-progress.p13 .circle.animate .mask.full,
.radial-progress.site-avg.p13 .circle.animate .mask.full,
.radial-progress.p13 .circle.animate .fill,
.radial-progress.site-avg.p13 .circle.animate .fill {
  -webkit-transform: rotate(23.4deg);
  -moz-transform: rotate(23.4deg);
  -ms-transform: rotate(23.4deg);
  -o-transform: rotate(23.4deg);
  transform: rotate(23.4deg);
}
.radial-progress.p13 .circle.animate .fill.fix,
.radial-progress.site-avg.p13 .circle.animate .fill.fix {
  -webkit-transform: rotate(46.8deg);
  -moz-transform: rotate(46.8deg);
  -ms-transform: rotate(46.8deg);
  -o-transform: rotate(46.8deg);
  transform: rotate(46.8deg);
}
.radial-progress.p12 .circle.animate .mask.full,
.radial-progress.site-avg.p12 .circle.animate .mask.full,
.radial-progress.p12 .circle.animate .fill,
.radial-progress.site-avg.p12 .circle.animate .fill {
  -webkit-transform: rotate(21.6deg);
  -moz-transform: rotate(21.6deg);
  -ms-transform: rotate(21.6deg);
  -o-transform: rotate(21.6deg);
  transform: rotate(21.6deg);
}
.radial-progress.p12 .circle.animate .fill.fix,
.radial-progress.site-avg.p12 .circle.animate .fill.fix {
  -webkit-transform: rotate(43.2deg);
  -moz-transform: rotate(43.2deg);
  -ms-transform: rotate(43.2deg);
  -o-transform: rotate(43.2deg);
  transform: rotate(43.2deg);
}
.radial-progress.p11 .circle.animate .mask.full,
.radial-progress.site-avg.p11 .circle.animate .mask.full,
.radial-progress.p11 .circle.animate .fill,
.radial-progress.site-avg.p11 .circle.animate .fill {
  -webkit-transform: rotate(19.8deg);
  -moz-transform: rotate(19.8deg);
  -ms-transform: rotate(19.8deg);
  -o-transform: rotate(19.8deg);
  transform: rotate(19.8deg);
}
.radial-progress.p11 .circle.animate .fill.fix,
.radial-progress.site-avg.p11 .circle.animate .fill.fix {
  -webkit-transform: rotate(39.6deg);
  -moz-transform: rotate(39.6deg);
  -ms-transform: rotate(39.6deg);
  -o-transform: rotate(39.6deg);
  transform: rotate(39.6deg);
}
.radial-progress.p10 .circle.animate .mask.full,
.radial-progress.site-avg.p10 .circle.animate .mask.full,
.radial-progress.p10 .circle.animate .fill,
.radial-progress.site-avg.p10 .circle.animate .fill {
  -webkit-transform: rotate(18deg);
  -moz-transform: rotate(18deg);
  -ms-transform: rotate(18deg);
  -o-transform: rotate(18deg);
  transform: rotate(18deg);
}
.radial-progress.p10 .circle.animate .fill.fix,
.radial-progress.site-avg.p10 .circle.animate .fill.fix {
  -webkit-transform: rotate(36deg);
  -moz-transform: rotate(36deg);
  -ms-transform: rotate(36deg);
  -o-transform: rotate(36deg);
  transform: rotate(36deg);
}
.radial-progress.p9 .circle.animate .mask.full,
.radial-progress.site-avg.p9 .circle.animate .mask.full,
.radial-progress.p9 .circle.animate .fill,
.radial-progress.site-avg.p9 .circle.animate .fill {
  -webkit-transform: rotate(16.2deg);
  -moz-transform: rotate(16.2deg);
  -ms-transform: rotate(16.2deg);
  -o-transform: rotate(16.2deg);
  transform: rotate(16.2deg);
}
.radial-progress.p9 .circle.animate .fill.fix,
.radial-progress.site-avg.p9 .circle.animate .fill.fix {
  -webkit-transform: rotate(32.4deg);
  -moz-transform: rotate(32.4deg);
  -ms-transform: rotate(32.4deg);
  -o-transform: rotate(32.4deg);
  transform: rotate(32.4deg);
}
.radial-progress.p8 .circle.animate .mask.full,
.radial-progress.site-avg.p8 .circle.animate .mask.full,
.radial-progress.p8 .circle.animate .fill,
.radial-progress.site-avg.p8 .circle.animate .fill {
  -webkit-transform: rotate(14.4deg);
  -moz-transform: rotate(14.4deg);
  -ms-transform: rotate(14.4deg);
  -o-transform: rotate(14.4deg);
  transform: rotate(14.4deg);
}
.radial-progress.p8 .circle.animate .fill.fix,
.radial-progress.site-avg.p8 .circle.animate .fill.fix {
  -webkit-transform: rotate(28.8deg);
  -moz-transform: rotate(28.8deg);
  -ms-transform: rotate(28.8deg);
  -o-transform: rotate(28.8deg);
  transform: rotate(28.8deg);
}
.radial-progress.p7 .circle.animate .mask.full,
.radial-progress.site-avg.p7 .circle.animate .mask.full,
.radial-progress.p7 .circle.animate .fill,
.radial-progress.site-avg.p7 .circle.animate .fill {
  -webkit-transform: rotate(12.6deg);
  -moz-transform: rotate(12.6deg);
  -ms-transform: rotate(12.6deg);
  -o-transform: rotate(12.6deg);
  transform: rotate(12.6deg);
}
.radial-progress.p7 .circle.animate .fill.fix,
.radial-progress.site-avg.p7 .circle.animate .fill.fix {
  -webkit-transform: rotate(25.2deg);
  -moz-transform: rotate(25.2deg);
  -ms-transform: rotate(25.2deg);
  -o-transform: rotate(25.2deg);
  transform: rotate(25.2deg);
}
.radial-progress.p6 .circle.animate .mask.full,
.radial-progress.site-avg.p6 .circle.animate .mask.full,
.radial-progress.p6 .circle.animate .fill,
.radial-progress.site-avg.p6 .circle.animate .fill {
  -webkit-transform: rotate(10.8deg);
  -moz-transform: rotate(10.8deg);
  -ms-transform: rotate(10.8deg);
  -o-transform: rotate(10.8deg);
  transform: rotate(10.8deg);
}
.radial-progress.p6 .circle.animate .fill.fix,
.radial-progress.site-avg.p6 .circle.animate .fill.fix {
  -webkit-transform: rotate(21.6deg);
  -moz-transform: rotate(21.6deg);
  -ms-transform: rotate(21.6deg);
  -o-transform: rotate(21.6deg);
  transform: rotate(21.6deg);
}
.radial-progress.p5 .circle.animate .mask.full,
.radial-progress.site-avg.p5 .circle.animate .mask.full,
.radial-progress.p5 .circle.animate .fill,
.radial-progress.site-avg.p5 .circle.animate .fill {
  -webkit-transform: rotate(9deg);
  -moz-transform: rotate(9deg);
  -ms-transform: rotate(9deg);
  -o-transform: rotate(9deg);
  transform: rotate(9deg);
}
.radial-progress.p5 .circle.animate .fill.fix,
.radial-progress.site-avg.p5 .circle.animate .fill.fix {
  -webkit-transform: rotate(18deg);
  -moz-transform: rotate(18deg);
  -ms-transform: rotate(18deg);
  -o-transform: rotate(18deg);
  transform: rotate(18deg);
}
.radial-progress.p4 .circle.animate .mask.full,
.radial-progress.site-avg.p4 .circle.animate .mask.full,
.radial-progress.p4 .circle.animate .fill,
.radial-progress.site-avg.p4 .circle.animate .fill {
  -webkit-transform: rotate(7.2deg);
  -moz-transform: rotate(7.2deg);
  -ms-transform: rotate(7.2deg);
  -o-transform: rotate(7.2deg);
  transform: rotate(7.2deg);
}
.radial-progress.p4 .circle.animate .fill.fix,
.radial-progress.site-avg.p4 .circle.animate .fill.fix {
  -webkit-transform: rotate(14.4deg);
  -moz-transform: rotate(14.4deg);
  -ms-transform: rotate(14.4deg);
  -o-transform: rotate(14.4deg);
  transform: rotate(14.4deg);
}
.radial-progress.p3 .circle.animate .mask.full,
.radial-progress.site-avg.p3 .circle.animate .mask.full,
.radial-progress.p3 .circle.animate .fill,
.radial-progress.site-avg.p3 .circle.animate .fill {
  -webkit-transform: rotate(5.4deg);
  -moz-transform: rotate(5.4deg);
  -ms-transform: rotate(5.4deg);
  -o-transform: rotate(5.4deg);
  transform: rotate(5.4deg);
}
.radial-progress.p3 .circle.animate .fill.fix,
.radial-progress.site-avg.p3 .circle.animate .fill.fix {
  -webkit-transform: rotate(10.8deg);
  -moz-transform: rotate(10.8deg);
  -ms-transform: rotate(10.8deg);
  -o-transform: rotate(10.8deg);
  transform: rotate(10.8deg);
}
.radial-progress.p2 .circle.animate .mask.full,
.radial-progress.site-avg.p2 .circle.animate .mask.full,
.radial-progress.p2 .circle.animate .fill,
.radial-progress.site-avg.p2 .circle.animate .fill {
  -webkit-transform: rotate(3.6deg);
  -moz-transform: rotate(3.6deg);
  -ms-transform: rotate(3.6deg);
  -o-transform: rotate(3.6deg);
  transform: rotate(3.6deg);
}
.radial-progress.p2 .circle.animate .fill.fix,
.radial-progress.site-avg.p2 .circle.animate .fill.fix {
  -webkit-transform: rotate(7.2deg);
  -moz-transform: rotate(7.2deg);
  -ms-transform: rotate(7.2deg);
  -o-transform: rotate(7.2deg);
  transform: rotate(7.2deg);
}
.radial-progress.p1 .circle.animate .mask.full,
.radial-progress.site-avg.p1 .circle.animate .mask.full,
.radial-progress.p1 .circle.animate .fill,
.radial-progress.site-avg.p1 .circle.animate .fill {
  -webkit-transform: rotate(1.8deg);
  -moz-transform: rotate(1.8deg);
  -ms-transform: rotate(1.8deg);
  -o-transform: rotate(1.8deg);
  transform: rotate(1.8deg);
}
.radial-progress.p1 .circle.animate .fill.fix,
.radial-progress.site-avg.p1 .circle.animate .fill.fix {
  -webkit-transform: rotate(3.6deg);
  -moz-transform: rotate(3.6deg);
  -ms-transform: rotate(3.6deg);
  -o-transform: rotate(3.6deg);
  transform: rotate(3.6deg);
}
.radial-progress.p0 .circle.animate .mask.full,
.radial-progress.site-avg.p0 .circle.animate .mask.full,
.radial-progress.p0 .circle.animate .fill,
.radial-progress.site-avg.p0 .circle.animate .fill {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
}
.radial-progress.p0 .circle.animate .fill.fix,
.radial-progress.site-avg.p0 .circle.animate .fill.fix {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
}
.radial-progress.seo-pass .circle .mask .fill {
  background-color: #65B561;
}
.radial-progress.seo-average .circle .mask .fill {
  background-color: #FFCC00;
}
.radial-progress.seo-fail .circle .mask .fill {
  background-color: #CC0000;
}
.radial-progress.site-avg {
  position: absolute;
  z-index: 1;
  top: 10px;
  left: 10px;
  margin: 0;
  width: 80px;
  height: 80px;
  background-color: #EEE;
}
.radial-progress.site-avg .circle .mask,
.radial-progress.site-avg .circle .fill,
.radial-progress.site-avg .circle .shadow {
  width: 80px;
  height: 80px;
  position: absolute;
  border-radius: 50%;
}
.radial-progress.site-avg .circle .mask,
.radial-progress.site-avg .circle .fill {
  -webkit-backface-visibility: hidden;
  transition: -webkit-transform 1s;
  transition: -ms-transform 1s;
  -webkit-transition: -webkit-transform 1s;
  transition: transform 1s;
  transition: transform 1s, -webkit-transform 1s;
  border-radius: 50%;
}
.radial-progress.site-avg .circle .mask {
  clip: rect(0px, 80px, 80px, 40px);
}
.radial-progress.site-avg .circle .mask .fill {
  clip: rect(0px, 40px, 80px, 0px);
  background-color: #2a617c;
}
.radial-progress.site-avg.seo-pass .circle .mask .fill {
  background-color: #65B561;
}
.radial-progress.site-avg.seo-average .circle .mask .fill {
  background-color: #e0b400;
}
.radial-progress.site-avg.seo-fail .circle .mask .fill {
  background-color: #990000;
}
.percent-progress {
  position: relative;
  display: block;
  width: 100%;
  height: 10px;
  overflow: hidden;
  margin-bottom: 20px;
  background: #EEE;
}
.percent-progress:before {
  position: absolute;
  content: '';
  height: 10px;
  -webkit-animation: progress-bar 0.8s;
  -ms-animation: progress-bar 0.8s;
  animation: progress-bar 0.8s;
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-play-state: var(--animation-play-state, running);
          animation-play-state: var(--animation-play-state, running);
}
.percent-progress.seo-pass:before {
  background-color: #65B561;
}
.percent-progress.seo-average:before {
  background-color: #e0b400;
}
.percent-progress.seo-fail:before {
  background-color: #990000;
}
.percent-progress.p100:before {
  width: calc(1% * 100);
}
.percent-progress.p99:before {
  width: calc(1% * 99);
}
.percent-progress.p98:before {
  width: calc(1% * 98);
}
.percent-progress.p97:before {
  width: calc(1% * 97);
}
.percent-progress.p96:before {
  width: calc(1% * 96);
}
.percent-progress.p95:before {
  width: calc(1% * 95);
}
.percent-progress.p94:before {
  width: calc(1% * 94);
}
.percent-progress.p93:before {
  width: calc(1% * 93);
}
.percent-progress.p92:before {
  width: calc(1% * 92);
}
.percent-progress.p91:before {
  width: calc(1% * 91);
}
.percent-progress.p90:before {
  width: calc(1% * 90);
}
.percent-progress.p89:before {
  width: calc(1% * 89);
}
.percent-progress.p88:before {
  width: calc(1% * 88);
}
.percent-progress.p87:before {
  width: calc(1% * 87);
}
.percent-progress.p86:before {
  width: calc(1% * 86);
}
.percent-progress.p85:before {
  width: calc(1% * 85);
}
.percent-progress.p84:before {
  width: calc(1% * 84);
}
.percent-progress.p83:before {
  width: calc(1% * 83);
}
.percent-progress.p82:before {
  width: calc(1% * 82);
}
.percent-progress.p81:before {
  width: calc(1% * 81);
}
.percent-progress.p80:before {
  width: calc(1% * 80);
}
.percent-progress.p79:before {
  width: calc(1% * 79);
}
.percent-progress.p78:before {
  width: calc(1% * 78);
}
.percent-progress.p77:before {
  width: calc(1% * 77);
}
.percent-progress.p76:before {
  width: calc(1% * 76);
}
.percent-progress.p75:before {
  width: calc(1% * 75);
}
.percent-progress.p74:before {
  width: calc(1% * 74);
}
.percent-progress.p73:before {
  width: calc(1% * 73);
}
.percent-progress.p72:before {
  width: calc(1% * 72);
}
.percent-progress.p71:before {
  width: calc(1% * 71);
}
.percent-progress.p70:before {
  width: calc(1% * 70);
}
.percent-progress.p69:before {
  width: calc(1% * 69);
}
.percent-progress.p68:before {
  width: calc(1% * 68);
}
.percent-progress.p67:before {
  width: calc(1% * 67);
}
.percent-progress.p66:before {
  width: calc(1% * 66);
}
.percent-progress.p65:before {
  width: calc(1% * 65);
}
.percent-progress.p64:before {
  width: calc(1% * 64);
}
.percent-progress.p63:before {
  width: calc(1% * 63);
}
.percent-progress.p62:before {
  width: calc(1% * 62);
}
.percent-progress.p61:before {
  width: calc(1% * 61);
}
.percent-progress.p60:before {
  width: calc(1% * 60);
}
.percent-progress.p59:before {
  width: calc(1% * 59);
}
.percent-progress.p58:before {
  width: calc(1% * 58);
}
.percent-progress.p57:before {
  width: calc(1% * 57);
}
.percent-progress.p56:before {
  width: calc(1% * 56);
}
.percent-progress.p55:before {
  width: calc(1% * 55);
}
.percent-progress.p54:before {
  width: calc(1% * 54);
}
.percent-progress.p53:before {
  width: calc(1% * 53);
}
.percent-progress.p52:before {
  width: calc(1% * 52);
}
.percent-progress.p51:before {
  width: calc(1% * 51);
}
.percent-progress.p50:before {
  width: calc(1% * 50);
}
.percent-progress.p49:before {
  width: calc(1% * 49);
}
.percent-progress.p48:before {
  width: calc(1% * 48);
}
.percent-progress.p47:before {
  width: calc(1% * 47);
}
.percent-progress.p46:before {
  width: calc(1% * 46);
}
.percent-progress.p45:before {
  width: calc(1% * 45);
}
.percent-progress.p44:before {
  width: calc(1% * 44);
}
.percent-progress.p43:before {
  width: calc(1% * 43);
}
.percent-progress.p42:before {
  width: calc(1% * 42);
}
.percent-progress.p41:before {
  width: calc(1% * 41);
}
.percent-progress.p40:before {
  width: calc(1% * 40);
}
.percent-progress.p39:before {
  width: calc(1% * 39);
}
.percent-progress.p38:before {
  width: calc(1% * 38);
}
.percent-progress.p37:before {
  width: calc(1% * 37);
}
.percent-progress.p36:before {
  width: calc(1% * 36);
}
.percent-progress.p35:before {
  width: calc(1% * 35);
}
.percent-progress.p34:before {
  width: calc(1% * 34);
}
.percent-progress.p33:before {
  width: calc(1% * 33);
}
.percent-progress.p32:before {
  width: calc(1% * 32);
}
.percent-progress.p31:before {
  width: calc(1% * 31);
}
.percent-progress.p30:before {
  width: calc(1% * 30);
}
.percent-progress.p29:before {
  width: calc(1% * 29);
}
.percent-progress.p28:before {
  width: calc(1% * 28);
}
.percent-progress.p27:before {
  width: calc(1% * 27);
}
.percent-progress.p26:before {
  width: calc(1% * 26);
}
.percent-progress.p25:before {
  width: calc(1% * 25);
}
.percent-progress.p24:before {
  width: calc(1% * 24);
}
.percent-progress.p23:before {
  width: calc(1% * 23);
}
.percent-progress.p22:before {
  width: calc(1% * 22);
}
.percent-progress.p21:before {
  width: calc(1% * 21);
}
.percent-progress.p20:before {
  width: calc(1% * 20);
}
.percent-progress.p19:before {
  width: calc(1% * 19);
}
.percent-progress.p18:before {
  width: calc(1% * 18);
}
.percent-progress.p17:before {
  width: calc(1% * 17);
}
.percent-progress.p16:before {
  width: calc(1% * 16);
}
.percent-progress.p15:before {
  width: calc(1% * 15);
}
.percent-progress.p14:before {
  width: calc(1% * 14);
}
.percent-progress.p13:before {
  width: calc(1% * 13);
}
.percent-progress.p12:before {
  width: calc(1% * 12);
}
.percent-progress.p11:before {
  width: calc(1% * 11);
}
.percent-progress.p10:before {
  width: calc(1% * 10);
}
.percent-progress.p9:before {
  width: calc(1% * 9);
}
.percent-progress.p8:before {
  width: calc(1% * 8);
}
.percent-progress.p7:before {
  width: calc(1% * 7);
}
.percent-progress.p6:before {
  width: calc(1% * 6);
}
.percent-progress.p5:before {
  width: calc(1% * 5);
}
.percent-progress.p4:before {
  width: calc(1% * 4);
}
.percent-progress.p3:before {
  width: calc(1% * 3);
}
.percent-progress.p2:before {
  width: calc(1% * 2);
}
.percent-progress.p1:before {
  width: calc(1% * 1);
}
.percent-progress.p0:before {
  width: calc(1% * 0);
}
/*------ animations ------*/
@-webkit-keyframes progress-bar {
  0% {
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}
@-moz-keyframes progress-bar {
  0% {
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}
@-o-keyframes progress-bar {
  0% {
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}
@keyframes progress-bar {
  0% {
    -webkit-transform: translateX(-100%);
    -moz-transform: translateX(-100%);
    -ms-transform: translateX(-100%);
    -o-transform: translateX(-100%);
    transform: translateX(-100%);
  }
  100% {
    -webkit-transform: translateX(0);
    -moz-transform: translateX(0);
    -ms-transform: translateX(0);
    -o-transform: translateX(0);
    transform: translateX(0);
  }
}
@-webkit-keyframes come-in-top {
  0% {
    opacity: 0;
    top: 10px;
  }
  100% {
    opacity: 0.9;
    top: 0;
  }
}
@-moz-keyframes come-in-top {
  0% {
    opacity: 0;
    top: 10px;
  }
  100% {
    opacity: 0.9;
    top: 0;
  }
}
@-o-keyframes come-in-top {
  0% {
    opacity: 0;
    top: 10px;
  }
  100% {
    opacity: 0.9;
    top: 0;
  }
}
@keyframes come-in-top {
  0% {
    opacity: 0;
    top: 10px;
  }
  100% {
    opacity: 0.9;
    top: 0;
  }
}
.come-in-top {
  -webkit-animation: come-in-top 0.8s ease;
  -ms-animation: come-in-top 0.8s ease;
  animation: come-in-top 0.8s ease;
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-play-state: var(--animation-play-state, running);
          animation-play-state: var(--animation-play-state, running);
}
@-webkit-keyframes bounce-out-top {
  0% {
    opacity: 0.9;
    top: 0;
  }
  40% {
    opacity: 0.5;
    top: 20px;
  }
  100% {
    opacity: 0;
    top: -50px;
  }
}
@-moz-keyframes bounce-out-top {
  0% {
    opacity: 0.9;
    top: 0;
  }
  40% {
    opacity: 0.5;
    top: 20px;
  }
  100% {
    opacity: 0;
    top: -50px;
  }
}
@-o-keyframes bounce-out-top {
  0% {
    opacity: 0.9;
    top: 0;
  }
  40% {
    opacity: 0.5;
    top: 20px;
  }
  100% {
    opacity: 0;
    top: -50px;
  }
}
@keyframes bounce-out-top {
  0% {
    opacity: 0.9;
    top: 0;
  }
  40% {
    opacity: 0.5;
    top: 20px;
  }
  100% {
    opacity: 0;
    top: -50px;
  }
}
.bounce-out-top {
  -webkit-animation: bounce-out-top 0.8s ease;
  -ms-animation: bounce-out-top 0.8s ease;
  animation: bounce-out-top 0.8s ease;
  -webkit-animation-fill-mode: both;
  -ms-animation-fill-mode: both;
  animation-fill-mode: both;
  -webkit-animation-play-state: var(--animation-play-state, running);
          animation-play-state: var(--animation-play-state, running);
}
/*------ portal specific styles ------*/
.checkbox-list label,
.addon-list label {
  height: auto;
}
.checkbox-list.overflow,
.addon-list.overflow {
  padding: 15px;
  width: 360px;
  height: 300px;
  overflow-y: auto;
  border: 1px solid #CCC;
}
.checkbox-list {
  display: inline-block;
  vertical-align: top;
  padding-right: 20px;
  width: auto;
}
.checkbox-listtable {
  display: table;
}
.addon-list {
  margin: 6px 0 12px;
  padding: 8px;
  border: 1px solid #CCC;
}
.vehicle-image-wrap img {
  max-width: 480px;
}
tr.highlight-col th,
tr.highlight-col td {
  border-top: 2px solid #e46143;
}
tr.highlight-col th:first-child,
tr.highlight-col td:first-child {
  position: relative;
  color: #FFF;
  background: #e46143;
}
tr.highlight-col th:first-child:after,
tr.highlight-col td:first-child:after {
  content: '';
  position: absolute;
  z-index: 1;
  bottom: -8px;
  left: calc(50% - 8px);
  width: 0;
  height: 0;
  border-left: 8px solid transparent;
  border-right: 8px solid transparent;
  border-top: 8px solid #e46143;
}
#customize-taxes .input[readonly] {
  background-color: #EEE;
  color: #999999;
}
#services-collapse.fa-chevron-down::after {
  content: "Click here to expand Services and edit the contract further.";
  text-transform: none;
  float: left;
  padding-right: 20px;
  color: #ea7957;
  font: 400 14px / 18px 'Open Sans', Arial, Helvetica, sans-serif;
}
.panel-box {
  display: none;
}
.panel-box .panel-box-form {
  padding: 20px;
}
.panel-box .panel-box-header {
  position: relative;
  padding: 15px 50px 15px 20px;
  line-height: 30px;
  background: #141111;
  color: #FFF;
  font-size: 16px;
  font-weight: 800;
  text-transform: uppercase;
  text-align: center;
}
table.table-color th {
  background-color: #e46143 !important;
}
.pdfTopPadding .lg-video-cont {
  padding-top: 35px;
}
.preference-box .preference-box-item {
  margin-bottom: 15px;
}
.preference-box .preference-box-item textarea {
  margin-top: 5px;
  margin-bottom: 0;
}
.service-box.disabled .inner-boxes {
  pointer-events: none;
}
.faux-th {
  background: #bec8cd;
  font-family: 'Exo', sans-serif;
  padding: 5px 20px;
  text-align: left;
  min-height: 60px;
  text-transform: uppercase;
  font-weight: 800;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
.faux-tr.sub-group {
  padding-left: 55px;
}
.faux-tr {
  padding: 15px 20px;
  text-align: left;
  min-height: 60px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: start;
      -ms-flex-pack: start;
          justify-content: flex-start;
  gap: 25px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
}
.faux-tr:nth-child(even) .onoffswitch {
  background-color: #EEE;
}
.faux-tr:nth-child(odd) {
  background: #EEE;
}
.innergroup .faux-tr:nth-child(odd) {
  background: unset;
}
.innergroup .faux-tr:nth-child(even) .onoffswitch {
  background-color: #FFF;
}
.label-switch {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  gap: 10px;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  min-width: 350px;
}
.faux-tr.sub-group::before {
  content: "↵";
  font-size: 30px;
  -moz-transform: scale(-1, 1);
  -webkit-transform: scale(-1, 1);
  -o-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
  position: absolute;
  left: 50px;
}
.innergroup {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding-left: 100px;
  background: #dedede !important;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.innergroup::before {
  content: "↵";
  font-size: 30px;
  -moz-transform: scale(-1, 1);
  -webkit-transform: scale(-1, 1);
  -o-transform: scale(-1, 1);
  -ms-transform: scale(-1, 1);
  transform: scale(-1, 1);
  position: absolute;
  left: 100px;
}
.faux-tr.innergroup .faux-tr {
  padding: 0;
  min-height: auto;
}
.faux-readonly {
  pointer-events: none;
  background-color: #eee;
}
.copyable {
  cursor: copy;
}
.copiedText {
  position: relative;
  height: 0px;
  -webkit-animation: fadeInCopy 1s ease;
          animation: fadeInCopy 1s ease;
  opacity: 0;
  display: inline-block;
}
.copiedText span {
  background-color: #000000c2;
  color: #fff;
  font-weight: 500;
  padding: 5px 15px;
  border-radius: 5px;
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  text-transform: capitalize;
}
@-webkit-keyframes fadeInCopy {
  0%,
  100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
@keyframes fadeInCopy {
  0%,
  100% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
}
.hide_admin tr.prod_dis.prod_dis2 {
  display: none;
}
.hide_admin:not(:has(.prod_purchased)) {
  display: none;
}
.product_box:first-of-type .moveup {
  display: none;
}
.product_box:last-of-type .movedown {
  display: none;
}
