/*
editor styles
*/

@font-face {
  font-family: "Source Sans Pro";
  src: url("https://fonts.googleapis.com/css?family=Source+Sans+Pro:300,400,600,700,900&display=swap");
}

/*
scale font size in admin to give accurate font size preview
*/
/*
html.interface-interface-skeleton__html-container {
  font-size: 62.5%;
}
*/

/*
admin style rules
*/
.wp-admin ::selection {
  color: #fff !important;
  background-color: #2271b1 !important;
}

.wp-admin ::placeholder {
  color: #616569 !important;
}

.wp-admin #wpfooter {
  padding: 5px 20px;
  background: #616569;
}

.wp-admin #footer-upgrade,
.wp-admin #footer-left {
  font-size: 12px !important;
  color: #e4e4e4;
}

#footer-left a {
  color: #fff;
  text-decoration: none;
}

#footer-left a:hover,
#footer-left a:active,
#footer-left a:focus {
  text-decoration: underline;
}

#footer-left a.cmb {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 1.1em;
  font-weight: 300;
}

#footer-left a span {
  font-family: "Source Sans Pro", sans-serif;
  font-size: 14px;
  padding: 0 1px 0 0;
  color: #fed150;
}

#footer-left a strong {
  font-weight: bold;
}

.wp-admin #wp-admin-bar-user-info {
  height: 64px !important;
}

/*
admin menus
*/
#adminmenu li,
#dashboard_right_now li {
  list-style: none !important;
}

/*
utility classes
*/
.hide-admin {
  position: relative;
}

.hide-admin::before {
  content: "Hidden";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0.2em 0.5em;
  background: $secondary;
  z-index: 2;
  opacity: 1;
}

.hide-admin::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: white;
  outline: 2px dotted rgba(0, 0, 0, 0.2);
  opacity: 0.9;
}
