body {
  background-color: rgba(241, 241, 241, 0.7882352941);
  color: #666;
  font-size: 16px !important;
}
body .header {
  padding: 1rem;
  gap: 0.5rem;
  border-bottom: 1px solid #DDD;
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.1);
}
body h1 {
  font-weight: bold;
  font-size: 1.5rem;
}
body select,
body input {
  background-color: white;
  padding: 0.5rem !important;
  border: 1px solid #DDD !important;
  outline: none;
  border-radius: 5px;
}
body input[type=checkbox] {
  width: 20px;
  height: 20px;
  position: relative;
  background-color: white;
  appearance: none;
}
body input[type=checkbox]:checked {
  border-color: #3A3A3A !important;
}
body input[type=checkbox]:checked::before {
  content: "";
  position: absolute;
  width: 12px;
  height: 12px;
  background-color: #999;
  border-radius: 0px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 0;
  margin: 0;
}
body strong {
  color: #666;
}
body .group {
  display: flex;
  align-items: center;
  gap: 1rem;
}
body .group [type=checkbox] {
  flex: 0 0 20px;
}
body #main .configurations {
  height: 100vh;
  overflow: auto;
  width: 400px;
  display: flex;
  flex-direction: column;
  transition: width 0.2s ease;
  position: relative;
}
body #main .configurations h2 {
  font-size: 1.25rem;
  margin-bottom: 0.25rem;
  color: #666;
  font-weight: bold;
}
body #main .configurations .header {
  padding: 0.5rem;
}
body #main .configurations .middle {
  flex: 1;
  overflow: auto;
  padding: 1rem;
}
body #main .configurations .middle::-webkit-scrollbar {
  width: 5px;
}
body #main .configurations .middle::-webkit-scrollbar-track {
  background-color: #ebebeb;
  border-radius: 8px;
}
body #main .configurations .middle::-webkit-scrollbar-thumb {
  background: #999;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(68, 68, 68, 0.2);
  height: 40px;
}
body #main .configurations .bottom {
  padding: 0.5rem;
  border-top: 1px solid #DDD;
}
body #main .configurations .bottom button {
  background-color: black;
  border: 1px solid #313131;
  padding: 0.5rem 1rem;
  display: flex;
  margin: 0 auto;
  border-radius: 5px;
  text-transform: uppercase;
  font-size: 0.875em;
  color: white;
}
body #main .configurations .block {
  margin-bottom: 2rem;
}
body #main .configurations .config {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1rem;
  border: 1px solid #DDD;
  margin-bottom: 1rem;
  background-color: rgba(229, 229, 229, 0.4509803922);
  border-radius: 8px;
}
body #main .configurations .config.structure ul {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}
body #main .configurations .config.structure ul li {
  border: 1px solid transparent;
  background-color: #313131;
  flex: 0 0 calc(50% - 1rem);
  display: flex;
  justify-content: center;
  align-items: center;
}
body #main .configurations .config.structure ul li a {
  display: flex;
  padding: 2rem;
}
body #main .configurations .config.structure ul li.active {
  border-color: #3c3c3c !important;
}
body #main .configurations.collapsed {
  width: 10px !important;
}
body #main .configurations.collapsed + .toggle-aside {
  left: 0px;
}
body #main .preview {
  flex: 1;
  overflow: hidden;
}
body #main .preview iframe {
  width: 100%;
  height: 100vh;
  padding: 0;
  margin: 0;
  background-color: white;
}
body #main .resizer {
  width: 5px;
  cursor: ew-resize;
  background: #ccc;
}
body .toggle-aside {
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  position: fixed;
  top: 10px;
  left: 405px;
  background: white;
  border: 1px solid #aaa;
  border-radius: 50%;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  font-size: 1rem;
  transition: all 0.2s ease-in-out;
}
body #modal {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  opacity: 0;
  visibility: hidden;
  background-color: white;
  min-height: 100px;
  display: flex;
  padding: 1rem;
  transition: all 0.2s ease-in-out;
  text-align: center;
  color: black;
}
body #modal a.close {
  position: absolute;
  right: 0;
  top: 0;
  font-weight: bold;
  background-color: black;
  color: white;
  width: 30px;
  height: 30px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
body #modal.show {
  opacity: 1;
  visibility: visible;
  z-index: 2;
}
body #modal .info {
  font-weight: bold;
  margin-bottom: 1rem;
}
body #modal textarea,
body #modal pre {
  overflow: auto;
  white-space: pre-wrap;
  width: 100%;
}
body.blocked::before {
  content: "";
  position: fixed;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 1;
}
body::-webkit-scrollbar {
  width: 5px;
}
body::-webkit-scrollbar-track {
  background-color: #ebebeb;
  border-radius: 8px;
}
body::-webkit-scrollbar-thumb {
  background: #999;
  border-radius: 8px;
  box-shadow: 0 1px 4px rgba(68, 68, 68, 0.2);
  height: 40px;
}
/*# sourceMappingURL=configuration.css.map */
