:host, :root {
  --brand-font: "Hind Siliguri", sans-serif;
  --brand-primary: #2270f2;
  --brand-generic-red: #FF5722;
  --brand-generic-green: #4CAF50;
  --brand-generic-yellow: #FFC107;
  --brand-generic-white: #EEEEEE;
  --brand-font-c900: #082A5E;
  --brand-font-c600: #666b73;
  --brand-fg-primary: #7B7B7B;
  --brand-bg-primary: #F2F3F4;
  --brand-bg-secondary: #FDFDFD;
  --brand-bg-tertiary: #E2E2E2;
}

:host-context(.dark), :root.dark {
  --brand-font-c900: #EEEEEE;
  --brand-font-c600: #868f9f;
  --brand-bg-primary: #0D0F11;
  --brand-bg-secondary: #191D23;
  --brand-bg-tertiary: #262C36;
  --brand-fg-primary: #868F9F;
}

:root {
  --generic-white: #FFFFFF;
  --generic-black: #000000;
  --generic-font: sans-serif;
  --primary-font: "Hind Siliguri", sans-serif;
  --noto-serif-bengali: "Noto Serif Bengali", serif;
  --brand-col-1: #1363DF;
  --brand-col-2: #082A5E;
  --brand-col-3: #F9B667;
  --brand-opc-col-1: rgba(8, 42, 94, 0.118);
  --brand-opc-col-2: rgba(8, 42, 94, 0.33);
  --brand-opc-col-3: rgba(8, 42, 94, 0.70);
  --light-col-1: #F5F7FA;
  --gray-col-1: #CAD3DC;
  --gray-col-2: #DCDCDC;
  --green-col-1: #18AC5D;
  --red-col-1: #da4a4a;
  --website-primary-bg: var(--generic-white);
  --primary-website-text-color: var(--brand-col-2);
  --dash-light-col-1: #fcfcfc;
  --dash-light-col-2: #f1f1f1;
  --dash-light-col-3: #f9f9f9;
  --dash-light-col-4: #eef2f2;
  --dash-gray-col-1: #dcdcdc;
  --dash-gray-col-2: #707070;
  --dashboard-primary-bg: var(--dash-light-col-3);
  --dashboard-workspace-bg: var(--generic-white);
  --primary-dashboard-text-color: var(--brand-col-2);
  --shadow-1: 0px 64px 32px rgba(0, 0, 0, .04);
  --shadow-2: 0px 0px 12px rgba(0, 0, 0, .04);
  --shadow-3: 0px 0px 12px rgba(24, 24, 24, .05);
  --shadow-4: 0px 5px 10px rgba(0, 0, 0, .08);
  --shadow-5: 0px 10px 20px rgba(0, 0, 0, .08);
}

/* Add generic styles here! */
/* CROSS BROWSER SCROLL BAR */
/* The emerging W3C standard that is currently Firefox-only */
::-webkit-scrollbar {
  width: 0px;
}

::-webkit-scrollbar-track {
  background: var(--generic-white);
}

::-webkit-scrollbar-thumb {
  border-radius: 4px;
  background-color: var(--brand-col-2);
  border: 1px solid var(--generic-white);
}

/* Generic body style */
* {
  -webkit-tap-highlight-color: transparent;
}

body {
  font-family: var(--primary-font);
  color: var(--primary-website-text-color);
  background-color: var(--website-primary-bg);
}

body[data-page-type=dashboard] {
  color: var(--primary-dashboard-text-color);
  background-color: var(--dashboard-primary-bg);
}

[data-section=size] {
  max-width: 1440px;
  margin: 0 auto 0 auto;
}

[data-gap=side-gap] {
  margin: 0 auto;
  gap: 0 16px 0 16px;
  width: calc(100% - 32px);
}
@media screen and (min-width: 744px) {
  [data-gap=side-gap] {
    gap: 0 32px 0 32px;
    width: calc(100% - 64px);
  }
}

[data-padding=y-axis] {
  padding: 48px 0;
  min-height: calc(100% - 96px);
}
@media screen and (min-width: 744px) {
  [data-padding=y-axis] {
    padding: 64px 0;
    min-height: calc(100% - 128px);
  }
}
@media screen and (min-width: 1240px) {
  [data-padding=y-axis] {
    padding: 96px 0 96px;
    min-height: calc(100% - 192px);
  }
}

[data-attr=p-text] {
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
}
@media screen and (min-width: 744px) {
  [data-attr=p-text] {
    font-size: 16px;
    line-height: 19px;
  }
}

.remove_item_animation {
  -webkit-animation: fade-out 350ms ease;
          animation: fade-out 350ms ease;
}

@-webkit-keyframes fade-out {
  0% {
    opacity: 100%;
  }
  100% {
    opacity: 0%;
  }
}

@keyframes fade-out {
  0% {
    opacity: 100%;
  }
  100% {
    opacity: 0%;
  }
}
.add_item_animation {
  -webkit-transform: scale(0);
          transform: scale(0);
  -webkit-animation: fade-in 350ms ease;
          animation: fade-in 350ms ease;
}

@-webkit-keyframes fade-in {
  0% {
    display: none;
  }
  20% {
    display: block;
    -webkit-transform: scale(0);
            transform: scale(0);
    -webkit-transform-origin: bottom right;
            transform-origin: bottom right;
  }
  100% {
    display: block;
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: bottom right;
            transform-origin: bottom right;
  }
}

@keyframes fade-in {
  0% {
    display: none;
  }
  20% {
    display: block;
    -webkit-transform: scale(0);
            transform: scale(0);
    -webkit-transform-origin: bottom right;
            transform-origin: bottom right;
  }
  100% {
    display: block;
    -webkit-transform: scale(1);
            transform: scale(1);
    -webkit-transform-origin: bottom right;
            transform-origin: bottom right;
  }
}
/* Styles For Editable Item Placeholder */
.editable_item[contenteditable=true] {
  cursor: text;
  outline: none;
  display: block;
  position: relative;
}
.editable_item[contenteditable=true]::before {
  width: 100%;
  opacity: 40%;
  position: absolute;
  content: "";
  bottom: -4px;
  border-bottom: 2px solid var(--gray-col-1);
}
.editable_item[contenteditable=true]:empty {
  width: 100%;
  min-width: 200px;
}
.editable_item[contenteditable=true]:empty::before {
  bottom: unset;
  white-space: nowrap;
  padding-bottom: 4px;
  padding-bottom: 4px;
  content: attr(data-placeholder);
}

.add_new_field_btn {
  gap: 8px;
  opacity: 60%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 13px;
  font-weight: 500;
  margin-top: 12px;
  margin-left: auto;
  line-height: 13px;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  position: relative;
  padding: 12px 16px;
  border-radius: 20px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  white-space: nowrap;
  color: var(--primary-website-text-color);
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
  background-color: transparent;
}
.add_new_field_btn::before {
  content: "";
  width: 12px;
  height: 12px;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("/asset/icon/plus.svg");
}
.add_new_field_btn:hover, .add_new_field_btn:focus {
  opacity: 100%;
  background-color: var(--brand-opc-col-1);
}

.skeleton {
  opacity: 0.7;
  border-width: 0 !important;
  overflow: hidden !important;
  position: relative !important;
  border-radius: 8px !important;
}
.skeleton::before {
  content: "" !important;
  top: 0 !important;
  left: 0 !important;
  width: 100% !important;
  height: 100% !important;
  z-index: 999999 !important;
  border-radius: 0 !important;
  position: absolute !important;
  background-size: 0% !important;
  background-image: none !important;
  -webkit-animation: skeleton-loading 1s linear infinite alternate !important;
          animation: skeleton-loading 1s linear infinite alternate !important;
}
.skeleton::after {
  display: none !important;
}

@-webkit-keyframes skeleton-loading {
  0% {
    background-color: hsl(180, 1%, 85%);
  }
  100% {
    background-color: hsl(200, 20%, 95%);
  }
}

@keyframes skeleton-loading {
  0% {
    background-color: hsl(180, 1%, 85%);
  }
  100% {
    background-color: hsl(200, 20%, 95%);
  }
}
/* Generic Viewport Width for Grouping - v1.0.0 */
.vw-100, .vw-50, .vw-33 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  position: relative;
}

.vw-100.center, .vw-50.center, .vw-33.center {
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}

.vw-100.right, .vw-50.right, .vw-33.right {
  -webkit-box-pack: right;
      -ms-flex-pack: right;
          justify-content: right;
}

.vw-100.left, .vw-50.left, .vw-33.left {
  -webkit-box-pack: left;
      -ms-flex-pack: left;
          justify-content: left;
}

.vw-100 {
  width: 100%;
}

.vw-50 {
  width: 50%;
}

.vw-33 {
  width: 33.333%;
}

@media (max-width: 768px) {
  .vw-50 {
    width: 100%;
  }
  .vw-33 {
    width: 50%;
  }
}
@media (max-width: 576px) {
  .vw-33 {
    width: 100%;
  }
}
#lg_header {
  width: 100%;
  margin: 0 auto;
  max-width: 1440px;
}
#lg_header .container {
  width: 100%;
  height: 96px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#lg_header .container .logo {
  width: 228px;
  height: 56px;
  cursor: pointer;
}
#lg_header .container .logo img {
  width: 100%;
  height: 100%;
  cursor: pointer;
  -o-object-fit: contain;
     object-fit: contain;
}
#lg_header .container .link_wrapper {
  gap: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#lg_header .container .link_wrapper .link_box, #lg_header .container .link_wrapper .btn_box {
  gap: inherit;
  display: inherit;
  -webkit-box-align: inherit;
      -ms-flex-align: inherit;
          align-items: inherit;
}
#lg_header .container .link_wrapper .link_box .link {
  font-size: 17px;
  line-height: 20px;
  font-weight: 500;
  color: #082A5E;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
}
#lg_header .container .link_wrapper .link_box .link:hover, #lg_header .container .link_wrapper .link_box .link.active {
  color: #1363DF;
}
#lg_header .container .link_wrapper .btn_box::before {
  width: 1px;
  content: "";
  height: 24px;
  background-color: #CAD3DC;
}
#lg_header .container .link_wrapper .btn_box .search_btn {
  width: 22px;
  height: 22px;
  background-color: transparent;
}
#lg_header .container .link_wrapper .btn_box .search_btn .icon {
  width: 100%;
  height: 100%;
}
#lg_header .container .link_wrapper .btn_box .search_btn .icon .color {
  stroke: #082A5E;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
}
#lg_header .container .link_wrapper .btn_box .search_btn:hover .icon .color {
  stroke: #1363DF;
}
#lg_header .container .link_wrapper .btn_box .signin_btn {
  gap: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  border-radius: 8px;
  padding: 10px 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
  background-color: transparent;
  border: 1px solid #CAD3DC;
}
#lg_header .container .link_wrapper .btn_box .signin_btn .icon {
  width: 18px;
  height: 18px;
  cursor: pointer;
}
#lg_header .container .link_wrapper .btn_box .signin_btn .icon .color {
  fill: #082A5E;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
}
#lg_header .container .link_wrapper .btn_box .signin_btn span {
  cursor: pointer;
  font-size: 16px;
  color: #082A5E;
  font-weight: 500;
  line-height: 18px;
  margin-bottom: -2px;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
}
#lg_header .container .link_wrapper .btn_box .signin_btn:hover {
  border-color: #1363DF;
}
#lg_header .container .link_wrapper .btn_box .signin_btn:hover span {
  color: #1363DF;
}
#lg_header .container .link_wrapper .btn_box .signin_btn:hover .icon .color {
  fill: #1363DF;
}
@media screen and (min-width: 1240px) {
  #lg_header .container .logo {
    width: 248px;
    height: 64px;
  }
  #lg_header .container .link_wrapper {
    gap: 32px;
  }
  #lg_header .container .link_wrapper .link_box .link {
    font-size: 18px;
    line-height: 21px;
  }
  #lg_header .container .link_wrapper .btn_box .search_btn {
    width: 24px;
    height: 24px;
  }
  #lg_header .container .link_wrapper .btn_box .signin_btn {
    padding: 11px 18px;
  }
  #lg_header .container .link_wrapper .btn_box .signin_btn .icon {
    width: 20px;
    height: 20px;
  }
  #lg_header .container .link_wrapper .btn_box .signin_btn span {
    font-size: 18px;
    line-height: 20px;
    margin-bottom: -3px;
  }
}
@media screen and (min-width: 1340px) {
  #lg_header .container .logo {
    width: 264px;
    height: 72px;
  }
}

body:has(.open_hidden_wrapper) {
  overflow: hidden;
}

#sm_header {
  width: 100%;
}
#sm_header.open_hidden_wrapper .container .visible_wrapper #hidden_wrapper_toggle_btn {
  position: relative;
  -webkit-transform: scale(0.8);
          transform: scale(0.8);
}
#sm_header.open_hidden_wrapper .container .visible_wrapper #hidden_wrapper_toggle_btn .line {
  position: absolute;
}
#sm_header.open_hidden_wrapper .container .visible_wrapper #hidden_wrapper_toggle_btn .line:nth-child(1) {
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
}
#sm_header.open_hidden_wrapper .container .visible_wrapper #hidden_wrapper_toggle_btn .line:nth-child(2) {
  -webkit-transform: rotate(-45deg);
          transform: rotate(-45deg);
}
#sm_header.open_hidden_wrapper .container .hidden_wrapper {
  right: 0px;
}
#sm_header.open_hidden_wrapper .container .hidden_wrapper .bg_layer {
  opacity: 0;
  -webkit-animation: fade-up 350ms forwards 400ms;
          animation: fade-up 350ms forwards 400ms;
}
@-webkit-keyframes fade-up {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes fade-up {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
#sm_header .container {
  width: 100%;
  height: 64px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#sm_header .container .visible_wrapper {
  width: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#sm_header .container .visible_wrapper .logo {
  width: 164px;
  height: 44px;
  cursor: pointer;
}
#sm_header .container .visible_wrapper .logo img {
  width: 100%;
  height: 100%;
  cursor: pointer;
  -o-object-fit: contain;
     object-fit: contain;
}
#sm_header .container .visible_wrapper .btn_box {
  gap: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#sm_header .container .visible_wrapper .btn_box .search_btn {
  width: 22px;
  height: 22px;
  background-color: transparent;
}
#sm_header .container .visible_wrapper .btn_box .search_btn .icon {
  width: 100%;
  height: 100%;
}
#sm_header .container .visible_wrapper .btn_box .search_btn .icon .color {
  stroke: #082A5E;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
}
#sm_header .container .visible_wrapper .btn_box #hidden_wrapper_toggle_btn {
  width: 24px;
  height: 24px;
  background-color: transparent;
}
#sm_header .container .visible_wrapper .btn_box #hidden_wrapper_toggle_btn .line {
  width: 100%;
  height: 2px;
  display: block;
  margin-bottom: 6px;
  border-radius: 4px;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
  background-color: #082A5E;
}
#sm_header .container .visible_wrapper .btn_box #hidden_wrapper_toggle_btn .line:last-child {
  margin-bottom: 0px;
}
#sm_header .container .hidden_wrapper {
  top: 64px;
  right: -100%;
  width: 100%;
  position: fixed;
  height: calc(100vh - 64px);
  -webkit-transition: all 500ms ease;
  transition: all 500ms ease;
}
#sm_header .container .hidden_wrapper .bg_layer {
  top: 0;
  left: 0;
  opacity: 0;
  width: 100%;
  z-index: -1;
  height: 100%;
  position: absolute;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
  background-color: rgba(0, 0, 0, 0.4);
}
#sm_header .container .hidden_wrapper .item_container {
  height: inherit;
  padding: 0 24px;
  max-width: 420px;
  overflow-y: auto;
  margin-left: auto;
  width: calc(100% - 48px);
  background-color: #ffffff;
}
#sm_header .container .hidden_wrapper .item_container .link_box {
  margin-top: 48px;
}
#sm_header .container .hidden_wrapper .item_container .link_box .link {
  display: block;
  font-size: 16px;
  padding: 12px 0;
  font-weight: 500;
  color: #082A5E;
  line-height: 20px;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
  border-bottom: 1px solid rgba(202, 211, 220, 0.5);
}
#sm_header .container .hidden_wrapper .item_container .link_box .link:first-child {
  padding-top: 0px;
}
#sm_header .container .hidden_wrapper .item_container .link_box .link:last-child {
  border-bottom: none;
}
#sm_header .container .hidden_wrapper .item_container .link_box .link.active {
  color: #1363DF;
}
#sm_header .container .hidden_wrapper .item_container .btn_box {
  gap: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  margin-top: 48px;
  margin-left: auto;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
#sm_header .container .hidden_wrapper .item_container .btn_box .signin_btn {
  gap: 8px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  border-radius: 8px;
  padding: 10px 16px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
  background-color: transparent;
  border: 1px solid rgba(202, 211, 220, 0.5);
}
#sm_header .container .hidden_wrapper .item_container .btn_box .signin_btn .icon {
  width: 18px;
  height: 18px;
  cursor: pointer;
}
#sm_header .container .hidden_wrapper .item_container .btn_box .signin_btn .icon .color {
  fill: #082A5E;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
}
#sm_header .container .hidden_wrapper .item_container .btn_box .signin_btn span {
  cursor: pointer;
  font-size: 16px;
  color: #082A5E;
  font-weight: 500;
  line-height: 18px;
  margin-bottom: -2px;
  -webkit-transition: all 350ms ease;
  transition: all 350ms ease;
}

body:has(.search-popup-open) {
  overflow: hidden;
}

[data-attr=search_popup] {
  inset: 0;
  height: 100vh;
  padding: 0 16px;
  display: none;
  position: fixed;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  z-index: 10000000000;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  width: calc(100vw - 32px);
  backdrop-filter: blur(5px);
  background-color: rgba(0, 0, 0, 0.5);
}
[data-attr=search_popup].search-popup-open {
  display: -webkit-box !important;
  display: -ms-flexbox !important;
  display: flex !important;
  -webkit-animation: popup-fade-in 250ms ease;
          animation: popup-fade-in 250ms ease;
}
@-webkit-keyframes popup-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
@keyframes popup-fade-in {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
[data-attr=search_popup].close-animation {
  -webkit-animation: popup-fade-out 250ms ease;
          animation: popup-fade-out 250ms ease;
}
@-webkit-keyframes popup-fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes popup-fade-out {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
[data-attr=search_popup] .popup_cross_btn {
  top: 12px;
  z-index: 2;
  right: 12px;
  width: 36px;
  height: 36px;
  padding: 12px;
  border-radius: 50%;
  position: absolute;
  background-size: 60%;
  -webkit-transform: rotate(45deg);
          transform: rotate(45deg);
  background-position: center;
  background-color: #ffffff;
  background-repeat: no-repeat;
  background-image: url("/asset/icon/popup-cross.svg");
}
[data-attr=search_popup] .content_container {
  max-width: 980px;
  height: -webkit-fit-content;
  height: -moz-fit-content;
  height: fit-content;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
}
[data-attr=search_popup] .content_container .popup_item .popup_item_slide_up {
  -webkit-transform-origin: bottom;
          transform-origin: bottom;
  -webkit-transform: translateY(100%);
          transform: translateY(100%);
  -webkit-transition: -webkit-transform 500ms ease;
  transition: -webkit-transform 500ms ease;
  transition: transform 500ms ease;
  transition: transform 500ms ease, -webkit-transform 500ms ease;
}
[data-attr=search_popup] .content_container .popup_item.item-show .popup_item_slide_up {
  z-index: 1;
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-animation: toggle 500ms ease;
          animation: toggle 500ms ease;
}
@-webkit-keyframes toggle {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}
@keyframes toggle {
  0% {
    -webkit-transform: translateY(100%);
            transform: translateY(100%);
  }
  100% {
    -webkit-transform: translateY(0);
            transform: translateY(0);
  }
}

#search_section {
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  margin: auto;
  overflow: hidden;
  position: absolute;
  max-width: 1024px;
  height: 95vh;
  border-radius: 16px 16px 0 0;
  background-color: #ffffff;
}
#search_section .search_container {
  width: 100%;
  margin: 0 auto;
  padding: 72px 0px 24px 0;
  height: calc(100% - 72px - 24px);
}
#search_section .search_container .search_title {
  top: 44px;
  left: 24px;
  font-size: 20px;
  font-weight: 600;
  line-height: 20px;
  position: absolute;
}
#search_section .search_container bitl-input {
  width: 100%;
  --wrapper-height-lg: 52px;
  --wrapper-height-sm: 52px;
  --input-container-height: 52px;
  --input-bg-col: transparent;
}
#search_section .search_container .search_box {
  gap: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 0 24px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#search_section .search_container .search_box bitl-button {
  --btn-padding-xl: 16px;
  --btn-padding-xr: 16px;
}
#search_section .search_container .result_box {
  margin-top: 24px;
  overflow-y: auto;
  padding: 0 24px;
  height: calc(95vh - 24px - 72px - 24px - 38px);
}
#search_section .search_container .result_box::-webkit-scrollbar {
  width: 6px !important;
}
#search_section .search_container .result_box:has(#empty_search_icon) {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
}
#search_section .search_container .result_box #empty_search_icon {
  width: 220px;
  height: 220px;
}
#search_section .search_container .result_box #empty_search_icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
@media screen and (min-width: 744px) {
  #search_section .search_container {
    width: calc(100% - 48px);
    padding: 96px 24px 24px 24px;
    height: calc(100% - 96px - 24px);
  }
  #search_section .search_container .search_title {
    left: 48px;
  }
  #search_section .search_container .search_box {
    padding: 0 48px;
  }
  #search_section .search_container .search_box bitl-button {
    --btn-padding-xl: 28px;
    --btn-padding-xr: 28px;
  }
  #search_section .search_container .result_box {
    padding: 0 48px;
    height: calc(95vh - 24px - 96px - 24px - 38px);
  }
  #search_section .search_container .result_box #empty_search_icon {
    width: 320px;
    height: 320px;
  }
}

body {
  padding-top: 64px;
}
@media screen and (min-width: 1080px) {
  body {
    padding-top: 96px;
  }
}

#header {
  top: 0;
  left: 0;
  height: 64px;
  position: fixed;
  padding: 0 16px;
  z-index: 1000000000;
  width: calc(100% - 32px);
  background-color: #ffffff;
  -webkit-filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.06));
          filter: drop-shadow(0px 0px 6px rgba(0, 0, 0, 0.06));
}
#header #sm_header {
  display: block;
}
#header #lg_header {
  display: none;
}
@media screen and (min-width: 1080px) {
  #header {
    height: 96px;
  }
  #header #sm_header {
    display: none;
  }
  #header #lg_header {
    display: block;
  }
}

[data-attr=copyright-section] {
  gap: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  width: 100%;
  margin: 0 auto;
  max-width: 1440px;
}
[data-attr=copyright-section] .copyright-text {
  font-size: 14px;
  font-weight: 400;
  line-height: 17px;
  text-align: center;
  letter-spacing: 0.3;
  color: var(--text-col-4);
}
[data-attr=copyright-section] [data-attr=bitlaab] {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
[data-attr=copyright-section] [data-attr=bitlaab] a {
  gap: 6px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  font-size: 0px;
  color: transparent;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
[data-attr=copyright-section] [data-attr=bitlaab] a::after {
  content: "";
  width: 84px;
  height: 20px;
  background-repeat: no-repeat;
  background-image: url("/asset/icon/footer/bitlaab.svg");
}
@media screen and (min-width: 744px) {
  [data-attr=copyright-section] {
    -webkit-box-orient: horizontal;
    -webkit-box-direction: normal;
        -ms-flex-direction: row;
            flex-direction: row;
    -webkit-box-pack: justify;
        -ms-flex-pack: justify;
            justify-content: space-between;
  }
  [data-attr=copyright-section] .copyright-text {
    font-size: 16px;
    line-height: 19px;
    text-align: start;
  }
  [data-attr=copyright-section] [data-attr=bitlaab] a::after {
    width: 116px;
    height: 28px;
  }
}

#footer {
  width: 100%;
  color: #b0b6c0;
  position: relative;
  background-color: #041838;
}
#footer .container {
  margin: 0 auto;
  max-width: 1440px;
  width: calc(100% - 32px);
  padding: 96px 16px 32px 16px;
}
#footer .container .footer_content {
  gap: 24px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
  margin-bottom: 96px;
  -webkit-box-pack: justify;
      -ms-flex-pack: justify;
          justify-content: space-between;
}
#footer .container .footer_content .single_box {
  width: 100%;
}
#footer .container .footer_content .single_box .logo {
  width: 264px;
  height: 72px;
  margin-bottom: 20px;
}
#footer .container .footer_content .single_box .logo img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
#footer .container .footer_content .single_box .address, #footer .container .footer_content .single_box .phone {
  font-size: 19px;
  font-weight: 600;
  color: #b0b6c0;
  line-height: 23px;
}
#footer .container .footer_content .single_box .social_links {
  gap: 16px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 40px;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
#footer .container .footer_content .single_box .social_links .social {
  width: 28px;
  height: 28px;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
}
#footer .container .footer_content .single_box .social_links .social.twitter {
  background-image: url("/asset/icon/footer/twitter.svg");
}
#footer .container .footer_content .single_box .social_links .social.facebook {
  background-image: url("/asset/icon/footer/facebook.svg");
}
#footer .container .footer_content .single_box .social_links .social.linkedin {
  background-image: url("/asset/icon/footer/linkedin.svg");
}
#footer .container .footer_content .single_box .social_links .social.youtube {
  background-image: url("/asset/icon/footer/youtube.svg");
}
#footer .container .footer_content .single_box .item_title {
  font-size: 18px;
  line-height: 21px;
  font-weight: 600;
  padding-bottom: 8px;
  color: #ffffff;
  margin: 24px 0 16px 0;
  border-bottom: 1px solid rgba(176, 182, 192, 0.25);
}
#footer .container .footer_content .single_box .link_box {
  padding-left: 16px;
}
#footer .container .footer_content .single_box .link_box .link {
  display: block;
  font-size: 16px;
  color: #b0b6c0;
  font-weight: 500;
  line-height: 19px;
  margin-bottom: 16px;
}
#footer .container .footer_content .single_box .link_box .link:last-child {
  margin-bottom: 0px;
}
#footer .container .footer_content .single_box .certification {
  gap: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  margin-top: 48px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
#footer .container .footer_content .single_box .certification::before {
  content: "";
  width: 64px;
  height: 64px;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("/asset/icon/footer/certified.svg");
}
#footer .container .footer_content .single_box .certification .reg_number .title {
  font-size: 14px;
  line-height: 17px;
}
#footer .container .footer_content .single_box .certification .reg_number .number {
  font-size: 30px;
  line-height: 33px;
  padding-top: 8px;
  font-weight: 700;
}
@media screen and (min-width: 680px) {
  #footer .container {
    width: calc(100% - 48px);
    padding: 96px 24px 24px 24px;
  }
  #footer .container .footer_content {
    gap: 48px;
  }
  #footer .container .footer_content .single_box {
    width: 264px;
  }
  #footer .container .footer_content .single_box .logo {
    margin-bottom: 40px;
  }
  #footer .container .footer_content .single_box .item_title {
    font-size: 20px;
    line-height: 23px;
    margin: 24px 0 24px 0;
  }
  #footer .container .footer_content .single_box .link_box {
    padding-left: 0px;
  }
  #footer .container .footer_content .single_box .certification {
    margin-top: 32px;
  }
}

[data-attr=contact-us-page] [data-attr=page-banner] {
  background-position: center;
  background-image: url("/asset/image/page-banner/contact-us.png");
}

[data-attr=authentication-page] [data-attr=page-banner] {
  background-position: center;
  background-image: url("/asset/image/page-banner/sign-in.webp");
}

[data-attr=about-us-page] [data-attr=page-banner] {
  background-position: center;
  background-image: url("/asset/image/page-banner/sign-in.webp");
}

[data-attr=admission-page] [data-attr=page-banner] {
  background-position: center;
  background-image: url("/asset/image/page-banner/sign-in.webp");
}

[data-attr=document-page] [data-attr=page-banner] {
  background-image: url("/asset/image/page-banner/doc.png");
}

[data-attr=page-banner][data-position=center] .container {
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
}

[data-attr=page-banner] {
  width: 100%;
  min-height: 296px;
  position: relative;
  background-size: cover;
  background-position: top;
  color: var(--generic-white);
  background-repeat: no-repeat;
}
[data-attr=page-banner]::before {
  top: 0;
  left: 0;
  z-index: 0;
  content: "";
  width: 100%;
  height: 100%;
  position: absolute;
  background: -webkit-gradient(linear, left top, left bottom, color-stop(5%, transparent), color-stop(20%, rgba(255, 255, 255, 0.3)), color-stop(70%, rgba(0, 0, 0, 0.7)));
  background: linear-gradient(top, transparent 5%, rgba(255, 255, 255, 0.3) 20%, rgba(0, 0, 0, 0.7) 70%);
}
[data-attr=page-banner] .container {
  left: 0;
  right: 0;
  bottom: 0;
  position: absolute;
  padding-bottom: 64px;
}
[data-attr=page-banner] .container .navigation_box {
  gap: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: end;
      -ms-flex-align: end;
          align-items: end;
}
[data-attr=page-banner] .container .navigation_box .home {
  width: 24px;
  height: 24px;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("/asset/icon/page-banner/home.svg");
}
[data-attr=page-banner] .container .navigation_box .arrow {
  width: 16px;
  height: 24px;
  margin-bottom: -2px;
  background-size: 100%;
  background-position: center;
  background-repeat: no-repeat;
  background-image: url("/asset/icon/page-banner/arrow.svg");
}
[data-attr=page-banner] .container .navigation_box .page_name {
  font-size: 18px;
  font-weight: 500;
  line-height: 21px;
}
[data-attr=page-banner] .container .title {
  font-size: 24px;
  font-weight: 700;
  line-height: 28px;
  margin-top: 16px;
  text-transform: uppercase;
}
@media screen and (min-width: 744px) {
  [data-attr=page-banner] {
    min-height: 380px;
  }
  [data-attr=page-banner] .container {
    padding-bottom: 102px;
  }
  [data-attr=page-banner] .container .navigation_box .home {
    width: 28px;
    height: 28px;
  }
  [data-attr=page-banner] .container .navigation_box .arrow {
    width: 16px;
    height: 28px;
  }
  [data-attr=page-banner] .container .navigation_box .page_name {
    font-size: 20px;
    line-height: 23px;
  }
  [data-attr=page-banner] .container .title {
    font-size: 40px;
    line-height: 44px;
  }
}

[data-attr=document-page] [data-attr=content-wrapper] [data-attr=content] {
  margin: 24px auto;
  max-width: 1080px;
  padding: 32px 24px;
  border-radius: 24px;
  border: 1px solid var(--gray-col-1);
}
[data-attr=document-page] [data-attr=content-wrapper] [data-attr=content] [data-attr=doc-content] {
  color: var(--brand-col-2);
}
[data-attr=document-page] [data-attr=content-wrapper] [data-attr=content] [data-attr=doc-content] .title {
  font-size: 18px;
  font-weight: 600;
  line-height: 22px;
  margin: 28px 0 12px;
}
[data-attr=document-page] [data-attr=content-wrapper] [data-attr=content] [data-attr=doc-content] .text {
  font-size: 14px;
  font-weight: 500;
  line-height: 17px;
  margin-bottom: 16px 0;
}
[data-attr=document-page] [data-attr=content-wrapper] [data-attr=content] [data-attr=doc-content] ul li {
  gap: 12px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  padding: 8px 0;
  font-size: 14px;
  font-weight: 500;
  margin-left: 16px;
  line-height: 17px;
  -webkit-box-align: start;
      -ms-flex-align: start;
          align-items: start;
}
[data-attr=document-page] [data-attr=content-wrapper] [data-attr=content] [data-attr=doc-content] ul li::before {
  content: "";
  width: 6px;
  height: 6px;
  min-width: 6px;
  margin-top: 6px;
  min-height: 6px;
  border-radius: 3px;
  background-color: var(--brand-col-2);
}
[data-attr=document-page] [data-attr=content-wrapper] [data-attr=content] [data-attr=doc-content] ul li span {
  font-weight: 600;
  display: contents;
}
[data-attr=document-page] [data-attr=content-wrapper] [data-attr=content] [data-attr=doc-content] a {
  display: contents;
  color: var(--brand-col-1);
}
@media screen and (min-width: 744px) {
  [data-attr=document-page] [data-attr=content-wrapper] [data-attr=content] {
    padding: 32px;
    margin: 32px auto;
    border-radius: 36px;
  }
  [data-attr=document-page] [data-attr=content-wrapper] [data-attr=content] [data-attr=doc-content] .title {
    font-size: 22px;
    line-height: 26px;
    margin: 36px 0 12px;
  }
  [data-attr=document-page] [data-attr=content-wrapper] [data-attr=content] [data-attr=doc-content] .text {
    font-size: 16px;
    line-height: 19px;
    margin-bottom: 18px;
  }
  [data-attr=document-page] [data-attr=content-wrapper] [data-attr=content] [data-attr=doc-content] ul li {
    gap: 12px;
    padding: 8px 0;
    font-size: 16px;
    margin-left: 48px;
    line-height: 19px;
  }
  [data-attr=document-page] [data-attr=content-wrapper] [data-attr=content] [data-attr=doc-content] ul li::before {
    content: "";
    width: 8px;
    height: 8px;
    min-width: 8px;
    margin-top: 6px;
    min-height: 8px;
    border-radius: 4px;
  }
}
@media screen and (min-width: 1240px) {
  [data-attr=document-page] [data-attr=content-wrapper] [data-attr=content] {
    padding: 96px;
    margin: 96px auto;
  }
}