*{
  box-sizing: border-box;
  transition: all 0.5s linear;
}

body{
  margin: 0;
  padding: 0;
  color: #555555;
  font-family: sans-serif;
  /* background-image: conic-gradient(from 90deg at -10% 100%, rgb(188, 193, 205) 0deg, rgb(188, 193, 205) 90deg, rgb(255, 255, 255) 360deg); */
  background-repeat: no-repeat;
  background-attachment: fixed;
  transition: none;
}

body.transition-slow{
  transition: all 3s linear;
}

body.transition-fast{
  transition: all 0.6s linear;
}

h1, h2, h3, h4, h5, h6{
  font-family: 'Sanchez', sans-serif;
}

h1{
  font-size: 32px;
  color: #ffffff;
  opacity: 0.78;
}

a:link, a:visited{
  color: #0790eb;
}

a:active, a:hover, a:focus{
  color: #05aa3c;
}


/* HTML fragments */

.fragments{
  display: none;
}


/* Sidebar */

.sidebar{
  position: absolute;
  float: left;
  overflow: scroll;
  width: 0;
  height: 100%;
  background: rgba(51, 49, 41, 0.77);
  transition: width 0.15s linear;
}

.sidebar.show{
  width: 100px;
}

.sidebar-main{
  padding: 20px;
}

.swatch{
  display: block;
  width: 60px;
  height: 60px;
  margin: 8px 0;
  text-align: center;
  font-size: 10px;
  font-family: monospace;
  line-height: 60px;
  color: rgba(255,255,255,0.8);
  border: 2px solid #777777;
  border-radius: 6px;
  background: #dddddd;
  cursor: pointer;
  transition: all 0.15s linear;
}

.swatch:hover, .swatch:active{
  border: 2px solid #cccccc;
}

.swatch.selected{
  border: 2px solid #ffffff;
}

#sidebar-toggle{
  position: absolute;
  left: 16px;
  top: 16px;
  width: 28px;
  height: 28px;
  cursor: pointer;
  background: #dddddd;
  background: linear-gradient(68deg, rgba(17,157,106,1) 0%, rgba(182,106,16,1) 58%, rgba(173,45,96,1) 100%);
  border: 2px solid #cccccc;
  border-radius: 6px;
  opacity: 0;
}

#sidebar-toggle.show{
  opacity: 1;
}

#sidebar-toggle:hover, #sidebar-toggle:active{
  border: 2px solid #eeeeee;
}


/* Content */

.content{
  box-sizing: border-box;
  margin-left: 0;
  transition: margin 0.4s 0.2s ease-out;
}

.content.show{
  margin-left: 100px;
}

.content-main{
  width: 440px;
  padding: 80px 30px 40px;
  margin: 0 auto;
}

.card{
  overflow: hidden;
  border-radius: 16px;
  border: 1px solid rgba(30,34,28,0.3);
}

.card-title{
  padding: 8px 20px;
  color: #777777;
  border-bottom: 1px solid #dddddd;
  background: #f1f2f4;
}

.card-body{
  padding: 12px 20px;
  background: rgba(255,255,255,0.8);
}

table{
  text-align: left;
  font-family: 'Sanchez', sans-serif;
}

th, td{
  padding: 6px 14px 6px 0;
}