@charset "utf-8";
/* 
	base.css
	Project: PACMS v3.0
*/
/*------ define vars ------*/
/*------ imports ------*/
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 300;
  font-stretch: normal;
  src: url(http://fonts.gstatic.com/s/opensans/v27/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsiH0B4gaVc.ttf) format('truetype');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 400;
  font-stretch: normal;
  src: url(http://fonts.gstatic.com/s/opensans/v27/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsjZ0B4gaVc.ttf) format('truetype');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 600;
  font-stretch: normal;
  src: url(http://fonts.gstatic.com/s/opensans/v27/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsgH1x4gaVc.ttf) format('truetype');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 700;
  font-stretch: normal;
  src: url(http://fonts.gstatic.com/s/opensans/v27/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgsg-1x4gaVc.ttf) format('truetype');
}
@font-face {
  font-family: 'Open Sans';
  font-style: normal;
  font-weight: 800;
  font-stretch: normal;
  src: url(http://fonts.gstatic.com/s/opensans/v27/memSYaGs126MiZpBA-UvWbX2vVnXBbObj2OVZyOOSr4dVJWUgshZ1x4gaVc.ttf) format('truetype');
}
/* 
	typography.less
	
	Project: PACMS v3.0
	
*/
/*------ define vars ------*/
/*------ typography ------*/
body,
tr,
td {
  font: 400 14px/18px 'Open Sans', Arial, Helvetica, sans-serif;
  color: #333333;
  letter-spacing: 0;
}
a {
  text-decoration: none;
  cursor: pointer;
  outline: none;
  transition: all 0.3s ease 0s;
}
a,
a:link,
a:visited {
  color: #65b561;
}
a:hover,
a:active {
  color: #31693d;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  padding: 0;
  margin: 0;
  font-weight: normal;
}
h1 {
  font-size: 24px;
  line-height: 24px;
}
h2 {
  font-size: 18px;
  margin-bottom: 20px;
  font-weight: 600;
}
h3 {
  font-size: 16px;
  margin-bottom: 15px;
}
h4 {
  font-size: 14px;
  margin-bottom: 10px;
}
h5 {
  font-size: 13px;
  margin-bottom: 5px;
}
h6 {
  font-size: 12px;
  margin-bottom: 0px;
}
small {
  font-size: 80%;
  color: #999999;
}
.color-theme1 {
  color: #65b561;
}
.color-theme2 {
  color: #31693d;
}
.color-grey {
  color: #999999;
}
.fas {
  font-weight: 900 !important;
}
.far {
  font-weight: 400 !important;
}
.fab {
  font-weight: 400 !important;
}
/* 
	mixins.less
	Project: PACMS v3.0
*/
/*------ mixins ------*/
.f_right {
  float: right;
  display: block;
}
.f_left {
  float: left;
  display: block;
}
.clear {
  display: block;
  clear: both;
}
.right {
  text-align: right !important;
}
.left {
  text-align: left !important;
}
.center {
  text-align: center !important;
}
.bold {
  font-weight: bold;
}
.bolder {
  font-weight: 900;
}
.text-underlined {
  text-decoration: underline;
}
.text-caps {
  text-transform: uppercase;
}
.nomargin {
  margin: 0 !important;
}
.nopadding,
.nopadding-v,
.nopadding-t {
  padding-top: 0 !important;
}
.nopadding,
.nopadding-h,
.nopadding-r {
  padding-right: 0 !important;
}
.nopadding,
.nopadding-v,
.nopadding-b {
  padding-bottom: 0 !important;
}
.nopadding,
.nopadding-h,
.nopadding-l {
  padding-left: 0 !important;
}
.auto-width {
  width: auto !important;
}
.hidden {
  display: none !important;
}
.block {
  display: block !important;
}
.inline-block {
  display: inline-block !important;
}
.inline {
  display: inline !important;
}
/*------ flexbox ------*/
/*------ animations ------*/
@keyframes come-in-top {
  0% {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    top: 10px;
  }
  100% {
    opacity: 0.9;
    filter: alpha(opacity=90);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=90);
    top: 0;
  }
}
.come-in-top {
  animation: come-in-top 0.8s ease forwards;
}
@keyframes bounce-out-top {
  0% {
    opacity: 0.9;
    filter: alpha(opacity=90);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=90);
    top: 0;
  }
  40% {
    opacity: 0.5;
    filter: alpha(opacity=50);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
    top: 20px;
  }
  100% {
    opacity: 0;
    filter: alpha(opacity=0);
    -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
    top: -50px;
  }
}
.bounce-out-top {
  animation: bounce-out-top 0.8s ease forwards;
}
/* 
	forms.less
	Project: PACMS v3.0
	
*/
/*------ standard elements ------*/
label {
  display: block;
  height: 20px;
  padding-bottom: 5px;
}
.form-field {
  float: left;
  display: block;
  margin: 0 10px 0 0;
}
.form-field.float-none {
  float: none;
  display: inline-block;
  vertical-align: top;
}
.img-holder {
  float: left;
  display: block;
  max-width: 258px;
  min-height: 64px;
  margin: 0 10px 20px 0;
}
.img-holder img {
  display: block;
  width: 100%;
  min-height: 64px;
  border: 1px solid #cccccc;
  margin-bottom: 10px;
}
.cropbox {
  border: 1px solid #cccccc !important;
}
.input,
.select,
.textarea {
  font-size: 16px;
  line-height: 30px;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #666666;
  font-weight: 400;
  transition: background-color 0.3s ease 0s;
}
.input,
.select,
.textarea {
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  outline: none;
}
.input[type="color"] {
  box-sizing: content-box;
}
.input[type="color"][list] {
  background: url("../images/select_arrow.png") right -5px no-repeat #fff;
}
.input:not([type=file]) {
  line-height: 1;
}
.input:focus,
.textarea:focus {
  background: #65b561;
  color: #fff;
  border-color: #31693d;
}
.input:disabled,
.select:disabled,
.textarea:disabled {
  background-color: #eeeeee !important;
  color: #999999 !important;
}
.input,
.select,
.textarea {
  border: 1px solid #cccccc;
  background: #fff;
  padding: 4px 8px;
  height: 30px;
  width: 240px;
  margin-bottom: 20px;
}
.input_sm {
  width: 110px;
}
.input_lg {
  width: 512px;
}
.textarea {
  height: 115px;
  resize: none;
  line-height: 20px;
}
.textarea#seo-description {
  height: 200px;
}
.select {
  height: 40px;
  padding: 4px 24px 4px 4px;
  background: url("../images/select_arrow.png") right -5px no-repeat #fff;
  width: 260px;
  text-indent: 0.01px;
  text-overflow: "";
}
.select:focus {
  border-color: #31693d;
}
select::-ms-expand {
  display: none;
}
:root .select {
  padding: 4px 4px 4px 4px \ ;
}
.select_sm {
  width: 128px;
}
input[type=file] {
  padding: 4px;
  width: 250px;
  font-size: 80%;
  color: #999999;
}
.checkbox,
.radio {
  display: none;
}
.checkbox + label,
.radio + label {
  position: relative;
  display: inline-block;
  padding: 1px 10px 1px 26px;
  cursor: pointer;
  line-height: 20px;
}
.checkbox + label:before,
.radio + label:before {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  display: inline-block;
  line-height: 19px;
  position: absolute;
  left: 0;
  width: 18px;
  height: 18px;
  border: 1px solid #cccccc;
  text-align: center;
  color: #65b561;
  background: #fff;
}
.radio + label:before {
  border-radius: 50%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
.checkbox + label:before,
.radio + label:before {
  content: " ";
}
.checkbox:checked + label:before {
  content: "\f00c";
  font-size: 14px;
}
.radio:checked + label:before {
  content: "\f111";
  font-size: 12px;
}
.checkbox:disabled + label:before,
.radio:disabled + label:before {
  background-color: #eeeeee;
}
.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 5 Free";
  font-weight: 900;
  content: "\f024";
}
.panel-content.nopadding .mce-tinymce {
  margin: 0 !important;
  border-width: 1px 0 !important;
}
/*------ tag editor ------*/
.tag-editor {
  font-size: 16px;
  line-height: 30px;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #666666;
  font-weight: 400;
  transition: background-color 0.3s ease 0s;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  outline: none;
  border: 1px solid #cccccc;
  background: #fff;
  padding: 4px 8px;
  height: 30px;
  width: 240px;
  margin-bottom: 20px;
  height: 115px;
  resize: none;
  line-height: 20px;
  width: calc(100% - 20px);
  height: 300px;
  list-style-type: none;
  margin: 0 0 20px;
  overflow: auto;
  cursor: text;
}
.tag-editor li {
  position: relative;
  display: inline-block;
  margin: 3px 7px 0 0;
  overflow: hidden;
  line-height: 1.5;
}
.tag-editor li[style="width:1px"] {
  position: absolute;
  margin-right: 0;
}
.tag-editor div {
  float: left;
  padding: 0 4px;
}
.tag-editor .placeholder {
  padding: 0 8px;
  color: #333333;
}
.tag-editor .tag-editor-spacer {
  display: none;
}
.tag-editor .tag-editor-tag {
  padding-left: 5px;
  padding-right: 25px;
  background: #eeeeee;
  overflow: hidden;
  cursor: pointer;
  white-space: nowrap;
}
.tag-editor .tag-editor-tag.active {
  background: none !important;
}
.tag-editor input {
  padding: 0;
  margin: 0;
  border: 0;
  vertical-align: inherit;
  outline: none;
  cursor: text;
  box-shadow: none;
  background: none;
  font-family: inherit;
  font-weight: inherit;
  font-size: inherit;
  font-style: inherit;
}
.tag-editor-hidden-src {
  position: absolute !important;
  left: -99999px;
}
.tag-editor ::-ms-clear {
  display: none;
}
.tag-editor .tag-editor-delete {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 17px;
  background: #eeeeee;
  cursor: pointer;
  text-align: center;
}
.tag-editor .tag-editor-delete i:before {
  content: "\00d7";
  display: inline-block;
  line-height: 20px;
  font-size: 16px;
  font-style: normal;
}
.tag-editor .tag-editor-delete:hover i:before {
  color: #999999;
}
.tag-editor .tag-editor-tag.active + .tag-editor-delete,
.tag-editor .tag-editor-tag.active + .tag-editor-delete i {
  visibility: hidden;
  cursor: text;
}
td .tag-editor {
  min-height: 30px;
  height: auto;
  margin: 0;
}
.ui-dialog ul.tag-editor {
  padding: 4px 8px;
  margin: 0;
}
/*------ color swatch ------*/
.color-swatch .color {
  display: inline-block;
  vertical-align: middle;
  margin: 0 2px;
  width: 15px;
  height: 15px;
  border-radius: 2px;
  font-size: 0;
}
/*------ buttons ------*/
.button,
a.button,
.button-sm,
a.button-sm {
  display: inline-block;
  position: relative;
  background: #65b561;
  border: none;
  color: #fff;
  font-size: 16px;
  padding: 0 15px 0 65px;
  text-decoration: none;
  font-weight: 700;
  height: 50px;
  line-height: 50px;
  white-space: nowrap;
  cursor: pointer;
  outline: none;
  transition: all 0.3s ease 0s;
}
.button:hover,
a.button:hover,
.button-sm:hover,
a.button-sm:hover {
  background: #31693d;
  color: #fff;
}
.button i {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  width: 50px;
  height: 50px;
  line-height: 50px;
  text-align: center;
  margin: 0;
  background: #87c584;
  transition: all 0.3s ease 0s;
}
.button:hover i {
  background: #418c51;
}
.button-sm,
a.button-sm {
  height: 40px;
  line-height: 40px;
  padding: 0 15px;
  background: #87c584;
}
.button-sm:hover,
a.button-sm:hover {
  background: #65b561;
}
.button-sm i {
  margin-right: 15px;
  transition: all 0.3s ease 0s;
}
.button:disabled,
.button-sm:disabled,
a.button.disabled,
a.button-sm.disabled {
  background-color: #cccccc !important;
  color: #eeeeee !important;
  cursor: default !important;
  text-decoration: line-through;
}
.button:disabled i,
a.button.disabled i {
  background-color: #d9d9d9 !important;
  color: #fff !important;
  cursor: default !important;
}
.button-sm:disabled i,
a.button-sm.disabled i {
  color: #eeeeee !important;
  cursor: default !important;
}
.cancel {
  display: inline-block;
  line-height: 50px;
  padding: 0;
  font-size: 16px;
}
.delete,
a.delete {
  background: #999999;
}
.delete:hover,
a.delete:hover {
  background: #333333;
}
.delete i {
  background: #cccccc;
  color: #666666;
}
.delete:hover i {
  color: #fff;
  background: #4d4d4d;
}
.button-sm.delete i,
a.button-sm.delete i {
  background: #999999;
}
.button-sm.delete:hover i,
a.button-sm.delete:hover i {
  background: #333333;
}
.button.f_right + .button.f_right,
a.button.f_right + .button.f_right,
.button-sm.f_right + .button.f_right,
a.button-sm.f_right + .button.f_right {
  margin-right: 10px;
}
.img-holder {
  position: relative;
}
.img-holder .recrop-button {
  position: absolute;
  top: 1px;
  left: 1px;
  background: rgba(44, 44, 44, 0.7);
  cursor: pointer;
  box-sizing: content-box;
  border: 0;
  padding: 8px;
  font-size: 16px;
  color: #fff;
  transition: all 0.3s ease 0s;
}
.img-holder .recrop-button:hover {
  color: #65b561;
  background: #333333;
}
/*------ toggle switch ------*/
.onoffswitch {
  position: relative;
  text-align: left;
  display: inline-block;
  width: 80px;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.onoffswitch input {
  display: none;
}
.onoffswitch label {
  display: block;
  float: none;
  overflow: hidden;
  cursor: pointer;
  height: auto;
  padding: 0;
  border: 0;
  border-radius: 0px;
}
.onoffswitch .inner {
  display: block;
  width: 200%;
  margin-left: -100%;
  transition: margin 0.2s ease-in 0s;
}
.onoffswitch .inner:before,
.onoffswitch .inner:after {
  float: left;
  display: block;
  width: 50%;
  height: 30px;
  padding: 0;
  line-height: 30px;
  font-size: 14px;
  color: #fff;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  box-sizing: border-box;
  background-clip: padding-box;
}
.onoffswitch .inner:before {
  content: "\f00c";
  padding-left: 13px;
  background-color: #87c584;
}
.onoffswitch .inner:after {
  content: "\f00d";
  padding-right: 14px;
  background-color: #cc0000;
  text-align: right;
}
.onoffswitch .switch {
  display: block;
  width: 40px;
  margin: 0px;
  background: #fff;
  position: absolute;
  top: 0;
  bottom: 0;
  right: 40px;
  transition: all 0.2s ease-in 0s;
}
.onoffswitch input:checked + label .inner {
  margin-left: 0;
}
.onoffswitch input:checked + label .switch {
  right: 0px;
}
.switch-sorter {
  display: none;
}
table tr:nth-child(odd) .switch {
  background: #eeeeee;
}
td .onoffswitch,
td .item-status {
  display: block;
}
td.center .onoffswitch,
td.center .item-status {
  margin: auto;
}
td.right .onoffswitch,
td.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-right: 1px;
  height: 30px;
  padding: 0;
  font-size: 16px;
  font-weight: normal;
  box-sizing: border-box;
  background-clip: padding-box;
}
.item-status button i {
  width: 40px;
  height: 30px;
  line-height: 30px;
  color: #666666;
  background: #eeeeee;
}
.item-status button:hover i {
  color: #fff;
  background: #65b561;
}
.item-status button.active i {
  color: #fff;
  background: #87c584;
}
table tr:nth-child(2n) .item-status button.active i,
.panel-header .item-status button.active i {
  color: #fff;
  background: #87c584;
}
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: #65b561;
}
/*------ 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;
  filter: alpha(opacity=50);
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
}
.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: #333333;
  border: 0;
  box-shadow: 0px 0px 10px 0px rgba(11, 11, 11, 0.35);
}
.ui-dialog .ui-dialog-titlebar {
  padding: 20px;
  position: relative;
  background: #65b561;
  color: #fff;
  font-size: 18px;
  font-weight: 700;
}
.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;
  font-weight: 700;
  cursor: pointer;
}
.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 {
  content: "\f00d";
  font-family: "Font Awesome 5 Free";
  font-size: 20px;
  font-style: normal;
  font-weight: 900;
  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-titlebar-close span {
  display: block;
}
.ui-dialog .ui-dialog-titlebar-close:hover,
.ui-dialog .ui-dialog-titlebar-close:focus {
  background: none;
  color: #fff;
}
.ui-dialog .ui-dialog-content {
  position: relative;
  max-height: 500px !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;
}
.ui-dialog .ui-dialog-buttonpane .ui-button {
  float: left;
  display: block;
  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;
  transition: all 0.3s ease 0s;
}
.ui-dialog .ui-dialog-buttonpane .ui-button i {
  margin-right: 5px;
}
.ui-dialog .ui-dialog-buttonpane .ui-button:first-child {
  float: right;
}
.ui-dialog .ui-dialog-buttonpane .ui-button:hover {
  background: #333333;
  color: #fff;
}
.ui-dialog .ui-resizable-se {
  width: 14px;
  height: 14px;
  right: 3px;
  bottom: 3px;
}
/*------ tooltip ------*/
.tooltip {
  font-weight: 800;
  color: #65b561;
  cursor: pointer;
  padding-left: 5px;
}
.handle .tooltip {
  position: absolute;
  top: 0;
  left: -5px;
  bottom: 0;
}
.ui-tooltip {
  display: none;
  position: absolute;
  background: #333333;
  font-size: 12px;
  width: 210px;
  padding: 20px;
  color: #fff;
  z-index: 99;
  line-height: 18px;
  opacity: 0.9;
  filter: alpha(opacity=90);
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=90);
  box-shadow: 0 0 20px 0px rgba(11, 11, 11, 0.35);
}
.ui-tooltip h4 {
  color: #65b561;
}
/*------ datepicker ------*/
.ui-datepicker {
  width: 250px;
  padding: 0.2em 4px 0 4px;
  display: none;
  background: #31693d;
  box-shadow: 0px 0px 4px 0px rgba(11, 11, 11, 0.35);
}
.ui-datepicker .ui-datepicker-header {
  position: relative;
  padding: 0.2em 0;
  background: #31693d;
  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-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-prev span,
.ui-datepicker .ui-datepicker-next span {
  display: block;
  position: absolute;
  left: 50%;
  margin-left: -8px;
  top: 50%;
  margin-top: -8px;
}
.ui-datepicker .ui-datepicker-title {
  margin: 0 2.3em;
  line-height: 1.8em;
  text-align: center;
}
.ui-datepicker .ui-datepicker-title select {
  font-size: 1em;
  margin: 1px 0;
}
.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 th {
  padding: 0.7em 0.3em;
  height: auto;
  text-align: center;
  font-weight: bold;
  border: 0;
  background: #eeeeee;
}
.ui-datepicker td {
  border: 0;
  padding: 2px;
  background: #fff !important;
}
.ui-datepicker td span,
.ui-datepicker td a {
  display: block;
  padding: 0.3em;
  text-align: right;
  text-decoration: none;
  border: 1px solid #eeeeee;
}
.ui-datepicker td a.ui-state-active {
  border-color: #65b561;
}
.ui-datepicker td a.ui-state-hover {
  background: #65b561;
  color: #fff;
  font-weight: 700;
}
.ui-datepicker td.ui-datepicker-today a {
  background: #31693d;
  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 {
  float: right;
  margin: 0.5em 0.2em 0.4em;
  cursor: pointer;
  padding: 0.2em 0.6em 0.3em 0.6em;
  width: auto;
  overflow: visible;
}
.ui-datepicker .ui-datepicker-buttonpane button.ui-datepicker-current {
  float: left;
}
/* with multiple calendars */
.ui-datepicker.ui-datepicker-multi {
  width: auto;
}
.ui-datepicker-multi .ui-datepicker-group {
  float: left;
}
.ui-datepicker-multi .ui-datepicker-group table {
  width: 98%;
  margin: 0 auto 0.4em;
}
.ui-datepicker-multi-2 .ui-datepicker-group {
  width: 50%;
}
.ui-datepicker-multi-3 .ui-datepicker-group {
  width: 33.3%;
}
.ui-datepicker-multi-4 .ui-datepicker-group {
  width: 25%;
}
.ui-datepicker-multi .ui-datepicker-group-last .ui-datepicker-header,
.ui-datepicker-multi .ui-datepicker-group-middle .ui-datepicker-header {
  border-left-width: 0;
}
.ui-datepicker-multi .ui-datepicker-buttonpane {
  clear: left;
}
.ui-datepicker-row-break {
  clear: both;
  width: 100%;
  font-size: 0;
}
/* with month and year select */
.ui-datepicker select {
  font-size: 16px;
  line-height: 30px;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  color: #666666;
  font-weight: 400;
  transition: background-color 0.3s ease 0s;
  -webkit-appearance: none;
  appearance: none;
  border-radius: 0;
  outline: none;
  border: 1px solid #cccccc;
  background: #fff;
  padding: 4px 8px;
  width: 240px;
  margin-bottom: 20px;
  height: 40px;
  padding: 4px 24px 4px 4px;
  background: url("../images/select_arrow.png") right -5px no-repeat #fff;
  width: 260px;
  text-indent: 0.01px;
  text-overflow: "";
  font-size: 14px !important;
  padding-top: 0;
  padding-bottom: 0;
  height: 30px;
  background-position: right -10px;
}
/*------ tabs ------*/
.tabs.page-content {
  display: none;
}
.ui-tabs {
  display: block !important;
  margin-bottom: 20px;
}
.ui-tabs .ui-tabs-nav {
  list-style: none;
  margin: 0;
  padding: 0 0 0 1px;
  width: 100%;
  position: relative;
  z-index: 0;
}
.ui-tabs .ui-tabs-nav li {
  display: inline-block;
  position: relative;
  margin-right: 2px;
}
.ui-tabs .ui-tabs-nav li a {
  display: block;
  position: relative;
  z-index: 1;
  padding: 15px 20px;
  background: #cccccc;
  color: #666666;
  font-weight: 800;
  line-height: 30px;
  text-transform: uppercase;
  margin: 0 0 0 -1px;
  outline: none;
  text-decoration: none;
  box-shadow: 0 -2px 4px -2px rgba(11, 11, 11, 0.35) inset;
}
.no-touch .ui-tabs .ui-tabs-nav li a:hover {
  background: #ecf6ec;
}
.no-touch .ui-tabs .ui-tabs-nav li.ui-state-active a:hover,
.ui-tabs .ui-tabs-nav li.ui-state-active a {
  background: #fff;
  color: #333333;
  z-index: 2;
}
.ui-tabs .ui-tabs-nav li.ui-tabs-active a {
  box-shadow: none;
  text-shadow: none;
}
.ui-tabs .ui-tabs-panel {
  display: block;
  clear: both;
  padding: 20px;
  position: relative;
  background: #fff;
}
.ui-tabs .ui-tabs-nav li.ui-tabs-active a:before {
  transition: box-shadow 0.3s ease 0s;
}
.ui-tabs .ui-tabs-panel:before,
.ui-tabs .ui-tabs-nav li.ui-tabs-active a:before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: -1;
  box-shadow: 0px 0px 4px 0px rgba(11, 11, 11, 0.35);
}
/*------ google map picker ------*/
.gllpLatlonPicker {
  float: left;
  display: block;
  position: relative;
  border: 0;
  padding: 0;
  margin: 0 15px 10px 0;
}
.gllpMap {
  position: relative;
  z-index: 1;
  width: 590px;
  max-width: 100%;
  height: 235px;
}
.gllpSearch {
  position: absolute;
  z-index: 2;
  top: 5px;
  right: 5px;
  left: 40px;
}
.gllpSearch .input {
  width: 200px;
}
.gllpSearch .button-sm {
  background: #333333;
}
.gllpSearch .button-sm:hover {
  background: #65b561;
}
/*------ alerts ------*/
.success {
  color: #65b561;
}
.error {
  color: #cc0000;
}
.alert {
  color: #e0b400;
}
.required,
.required + .tag-editor {
  border-color: #cc0000;
  color: #cc0000;
}
.system-alert {
  background: #fff;
  box-shadow: 0px 0px 4px 0px rgba(11, 11, 11, 0.35);
  margin: 0 0 20px;
  opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  overflow: hidden;
}
.system-alert .title {
  padding: 20px 15px;
  font-weight: 800;
  text-transform: uppercase;
}
.system-alert .title i {
  padding-right: 10px;
  font-size: 125%;
}
.system-alert .message {
  padding: 20px 15px;
  color: #333333;
}
.system-alert.important .title {
  background: #333333;
  color: #fff;
}
.system-alert.important.error .title {
  background: #cc0000;
}
.system-alert.important .panel-toggle {
  color: #cccccc;
  font-size: 16px;
}
.system-alert.error {
  border-left: 5px solid #cc0000;
}
.system-alert.error .title {
  background: #ffe6e6;
}
.system-alert.success {
  border-left: 5px solid #65b561;
}
.system-alert.success .title {
  background: #ecf6ec;
}
#system-mini-alerts {
  position: fixed;
  z-index: 20;
  top: 110px;
  right: 20px;
  width: 260px;
  pointer-events: none;
}
.system-alert.mini {
  position: relative;
  width: 100%;
  color: #fff;
  background: #333333;
  opacity: 0.9;
  filter: alpha(opacity=90);
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=90);
  transition: all 0.3s ease 0s;
}
.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;
}
/*------ login table ------*/
#login-wrapper {
  background: url("../images/camo_bkgd.jpg") 0 0 repeat #333333 fixed;
  width: 100%;
  height: 100%;
  min-height: 400px;
}
#login-form {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 300px;
  margin: -172px 0 0 -150px;
  padding-bottom: 20px;
}
#login-form .checkbox + label {
  padding-top: 15px;
}
#login-form .panel-header {
  background: #65b561;
}
#login-form h1 {
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
}
#login-form h1 small {
  display: block;
  font-weight: 800;
  color: #333333;
  font-size: 12px;
}
#login-alert {
  background: #ffe6e6;
  color: #cc0000;
  font-weight: 600;
  padding: 5px 10px;
  margin-bottom: 10px;
}
#login-alert.success {
  background: #ecf6ec;
  color: #65b561;
}
/*------ search form ------*/
#search-form {
  position: relative;
  float: left;
  display: block;
}
#search-form .input {
  float: left;
  display: block;
  height: 40px;
  width: 222px;
  padding-right: 20px;
}
#search-form .select {
  height: 50px;
  background-position: right 0;
}
#search-form .select:focus {
  background-position: right -50px;
}
#search-form select:focus::-ms-value {
  background-position: right -50px;
}
#search-form .button {
  padding: 0;
  width: 50px;
}
#search-form .button i {
  background: #cccccc;
}
#search-form .button:hover i {
  background: #666666;
}
#search-form #clear-search {
  position: absolute;
  z-index: 1;
  left: 232px;
  line-height: 50px;
}
.multiple-search .input,
.multiple-search .select {
  margin-right: 10px;
}
/*------ social inputs ------*/
.social {
  position: relative;
}
.social .input {
  padding-left: 50px;
  width: 198px;
  position: relative;
  z-index: 1;
}
.social .fab {
  display: block;
  position: absolute;
  z-index: 2;
  width: 38px;
  height: 38px;
  top: 1px;
  left: 1px;
  background-color: #87c584;
  color: #fff;
  font-size: 20px;
  text-align: center;
  line-height: 38px;
}
/*------ google preview ------*/
.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 {
  margin-bottom: 6px;
  font-size: 14px;
  color: #006621;
}
/*------ 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(101, 181, 97, 0.75);
}
/*------ seo styles ------*/
.seo-pass {
  color: #65b561 !important;
}
.seo-fail {
  color: #ff1a1a !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 {
  content: "\f111";
  font-family: "Font Awesome 5 Free";
  font-style: normal;
  font-weight: 900;
  text-decoration: inherit;
  padding-right: 12px;
  font-size: 16px;
  line-height: 1;
}
.seo-summary li.seo-1:before {
  color: #ff1a1a !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 #ff1a1a;
}
tr.seo-2 > td:first-child {
  border-left: 5px solid #FFCC00;
}
tr.seo-3 > td:first-child {
  border-left: 5px solid #65b561;
}
.graph {
  width: 150px;
  margin-right: 20px;
}
.graph p {
  font-weight: 800;
  text-transform: uppercase;
  color: #333333;
}
.graph p small {
  font-size: 14px;
  color: #31693d;
}
.radial-progress,
.radial-progress.site-avg {
  position: relative;
  margin: 0 auto 10px auto;
  width: 100px;
  height: 100px;
  background-color: #ecf6ec;
  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 {
  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: 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: #65b561;
}
.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%;
  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: #65b561;
}
.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 {
  transform: rotate(180deg);
}
.radial-progress.p100 .circle.animate .fill.fix,
.radial-progress.site-avg.p100 .circle.animate .fill.fix {
  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 {
  transform: rotate(178.2deg);
}
.radial-progress.p99 .circle.animate .fill.fix,
.radial-progress.site-avg.p99 .circle.animate .fill.fix {
  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 {
  transform: rotate(176.4deg);
}
.radial-progress.p98 .circle.animate .fill.fix,
.radial-progress.site-avg.p98 .circle.animate .fill.fix {
  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 {
  transform: rotate(174.6deg);
}
.radial-progress.p97 .circle.animate .fill.fix,
.radial-progress.site-avg.p97 .circle.animate .fill.fix {
  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 {
  transform: rotate(172.8deg);
}
.radial-progress.p96 .circle.animate .fill.fix,
.radial-progress.site-avg.p96 .circle.animate .fill.fix {
  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 {
  transform: rotate(171deg);
}
.radial-progress.p95 .circle.animate .fill.fix,
.radial-progress.site-avg.p95 .circle.animate .fill.fix {
  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 {
  transform: rotate(169.2deg);
}
.radial-progress.p94 .circle.animate .fill.fix,
.radial-progress.site-avg.p94 .circle.animate .fill.fix {
  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 {
  transform: rotate(167.4deg);
}
.radial-progress.p93 .circle.animate .fill.fix,
.radial-progress.site-avg.p93 .circle.animate .fill.fix {
  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 {
  transform: rotate(165.6deg);
}
.radial-progress.p92 .circle.animate .fill.fix,
.radial-progress.site-avg.p92 .circle.animate .fill.fix {
  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 {
  transform: rotate(163.8deg);
}
.radial-progress.p91 .circle.animate .fill.fix,
.radial-progress.site-avg.p91 .circle.animate .fill.fix {
  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 {
  transform: rotate(162deg);
}
.radial-progress.p90 .circle.animate .fill.fix,
.radial-progress.site-avg.p90 .circle.animate .fill.fix {
  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 {
  transform: rotate(160.2deg);
}
.radial-progress.p89 .circle.animate .fill.fix,
.radial-progress.site-avg.p89 .circle.animate .fill.fix {
  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 {
  transform: rotate(158.4deg);
}
.radial-progress.p88 .circle.animate .fill.fix,
.radial-progress.site-avg.p88 .circle.animate .fill.fix {
  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 {
  transform: rotate(156.6deg);
}
.radial-progress.p87 .circle.animate .fill.fix,
.radial-progress.site-avg.p87 .circle.animate .fill.fix {
  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 {
  transform: rotate(154.8deg);
}
.radial-progress.p86 .circle.animate .fill.fix,
.radial-progress.site-avg.p86 .circle.animate .fill.fix {
  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 {
  transform: rotate(153deg);
}
.radial-progress.p85 .circle.animate .fill.fix,
.radial-progress.site-avg.p85 .circle.animate .fill.fix {
  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 {
  transform: rotate(151.2deg);
}
.radial-progress.p84 .circle.animate .fill.fix,
.radial-progress.site-avg.p84 .circle.animate .fill.fix {
  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 {
  transform: rotate(149.4deg);
}
.radial-progress.p83 .circle.animate .fill.fix,
.radial-progress.site-avg.p83 .circle.animate .fill.fix {
  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 {
  transform: rotate(147.6deg);
}
.radial-progress.p82 .circle.animate .fill.fix,
.radial-progress.site-avg.p82 .circle.animate .fill.fix {
  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 {
  transform: rotate(145.8deg);
}
.radial-progress.p81 .circle.animate .fill.fix,
.radial-progress.site-avg.p81 .circle.animate .fill.fix {
  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 {
  transform: rotate(144deg);
}
.radial-progress.p80 .circle.animate .fill.fix,
.radial-progress.site-avg.p80 .circle.animate .fill.fix {
  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 {
  transform: rotate(142.2deg);
}
.radial-progress.p79 .circle.animate .fill.fix,
.radial-progress.site-avg.p79 .circle.animate .fill.fix {
  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 {
  transform: rotate(140.4deg);
}
.radial-progress.p78 .circle.animate .fill.fix,
.radial-progress.site-avg.p78 .circle.animate .fill.fix {
  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 {
  transform: rotate(138.6deg);
}
.radial-progress.p77 .circle.animate .fill.fix,
.radial-progress.site-avg.p77 .circle.animate .fill.fix {
  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 {
  transform: rotate(136.8deg);
}
.radial-progress.p76 .circle.animate .fill.fix,
.radial-progress.site-avg.p76 .circle.animate .fill.fix {
  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 {
  transform: rotate(135deg);
}
.radial-progress.p75 .circle.animate .fill.fix,
.radial-progress.site-avg.p75 .circle.animate .fill.fix {
  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 {
  transform: rotate(133.2deg);
}
.radial-progress.p74 .circle.animate .fill.fix,
.radial-progress.site-avg.p74 .circle.animate .fill.fix {
  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 {
  transform: rotate(131.4deg);
}
.radial-progress.p73 .circle.animate .fill.fix,
.radial-progress.site-avg.p73 .circle.animate .fill.fix {
  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 {
  transform: rotate(129.6deg);
}
.radial-progress.p72 .circle.animate .fill.fix,
.radial-progress.site-avg.p72 .circle.animate .fill.fix {
  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 {
  transform: rotate(127.8deg);
}
.radial-progress.p71 .circle.animate .fill.fix,
.radial-progress.site-avg.p71 .circle.animate .fill.fix {
  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 {
  transform: rotate(126deg);
}
.radial-progress.p70 .circle.animate .fill.fix,
.radial-progress.site-avg.p70 .circle.animate .fill.fix {
  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 {
  transform: rotate(124.2deg);
}
.radial-progress.p69 .circle.animate .fill.fix,
.radial-progress.site-avg.p69 .circle.animate .fill.fix {
  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 {
  transform: rotate(122.4deg);
}
.radial-progress.p68 .circle.animate .fill.fix,
.radial-progress.site-avg.p68 .circle.animate .fill.fix {
  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 {
  transform: rotate(120.6deg);
}
.radial-progress.p67 .circle.animate .fill.fix,
.radial-progress.site-avg.p67 .circle.animate .fill.fix {
  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 {
  transform: rotate(118.8deg);
}
.radial-progress.p66 .circle.animate .fill.fix,
.radial-progress.site-avg.p66 .circle.animate .fill.fix {
  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 {
  transform: rotate(117deg);
}
.radial-progress.p65 .circle.animate .fill.fix,
.radial-progress.site-avg.p65 .circle.animate .fill.fix {
  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 {
  transform: rotate(115.2deg);
}
.radial-progress.p64 .circle.animate .fill.fix,
.radial-progress.site-avg.p64 .circle.animate .fill.fix {
  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 {
  transform: rotate(113.4deg);
}
.radial-progress.p63 .circle.animate .fill.fix,
.radial-progress.site-avg.p63 .circle.animate .fill.fix {
  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 {
  transform: rotate(111.6deg);
}
.radial-progress.p62 .circle.animate .fill.fix,
.radial-progress.site-avg.p62 .circle.animate .fill.fix {
  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 {
  transform: rotate(109.8deg);
}
.radial-progress.p61 .circle.animate .fill.fix,
.radial-progress.site-avg.p61 .circle.animate .fill.fix {
  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 {
  transform: rotate(108deg);
}
.radial-progress.p60 .circle.animate .fill.fix,
.radial-progress.site-avg.p60 .circle.animate .fill.fix {
  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 {
  transform: rotate(106.2deg);
}
.radial-progress.p59 .circle.animate .fill.fix,
.radial-progress.site-avg.p59 .circle.animate .fill.fix {
  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 {
  transform: rotate(104.4deg);
}
.radial-progress.p58 .circle.animate .fill.fix,
.radial-progress.site-avg.p58 .circle.animate .fill.fix {
  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 {
  transform: rotate(102.6deg);
}
.radial-progress.p57 .circle.animate .fill.fix,
.radial-progress.site-avg.p57 .circle.animate .fill.fix {
  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 {
  transform: rotate(100.8deg);
}
.radial-progress.p56 .circle.animate .fill.fix,
.radial-progress.site-avg.p56 .circle.animate .fill.fix {
  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 {
  transform: rotate(99deg);
}
.radial-progress.p55 .circle.animate .fill.fix,
.radial-progress.site-avg.p55 .circle.animate .fill.fix {
  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 {
  transform: rotate(97.2deg);
}
.radial-progress.p54 .circle.animate .fill.fix,
.radial-progress.site-avg.p54 .circle.animate .fill.fix {
  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 {
  transform: rotate(95.4deg);
}
.radial-progress.p53 .circle.animate .fill.fix,
.radial-progress.site-avg.p53 .circle.animate .fill.fix {
  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 {
  transform: rotate(93.6deg);
}
.radial-progress.p52 .circle.animate .fill.fix,
.radial-progress.site-avg.p52 .circle.animate .fill.fix {
  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 {
  transform: rotate(91.8deg);
}
.radial-progress.p51 .circle.animate .fill.fix,
.radial-progress.site-avg.p51 .circle.animate .fill.fix {
  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 {
  transform: rotate(90deg);
}
.radial-progress.p50 .circle.animate .fill.fix,
.radial-progress.site-avg.p50 .circle.animate .fill.fix {
  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 {
  transform: rotate(88.2deg);
}
.radial-progress.p49 .circle.animate .fill.fix,
.radial-progress.site-avg.p49 .circle.animate .fill.fix {
  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 {
  transform: rotate(86.4deg);
}
.radial-progress.p48 .circle.animate .fill.fix,
.radial-progress.site-avg.p48 .circle.animate .fill.fix {
  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 {
  transform: rotate(84.6deg);
}
.radial-progress.p47 .circle.animate .fill.fix,
.radial-progress.site-avg.p47 .circle.animate .fill.fix {
  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 {
  transform: rotate(82.8deg);
}
.radial-progress.p46 .circle.animate .fill.fix,
.radial-progress.site-avg.p46 .circle.animate .fill.fix {
  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 {
  transform: rotate(81deg);
}
.radial-progress.p45 .circle.animate .fill.fix,
.radial-progress.site-avg.p45 .circle.animate .fill.fix {
  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 {
  transform: rotate(79.2deg);
}
.radial-progress.p44 .circle.animate .fill.fix,
.radial-progress.site-avg.p44 .circle.animate .fill.fix {
  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 {
  transform: rotate(77.4deg);
}
.radial-progress.p43 .circle.animate .fill.fix,
.radial-progress.site-avg.p43 .circle.animate .fill.fix {
  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 {
  transform: rotate(75.6deg);
}
.radial-progress.p42 .circle.animate .fill.fix,
.radial-progress.site-avg.p42 .circle.animate .fill.fix {
  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 {
  transform: rotate(73.8deg);
}
.radial-progress.p41 .circle.animate .fill.fix,
.radial-progress.site-avg.p41 .circle.animate .fill.fix {
  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 {
  transform: rotate(72deg);
}
.radial-progress.p40 .circle.animate .fill.fix,
.radial-progress.site-avg.p40 .circle.animate .fill.fix {
  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 {
  transform: rotate(70.2deg);
}
.radial-progress.p39 .circle.animate .fill.fix,
.radial-progress.site-avg.p39 .circle.animate .fill.fix {
  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 {
  transform: rotate(68.4deg);
}
.radial-progress.p38 .circle.animate .fill.fix,
.radial-progress.site-avg.p38 .circle.animate .fill.fix {
  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 {
  transform: rotate(66.6deg);
}
.radial-progress.p37 .circle.animate .fill.fix,
.radial-progress.site-avg.p37 .circle.animate .fill.fix {
  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 {
  transform: rotate(64.8deg);
}
.radial-progress.p36 .circle.animate .fill.fix,
.radial-progress.site-avg.p36 .circle.animate .fill.fix {
  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 {
  transform: rotate(63deg);
}
.radial-progress.p35 .circle.animate .fill.fix,
.radial-progress.site-avg.p35 .circle.animate .fill.fix {
  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 {
  transform: rotate(61.2deg);
}
.radial-progress.p34 .circle.animate .fill.fix,
.radial-progress.site-avg.p34 .circle.animate .fill.fix {
  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 {
  transform: rotate(59.4deg);
}
.radial-progress.p33 .circle.animate .fill.fix,
.radial-progress.site-avg.p33 .circle.animate .fill.fix {
  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 {
  transform: rotate(57.6deg);
}
.radial-progress.p32 .circle.animate .fill.fix,
.radial-progress.site-avg.p32 .circle.animate .fill.fix {
  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 {
  transform: rotate(55.8deg);
}
.radial-progress.p31 .circle.animate .fill.fix,
.radial-progress.site-avg.p31 .circle.animate .fill.fix {
  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 {
  transform: rotate(54deg);
}
.radial-progress.p30 .circle.animate .fill.fix,
.radial-progress.site-avg.p30 .circle.animate .fill.fix {
  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 {
  transform: rotate(52.2deg);
}
.radial-progress.p29 .circle.animate .fill.fix,
.radial-progress.site-avg.p29 .circle.animate .fill.fix {
  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 {
  transform: rotate(50.4deg);
}
.radial-progress.p28 .circle.animate .fill.fix,
.radial-progress.site-avg.p28 .circle.animate .fill.fix {
  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 {
  transform: rotate(48.6deg);
}
.radial-progress.p27 .circle.animate .fill.fix,
.radial-progress.site-avg.p27 .circle.animate .fill.fix {
  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 {
  transform: rotate(46.8deg);
}
.radial-progress.p26 .circle.animate .fill.fix,
.radial-progress.site-avg.p26 .circle.animate .fill.fix {
  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 {
  transform: rotate(45deg);
}
.radial-progress.p25 .circle.animate .fill.fix,
.radial-progress.site-avg.p25 .circle.animate .fill.fix {
  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 {
  transform: rotate(43.2deg);
}
.radial-progress.p24 .circle.animate .fill.fix,
.radial-progress.site-avg.p24 .circle.animate .fill.fix {
  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 {
  transform: rotate(41.4deg);
}
.radial-progress.p23 .circle.animate .fill.fix,
.radial-progress.site-avg.p23 .circle.animate .fill.fix {
  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 {
  transform: rotate(39.6deg);
}
.radial-progress.p22 .circle.animate .fill.fix,
.radial-progress.site-avg.p22 .circle.animate .fill.fix {
  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 {
  transform: rotate(37.8deg);
}
.radial-progress.p21 .circle.animate .fill.fix,
.radial-progress.site-avg.p21 .circle.animate .fill.fix {
  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 {
  transform: rotate(36deg);
}
.radial-progress.p20 .circle.animate .fill.fix,
.radial-progress.site-avg.p20 .circle.animate .fill.fix {
  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 {
  transform: rotate(34.2deg);
}
.radial-progress.p19 .circle.animate .fill.fix,
.radial-progress.site-avg.p19 .circle.animate .fill.fix {
  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 {
  transform: rotate(32.4deg);
}
.radial-progress.p18 .circle.animate .fill.fix,
.radial-progress.site-avg.p18 .circle.animate .fill.fix {
  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 {
  transform: rotate(30.6deg);
}
.radial-progress.p17 .circle.animate .fill.fix,
.radial-progress.site-avg.p17 .circle.animate .fill.fix {
  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 {
  transform: rotate(28.8deg);
}
.radial-progress.p16 .circle.animate .fill.fix,
.radial-progress.site-avg.p16 .circle.animate .fill.fix {
  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 {
  transform: rotate(27deg);
}
.radial-progress.p15 .circle.animate .fill.fix,
.radial-progress.site-avg.p15 .circle.animate .fill.fix {
  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 {
  transform: rotate(25.2deg);
}
.radial-progress.p14 .circle.animate .fill.fix,
.radial-progress.site-avg.p14 .circle.animate .fill.fix {
  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 {
  transform: rotate(23.4deg);
}
.radial-progress.p13 .circle.animate .fill.fix,
.radial-progress.site-avg.p13 .circle.animate .fill.fix {
  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 {
  transform: rotate(21.6deg);
}
.radial-progress.p12 .circle.animate .fill.fix,
.radial-progress.site-avg.p12 .circle.animate .fill.fix {
  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 {
  transform: rotate(19.8deg);
}
.radial-progress.p11 .circle.animate .fill.fix,
.radial-progress.site-avg.p11 .circle.animate .fill.fix {
  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 {
  transform: rotate(18deg);
}
.radial-progress.p10 .circle.animate .fill.fix,
.radial-progress.site-avg.p10 .circle.animate .fill.fix {
  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 {
  transform: rotate(16.2deg);
}
.radial-progress.p9 .circle.animate .fill.fix,
.radial-progress.site-avg.p9 .circle.animate .fill.fix {
  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 {
  transform: rotate(14.4deg);
}
.radial-progress.p8 .circle.animate .fill.fix,
.radial-progress.site-avg.p8 .circle.animate .fill.fix {
  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 {
  transform: rotate(12.6deg);
}
.radial-progress.p7 .circle.animate .fill.fix,
.radial-progress.site-avg.p7 .circle.animate .fill.fix {
  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 {
  transform: rotate(10.8deg);
}
.radial-progress.p6 .circle.animate .fill.fix,
.radial-progress.site-avg.p6 .circle.animate .fill.fix {
  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 {
  transform: rotate(9deg);
}
.radial-progress.p5 .circle.animate .fill.fix,
.radial-progress.site-avg.p5 .circle.animate .fill.fix {
  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 {
  transform: rotate(7.2deg);
}
.radial-progress.p4 .circle.animate .fill.fix,
.radial-progress.site-avg.p4 .circle.animate .fill.fix {
  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 {
  transform: rotate(5.4deg);
}
.radial-progress.p3 .circle.animate .fill.fix,
.radial-progress.site-avg.p3 .circle.animate .fill.fix {
  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 {
  transform: rotate(3.6deg);
}
.radial-progress.p2 .circle.animate .fill.fix,
.radial-progress.site-avg.p2 .circle.animate .fill.fix {
  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 {
  transform: rotate(1.8deg);
}
.radial-progress.p1 .circle.animate .fill.fix,
.radial-progress.site-avg.p1 .circle.animate .fill.fix {
  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 {
  transform: rotate(0deg);
}
.radial-progress.p0 .circle.animate .fill.fix,
.radial-progress.site-avg.p0 .circle.animate .fill.fix {
  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: #eeeeee;
}
.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: 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: #31693d;
}
.radial-progress.site-avg.seo-pass .circle .mask .fill {
  background-color: #31693d;
}
.radial-progress.site-avg.seo-average .circle .mask .fill {
  background-color: #e0b400;
}
.radial-progress.site-avg.seo-fail .circle .mask .fill {
  background-color: #990000;
}
/*------ 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: #65b561;
  cursor: pointer;
  float: right;
  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 5 Free";
  font-weight: 400;
  content: "\f005";
}
.rating-select label::before {
  transition: opacity 0.1s ease 0s;
}
.rating-select label::after {
  opacity: 0;
  font-weight: 900;
  transition: opacity 0.15s ease 0s;
  position: absolute;
  top: 0;
  left: 0;
}
.rating-select label:hover,
.rating-select label:hover ~ label {
  color: #31693d;
}
.rating-select > input:checked ~ label::after {
  opacity: 1;
}
.rating-select > input:checked ~ label::before {
  opacity: 0;
  transition: opacity 0.1s ease 0.15s;
}
.rating-select input:disabled + label {
  color: #999999;
}
/*------ actions nav ------*/
.actions-nav {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: center;
  margin-bottom: 20px;
  border-bottom: 1px solid #cccccc;
}
.actions-nav .column {
  margin-bottom: 20px;
}
.actions-nav .right {
  margin-left: auto;
}
.actions-nav .nav-item {
  display: inline-block;
}
.actions-nav .nav-item ~ .nav-item {
  margin-left: 10px;
}
/*------ multiselects ------*/
.multiselect {
  width: 235px;
  height: 115px;
  margin: 0 0 20px;
  padding: 10px;
  border: 1px solid #cccccc;
  border-radius: 0;
  background: #fff;
  outline: none;
  -webkit-appearance: none;
  appearance: none;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  font-size: 16px;
  font-family: 'Open Sans', Arial, Helvetica, sans-serif;
  font-weight: 400;
  line-height: 30px;
  color: #666666;
  text-overflow: "";
  list-style: none;
  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;
  padding: 0 20px;
}
/*------ dropzone ------*/
.dz-dropzone.dropzone {
  margin-bottom: 20px;
  border-style: dashed;
  border-color: #65b561;
  transition: all 0.3s ease 0s;
}
.dz-dropzone.dropzone input[type="file"] {
  display: none;
}
.dz-dropzone.dropzone .dz-message.dz-default {
  margin: 45px 0;
  color: #666666;
  font-size: 16px;
}
.dz-dropzone.dropzone .dz-message.dz-default small {
  margin: 4px 0 5px;
}
.dz-dropzone.dropzone.dz-drag-hover,
.dz-dropzone.dropzone:hover {
  border-color: #31693d;
  background: #ecf6ec;
}
.dz-dropzone.dropzone.dz-drag-hover .button-sm,
.dz-dropzone.dropzone:hover .button-sm {
  background-color: #65b561;
}
.dz-dropzone.dropzone.dz-drag-hover {
  border-style: solid;
}
.dz-gallery {
  list-style: none;
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: stretch;
  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;
  appearance: none;
  width: 0;
  height: 0;
  opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
}
.dz-gallery li .container-checkbox + label {
  position: relative;
  display: block;
  width: 150px;
  height: auto;
  min-height: 150px;
  padding: 6px;
  background-color: #eeeeee;
  transition: all 0.3s ease 0s;
  cursor: pointer;
}
.dz-gallery li .container-checkbox:checked + label {
  background-color: #65b561;
}
.dz-gallery li .container-checkbox:not(:checked) + label img {
  -moz-filter: grayscale(1);
  -ms-filter: grayscale(1);
  filter: grayscale(1);
}
.dz-gallery li img {
  position: absolute;
  top: 50%;
  left: 50%;
  display: block;
  max-width: calc(100% - 12px);
  max-height: calc(100% - 12px);
  transform: translate(-50%, -50%);
  transition: all 0.3s ease 0s;
}
.dz-gallery li .sort-handler {
  position: absolute;
  top: 6px;
  left: 6px;
  padding: 9px;
  background: rgba(51, 51, 51, 0.7);
  opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  cursor: pointer;
  transition: all 0.3s ease 0s;
  color: #fff;
  text-align: center;
}
.dz-gallery li .sort-handler:hover {
  background: #333333;
}
.dz-gallery li .sort-handler:active {
  cursor: grabbing;
}
.dz-gallery li .sort-handler i {
  color: inherit;
}
.dz-gallery li .buttons {
  position: absolute;
  left: 6px;
  right: 6px;
  bottom: 6px;
  background: rgba(51, 51, 51, 0.7);
  opacity: 0;
  filter: alpha(opacity=0);
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=0);
  transform: translateY(20px);
  transition: all 0.3s ease 0s;
  text-align: center;
}
.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;
}
.dz-gallery li .buttons a:hover,
.dz-gallery li .buttons a:active {
  color: #65b561;
}
.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;
  filter: alpha(opacity=100);
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
}
.dz-gallery li:hover .buttons,
.dz-gallery li:active .buttons {
  opacity: 1;
  filter: alpha(opacity=100);
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=100);
  transform: translateY(0);
}
.dz-gallery li.placeholder-item {
  display: block;
  width: 192px;
  border: 1px dashed #ddd;
  background: #eeeeee;
}
/*------ form fields ------*/
#form-fields-table tr.field td.record-name::before {
  display: none;
}
#form-fields-table tr.fieldset ~ tr td.record-name::before {
  display: inline-block;
}
#partner-picker + .thumbnails {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: stretch;
  text-align: center;
}
#partner-picker + .thumbnails li {
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: stretch;
  flex: 1 0 auto;
  min-width: 200px;
}
#partner-picker + .thumbnails li .thumbnail {
  flex: 1 0 auto;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: stretch;
}
#partner-picker + .thumbnails img {
  display: block;
  width: auto;
  margin: auto;
  max-width: 200px;
  max-height: 100px;
}
/*------ draggable markers (impact map communities) ------*/
.image-markers-border {
  border: 1px solid #ccc;
  padding: 20px;
}
.image-markers-border.f_left {
  margin-right: 20px;
}
.image-markers-wrapper {
  position: relative;
  overflow: visible;
}
.image-markers-wrapper.alberta-svg-wrapper {
  width: 500px;
}
.image-markers-wrapper img {
  position: relative;
  display: block;
  width: 100%;
  z-index: 1;
}
.image-markers-wrapper .overlay {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background-color: #000;
  opacity: 0.5;
  filter: alpha(opacity=50);
  -ms-filter: progid:DXImageTransform.Microsoft.Alpha(Opacity=50);
  z-index: 10;
}
.markers-wrapper {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 20;
  overflow: visible;
}
.draggable-marker {
  position: absolute;
  border-radius: 50%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  height: 30px;
  width: 30px;
  margin: -15px;
  background-color: #fff;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.16);
  line-height: 30px;
  font-weight: 700;
  text-align: center;
  z-index: 9999;
  opacity: 1;
  cursor: move;
  transition: opacity 0.3s ease 0s;
}
.draggable-marker:hover {
  opacity: 0.7;
}
.community-marker {
  position: absolute;
  height: 10px;
  width: 10px;
  margin: -5px;
  border-radius: 50%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  background-color: #ddd;
  text-align: center;
  overflow: visible;
  white-space: nowrap;
  box-shadow: 0 0 10px 0 rgba(0, 0, 0, 0.16);
  z-index: 1;
}
.community-marker span {
  position: absolute;
  top: 50%;
  left: 50%;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  opacity: 0;
  cursor: default;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: opacity 0.3s ease 0s;
}
.community-marker:hover span,
.community-marker:focus span {
  opacity: 1;
}
.communities-visited-table-wrapper {
  max-height: 500px;
  overflow-y: scroll;
}
/*------ table search ------*/
.table-search-wrapper {
  display: inline-block;
  position: relative;
  vertical-align: top;
}
.table-search-wrapper .table-search:focus + .clear-table-search:not(:hover):not(:focus) {
  color: #fff;
}
.table-search-wrapper .clear-table-search {
  display: none;
  position: absolute;
  right: 10px;
  line-height: 40px;
  z-index: 1;
}
/* 
	statistics.less
	
	Project: PACMS v3.0
	
*/
/*------ embed api ------*/
.full {
  width: 100%;
}
.half {
  width: 50%;
}
#statistics-wrapper {
  font-size: 12px;
  color: #333;
  font-weight: normal;
}
#statistics-header {
  width: 100%;
}
.gapi-analytics-auth-styles-signinbutton,
div.gapi-analytics-auth-styles-signinbutton {
  position: relative;
  background: #65b561;
  cursor: pointer;
  color: #fff;
  font-weight: 700;
  height: 50px;
  line-height: 50px;
  outline: none;
  padding: 0 20px 0 50px;
  border-radius: 0px;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  transition: all 0.3s ease 0s;
}
.gapi-analytics-auth-styles-signinbutton-buttonText {
  font-family: 'Open Sans', Arial, Helvetica, sans-serif !important;
  font-size: 16px !important;
}
.gapi-analytics-auth-styles-signinbutton-image,
span.gapi-analytics-auth-styles-signinbutton-image {
  background-color: #87c584;
  background-position: 50% 50%;
  border-right: none;
  height: 50px;
  left: 0;
  position: absolute;
  top: 0;
  width: 50px;
  transition: all 0.3s ease 0s;
}
.gapi-analytics-auth-styles-signinbutton:hover,
div.gapi-analytics-auth-styles-signinbutton:hover {
  background: #31693d;
}
.gapi-analytics-auth-styles-signinbutton:hover .gapi-analytics-auth-styles-signinbutton-image,
.gapi-analytics-auth-styles-signinbutton:hover span.gapi-analytics-auth-styles-signinbutton-image {
  background-color: #418c51;
}
#embed-api-auth-container {
  margin-bottom: 15px;
  font-size: 11px;
  color: #999;
}
#view-selector-container {
  padding: 0 5px 15px 0;
}
#view-selector-container,
#daterange-selector {
  float: left;
  padding-bottom: 15px;
}
#daterange-selector {
  padding-left: 15px;
  border-left: 1px solid #ccc;
}
.ViewSelector2-item,
.DateRangeSelector-item {
  float: left;
  margin-right: 10px;
}
.input-wrapper label {
  display: block;
  margin-bottom: 3px;
  font-weight: bold;
}
.input-wrapper select {
  height: 30px;
  padding: 7px;
  background: #fcfcfc;
  border: 1px solid #ccc;
}
.input-wrapper input {
  height: 15px;
  padding: 7px;
  background: #fcfcfc;
  border: 1px solid #ccc;
  font: inherit;
}
#allcharts-wrapper {
  padding-top: 15px;
  border-top: 1px solid #ccc;
}
#main-stats-holder.panel-content {
  display: block !important;
  padding: 0;
  min-height: 75px !important;
}
#main-stats-holder.panel-content.page-stats {
  min-height: 113px !important;
}
#main-stats-holder.panel-content.closed .chart-container {
  height: 0;
  margin: 0;
  padding: 0;
}
#main-stats-holder.panel-content .chart-container {
  width: 94%;
  padding: 20px 3% 0 3%;
}
#statistics-overview td {
  border-left: 1px solid #666;
  background: #333;
  color: #ccc;
}
#statistics-overview tr td:first-child {
  border-left: 0;
}
#statistics-overview b {
  display: block;
  color: #fff;
  font-size: 18px;
}
.chart-container {
  margin-bottom: 30px;
}
.chart-container tbody td {
  word-break: break-word;
  -webkit-hyphens: auto;
  hyphens: auto;
}
.chart-header {
  min-height: 20px;
  margin-bottom: 15px;
  padding: 15px;
  border-bottom: 2px solid #3C6C46;
  background: #eee;
}
.chart-title {
  margin: 0;
  color: #333;
  font-weight: bold;
}
.chart-subtitle {
  margin: 0;
  color: #999;
  font-weight: normal;
}
#chart-cities #google-visualization-geomap-0,
#chart-cities > div {
  height: 275px;
}
#chart-cities #google-visualization-geomap-0,
#chart-cities > div > embed {
  width: 100%;
  height: 100%;
}
.legend-container {
  width: 100%;
  margin: 0;
  padding: 0;
  list-style: none;
  text-align: center;
}
.legend-container li {
  display: inline-block;
  padding: 10px;
}
.legend-container i {
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-right: 7px;
}
.table-overview {
  text-align: left;
}
.table-overview th {
  border-bottom: 1px solid #666;
}
/*------ reset ------*/
* {
  margin: 0;
}
body,
html {
  width: 100%;
  height: 100%;
  background: #eeeeee;
}
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 #cccccc;
  height: 0px;
  background: #fff;
  padding: 0;
  margin: 0 0 20px 0;
}
/*------ clearfix ------*/
.clearfix:after {
  content: "\0020";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
}
.clearfix {
  display: inline-block;
}
html[xmlns] .clearfix,
html .clearfix {
  display: block;
}
* html .clearfix {
  height: 1%;
}
/*------ interface ------*/
#cms-wrapper {
  position: relative;
  width: 100%;
  min-height: 100%;
}
#cms-title {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  background: #65b561;
  padding: 20px 30px;
  width: 240px;
  height: 45px;
}
#cms-title h1 {
  font-weight: 800;
  color: #fff;
  text-transform: uppercase;
}
#cms-title h1 small,
#cms-title h1 span {
  font-weight: 800;
  font-size: 12px;
  color: #31693d;
}
#cms-title h1 small {
  display: block;
  color: #333333;
}
#section-title {
  display: flex;
  flex-flow: row wrap;
  justify-content: flex-start;
  align-items: baseline;
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  right: 0;
  background: #fff;
  padding: 30px 40px 30px 340px;
  height: 25px;
}
#section-title h1 {
  flex: 1 0 auto;
}
#section-title small {
  flex: 0 1 auto;
}
#section-title small .fa {
  padding-left: 5px;
}
#section-title h1 .fa {
  padding-right: 15px;
}
#cms-menu {
  display: block;
  position: fixed;
  z-index: 900;
  left: 0;
  top: 0;
  bottom: 0;
  width: 300px;
  background: #333333;
  padding-top: 85px;
  overflow: hidden;
}
.resize {
  margin-left: 300px;
}
/* same width as menu */
#cms-menu nav {
  position: absolute;
  top: 85px;
  bottom: 0;
  left: 0;
  width: 300px;
  overflow: hidden;
}
#cms-menu ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
#cms-menu ul.menu-list {
  padding-bottom: 55px;
}
#cms-menu ul li {
  position: relative;
  z-index: 1;
  display: block;
  border-bottom: 1px solid #1a1a1a;
  overflow: hidden;
}
#cms-menu ul li.accordion ul {
  display: none;
}
#cms-menu ul li .ui-accordion-header {
  box-shadow: -5px 10px 25px -5px #333333;
  z-index: 2;
}
#cms-menu ul li a {
  display: block;
  position: relative;
  z-index: 1;
  background: #333333;
  padding: 20px 30px 20px 100px;
  color: #fff;
  font-weight: 600;
}
#cms-menu ul li a i {
  font-weight: normal;
}
#cms-menu ul li a:hover,
#cms-menu ul li a.active {
  color: #65b561;
  border-color: #65b561;
}
#cms-menu ul li a i {
  display: block;
  position: absolute;
  z-index: 2;
  top: 0;
  left: 0;
  bottom: 0;
  width: 75px;
  background: #4d4d4d;
  border-left: 5px solid #4d4d4d;
  color: #fff;
  text-align: center;
  line-height: 60px;
  transition: all 0.3s ease 0s;
}
#cms-menu ul li ul li {
  border-bottom: 0;
  border-top: 1px solid #1a1a1a;
}
#cms-menu ul li a:hover i,
#cms-menu ul li a.active i {
  border-color: #65b561 !important;
}
#cms-menu ul li ul li a {
  background-color: #4d4d4d;
}
#cms-menu ul li ul li a i {
  background-color: #666666;
  border-color: #666666;
}
#menu-toggle {
  display: block;
  position: absolute;
  z-index: 100;
  top: 50%;
  margin-top: -16px;
  right: -16px;
  width: 32px;
  height: 32px;
  color: #fff;
  text-align: center;
  line-height: 32px;
  background-color: #cccccc;
  border-radius: 50%;
  -moz-background-clip: padding;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
}
#menu-toggle:hover {
  background-color: #333333;
}
#account-widget h4 {
  display: block;
  position: relative;
  z-index: 1;
  background: #31693d;
  border-bottom: 1px solid #fff !important;
  height: 58px;
  padding: 22px 30px 0 100px;
  margin: 0;
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  outline: none;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#account-widget h4.ui-accordion-header:after {
  font-family: "Font Awesome 5 Free";
  font-size: 12px;
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: 15px;
  height: 20px;
  content: "\f078";
  margin-top: -10px;
}
#account-widget h4.ui-accordion-header-active:after {
  content: "\f077";
}
#account-widget h4 small {
  display: block;
  color: #65b561;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
#account-widget img {
  width: 80px;
  height: 80px;
  position: absolute;
  top: 0;
  left: 0;
}
#account-widget ul {
  border-bottom: 1px solid #fff !important;
}
#account-widget ul li {
  border-top: 1px solid #214629 !important;
}
#account-widget ul li a {
  background-color: #31693d !important;
}
#account-widget ul li a i {
  background-color: #397a47 !important;
  border-color: #397a47 !important;
}
#cms-content {
  position: relative;
  z-index: 1;
  padding: 125px 40px;
}
#cms-content.fixed {
  position: fixed;
}
.cms-overview {
  width: 400px;
}
.cms-overview table a {
  color: #333333;
}
.cms-overview table a:hover {
  color: #65b561;
}
.dashboard-box {
  width: 200px;
  height: 170px;
  margin: 0 20px 20px 0;
  padding: 20px 0 0 0;
  background: #fff;
  box-shadow: 0px 0px 4px 0px rgba(11, 11, 11, 0.35);
}
.panel {
  display: block;
  clear: both;
  margin-bottom: 20px;
  background: #fff;
  box-shadow: 0px 0px 4px 0px rgba(11, 11, 11, 0.35);
}
.panel.f_left,
.panel.f_right {
  clear: none;
}
.panel.f_left {
  margin-right: 20px;
}
.panel.f_right {
  margin-left: 20px;
}
.panel-header {
  display: block;
  padding: 15px 20px;
  line-height: 30px;
  background: #ecf6ec;
  font-weight: 800;
  text-transform: uppercase;
}
.panel-header form {
  line-height: 40px;
}
.panel-header form .input,
.panel-header form .select {
  text-transform: none;
}
.panel-header .panel-toggle {
  font-size: 16px;
}
.panel-header .panel-switch {
  margin: 0 20px 0 0;
  float: right;
  line-height: 10px;
}
.panel-header .panel-switch label:first-child {
  padding: 0 10px 0 0;
  line-height: 30px;
  height: auto;
  float: left;
  display: block;
}
.panel-content {
  padding: 20px 20px 10px;
  overflow: hidden;
}
.panel-content.autoscroll {
  overflow: auto;
}
.panel-content.collapsed {
  display: none;
}
table {
  width: 100%;
}
table tr {
  background: #fff;
}
table tr:nth-child(2n) {
  background: #eeeeee;
}
table tr.first-child {
  box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.5) inset;
}
table tr.first-child:nth-child(2n) {
  box-shadow: 0 10px 10px -10px rgba(0, 0, 0, 0.35) inset;
}
table tr.last-child {
  box-shadow: 0 -10px 10px -10px rgba(0, 0, 0, 0.5) inset;
}
table tr.last-child:nth-child(2n) {
  box-shadow: 0 -10px 10px -10px rgba(0, 0, 0, 0.35) inset;
}
table tr.first-child.last-child {
  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 tr.first-child.last-child:nth-child(2n) {
  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 tr.bolder td,
table tr.bold td {
  font-weight: inherit;
}
table th {
  background: #cccccc;
  padding: 5px 20px;
  text-align: left;
  font-weight: 800;
  height: 50px;
  text-transform: uppercase;
}
table td {
  padding: 10px 20px;
}
tr .sticky-col {
  position: relative;
}
tr .sticky-col:first-child {
  box-shadow: 3px 0px 3px 0px rgba(11, 11, 11, 0.1);
}
tr .sticky-col:last-child {
  box-shadow: -3px 0px 3px 0px rgba(11, 11, 11, 0.1);
}
tr .sticky-col[style*="left: 0px"] {
  box-shadow: none;
  text-shadow: none;
}
th.sticky-col {
  z-index: 1;
  box-shadow: none !important;
  text-shadow: none !important;
}
.handle {
  position: relative;
}
.handle:hover {
  cursor: move;
  cursor: grab;
}
.handle:active,
.ui-sortable-helper {
  cursor: move;
  cursor: grabbing;
}
.ui-sortable-helper {
  border: 1px solid #aaa;
  transform-origin: left;
  transition: transform 0.3s;
  opacity: 0.9;
  background: #ECF6EC !important;
}
.ui-sortable-helper[data-level] td {
  padding-top: 0 !important;
  padding-bottom: 0 !important;
}
table {
  position: relative;
}
.highlight {
  height: 70px;
  position: relative !important;
}
.highlight:after {
  content: "";
  position: absolute;
  display: inline-block;
  height: inherit;
  width: 100%;
  left: 0;
  box-sizing: border-box;
  border: 1px dashed #1bb02b;
  z-index: 9;
}
.fa-arrows-alt {
  color: #999;
}
[data-level='1']:after {
  left: 0px;
}
[data-level='2']:after {
  left: 30px;
}
[data-level='3']:after {
  left: 60px;
}
[data-level='4']:after {
  left: 90px;
}
[data-level='5']:after {
  left: 120px;
}
.highlight td {
  display: none;
}
table td {
  transition: background-color 0.5s;
}
table.nowrap,
td.nowrap,
th.nowrap {
  white-space: nowrap;
}
tr.highlight:nth-child(n) {
  background-color: #fff;
}
.highlight ~ tr:nth-child(2n + 1) {
  background: #eee;
}
.highlight ~ tr:nth-child(2n) {
  background-color: white;
}
[data-level] td {
  padding: 15px 20px;
}
table.sortable:not(.tablesorter) [data-level] td:first-child + td + td:before,
table.helper-sortable [data-level] td:first-child + td + td:before {
  content: "\f3bf";
  display: inline-block;
  margin-right: 10px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 12px;
  color: #65b561;
  transform: rotate(90deg);
}
table.sortable:not(.tablesorter) [data-level='1'] td:first-child + td + td:before,
table.helper-sortable [data-level='1'] td:first-child + td + td:before {
  content: "";
  margin-right: 0;
}
table.sortable:not(.tablesorter) [data-level='2'] td:first-child + td + td,
table.helper-sortable [data-level='2'] td:first-child + td + td {
  padding-left: 25px;
}
table.sortable:not(.tablesorter) [data-level='3'] td:first-child + td + td,
table.helper-sortable [data-level='3'] td:first-child + td + td {
  padding-left: 50px;
}
table.sortable:not(.tablesorter) [data-level='4'] td:first-child + td + td,
table.helper-sortable [data-level='4'] td:first-child + td + td {
  padding-left: 75px;
}
table.sortable:not(.tablesorter) [data-level='5'] td:first-child + td + td,
table.helper-sortable [data-level='5'] td:first-child + td + td {
  padding-left: 100px;
}
.tablesorter .tablesorter-header {
  cursor: pointer;
  outline: none;
  position: relative;
}
.tablesorter .sorter-false {
  cursor: default;
}
.tablesorter .tablesorter-headerAsc,
.tablesorter .tablesorter-headerDesc {
  background: #bfbfbf;
}
.tablesorter .tablesorter-headerAsc:after,
.tablesorter .tablesorter-headerDesc:after {
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 16px;
  position: absolute;
  top: 50%;
  right: 8px;
  height: 20px;
}
.tablesorter .tablesorter-headerAsc:after {
  content: "\f0d8";
  margin-top: -10px;
}
.tablesorter .tablesorter-headerDesc:after {
  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-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 16px;
  text-indent: 0;
  margin-top: -16px;
}
.tablesorter .show:after {
  content: "\f00c";
  color: #65b561;
}
.tablesorter .hide:after {
  content: "\f00d";
  color: #333333;
}
.pager {
  display: block;
  position: relative !important;
  top: auto !important;
  padding: 10px 20px;
  background: #fff;
  border-top: 1px solid #eeeeee;
  text-align: center;
}
.pager .button-sm {
  float: left;
  display: block;
  width: 10px;
  text-align: center;
  margin: 0 1px;
}
.pager .button-sm.hoverable {
  outline-offset: -3px;
  outline: 3px dashed #65b561;
  transition: background-color 0.3s ease 0s;
}
.pager .button-sm.dragged-over {
  background-color: #65b561;
  outline-color: #31693d;
}
.pager .button-sm.disabled {
  background: #eeeeee;
  cursor: default;
  outline: 0;
}
.pager .pagedisplay {
  line-height: 40px;
  margin-right: 10px;
}
.pager .pagebuttons {
  width: 240px;
  margin: 0 auto;
}
.pager .gotoPage {
  float: left;
  display: block;
  width: 70px;
  height: 40px;
  margin: 0 1px;
}
.gravatar-link {
  position: relative;
  display: block;
}
.gravatar {
  display: block;
  width: 40px;
  height: 40px;
  border: 1px solid #cccccc;
  overflow: hidden;
}
.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(204, 0, 0, 0.75);
  color: #fff;
  text-align: center;
  line-height: 40px;
}
div.ppt {
  height: 0;
  margin: 0;
}
.pp_pic_holder {
  box-shadow: 0px 0px 4px 0px rgba(11, 11, 11, 0.35);
}
div.light_square a.pp_close {
  color: #fff;
  width: 15px;
  background: none;
  text-indent: 0;
  line-height: 15px;
}
div.light_square a.pp_close:before {
  position: absolute;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 16px;
  content: "\f00d";
  color: #65b561;
  transition: all 0.3s ease 0s;
}
div.light_square a.pp_close:hover:before {
  color: #31693d;
}
#site-pages .page-name i {
  margin-right: 5px;
  color: #999;
  vertical-align: middle;
}
#sitemap-reference {
  padding: 0;
}
#sitemap-reference li {
  margin-top: 5px;
}
#sitemap-reference .sitemap-button {
  font-size: 14px;
}
#sitemap-reference .sitemap-button i {
  margin-right: 0;
}
.sitemap-pages tr:not(.level-1) .page-name:before {
  content: "\f3bf";
  display: inline-block;
  margin-right: 10px;
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  font-size: 12px;
  color: #65b561;
  transform: rotate(90deg);
}
.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;
}
.leadin-field-options-table {
  padding: 10px 0;
}
.leadin-field-options-table tr:nth-child(n) {
  background: transparent;
}
#cms-footer {
  position: fixed;
  z-index: 900;
  background: #fff;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 20px 40px;
  text-align: left;
}
#cms-footer .delete {
  margin-right: 15px;
}
/*------ responsive imports ------*/
@media all and (max-width: 1000px) {
  /* 
	tablet.less
	
	Project: PACMS v3.0
	
*/
  /*------ interface ------*/
  .resize {
    margin-left: 0 !important;
  }
  #cms-title {
    right: 0;
    width: auto;
    padding-left: 60px;
  }
  #section-title {
    position: relative;
    z-index: 100;
    padding: 30px;
    width: 100%;
    left: -30px;
    margin-bottom: 40px;
  }
  #menu-toggle {
    right: auto;
    left: 15px;
  }
  #cms-content {
    padding: 85px 30px 110px;
  }
  .panel-header .panel-switch {
    float: none;
    clear: both;
  }
  /*------ dialog box ------*/
  .ui-dialog .ui-dialog-content {
    max-height: 400px !important;
  }
}
@media all and (max-width: 480px) {
  /* 
	mobile.less
	
	Project: PACMS v3.0
	
*/
  /*------ interface ------*/
  #section-title {
    padding: 30px 15px;
    width: 100%;
    left: -15px;
    margin-bottom: 30px;
  }
  #cms-content {
    padding: 85px 15px 105px;
  }
  .panel-content {
    padding: 15px 15px 5px;
  }
  /*------ dialog box ------*/
  .ui-dialog .ui-dialog-content {
    max-height: 300px !important;
  }
}
