/* Base Styles for WordPress Toolbar */
html.wp-toolbar {
  background: linear-gradient(135deg, #FCFCFF 0%, #F5F5FF 100%);
  background: transparent;
}
@media only screen and (min-width: 782px) {
  html.wp-toolbar {
    padding-top: 36px;
  }
}
@media only screen and (min-width: 961px) {
  html.wp-toolbar {
    padding-top: 61px;
  }
}

/* Walup Settings Customization */
.walup-settings {
  font-size: 13px;
}
.walup-settings label, 
.walup-settings p {
  margin-bottom: 10px;
}
.walup-settings .pageSection h2 {
  margin-bottom: 30px;
}
.walup-settings .pageSection section {
  border-bottom: 1px solid #eeecec;
  margin: 0 0 30px;
  padding: 0 0 30px;
}
.walup-settings .pageSection.hide {
  display: none;
}
.walup-settings .pageSection h3 {
  font-size: 17px;
}
.walup-settings .pageSection ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.walup-settings .pageSection ul li {
  margin-bottom: 15px;
}
.walup-settings .pageSection ul li:last-child {
  margin-bottom: 0;
}
.walup-settings .pageSection .button {
  margin-right: 10px;
}
.walup-settings .pageSection .imageDelete {
  line-height: 26px;
}
.walup-settings .pageSection .imageContainer {
  display: block;
  max-width: 300px;
}
.walup-settings .pageSection .imageContainer img {
  background: #ccc;
  border-radius: 2px;
  box-sizing: border-box;
  max-width: 100%;
  height: auto;
  padding: 10px;
}
.walup-settings .pageSection .customFooterText {
  display: block;
  height: 100px;
  max-width: 400px;
  width: 100%;
}
.walup-settings .pageSection .importFail, 
.walup-settings .pageSection .importSuccess {
  padding: 10px;
  font-weight: bold;
  color: #f6f8fa;
}
.walup-settings .pageSection .importFail {
  background: #c00;
}
.walup-settings .pageSection .importSuccess {
  background: #393;
}
.walup-settings input[type=text], 
.walup-settings textarea {
  display: block;
  max-width: 400px;
  width: 100%;
  margin: 4px 0 0;
}
.walup-settings textarea {
  height: 100px;
}
.walup-settings .walup__select {
  font-size: 13px;
  font-weight: 400;
  margin-left: 10px;
}
.walup-settings .walup__licenseActive, 
.walup-settings .walup__licenseFailed, 
.walup-settings .walup__licenseInvalid, 
.walup-settings .walup__licenseRemoved, 
.walup-settings .walup__licenseServer, 
.walup-settings .walup__licenseSuccess {
  padding: 4px 8px;
  font-weight: bold;
  color: #f6f8fa;
  max-width: 384px;
}
.walup-settings .walup__licenseFailed, 
.walup-settings .walup__licenseInvalid {
  background: #c00;
}
.walup-settings .walup__licenseServer {
  background: #c60;
}
.walup-settings .walup__licenseActive {
  background: #06c;
}
.walup-settings .walup__licenseSuccess {
  background: #090;
}

/* Admin Menu Customization */
#adminmenu {
  background: transparent;
  width: 200px;
}
#adminmenu div.wp-menu-image {
  float: right;
  margin: 0 13px;
  border-bottom: 1px solid #949595;
  border-radius: 10px;
  background-color: #F5F5FF !important; /* Custom background color for icon container */
}
#adminmenu .wp-menu-image img {
  padding: 9px 0 0;
  background-color: #7200ff;
  border: 4px solid #7200ff;
  border-radius: 20px;
  width: 32px;
  height: 32px;
  object-fit: cover; /* Ensures the image fits within the defined size without distortion */
}

/* Ensure icons maintain color and size in folded state */
.folded #adminmenu {
  width: 60px;
}
.folded #adminmenu div.wp-menu-image {
  float: none;
  margin: 0;
  border: none;
  position: absolute;
  z-index: 25;
  width: 32px;
  height: 32px;
  display: flex;
  justify-content: center !important;
  align-items: center !important;
  background-color: #F5F5FF !important; /* Custom background color for icon container in folded state */
}
.folded #adminmenu .wp-menu-image img {
  padding: 0;
  background-color: #F5F5FF !important;
  border: 4px solid #7200ff !important;
  border-radius: 20px;
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
  color: #7200ff !important; /* Custom color for icons in folded state */
  transition: all 0.3s ease;
}
/* Custom Icon Styling for Admin Menu */
#adminmenu div.wp-menu-image {
  background-color: #F5F5FF !important; /* Set background color for the icon container */
  border-radius: 10px;
}

#adminmenu div.wp-menu-image:before {
  color: #7200ff !important; /* Icon color on load */
}

#adminmenu li.menu-top:hover div.wp-menu-image,
#adminmenu li.opensub > a.menu-top div.wp-menu-image,
#adminmenu li.wp-has-current-submenu div.wp-menu-image,
#adminmenu a.current:hover div.wp-menu-image,
#adminmenu li.current div.wp-menu-image,
#adminmenu li.wp-has-current-submenu a:focus div.wp-menu-image,
#adminmenu li.wp-has-current-submenu.opensub div.wp-menu-image,
#adminmenu li:hover div.wp-menu-image,
#adminmenu li a:focus div.wp-menu-image,
#adminmenu li.opensub div.wp-menu-image {
  background-color: #7200ff !important; /* Icon background color on hover, focus, and active */
}

#adminmenu li.menu-top:hover div.wp-menu-image:before,
#adminmenu li.opensub > a.menu-top div.wp-menu-image:before,
#adminmenu li.wp-has-current-submenu div.wp-menu-image:before,
#adminmenu a.current:hover div.wp-menu-image:before,
#adminmenu li.current div.wp-menu-image:before,
#adminmenu li.wp-has-current-submenu a:focus div.wp-menu-image:before,
#adminmenu li.wp-has-current-submenu.opensub div.wp-menu-image:before,
#adminmenu li:hover div.wp-menu-image:before,
#adminmenu li a:focus div.wp-menu-image:before,
#adminmenu li.opensub div.wp-menu-image:before {
  color: #F5F5FF !important; /* Icon color on hover, focus, and active */
}

/* Force icon colors to remain consistent across states */
#adminmenu .wp-menu-image img:hover, 
#adminmenu .wp-menu-image img:active, 
#adminmenu .wp-menu-image img:focus {
  background-color: #7200ff !important;
  border-color: #F5F5FF !important;
  color: #F5F5FF !important; /* Custom color for icons on interaction */
}

#adminmenu .wp-has-current-submenu .wp-menu-image img, 
#adminmenu .current .wp-menu-image img {
  background-color: #7200ff !important;
  border-color: #F5F5FF !important;
  color: #F5F5FF !important; /* Custom color for icons in current state */
}

#adminmenu .wp-has-current-submenu .wp-menu-image img:hover, 
#adminmenu .current .wp-menu-image img:hover, 
#adminmenu .wp-has-current-submenu .wp-menu-image img:active, 
#adminmenu .current .wp-menu-image img:active, 
#adminmenu .wp-has-current-submenu .wp-menu-image img:focus, 
#adminmenu .current .wp-menu-image img:focus {
  background-color: #7200ff !important;
  border-color: #F5F5FF !important;
  color: #F5F5FF !important; /* Custom color for icons on interaction in current state */
}
/* Additional Styling for Admin Menu */
#adminmenu .wp-has-current-submenu .wp-submenu {
  background: #7200ff;
  border-radius: 0 30px 30px 0;
}
#adminmenu .wp-submenu a {
  color: #f6f8fa;
}
#adminmenu .wp-submenu a:hover {
  color: #b9ecff;
}
#adminmenu .wp-has-current-submenu ul > li > a, 
.folded #adminmenu li.menu-top .wp-submenu > li > a {
  color: #fff;
  padding: 5px 12px;
  margin-left: 12px;
  padding-left: 12px;
  width: 80%;
  z-index: 50;
  border-radius: 10px;
}

/* Admin Menu Specifics */
#adminmenu .wp-has-current-submenu .wp-submenu .wp-submenu-head, 
#adminmenu .wp-submenu .wp-submenu-head {
  color: #f6f8fa;
  font-size: 13px;
}
#adminmenu li.menu-top:hover, 
#adminmenu li.menu-top:hover a, 
#adminmenu li.opensub > a.menu-top, 
#adminmenu li > a.menu-top:focus {
  background: transparent;
}
#adminmenu .awaiting-mod, 
#adminmenu .update-plugins, 
#sidemenu li a span.update-plugins {
  background-color: #d54e21;
  color: #f6f8fa;
}
#adminmenu li.wp-menu-separator {
  border-top: 1px solid #f3f3f3;
  height: 1px;
  margin: 14px auto 15px;
  background-color: #fff;
}
.folded #adminmenu li.wp-menu-separator {
  margin: 8px auto 9px;
}
@media only screen and (max-width: 960px) {
  .auto-fold #adminmenu li.wp-menu-separator {
    margin: 8px auto 9px;
  }
}
#adminmenu #collapse-menu {
  border-top: 1px solid rgba(0, 0, 0, .2);
  margin: 14px auto 15px;
  padding: 12px 20px 12px 9px;
  transition-property: color;
  border: none;
}
.folded #adminmenu #collapse-menu {
  padding: 12px 0;
}
@media only screen and (max-width: 960px) {
  .auto-fold #adminmenu #collapse-menu {
    padding: 12px 0;
  }
}

/* Login Page */
.login {
  background: #f6f8fa;
}
.login form {
  background: #eeecec;
  border-radius: 3px;
  padding: 26px 12px 30px;
}
.mobile #login .message, 
.mobile #login form, 
.mobile #login_error {
  margin: 10px 15px;
}
.login form .forgetmenot {
  margin-top: 10px;
}
.login form .submit {
  margin: 10px 0 0;
}
.login input[type=checkbox], 
.login input[type=password], 
.login input[type=text] {
  border: 1px solid transparent;
  box-shadow: none;
}

/* Dashboard and Widgets */
#dashboard-widgets-wrap {
  background: transparent;
}
#dashboard-widgets-wrap .postbox {
  background: #eeecec;
  border-radius: 2px;
}
#dashboard-widgets-wrap h3 {
  color: #333;
  font-size: 13px;
  font-weight: 400;
  padding: 12px;
}
#dashboard-widgets-wrap .postbox .handlediv {
  width: 23px;
}

/* Footer */
#wpfooter {
  background: transparent;
  color: #999;
}
#wpfooter a {
  color: #999;
  text-decoration: underline;
}
#wpfooter a:hover {
  color: #7200ff;
}

/* Plugins or Theme Specific Styles */
.walup--admin .caldera-editor-header {
  top: 71px;
}
.walup--admin .caldera-editor-header.caldera-editor-subnav {
  top: 113px;
}
.walup--admin .caldera-config-editor-side-panel {
  top: 201px;
}
.walup--admin .caldera-config-editor-main-panel > h3, 
.walup--admin .caldera-editor-body > h3 {
  top: 157px;
}
@media only screen and (min-width: 961px) {
  .walup--admin #e-admin-top-bar-root {
    width: calc(100% - 200px);
  }
  .walup--admin .woocommerce-layout__header {
    top: 61px;
    width: calc(100% - 200px);
  }
}

/* Remove Display of Whitelabel Ads */
.wlcms_wrapper .wlcms-advert-wrapper img {
  display: none;
}

/* Additional Styles from the provided CSS */
body {
  background-color: #f6f8fa;
}
#wpwrap {
  background: transparent;
}
#wpcontent {
  margin-left: 200px;
  padding-left: 60px;
  background: #fcfcff;
}
@media screen and (max-width: 782px) {
  #wpcontent, 
  .auto-fold #wpcontent {
    padding-left: 20px;
  }
}
.jetpack-pagestyles #wpcontent {
  margin-left: 200px
}
.jetpack-pagestyles .modal {
  margin-left: 200px;
  top: 81px
}
@media screen and (max-width:782px) {
  .wp-responsive-open #wpbody {
    right: -200px
  }
}
.wrap {
  margin: 40px 60px 0 0
}
@media screen and (max-width:782px) {
  .wrap {
    margin: 20px 20px 0 0
  }
}
.edit-tags-php .wrap {
  margin: 40px 0 0 0
}
.edit-tags-php .wrap:after, .edit-tags-php .wrap:before {
  content: " ";
  display: table
}
.edit-tags-php .wrap:after {
  clear: both
}
.comment-php .wrap, .post-new-php .wrap, .post-php .wrap {
  margin: 0
}
@media only screen and (max-width:850px) {
  .comment-php .wrap, .post-new-php .wrap, .post-php .wrap {
    margin: 0 60px 0 0
  }
}
@media screen and (max-width:782px) {
  .comment-php .wrap, .post-new-php .wrap, .post-php .wrap {
    margin: 0 20px 0 0
  }
}
#wpadminbar {
  background: #fcfcff;
  color: #ccc;
  height: 61px;
  left: 200px;
  padding: 0 10px;
  right: 0;
  width: auto;
  z-index: 20;
}
@media screen and (max-width:960px) {
  #wpadminbar {
    height: 36px
  }
}
@media screen and (max-width:782px) {
  #wpadminbar {
    padding: 0
  }
}
.folded #wpadminbar {
  height: 36px;
  left: 36px
}
@media only screen and (max-width:960px) {
  #wpcontent #wpadminbar {
    left: 200px
  }
  .auto-fold #wpcontent #wpadminbar {
    left: 36px
  }
}
@media screen and (max-width:782px) {
  .folded #wpadminbar {
    height: 46px;
    left: 0
  }
  .auto-fold #wpcontent #wpadminbar {
    left: 0
  }
}
#wpadminbar .ab-top-menu > .menupop > .ab-sub-wrapper {
  padding: 6px 0
}
#wpadminbar .ab-submenu {
  padding: 0
}
#wpadminbar .ab-submenu li {
  padding: 0 0
}
.focus-on #wpadminbar {
  -webkit-transition-duration: .6s;
  transition-duration: .6s;
  -webkit-transition-property: -webkit-transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out;
  -webkit-transform: tranwalupY(-100%);
  -ms-transform: tranwalupY(-100%);
  transform: tranwalupY(-100%)
}
.focus-off #wpadminbar {
  -webkit-transform: tranwalupY(0);
  -ms-transform: tranwalupY(0);
  transform: tranwalupY(0);
  -webkit-transition-duration: .2s;
  transition-duration: .2s;
  -webkit-transition-property: -webkit-transform;
  transition-property: transform;
  -webkit-transition-timing-function: ease-in-out;
  transition-timing-function: ease-in-out
}
.focus-on #post-body-content > h1 {
  opacity: 0;
  transition: opacity .6s ease-in-out
}
.focus-off #post-body-content > h1 {
  opacity: 1;
  transition: opacity .6s ease-in-out
}
#wpadminbar .ab-top-menu > li.hover > .ab-item, #wpadminbar .ab-top-menu > li:hover > .ab-item, #wpadminbar .ab-top-menu > li > .ab-item:focus, #wpadminbar .menupop .ab-sub-wrapper, #wpadminbar .quicklinks .menupop ul.ab-sub-secondary, #wpadminbar .quicklinks .menupop ul.ab-sub-secondary .ab-submenu, #wpadminbar.nojq .quicklinks .ab-top-menu > li > .ab-item:focus, #wpadminbar:not(.mobile) .ab-top-menu > li:hover > .ab-item, #wpadminbar:not(.mobile) .ab-top-menu > li > .ab-item:focus, .wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle a {
  background: #f6f8fa
}
#wpadminbar #adminbarsearch:before, #wpadminbar .ab-icon:before, #wpadminbar .ab-item:before, #wpadminbar a.ab-item, #wpadminbar > #wp-toolbar span.ab-label, #wpadminbar > #wp-toolbar span.noticon, .wp-responsive-open #wpadminbar #wp-admin-bar-menu-toggle .ab-icon:before {
  color: #888
}
#wpadminbar .ab-item, #wpadminbar a.ab-item, #wpadminbar>#wp-toolbar span.ab-label, #wpadminbar>#wp-toolbar span.noticon {
color: #888;
}
#wpadminbar .ab-top-menu > li.hover > .ab-item, #wpadminbar .ab-top-menu > li:hover > .ab-item, #wpadminbar li .ab-item:focus:before, #wpadminbar li a:focus .ab-icon:before, #wpadminbar li.hover .ab-icon:before, #wpadminbar li.hover .ab-item:before, #wpadminbar li:hover #adminbarsearch:before, #wpadminbar li:hover .ab-icon:before, #wpadminbar li:hover .ab-item:before, #wpadminbar.nojq .quicklinks .ab-top-menu > li > .ab-item:focus, #wpadminbar:not(.mobile) .ab-top-menu > li:hover > .ab-item, #wpadminbar:not(.mobile) .ab-top-menu > li > .ab-item:focus, #wpadminbar:not(.mobile) > #wp-toolbar a:focus span.ab-label, #wpadminbar:not(.mobile) > #wp-toolbar li:hover span.ab-label, #wpadminbar > #wp-toolbar a:focus span.ab-label, #wpadminbar > #wp-toolbar li.hover span.ab-label, #wpadminbar > #wp-toolbar li:hover span.ab-label {
  color: #7200ff
}
#wpadminbar .ab-submenu .ab-item, #wpadminbar .quicklinks .menupop ul li a, #wpadminbar .quicklinks .menupop ul li a strong, #wpadminbar .quicklinks .menupop.hover ul li a, #wpadminbar.nojs .quicklinks .menupop:hover ul li a {
  color: #333
}
#wpadminbar .quicklinks .menupop ul li a:focus, #wpadminbar .quicklinks .menupop ul li a:focus strong, #wpadminbar .quicklinks .menupop ul li a:hover, #wpadminbar .quicklinks .menupop ul li a:hover strong, #wpadminbar .quicklinks .menupop.hover ul li a:focus, #wpadminbar .quicklinks .menupop.hover ul li a:hover, #wpadminbar li .ab-item:focus:before, #wpadminbar li a:focus .ab-icon:before, #wpadminbar li.hover .ab-icon:before, #wpadminbar li.hover .ab-item:before, #wpadminbar li:hover #adminbarsearch:before, #wpadminbar li:hover .ab-icon:before, #wpadminbar li:hover .ab-item:before, #wpadminbar.nojs .quicklinks .menupop:hover ul li a:focus, #wpadminbar.nojs .quicklinks .menupop:hover ul li a:hover {
  color: #7200ff
}
#wpcontent #wp-admin-bar-root-default > li > a, #wpcontent #wp-admin-bar-root-default > li > button, #wpcontent #wp-admin-bar-root-default > li > div, #wpcontent #wp-admin-bar-top-secondary > li > a, #wpcontent #wp-admin-bar-top-secondary > li > button, #wpcontent #wpadminbar #wp-admin-bar-wp-logo > .ab-item {
  padding: 14px 10px 15px 10px
}
.folded #wpcontent #wp-admin-bar-root-default > li > a, .folded #wpcontent #wp-admin-bar-root-default > li > button, .folded #wpcontent #wp-admin-bar-root-default > li > div, .folded #wpcontent #wp-admin-bar-top-secondary > li > a, .folded #wpcontent #wp-admin-bar-top-secondary > li > button, .folded #wpcontent #wpadminbar #wp-admin-bar-wp-logo > .ab-item {
  padding: 2px 7px 2px 7px
}
@media screen and (max-width:960px) {
  #wpcontent #wp-admin-bar-root-default > li > a, #wpcontent #wp-admin-bar-root-default > li > button, #wpcontent #wp-admin-bar-root-default > li > div, #wpcontent #wp-admin-bar-top-secondary > li > a, #wpcontent #wp-admin-bar-top-secondary > li > button, #wpcontent #wpadminbar #wp-admin-bar-wp-logo > .ab-item {
    padding: 2px 7px 2px 7px
  }
}
@media screen and (max-width:782px) {
  #wpcontent #wp-admin-bar-root-default > li > a, #wpcontent #wp-admin-bar-root-default > li > button, #wpcontent #wp-admin-bar-root-default > li > div, #wpcontent #wp-admin-bar-top-secondary > li > a, #wpcontent #wp-admin-bar-top-secondary > li > button, #wpcontent #wpadminbar #wp-admin-bar-wp-logo > .ab-item, .folded #wpcontent #wp-admin-bar-root-default > li > a, .folded #wpcontent #wp-admin-bar-root-default > li > button, .folded #wpcontent #wp-admin-bar-root-default > li > div, .folded #wpcontent #wp-admin-bar-top-secondary > li > a, .folded #wpcontent #wp-admin-bar-top-secondary > li > button, .folded #wpcontent #wpadminbar #wp-admin-bar-wp-logo > .ab-item {
    padding: 0
  }
}
#wpcontent #wp-admin-bar-new-content .ab-label, #wpcontent #wp-admin-bar-site-name > a.ab-item {
  text-indent: -999em
}
#wpcontent #wpadminbar > #wp-toolbar #wp-admin-bar-new-content .ab-icon, .wp-admin #wpcontent #wpadminbar #wp-admin-bar-site-name > .ab-item:before {
  text-indent: 0;
  margin-right: 0
}
.wp-admin #wpcontent #wpadminbar #wp-admin-bar-site-name > .ab-item {
  width: 20px
}
@media screen and (max-width:782px) {
  .wp-admin #wpcontent #wpadminbar #wp-admin-bar-site-name > .ab-item {
    width: 52px
  }
}
#wpcontent #wp-admin-bar-root-default #wp-admin-bar-WPML_ALS {
  color: #888;
  padding: 14px 10px 15px 10px
}
.folded #wpcontent #wp-admin-bar-root-default #wp-admin-bar-WPML_ALS {
  padding: 2px 7px 2px 7px
}
@media screen and (max-width:960px) {
  #wpcontent #wp-admin-bar-root-default #wp-admin-bar-WPML_ALS {
    padding: 2px 7px 2px 7px
  }
}
@media screen and (max-width:782px) {
  #wpcontent #wp-admin-bar-root-default #wp-admin-bar-WPML_ALS, .folded #wpcontent #wp-admin-bar-root-default #wp-admin-bar-WPML_ALS {
    padding: 0
  }
}
.media-upload-form div.error, .wrap div.error, .wrap div.updated {
  -webkit-box-shadow: none;
  box-shadow: none;
  margin: 32px 0 12px 0
}
.branch-4-8 .wrap div.error, .branch-4-8 .wrap div.updated, .branch-4-9 .wrap div.error, .branch-4-9 .wrap div.updated {
  margin-right: 359px
}
.media-upload-form div.error + div.error, .wrap div.error + div.error, .wrap div.updated + div.updated {
  margin: 0 0 12px 0
}
div.error, div.updated {
  background: #ebf7e3
}
#adminmenuback {
  background-color: #f5f8fa;
  border-right: solid 0.5em #f3f3f3;
  width: 200px;
  z-index: 200;
}
.wp-responsive-open #adminmenuback {
  width: 200px
}
#adminmenuwrap {
  bottom: auto !important;
  position: relative !important;
  top: 0 !important
}
@media only screen and (min-width:782px) {
  #adminmenuwrap {
    margin-top: -36px
  }
}
@media only screen and (min-width:961px) {
  #adminmenuwrap {
    margin-top: -61px
  }
}
.sticky-menu #adminmenuwrap {
  position: fixed !important;
  top: 0 !important
}
@media only screen and (min-width:782px) {
  .sticky-menu #adminmenuwrap {
    margin-top: 0
  }
}
@media only screen and (min-width:961px) {
  .sticky-menu #adminmenuwrap {
    margin-top: 0
  }
}
.wp-responsive-open #adminmenuwrap {
  position: absolute !important
}
#adminmenu, #adminmenuwrap {
  background: 0 0;
  width: 200px;
  z-index: 999;
}
.wp-responsive-open #adminmenu, .wp-responsive-open #adminmenuwrap {
  width: 200px;
}
#adminmenu {
  margin: 12px 0 0 0
}
.folded #adminmenu {
  margin: 0
}
@media only screen and (max-width:960px) {
  .auto-fold #adminmenu {
    margin: 0
  }
}
@media only screen and (max-width:782px) {
  .auto-fold #adminmenu {
    margin: 12px 0 0 0;
    top: 0
  }
  .auto-fold #adminmenu.adminLogoPresent {
    padding-top: 0;
    position: relative
  }
}
@media only screen and (max-width:600px) {
  .auto-fold #adminmenu.adminLogoPresent {
    padding-top: 46px
  }
}
.folded #adminmenu .menu-icon-dashboard a.menu-top.menu-top-first {
  height: 35px;
  margin: 0 0 -8px 0
}
@media only screen and (max-width:960px) {
  .auto-fold #adminmenu .menu-icon-dashboard a.menu-top.menu-top-first {
    height: 35px;
    margin: 0 0 -8px 0
  }
}
@media only screen and (max-width:782px) {
  .auto-fold #adminmenu .menu-icon-dashboard a.menu-top.menu-top-first {
    height: auto;
    margin: 0
  }
}
@media only screen and (max-width:960px) {
  #adminmenuback {
    border-right: solid 0.2em #7200ff;
  }
  #adminmenu, #adminmenuwrap {
    background: #f6f8fa;
  }
}
@media screen and (max-width:782px) {
  #adminmenuback {
    border-right: solid 0.2em #f3f3f3;
  }
  #adminmenu {
    padding-top: 46px
  }
}
#adminmenu .wp-submenu {
  border-radius: 0 2px 2px 0;
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 0 0 12px 0;
  width: 200px;
  z-index: 9999
}
@media only screen and (max-width:782px) {
  .wp-responsive-open #adminmenu .wp-submenu {
    background: 0 0
  }
}
#adminmenu .opensub .wp-submenu {
  padding: 8px 0
}
#adminmenu .wp-submenu a {
  font-size: 13px
}
#adminmenu .wp-has-current-submenu.opensub.wp-menu-open .wp-submenu, #adminmenu .wp-menu-open.opensub .wp-submenu, #adminmenu a.wp-has-current-submenu.wp-menu-open:focus + .wp-submenu, .no-js li.wp-has-current-submenu.wp-menu-open:hover .wp-submenu {
  background: 0 0;
  padding: 0 0 12px 0
}
.folded.sticky-menu #adminmenu .wp-has-current-submenu.opensub.wp-menu-open .wp-submenu {
  padding: 7px 0 8px
}
@media only screen and (max-width:960px) {
  .sticky-menu #adminmenu .wp-has-current-submenu.opensub.wp-menu-open .wp-submenu, .sticky-menu #adminmenu .wp-menu-open.opensub .wp-submenu, .sticky-menu #adminmenu a.wp-has-current-submenu.wp-menu-open:focus + .wp-submenu, .sticky-menu .no-js li.wp-has-current-submenu.wp-menu-open:hover .wp-submenu {
    background: #7200ff;
    padding: 7px 0 8px
  }
}
@media only screen and (max-width:782px) {
  .auto-fold #adminmenu .wp-has-current-submenu .wp-submenu, .sticky-menu #adminmenu .wp-has-current-submenu.opensub.wp-menu-open .wp-submenu, .sticky-menu #adminmenu .wp-menu-open.opensub .wp-submenu, .sticky-menu #adminmenu a.wp-has-current-submenu.wp-menu-open:focus + .wp-submenu, .sticky-menu .no-js li.wp-has-current-submenu.wp-menu-open:hover .wp-submenu {
    background: 0 0 !important;
    padding: 0 0 12px 0
  }
}
#adminmenu a, #adminmenu div.wp-menu-image:before {
  color: #7200ff
}
#adminmenu .wp-submenu a:focus, #adminmenu .wp-submenu a:hover, #adminmenu a:hover, #adminmenu li a:focus div.wp-menu-image:before, #adminmenu li.menu-top > a:focus, #adminmenu li.opensub a, #adminmenu li.opensub div.wp-menu-image:before, #adminmenu li.opensub > a.menu-top,
#adminmenu li:hover div.wp-menu-image:before, #collapse-menu:hover, #collapse-menu:hover #collapse-button div:after {
  color: #914aea
}
#collapse-button .collapse-button-icon::after, #collapse-button .collapse-button-label {
    transition: all .1s ease-in-out;
    color: #7200ff;
}
#adminmenu .current div.wp-menu-image:before, #adminmenu .wp-has-current-submenu div.wp-menu-image:before, #adminmenu a.current:hover div.wp-menu-image:before, #adminmenu a.wp-has-current-submenu:hover div.wp-menu-image:before, #adminmenu li.current a.menu-top, #adminmenu li.wp-has-current-submenu a.wp-has-current-submenu, #adminmenu li.wp-has-current-submenu:hover div.wp-menu-image:before {
  color: #7200ff;
}
#adminmenu li.current a.menu-top, #adminmenu li.wp-has-current-submenu a.wp-has-current-submenu {
  background: 0 0;
  font-weight: 700
}
#adminmenu .wp-has-current-submenu .wp-submenu {
  background: 0 0;
}
.folded #adminmenu li.wp-has-current-submenu a.wp-has-current-submenu {
  background: #7200ff;
  width: 150%;
}

@media only screen and (max-width: 960px) {
  #adminmenu .wp-has-current-submenu.opensub .wp-submenu, .auto-fold #adminmenu li.wp-has-current-submenu a.wp-has-current-submenu {
    background: #7200ff;
  }
}

@media only screen and (max-width: 782px) {
  #adminmenu .wp-responsive-open .wp-has-current-submenu.opensub .wp-submenu, .auto-fold .wp-responsive-open #adminmenu li.wp-has-current-submenu a.wp-has-current-submenu {
    background: 0 0;
  }
}

.folded #adminmenu .current div.wp-menu-image:before, .folded #adminmenu .wp-has-current-submenu div.wp-menu-image:before, .folded #adminmenu a.current:hover div.wp-menu-image:before, .folded #adminmenu a.wp-has-current-submenu:hover div.wp-menu-image:before, .folded #adminmenu li.wp-has-current-submenu:hover div.wp-menu-image:before {
  color: #f6f8fa;
}

@media only screen and (max-width: 960px) {
  .auto-fold #adminmenu .current div.wp-menu-image:before, .auto-fold #adminmenu .wp-has-current-submenu div.wp-menu-image:before, .auto-fold #adminmenu a.current:hover div.wp-menu-image:before, .auto-fold #adminmenu a.wp-has-current-submenu:hover div.wp-menu-image:before, .auto-fold #adminmenu li.wp-has-current-submenu:hover div.wp-menu-image:before {
    color: #f6f8fa;
  }
}

@media only screen and (max-width: 782px) {
  .auto-fold #adminmenu .current div.wp-menu-image:before, .auto-fold #adminmenu .wp-has-current-submenu div.wp-menu-image:before, .auto-fold #adminmenu a.current:hover div.wp-menu-image:before, .auto-fold #adminmenu a.wp-has-current-submenu:hover div.wp-menu-image:before, .auto-fold #adminmenu li.wp-has-current-submenu:hover div.wp-menu-image:before {
    color: #d54e21;
  }
}

#adminmenu .wp-has-current-submenu .wp-submenu a, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a, #adminmenu .wp-submenu a, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu a {
  color: #22bba5;
  border-radius: 0 8px 8px 0;
  width: 90%;
}

#adminmenu .wp-has-current-submenu .wp-submenu a:hover, #adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover {
  color: #22bba5;
}

#adminmenu .opensub .wp-submenu li.current a, #adminmenu .wp-submenu li.current, #adminmenu .wp-submenu li.current a, #adminmenu .wp-submenu li.current a:focus, #adminmenu .wp-submenu li.current a:hover, #adminmenu a.wp-has-current-submenu:focus + .wp-submenu li.current a {
  color: #22bba5;
  font-weight: bolder;
}

#adminmenu .wp-submenu {
  background: #7200ff;
  border-radius: 0 30px 30px 0;
}

#adminmenu .opensub .wp-submenu a {
  color: #f6f8fa;
}

#adminmenu .opensub .wp-submenu a:hover {
  color: #b9ecff;
}

.folded #adminmenu .wp-has-current-submenu a {
  color: #ffd8d3;
}

.folded.sticky-menu #adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover {
  color: #ffd8d3;
}

@media only screen and (max-width: 960px) {
  .sticky-menu #adminmenu .wp-has-current-submenu.opensub .wp-submenu a:hover {
    color: #ffd8d3;
  }
}

.folded.sticky-menu #adminmenu .wp-has-current-submenu.opensub .wp-submenu a {
  color: #f6f8fa;
}

@media only screen and (max-width: 960px) {
  .sticky-menu #adminmenu .wp-has-current-submenu.opensub .wp-submenu a {
    color: #914aea;
  }
}

.folded #adminmenu .opensub .wp-submenu li.current, .folded #adminmenu .opensub .wp-submenu li.current a, .folded #adminmenu .opensub .wp-submenu li.current a:focus, .folded #adminmenu .opensub .wp-submenu li.current a:hover, .folded #adminmenu .wp-submenu li.current, .folded #adminmenu .wp-submenu li.current a {
  color: #914aea;
}

@media only screen and (max-width: 960px) {
  #adminmenu .opensub .wp-submenu li.current, #adminmenu .opensub .wp-submenu li.current a, #adminmenu .opensub .wp-submenu li.current a:focus, #adminmenu .opensub .wp-submenu li.current a:hover, #adminmenu .wp-submenu li.current a {
    color: #333;
  }
  .sticky-menu #adminmenu .opensub .wp-submenu li.current, .sticky-menu #adminmenu .opensub .wp-submenu li.current a, .sticky-menu #adminmenu .opensub .wp-submenu li.current a:focus, .sticky-menu #adminmenu .opensub .wp-submenu li.current a:hover, .sticky-menu #adminmenu .wp-submenu li.current a {
    color: #333;
  }
}

.folded #adminmenu .wp-has-current-submenu.opensub .wp-submenu, .folded #adminmenu .wp-has-current-submenu.opensub .wp-submenu .wp-submenu-head, .folded #adminmenu .wp-menu-arrow, .folded #adminmenu .wp-menu-arrow div, .folded #adminmenu a.wp-has-current-submenu.opensub:focus + .wp-submenu, .folded #adminmenu li.current a.menu-top, .folded #adminmenu li.current.menu-top, .folded #adminmenu li.wp-has-current-submenu, .folded #adminmenu li.wp-has-current-submenu a.wp-has-current-submenu {
  background: #7200ff;
  color: #f6f8fa;
  font-size: 13px;
}

.folded #adminmenu .wp-has-current-submenu.opensub .wp-submenu, .folded #adminmenu a.wp-has-current-submenu.opensub:focus + .wp-submenu {
  border-radius: 0 2px 2px 0;
  padding: 7px 0 8px;
}

@media only screen and (max-width: 960px) {
  #adminmenu .wp-has-current-submenu .wp-submenu .wp-submenu-head, #adminmenu .wp-menu-arrow, #adminmenu .wp-menu-arrow div, #adminmenu li.current a.menu-top, .folded #adminmenu .wp-has-current-submenu .wp-submenu, .folded #adminmenu .wp-has-current-submenu .wp-submenu .wp-submenu-head, .folded #adminmenu a.wp-has-current-submenu:focus + .wp-submenu, .folded #adminmenu li.current.menu-top, .folded #adminmenu li.wp-has-current-submenu, .wp-responsive-open #adminmenu li.current a.menu-top {
    background: #7200ff;
    color: #f6f8fa;
  }
}

@media only screen and (max-width: 782px) {
  #adminmenu .wp-has-current-submenu .wp-submenu .wp-submenu-head, #adminmenu .wp-menu-arrow, #adminmenu .wp-menu-arrow div, #adminmenu li.current a.menu-top, .folded #adminmenu .wp-has-current-submenu .wp-submenu, .folded #adminmenu .wp-has-current-submenu .wp-submenu .wp-submenu-head, .folded #adminmenu a.wp-has-current-submenu:focus + .wp-submenu, .folded #adminmenu li.current.menu-top, .folded #adminmenu li.wp-has-current-submenu, .wp-responsive-open #adminmenu li.current a.menu-top {
    background: 0 0;
    color: #7200ff;
  }
}

#adminmenu .wp-has-current-submenu.opensub .wp-submenu .wp-submenu-head, #adminmenu .wp-submenu .wp-submenu-head, .folded #adminmenu .wp-has-current-submenu .wp-submenu .wp-submenu-head, .folded #adminmenu .wp-submenu .wp-submenu-head {
  color: #f6f8fa;
  font-size: 13px;
}

#adminmenu .wp-not-current-submenu .wp-submenu, .folded #adminmenu .wp-has-current-submenu .wp-submenu {
  min-width: 160px;
  width: auto;
  border-left: 3px solid #22bba5;
}

#adminmenu li.wp-has-submenu.wp-not-current-submenu.opensub:hover:after {
  border-right-color: #fff;
}

ul#adminmenu a.wp-has-current-submenu:after, ul#adminmenu > li.current > a.current:after {
  border-right-color: #fff;
}

#adminmenu li.menu-top:hover, #adminmenu li.menu-top:hover a, #adminmenu li.opensub > a.menu-top, #adminmenu li > a.menu-top:focus {
  background: 0 0;
}

.folded #adminmenu, .folded #adminmenu li.menu-top, .folded #adminmenuback, .folded #adminmenuwrap {
  width: 60px;
}

#adminmenu .awaiting-mod, #adminmenu .update-plugins, #sidemenu li a span.update-plugins {
  background-color: #d54e21;
  color: #f6f8fa;
}

#adminmenu div.wp-menu-image {
  float: right;
  margin: 0px 13px;
  /*background-color: #ffffff;*/ /* Commented out */
  border-bottom: solid 1px #949595;
  border-radius: 10px;
}

#adminmenu .wp-menu-image img {
  padding: 9px 0 0;
  background-color: #7200ff;
  border: solid 4px;
  border-radius: 20px;
}

.folded #adminmenu div.wp-menu-image {
  float: none;
  margin: 0;
  border: none;
  /* width: 20px;
  height: 20px; */ /* Commented out */
  position: absolute;
  z-index: 25;
}

#adminmenu .wp-has-current-submenu ul > li > a, .folded #adminmenu li.menu-top .wp-submenu > li > a {
  padding: 5px 12px;
  color: #fff;
  margin-left: 12px;
  padding-left: 12px;
  width: 80%;
  z-index: 50;
  border-radius: 10px;
}
@media only screen and (max-width: 960px) {
  .auto-fold #adminmenu div.wp-menu-image {
    float: none;
    margin: 0;
  }
}

@media screen and (max-width: 782px) {
  .auto-fold #adminmenu div.wp-menu-image {
    float: right;
    margin: 0 11px;
    position: relative;
  }
}

@media screen and (max-width: 782px) {
  .auto-fold #adminmenu a.menu-top {
    height: auto;
    padding: 0;
  }
}

#adminmenu div.wp-menu-name {
  font-size: 13px;
  padding: 14px 10px;
  font-weight: 400;
}

@media screen and (max-width: 782px) {
  .auto-fold #adminmenu div.wp-menu-name {
    font-size: 13px;
    margin-left: 0;
    padding: 14px 20px;
  }
}

#adminmenu .wp-has-current-submenu ul > li > a, .folded #adminmenu li.menu-top .wp-submenu > li > a {
  font-size: 13px;
  padding: 4px 31px;
  color: #fff;
}

@media only screen and (max-width: 960px) {
  #adminmenu li.menu-top .wp-submenu > li > a, .auto-fold #adminmenu li.menu-top .wp-submenu > li > a, .folded #adminmenu li.menu-top .wp-submenu > li > a {
    font-size: 13px;
    padding: 4px 31px;
  }
}

#adminmenu .wp-submenu {
  left: 200px;
}

#adminmenu li.wp-menu-separator {
  border-top: 1px solid #f3f3f3;
  height: 1px;
  margin: 14px auto 15px auto;
  background-color: #fff;
}

.folded #adminmenu li.wp-menu-separator {
  margin: 8px auto 9px auto;
}

@media only screen and (max-width: 960px) {
  .auto-fold #adminmenu li.wp-menu-separator {
    margin: 8px auto 9px auto;
  }
}

#adminmenu #collapse-menu {
  border-top: 1px solid rgba(0, 0, 0, .2);
  margin: 14px auto 15px auto;
  padding: 12px 20px 12px 9px;
  transition-property: color;
  border: none !important;
}

.folded #adminmenu #collapse-menu {
  padding: 12px 0;
}

@media only screen and (max-width: 960px) {
  .auto-fold #adminmenu #collapse-menu {
    padding: 12px 0;
  }
}

#poststuff {
  padding-top: 0
}
#post-body-content {
  margin-bottom: 60px
}
#post-body-content > h1, #post-body-content > h2 {
  border-bottom: 1px solid #eeecec;
  color: #333;
  display: block;
  font-size: 13px;
  font-weight: 400;
  margin: 40px 0 0 0;
  padding: 0 0 4px 0
}
.wrap .wp-heading-inline {
  color: #333;
  display: block;
  font-size: 13px;
  font-weight: 400;
  margin: 40px 0 0 0;
  padding: 0 0 4px 0
}
.comment-php #post-body-content > h2 {
  border: 0 none;
  color: #222;
  font-size: 23px;
  line-height: 29px;
  padding: 9px 15px 4px 0
}
.wrap h2 {
  border-bottom: 1px solid #eeecec;
  margin-bottom: 20px;
  padding-bottom: 20px
}
.wrap h2.nav-tab-wrapper {
  margin-bottom: 0;
  padding-bottom: 0
}
.branch-4-6 .col-wrap > h1, .branch-4-6 .wrap > h1, .branch-4-6 .wrap > h2, .branch-4-7 .col-wrap > h1, .branch-4-7 .wrap > h1, .branch-4-7 .wrap > h2 {
  border-bottom: 1px solid #eeecec;
  margin-bottom: 20px;
  padding-bottom: 20px
}
.branch-4-6 .col-wrap > h1.nav-tab-wrapper, .branch-4-6 .wrap > h1.nav-tab-wrapper, .branch-4-6 .wrap > h2.nav-tab-wrapper, .branch-4-7 .col-wrap > h1.nav-tab-wrapper, .branch-4-7 .wrap > h1.nav-tab-wrapper, .branch-4-7 .wrap > h2.nav-tab-wrapper {
  margin-bottom: 0;
  padding-bottom: 0
}
.branch-4-8 .col-wrap > h1, .branch-4-8 .wrap > h1, .branch-4-8 .wrap > h2, .branch-4-9 .col-wrap > h1, .branch-4-9 .wrap > h1, .branch-4-9 .wrap > h2 {
  display: block;
  margin-bottom: 20px
}
.branch-4-8 .col-wrap > h1.nav-tab-wrapper, .branch-4-8 .wrap > h1.nav-tab-wrapper, .branch-4-8 .wrap > h2.nav-tab-wrapper, .branch-4-9 .col-wrap > h1.nav-tab-wrapper, .branch-4-9 .wrap > h1.nav-tab-wrapper, .branch-4-9 .wrap > h2.nav-tab-wrapper {
  margin-bottom: 0;
  padding-bottom: 0
}
.branch-4-7 .wrap > .wp-heading-inline, .branch-4-8 .wrap > .wp-heading-inline, .branch-4-9 .wrap > .wp-heading-inline {
  display: block
}
.wrap .add-new-h2, .wrap .add-new-h2:active {
  background: #7200ff;
  padding: 2px 6px;
  top: -1px
}
.branch-4-7 .wrap .wp-heading-inline .page-title-action, .branch-4-8 .wrap .wp-heading-inline .page-title-action, .branch-4-9 .wrap .wp-heading-inline .page-title-action {
  margin-left: 10px
}
#titlediv #title-prompt-text {
  color: #999;
  font-size: 3.5em;
  line-height: 1;
  padding: 12px 0
}
#edit-slug-box, #titlediv #title {
  border: 0 none;
  box-shadow: none;
  padding: 0
}
#titlediv #title {
  font-size: 3.5em
}
#titlediv #title:focus {
  background: #eaeaea;
  padding: 0 10px
}
input[type=checkbox]:focus, input[type=color]:focus, input[type=date]:focus, input[type=datetime-local]:focus, input[type=datetime]:focus, input[type=email]:focus, input[type=month]:focus, input[type=number]:focus, input[type=password]:focus, input[type=radio]:focus, input[type=search]:focus, input[type=tel]:focus, input[type=text]:focus, input[type=time]:focus, input[type=url]:focus, input[type=week]:focus, select:focus, textarea:focus {
  -webkit-box-shadow: none;
  box-shadow: none
}
#screen-meta {
  margin: 0 0 -1px 0
}
.branch-4-6.edit-tags-php #screen-meta, .branch-4-7.edit-tags-php #screen-meta, .branch-4-8.edit-tags-php #screen-meta, .branch-4-9.edit-tags-php #screen-meta {
  width: 63%
}
#screen-meta-links {
  margin: 0 60px 0 0
}
.comment-php #screen-meta-links, .post-new-php #screen-meta-links, .post-php #screen-meta-links {
  margin: 0
}
#contextual-help-link-wrap, #screen-options-link-wrap {
  background: #eeecec;
  -webkit-box-shadow: none;
  border: 0 none;
  border-radius: 0 0 2px 2px;
  box-shadow: none;
  height: 28px;
  margin: 0 0 0 6px;
  padding: 0
}
#contextual-help-link-wrap a.show-settings, #screen-options-link-wrap a.show-settings {
  background: #eeecec !important;
  padding: 6px 6px 6px 16px
}
#contextual-help-wrap, #screen-options-wrap {
  margin: 0;
  position: relative
}
.comment-php #poststuff h3 {
  padding: 15px 0 0 0
}
.form-table.editcomment td {
  padding: 15px 10px 15px 0
}
@media only screen and (min-width:782px) {
  .block-editor__container {
    min-height: calc(100vh - 36px)
  }
}
@media only screen and (min-width:961px) {
  .block-editor__container {
    min-height: calc(100vh - 61px)
  }
}
@media only screen and (min-width:782px) {
  .edit-post-header {
    left: 200px;
    top: 36px
  }
}
@media only screen and (min-width:961px) {
  .edit-post-header {
    top: 61px
  }
}
@media only screen and (min-width:961px) {
  .auto-fold .edit-post-header {
    left: 200px
  }
}
@media only screen and (max-width:600px) {
  .auto-fold .wp-responsive-open .edit-post-header {
    left: 200px;
    margin-left: 0
  }
}
@media only screen and (min-width:961px) {
  .auto-fold .components-notice-list {
    left: 200px
  }
}
@media only screen and (min-width:961px) {
  .version-5-9.auto-fold .components-notice-list {
    left: 0
  }
}
@media only screen and (min-width:961px) {
  .folded .edit-post-header {
    left: 36px
  }
}
@media only screen and (min-width:782px) {
  body.version-5-1 .edit-post-layout__content {
    margin-left: 200px;
    min-height: calc(100% - 92px);
    top: 92px
  }
}
@media only screen and (min-width:961px) {
  body.version-5-1 .edit-post-layout__content {
    margin-left: 200px;
    min-height: calc(100% - 117px);
    top: 117px
  }
}
@media only screen and (min-width:782px) {
  body.version-5-1.auto-fold .edit-post-layout__content {
    margin-left: 36px
  }
}
@media only screen and (min-width:961px) {
  body.version-5-1.auto-fold .edit-post-layout__content {
    margin-left: 200px
  }
}
@media only screen and (min-width:782px) {
  body.version-5-1.folded .edit-post-layout__content {
    margin-left: 36px
  }
}
@media only screen and (min-width:961px) {
  body.version-5-1.folded .edit-post-layout__content {
    margin-left: 36px
  }
}
@media only screen and (min-width:782px) {
  .block-editor-editor-skeleton {
    left: 200px
  }
}
@media only screen and (min-width:961px) {
  .block-editor-editor-skeleton {
    top: 61px
  }
}
@media only screen and (min-width:961px) {
  .auto-fold .block-editor-editor-skeleton {
    left: 200px
  }
}
@media only screen and (min-width:782px) {
  .folded .block-editor-editor-skeleton {
    left: 36px
  }
}
@media only screen and (min-width:961px) {
  .folded .block-editor-editor-skeleton {
    top: 32px
  }
}
@media (min-width:783px) {
  .interface-interface-skeleton {
    left: 200px;
    top: 61px
  }
}
@media (min-width:783px) {
  .auto-fold .interface-interface-skeleton {
    left: 36px
  }
}
@media (min-width:961px) {
  .auto-fold .interface-interface-skeleton {
    left: 200px
  }
}
@media (min-width:783px) {
  .folded .interface-interface-skeleton {
    left: 36px;
    top: 32px
  }
}
@media only screen and (min-width:782px) {
  .edit-post-sidebar {
    top: 92px
  }
}
@media only screen and (min-width:961px) {
  .edit-post-sidebar {
    top: 117px
  }
}
@media only screen and (min-width:782px) {
  .edit-post-layout .editor-post-publish-panel {
    top: 36px
  }
}
@media only screen and (min-width:961px) {
  .edit-post-layout .editor-post-publish-panel {
    top: 61px
  }
}
#wp-content-editor-tools, .wp-editor-expand #wp-content-editor-tools {
  background: #f6f8fa;
  border-bottom: 1px solid #dad9d9
}
.wp-editor-container {
  border-color: #f6f8fa !important;
  -webkit-box-shadow: none;
  box-shadow: none
}
.wp-switch-editor {
  border: 0 none !important
}
#wp-content-media-buttons {
  padding-bottom: 6px
}
div.mce-toolbar-grp {
  background: #f6f8fa !important;
  border-bottom: 0 none !important
}
div.mce-toolbar-grp > .mce-container-body {
  padding: 4px 0 8px 0
}
.mce-toolbar .mce-btn-group .mce-btn.mce-first {
  margin-left: 0 !important
}
.wp-switch-editor {
  background: #f3f3f3 !important;
  border-radius: 2px 2px 0 0;
  padding: 7px 8px !important
}
.html-active .switch-html, .tmce-active .switch-tmce {
  background: #dad9d9 !important
}
#poststuff #post-body.columns-2 {
  margin-right: 359px
}
#post-body.columns-2 #postbox-container-1 {
  margin-right: -359px;
  width: 299px
}
#poststuff h3 {
  color: #333;
  font-size: 13px;
  font-weight: 400
}
@media only screen and (max-width:850px) {
  #poststuff h3 {
    padding: 8px 0
  }
}
#side-sortablesback, .comment-php #submitdiv-back {
  background: #eeecec;
  background-image: -moz-linear-gradient(left, rgba(0, 0, 0, .05) 0, rgba(0, 0, 0, 0) 5%, rgba(0, 0, 0, 0) 100%);
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, .05) 0, rgba(0, 0, 0, 0) 5%, rgba(0, 0, 0, 0) 100%);
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .05) 0, rgba(0, 0, 0, 0) 5%, rgba(0, 0, 0, 0) 100%);
  background-image: linear-gradient(to right, rgba(0, 0, 0, .05) 0, rgba(0, 0, 0, 0) 5%, rgba(0, 0, 0, 0) 100%);
  bottom: 0;
  position: absolute;
  top: 0;
  width: 299px;
  z-index: -1
}
.branch-4-6 #side-sortablesback, .branch-4-6.comment-php #submitdiv-back, .branch-4-7 #side-sortablesback, .branch-4-7.comment-php #submitdiv-back, .branch-4-8 #side-sortablesback, .branch-4-8.comment-php #submitdiv-back, .branch-4-9 #side-sortablesback, .branch-4-9.comment-php #submitdiv-back {
  z-index: 0
}
@media only screen and (max-width:850px) {
  #side-sortablesback, .comment-php #submitdiv-back {
    background: 0 0;
    display: none
  }
}
#poststuff #post-body.columns-2 #side-sortables, .comment-php #submitdiv {
  background: #eeecec;
  background-image: -moz-linear-gradient(left, rgba(0, 0, 0, .05) 0, rgba(0, 0, 0, 0) 5%, rgba(0, 0, 0, 0) 100%);
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, .05) 0, rgba(0, 0, 0, 0) 5%, rgba(0, 0, 0, 0) 100%);
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .05) 0, rgba(0, 0, 0, 0) 5%, rgba(0, 0, 0, 0) 100%);
  background-image: linear-gradient(to right, rgba(0, 0, 0, .05) 0, rgba(0, 0, 0, 0) 5%, rgba(0, 0, 0, 0) 100%);
  border: 0 none;
  color: #555;
  padding: 20px 0 0 0;
  width: 299px
}
@media only screen and (max-width:850px) {
  #poststuff #post-body.columns-2 #side-sortables, .comment-php #submitdiv {
    background: 0 0;
    padding: 0;
    width: auto
  }
}
.comment-php #submitdiv {
  padding: 20px;
  position: relative;
  width: 259px
}
.postbox {
  background: 0 0;
  border: 0 none;
  border-bottom: 1px solid #dad9d9;
  border-bottom: 1px solid rgba(0, 0, 0, .08);
  -webkit-box-shadow: none;
  box-shadow: none;
  padding: 0 20px 20px 20px
}
@media only screen and (max-width:850px) {
  .postbox {
    background: #eeecec;
    border: 0 none;
    border-radius: 2px;
    padding: 5px 20px 10px 20px
  }
}
#side-sortables .postbox:last-child {
  border: 0 none;
  padding: 0 20px 0 20px
}
@media only screen and (max-width:850px) {
  #poststuff .inside {
    padding: 0 0 12px 0
  }
}
.postbox .handlediv {
  width: 23px
}
.stuffbox {
  border: 0 none;
  -webkit-box-shadow: none;
  box-shadow: none
}
.postbox .hndle, .stuffbox .hndle {
  border: 0 none
}
.post-format-icon:before, .post-state-format:before {
  color: #ccc
}
.wp-core-ui .button, .wp-core-ui .button-secondary {
  background: #eeecec;
  border-color: #eeecec;
  border-radius: 2px;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #555;
  vertical-align: top
}
.wp-core-ui .button-primary.focus, .wp-core-ui .button-primary.hover, .wp-core-ui .button-primary:focus, .wp-core-ui .button-primary:hover {
  -webkit-box-shadow: none;
  background-color: #22bba5;
  box-shadow: none;
  text-shadow: none
}
.comment-php #minor-publishing .button, .wp-core-ui .postbox .button, .wp-core-ui .postbox .button-secondary {
  background: #f6f8fa;
  border-color: #f6f8fa
}
.comment-php #minor-publishing .button:hover, .wp-core-ui .postbox .button:hover {
  border-color: #999
}
.wp-core-ui .button-primary, .wp-core-ui .postbox .button-primary {
  background: #7200ff;
  border-color: #7200ff;
  -webkit-box-shadow: none;
  box-shadow: none;
  color: #f6f8fa;
  text-decoration: none;
  text-shadow: none;
}
.wp-core-ui .button-primary:hover, .wp-core-ui .postbox .button-primary:hover {
  border-color: #22bba5
}
.wp-core-ui .button.button-primary.button-hero {
  box-shadow: none
}
#major-publishing-actions {
  background: 0 0;
  border: 0 none
}
@media only screen and (max-width:960px) {
  #major-publishing-actions {
    padding: 5px 0
  }
}
#minor-publishing-actions {
  padding: 10px
}
@media only screen and (max-width:960px) {
  #minor-publishing-actions {
    padding: 5px 0
  }
}
@media only screen and (max-width:960px) {
  .misc-pub-section {
    padding: 6px 0 8px
  }
}
#normal-sortables .postbox {
  background: #eeecec;
  border: 0 none;
  border-radius: 2px;
  padding: 5px 20px 10px 20px
}
#normal-sortables h2, #normal-sortables h3 {
  padding: 8px 0
}
#normal-sortables .postbox .inside, .stuffbox .inside {
  padding: 0 0 12px 0
}
#normal-sortables .postbox .handlediv {
  width: 10px
}
.subsubsub {
  margin: 4px 0 12px 0
}
.subsubsub li {
  color: #f6f8fa
}
.tablenav {
  margin: 8px 0 12px 0
}
.tablenav .actions {
  padding: 0 8px 0 0
}
.wp-list-table, table.comments {
  border-color: #000 !important;
  border-collapse: collapse !important;
  border-spacing: 0 !important;
  border: 0 none !important;
  -webkit-box-shadow: none !important;
  box-shadow: none !important
}
.wp-list-table tfoot th, .wp-list-table thead th, table.comments tfoot th, table.comments thead th {
  font-size: 13px;
  font-weight: 600
}
.row-title {
  font-size: 13px !important;
  font-weight: 400
}
.post-state {
  background: #999;
  border-radius: 2px;
  color: #f6f8fa;
  display: inline-block;
  font-size: 13px;
  font-weight: 400;
  margin: -1px 10px 5px 0;
  padding: 1px 5px;
  vertical-align: top
}
.admin-color-fresh .post-state {
  background: #333
}
.admin-color-light .post-state {
  background: #888
}
.admin-color-blue .post-state {
  background: #4796b3
}
.admin-color-coffee .post-state {
  background: #59524c
}
.admin-color-ectoplasm .post-state {
  background: #523f6d
}
.admin-color-midnight .post-state {
  background: #363b3f
}
.admin-color-ocean .post-state {
  background: #627c83
}
.admin-color-sunrise .post-state {
  background: #cf4944
}
.widefat td, .widefat th {
  padding: 12px 10px
}
td.page-title strong, td.post-title strong {
  display: inline
}
.row-actions {
  padding: 4px 0 0 0
}
.widefat tbody th.check-column, .widefat tfoot th.check-column, .widefat thead th.check-column {
  padding: 14px 0 0 3px
}
.wp-list-table tr th, table.comments tr th {
  border-radius: 3px 0 0 3px
}
.wp-list-table tr td:last-child, table.comments tr td:last-child {
  border-radius: 0 3px 3px 0
}
.wp-list-table tr:hover, table.comments tr:hover {
  background: #eeecec !important
}
.wp-list-table .alt, .wp-list-table .alternate, .wp-list-table ul.striped > :nth-child(odd), .wp-list-table.striped > tbody > :nth-child(odd), table.comments .alt, table.comments .alternate, table.comments ul.striped > :nth-child(odd), table.comments.striped > tbody > :nth-child(odd) {
  background: #f6f8fa
}
.edit-tags-php #screen-meta-links {
  margin: 0 35% 0 0;
  padding: 0 60px 0 0
}
#col-container {
  overflow: visible
}
.edit-tags-php .search-form {
  display: inline-block;
  padding: 20px 0
}
@media screen and (max-width:782px) {
  .edit-tags-php .search-form {
    padding: 0
  }
}
.edit-tags-php p.search-box {
  float: none
}
@media screen and (max-width:782px) {
  .edit-tags-php p.search-box {
    height: auto;
    margin: 0;
    position: static
  }
}
.edit-tags-php #col-left {
  background: #eeecec;
  background-image: -moz-linear-gradient(left, rgba(0, 0, 0, .05) 0, rgba(0, 0, 0, 0) 5%, rgba(0, 0, 0, 0) 100%);
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, .05) 0, rgba(0, 0, 0, 0) 5%, rgba(0, 0, 0, 0) 100%);
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .05) 0, rgba(0, 0, 0, 0) 5%, rgba(0, 0, 0, 0) 100%);
  background-image: linear-gradient(to right, rgba(0, 0, 0, .05) 0, rgba(0, 0, 0, 0) 5%, rgba(0, 0, 0, 0) 100%);
  color: #555;
  float: right
}
@media only screen and (max-width:768px) {
  .edit-tags-php #col-left {
    background: 0 0;
    float: none;
    margin-right: 20px;
    width: auto
  }
}
.branch-4-6.edit-tags-php #col-left, .branch-4-7.edit-tags-php #col-left, .branch-4-8.edit-tags-php #col-left, .branch-4-9.edit-tags-php #col-left {
  position: relative
}
#col-leftback {
  background: #eeecec;
  background-image: -moz-linear-gradient(left, rgba(0, 0, 0, .05) 0, rgba(0, 0, 0, 0) 5%, rgba(0, 0, 0, 0) 100%);
  background-image: -o-linear-gradient(left, rgba(0, 0, 0, .05) 0, rgba(0, 0, 0, 0) 5%, rgba(0, 0, 0, 0) 100%);
  background-image: -webkit-linear-gradient(left, rgba(0, 0, 0, .05) 0, rgba(0, 0, 0, 0) 5%, rgba(0, 0, 0, 0) 100%);
  background-image: linear-gradient(to right, rgba(0, 0, 0, .05) 0, rgba(0, 0, 0, 0) 5%, rgba(0, 0, 0, 0) 100%);
  bottom: 0;
  position: absolute;
  right: 0;
  top: 0;
  width: 35%;
  z-index: -1
}
@media only screen and (max-width:768px) {
  #col-leftback {
    display: none
  }
}
.branch-4-6 #col-leftback, .branch-4-7 #col-leftback, .branch-4-8 #col-leftback, .branch-4-9 #col-leftback {
  z-index: 0
}
.edit-tags-php #col-right {
  float: left
}
@media only screen and (max-width:768px) {
  .edit-tags-php #col-right {
    float: none;
    margin: 0
  }
}
.edit-tags-php #col-right h2 {
  margin-right: 60px
}
@media only screen and (max-width:768px) {
  .edit-tags-php #col-right h2 {
    margin-right: 20px
  }
}
.edit-tags-php #col-left .col-wrap {
  padding: 0 30px
}
.edit-tags-php #col-right .col-wrap {
  padding: 0 60px 0 0
}
@media only screen and (max-width:768px) {
  .edit-tags-php #col-right .col-wrap {
    padding-right: 20px
  }
}
.edit-tags-php .widefat tfoot th.check-column, .edit-tags-php .widefat thead th.check-column {
  padding: 10px 0 0 3px
}
.edit-tags-php #col-left h3 {
  font-size: 13px;
  font-weight: 400
}
@media only screen and (max-width:768px) {
  .edit-tags-php #col-left h3 {
    padding-top: 20px
  }
}
.fixed .column-posts {
  width: 76px
}
#welcome-panel {
  border: 0 none;
  border-bottom: 1px solid #eeecec;
  -webkit-box-shadow: none;
  box-shadow: none;
  margin: 20px 0 30px 0;
  padding: 20px 0 20px 0
}
.welcome-panel-content {
  margin: 0
}
.branch-4-6 .welcome-panel-content h2, .branch-4-7 .welcome-panel-content h2, .branch-4-8 .welcome-panel-content h2, .branch-4-9 .welcome-panel-content h2 {
  border-bottom: 0 none;
  margin-bottom: 0;
  padding-bottom: 0
}
.welcome-panel-content h3 {
  color: #7200ff;
  font-size: 20px;
  font-weight: 600
}
.welcome-panel-content h4 {
  color: #333;
  font-size: 13px;
  font-weight: 400
}
#wpbody-content #dashboard-widgets .postbox-container {
  margin: 0 2% 0 0;
  width: 23%
}
#dashboard-widgets .postbox-container .empty-container {
display: none !important;
}
#wpbody-content #dashboard-widgets #postbox-container-4 {
  margin: 0;
  width: 25%
}
@media only screen and (max-width:1499px) and (min-width:800px) {
  #wpbody-content #dashboard-widgets .postbox-container {
    margin: 0 5% 0 0;
    width: 47.5%
  }
  #wpbody-content #dashboard-widgets #postbox-container-2, #wpbody-content #dashboard-widgets #postbox-container-3, #wpbody-content #dashboard-widgets #postbox-container-4 {
    float: right;
    margin: 0;
    width: 47.5%
  }
  #wpbody-content #dashboard-widgets #postbox-container-3 {
    float: left
  }
}
@media only screen and (max-width:1800px) and (min-width:1500px) {
  #wpbody-content #dashboard-widgets #postbox-container-4, #wpbody-content #dashboard-widgets .postbox-container {
    margin: 0 3.3333% 0 0;
    width: 30%
  }
  #wpbody-content #dashboard-widgets #postbox-container-3 {
    margin: 0
  }
}
@media only screen and (max-width:799px) {
  #wpbody-content #dashboard-widgets #postbox-container-4, #wpbody-content #dashboard-widgets .postbox-container {
    width: 100%
  }
}
#dashboard-widgets .meta-box-sortables {
  margin: 0
}
#dashboard-widgets-wrap {
  margin: 0
}
#dashboard-widgets-wrap .postbox {
  margin-bottom: 40px
}
#dashboard-widgets-wrap h3 {
  color: #333;
  font-size: 13px;
  font-weight: 400;
  padding: 12px 12px
}
#dashboard-widgets-wrap #column3-sortables .postbox, #dashboard-widgets-wrap #column4-sortables .postbox, #dashboard-widgets-wrap #column5-sortables .postbox, #dashboard-widgets-wrap #normal-sortables .postbox, #dashboard-widgets-wrap #side-sortables .postbox {
  background: #eeecec;
  border: 0 none;
  border-radius: 2px;
  padding: 5px 10px 10px 10px
}
#dashboard_right_now .main p {
  margin: 10px 0 0 0
}
#dashboard-widgets-wrap .postbox .handlediv {
  width: 23px
}
.branch-4-6 #dashboard-widgets #normal-sortables .ui-sortable-handle, .branch-4-7 #dashboard-widgets #normal-sortables .ui-sortable-handle, .branch-4-8 #dashboard-widgets #normal-sortables .ui-sortable-handle, .branch-4-9 #dashboard-widgets #normal-sortables .ui-sortable-handle {
  padding: 8px 12px
}
.branch-4-6 #dashboard-widgets #normal-sortables #dashboard_activity .inside, .branch-4-7 #dashboard-widgets #normal-sortables #dashboard_activity .inside, .branch-4-8 #dashboard-widgets #normal-sortables #dashboard_activity .inside, .branch-4-9 #dashboard-widgets #normal-sortables #dashboard_activity .inside {
  padding: 0 12px 12px
}
.branch-4-6 #dashboard-widgets #normal-sortables .inside h3, .branch-4-7 #dashboard-widgets #normal-sortables .inside h3, .branch-4-8 #dashboard-widgets #normal-sortables .inside h3, .branch-4-9 #dashboard-widgets #normal-sortables .inside h3 {
  padding: 0
}
#wpfooter {
  background: transparent;
  color: #999;
  margin-left: 200px
}
#wpfooter a {
  color: #999;
  text-decoration: underline
}
#wpfooter a:hover {
  color: #7200ff;
}
.walup--admin .caldera-editor-header {
  top: 71px
}
.walup--admin .caldera-editor-header.caldera-editor-subnav {
  top: 113px
}
.walup--admin .caldera-config-editor-side-panel {
  top: 201px
}
.walup--admin .caldera-config-editor-main-panel > h3, .walup--admin .caldera-editor-body > h3 {
  top: 157px
}
@media only screen and (min-width:961px) {
  .walup--admin #e-admin-top-bar-root {
    width: calc(100% - 200px)
  }
}
@media only screen and (min-width:961px) {
  .walup--admin .woocommerce-layout__header {
    top: 61px;
    width: calc(100% - 200px)
  }
}
/*Remove display add Whitelabel*/
.wlcms_wrapper .wlcms-advert-wrapper img {
  /*  width: 100%;*/
    display: none;
}

/* Hide screen-meta-links on ZenithQR page */
#screen-meta-links {
    display: none;
}
