.nice-select {
  -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
  background-color: #fff;
  border-radius: 5px;
  border: solid 1px #e8e8e8;
  box-sizing: border-box;
  clear: both;
  cursor: pointer;
  display: block;
  float: left;
  font-family: inherit;
  font-size: 14px;
  font-weight: normal;
  height: 42px;
  line-height: 40px;
  outline: none;
  padding-left: 18px;
  padding-right: 30px;
  position: relative;
  text-align: left !important;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
  white-space: nowrap;
  width: auto;
}
.nice-select:hover {
  border-color: #dbdbdb;
}
.nice-select:active, .nice-select.open, .nice-select:focus {
  border-color: #999;
}
.nice-select:after {
  border-bottom: 2px solid #999;
  border-right: 2px solid #999;
  content: "";
  display: block;
  height: 5px;
  margin-top: -4px;
  pointer-events: none;
  position: absolute;
  right: 12px;
  top: 50%;
  -webkit-transform-origin: 66% 66%;
  -ms-transform-origin: 66% 66%;
  transform-origin: 66% 66%;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
  width: 5px;
}
.nice-select.open:after {
  -webkit-transform: rotate(-135deg);
  -ms-transform: rotate(-135deg);
  transform: rotate(-135deg);
}
.nice-select.open .list {
  opacity: 1;
  pointer-events: auto;
  -webkit-transform: scale(1) translateY(0);
  -ms-transform: scale(1) translateY(0);
  transform: scale(1) translateY(0);
}
.nice-select.disabled {
  border-color: #ededed;
  color: #999;
  pointer-events: none;
}
.nice-select.disabled:after {
  border-color: #cccccc;
}
.nice-select.wide {
  width: 100%;
}
.nice-select.wide .list {
  left: 0 !important;
  right: 0 !important;
}
.nice-select.right {
  float: right;
}
.nice-select.right .list {
  left: auto;
  right: 0;
}
.nice-select.small {
  font-size: 12px;
  height: 36px;
  line-height: 34px;
}
.nice-select.small:after {
  height: 4px;
  width: 4px;
}
.nice-select.small .option {
  line-height: 34px;
  min-height: 34px;
}
.nice-select .list {
  background-color: #fff;
  border-radius: 5px;
  box-shadow: 0 0 0 1px rgba(68, 68, 68, 0.11);
  box-sizing: border-box;
  margin-top: 4px;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  pointer-events: none;
  position: absolute;
  top: 100%;
  left: 0;
  -webkit-transform-origin: 50% 0;
  -ms-transform-origin: 50% 0;
  transform-origin: 50% 0;
  -webkit-transform: scale(0.75) translateY(-21px);
  -ms-transform: scale(0.75) translateY(-21px);
  transform: scale(0.75) translateY(-21px);
  -webkit-transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  transition: all 0.2s cubic-bezier(0.5, 0, 0, 1.25), opacity 0.15s ease-out;
  z-index: 9;
}
.nice-select .list:hover .option:not(:hover) {
  background-color: transparent !important;
}
.nice-select .option {
  cursor: pointer;
  font-weight: 400;
  line-height: 40px;
  list-style: none;
  min-height: 40px;
  outline: none;
  padding-left: 18px;
  padding-right: 29px;
  text-align: left;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}
.nice-select .option:hover, .nice-select .option.focus, .nice-select .option.selected.focus {
  background-color: #f6f6f6;
}
.nice-select .option.selected {
  font-weight: bold;
}
.nice-select .option.disabled {
  background-color: transparent;
  color: #999;
  cursor: default;
}

.no-csspointerevents .nice-select .list {
  display: none;
}
.no-csspointerevents .nice-select.open .list {
  display: block;
}

aside.sidebar {
  width: 250px;
  height: 100%;
  position: relative;
  display: inline-block;
  background-color: #1f252f;
  color: #fff;
}
aside.sidebar .nav-list {
  display: block;
  position: relative;
  list-style-type: none;
  padding: 10px 0 0;
  margin: 0;
}
aside.sidebar .nav-list li {
  display: block;
}
aside.sidebar .nav-list li a {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  text-decoration: none;
  color: #fff;
  padding: 6px 10px;
}
aside.sidebar .nav-list li a i {
  margin-right: 10px;
}
aside.sidebar .nav-list li:hover a {
  color: #1EAEDB;
  background-color: rgba(255, 255, 255, 0.1);
}

.add-new {
  display: block;
  position: relative;
  border: 1px solid #ccc;
  border-radius: 6px;
  padding: 5px;
  background-color: #fff;
}
.add-new .button {
  width: 100%;
  background-color: #fff;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}
.add-new .button i {
  margin-right: 5px;
}
.add-new .button.active {
  background-color: rgba(0, 0, 0, 0.2);
}
.add-new .domain-input {
  margin: 0;
}
.add-new .add-new-btn {
  position: relative;
}
.add-new .add-new-btn .button {
  width: 100%;
  margin: 0;
}
.add-new .add-new-form {
  position: relative;
  display: none;
}
.add-new .add-new-form form {
  margin-bottom: 0;
}
.add-new .add-new-form form input::placeholder {
  opacity: 0.4;
}
.add-new .add-new-form.active {
  display: block;
}

.align-items-start {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-start;
}

.align-items-end {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
}

.align-items-center {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}

.alert {
  display: block;
  position: relative;
  border: 1px solid #ccc;
  background-color: #ccc;
  border-radius: 6px;
  padding: 10px 60px 10px 10px;
  margin-bottom: 20px;
  font-weight: 600;
}
.alert.success {
  background-color: #c2f3bb;
  border-color: #6ebe62;
}
.alert .close-alert {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  position: absolute;
  width: 18px;
  height: 18px;
  border-radius: 100px;
  background-color: rgba(0, 0, 0, 0.1);
  top: 10px;
  right: 10px;
  font-size: 10px;
  cursor: pointer;
  z-index: 10;
}
.alert .close-alert:hover {
  background-color: rgba(0, 0, 0, 0.2);
}

.popup-win {
  position: fixed;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background-color: rgba(0, 0, 0, 0.4);
  backdrop-filter: blur(10px);
  opacity: 0;
  visibility: hidden;
  transition: all 0.2s;
  z-index: 99;
}
.popup-win .popup-content {
  position: relative;
  width: 400px;
  max-width: 100%;
  height: auto;
  margin: 30px;
  padding: 30px;
  border-radius: 10px;
  background-color: #fff;
  box-shadow: 0 5px 20px rgba(0, 0, 0, 0.2);
}
.popup-win .popup-content .close-popup {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  position: absolute;
  width: 26px;
  height: 26px;
  border-radius: 100px;
  top: 10px;
  right: 10px;
  background-color: rgba(0, 0, 0, 0.1);
  z-index: 1;
}
.popup-win .popup-content .close-popup:hover {
  background-color: rgba(0, 0, 0, 0.2);
}
.popup-win .popup-content h2 {
  font-size: 32px;
  font-weight: 600;
  margin-bottom: 0;
}
.popup-win .popup-content .current {
  display: block;
  margin-bottom: 20px;
}
.popup-win .popup-content form {
  margin-bottom: 0;
}
.popup-win.show {
  opacity: 1;
  visibility: visible;
}

table {
  margin-top: 10px;
}
table .su {
  color: #4a9a3e;
  border-color: #4a9a3e;
}
table thead {
  background-color: rgba(0, 0, 0, 0.05);
}
table .row-number {
  width: 40px;
  text-align: center;
  padding-right: 0;
}

.badge {
  display: inline-block;
  font-size: 12px;
  font-weight: 500;
  padding: 2px 8px;
  border-radius: 5px;
  border: 1px solid #ccc;
}

.nice-select {
  width: 100%;
}
.nice-select .list {
  width: 100%;
  height: auto;
  max-height: 600px;
  overflow-y: auto;
}
.nice-select .list li {
  margin-bottom: 0;
}

.d-flex {
  display: flex;
  flex-wrap: wrap;
}

.align-items-center {
  align-items: center;
}

.justify-content-between {
  justify-content: space-between;
}

.can-be-generated-pass {
  position: relative;
}
.can-be-generated-pass input {
  padding: 10px 55px 10px 10px;
}
.can-be-generated-pass .button.view-pass {
  position: absolute;
  width: auto;
  height: auto;
  display: inline-block;
  padding: 5px 10px;
  font-size: 16px;
  line-height: 16px;
  margin: 0;
  bottom: 5px;
  right: 5px;
}
.can-be-generated-pass .button.view-pass i {
  margin: 0;
}

.view-created-pass {
  position: relative;
  display: block;
}
.view-created-pass .view-pass-link {
  display: inline-block;
  position: absolute;
}
.view-created-pass .pass-string {
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s;
}
.view-created-pass .pass-string.show {
  opacity: 1;
  visibility: visible;
}

.button.red {
  border-color: #d73131;
  color: #d73131;
}
.button.red:hover {
  border-color: #9f1515;
  color: #9f1515;
  background-color: rgba(0, 0, 0, 0.05);
}

.container {
  position: relative;
}
.container .title {
  margin-top: 20px;
}
.container .subtitle {
  font-size: 22px;
  font-weight: 500;
  margin-top: 30px;
}

* {
  margin: 0;
  padding: 0;
  outline: none;
}

body {
  font-family: "Nunito Sans", sans-serif;
  background-color: #f5f5f5;
}
body a {
  transition: all 0.3s ease;
  text-decoration: none;
  font-weight: 500;
}
body a:hover {
  text-decoration: underline;
  color: #d97025;
}
body h1 {
  font-size: 32px;
  font-weight: 600;
}
body #app {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  height: 100vh;
}
body #app .content {
  width: calc(100% - 250px);
}
body #app .content .container {
  width: 100%;
  max-width: 100%;
  padding-left: 20px;
  padding-right: 20px;
}
body.auth-page {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
}
body.auth-page #auth-app {
  position: relative;
}
body.auth-page #auth-app .card {
  display: block;
  position: relative;
  width: 300px;
  height: auto;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
  padding: 20px 0;
}
body.auth-page #auth-app .card .card-header {
  padding: 0 20px;
  font-size: 26px;
  font-weight: 600;
  text-align: center;
}
body.auth-page #auth-app .card .card-body {
  position: relative;
  padding: 0 20px;
}
body.auth-page #auth-app .card .card-body form {
  margin-bottom: 0;
}
body.auth-page #auth-app .card .card-body form input {
  width: 100%;
}
body.auth-page #auth-app .card .card-body form .form-check {
  display: flex;
  flex-wrap: wrap;
  margin-bottom: 10px;
}
body.auth-page #auth-app .card .card-body form .form-check input[type=checkbox] {
  width: auto;
  margin-bottom: 0;
  margin-right: 5px;
}
body.auth-page #auth-app .card .card-body form .form-check label {
  margin-bottom: 0;
}
body.auth-page #auth-app .card .card-body form button {
  width: 100%;
}
body.welcome-page {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100vh;
}
body.welcome-page .welcome-card {
  position: relative;
  display: block;
  width: 600px;
  max-width: 100%;
  height: auto;
  background-color: rgba(255, 255, 255, 0.5);
  border-radius: 10px;
  padding: 30px;
  backdrop-filter: blur(30px);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.2);
}
body.welcome-page .welcome-card .title {
  font-size: 32px;
  font-weight: 600;
  text-align: center;
}
body.welcome-page .welcome-card .auth-link {
  text-align: center;
  margin-top: 10px;
}
body.welcome-page .welcome-card .auth-link a {
  text-decoration: none;
  background-color: rgba(255, 255, 255, 0.5);
}

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