
/* Card Dark */
.card1,
.card2,
.card3,
.card4,
.card {
    --bs-card-spacer-y: 1.5rem;
    --bs-card-spacer-x: 1.5rem;
    --bs-card-title-spacer-y: 0.875rem;
    --bs-card-border-width: 0;
    --bs-card-border-color: #dbdade;
    --bs-card-border-radius: 0.375rem;
    --bs-card-box-shadow: 0 0.25rem 1.125rem rgba(75, 70, 92, 0.1);
    --bs-card-inner-border-radius: 0.375rem;
    --bs-card-cap-padding-y: 1.5rem;
    --bs-card-cap-padding-x: 1.5rem;
    --bs-card-cap-bg: transparent;
    --bs-card-cap-color: ;
    --bs-card-height: ;
    --bs-card-color: ;
    --bs-card-bg: ;
    --bs-card-img-overlay-padding: 1.5rem;
    --bs-card-group-margin: 0.75rem;
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    height: var(--bs-card-height);
    word-wrap: break-word;
    background-color: var(--bs-card-bg);
    background-clip: border-box;
    border: var(--bs-card-border-width) solid var(--bs-card-border-color);
    border-radius: var(--bs-card-border-radius);
  }

  /* .card {
    --bs-card-border-color: #dbdade;
    --bs-card-box-shadow: 0 0.25rem 1.125rem rgba(75, 70, 92, 0.1);
    --bs-card-bg: #fff;
  } */


  .card {
    /* --bs-card-border-color: #dbdade; */
    border: var(--bs-card-border-width) solid var(#dbdade);
    --bs-card-box-shadow: 0 0.25rem 1.125rem rgba(75, 70, 92, 0.1);
    --bs-card-bg: #fff;
  }

  .card1 {
    /* background-color: #243e82; */
    --bs-card-border-color: #1E3B8A;
    --bs-card-box-shadow: 0 0.25rem 1.25rem rgba(15, 20, 34, 0.4);
    --bs-card-bg: #1E3B8A;
  }

  .card2 {
    /* background-color: #378a1e; */
    --bs-card-border-color: #20870b;
    --bs-card-box-shadow: 0 0.25rem 1.25rem rgba(15, 20, 34, 0.4);
    --bs-card-bg: #30492f;
  }

  .card3 {
    background-color: #9129ff;
  }

  .card4 {
    background-color: #9e1313;
    border: var(--bs-card-border-width) solid  #0e0e0e;

  }


  .border-waranaku {
   color: #9e1313;
  }

  /* === Border === */

  /* .border {
    border: 1px solid #dbdade !important;
  }

  .border-top {
    border-top: 1px solid #dbdade !important;
  }

  .border-bottom {
    border-bottom: 1px solid #dbdade !important;
  }

  .border-light {
    border-color: rgba(75, 70, 92, 0.05) !important;
  }
  
  .border-dark {
    border-color: #4b4b4b !important;
  }
  
  .border-gray {
    border-color: rgba(75, 70, 92, 0.05) !important;
  }
  
  .border-white {
    border-color: #fff !important;
  } */




  .card1 > hr, 
  .card2 > hr, 
  .card3 > hr, 
  .card4 > hr,
  .card > hr {
    margin-right: 0;
    margin-left: 0;
  }
  .card1 > .list-group,
  .card2 > .list-group,
  .card3 > .list-group,
  .card4 > .list-group,
  .card > .list-group {
    border-top: inherit;
    border-bottom: inherit;
  }
  .card1 > .list-group:first-child,
  .card2 > .list-group:first-child,
  .card3 > .list-group:first-child,
  .card4 > .list-group:first-child,
  .card > .list-group:first-child {
    border-top-width: 0;
    border-top-left-radius: var(--bs-card-inner-border-radius);
    border-top-right-radius: var(--bs-card-inner-border-radius);
  }
  .card1 > .list-group:last-child,
  .card2 > .list-group:last-child,
  .card3 > .list-group:last-child,
  .card4 > .list-group:last-child,
  .card > .list-group:last-child {
    border-bottom-width: 0;
    border-bottom-right-radius: var(--bs-card-inner-border-radius);
    border-bottom-left-radius: var(--bs-card-inner-border-radius);
  }

  .card1 > .card-header + .list-group,
  .card1 > .list-group + .card-foote,
  .card2 > .card-header + .list-group,
  .card2 > .list-group + .card-foote,
  .card3 > .card-header + .list-group,
  .card3 > .list-group + .card-foote,
  .card4 > .card-header + .list-group,
  .card4 > .list-group + .card-foote,
  .card > .card-header + .list-group,
  .card > .list-group + .card-footer {
    border-top: 0;
  }
  
  .card-body {
    flex: 1 1 auto;
    padding: var(--bs-card-spacer-y) var(--bs-card-spacer-x);
    color: var(--bs-card-color);
  }
  
  
  .card-title {
    margin-bottom: var(--bs-card-title-spacer-y);
  }
  
  .card-subtitle {
    margin-top: calc(-0.5 * var(--bs-card-title-spacer-y));
    margin-bottom: 0;
  }
  
  .card-text:last-child {
    margin-bottom: 0;
  }
  
  .card-link + .card-link {
    margin-left: var(--bs-card-spacer-x);
  }
  
  .card-header {
    padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
    margin-bottom: 0;
    color: var(--bs-card-cap-color);
    background-color: var(--bs-card-cap-bg);
    border-bottom: var(--bs-card-border-width) solid var(--bs-card-border-color);
  }
  .card-header:first-child {
    border-radius: var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius) 0 0;
  }
  
  .card-footer {
    padding: var(--bs-card-cap-padding-y) var(--bs-card-cap-padding-x);
    color: var(--bs-card-cap-color);
    background-color: var(--bs-card-cap-bg);
    border-top: var(--bs-card-border-width) solid var(--bs-card-border-color);
  }
  .card-footer:last-child {
    border-radius: 0 0 var(--bs-card-inner-border-radius) var(--bs-card-inner-border-radius);
  }
  
  .card-header-tabs {
    margin-right: calc(-0.5 * var(--bs-card-cap-padding-x));
    margin-bottom: calc(-1 * var(--bs-card-cap-padding-y));
    margin-left: calc(-0.5 * var(--bs-card-cap-padding-x));
    border-bottom: 0;
  }
  .card-header-tabs .nav-link.active {
    background-color: var(--bs-card-bg);
    border-bottom-color: var(--bs-card-bg);
  }
  
  .card-header-pills {
    margin-right: calc(-0.5 * var(--bs-card-cap-padding-x));
    margin-left: calc(-0.5 * var(--bs-card-cap-padding-x));
  }
  
  .card-img-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    padding: var(--bs-card-img-overlay-padding);
    border-radius: var(--bs-card-inner-border-radius);
  }
  
  .card-img,
  .card-img-top,
  .card-img-bottom {
    width: 100%;
  }
  
  .card-img,
  .card-img-top {
    border-top-left-radius: var(--bs-card-inner-border-radius);
    border-top-right-radius: var(--bs-card-inner-border-radius);
  }
  
  .card-img,
  .card-img-bottom {
    border-bottom-right-radius: var(--bs-card-inner-border-radius);
    border-bottom-left-radius: var(--bs-card-inner-border-radius);
  }
  
  .card-group > .card1,
  .card-group > .card2,
  .card-group > .card3,
  .card-group > .card4,
  .card-group > .card {
    margin-bottom: var(--bs-card-group-margin);
  }
  @media (min-width: 576px) {
    .card-group {
      display: flex;
      flex-flow: row wrap;
    }
    .card-group > .card1,
    .card-group > .card2,
    .card-group > .card3,
    .card-group > .card4,
    .card-group > .card {
      flex: 1 0 0%;
      margin-bottom: 0;
    }
    .card-group > .card1 + .card1,
    .card-group > .card2 + .card2,
    .card-group > .card3 + .card3,
    .card-group > .card4 + .card4,
    .card-group > .card + .card {
      margin-left: 0;
      border-left: 0;
    }
    .card-group > .card1:not(:last-child),
    .card-group > .card2:not(:last-child),
    .card-group > .card3:not(:last-child),
    .card-group > .card4:not(:last-child),
    .card-group > .card:not(:last-child) {
      border-top-right-radius: 0;
      border-bottom-right-radius: 0;
    }
    .card-group > .card1:not(:last-child) .card-img-top,
    .card-group > .card1:not(:last-child) .card-header,
    .card-group > .card2:not(:last-child) .card-img-top,
    .card-group > .card2:not(:last-child) .card-header,
    .card-group > .card3:not(:last-child) .card-img-top,
    .card-group > .card3:not(:last-child) .card-header,
    .card-group > .card4:not(:last-child) .card-img-top,
    .card-group > .card4:not(:last-child) .card-header,
    .card-group > .card:not(:last-child) .card-img-top,
    .card-group > .card:not(:last-child) .card-header {
      border-top-right-radius: 0;
    }
    .card-group > .card1:not(:last-child) .card-img-bottom,
    .card-group > .card1:not(:last-child) .card-footer,
    .card-group > .card2:not(:last-child) .card-img-bottom,
    .card-group > .card2:not(:last-child) .card-footer,
    .card-group > .card3:not(:last-child) .card-img-bottom,
    .card-group > .card3:not(:last-child) .card-footer,
    .card-group > .card4:not(:last-child) .card-img-bottom,
    .card-group > .card4:not(:last-child) .card-footer,
    .card-group > .card:not(:last-child) .card-img-bottom,
    .card-group > .card:not(:last-child) .card-footer {
      border-bottom-right-radius: 0;
    }
    .card-group > .card1:not(:first-child),
    .card-group > .card2:not(:first-child),
    .card-group > .card3:not(:first-child),
    .card-group > .card4:not(:first-child),
    .card-group > .card:not(:first-child) {
      border-top-left-radius: 0;
      border-bottom-left-radius: 0;
    }
    .card-group > .card1:not(:first-child) .card-img-top,
    .card-group > .card1:not(:first-child) .card-header,
    .card-group > .card2:not(:first-child) .card-img-top,
    .card-group > .card2:not(:first-child) .card-header,
    .card-group > .card3:not(:first-child) .card-img-top,
    .card-group > .card3:not(:first-child) .card-header,
    .card-group > .card4:not(:first-child) .card-img-top,
    .card-group > .card4:not(:first-child) .card-header,
    .card-group > .card:not(:first-child) .card-img-top,
    .card-group > .card:not(:first-child) .card-header {
      border-top-left-radius: 0;
    }
    .card-group > .card1:not(:first-child) .card-img-bottom,
    .card-group > .card1:not(:first-child) .card-footer,
    .card-group > .card2:not(:first-child) .card-img-bottom,
    .card-group > .card2:not(:first-child) .card-footer,
    .card-group > .card3:not(:first-child) .card-img-bottom,
    .card-group > .card3:not(:first-child) .card-footer,
    .card-group > .card4:not(:first-child) .card-img-bottom,
    .card-group > .card4:not(:first-child) .card-footer,
    .card-group > .card:not(:first-child) .card-img-bottom,
    .card-group > .card:not(:first-child) .card-footer {
      border-bottom-left-radius: 0;
    }
  }



  /* ===== ICON SIZE ====================== */

/* icon size */
#icons-container1 .icon-card {
    width: 100%;
    color: rgb(241, 241, 241);
  }
  #icons-container1 .icon-card i {
    font-size: 7rem;
  }
  
  #icons-container2 .icon-card {
    width: 100%;
    /* color: rgb(77, 77, 77); */
  }
  #icons-container2 .icon-card i {
    font-size: 8rem;
  }
  
  #icons-container3 .icon-card {
    width: 100%;
    /* color: rgb(216, 179, 12); */
  }
  #icons-container3 .icon-card i {
    font-size: 9rem;
  }
  
  #icons-container4 .icon-card {
    width: 100%;
    /* color: rgb(29, 60, 197); */
  }
  #icons-container4 .icon-card i {
    font-size: 10rem;
  }
  
  #icons-container .icon-card {
    width: 100%;
    /* color: rgb(255, 255, 255); */
  }
  #icons-container .icon-card i {
    font-size: 2rem;
  }
  
  @media (max-width: 1024px) {
    #icons-container1 .icon-card,
    #icons-container2 .icon-card,
    #icons-container3 .icon-card,
    #icons-container4 .icon-card,
    #icons-container .icon-card {
      width: 126px;
    }
  }
  @media (max-width: 767.98px) {
    #icons-container1 .icon-card
    #icons-container2 .icon-card
    #icons-container3 .icon-card
    #icons-container4 .icon-card
    #icons-container .icon-card {
      width: 131px;
    }
  }
  @media (max-width: 414px) {
    #icons-container1 .icon-card
    #icons-container2 .icon-card
    #icons-container3 .icon-card
    #icons-container4 .icon-card
    #icons-container .icon-card {
      width: 110px;
    }
  }
  @media (max-width: 375px) {
    #icons-container1 .icon-card
    #icons-container2 .icon-card
    #icons-container3 .icon-card
    #icons-container4 .icon-card
    #icons-container .icon-card {
      width: 150px;
    }
  }


  /* BUTTON */

  .btn_poo {
    color: #fff;
    background-color: #1E3B8A;
    border-color: #1E3B8A;
  }
  .btn_poo:hover {
    color: #fff !important;
    background-color: #4e70cf !important;
    border-color: #4e70cf !important;
  }


  /* Rizma */
  .bg-label-rizma {
    background-color: #1E3B8A !important;
    color: #f0f0f0 !important;
  }