/* Add your tweaks to Fractal styles here */
body {
  -moz-osx-font-smoothing: grayscale;
  -webkit-font-smoothing: antialiased;
}

.Header {
  font-weight: bold;
  background-color: #001B35;
}

.Header-logo {
  width: 130px;
}

.Header-title {
  padding: 0 1rem;
}

.Header-title img {
  vertical-align: middle;
}

.Header-title span {
  font-size: 16px;
  color: #fff;
  margin-left: 10px;
  vertical-align: text-bottom;
}

.Header-button,
.Header-button:hover {
  background: #001B35;
}

.Pen-device-sizes {
  display: flex;
  margin-left: 15px;
}

.Pen-device-sizes li {
  margin-right: 5px;
}
.Pen-device-size {
  display: block;
  width: 22px;
  height: 22px;
  transition: opacity 0.2s ease;
  fill: #001B35;
  opacity: 0.75;
}
.Pen-device-size:hover {
  opacity: 1;
}
.Pen-device-size[rel=laptop] {
  margin: 0 7px;
}

.colors {
  display: flex;
  flex-direction: row;
  text-align: center;
  margin-bottom: 3rem;
}

.color {
  margin-bottom: 1.5rem;
  background-color: #f7f7f5;
  flex: 1;
}

.color::before {
  content: "";
  display: block;
  width: 100%;
  height: 5em;
  background-color: currentColor;
}

.color-values {
  padding: 8px 12px;
  color: #414141;
}

.color-values div {
  font-family: "SF Mono", "Monaco", "Inconsolata", "Fira Mono",
    "Droid Sans Mono", "Source Code Pro", monospace;
  font-size: 0.9em;
  cursor: pointer;
  line-height: 1em;
  display: inline-block;
}

.color-values pre {
  font-family: Hack, Consolas, Monaco, "Andale Mono", monospace;
  font-size: 0.7em;
  line-height: 1.71429;
  padding: 3px 5px;
}

.color:hover .color-values div,
.color-values span:hover {
  border-bottom: 1px dotted #333;
}

.color-values div.success {
  border-bottom: 0;
  font-weight: bold;
}

.error-msg {
  opacity: 0;
  margin-bottom: 0;
  transition: opacity 0.25s ease-out;
}


.Frame-panel--sidebar {
  background: #F2F2F2;
}