.condition-control-modal{
	position: fixed;
  width: 60vw;
  height: auto;
  min-height: 600px;
  top: 0px;
  left: -7.5vw;
  border: 3px solid whitesmoke;
  border-top: none;
  padding: 10px;
  background: whitesmoke;
  box-shadow: 0px 0px 3.5px 3.5px rgb(100, 100, 100, 0.5);
  overflow: auto;
  transition: transform 0.5s
              cubic-bezier(0, .52, 0, 1);
  border-radius: 2px;
  border-top-right-radius: 0px;
  border-top-left-radius: 0px;
  z-index: 120;
}

.condition-control-modal.show {
  /* transform: translate3d(45.65%, 0vh, 0px); */
  transform: translate(45.65%, 0vh);
}
.condition-control-modal.hide {
  /* transform: translate3d(45.65%, -70vh, 0px); */
  transform: translate(45.65%, -70vh);
  overflow: hidden;
}

.condition-control-modal .container {
  width: 100%;
  height: 100%;
  margin: 0px;
  margin-right: 0px;
  padding-right: 0px;
  padding-left: 0px;
}

.condition-modal-white-space {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
  z-index: 120;
  display: block;
  transition: 0.15s;
  transition-property: opacity;
}

/* opacity animation TODO */
.condition-modal-white-space.show {
  /* opacity: 1; */
  display: block;
}
.condition-modal-white-space.hide {
  display: none;
  /* opacity: 0; */
}

.condition-control-modal .condition-modal-header {
  height: 7%;
  margin-top: 10px;
  width: 100%;
}
.condition-control-modal .condition-modal-header .header-title {
  font-size: 18px;
  font-weight: bold;
  float: left;
}

.condition-control-modal .condition-modal-body {
  width: 100%;
  height: 100%;
}
.condition-control-modal .condition-modal-body p.please-create-condition {
  margin-bottom: 0px;
  font-weight: bold;
}
.condition-control-modal .condition-modal-body .conditions-wrapper {
  border: 1px solid gray;
  width: 100%;
}
.condition-control-modal .condition-modal-body .create-condition-wrapper {
  width: 100%;
  /* height: 100px; */
}
.condition-control-modal .condition-modal-body .create-condition {
  height: 60px;
  width: 40%;
  font-size: 25px;
  margin: 5px;
}
.condition-control-modal .condition-modal-body .create-condition .plus-icon {
  font-size: 25px;
}

.condition-create-form .input {
  width: 100%;
}
.condition-create-form .input .create-btn {
  width: 10%;
  height: 50px;
}
.condition-create-form .input .create-cancel-btn {
  width: 10%;
  height: 50px;
}
.condition-create-form .right-options {
  width: 20%;
}

.no-conditions-desc {
  margin-bottom: 0px;
}