.rightDrawer {
  position: absolute;
  top: 0;
  bottom: 0;
  right: 0;
  width: 300px;
  background-color: var(--grey100);
  transform: translateX(100%);
  box-shadow: -8px 0 15px rgba(0, 0, 0, 0.1);
  background-color: white;
}
.rightDrawer--slideIn {
  animation: slideIn 0.5s forwards;
}
.rightDrawer--slideOut {
  animation: slideOut 0.5s forwards;
}
@keyframes slideIn {
  100% {
    transform: translateX(0%);
  }
}
@keyframes slideOut {
  0% {
    transform: translateX(0%);
  }
  100% {
    transform: translateX(100%);
  }
}
.rightDrawer__closeBtn {
  font-size: 18px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  position: absolute;
  top: 0;
  right: 0;
}

.editFieldDrawer__wrap {
  padding: 40px 20px 0 20px;
}

.viewFormStructure {
  padding: 10px;
}

.viewSection__title {
  padding-bottom: 10px;
  font-weight: bold;
}
.viewSection__add {
  text-align: center;
}
.viewSection__addIcon {
  font-size: 18px;
  cursor: pointer;
}
.viewSection__visualWrap {
  border-width: 1px;
  border-style: solid;
  border-color: #0d47a1;
  padding-top: 5px;
  padding-left: 5px;
  padding-bottom: 20px;
  margin-bottom: 20px;
  position: relative;
  left: 1px;
  border-top-left-radius: 5px;
  border-bottom-left-radius: 5px;
}
.viewSection__titleRow {
  display: flex;
  padding-bottom: 5px;
}
.viewSection__editSectionIcon {
  cursor: pointer;
  margin-right: 10px;
}

.fieldSelect__item {
  padding: 5px 10px;
  background-color: #e3f2fd;
  cursor: pointer;
  margin-bottom: 10px;
  border: 1px solid #1976d2;
  border-radius: 10px;
}

.addFieldDrawer__wrap {
  margin-bottom: 14px;
}
.addFieldDrawer__options {
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 20px;
}

/*# sourceMappingURL=EditForm.css.map */
