@import url("https://fonts.googleapis.com/css2?family=Noto+Sans:wght@400;700&display=swap");
#app {
  height: 100%;
  width: 100%;
  overflow: auto;
}

html {
  height: 100%;
  font-family: "Noto Sans", sans-serif;
  text-shadow: 1px 1px 1px rgba(0, 0, 0, 0.004);
  text-rendering: optimizeLegibility !important;
  -webkit-font-smoothing: antialiased !important;
}

body {
  background-color: #EEF1FA;
  color: #42434A;
  display: flex;
  height: 100%;
  font-size: 16px;
  overflow: auto;
  position: relative;
  transition-duration: 0.3s;
}

*:focus {
  outline: none;
}

input {
  font-family: "Noto Sans", sans-serif;
  font-size: 16px;
  color: #42434A;
}

#nav {
  width: 70px;
  min-width: 70px;
  padding: 20px 0;
  position: relative;
  background-color: white;
  display: flex;
  justify-content: space-between;
  flex-direction: column;
  position: fixed;
  height: 100%;
  transition-duration: 0.3s;
  z-index: 10;
}
#nav #logo {
  width: 30px;
  height: 30px;
  background-color: #0080FF;
  border-radius: 3px;
  font-weight: bold;
  line-height: 30px;
  text-align: center;
  color: white;
  margin-left: 20px;
}
#nav #menu {
  display: flex;
  flex-direction: column;
}
#nav #menu li {
  width: 70px;
  transition-duration: 0.3s;
}
#nav #menu a {
  width: 100%;
  height: 70px;
  line-height: 70px;
  display: block;
  position: relative;
}
#nav #menu a svg {
  width: 100%;
  height: 19px;
  fill: #C3C6D2;
  pointer-events: none;
  transition-duration: 0.3s;
}
#nav #menu a.active svg {
  fill: #0080FF;
}
#nav #menu a:hover svg {
  fill: #9EA0A9;
}
#nav .switch {
  margin: 0 22px 10px 22px;
}
#nav .switch input:checked + .slider {
  background-color: #575C64 !important;
}
#nav .switch input:checked + .slider:before {
  background-color: #D9D9D9 !important;
}
#nav .switch .slider {
  background-color: #C3C6D2 !important;
}
#nav .switch .slider:before {
  background-color: #575C64 !important;
}
#nav #quit {
  width: 100%;
  height: 17px;
  position: relative;
  display: block;
}
#nav #quit svg {
  width: 100%;
  height: 19px;
  fill: #C3C6D2;
}

#navHover {
  position: absolute;
  height: 60px;
  width: 60px;
  top: 0;
  background-color: #EEF1FA;
  transition-duration: 0.4s;
  z-index: -1;
  right: 0;
  border-radius: 3px 0 0 3px;
}

h1 {
  font-size: 30px;
}

.btn {
  padding: 0 40px;
  border-radius: 3px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  cursor: pointer;
  margin-left: 20px;
  text-decoration: none;
  position: relative;
  min-width: fit-content;
}
.btn.icon svg {
  display: initial;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.btn svg {
  position: absolute;
  display: none;
}
.btn.icon {
  padding: 0;
  width: 45px;
  text-align: center;
  min-width: 45px;
}
.btn.icon svg {
  width: 15px;
  height: 15px;
  fill: white;
}
.btn.blue {
  background-color: #0080FF;
  box-shadow: 0px 8px 10px rgba(0, 128, 255, 0.3);
  color: white;
  font-weight: bold;
  font-size: 17px;
  transition-duration: 0.3s;
}
.btn.blue:hover {
  box-shadow: 0px 0px 0px rgba(235, 87, 87, 0.3);
}
.btn.red {
  background-color: #EB5757;
  box-shadow: 0px 8px 10px rgba(235, 87, 87, 0.3);
  color: white;
  font-weight: bold;
  font-size: 17px;
  transition-duration: 0.3s;
}
.btn.red:hover {
  box-shadow: 0px 0px 0px rgba(235, 87, 87, 0.3);
}
.btn.border {
  border: 2px solid #DFE4F6;
  font-size: 16px;
  width: 350px;
  display: flex;
  justify-content: space-between;
  text-align: left;
}

#content {
  width: 100%;
  padding: 0 40px 40px 110px;
  overflow: auto;
  transition-duration: 0.3s;
}

.double {
  display: flex;
  width: 100%;
}
.double form {
  margin-right: 40px;
}

.pageOptions {
  display: flex;
  justify-content: flex-end;
}

.header {
  width: 100%;
  display: flex;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 2px solid #DFE4F6;
}

.ui.label > .delete.icon {
  opacity: 1;
}

.top {
  background-color: #EEF1FA;
  position: sticky;
  top: 0;
  padding-top: 40px;
  padding-bottom: 20px;
  z-index: 11;
  transition-duration: 0.3s;
}
.top .header {
  margin-bottom: 20px;
}
.top .options {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.top .options .pickDate {
  padding: 0 !important;
  width: 210px !important;
}
.top .options .btn {
  margin-left: 20px !important;
}
.top .options > div {
  margin-left: 20px;
  margin-bottom: 20px;
}
.top .options > div:last-child {
  margin-bottom: 0;
}
.top .options:last-child {
  margin-left: 0 !important;
}
.top .options .searchBar {
  border-radius: 3px;
  border: 2px solid #DFE4F6;
  line-height: 45px;
  height: 45px;
  display: flex;
  width: 300px;
  justify-content: space-between;
  padding-left: 15px;
  background: white;
}
.top .options .searchBar.drop {
  padding-left: 0;
}
.top .options .searchBar.drop .item {
  margin: 0;
}
.top .options .searchBar.drop .ui {
  border: 0px;
  background: none;
  margin: 0;
  color: #42434A;
}
.top .options .searchBar.drop .ui a {
  border: 2px solid #0080FF;
  border-radius: 3px;
  padding: 5px 26px 5px 8px;
  margin-top: 3px;
  margin-left: 2px;
  margin-right: 5px;
  box-shadow: none;
}
.top .options .searchBar.drop .ui a:hover {
  border-color: #EB5757;
}
.top .options .searchBar.drop .ui .delete::before, .top .options .searchBar.drop .ui .delete::after {
  background-color: #EB5757 !important;
  opacity: 1 !important;
}
.top .options .searchBar.drop .ui input, .top .options .searchBar.drop .ui .text {
  color: #42434A;
  font-family: "Noto Sans", sans-serif;
  font-size: 16px;
}
.top .options .searchBar:hover {
  border-color: #C3C6D2;
}
.top .options .searchBar:focus-within {
  border-color: #0080FF;
}
.top .options .searchBar input {
  border: 0;
  background: none;
  width: 100%;
}
.top .options .searchBar input[type=search]::-webkit-search-cancel-button {
  -webkit-appearance: none;
  height: 14px;
  width: 14px;
  background: #EB5757;
  border-radius: 100%;
  cursor: pointer;
  background-image: url("../media/svg/times.svg");
  background-size: 6px;
  background-position: center;
  background-repeat: no-repeat;
}
.top .options .searchBar button {
  border: 0;
  background: none;
  width: 45px;
  line-height: 45px;
  cursor: pointer;
}
.top .options .searchBar button svg {
  height: 16px;
  width: 16px;
  fill: #9EA0A9;
}
.top .options .searchBar button:hover svg {
  fill: #0080FF;
}

.options + #content {
  padding-top: 300px;
}

.table-responsive {
  width: 100%;
}

table {
  width: 100%;
  border-collapse: inherit;
  background-color: white;
  border-radius: 3px;
  position: relative;
  min-width: 400px;
}
table th, table td {
  height: 55px;
  padding: 19px 20px;
}
table th:last-child, table td:last-child {
  text-align: right;
}
table thead {
  z-index: 1;
  border-radius: 3px 0 0 3px;
}
table thead.noOptions th {
  top: 147px !important;
}
table thead th {
  text-align: left;
  font-size: 17px;
  font-weight: bold;
  color: #0080FF;
  background-color: white;
  position: sticky;
  top: 192px;
  border-bottom: 2px solid #EEF1FA;
  z-index: 10;
}
table tbody tr {
  transition-duration: 0.3s;
}
table tbody tr:hover {
  background-color: #E6F3FF;
}
table tbody tr:hover .drag svg {
  fill: #9EA0A9;
}
table tbody .drag {
  padding: 0;
  width: 40px;
  cursor: grab;
  text-align: center;
  position: relative;
}
table tbody .drag:hover svg {
  fill: #0080FF !important;
}
table tbody .drag svg {
  transition-duration: 0.3s;
  height: 20px;
  width: 5px;
  fill: #DFE4F6;
  position: absolute;
  top: 17px;
}
table tbody .tableOptions {
  display: flex;
  justify-content: flex-end;
  height: 100%;
}
table tbody .tableOptions > * {
  margin-left: 15px;
}
table tbody .tableOptions .switch {
  margin-top: -5px;
}
table tbody .tableOptions .option {
  width: 14px;
  height: 14px;
  fill: #9EA0A9;
  cursor: pointer;
  transition-duration: 0.3s;
}
table tbody .tableOptions .option:hover {
  fill: #0080FF;
}
table tr:nth-child(odd) {
  background-color: #FCFCFD;
}

.switch {
  position: relative;
  display: inline-block;
  width: 26px;
  height: 26px;
  cursor: pointer;
}
.switch input {
  opacity: 0;
  width: 0;
  height: 0;
  position: absolute;
}
.switch input:checked + .slider {
  background-color: #A1D0FF;
}
.switch input:checked + .slider:before {
  -webkit-transform: translateX(15px);
  -ms-transform: translateX(15px);
  transform: translateX(15px);
  background-color: #0080FF;
}
.switch .slider {
  position: absolute;
  cursor: pointer;
  top: 10px;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #F0B9B9;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 10px;
  height: 6px;
}
.switch .slider:before {
  position: absolute;
  content: "";
  height: 12px;
  width: 12px;
  top: -3px;
  left: 0;
  background-color: #EB5757;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  border-radius: 100%;
}

#popup {
  display: none;
  z-index: 13;
}
@supports (-webkit-backdrop-filter: none) or (backdrop-filter: none) {
  #popup #popupBackground {
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(5px);
    background-color: rgba(0, 0, 0, 0.3);
  }
}
#popup #popupBackground {
  position: absolute;
  width: 100%;
  height: 100%;
}
#popup #popupContent {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 40px;
  position: absolute;
  z-index: 1;
  width: 100%;
  max-width: 470px;
  background-color: #EEF1FA;
  display: flex;
  flex-direction: column;
}
#popup #popupContent .popupInfo {
  margin: 40px 0;
}
#popup #popupContent .pageOptions {
  justify-content: flex-end;
}
#popup.active {
  display: block;
  position: absolute;
  width: 100%;
  height: 100%;
}

[type=date] {
  background: #fff url("../media/svg/date.svg") no-repeat;
  background-position: top 50% right 10px;
}

[type=date]::-webkit-inner-spin-button {
  display: none;
}

[type=date]::-webkit-calendar-picker-indicator {
  opacity: 0;
}

[type=time] {
  background: #fff url("../media/svg/time.svg") no-repeat;
  background-position: top 50% right 10px;
}

[type=date]::-webkit-inner-spin-button {
  display: none;
}

input::-webkit-calendar-picker-indicator {
  opacity: 0;
}

form {
  display: flex;
  flex-direction: column;
  font-family: "Noto Sans", sans-serif !important;
  font-size: 16px;
  color: #42434A;
}
form.large div {
  width: 100% !important;
}
form .btn {
  margin-left: 0;
  margin-top: 25px;
}
form .line {
  display: flex;
  flex-direction: row;
  margin-bottom: 20px;
}
form .line div {
  margin-right: 20px;
}
form .line div:last-child {
  margin-right: 0px;
}
form div {
  display: flex;
  flex-direction: column;
}
form div.little {
  width: 180px;
  min-width: 160px;
}
form div.medium {
  width: 270px;
  min-width: 270px;
}
form div.large {
  width: 630px;
}
form div.checkbox {
  flex-direction: row;
  line-height: 20px;
  position: relative;
  padding-right: 10px;
}
form div.checkbox:hover:before {
  background-color: #DFE4F6;
  opacity: 1;
}
form div.checkbox:hover input {
  border-color: #0080FF;
}
form div.checkbox:before {
  content: "";
  background-color: #DFE4F6;
  opacity: 0;
  position: absolute;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: calc(100% + 20px);
  width: calc(100% + 20px);
  transition-duration: 0.3s;
  z-index: -1;
}
form div.checkbox input {
  height: 20px;
  width: 20px;
  margin: 0 20px 0 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  overflow: hidden;
  transition-duration: 0.3s;
  padding: 0;
  position: relative;
}
form div.checkbox input:before {
  content: "";
  display: block;
  background-color: #0080FF;
  width: 0px;
  height: 0px;
  border-radius: 1px;
  font-size: 13px;
  position: absolute;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition-duration: 0.3s;
  opacity: 0;
}
form div.checkbox input:checked {
  position: relative;
  border-color: #0080FF;
}
form div.checkbox input:checked:before {
  width: 7px;
  height: 7px;
  opacity: 1;
}
form div input, form div textarea, form div select, form div .ui {
  margin-top: 10px;
  height: 45px;
  border-radius: 3px;
  border: 2px solid #DFE4F6;
  padding: 0 10px;
  line-height: 45px;
  font-family: "Noto Sans", sans-serif !important;
  font-size: 16px;
  background-color: white;
  transition-duration: 0.3s;
}
form div input:hover, form div textarea:hover, form div select:hover, form div .ui:hover {
  border-color: #C3C6D2;
}
form div input:focus, form div textarea:focus, form div select:focus, form div .ui:focus {
  border-color: #0080FF;
}
form div textarea {
  height: 90px;
  min-height: 90px;
  resize: vertical;
}
form .ui {
  padding-top: 12px !important;
  background: white !important;
  border: 2px solid #DFE4F6 !important;
}
form .ui .text {
  color: #42434A !important;
  margin: 0 !important;
  padding: 0 !important;
}
form .ui .item {
  margin: 0 !important;
}
form .ui input {
  padding-top: 0;
  margin: 0;
  padding-left: 10px;
  font-family: "Noto Sans", sans-serif !important;
  font-size: 16px;
}

.ui.search.dropdown > input.search {
  top: -2px;
}

.passwordView {
  display: flex;
  justify-content: space-between;
  position: relative;
}
.passwordView svg {
  height: 10px;
  width: 15px;
  cursor: pointer;
  fill: #9EA0A9;
  transition-duration: 0.3s;
  position: absolute;
  right: 15px;
  bottom: -37px;
}
.passwordView svg:hover {
  fill: #0080FF;
}
.passwordView svg.active {
  fill: #EB5757;
}

#login {
  width: 330px;
  position: absolute;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
#login form {
  margin: 20px 0;
}

.botOptions {
  display: flex;
  margin-top: 20px;
}
.botOptions .content {
  margin-right: 20px;
  padding: 10px;
  border-radius: 3px;
  background-color: white;
  display: flex;
}
.botOptions .selectShow {
  display: flex;
  line-height: 25px;
  width: fit-content;
}
.botOptions .selectShow select {
  margin-left: 20px;
  border: 0;
  font-size: 16px;
  font-family: "Noto Sans", sans-serif;
  font-size: 16px;
  color: #42434A;
  background: none;
}

.pagination {
  padding: 10px;
  border-radius: 3px;
  background-color: white;
  display: flex;
  width: min-content;
}
.pagination div {
  margin-right: 10px;
  width: 25px;
  height: 25px;
  text-align: center;
  line-height: 24px;
  color: #9EA0A9;
  transition-duration: 0.3s;
  font-size: 16px;
  cursor: pointer;
  display: block;
  border-radius: 3px;
}
.pagination div:last-child {
  margin: 0;
}
.pagination div:last-child svg {
  transform: rotate(180deg);
}
.pagination div.active {
  background-color: #0080FF;
  color: white;
}
.pagination div.active svg {
  fill: white;
}
.pagination div:hover {
  background-color: #DFE4F6;
  color: #9EA0A9;
}
.pagination div:hover svg {
  fill: #9EA0A9;
}
.pagination div svg {
  height: 9px;
  width: 9px;
  fill: #9EA0A9;
}

.preloader {
  bottom: 0;
  height: 100%;
  left: 0;
  right: 0;
  top: 0;
  width: 100%;
  z-index: 9999;
}

.lds-ellipsis {
  margin: 0 auto;
  position: relative;
  top: 50%;
  -moz-transform: translateY(-50%);
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 64px;
  text-align: center;
  z-index: 9999;
}

.lds-ellipsis span {
  display: inline-block;
  width: 15px;
  height: 15px;
  border-radius: 50%;
  background: #0080FF;
  -webkit-animation: ball-pulse-sync 1s 0s infinite ease-in-out;
  animation: ball-pulse-sync 1s 0s infinite ease-in-out;
}

.lds-ellipsis span:nth-child(1) {
  -webkit-animation: ball-pulse-sync 1s -0.14s infinite ease-in-out;
  animation: ball-pulse-sync 1s -0.14s infinite ease-in-out;
}

.lds-ellipsis span:nth-child(2) {
  -webkit-animation: ball-pulse-sync 1s -70ms infinite ease-in-out;
  animation: ball-pulse-sync 1s -70ms infinite ease-in-out;
}

@-webkit-keyframes ball-pulse-sync {
  33% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  66% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
@keyframes ball-pulse-sync {
  33% {
    -webkit-transform: translateY(10px);
    transform: translateY(10px);
  }
  66% {
    -webkit-transform: translateY(-10px);
    transform: translateY(-10px);
  }
  100% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
}
.disableMenu #nav {
  margin-left: -70px;
  opacity: 0;
}
.disableMenu #content {
  padding-left: 40px;
}

.order {
  height: 17px;
  width: 8px;
  position: relative;
  margin-left: 10px;
}
.order.asc svg:first-child {
  fill: #0080FF;
  top: 7px;
}
.order.asc svg:last-child {
  opacity: 0;
}
.order.desc svg:first-child {
  opacity: 0;
}
.order.desc svg:last-child {
  fill: #0080FF;
  bottom: 8px;
}
.order svg {
  height: 10px;
  width: 6px;
  position: absolute;
  fill: #C3C6D2;
  cursor: pointer;
}
.order svg:first-child {
  transform: rotate(90deg);
  top: 0;
}
.order svg:last-child {
  transform: rotate(-90deg);
  bottom: 0;
}
.question {
  display: flex;
  padding-bottom: 20px;
  padding-top: 20px;
  border-bottom: 2px solid #DFE4F6;
}
.question:first-child {
  padding-top: 0;
  margin-top: 0;
}
.question:last-child {
  border: 0;
}
.question .line {
  display: flex;
  flex-direction: row;
  margin-bottom: 20px;
}
.question .line div {
  margin-right: 20px;
  width: 100%;
}
.question .line.option .btn {
  width: auto;
  max-width: none;
}
.question .line .btn {
  max-width: 45px;
  margin-top: 25px;
}
.question .line div:last-child {
  margin-right: 0px;
}
.question div {
  display: flex;
  flex-direction: column;
}
.question div.little {
  width: 180px;
  min-width: 160px;
}
.question div.medium {
  width: 270px;
  min-width: 270px;
}
.question div.large {
  width: 630px;
}
.question div.checkbox {
  flex-direction: row;
  line-height: 20px;
  position: relative;
  padding-right: 10px;
}
.question div.checkbox:hover:before {
  background-color: #DFE4F6;
  opacity: 1;
}
.question div.checkbox:hover input {
  border-color: #0080FF;
}
.question div.checkbox:before {
  content: "";
  background-color: #DFE4F6;
  opacity: 0;
  position: absolute;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  height: calc(100% + 20px);
  width: calc(100% + 20px);
  transition-duration: 0.3s;
  z-index: -1;
}
.question div.checkbox input {
  height: 20px;
  width: 20px;
  margin: 0 20px 0 0;
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  overflow: hidden;
  transition-duration: 0.3s;
  padding: 0;
  position: relative;
}
.question div.checkbox input:before {
  content: "";
  display: block;
  background-color: #0080FF;
  width: 0px;
  height: 0px;
  border-radius: 1px;
  font-size: 13px;
  position: absolute;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  transition-duration: 0.3s;
  opacity: 0;
}
.question div.checkbox input:checked {
  position: relative;
  border-color: #0080FF;
}
.question div.checkbox input:checked:before {
  width: 7px;
  height: 7px;
  opacity: 1;
}
.question div input, .question div textarea, .question div select, .question div .ui {
  margin-top: 10px;
  height: 45px;
  border-radius: 3px;
  border: 2px solid #DFE4F6;
  padding: 0 10px;
  line-height: 45px;
  font-family: "Noto Sans", sans-serif !important;
  font-size: 16px;
  background-color: white;
  transition-duration: 0.3s;
  width: 100%;
}
.question div input:hover, .question div textarea:hover, .question div select:hover, .question div .ui:hover {
  border-color: #C3C6D2;
}
.question div input:focus, .question div textarea:focus, .question div select:focus, .question div .ui:focus {
  border-color: #0080FF;
}
.question div textarea {
  height: 90px;
  min-height: 90px;
  resize: vertical;
}
.question .ui {
  padding-top: 12px !important;
  background: white !important;
  border: 2px solid #DFE4F6 !important;
}
.question .ui .text {
  color: #42434A !important;
  margin: 0 !important;
  padding: 0 !important;
}
.question .ui .item {
  margin: 0 !important;
}
.question .ui input {
  padding-top: 0;
  margin: 0;
  padding-left: 10px;
  font-family: "Noto Sans", sans-serif !important;
  font-size: 16px;
}
.question .left, .question .right {
  width: 50%;
  padding: 0 20px;
}
.question .btn {
  margin: 0;
}
.question .left {
  padding-left: 0;
  border-right: 2px solid #DFE4F6;
}
.question .right {
  padding-right: 0;
}
.question .right .option .btn {
  margin-top: 0;
}
.question .condition li {
  margin-bottom: 20px;
  border-bottom: 2px solid #DFE4F6;
}
.question .condition li:last-child {
  margin-bottom: 0px;
  border-bottom: 0px;
}

.mb {
  margin-bottom: 20px;
}

textarea {
  padding-top: 10px !important;
  line-height: normal !important;
}

h2 {
  font-size: 22px;
  white-space: normal;
}

p {
  line-height: normal !important;
  white-space: break-spaces;
}

.ui.multiple.search.dropdown > .text {
  top: 2px;
}

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