@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Roboto:wght@400;500;700&display=swap");
:root {
  --color-primary: #20baba;
}

.font_roboto {
  font-family: "Roboto", sans-serif;
}

html, body {
  cursor: default;
  color: #333;
  font-family: "Poppins", sans-serif;
}
@media screen and (max-width: 360px) {
  html, body {
    font-size: 90%;
  }
}

::selection {
  background-color: rgba(32, 186, 186, 0.3);
}

a {
  display: block;
  text-decoration: none !important;
  color: #333;
  transition: 0.125s ease-in-out;
}
a:hover {
  color: #333;
}

.text_2xs {
  font-size: 0.65rem;
}

.text_xs {
  font-size: 0.75rem;
}

.text_sm {
  font-size: 0.9rem;
}

.text_base {
  font-size: 1rem;
}

.text_lg {
  font-size: 1.125rem;
}

.text_xl {
  font-size: 1.25rem;
}

.text_2xl {
  font-size: 1.3rem;
}

.text_3xl {
  font-size: 1.5rem;
}

.text_4xl {
  font-size: 2rem;
}

.text_5xl {
  font-size: 2.3rem;
}

.font_light {
  font-weight: 300;
}

.font_medium {
  font-weight: 500;
}

.font_semiBold {
  font-weight: 600;
}

.font_bold {
  font-weight: bold;
}

.text_primary {
  color: var(--color-primary) !important;
}

.text_silver {
  color: #CCCCCC !important;
}

.text_gray {
  color: #AAAAAA !important;
}

.text_second_gray {
  color: #888888 !important;
}

.text_dark_blue {
  color: #0E1823 !important;
}

.bg_primary {
  background: var(--color-primary);
}

.bg_white {
  background-color: #FFFFFF;
}

.bg_black {
  background-color: #333;
}

.bg_gray {
  background-color: #AAAAAA;
}

.bg_light_silver {
  background-color: #EEEEEE;
}
.bg_light_silver:focus {
  background-color: #EEEEEE;
}

.bg_silver {
  background-color: #CCCCCC;
}

.bg_dark_blue {
  background-color: #0E1823;
}

.bg_green {
  background-color: #74DB85;
}

.bg_shadow {
  backdrop-filter: blur(10px);
  background: rgba(255, 255, 255, 0.2) !important;
}
.bg_shadow:focus {
  background: rgba(255, 255, 255, 0.2) !important;
  box-shadow: unset !important;
}

.p_1_5 {
  padding: 0.375rem;
}

.p_7 {
  padding: 1.75rem;
}

.p_8 {
  padding: 2rem;
}

.p_9 {
  padding: 2.25rem;
}

.p_10 {
  padding: 2.5rem;
}

.p_2-5 {
  padding-bottom: 0.625rem;
}

.pb_8 {
  padding-bottom: 2rem;
}

.py_3 {
  padding-top: 0.75rem;
  padding-bottom: 0.75rem;
}

.pb_3 {
  padding-bottom: 0.75rem;
}

.pt_20 {
  padding-top: 5rem;
}

.pt_22 {
  padding-top: 5.5rem;
}

.pt_44 {
  padding-top: 11rem;
}

.pb_24 {
  padding-bottom: 6rem;
}

.mt_3 {
  margin-top: 0.75rem;
}

.mt_8 {
  margin-top: 2rem;
}

.mt_16 {
  margin-top: 4rem;
}

.mt_20 {
  margin-top: 5rem;
}

.mt_24 {
  margin-top: 6rem;
}

.mb_5 {
  margin-bottom: 1.25rem;
}

.mb_16 {
  margin-bottom: 4rem;
}

.mb_19 {
  margin-bottom: 4.9rem;
}

.ml_16 {
  margin-left: 4rem;
}

.mr_3 {
  margin-right: 0.75rem;
}

.w_1 {
  width: 0.25rem;
}

.object_cover {
  object-fit: cover;
}

.left_0 {
  left: 0;
}

.right_0 {
  right: 0;
}

.rounded_full {
  border-radius: 9999px !important;
}

.rounded_50 {
  border-radius: 50% !important;
}

.rounded {
  border-radius: 0.8rem !important;
}

.rounded_left {
  border-radius: 0.8rem 0 0 0.8rem !important;
}

.rounded_right {
  border-radius: 0 0.8rem 0.8rem 0 !important;
}

.rounded_top {
  border-radius: 0.8rem 0.8rem 0 0 !important;
}

.z_index_10 {
  z-index: 10;
}

.z_index_20 {
  z-index: 20;
}

.box_shadow {
  box-shadow: 0px 2px 5px rgba(0, 0, 0, 0.1);
}

.box_shadow_lg {
  box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
}

.position_center_center {
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

.position_Y_center {
  top: 50%;
  transform: translateY(-50%);
}

.position_X_center {
  left: 50%;
  transform: translateX(-50%);
}

.cursor_pointer {
  cursor: pointer;
}

.text_underline {
  text-decoration: underline !important;
}

.opacity_50 {
  opacity: 0.5;
}

.toggle_password {
  transition: 0.125s ease-in-out;
}

.no_user_select {
  user-select: none;
}

.limit_text {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.limit_2_row_text {
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* number of lines to show */
  -webkit-box-orient: vertical;
}

.line_height_normal {
  line-height: normal;
}

.placeholder_white_50::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: rgba(255, 255, 255, 0.5) !important;
  opacity: 1;
  /* Firefox */
}
.placeholder_white_50:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: rgba(255, 255, 255, 0.5) !important;
}
.placeholder_white_50::-ms-input-placeholder {
  /* Microsoft Edge */
  color: rgba(255, 255, 255, 0.5) !important;
}

.placeholder_gray::placeholder {
  /* Chrome, Firefox, Opera, Safari 10.1+ */
  color: #AAAAAA !important;
  opacity: 1;
  /* Firefox */
}
.placeholder_gray:-ms-input-placeholder {
  /* Internet Explorer 10-11 */
  color: #AAAAAA !important;
}
.placeholder_gray::-ms-input-placeholder {
  /* Microsoft Edge */
  color: #AAAAAA !important;
}

.white_space_nowrap {
  white-space: nowrap;
}

.btn:focus {
  box-shadow: unset !important;
}

.btn_box_shadow {
  box-shadow: 0px 3px 5px rgba(51, 51, 51, 0.16);
}

.btn_active {
  transition: 0.125s ease-in-out;
}
.btn_active:active {
  background-color: #EEEEEE;
}

.form-control {
  resize: none;
  border: unset;
  padding: 0.7rem 1rem;
}
.form-control:focus {
  box-shadow: unset !important;
}

.swiper-pagination-bullet {
  border: 2px solid #FFFFFF;
  width: 1rem !important;
  height: 1rem !important;
  opacity: 1 !important;
  background: unset !important;
  margin: 0 0.5rem !important;
}

.swiper-pagination-bullet.swiper-pagination-bullet-active {
  background: #FFFFFF !important;
}

.swiper-container-horizontal > .swiper-pagination-bullets, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 55px !important;
}

/* Customize the label (the container) */
.custom_checkbox {
  display: block;
  position: relative;
  padding-left: 35px;
  margin-bottom: 12px;
  cursor: pointer;
  user-select: none;
  color: #888888;
}
.custom_checkbox input {
  position: absolute;
  opacity: 0;
  cursor: pointer;
  height: 0;
  width: 0;
}
.custom_checkbox .checkmark {
  position: absolute;
  top: 0;
  left: 0;
  height: 1.45rem;
  width: 1.45rem;
  box-shadow: 0px 3px 6px rgba(51, 51, 51, 0.1) !important;
  border: 1px solid #DDDDDD;
  border-radius: 0.25rem;
}
.custom_checkbox .checkmark:after {
  content: "";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
  position: absolute;
  display: none;
  left: 0.15rem;
  top: -0.05rem;
  color: #FFFFFF;
}
.custom_checkbox input:checked ~ .checkmark {
  background-color: var(--color-primary);
}
.custom_checkbox input:checked ~ .checkmark:after {
  display: block;
}

.leaflet-top.leaflet-left {
  display: none;
}

.form-select {
  width: 92px;
  background-color: #EEEEEE;
  border: unset !important;
}
.form-select:focus {
  box-shadow: unset !important;
  border: unset !important;
}

.horizontal_calendar {
  overflow-x: auto;
  padding-bottom: 0.5rem;
}
.horizontal_calendar .horizontal_calendar_wrapper {
  padding: 0.5rem 0.6rem;
  text-align: center;
  border-radius: 1.2rem;
}
.horizontal_calendar .horizontal_calendar_wrapper .week_day {
  color: #AAAAAA;
  font-size: 0.8rem;
  font-weight: 300;
}
.horizontal_calendar .horizontal_calendar_wrapper .day {
  font-weight: 600;
  font-size: 1.1rem;
}
.horizontal_calendar .horizontal_calendar_wrapper.active {
  background-color: var(--color-primary);
  box-shadow: 0px 3px 5px rgba(0, 0, 0, 0.1);
}
.horizontal_calendar .horizontal_calendar_wrapper.active .day, .horizontal_calendar .horizontal_calendar_wrapper.active .week_day {
  color: #FFFFFF;
}

.custom_modal {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 1050;
  width: 100%;
  height: 100%;
  overflow-y: auto;
  background-color: rgba(51, 51, 51, 0.05);
  backdrop-filter: blur(3px);
}
.custom_modal .modal-dialog {
  display: flex;
  align-items: center;
  max-width: 600px;
  padding: 1rem;
  margin: 0;
  margin: auto;
}
.custom_modal .modal-content {
  display: flex;
  flex-direction: column;
  pointer-events: auto;
  width: 100%;
  border-radius: 1rem;
  background-color: #FFFFFF;
  position: relative;
  overflow: hidden;
  padding: 2rem 1.5rem;
  box-shadow: 0 6.5px 3.5px rgba(51, 51, 51, 0.1);
  border: unset !important;
  margin-top: auto;
  margin-bottom: auto;
}
.custom_modal .modal-close {
  position: absolute;
  top: 0.8rem;
  right: 1.2rem;
  cursor: pointer;
  font-size: 1.6rem;
}
.custom_modal .modal-input-close {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 1rem;
  cursor: pointer;
}
.custom_modal .modal_ul {
  padding: 0;
  margin: 0;
  list-style-type: none;
  overflow: auto;
  max-height: 80vh;
}
.custom_modal .modal_ul .modal_li {
  display: flex;
  font-size: 1.1rem;
  border-bottom: 1px solid #CCCCCC;
  padding: 0.7rem;
  cursor: pointer;
  transition: 0.125s ease-in-out;
}
.custom_modal .modal_ul .modal_li:active, .custom_modal .modal_ul .modal_li:hover {
  background-color: #EEEEEE;
}
.custom_modal .modal_ul .modal_li img {
  margin-right: 0.7rem;
  width: 1.5rem;
}
.custom_modal .modal_circle_btn input {
  padding: 0;
  width: 2.3rem;
  height: 2.3rem;
  border-radius: 50%;
  background: unset !important;
  outline: unset !important;
  border: 3px solid #20baba;
}
.custom_modal .modal_circle_btn span {
  color: #20baba;
}
.custom_modal .modal_circle_btn.not_available input {
  border: 3px solid #AAAAAA !important;
}
.custom_modal .modal_circle_btn.not_available span {
  color: #AAAAAA !important;
}

.modal_gallery {
  position: fixed;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  overflow: auto;
  background-color: black;
  /* Modal Content */
  /* The Close Button */
  /* Next & previous buttons */
  /* Position the "next button" to the right */
  /* Number text (1/3 etc) */
}
.modal_gallery .modal_gallery_content {
  position: relative;
  margin: auto;
  padding: 0;
  display: flex;
  align-items: center;
  height: 100vh;
}
.modal_gallery .modal_gallery_close {
  position: absolute;
  z-index: 1;
  top: 10px;
  right: 25px;
  font-size: 35px;
  cursor: pointer;
}
.modal_gallery .close:hover,
.modal_gallery .close:focus {
  color: #999;
  text-decoration: none;
  cursor: pointer;
}
.modal_gallery .mySlides {
  display: none;
  flex: 0 0 100%;
  width: 100%;
}
.modal_gallery .cursor {
  cursor: pointer;
}
.modal_gallery .prev,
.modal_gallery .next {
  cursor: pointer;
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  height: 50vh;
  width: auto;
  padding: 1.5rem;
  color: white;
  font-size: 20px;
  transition: 0.6s ease;
  user-select: none;
  display: flex;
  align-items: center;
}
.modal_gallery .next {
  right: 0;
  border-radius: 3px 0 0 3px;
}
.modal_gallery .numbertext {
  color: #FFFFFF;
  font-size: 1.3rem;
  padding: 8px 12px;
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
}
.modal_gallery img.hover-shadow {
  transition: 0.3s;
}
.modal_gallery .hover-shadow:hover {
  box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.2), 0 6px 20px 0 rgba(0, 0, 0, 0.19);
}

.ui-datepicker {
  border: unset !important;
  width: 100% !important;
  position: relative;
}
.ui-datepicker .ui-widget-header {
  background: unset !important;
  border: unset !important;
  margin-bottom: 0.5rem;
}
.ui-datepicker .ui-datepicker-month, .ui-datepicker .ui-datepicker-year {
  font-weight: 300;
  font-size: 1.22rem !important;
}
.ui-datepicker th {
  flex: 0 0 14.28%;
  font-weight: 500 !important;
  font-size: 0.75rem !important;
}
.ui-datepicker .ui-state-default {
  border: unset !important;
  background: unset !important;
  color: #333 !important;
  text-align: center;
  font-size: 1.12rem !important;
}
.ui-datepicker .ui-state-default.ui-state-highlight {
  background: #EEEEEE !important;
  border-radius: 1rem !important;
  color: #333 !important;
}
.ui-datepicker tr {
  display: flex;
}
.ui-datepicker td {
  padding: unset !important;
  padding-bottom: 0.3rem !important;
  flex: 0 0 14.28%;
  margin: 0.3rem 0;
}
.ui-datepicker .ui-state-active {
  background: var(--color-primary) !important;
  color: #FFFFFF !important;
  border-radius: 1rem !important;
  border: unset !important;
}
.ui-datepicker .ui-datepicker-next-hover {
  right: 2px !important;
}
.ui-datepicker .ui-datepicker-prev-hover {
  left: 2px !important;
}
.ui-datepicker .ui-datepicker-prev-hover, .ui-datepicker .ui-datepicker-next-hover {
  top: 2px !important;
}
.ui-datepicker .ui-datepicker-prev-hover:hover, .ui-datepicker .ui-datepicker-next-hover:hover {
  border: unset !important;
}
.ui-datepicker .ui-datepicker-next, .ui-datepicker .ui-datepicker-prev {
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
}
.ui-datepicker .ui-datepicker-next:before {
  content: "";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
.ui-datepicker .ui-datepicker-next .ui-icon {
  display: none;
}
.ui-datepicker .ui-datepicker-prev:before {
  content: "";
  font-family: "Font Awesome 5 Free";
  font-weight: 900;
}
.ui-datepicker .ui-datepicker-prev .ui-icon {
  display: none;
}
.ui-datepicker .ui-state-hover {
  background: unset !important;
}
.ui-datepicker .ui-datepicker-month, .ui-datepicker .ui-datepicker-year {
  border: unset;
}
.ui-datepicker .ui-datepicker-month:focus, .ui-datepicker .ui-datepicker-year:focus {
  outline: none;
}

.card_transfer_line {
  position: relative;
}
.card_transfer_line:before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: -1;
  height: 70%;
  width: 0.1rem;
  background: #EEEEEE;
}

.circle_notice {
  position: absolute;
  top: 0.2rem;
  right: 0;
  font-size: 0.5rem;
  color: #7069F5;
  border: 1px solid #FFFFFF;
  border-radius: 50%;
}

.card_status {
  width: 0.2rem;
  background-color: red;
}

.tranfer_status {
  padding: 0.2rem 0.5rem;
  border-radius: 0.5rem;
  font-size: 0.8rem;
  text-transform: uppercase;
  font-weight: 500;
}

/*# sourceMappingURL=main.css.map */
