/* base.css */

html, body {
    font-family: "Lato", sans-serif;
    font-size: 16px;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    background-color: #FAFAFA;

    p{
        margin: 0;
        padding: 0;
    }
}

/*Global checkbox*/


input:disabled,
textarea:disabled {
    background-color: #F3F3F3;
    color: #535353;
    cursor: not-allowed;
}

input:focus,
textarea:focus {
    border: 2px solid #5A85C7;
    outline: none;
}

.no-scroll{
    overflow: hidden;
}

.hide-section{
    display: none !important;
}


::placeholder{
    font-weight: 400;
    opacity: 80%;
}

input,
textarea,
select,
button {
    font: inherit;
    color: inherit;
    background: none;
    border: none;
    padding: 0;

    text-decoration: none;
}

button{
    cursor: pointer;
}

.btn-hide{
    display: none;
}

*, *::before, *::after { box-sizing: inherit; }

@media (max-width: 768px) { html { font-size: 15px; } }
@media (max-width: 480px) { html { font-size: 14px; } }

/* Layout utama: header | body | footer */
.screen-wrapper {
    display: flex;
    flex-direction: column;
    position: relative;
    min-height: 100dvh;
    background-color: #FAFAFA;
    color: rgba(83, 83, 83, 1);
}

.screen-wrapper-home{
    display: flex;
    flex-direction: column;
    overflow-x:hidden;
    position: relative;
    min-height: 100dvh;
    background-color: #E9F5F8;
    color: rgba(83, 83, 83, 1);
}


/* Header nempel di atas saat konten scroll */
.screen-wrapper .header {
    position: sticky;     /* kunci header */
    top: 0;               /* bisa juga top: env(safe-area-inset-top); */
    z-index: 20;          /* di atas konten saat body scroll */
    flex: 0 0 auto;
}


/* Hanya body yang scroll */
.screen-wrapper .body   {
    flex: 1 1 auto;
    overflow: auto;
    -webkit-overflow-scrolling: touch;
    padding: 1rem;
}

/* (Legacy) footer default — aman dibiarkan, tapi tak dipakai untuk bar tombol */
.screen-wrapper .footer {
    flex-shrink: 0;
    padding: 16px;
    background-color: #f1f1f1;
    text-align: center;
    border-top: 1px solid #e5e5e5;
}


/* ===== Header bar ===== */
.header-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: calc(env(safe-area-inset-top) + 8px) 12px 8px; /* aman notch */
    background-color: #305894;
    color: #fff;
    font-weight: 600;
    font-size: 18px;
    box-shadow: 0 1px 4px rgba(0,0,0,0.06);
}

/* Tombol bundar di header */
.header-btn {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background-color: transparent;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1.5px solid rgba(255,255,255,0.8);
    cursor: pointer;
    padding: 0;
}
.header-btn img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

/* Judul tengah */
.header-title {
    flex: 1;
    margin: 0 12px;
    color: #fff;
    font-size: 17px;
    font-weight: 600;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}





/* ===== Footer bar (versi halus) ===== */
.footer-bar {
    flex: 0 0 auto;
    /*position: sticky;*/
    z-index: 1000;
    bottom: 0;
    left: 0; right: 0;
    background: #fff;
    padding: 12px 16px calc(12px + env(safe-area-inset-bottom));
    border-top: 1px solid #EAEAEA;
    /* shadow lebih soft, tidak hitam pekat */
    /*box-shadow:*/
    /*        0 -1px 4px rgba(0,0,0,0.06),*/
    /*        0 -4px 16px rgba(0,0,0,0.04);*/
}

/* Baris tombol */
.footer-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* Tombol back kecil (merah) */
.btn--back {
    flex: 0 0 48px;
    width: 48px; height: 48px;
    background: #FD5B5B;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    /* shadow tombol halus */
    box-shadow: 0 1px 4px rgba(0,0,0,0.08);
    border: 0;
}
.btn--back img {
    width: 20px; height: 20px; object-fit: contain;
}

/* Tombol submit selalu isi sisa ruang */
.btn--submit {
    flex: 1;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #305894; /* default biru */
    color: #FFFFFF;
    border-radius: 10px;
    font-size: 16px;
    font-weight: 600;
    border: 0;
    /* shadow tombol halus */
    box-shadow: 0 2px 8px rgba(0,0,0,0.08);
    transition: transform .06s ease, opacity .2s ease, box-shadow .2s ease;
}
.btn--submit:active { transform: translateY(1px); }

/* === VARIANTS === */

/* State disabled (abu-abu) */
.btn--submit.is-disabled,
.btn--submit[disabled],
.btn--submit[aria-disabled="true"] {
    background: #DADADA;
    color: #fff;
    box-shadow: none;
    pointer-events: none;
}

/* State danger (merah full width) */
.btn--submit.is-danger {
    background: #FD5B5B;
}

/* Layout single button (tanpa back, full width) */
.footer-actions.is-single .btn--submit {
    flex: 1;
}

/* Single full-width button layout (tanpa back kecil) */
.footer-actions.is-single {
    display: flex;
}
.footer-actions.is-single .btn--submit {
    flex: 1;
    justify-content: center;
    gap: 8px; /* jarak ikon & teks */
}

/* Varian merah untuk single button "Kembali" */
.btn--submit.is-danger {
    background: #FD5B5B;
    color: #fff;
}
.btn--submit.is-danger img {
    width: 18px;
    height: 18px;
    object-fit: contain;
}

/* ===== Center-true button with leading icon ===== */
.btn--block {
    position: relative;           /* wadah untuk posisi absolut */
    padding-left: 44px;           /* ruang untuk ikon kiri */
}

.btn__icon-left {
    position: absolute;
    left: 16px;                   /* jarak ikon dari kiri */
    top: 50%;
    transform: translateY(-50%);
    width: 18px; height: 18px;
    object-fit: contain;
}

.btn__label {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%,-50%);  /* bener-bener center */
    pointer-events: none;              /* biar kliknya tetap ke tombol */
    white-space: nowrap;
}
.btn {
    background-color: #007bff;
    color: white;
    border: none;
    padding: 10px 16px;
    border-radius: 6px;
    font-size: 1rem;
    cursor: pointer;
}

.btn:hover {
    background-color: #0056b3;
}

.input {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    width: 100%;
}

.modal {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    justify-content: center;
    align-items: center;
}

.modal-content {
    background: white;
    padding: 20px;
    border-radius: 8px;
    width: 95%;
    max-width: 400px;
}
/* BatPay webview pages (scoped via <html class="batpay ...">) */

.batpay .batpay-body {
  padding: 10;
}

/* =========================
   Landing (wallet selection)
   ========================= */
.batpay.index body,
.batpay.index .batpay-screen--landing {
  background: #FAFAFA;
}

.batpay.index .batpay-screen--landing {
  position: relative;
  overflow: hidden;
}

.batpay.index .batpay-landing-bg {
  position: absolute;
  top: 0;
  left: 0;
  right: 0; /* top 1/3 of the screen */
  min-height: 180px;
  max-height: 420px;
  width: 100%;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  z-index: 0;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px; 

}

.batpay.index .batpay-body {
  padding: 14px 0 0;
  background: transparent;
  position: relative;
  z-index: 1; /* keep content above background */
}

.batpay.index .batpay-sheet {
  width: calc(100% - 24px);
  margin: 0 auto 12px;
  min-height: 90dvh; /* body top padding + footer bar approx */
  display: flex;
  flex-direction: column;
  padding: 14px;
}

.batpay.index .batpay-options {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.batpay.index .batpay-option-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1.5px solid #D8D8D8;
  border-radius: 14px;
  background: #fff;
  text-decoration: none;
  color: inherit;
}

.batpay.index .batpay-option-card:active {
  transform: translateY(1px);
}

.batpay.index .batpay-option-card__text {
  flex: 1 1 auto;
  min-width: 0;
  padding: 14px 14px;
}

.batpay.index .batpay-option-card__title {
  font-size: 16px;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 6px;
}

.batpay.index .batpay-option-card__title-main.is-batpay { color: #5A85C7; }
.batpay.index .batpay-option-card__title-main.is-batbiz { color: #33A26C; }

.batpay.index .batpay-option-card__title-sub {
  font-weight: 600;
  color: #3F3F3F;
  margin-left: 6px;
}

.batpay.index .batpay-option-card__desc {
  font-size: 13px;
  color: #8A8A8A;
  line-height: 1.3;
}

.batpay.index .batpay-option-card__art {
  flex: 0 0 auto;
}

.batpay.index .batpay-option-card__art-bg {
  /* width: 88px; */
  height: max-content;
  border-top-left-radius: 90px;
  /* border-radius: 999px; */
  background: rgba(90, 133, 199, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding-top: 20px;
  padding-left: 10px;
  margin-top: 10px;
}

.batpay.index .batpay-option-card__img {
  /* width: 84px;
  height: 60px; */
  height: 90px;
  object-fit: contain;
}

.batpay.index .batpay-powered {
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid #EEEEEE;
  text-align: center;
}

.batpay.index .batpay-powered__label {
  font-size: 12px;
  color: #B0B0B0;
  margin-bottom: 6px;
}

.batpay.index .batpay-powered__brand {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.batpay.index .batpay-powered__logo {
  /* width: 50px; */
  height: 30px;
  object-fit: contain;
}

.batpay.index .batpay-powered__word {
  font-weight: 800;
  letter-spacing: 0.2px;
  color: #1F2A44;
}

.batpay.index .batpay-footer.footer-wrapper {
  background: #fff;
  flex: 0 0 auto;
  position: sticky;
  bottom: 0;
  left: 0;
  right: 0;
}

.batpay.index .batpay-footer .footer-link-text {
  background: #FD5B5B;
  border-radius: 12px;
  padding: 16px;
  font-size: 16px;
  font-weight: 700;
}

/* =========================
   Benefits (Dompet Saya → Keuntungan Pakai BATPay)
   ========================= */
.batpay.benefits .batpay-body {
  padding: 16px;
  background: #FFFFFF;
}

.batpay.benefits .batpay-benefits-card {
  background: #fff;
  border: 1px solid #E5E5E5;
  border-radius: 16px;
  padding: 20px;
  max-width: 480px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.batpay.benefits .batpay-topbar {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}

.batpay.benefits .batpay-topbar__logo {
  width: 92px;
  height: 22px;
  object-fit: contain;
}

.batpay.benefits .batpay-title {
  margin: 0 0 18px;
  font-size: 18px;
  font-weight: 700;
  color: #2D2D2D;
}

.batpay.benefits .batpay-benefits {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.batpay.benefits .batpay-benefit {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}

.batpay.benefits .batpay-benefit__icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #E8F0FE;
  display: flex;
  align-items: center;
  justify-content: center;
}

.batpay.benefits .batpay-benefit__icon img {
  width: 18px;
  height: 18px;
  object-fit: contain;
}

.batpay.benefits .batpay-benefit__title {
  font-size: 16px;
  font-weight: 700;
  color: #2D2D2D;
  margin-bottom: 4px;
}

.batpay.benefits .batpay-benefit__desc {
  font-size: 13px;
  line-height: 1.4;
  color: #5E5E5E;
}

.batpay.benefits .batpay-benefits-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.batpay.benefits .batpay-benefits-actions--footer {
  flex: 0 0 auto;
  margin-top: 0;
  padding: 16px;
  padding-bottom: calc(16px + env(safe-area-inset-bottom));
  background: #fff;
  border-top: 1px solid #EEEEEE;
  box-shadow: 0 -1px 4px rgba(0, 0, 0, 0.06);
}

.batpay.benefits .batpay-btn {
  display: block;
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.batpay.benefits .batpay-btn--primary {
  background: #6a8edc;
  color: #fff;
}

.batpay.benefits .batpay-btn--primary:active {
  opacity: 0.9;
}

.batpay.benefits .batpay-btn--back {
  background: #ea6c6c;
  color: #fff;
}

.batpay.benefits .batpay-btn--back:active {
  opacity: 0.9;
}

/* =========================
   Confirm Phone (Lanjutkan → Konfirmasikan Nomor Handphone)
   ========================= */
.batpay.confirm_phone .batpay-body {
  padding: 20px 16px;
  background: #fff;
}

.batpay.confirm_phone .batpay-confirm-phone__title {
  margin: 0 0 24px;
  font-size: 18px;
  font-weight: 700;
  color: #2D2D2D;
  text-align: center;
}

.batpay.confirm_phone .batpay-steps {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 28px;
}

.batpay.confirm_phone .batpay-step__circle {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: rgba(90, 133, 199, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border-color: #5A85C7;
  border-width: 2px;
  border-style: solid;
}

.batpay.confirm_phone .batpay-step__circle img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.batpay.confirm_phone .batpay-step__logo {
  width: 22px;
  height: 22px;
}

.batpay.confirm_phone .batpay-step--next .batpay-step__circle {
  background: #E0E8F5;
}

.batpay.confirm_phone .batpay-step--next .batpay-step__circle img {
  opacity: 1;
}

.batpay.confirm_phone .batpay-step__line {
  width: 48px;
  height: 0;
  border-bottom: 2px dashed #D0D0D0;
  flex-shrink: 0;
}

.batpay.confirm_phone .batpay-confirm-phone__card {
  background: #F5F5F5;
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 12px;
  justify-content: center;
  display: flex;
  flex-direction: column;
}

.batpay.confirm_phone .batpay-confirm-phone__label {
  font-size: 13px;
  color: #5E5E5E;
  margin-bottom: 8px;
  justify-content: center;
  display: flex;
}

.batpay.confirm_phone .batpay-confirm-phone__phone {
  align-items: center;
  gap: 8px;
  justify-content: center;
  display: flex;
}

.batpay.confirm_phone .batpay-confirm-phone__phone-icon {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
}

.batpay.confirm_phone .batpay-confirm-phone__phone-number {
  font-size: 16px;
  font-weight: 600;
  color: #5A85C7;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.batpay.confirm_phone .batpay-confirm-phone__info {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #F5F5F5;
  border-radius: 14px;
  padding: 14px;
}

.batpay.confirm_phone .batpay-confirm-phone__info-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #9E9E9E;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  font-style: italic;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}

.batpay.confirm_phone .batpay-confirm-phone__info-text {
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
  color: #5E5E5E;
}

.batpay.confirm_phone .batpay-confirm-phone__actions {
  flex: 0 0 auto;
  padding: 16px;
  padding-bottom: calc(16px + env(safe-area-inset-bottom));
  background: #fff;
  border-top: 1px solid #EEEEEE;
  box-shadow: 0 -1px 4px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.batpay.confirm_phone .batpay-confirm-phone__actions .batpay-btn {
  text-decoration: none;
}

.batpay.confirm_phone .batpay-btn--full {
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  border: none;
  cursor: pointer;
  font-family: inherit;
  display: flex;
  justify-content: center;
  text-decoration: none;
}

.batpay.confirm_phone .batpay-btn--primary.batpay-btn--full {
  background: #5A85C7;
  color: #fff;
}

.batpay.confirm_phone .batpay-btn--back.batpay-btn--full {
  background: #FD5B5B;
  color: #fff;
}

.batpay.confirm_phone .batpay-btn--full:active {
  opacity: 0.9;
}

/* =========================
   Reactivate confirm (ACCOUNT_UNBOUND flow)
   ========================= */
.otp-reactivate-confirm .batpay-body {
  padding: 24px 16px;
  background: #fff;
}

.otp-reactivate-confirm__icon {
  width: 96px;
  height: 96px;
  margin: 0 auto 20px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.otp-reactivate-confirm__icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.otp-reactivate-confirm__title {
  font-size: 18px;
  font-weight: 700;
  color: #2D2D2D;
  text-align: center;
  margin: 0 0 8px;
  line-height: 1.4;
}

.otp-reactivate-confirm__instruction {
  font-size: 14px;
  color: #5E5E5E;
  text-align: center;
  margin: 0 0 24px;
}

.otp-reactivate-confirm .batpay-confirm-phone__card {
  background: #F5F5F5;
  border-radius: 14px;
  padding: 16px;
  margin-bottom: 12px;
}

.otp-reactivate-confirm .batpay-confirm-phone__label {
  font-size: 13px;
  color: #5E5E5E;
  margin-bottom: 8px;
  text-align: center;
}

.otp-reactivate-confirm .batpay-confirm-phone__phone {
  display: flex;
  align-items: center;
  gap: 8px;
  justify-content: center;
}

.otp-reactivate-confirm .batpay-confirm-phone__phone-number {
  font-size: 16px;
  font-weight: 600;
  color: #5A85C7;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.otp-reactivate-confirm .batpay-confirm-phone__info {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: #F5F5F5;
  border-radius: 14px;
  padding: 14px;
}

.otp-reactivate-confirm .batpay-confirm-phone__info-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #9E9E9E;
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  font-style: italic;
  display: flex;
  align-items: center;
  justify-content: center;
}

.otp-reactivate-confirm .batpay-confirm-phone__info-text {
  margin: 0;
  font-size: 13px;
  line-height: 1.4;
  color: #5E5E5E;
}

.otp-reactivate-confirm .batpay-confirm-phone__actions {
  flex: 0 0 auto;
  padding: 16px;
  padding-bottom: calc(16px + env(safe-area-inset-bottom));
  background: #fff;
  border-top: 1px solid #EEEEEE;
  box-shadow: 0 -1px 4px rgba(0, 0, 0, 0.06);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.otp-reactivate-confirm .batpay-confirm-phone__actions .batpay-btn {
  text-decoration: none;
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  display: flex;
  justify-content: center;
}

.otp-reactivate-confirm .batpay-btn--primary {
  background: #5A85C7;
  color: #fff;
}

.otp-reactivate-confirm .batpay-btn--back {
  background: #FD5B5B;
  color: #fff;
}

.otp-reactivate-confirm .batpay-confirm-phone__actions .batpay-btn:active {
  opacity: 0.9;
}

/* =========================
   Dashboard (Activated BATPay)
   ========================= */
.batpay.dashboard .batpay-screen--dashboard {
  background: #FAFAFA;
}

.batpay-dashboard-header {
  background: #5A85C7;
  padding: 20px 16px 24px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
}

.batpay-dashboard-header__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 4px;
}

.batpay-dashboard-header__label {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.85);
}

.batpay-dashboard-header__profile-btn {
  background: rgba(255, 255, 255, 0.15);
  border: 1px solid rgba(255, 255, 255, 0.3);
  border-radius: 8px;
  padding: 6px 10px;
  display: flex;
  align-items: center;
  gap: 6px;
  text-decoration: none;
  color: #fff;
  font-size: 13px;
  font-weight: 500;
}

.batpay-dashboard-header__profile-btn:active {
  background: rgba(255, 255, 255, 0.25);
}

.batpay-dashboard-header__profile-icon {
  width: 18px;
  height: 18px;
}

.batpay-dashboard-header__balance {
  display: flex;
  align-items: center;
  gap: 8px;
}

.batpay-dashboard-header__currency {
  font-size: 16px;
  font-weight: 400;
  color: #fff;
}

.batpay-dashboard-header__amount {
  font-size: 28px;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.5px;
}

.batpay-dashboard-header__toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.batpay-dashboard-header__eye {
  width: 22px;
  height: 22px;
  opacity: 0.85;
}

.batpay.dashboard .batpay-body {
  padding: 16px;
  background: #FFFFFF;
}

.batpay-dashboard-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 20px;
}

.batpay-dashboard-action-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px;
  background: #fff;
  border: 1px solid #E8E8E8;
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
}

.batpay-dashboard-action-card:active {
  background: #F8F8F8;
}

.batpay-dashboard-action-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  background: #E8F0FE;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.batpay-dashboard-action-card__icon img {
  width: 22px;
  height: 22px;
}

.batpay-dashboard-action-card__text {
  flex: 1;
  min-width: 0;
}

.batpay-dashboard-action-card__title {
  font-size: 15px;
  font-weight: 600;
  color: #5A85C7;
  margin-bottom: 2px;
}

.batpay-dashboard-action-card__desc {
  font-size: 13px;
  color: #888;
}

.batpay-dashboard-action-card__chevron {
  flex-shrink: 0;
}

.batpay-dashboard-action-card__chevron img {
  width: 20px;
  height: 20px;
  opacity: 0.5;
}

.batpay-dashboard-history__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}

.batpay-dashboard-history__title {
  font-size: 16px;
  font-weight: 600;
  color: #2D2D2D;
  margin: 0;
}

.batpay-dashboard-history__link {
  font-size: 13px;
  color: #5A85C7;
  text-decoration: underline;
}

.batpay-dashboard-transactions {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.batpay-tx {
  padding: 14px 0;
  border-bottom: 1px solid #F0F0F0;
}

.batpay-tx:last-child {
  border-bottom: none;
}

.batpay-tx__date {
  font-size: 12px;
  color: #888;
  margin-bottom: 6px;
}

.batpay-tx__row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.batpay-tx__icon {
  width: 28px;
  height: 28px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.batpay-tx__icon img {
  width: 20px;
  height: 20px;
}

.batpay-tx__info {
  flex: 1;
  min-width: 0;
}

.batpay-tx__label {
  font-size: 14px;
  font-weight: 500;
  color: #2D2D2D;
}

.batpay-tx__desc {
  font-size: 12px;
  color: #888;
  margin-top: 2px;
}

.batpay-tx__amount {
  font-size: 15px;
  font-weight: 600;
  flex-shrink: 0;
}

.batpay-tx__amount--positive {
  color: #5A85C7;
}

.batpay-tx__amount--negative {
  color: #E85A5A;
}

/* =========================
   Riwayat Transaksi (Transactions)
   ========================= */
.batpay.transactions .batpay-screen--transactions {
  background: #fff;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.batpay-transactions-header {
  flex: 0 0 auto;
  display: flex;
  align-items: center;
  padding: 16px;
  padding-top: calc(16px + env(safe-area-inset-top));
  border-bottom: 1px solid #EEEEEE;
  background: #fff;
}

.batpay-transactions-header__back {
  display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 12px;
  padding: 4px;
}

.batpay-transactions-header__back img {
  width: 24px;
  height: 24px;
}

.batpay-transactions-header__title {
  font-size: 18px;
  font-weight: 600;
  color: #2D2D2D;
  margin: 0;
}

.batpay-transactions-body {
  flex: 1 1 auto;
  overflow: auto;
  padding: 0;
}

.batpay-transactions-list {
  padding: 0 16px;
}

.batpay-tx--riwayat {
  padding: 16px 0;
  border-bottom: 1px solid #F0F0F0;
}

.batpay-tx--riwayat:last-child {
  border-bottom: none;
}

.batpay-tx--riwayat .batpay-tx__amount--positive,
.batpay-tx--riwayat .batpay-tx__amount--negative {
  color: #33A26C;
}

.batpay-transactions-footer {
  flex: 0 0 auto;
  position: sticky;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  padding-bottom: calc(16px + env(safe-area-inset-bottom));
  background: #fff;
  border-top: 1px solid #EEEEEE;
  z-index: 100;
}

.batpay-transactions-footer .batpay-btn--back {
  display: block;
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  background: #FD5B5B;
  color: #fff;
}

.batpay-transactions-footer .batpay-btn--back:active {
  opacity: 0.9;
}

.batpay-dashboard-footer {
  flex: 0 0 auto;
  position: sticky;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px;
  padding-bottom: calc(16px + env(safe-area-inset-bottom));
  background: #fff;
  border-top: 1px solid #EEEEEE;
  z-index: 100;
}

.batpay-dashboard-footer .batpay-btn--back {
  display: block;
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  background: #ea6c6c;
  color: #fff;
}

.batpay-dashboard-footer .batpay-btn--back:active {
  opacity: 0.9;
}

/* =========================
   Profile (Profil User)
   ========================= */
.batpay.profile .batpay-screen--profile {
  background: #FAFAFA;
}

.batpay-profile-header {
  background: #5A85C7;
  padding: 32px 16px 56px;
  border-bottom-left-radius: 20px;
  border-bottom-right-radius: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.batpay-profile-avatar {
  width: 100px;
  height: 100px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: 4px solid rgba(255, 255, 255, 0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.batpay-profile-avatar__icon {
  width: 50px;
  height: 50px;
  opacity: 0.9;
}

.batpay.profile .batpay-body {
  padding: 16px;
  background: transparent;
  margin-top: -40px;
  position: relative;
  z-index: 2;
}

.batpay-profile-card {
  background: #fff;
  border-radius: 16px;
  padding: 0;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  overflow: hidden;
  margin-bottom: 16px;
}

.batpay-profile-field {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 18px;
  border-bottom: 1px solid #F0F0F0;
}

.batpay-profile-field--last {
  border-bottom: none;
}

.batpay-profile-field__label {
  font-size: 14px;
  color: #2D2D2D;
  font-weight: 400;
}

.batpay-profile-field__value {
  font-size: 14px;
  color: #2D2D2D;
  font-weight: 500;
}

.batpay-profile-disconnect__card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 16px 18px;
  background: #fff;
  border: 1.5px solid #E85A5A;
  border-radius: 14px;
  text-decoration: none;
  color: inherit;
}

.batpay-profile-disconnect__card:active {
  background: #FFF5F5;
}

.batpay-profile-disconnect__text {
  flex: 1;
}

.batpay-profile-disconnect__title {
  font-size: 15px;
  font-weight: 600;
  color: #2D2D2D;
  margin-bottom: 2px;
}

.batpay-profile-disconnect__desc {
  font-size: 13px;
  color: #888;
}

.batpay-profile-disconnect__icon {
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.batpay-profile-disconnect__icon img {
  width: 24px;
  height: 24px;
}

.batpay-profile-footer {
  flex: 0 0 auto;
  padding: 16px;
  padding-bottom: calc(16px + env(safe-area-inset-bottom));
  background: #fff;
  border-top: 1px solid #EEEEEE;
}

.batpay-profile-footer .batpay-btn--back {
  display: block;
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  background: #ea6c6c;
  color: #fff;
}

.batpay-profile-footer .batpay-btn--back:active {
  opacity: 0.9;
}

/* Unbind confirmation modal */
#batpay-unbind-modal.modal-overlay {
  z-index: 1100;
}

.batpay-unbind-modal__content {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  max-width: 320px;
  width: calc(100% - 32px);
  margin: 16px;
}

.batpay-unbind-modal__title {
  font-size: 18px;
  font-weight: 600;
  color: #2D2D2D;
  margin: 0 0 8px;
  text-align: center;
}

.batpay-unbind-modal__desc {
  font-size: 14px;
  color: #666;
  margin: 0 0 20px;
  text-align: center;
  line-height: 1.5;
}

.batpay-unbind-modal__actions {
  display: flex;
  gap: 12px;
}

.batpay-unbind-modal__btn {
  flex: 1;
  padding: 12px 16px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.batpay-unbind-modal__btn--no {
  background: #E8E8E8;
  color: #2D2D2D;
}

.batpay-unbind-modal__btn--yes {
  background: #E85A5A;
  color: #fff;
}

.batpay-unbind-modal__btn:active {
  opacity: 0.9;
}

/* =========================
   Landing Result: Waiting & Failed
   ========================= */
.batpay.waiting .batpay-screen--waiting,
.batpay.failed .batpay-screen--failed {
  background: #fff;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

.batpay-result-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.batpay-result-shape {
  position: absolute;
  width: 120px;
  height: 120px;
  object-fit: contain;
  opacity: 0.15;
}

.batpay-result-shape--blue {
  top: 0;
  left: 0;
  object-position: top left;
}

.batpay-result-shape--green {
  top: 0;
  right: 0;
  object-position: top right;
}

.batpay-result-body {
  flex: 1 1 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 40px 24px;
  position: relative;
  z-index: 1;
}

.batpay-waiting-card {
  width: 180px;
  height: 180px;
  border-radius: 16px;
  border: 1px solid #E8E8E8;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  margin-bottom: 32px;
  flex-shrink: 0;
}

.batpay-waiting-illus {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.batpay-result-title {
  font-size: 20px;
  font-weight: 700;
  color: #2D2D2D;
  margin: 0 0 8px;
}

.batpay-result-desc {
  font-size: 15px;
  color: #888;
  margin: 0;
}

.batpay-failed-icon {
  width: 120px;
  height: 120px;
  margin-bottom: 24px;
  filter: drop-shadow(0 4px 8px rgba(0, 0, 0, 0.12));
}

.batpay-failed-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.batpay-result-footer {
  flex: 0 0 auto;
  padding: 16px;
  padding-bottom: calc(16px + env(safe-area-inset-bottom));
  background: #fff;
  border-top: 1px solid #EEEEEE;
}

.batpay-result-footer .batpay-btn--back {
  display: block;
  width: 100%;
  padding: 14px 16px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  text-align: center;
  text-decoration: none;
  background: #FD5B5B;
  color: #fff;
}

.batpay-result-footer .batpay-btn--back:active {
  opacity: 0.9;
}

/* OTP BatPay – Verifikasi Keamanan (design match) */

.otp-screen--batpay {
  background: #fff;
  min-height: 100dvh;
  display: flex;
  flex-direction: column;
}

.otp-screen--batpay .otp-wrapper--batpay {
  flex: 1 1 auto;
  overflow: auto;
  -webkit-overflow-scrolling: touch;
  padding: 0;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.otp-batpay-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
  overflow: hidden;
}

.otp-batpay-shape {
  position: absolute;
  width: 120px;
  height: 120px;
  object-fit: contain;
  object-position: top left;
}

.otp-batpay-shape--blue {
  top: 0;
  left: 0;
}

.otp-batpay-shape--green {
  top: 0;
  right: 0;
  object-position: top right;
}

.otp-wrapper--batpay .otp-field-wrapper--batpay {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 24px 20px 32px;
  min-height: auto;
  gap: 0;
  position: relative;
  z-index: 1;
}

.otp-batpay-illus {
  width: 140px;
  height: 140px;
  border-radius: 50%;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  flex-shrink: 0;
}

.otp-wrapper--batpay .otp-field-wrapper--batpay .otp-icon {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.otp-wrapper--batpay .otp-field-title {
  font-size: 1.15rem;
  font-weight: 600;
  color: #2D2D2D;
  margin: 0 0 20px;
}

.otp-wrapper--batpay .otp-container {
  margin-top: 0;
  margin-bottom: 16px;
  position: relative;
}

.otp-wrapper--batpay .otp-boxes {
  display: flex;
  gap: 10px;
  justify-content: center;
}

.otp-wrapper--batpay .otp-box {
  width: 40px;
  height: 44px;
  border: none;
  border-bottom: 2px solid #5A85C7;
  border-radius: 0;
  font-size: 1.25rem;
  font-weight: 600;
  color: #2D2D2D;
  display: flex;
  align-items: center;
  justify-content: center;
}

.otp-batpay-instruction {
  font-size: 0.9rem;
  color: #5E5E5E;
  margin: 0 0 24px;
  line-height: 1.4;
  max-width: 320px;
}

.otp-wrapper--batpay .otp-phone {
  color: #5A85C7;
  font-weight: 600;
}

.otp-wrapper--batpay .otp-submit-btn {
  width: 100%;
  max-width: 320px;
  padding: 14px 20px;
  background: #6C9ADF;
  color: #fff;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: none;
  border-radius: 12px;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 0;
}

.otp-wrapper--batpay .otp-submit-btn:active {
  opacity: 0.9;
}

.otp-wrapper--batpay .resend-otp {
  margin-top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}

.otp-wrapper--batpay .resend-otp-message {
  font-size: 0.95rem;
  color: #5E5E5E;
  margin: 0;
}

.otp-wrapper--batpay .countdown-otp {
  font-size: 1rem;
  font-weight: 600;
  color: #5A85C7;
  margin: 0;
}

.otp-wrapper--batpay .kirim-ulang {
  color: #5A85C7;
  text-decoration: underline;
  font-size: 0.95rem;
}

.otp-batpay-footer {
  flex: 0 0 auto;
  padding: 16px;
  padding-bottom: calc(16px + env(safe-area-inset-bottom));
  background: #fff;
  border-top: 1px solid #EEEEEE;
}

.otp-batpay-footer .footer-btn.sub-btn {
  background: #ea6c6c;
  color: #fff;
  display: block;
  width: 100%;
  padding: 14px;
  border-radius: 12px;
  text-align: center;
  font-weight: 600;
  text-decoration: none;
}

.otp-wrapper--batpay .otp-hidden-input {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  pointer-events: none;
}
.otp-wrapper{
    display: flex;
    flex-direction: column;
    padding: 1rem;

    color: #535353;
    .otp-field-wrapper{
        display: flex;
        flex-direction: column;
        text-align: center;

        gap: 0.5rem;

        justify-content: center;
        align-items: center;
        min-height: 90dvh;

        .otp-field-title{
            font-size: 1.2rem;
            font-weight: 600;
        }

        .otp-field-sub{
            font-size: 1rem;
            font-weight: 400;
        }

        otp-phone{
            font-size: 1.2rem;
            font-weight: 600;
        }


        .otp-icon{
            width: 12rem;
            object-fit: contain;
        }

        .otp-container {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-direction: column;
            gap: 1rem;
            margin-top: 2rem;
        }

        .otp-hidden-input {
            position: absolute;
            opacity: 0;
            pointer-events: none;
        }

        .otp-boxes {
            display: flex;
            gap: 12px;
        }

        .otp-box {
            width: 2.5rem;
            height: 3rem;
            border-bottom: 2px solid #5A85C7;
            text-align: center;
            font-size: 1.2rem;
            font-weight: 600;
            color: #535353;
        }

    }

    .otp-submit-btn{
        display: flex;
        width: 100%;
        padding: 1rem;
        background-color: #5A85C7;
        text-decoration: none;

        margin-top: 2rem;

        align-items: center;
        justify-content: center;
        color: white;

        border-radius: 12px;
    }

    .resend-otp{
        margin-top: 1rem;
        display: flex;
        flex-direction: column;
        gap: 0.5rem;

        .resend-otp-message{
            font-size: 1rem;
            font-weight: 400;
        }

        .countdown-otp{
            font-size: 1rem;
            font-weight: 600;
            color: #5A85C7;
        }

        .kirim-ulang{
            color: #5A85C7;
            text-decoration: underline;
        }
    }

}
.alert{
    display: flex;
    flex-direction: row;
    align-items: center;

    gap: 1rem;

    padding: 1rem;
    background-color: #ECECEC;

    border-radius:5px;

    .alert-icon{
        padding: 0.25rem 0.7rem;
        display: flex;
        align-items: center;
        color: white;
        font-size: 0.9rem;
        border-radius: 24px;
        background-color: #5A85C7;
    }

    .alert-text{
        font-size: 1rem;
        color: #8F8F8F;

        font-weight: 400;
    }
}
.footer-wrapper{
    width: 100%;

    display: flex;
    text-decoration: none;
    color: inherit;
    padding:1rem;

    background-color: white;
    z-index: 100;

    border-top: 2px solid rgba(223, 223, 223, 1);
}

.footer-link-text{
    width: 95%;
    padding: 1rem;
    color: white;
    background-color: rgba(202, 102, 102, 1);
    text-decoration: none;
    font-weight: 600;

    margin: 0 auto;

    border-radius: 12px;

    text-align: center;
}

.footer-link-red-btn{
    width: 4rem;
    padding: 0.5rem;
    color: white;
    background-color: rgba(202, 102, 102, 1);
    text-decoration: none;
    font-weight: 700;

    display: flex;
    justify-content: center;
    align-items: center;

    img{
        width: 2rem;
        object-fit: contain;
    }
    border-radius: 12px;
    height: 3.8rem;
}

.footer-bsu{
    width: 100%;

    display: flex;
    flex-direction: row;
    gap: 0.5rem;

    align-items: center;

    background-color: white;
    z-index: 100;




    .pilih-btn{
        width: 100%;
        padding: 0.8rem;
        color: white;
        background-color: rgba(208, 208, 208, 1);
        border: none;
        text-decoration: none;
        cursor: pointer;
        font-weight: 700;

        font-family: Roboto, serif;

        height: 3.8rem;
        border-radius: 12px;

        margin: 0 auto;

        display: flex;
        align-items: center;
        justify-content: center;

        .text{
            font-size: 1.2rem;
        }

    }
}

.footer-total-produk-wrapper{
    width: 100%;
    display: flex;
    flex-direction: row;
    justify-content: space-between;

    .footer-link-red-btn{
        width: 6rem;

    }

    .footer-total-produk{
        display: flex;
        flex-direction: row;
        gap: 1rem;

        justify-content: center;
        align-items: center;

        .total-produk-info{
            width: 100%;

            .title{
                font-weight: 400;
                font-size: 1.1rem;
            }

            .amount{
                font-weight: 500;
                font-size: 1.2rem;
            }

        }

    }

    .lanjut-btn {
        font-size: 1.2rem;
        padding: 1rem;
        width: 7rem;
        background-color: rgba(220, 220, 220, 1);
        border-radius: 12px;
        color: white;

        display: flex;
        justify-content: center;
        align-items: center;
        text-decoration: none;
    }
}

.footer-selesai{
    display: flex;
    flex-direction: row;
    gap: 0.5rem;
    width: 100%;

    .selesai-btn{
        width: 100%;
        padding: 1rem;
        border: none;
        background-color: rgba(53, 180, 89, 1);
        text-decoration: none;

        display: flex;
        flex-direction: row;

        align-items: center;
        justify-items: center;

        justify-content: center;

        gap: 1rem;

        .text{
            color: white;
            font-weight: 600;
            font-size: 1.1rem;
        }

        .check{
            object-fit: contain;
            width: 1.3rem;
        }

        border-radius: 12px;
    }
}

.footer-2btn-wrapper{
    width: 100%;

    display: flex;
    flex-direction: column;
    text-decoration: none;
    color: inherit;
    padding:1rem;

    background-color: white;
    z-index: 100;

    border-top: 2px solid rgba(223, 223, 223, 1);

    gap: 0.5rem;

    .footer-btn{
        padding: 1rem;
        border-radius: 12px;
        text-decoration: none;
        text-align: center;
        font-weight: 600;

        &.main-btn{
            background-color: #5A85C7;
            color: white;
        }

        &.sub-btn{
            background-color: #CA6666;
            color: white;
        }
    }
}
.modal-overlay{
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;

    overflow-y: scroll;

    position: fixed;

    background-color: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(4.3px);

    z-index: 999;

    display: none;

    justify-content: center;
    align-items: center;

    .modal-content{
        font-family: Lato, serif;
        display: flex;
        flex-direction: column;

        .title{
            font-size: 1.1rem;
            font-weight: 500;
            margin-bottom: 1.1rem;

            justify-content: center;
            align-items: center;

            text-align: center;

            color: rgba(83, 83, 83, 1);
        }

    }
}

.modal-overlay.is-visible{
    display: flex;
}
.slide-modal {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    display: none;
    justify-content: center;
    align-items: flex-end;
    z-index: 1000;

    .modal-overlay-slide{
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        backdrop-filter: blur(0.15rem);
        background-color: rgba(0, 0, 0, 0.5);
        z-index: 5;
    }
}

.slide-modal.is-visible {
    display: flex;
}

.modal-wrapper {
    position: relative;
    width: 100%;
    padding: 1rem;
    max-height: 60%;
    overflow-y: scroll;
    background: #fff;
    border-top-left-radius: 12px;
    border-top-right-radius: 12px;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    transform: translateY(100%);
    transition: transform 0.3s ease, opacity 0.3s ease;
    z-index: 10;
}

.modal-wrapper.is-visible {
    transform: translateY(0);
}

.draggable {
    width: 100%;
    display: flex;
    justify-content: center;
    padding-bottom: 1rem;
    cursor: grab;
}

.drag-handle {
    width: 50px;
    height: 5px;
    background-color: #ccc;
    border-radius: 10px;
}


.main-btn {
    background: #5A85C7;
    color: white;
    border: none;
    border-radius: 12px;
    padding: 0.75rem;
    cursor: pointer;
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS and SCSS file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *








 */
.select2-container {
  box-sizing: border-box;
  display: inline-block;
  margin: 0;
  position: relative;
  vertical-align: middle; }
  .select2-container .select2-selection--single {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    height: 28px;
    user-select: none;
    -webkit-user-select: none; }
    .select2-container .select2-selection--single .select2-selection__rendered {
      display: block;
      padding-left: 8px;
      padding-right: 20px;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap; }
    .select2-container .select2-selection--single .select2-selection__clear {
      position: relative; }
  .select2-container[dir="rtl"] .select2-selection--single .select2-selection__rendered {
    padding-right: 8px;
    padding-left: 20px; }
  .select2-container .select2-selection--multiple {
    box-sizing: border-box;
    cursor: pointer;
    display: block;
    min-height: 32px;
    user-select: none;
    -webkit-user-select: none; }
    .select2-container .select2-selection--multiple .select2-selection__rendered {
      display: inline-block;
      overflow: hidden;
      padding-left: 8px;
      text-overflow: ellipsis;
      white-space: nowrap; }
  .select2-container .select2-search--inline {
    float: left; }
    .select2-container .select2-search--inline .select2-search__field {
      box-sizing: border-box;
      border: none;
      font-size: 100%;
      margin-top: 5px;
      padding: 0; }
      .select2-container .select2-search--inline .select2-search__field::-webkit-search-cancel-button {
        -webkit-appearance: none; }

.select2-dropdown {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  box-sizing: border-box;
  display: block;
  position: absolute;
  left: -100000px;
  width: 100%;
  z-index: 1051; }

.select2-results {
  display: block; }

.select2-results__options {
  list-style: none;
  margin: 0;
  padding: 0; }

.select2-results__option {
  padding: 6px;
  user-select: none;
  -webkit-user-select: none; }
  .select2-results__option[aria-selected] {
    cursor: pointer; }

.select2-container--open .select2-dropdown {
  left: 0; }

.select2-container--open .select2-dropdown--above {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }

.select2-container--open .select2-dropdown--below {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.select2-search--dropdown {
  display: block;
  padding: 4px; }
  .select2-search--dropdown .select2-search__field {
    padding: 4px;
    width: 100%;
    box-sizing: border-box; }
    .select2-search--dropdown .select2-search__field::-webkit-search-cancel-button {
      -webkit-appearance: none; }
  .select2-search--dropdown.select2-search--hide {
    display: none; }

.select2-close-mask {
  border: 0;
  margin: 0;
  padding: 0;
  display: block;
  position: fixed;
  left: 0;
  top: 0;
  min-height: 100%;
  min-width: 100%;
  height: auto;
  width: auto;
  opacity: 0;
  z-index: 99;
  background-color: #fff;
  filter: alpha(opacity=0); }

.select2-hidden-accessible {
  border: 0 !important;
  clip: rect(0 0 0 0) !important;
  -webkit-clip-path: inset(50%) !important;
  clip-path: inset(50%) !important;
  height: 1px !important;
  overflow: hidden !important;
  padding: 0 !important;
  position: absolute !important;
  width: 1px !important;
  white-space: nowrap !important; }

.select2-container--default .select2-selection--single {
  background-color: #fff;
  border: 1px solid #aaa;
  border-radius: 4px; }
  .select2-container--default .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 28px; }
  .select2-container--default .select2-selection--single .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold; }
  .select2-container--default .select2-selection--single .select2-selection__placeholder {
    color: #999; }
  .select2-container--default .select2-selection--single .select2-selection__arrow {
    height: 26px;
    position: absolute;
    top: 1px;
    right: 1px;
    width: 20px; }
    .select2-container--default .select2-selection--single .select2-selection__arrow b {
      border-color: #888 transparent transparent transparent;
      border-style: solid;
      border-width: 5px 4px 0 4px;
      height: 0;
      left: 50%;
      margin-left: -4px;
      margin-top: -2px;
      position: absolute;
      top: 50%;
      width: 0; }

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left; }

.select2-container--default[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  left: 1px;
  right: auto; }

.select2-container--default.select2-container--disabled .select2-selection--single {
  background-color: #eee;
  cursor: default; }
  .select2-container--default.select2-container--disabled .select2-selection--single .select2-selection__clear {
    display: none; }

.select2-container--default.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #888 transparent;
  border-width: 0 4px 5px 4px; }

.select2-container--default .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text; }
  .select2-container--default .select2-selection--multiple .select2-selection__rendered {
    box-sizing: border-box;
    list-style: none;
    margin: 0;
    padding: 0 5px;
    width: 100%; }
    .select2-container--default .select2-selection--multiple .select2-selection__rendered li {
      list-style: none; }
  .select2-container--default .select2-selection--multiple .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold;
    margin-top: 5px;
    margin-right: 10px;
    padding: 1px; }
  .select2-container--default .select2-selection--multiple .select2-selection__choice {
    background-color: #e4e4e4;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: default;
    float: left;
    margin-right: 5px;
    margin-top: 5px;
    padding: 0 5px; }
  .select2-container--default .select2-selection--multiple .select2-selection__choice__remove {
    color: #999;
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    margin-right: 2px; }
    .select2-container--default .select2-selection--multiple .select2-selection__choice__remove:hover {
      color: #333; }

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice, .select2-container--default[dir="rtl"] .select2-selection--multiple .select2-search--inline {
  float: right; }

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  margin-left: 5px;
  margin-right: auto; }

.select2-container--default[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto; }

.select2-container--default.select2-container--focus .select2-selection--multiple {
  border: solid black 1px;
  outline: 0; }

.select2-container--default.select2-container--disabled .select2-selection--multiple {
  background-color: #eee;
  cursor: default; }

.select2-container--default.select2-container--disabled .select2-selection__choice__remove {
  display: none; }

.select2-container--default.select2-container--open.select2-container--above .select2-selection--single, .select2-container--default.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.select2-container--default.select2-container--open.select2-container--below .select2-selection--single, .select2-container--default.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }

.select2-container--default .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa; }

.select2-container--default .select2-search--inline .select2-search__field {
  background: transparent;
  border: none;
  outline: 0;
  box-shadow: none;
  -webkit-appearance: textfield; }

.select2-container--default .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto; }

.select2-container--default .select2-results__option[role=group] {
  padding: 0; }

.select2-container--default .select2-results__option[aria-disabled=true] {
  color: #999; }

.select2-container--default .select2-results__option[aria-selected=true] {
  background-color: #ddd; }

.select2-container--default .select2-results__option .select2-results__option {
  padding-left: 1em; }
  .select2-container--default .select2-results__option .select2-results__option .select2-results__group {
    padding-left: 0; }
  .select2-container--default .select2-results__option .select2-results__option .select2-results__option {
    margin-left: -1em;
    padding-left: 2em; }
    .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
      margin-left: -2em;
      padding-left: 3em; }
      .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
        margin-left: -3em;
        padding-left: 4em; }
        .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
          margin-left: -4em;
          padding-left: 5em; }
          .select2-container--default .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
            margin-left: -5em;
            padding-left: 6em; }

.select2-container--default .select2-results__option--highlighted[aria-selected] {
  background-color: #5897fb;
  color: white; }

.select2-container--default .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px; }

.select2-container--classic .select2-selection--single {
  background-color: #f7f7f7;
  border: 1px solid #aaa;
  border-radius: 4px;
  outline: 0;
  background-image: -webkit-linear-gradient(top, white 50%, #eeeeee 100%);
  background-image: -o-linear-gradient(top, white 50%, #eeeeee 100%);
  background-image: linear-gradient(to bottom, white 50%, #eeeeee 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0); }
  .select2-container--classic .select2-selection--single:focus {
    border: 1px solid #5897fb; }
  .select2-container--classic .select2-selection--single .select2-selection__rendered {
    color: #444;
    line-height: 28px; }
  .select2-container--classic .select2-selection--single .select2-selection__clear {
    cursor: pointer;
    float: right;
    font-weight: bold;
    margin-right: 10px; }
  .select2-container--classic .select2-selection--single .select2-selection__placeholder {
    color: #999; }
  .select2-container--classic .select2-selection--single .select2-selection__arrow {
    background-color: #ddd;
    border: none;
    border-left: 1px solid #aaa;
    border-top-right-radius: 4px;
    border-bottom-right-radius: 4px;
    height: 26px;
    position: absolute;
    top: 1px;
    right: 1px;
    width: 20px;
    background-image: -webkit-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
    background-image: -o-linear-gradient(top, #eeeeee 50%, #cccccc 100%);
    background-image: linear-gradient(to bottom, #eeeeee 50%, #cccccc 100%);
    background-repeat: repeat-x;
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFCCCCCC', GradientType=0); }
    .select2-container--classic .select2-selection--single .select2-selection__arrow b {
      border-color: #888 transparent transparent transparent;
      border-style: solid;
      border-width: 5px 4px 0 4px;
      height: 0;
      left: 50%;
      margin-left: -4px;
      margin-top: -2px;
      position: absolute;
      top: 50%;
      width: 0; }

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left; }

.select2-container--classic[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  border: none;
  border-right: 1px solid #aaa;
  border-radius: 0;
  border-top-left-radius: 4px;
  border-bottom-left-radius: 4px;
  left: 1px;
  right: auto; }

.select2-container--classic.select2-container--open .select2-selection--single {
  border: 1px solid #5897fb; }
  .select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow {
    background: transparent;
    border: none; }
    .select2-container--classic.select2-container--open .select2-selection--single .select2-selection__arrow b {
      border-color: transparent transparent #888 transparent;
      border-width: 0 4px 5px 4px; }

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--single {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  background-image: -webkit-linear-gradient(top, white 0%, #eeeeee 50%);
  background-image: -o-linear-gradient(top, white 0%, #eeeeee 50%);
  background-image: linear-gradient(to bottom, white 0%, #eeeeee 50%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFFFFFFF', endColorstr='#FFEEEEEE', GradientType=0); }

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--single {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
  background-image: -webkit-linear-gradient(top, #eeeeee 50%, white 100%);
  background-image: -o-linear-gradient(top, #eeeeee 50%, white 100%);
  background-image: linear-gradient(to bottom, #eeeeee 50%, white 100%);
  background-repeat: repeat-x;
  filter: progid:DXImageTransform.Microsoft.gradient(startColorstr='#FFEEEEEE', endColorstr='#FFFFFFFF', GradientType=0); }

.select2-container--classic .select2-selection--multiple {
  background-color: white;
  border: 1px solid #aaa;
  border-radius: 4px;
  cursor: text;
  outline: 0; }
  .select2-container--classic .select2-selection--multiple:focus {
    border: 1px solid #5897fb; }
  .select2-container--classic .select2-selection--multiple .select2-selection__rendered {
    list-style: none;
    margin: 0;
    padding: 0 5px; }
  .select2-container--classic .select2-selection--multiple .select2-selection__clear {
    display: none; }
  .select2-container--classic .select2-selection--multiple .select2-selection__choice {
    background-color: #e4e4e4;
    border: 1px solid #aaa;
    border-radius: 4px;
    cursor: default;
    float: left;
    margin-right: 5px;
    margin-top: 5px;
    padding: 0 5px; }
  .select2-container--classic .select2-selection--multiple .select2-selection__choice__remove {
    color: #888;
    cursor: pointer;
    display: inline-block;
    font-weight: bold;
    margin-right: 2px; }
    .select2-container--classic .select2-selection--multiple .select2-selection__choice__remove:hover {
      color: #555; }

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  float: right;
  margin-left: 5px;
  margin-right: auto; }

.select2-container--classic[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto; }

.select2-container--classic.select2-container--open .select2-selection--multiple {
  border: 1px solid #5897fb; }

.select2-container--classic.select2-container--open.select2-container--above .select2-selection--multiple {
  border-top: none;
  border-top-left-radius: 0;
  border-top-right-radius: 0; }

.select2-container--classic.select2-container--open.select2-container--below .select2-selection--multiple {
  border-bottom: none;
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0; }

.select2-container--classic .select2-search--dropdown .select2-search__field {
  border: 1px solid #aaa;
  outline: 0; }

.select2-container--classic .select2-search--inline .select2-search__field {
  outline: 0;
  box-shadow: none; }

.select2-container--classic .select2-dropdown {
  background-color: white;
  border: 1px solid transparent; }

.select2-container--classic .select2-dropdown--above {
  border-bottom: none; }

.select2-container--classic .select2-dropdown--below {
  border-top: none; }

.select2-container--classic .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto; }

.select2-container--classic .select2-results__option[role=group] {
  padding: 0; }

.select2-container--classic .select2-results__option[aria-disabled=true] {
  color: grey; }

.select2-container--classic .select2-results__option--highlighted[aria-selected] {
  background-color: #3875d7;
  color: white; }

.select2-container--classic .select2-results__group {
  cursor: default;
  display: block;
  padding: 6px; }

.select2-container--classic.select2-container--open .select2-dropdown {
  border-color: #5897fb; }
/*! Select2 Bootstrap Theme v0.1.0-beta.7 | MIT License | github.com/select2/select2-bootstrap-theme */
.select2-container--bootstrap {
  display: block;
  /*------------------------------------*\
          #COMMON STYLES
  \*------------------------------------*/
  /**
   * Search field in the Select2 dropdown.
   */
  /**
   * No outline for all search fields - in the dropdown
   * and inline in multi Select2s.
   */
  /**
   * Adjust Select2's choices hover and selected styles to match
   * Bootstrap 3's default dropdown styles.
   *
   * @see http://getbootstrap.com/components/#dropdowns
   */
  /**
   * Clear the selection.
   */
  /**
   * Address disabled Select2 styles.
   *
   * @see https://select2.github.io/examples.html#disabled
   * @see http://getbootstrap.com/css/#forms-control-disabled
   */
  /*------------------------------------*\
          #DROPDOWN
  \*------------------------------------*/
  /**
   * Dropdown border color and box-shadow.
   */
  /**
   * Limit the dropdown height.
   */
  /*------------------------------------*\
          #SINGLE SELECT2
  \*------------------------------------*/
  /*------------------------------------*\
      #MULTIPLE SELECT2
  \*------------------------------------*/
  /**
   * Address Bootstrap control sizing classes
   *
   * 1. Reset Bootstrap defaults.
   * 2. Adjust the dropdown arrow button icon position.
   *
   * @see http://getbootstrap.com/css/#forms-control-sizes
   */
  /* 1 */
  /*------------------------------------*\
      #RTL SUPPORT
  \*------------------------------------*/
}
.select2-container--bootstrap .select2-selection {
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  color: #555555;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
  outline: 0;
}
.select2-container--bootstrap .select2-selection.form-control {
  border-radius: 4px;
}
.select2-container--bootstrap .select2-search--dropdown .select2-search__field {
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075);
  background-color: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  color: #555555;
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  font-size: 14px;
}
.select2-container--bootstrap .select2-search__field {
  outline: 0;
  /* Firefox 18- */
  /**
   * Firefox 19+
   *
   * @see http://stackoverflow.com/questions/24236240/color-for-styled-placeholder-text-is-muted-in-firefox
   */
}
.select2-container--bootstrap .select2-search__field::-webkit-input-placeholder {
  color: #999;
}
.select2-container--bootstrap .select2-search__field:-moz-placeholder {
  color: #999;
}
.select2-container--bootstrap .select2-search__field::-moz-placeholder {
  color: #999;
  opacity: 1;
}
.select2-container--bootstrap .select2-search__field:-ms-input-placeholder {
  color: #999;
}
.select2-container--bootstrap .select2-results__option {
  /**
   * Disabled results.
   *
   * @see https://select2.github.io/examples.html#disabled-results
   */
  /**
   * Hover state.
   */
  /**
   * Selected state.
   */
}
.select2-container--bootstrap .select2-results__option[role=group] {
  padding: 0;
}
.select2-container--bootstrap .select2-results__option[aria-disabled=true] {
  color: #777777;
  cursor: not-allowed;
}
.select2-container--bootstrap .select2-results__option[aria-selected=true] {
  background-color: #f5f5f5;
  color: #262626;
}
.select2-container--bootstrap .select2-results__option--highlighted[aria-selected] {
  background-color: #337ab7;
  color: #fff;
}
.select2-container--bootstrap .select2-results__option .select2-results__option {
  padding: 6px 12px;
}
.select2-container--bootstrap .select2-results__option .select2-results__option .select2-results__group {
  padding-left: 0;
}
.select2-container--bootstrap .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -12px;
  padding-left: 24px;
}
.select2-container--bootstrap .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -24px;
  padding-left: 36px;
}
.select2-container--bootstrap .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -36px;
  padding-left: 48px;
}
.select2-container--bootstrap .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -48px;
  padding-left: 60px;
}
.select2-container--bootstrap .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option .select2-results__option {
  margin-left: -60px;
  padding-left: 72px;
}
.select2-container--bootstrap .select2-results__group {
  color: #777777;
  display: block;
  padding: 6px 12px;
  font-size: 12px;
  line-height: 1.428571429;
  white-space: nowrap;
}
.select2-container--bootstrap.select2-container--focus .select2-selection, .select2-container--bootstrap.select2-container--open .select2-selection {
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 8px rgba(102, 175, 233, 0.6);
  -webkit-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  -o-transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  -webkit-transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s;
  transition: border-color ease-in-out 0.15s, box-shadow ease-in-out 0.15s, -webkit-box-shadow ease-in-out 0.15s;
  border-color: #66afe9;
}
.select2-container--bootstrap.select2-container--open {
  /**
   * Make the dropdown arrow point up while the dropdown is visible.
   */
  /**
   * Handle border radii of the container when the dropdown is showing.
   */
}
.select2-container--bootstrap.select2-container--open .select2-selection .select2-selection__arrow b {
  border-color: transparent transparent #999 transparent;
  border-width: 0 4px 4px 4px;
}
.select2-container--bootstrap.select2-container--open.select2-container--below .select2-selection {
  border-bottom-right-radius: 0;
  border-bottom-left-radius: 0;
  border-bottom-color: transparent;
}
.select2-container--bootstrap.select2-container--open.select2-container--above .select2-selection {
  border-top-right-radius: 0;
  border-top-left-radius: 0;
  border-top-color: transparent;
}
.select2-container--bootstrap .select2-selection__clear {
  color: #999;
  cursor: pointer;
  float: right;
  font-weight: bold;
  margin-right: 10px;
}
.select2-container--bootstrap .select2-selection__clear:hover {
  color: #333;
}
.select2-container--bootstrap.select2-container--disabled .select2-selection {
  border-color: #ccc;
  -webkit-box-shadow: none;
  box-shadow: none;
}
.select2-container--bootstrap.select2-container--disabled .select2-selection,
.select2-container--bootstrap.select2-container--disabled .select2-search__field {
  cursor: not-allowed;
}
.select2-container--bootstrap.select2-container--disabled .select2-selection,
.select2-container--bootstrap.select2-container--disabled .select2-selection--multiple .select2-selection__choice {
  background-color: #eeeeee;
}
.select2-container--bootstrap.select2-container--disabled .select2-selection__clear,
.select2-container--bootstrap.select2-container--disabled .select2-selection--multiple .select2-selection__choice__remove {
  display: none;
}
.select2-container--bootstrap .select2-dropdown {
  -webkit-box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  box-shadow: 0 6px 12px rgba(0, 0, 0, 0.175);
  border-color: #66afe9;
  overflow-x: hidden;
  margin-top: -1px;
}
.select2-container--bootstrap .select2-dropdown--above {
  margin-top: 1px;
}
.select2-container--bootstrap .select2-results > .select2-results__options {
  max-height: 200px;
  overflow-y: auto;
}
.select2-container--bootstrap .select2-selection--single {
  height: 34px;
  line-height: 1.428571429;
  padding: 6px 24px 6px 12px;
  /**
   * Adjust the single Select2's dropdown arrow button appearance.
   */
}
.select2-container--bootstrap .select2-selection--single .select2-selection__arrow {
  position: absolute;
  bottom: 0;
  right: 12px;
  top: 0;
  width: 4px;
}
.select2-container--bootstrap .select2-selection--single .select2-selection__arrow b {
  border-color: #999 transparent transparent transparent;
  border-style: solid;
  border-width: 4px 4px 0 4px;
  height: 0;
  left: 0;
  margin-left: -4px;
  margin-top: -2px;
  position: absolute;
  top: 50%;
  width: 0;
}
.select2-container--bootstrap .select2-selection--single .select2-selection__rendered {
  color: #555555;
  padding: 0;
}
.select2-container--bootstrap .select2-selection--single .select2-selection__placeholder {
  color: #999;
}
.select2-container--bootstrap .select2-selection--multiple {
  min-height: 34px;
  padding: 0;
  height: auto;
  /**
   * Make Multi Select2's choices match Bootstrap 3's default button styles.
   */
  /**
   * Minus 2px borders.
   */
  /**
   * Clear the selection.
   */
}
.select2-container--bootstrap .select2-selection--multiple .select2-selection__rendered {
  -webkit-box-sizing: border-box;
     -moz-box-sizing: border-box;
          box-sizing: border-box;
  display: block;
  line-height: 1.428571429;
  list-style: none;
  margin: 0;
  overflow: hidden;
  padding: 0;
  width: 100%;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.select2-container--bootstrap .select2-selection--multiple .select2-selection__placeholder {
  color: #999;
  float: left;
  margin-top: 5px;
}
.select2-container--bootstrap .select2-selection--multiple .select2-selection__choice {
  color: #555555;
  background: #fff;
  border: 1px solid #ccc;
  border-radius: 4px;
  cursor: default;
  float: left;
  margin: 5px 0 0 6px;
  padding: 0 6px;
}
.select2-container--bootstrap .select2-selection--multiple .select2-search--inline .select2-search__field {
  background: transparent;
  padding: 0 12px;
  height: 32px;
  line-height: 1.428571429;
  margin-top: 0;
  min-width: 5em;
}
.select2-container--bootstrap .select2-selection--multiple .select2-selection__choice__remove {
  color: #999;
  cursor: pointer;
  display: inline-block;
  font-weight: bold;
  margin-right: 3px;
}
.select2-container--bootstrap .select2-selection--multiple .select2-selection__choice__remove:hover {
  color: #333;
}
.select2-container--bootstrap .select2-selection--multiple .select2-selection__clear {
  margin-top: 6px;
}
.select2-container--bootstrap .select2-selection--single.input-sm, .input-group-sm .select2-container--bootstrap .select2-selection--single, .form-group-sm .select2-container--bootstrap .select2-selection--single {
  border-radius: 3px;
  font-size: 12px;
  height: 30px;
  line-height: 1.5;
  padding: 5px 22px 5px 10px;
  /* 2 */
}
.select2-container--bootstrap .select2-selection--single.input-sm .select2-selection__arrow b, .input-group-sm .select2-container--bootstrap .select2-selection--single .select2-selection__arrow b, .form-group-sm .select2-container--bootstrap .select2-selection--single .select2-selection__arrow b {
  margin-left: -5px;
}
.select2-container--bootstrap .select2-selection--multiple.input-sm, .input-group-sm .select2-container--bootstrap .select2-selection--multiple, .form-group-sm .select2-container--bootstrap .select2-selection--multiple {
  min-height: 30px;
  border-radius: 3px;
}
.select2-container--bootstrap .select2-selection--multiple.input-sm .select2-selection__choice, .input-group-sm .select2-container--bootstrap .select2-selection--multiple .select2-selection__choice, .form-group-sm .select2-container--bootstrap .select2-selection--multiple .select2-selection__choice {
  font-size: 12px;
  line-height: 1.5;
  margin: 4px 0 0 5px;
  padding: 0 5px;
}
.select2-container--bootstrap .select2-selection--multiple.input-sm .select2-search--inline .select2-search__field, .input-group-sm .select2-container--bootstrap .select2-selection--multiple .select2-search--inline .select2-search__field, .form-group-sm .select2-container--bootstrap .select2-selection--multiple .select2-search--inline .select2-search__field {
  padding: 0 10px;
  font-size: 12px;
  height: 28px;
  line-height: 1.5;
}
.select2-container--bootstrap .select2-selection--multiple.input-sm .select2-selection__clear, .input-group-sm .select2-container--bootstrap .select2-selection--multiple .select2-selection__clear, .form-group-sm .select2-container--bootstrap .select2-selection--multiple .select2-selection__clear {
  margin-top: 5px;
}
.select2-container--bootstrap .select2-selection--single.input-lg, .input-group-lg .select2-container--bootstrap .select2-selection--single, .form-group-lg .select2-container--bootstrap .select2-selection--single {
  border-radius: 6px;
  font-size: 18px;
  height: 46px;
  line-height: 1.3333333;
  padding: 10px 31px 10px 16px;
  /* 1 */
}
.select2-container--bootstrap .select2-selection--single.input-lg .select2-selection__arrow, .input-group-lg .select2-container--bootstrap .select2-selection--single .select2-selection__arrow, .form-group-lg .select2-container--bootstrap .select2-selection--single .select2-selection__arrow {
  width: 5px;
}
.select2-container--bootstrap .select2-selection--single.input-lg .select2-selection__arrow b, .input-group-lg .select2-container--bootstrap .select2-selection--single .select2-selection__arrow b, .form-group-lg .select2-container--bootstrap .select2-selection--single .select2-selection__arrow b {
  border-width: 5px 5px 0 5px;
  margin-left: -5px;
  margin-left: -10px;
  margin-top: -2.5px;
}
.select2-container--bootstrap .select2-selection--multiple.input-lg, .input-group-lg .select2-container--bootstrap .select2-selection--multiple, .form-group-lg .select2-container--bootstrap .select2-selection--multiple {
  min-height: 46px;
  border-radius: 6px;
}
.select2-container--bootstrap .select2-selection--multiple.input-lg .select2-selection__choice, .input-group-lg .select2-container--bootstrap .select2-selection--multiple .select2-selection__choice, .form-group-lg .select2-container--bootstrap .select2-selection--multiple .select2-selection__choice {
  font-size: 18px;
  line-height: 1.3333333;
  border-radius: 4px;
  margin: 9px 0 0 8px;
  padding: 0 10px;
}
.select2-container--bootstrap .select2-selection--multiple.input-lg .select2-search--inline .select2-search__field, .input-group-lg .select2-container--bootstrap .select2-selection--multiple .select2-search--inline .select2-search__field, .form-group-lg .select2-container--bootstrap .select2-selection--multiple .select2-search--inline .select2-search__field {
  padding: 0 16px;
  font-size: 18px;
  height: 44px;
  line-height: 1.3333333;
}
.select2-container--bootstrap .select2-selection--multiple.input-lg .select2-selection__clear, .input-group-lg .select2-container--bootstrap .select2-selection--multiple .select2-selection__clear, .form-group-lg .select2-container--bootstrap .select2-selection--multiple .select2-selection__clear {
  margin-top: 10px;
}
.select2-container--bootstrap .select2-selection.input-lg.select2-container--open .select2-selection--single {
  /**
   * Make the dropdown arrow point up while the dropdown is visible.
   */
}
.select2-container--bootstrap .select2-selection.input-lg.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #999 transparent;
  border-width: 0 5px 5px 5px;
}
.input-group-lg .select2-container--bootstrap .select2-selection.select2-container--open .select2-selection--single {
  /**
   * Make the dropdown arrow point up while the dropdown is visible.
   */
}
.input-group-lg .select2-container--bootstrap .select2-selection.select2-container--open .select2-selection--single .select2-selection__arrow b {
  border-color: transparent transparent #999 transparent;
  border-width: 0 5px 5px 5px;
}
.select2-container--bootstrap[dir="rtl"] {
  /**
   * Single Select2
   *
   * 1. Makes sure that .select2-selection__placeholder is positioned
   *    correctly.
   */
  /**
   * Multiple Select2
   */
}
.select2-container--bootstrap[dir="rtl"] .select2-selection--single {
  padding-left: 24px;
  padding-right: 12px;
}
.select2-container--bootstrap[dir="rtl"] .select2-selection--single .select2-selection__rendered {
  padding-right: 0;
  padding-left: 0;
  text-align: right;
  /* 1 */
}
.select2-container--bootstrap[dir="rtl"] .select2-selection--single .select2-selection__clear {
  float: left;
}
.select2-container--bootstrap[dir="rtl"] .select2-selection--single .select2-selection__arrow {
  left: 12px;
  right: auto;
}
.select2-container--bootstrap[dir="rtl"] .select2-selection--single .select2-selection__arrow b {
  margin-left: 0;
}
.select2-container--bootstrap[dir="rtl"] .select2-selection--multiple .select2-selection__choice,
.select2-container--bootstrap[dir="rtl"] .select2-selection--multiple .select2-selection__placeholder {
  float: right;
}
.select2-container--bootstrap[dir="rtl"] .select2-selection--multiple .select2-selection__choice {
  margin-left: 0;
  margin-right: 6px;
}
.select2-container--bootstrap[dir="rtl"] .select2-selection--multiple .select2-selection__choice__remove {
  margin-left: 2px;
  margin-right: auto;
}

/*------------------------------------*\
    #ADDITIONAL GOODIES
\*------------------------------------*/
/**
 * Address Bootstrap's validation states
 *
 * If a Select2 widget parent has one of Bootstrap's validation state modifier
 * classes, adjust Select2's border colors and focus states accordingly.
 * You may apply said classes to the Select2 dropdown (body > .select2-container)
 * via JavaScript match Bootstraps' to make its styles match.
 *
 * @see http://getbootstrap.com/css/#forms-control-validation
 */
.has-warning .select2-dropdown,
.has-warning .select2-selection {
  border-color: #8a6d3b;
}
.has-warning .select2-container--focus .select2-selection,
.has-warning .select2-container--open .select2-selection {
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #c0a16b;
  border-color: #66512c;
}
.has-warning.select2-drop-active {
  border-color: #66512c;
}
.has-warning.select2-drop-active.select2-drop.select2-drop-above {
  border-top-color: #66512c;
}

.has-error .select2-dropdown,
.has-error .select2-selection {
  border-color: #a94442;
}
.has-error .select2-container--focus .select2-selection,
.has-error .select2-container--open .select2-selection {
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #ce8483;
  border-color: #843534;
}
.has-error.select2-drop-active {
  border-color: #843534;
}
.has-error.select2-drop-active.select2-drop.select2-drop-above {
  border-top-color: #843534;
}

.has-success .select2-dropdown,
.has-success .select2-selection {
  border-color: #3c763d;
}
.has-success .select2-container--focus .select2-selection,
.has-success .select2-container--open .select2-selection {
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 6px #67b168;
  border-color: #2b542c;
}
.has-success.select2-drop-active {
  border-color: #2b542c;
}
.has-success.select2-drop-active.select2-drop.select2-drop-above {
  border-top-color: #2b542c;
}

/**
 * Select2 widgets in Bootstrap Input Groups
 *
 * When Select2 widgets are combined with other elements using Bootstraps
 * "Input Group" component, we don't want specific edges of the Select2
 * container to have a border-radius.
 *
 * Use .select2-bootstrap-prepend and .select2-bootstrap-append on
 * a Bootstrap 3 .input-group to let the contained Select2 widget know which
 * edges should not be rounded as they are directly followed by another element.
 *
 * @see http://getbootstrap.com/components/#input-groups
 */
/**
 * Mimick Bootstraps .input-group .form-control styles.
 *
 * @see https://github.com/twbs/bootstrap/blob/master/less/input-groups.less
 */
.input-group .select2-container--bootstrap {
  display: table;
  table-layout: fixed;
  position: relative;
  z-index: 2;
  float: left;
  width: 100%;
  margin-bottom: 0;
  /**
   * Adjust z-index like Bootstrap does to show the focus-box-shadow
   * above appended buttons in .input-group and .form-group.
   */
}
.input-group .select2-container--bootstrap.select2-container--open, .input-group .select2-container--bootstrap.select2-container--focus {
  z-index: 3;
}

.input-group.select2-bootstrap-prepend .select2-container--bootstrap .select2-selection {
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
}

.input-group.select2-bootstrap-append .select2-container--bootstrap .select2-selection {
  border-bottom-right-radius: 0;
  border-top-right-radius: 0;
}

/**
 * Adjust alignment of Bootstrap buttons in Bootstrap Input Groups to address
 * Multi Select2's height which - depending on how many elements have been selected -
 * may grow taller than its initial size.
 *
 * @see http://getbootstrap.com/components/#input-groups
 */
.select2-bootstrap-append .select2-container--bootstrap,
.select2-bootstrap-append .input-group-btn,
.select2-bootstrap-append .input-group-btn .btn,
.select2-bootstrap-prepend .select2-container--bootstrap,
.select2-bootstrap-prepend .input-group-btn,
.select2-bootstrap-prepend .input-group-btn .btn {
  vertical-align: top;
}

/**
 * Temporary fix for https://github.com/select2/select2-bootstrap-theme/issues/9
 *
 * Provides `!important` for certain properties of the class applied to the
 * original `<select>` element to hide it.
 *
 * @see https://github.com/select2/select2/pull/3301
 * @see https://github.com/fk/select2/commit/31830c7b32cb3d8e1b12d5b434dee40a6e753ada
 */
.form-control.select2-hidden-accessible {
  position: absolute !important;
  width: 1px !important;
}

/**
 * Display override for inline forms
*/
.form-inline .select2-container--bootstrap {
  display: inline-block;
}

/*# sourceMappingURL=application.css-186051bc8382d8646dae21866a5c29147d22c919b941bd6366b52c52bdab4e39.map */
