* {
  padding: 0;
  margin: 0; }

a {
  color: black;
  text-decoration: none; }

a:hover {
  color: black;
  text-decoration: none; }

a:focus {
  outline: none;
  text-decoration: none; }

li {
  list-style-type: none; }

select {
  outline: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none; }

ol, ul {
  margin-top: 0;
  margin-bottom: 0;
  padding: 0; }

body {
  background-color: #EBF3FF;
  display: flex;
  justify-content: flex-start; }

.table > thead > tr > th {
  border-bottom: none; }

tbody, td, tfoot, th, thead, tr {
  border-style: none; }

.table > :not(:first-child) {
  border-top: none; }

table .first input[type="checkbox"] {
  display: none; }

table label {
  margin-top: -5px;
  margin-right: 10px;
  cursor: pointer;
  display: inline-block;
  vertical-align: middle; }

table input[type="checkbox"]:checked + label svg rect {
  fill: #0096F7;
  stroke-width: 0; }

table input[type="checkbox"]:checked + label svg path {
  display: block; }

.modal.fade div.modal-header {
  padding: 20px 25px 15px 30px; }
  .modal.fade div.modal-header .modal-title {
    cursor: pointer;
    font-size: 18px;
    font-family: Inter, sans-serif;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    color: #161412; }
    .modal.fade div.modal-header .modal-title i {
      margin-right: 10px;
      font-size: 18px;
      font-weight: 400; }
.modal.fade .modal-body {
  padding: 20px 30px 30px 30px; }
.modal.fade .modal-response {
  width: auto;
  display: none;
  justify-content: space-between;
  align-items: center;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 10px;
  font-size: 14px;
  font-family: 'Switzer', sans-serif;
  font-weight: 400; }
  .modal.fade .modal-response .response-info {
    display: flex;
    align-items: center;
    gap: 10px; }
.modal.fade .modal-response.failed {
  display: flex;
  color: #B71F23;
  background-color: #fef2f2; }
.modal.fade .modal-response.success {
  display: flex;
  color: #0DC36C;
  background-color: rgba(13, 195, 108, 0.2); }
.modal.fade .modal-footer {
  justify-content: flex-start;
  padding: 15px 25px 20px calc(30px - .25rem); }
  .modal.fade .modal-footer button.save-changes {
    box-sizing: border-box;
    height: 36px;
    display: inline-flex;
    padding: 9px 14px;
    justify-content: center;
    align-items: center;
    gap: 5px;
    flex: none;
    order: 0;
    flex-grow: 0;
    border-radius: 6px;
    color: #FFF;
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    background-color: #0080FF;
    opacity: 1; }
  .modal.fade .modal-footer button.save-changes:disabled {
    background-color: #07133B;
    opacity: 0.4; }
  .modal.fade .modal-footer button.close-modal {
    box-sizing: border-box;
    width: 68px;
    height: 34px;
    display: inline-flex;
    padding: 9px 14px;
    justify-content: center;
    align-items: center;
    gap: 5px;
    flex: none;
    order: 0;
    flex-grow: 0;
    color: #07133B;
    font-family: Inter, sans-serif;
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border-radius: 6px;
    border: 1px solid #07133B;
    background: #FFF; }

.response-common {
  box-sizing: border-box;
  display: none;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  border-radius: 10px;
  padding: 15px;
  margin-bottom: 28px;
  font-size: 14px;
  font-family: 'Switzer', sans-serif;
  font-weight: 400; }
  .response-common .response-info {
    display: flex;
    align-items: center;
    gap: 10px; }

.response-common.failed {
  display: flex;
  color: #B71F23;
  background-color: #fef2f2; }

.response-common.success {
  display: flex;
  color: #0DC36C;
  background-color: rgba(13, 195, 108, 0.2); }

.notification {
  position: absolute;
  z-index: 999;
  top: -100px;
  border-radius: 10px 10px 5px 5px;
  box-shadow: 0 1px 4px 0 rgba(0, 0, 0, 0.25);
  background: #FFF; }
  .notification .message-notification {
    width: 403px;
    height: 60px;
    padding: 15px 0;
    display: flex;
    flex-direction: row;
    align-items: center;
    border-radius: 10px 10px 0 0; }
    .notification .message-notification .message-notification-icon {
      width: 30px;
      height: 30px;
      margin-left: 15px;
      margin-right: 9px;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center; }
    .notification .message-notification .message-notification-content {
      color: #0E0E0E;
      font-family: Inter, sans-serif;
      font-size: 16px;
      font-style: normal;
      font-weight: 400;
      line-height: normal; }
  .notification .process-container {
    width: 100%;
    height: 5px; }
    .notification .process-container .process {
      height: 5px;
      transition-property: width;
      border-radius: 10px; }

.notification.success .message-notification-icon {
  background: rgba(13, 195, 108, 0.2); }
  .notification.success .message-notification-icon i {
    font-size: 16px;
    color: #0DC36C; }
.notification.success .process-container .process {
  background: #0dc36c; }

.notification.failed .message-notification-icon {
  background: rgba(183, 31, 35, 0.2); }
  .notification.failed .message-notification-icon i {
    font-size: 16px;
    color: #B71F23; }
.notification.failed .process-container .process {
  background: #b71f23; }

label.checkbox-square-label {
  cursor: pointer;
  margin-top: 5px;
  margin-right: 8px; }
  label.checkbox-square-label input[type="checkbox"] {
    display: none; }
  label.checkbox-square-label input[type="checkbox"] + i {
    opacity: 0.1; }
  label.checkbox-square-label input[type="checkbox"]:checked + i {
    opacity: 1; }

.rl-switch {
  display: flex;
  align-items: center;
  gap: 10px; }
  .rl-switch .rl-switch__input {
    display: none; }
  .rl-switch .rl-switch__input:checked + .rl-switch__slider .rl-switch__slider-back {
    fill: #0096F7; }
  .rl-switch .rl-switch__input:checked + .rl-switch__slider .rl-switch__slider-circle {
    transform: translateX(17px); }

@font-face {
  font-family: 'Tourney';
  src: url("/font/Tourney") format("truetype"); }
@font-face {
  font-family: 'Inter';
  src: url("/font/Inter") format("truetype"); }

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