/* [project]/src/components/Swal/style.scss.css [app-client] (css) */
.swal-overlay {
  z-index: 10000;
  opacity: 0;
  pointer-events: none;
  -webkit-user-select: none;
  user-select: none;
  background-color: #0006;
  justify-content: center;
  align-items: center;
  transition: opacity .3s;
  display: flex;
  position: fixed;
  inset: 0;
}

.swal-overlay.swal-overlay-show-modal {
  opacity: 1;
  pointer-events: auto;
}

.swal-modal {
  background-color: #fff;
  border-radius: 5px;
  width: 478px;
}

.swal-modal.showSweetAlert {
  animation: .3s showSweetAlert;
}

.swal-modal.shake {
  animation: .3s swalShakeHead;
}

@media (max-width: 500px) {
  .swal-modal {
    width: calc(100% - 20px);
  }
}

.swal-title {
  color: #000000a6;
  text-transform: none;
  text-align: center;
  margin-bottom: 0;
  padding: 13px 16px;
  font-size: 27px;
  font-weight: 600;
  line-height: normal;
  display: block;
  position: relative;
}

.swal-title:first-child {
  margin-top: 26px;
}

.swal-title:not(:first-child) {
  padding-bottom: 0;
}

.swal-title:not(:last-child) {
  margin-bottom: 13px;
}

.swal-text {
  text-align: center;
  color: #000000a3;
  overflow-wrap: break-word;
  max-width: calc(100% - 20px);
  padding: 0 25px;
  font-size: 16px;
  font-weight: 400;
}

.swal-text:first-child {
  margin-top: 45px;
}

.swal-text:last-child {
  margin-bottom: 45px;
}

.swal-icon {
  box-sizing: content-box;
  border-style: solid;
  border-width: 4px;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  margin: 20px auto;
  padding: 0;
  position: relative;
}

.swal-icon:first-child {
  margin-top: 32px;
}

.swal-icon.info {
  border-color: #3fc3ee;
}

.swal-icon.info:after, .swal-icon.info:before {
  content: "";
  background-color: #3fc3ee;
  position: absolute;
  left: 50%;
}

.swal-icon.info:before {
  border-radius: 2px;
  width: 5px;
  height: 29px;
  margin-left: -2px;
  bottom: 17px;
}

.swal-icon.info:after {
  border-radius: 50%;
  width: 7px;
  height: 7px;
  margin-left: -3px;
  top: 19px;
}

.swal-icon.success {
  border-color: #a5dc86;
}

.swal-icon.success:after, .swal-icon.success:before {
  content: "";
  background: #fff;
  border-radius: 50%;
  width: 60px;
  height: 120px;
  position: absolute;
  transform: rotate(45deg);
}

.swal-icon.success:before {
  transform-origin: 60px 60px;
  border-radius: 120px 0 0 120px;
  top: -7px;
  left: -33px;
  transform: rotate(-45deg);
}

.swal-icon.success:after {
  transform-origin: 0 60px;
  border-radius: 0 120px 120px 0;
  animation: .5s rotatePlaceholder;
  top: -11px;
  left: 30px;
  transform: rotate(-45deg);
}

.swal-icon.success .icon:before, .swal-icon.success .icon:after {
  content: "";
  z-index: 2;
  background-color: #a5dc86;
  border-radius: 2px;
  height: 5px;
  display: block;
  position: absolute;
}

.swal-icon.success .icon:after {
  width: 47px;
  animation: .5s animateSuccessLong;
  top: 38px;
  right: 8px;
  transform: rotate(-45deg);
}

.swal-icon.success .icon:before {
  width: 25px;
  animation: .5s animateSuccessTip;
  top: 46px;
  left: 14px;
  transform: rotate(45deg);
}

.swal-icon.success .ring:before {
  content: "";
  box-sizing: content-box;
  z-index: 2;
  border: 4px solid #a4db844d;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  position: absolute;
  top: -4px;
  left: -4px;
}

.swal-icon.success .ring:after {
  content: "";
  z-index: 1;
  background-color: #fff;
  width: 5px;
  height: 90px;
  padding: 1px;
  position: absolute;
  top: 8px;
  left: 28px;
  transform: rotate(-45deg);
}

.swal-icon.error {
  border-color: #f27474;
  animation: .5s animateErrorIcon;
}

.swal-icon.error .line {
  background-color: #f27474;
  border-radius: 2px;
  width: 47px;
  height: 5px;
  display: block;
  position: absolute;
  top: 37px;
}

.swal-icon.error .line.line-left {
  left: 17px;
  transform: rotate(45deg);
}

.swal-icon.error .line.line-right {
  right: 16px;
  transform: rotate(-45deg);
}

.swal-icon.error .x-mark {
  animation: .5s animateXMark;
  display: block;
  position: relative;
}

.swal-icon.warning {
  border-color: #f8bb86;
  animation: .5s pulseWarning;
}

.swal-icon.warning .body, .swal-icon.warning .dot {
  background-color: #f8bb86;
  position: absolute;
  left: 50%;
}

.swal-icon.warning .body {
  border-radius: 2px;
  width: 5px;
  height: 47px;
  margin-left: -2px;
  animation: .5s animate-i-mark;
  top: 10px;
}

.swal-icon.warning .dot {
  border-radius: 50%;
  width: 7px;
  height: 7px;
  margin-left: -4px;
  bottom: -11px;
}

.swal-actions {
  text-align: right;
  justify-content: flex-end;
  align-items: center;
  gap: 15px;
  margin-top: 13px;
  padding: 13px 16px;
  display: flex;
}

.swal-button {
  background-color: var(--color);
  color: #fff;
  border-radius: 5px;
  align-items: center;
  gap: 5px;
  padding: 6px 10px;
  font-size: 18px;
  display: inline-flex;
}

.swal-button:hover {
  background-color: color-mix(in srgb, var(--color), var(--mix-color));
}

.swal-button:active {
  transform: translateY(2px);
}

.swal-button.confirm {
  --color: #22a12a;
  --mix-color: black 10%;
}

.swal-button.danger {
  --color: #d62915;
  --mix-color: black 10%;
}

.swal-button[disabled] {
  opacity: .5;
  cursor: default;
}

@keyframes rotatePlaceholder {
  0%, 30% {
    transform: rotate(-45deg);
  }

  72%, 100% {
    transform: rotate(-405deg);
  }
}

@keyframes animateSuccessLong {
  0% {
    width: 0;
    top: 54px;
    right: 46px;
  }

  65% {
    width: 0;
    top: 54px;
    right: 46px;
  }

  84% {
    width: 55px;
    top: 35px;
    right: 0;
  }

  100% {
    width: 47px;
    top: 38px;
    right: 8px;
  }
}

@keyframes animateSuccessTip {
  0% {
    width: 0;
    top: 19px;
    left: 1px;
  }

  54% {
    width: 0;
    top: 19px;
    left: 1px;
  }

  70% {
    width: 50px;
    top: 37px;
    left: -8px;
  }

  84% {
    width: 17px;
    top: 48px;
    left: 21px;
  }

  100% {
    width: 25px;
    top: 45px;
    left: 14px;
  }
}

@keyframes animateErrorIcon {
  0% {
    opacity: 0;
    transform: rotateX(100deg);
  }

  100% {
    opacity: 1;
    transform: rotateX(0);
  }
}

@keyframes animateXMark {
  0% {
    opacity: 0;
    margin-top: 26px;
    transform: scale(.4);
  }

  50% {
    opacity: 0;
    margin-top: 26px;
    transform: scale(.4);
  }

  80% {
    margin-top: -6px;
    transform: scale(1.15);
  }

  100% {
    opacity: 1;
    margin-top: 0;
    transform: scale(1);
  }
}

@keyframes pulseWarning {
  0% {
    opacity: 0;
    transform: rotateX(100deg);
  }

  100% {
    opacity: 1;
    transform: rotateX(0);
  }
}

@keyframes animate-i-mark {
  0% {
    opacity: 0;
    transform: rotateZ(45deg);
  }

  25% {
    opacity: .4;
    transform: rotateZ(-25deg);
  }

  50% {
    opacity: .8;
    transform: rotateZ(15deg);
  }

  75% {
    opacity: 1;
    transform: rotateZ(-5deg);
  }

  100% {
    opacity: 1;
    transform: rotateX(0);
  }
}

@keyframes showSweetAlert {
  0% {
    transform: scale(1);
  }

  1% {
    transform: scale(.5);
  }

  45% {
    transform: scale(1.05);
  }

  80% {
    transform: scale(.95);
  }

  100% {
    transform: scale(1);
  }
}

@keyframes swalShakeHead {
  0%, 100% {
    transform: translate3d(0, 0, 0);
  }

  25%, 75% {
    transform: translate3d(-10px, 0, 0);
  }

  50% {
    transform: translate3d(10px, 0, 0);
  }
}

/* [project]/src/lib/scss/global.scss.css [app-client] (css) */
@font-face {
  font-family: Material Icons;
  font-style: normal;
  font-weight: 400;
  src: url("/fonts/material/material_icon.woff2") format("woff2");
}

.material-icons {
  letter-spacing: normal;
  text-transform: none;
  white-space: nowrap;
  word-wrap: normal;
  vertical-align: middle;
  -webkit-font-smoothing: antialiased;
  direction: ltr;
  font-family: Material Icons;
  font-size: 24px;
  font-style: normal;
  font-weight: normal;
  line-height: 1;
  display: inline-block;
}

.rotate-45 {
  transform: rotate(45deg);
}

.rotate-90 {
  transform: rotate(90deg);
}

.rotate-180 {
  transform: rotate(180deg);
}

@font-face {
  font-family: SolaimanLipi;
  src: url("/fonts/solaiman-lipi/solaimanlipi.eot");
  src: url("/fonts/solaiman-lipi/solaimanlipi.woff") format("woff"), url("/fonts/solaiman-lipi/solaimanlipi.ttf") format("truetype"), url("/fonts/solaiman-lipi/solaimanlipi.svg#SolaimanLipiNormal") format("svg"), url("/fonts/solaiman-lipi/solaimanlipi.eot?#iefix") format("embedded-opentype");
  font-weight: normal;
  font-style: normal;
}

:root {
  --font_size_large: 18pt;
  --font_size_header: 16pt;
  --font_size_title: 14pt;
  --font_size_mideum: 13pt;
  --font_size_default: 12pt;
  --font_size_small: 9pt;
  --font_size_tiny: 8pt;
  --size_tiny: 5px;
  --size_small: 8px;
  --size_default: 10px;
  --size_medium: 14px;
  --size_large: 20px;
  --size_xlarge: 28px;
  --bg_color: white;
  --color_dark: #0f0f0f;
  --color_light: white;
  --color_default: var(--color_dark);
  --color_error: red;
  --color_success: green;
  --color_1: #7a3dd9;
  --color_2: #006a4e;
  --color_3: #f44336;
  --color_4: #ff03;
  --color_focus: #9c27b0;
  --color_highlight: yellow;
  --active_color: #dadada;
  --menu_bg_color: #7a3dd9;
  --box_shadow_default: 0 3px 6px #536ca729;
  --box_shadow_focus: 0px 8px 10px 1px #00000024, 0px 3px 14px 2px #0000001f, 0px 5px 5px -3px #0003;
  --box_shadow_icon: drop-shadow(2px 4px 6px #0009);
  --box_shadow_button: 0 4px 8px 0 #0003, 0 8px 16px 0 #0003;
  --default_font: "SolaimanLipi", Helvetica, sans-serif;
  --icon_font: "FontAwesome";
  --top: 99;
  --level_1: 44;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html, body {
  overflow-x: hidden;
}

body {
  font-family: var(--default_font);
  background-color: var(--bg_color);
  color: var(--color_default);
  -webkit-user-select: none;
  user-select: none;
}

a {
  -webkit-tap-highlight-color: #0000;
  color: inherit;
  text-decoration: none;
}

ul, ol {
  list-style: none;
}

input, textarea, select, button {
  color: inherit;
  font-size: inherit;
  background: none;
  border: none;
  outline: none;
  font-family: inherit;
}

button:active {
  transform: translateY(3px)scale(.9);
}

button:disabled {
  filter: contrast(.5);
  transform: none;
}

.hidden {
  display: none !important;
}

.app {
  width: 100%;
  height: 100vh;
}

.panel, .popup {
  opacity: 0;
  flex-direction: column;
  width: 100%;
  display: flex;
  position: fixed;
  bottom: 0;
  left: 0;
  transform: translateX(100%);
}

.panel.show, .popup.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0%);
}

.panel .title, .popup .title {
  color: #fff;
  background-color: #7a3dd9;
  align-items: center;
  gap: 10px;
  display: flex;
}

.panel .title button, .popup .title button {
  padding: var(--size_default);
}

.panel .title h3, .popup .title h3 {
  white-space: nowrap;
  text-overflow: ellipsis;
  padding: var(--size_default);
  font-weight: normal;
  overflow: hidden;
}

.panel .body, .popup .body {
  flex: 1;
  width: 100%;
  overflow: hidden auto;
}

.overlay {
  display: none;
}

.panel_container {
  z-index: 9000;
  pointer-events: none;
  position: fixed;
  inset: 0;
}

.panel {
  z-index: 1;
  height: 100vh;
}

.popup {
  z-index: 9500;
}

.popup_container {
  z-index: 9500;
  opacity: 0;
  pointer-events: none;
  justify-content: center;
  align-items: flex-end;
  transition: opacity .3s;
  display: flex;
  position: fixed;
  inset: 0;
}

.popup_container.show {
  opacity: 1;
  pointer-events: auto;
}

.popup_container.show .popup_content {
  transform: translateY(0);
}

.popup_container .popup_overlay {
  background: #00000080;
  position: absolute;
  inset: 0;
}

.popup_container .popup_content {
  background: #fff;
  border-radius: 20px 20px 0 0;
  flex-direction: column;
  width: 100%;
  max-width: 500px;
  max-height: 80vh;
  transition: transform .3s ease-out;
  display: flex;
  position: relative;
  overflow: hidden;
  transform: translateY(100%);
  box-shadow: 0 -5px 30px #0003;
}

@media (min-width: 768px) {
  .popup_container {
    align-items: center;
    padding: 20px;
  }

  .popup_container .popup_content {
    border-radius: 16px;
    max-height: 90vh;
    transform: translateY(50px);
    box-shadow: 0 10px 40px #0003;
  }

  .popup_container.show .popup_content {
    transform: translateY(0);
  }
}

.popup_container .popup_header {
  background: var(--color_1);
  color: #fff;
  border-bottom: 1px solid #e0e0e0;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
  display: flex;
}

.popup_container .popup_header h3 {
  margin: 0;
  font-size: 1.1rem;
  font-weight: 600;
}

.popup_container .popup_header .close_btn {
  cursor: pointer;
  color: #fff;
  background: #fff3;
  border: none;
  border-radius: 50%;
  justify-content: center;
  align-items: center;
  width: 32px;
  height: 32px;
  font-size: 20px;
  transition: all .2s;
  display: flex;
}

.popup_container .popup_header .close_btn:hover {
  background: #ffffff4d;
}

.popup_container .popup_body {
  flex: 1;
  padding: 16px 20px;
  overflow-y: auto;
}

.popup_container .popup_actions {
  background: #f9f9f9;
  border-top: 1px solid #e0e0e0;
  gap: 10px;
  padding: 16px 20px;
  display: flex;
}

#modal_container {
  z-index: 1000;
  width: 0;
  height: 0;
  position: fixed;
  top: 0;
  left: 0;
}

.app, .panel, .popup {
  background-image: url("/images/bg.jpg");
  background-position: center;
  background-size: cover;
}

.app_body {
  flex-direction: column;
  height: 100vh;
  display: flex;
}

.app_body .page {
  flex: 1;
  padding-bottom: 90px;
  overflow: hidden auto;
}

@media (max-width: 767px) {
  .form_modal {
    outline: 10vmax solid #11182780;
  }
}

@media (min-width: 768px) {
  .app_body {
    flex-direction: row-reverse;
  }

  .app_body .page {
    padding-bottom: 0;
  }

  .panel, .popup {
    max-width: 600px;
    box-shadow: var(--box_shadow_default);
    left: auto;
    right: 0;
  }

  .overlay {
    opacity: 0;
    pointer-events: none;
    background-color: #00000080;
    width: 100%;
    height: 100vh;
    transition: all .5s;
    display: block;
    position: fixed;
    top: 0;
    left: 0;
  }

  .overlay.show {
    opacity: 1;
    pointer-events: auto;
  }
}

.box {
  background-color: var(--bg_color);
  height: 45px;
  font-size: var(--font_size_title);
  --border_color: var(--color_dark);
  border: 1px solid var(--border_color);
  border-radius: var(--size_tiny);
  align-items: center;
  display: flex;
  position: relative;
  overflow: hidden;
}

.box.round {
  border-radius: var(--size_large);
}

.box:focus-within {
  --border_color: var(--color_error);
  box-shadow: var(--box_shadow_focus);
}

.box img {
  padding: 0 var(--size_default);
  height: var(--font_size_header);
}

.box label {
  padding-right: var(--size_default);
  border-right: 1px solid var(--border_color);
}

.box input, .box select, .box textarea {
  width: 0;
  height: 45px;
  line-height: var(--font_size_title);
  padding-left: var(--size_default);
  flex: 1;
}

.box input:placeholder-shown + button.close, .box select:placeholder-shown + button.close, .box textarea:placeholder-shown + button.close {
  position: absolute;
  right: 0;
  transform: scale(0);
}

.box i, .box button {
  justify-content: center;
  align-items: center;
  width: 45px;
  height: 45px;
  display: flex;
}

.box .close {
  color: var(--color_error);
  font-size: 16px;
  transition: transform .25s;
  transform: scale(1);
}

.box button:active {
  background-color: #e0e0e0;
}

.box button + input {
  border-left: 1px solid var(--border_color);
}

.box.select_box {
  overflow: visible;
}

.btn_list {
  gap: var(--size_default);
  flex-direction: row;
  margin-top: 1rem;
  display: flex;
}

.btn_list button {
  border: 1px solid var(--border_color);
  padding: var(--size_default);
  font-size: var(--font_size_title);
  background-color: var(--color_1);
  color: var(--color_light);
  border-radius: var(--size_tiny);
  flex: 1;
}

.btn_list button.green {
  background-color: #006a4e;
}

.btn_list button.red {
  background-color: #f44336;
}

.grid {
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  align-items: baseline;
  gap: 15px;
  display: grid;
}

.grid .grid-max {
  grid-column: 1 / -1;
  max-width: 100%;
}

.grid .grid-2 {
  grid-column: span 2;
  max-width: 100%;
}

.grid .grid-3 {
  grid-column: span 3;
  max-width: 100%;
}

.flex {
  flex-direction: row;
  gap: 4px;
  display: flex;
}

.flex.col {
  flex-direction: column;
}

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

.flex .flex-1 {
  flex: 1;
}

.fadein {
  animation: .6s ease-in-out forwards fadein;
}

@keyframes fadein {
  from {
    opacity: 0;
    transform: translateY(30px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/*# sourceMappingURL=src_541e269b._.css.map*/