/** --------------------
           COLOR
    -------------------- **/

/** Color : Red **/

/** Color : Blue**/

/** Color : Green **/

/** Color : Teal **/

/** Color : Orange **/

/** Color : Dark **/

/** Color : Light **/

/** Color : Grey **/

/** Color : Text **/

/** Color : Forms **/

/** ---------------
         MISC
    --------------- **/

/** Fonts **/

/** Border Radius **/

/** Device Breakpoint **/

/** --------------------
           COLOR
    -------------------- **/

/** Color : Red **/

/** Color : Blue**/

/** Color : Green **/

/** Color : Teal **/

/** Color : Orange **/

/** Color : Dark **/

/** Color : Light **/

/** Color : Grey **/

/** Color : Text **/

/** Color : Forms **/

/** ---------------
         MISC
    --------------- **/

/** Fonts **/

/** Border Radius **/

/** Device Breakpoint **/

/** FONTS **/

/** FLEXBOX **/

/** FORMS **/

/** BUTTON **/

/** ANIMATION **/

/* -- Fade In -- */

/** MEDIA QUERIES **/

/** -------------------
           GLOBAL
    ------------------- */

h1,
h2,
h3,
h4,
h5,
h6,
b,
strong {
  color: #050505;
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
}

p,
label,
ul,
ol,
li,
table th,
table tr,
table td {
  color: #383838;
  font-family: "Open Sans", sans-serif;
  font-weight: 400;
  font-size: 15px;
  line-height: 1.6;
  letter-spacing: 0em;
}

@media (max-width: calc(768px - 1px)) {
  p,
  label,
  ul,
  ol,
  li,
  table th,
  table tr,
  table td {
    font-size: 14px;
    line-height: 1.6428571429;
    letter-spacing: 0em;
  }
}

a {
  color: #2f82e8;
  transition: all 0.3s ease-in-out;
}

form label {
  font-size: 17px;
  line-height: normal;
  letter-spacing: normal;
  font-weight: 500;
  margin: 0 0 15px;
}

form label .asterix {
  color: #f2163e;
}

@media (max-width: calc(768px - 1px)) {
  form .form-control {
    white-space: nowrap;
    max-width: 280px;
    text-overflow: ellipsis;
    overflow: hidden;
    margin-right: 0;
  }
}

form input {
  font-size: 14px;
  line-height: normal;
  letter-spacing: normal;
  border-radius: 5px !important;
  border: solid 1px #d4d9e2 !important;
  color: #383838 !important;
  min-height: 45px !important;
  transition: all 0.3s ease-in-out !important;
  font-size: 15px;
  line-height: normal;
  letter-spacing: normal;
}

form input:focus {
  border: solid 1px #2f82e8 !important;
  box-shadow: none !important;
}

form input.placeholder {
  color: #c8c8c8 !important;
}

form input:-moz-placeholder {
  color: #c8c8c8 !important;
}

form input::-moz-placeholder {
  color: #c8c8c8 !important;
}

form input::-webkit-input-placeholder {
  color: #c8c8c8 !important;
}

form .control-error {
  display: block;
  margin: 0.5rem 0 1rem;
  background-color: rgba(242, 22, 62, 0.07);
  border-radius: 7px;
  padding: 0.5rem 1rem;
}

form .control-error .text-error {
  font-size: 14px;
  line-height: normal;
  letter-spacing: normal;
  color: #f2163e;
  opacity: 0.8;
  margin: 0;
}

form .control-error .text-error .fa,
form .control-error .text-error .fas {
  margin: 0 7px 0 0;
}

.btn,
button {
  color: #050505 !important;
  background-color: transparent !important;
  font-size: 16px;
  line-height: 0.09375;
  letter-spacing: 0.125em;
  align-items: center;
  justify-content: center;
  display: flex;
  display: -moz-flex;
  display: -ms-flexbox;
  border: none;
  border-radius: 7px !important;
  display: flex !important;
  font-weight: 600 !important;
  min-height: 45px;
  min-width: 100px;
  padding: 0.25rem 1.5rem !important;
  transition: all 0.3s ease-in-out;
  text-transform: uppercase;
}

.btn.btn-rounded,
button.btn-rounded {
  border-radius: calc(45px + 5px) !important;
}

.btn .fas,
.btn .fa,
button .fas,
button .fa {
  font-size: 16px;
  line-height: normal;
  letter-spacing: normal;
  margin: 0 5px;
}

.btn.btn-sm,
button.btn-sm {
  font-size: 13px;
  line-height: 0.5384615385;
  letter-spacing: 0.0153846154em;
  font-weight: 600 !important;
  min-height: 35px;
  text-transform: capitalize;
  padding: 0.25rem 0.8rem !important;
}

.btn.btn-primary,
button.btn-primary {
  background-color: #2f82e8 !important;
  color: #ffffff !important;
}

.btn.btn-primary:hover,
button.btn-primary:hover {
  background-color: #0F6FE1 !important;
}

.btn.btn-outline-primary,
button.btn-outline-primary {
  background-color: #ffffff !important;
  border: solid 1px #2f82e8 !important;
  color: #2f82e8 !important;
}

.btn.btn-outline-primary:hover,
button.btn-outline-primary:hover {
  background-color: #2f82e8 !important;
  color: #ffffff !important;
}

.btn.btn-danger,
button.btn-danger {
  background-color: #f2163e !important;
  color: #ffffff !important;
}

.btn.btn-danger:hover,
button.btn-danger:hover {
  background-color: #DB0027 !important;
}

.btn.btn-outline-danger,
button.btn-outline-danger {
  background-color: #ffffff !important;
  border: solid 1px #f2163e !important;
  color: #f2163e !important;
}

.btn.btn-outline-danger:hover,
button.btn-outline-danger:hover {
  background-color: #f2163e !important;
  color: #ffffff !important;
}

.btn.btn-success,
button.btn-success {
  background-color: #52E215 !important;
  color: #ffffff !important;
}

.btn.btn-success:hover,
button.btn-success:hover {
  background-color: #3CC900 !important;
}

.btn.btn-outline-success,
button.btn-outline-success {
  background-color: #ffffff !important;
  border: solid 1px #52E215 !important;
  color: #52E215 !important;
}

.btn.btn-outline-success:hover,
button.btn-outline-success:hover {
  background-color: #52E215 !important;
  color: #ffffff !important;
}

.btn.btn-warning,
button.btn-warning {
  background-color: #FFA717 !important;
  color: #ffffff !important;
}

.btn.btn-warning:hover,
button.btn-warning:hover {
  background-color: #EA9000 !important;
}

.btn.btn-outline-warning,
button.btn-outline-warning {
  background-color: #ffffff !important;
  border: solid 1px #FFA717 !important;
  color: #FFA717 !important;
}

.btn.btn-outline-warning:hover,
button.btn-outline-warning:hover {
  background-color: #FFA717 !important;
  color: #ffffff !important;
}

.btn.btn-info,
button.btn-info {
  background-color: #1496AF !important;
  color: #ffffff !important;
}

.btn.btn-info:hover,
button.btn-info:hover {
  background-color: #037A90 !important;
}

.btn.btn-outline-info,
button.btn-outline-info {
  background-color: #ffffff !important;
  border: solid 1px #1496AF !important;
  color: #1496AF !important;
}

.btn.btn-outline-info:hover,
button.btn-outline-info:hover {
  background-color: #1496AF !important;
  color: #ffffff !important;
}

.btn.btn-outline-dark,
button.btn-outline-dark {
  background-color: #ffffff !important;
  border: solid 1px #383838 !important;
  color: #383838 !important;
}

.btn.btn-outline-dark:hover,
button.btn-outline-dark:hover {
  background-color: #383838 !important;
  color: #ffffff !important;
}

.btn.btn-secondary,
button.btn-secondary {
  background-color: #f3f3f4 !important;
  color: #050505 !important;
}

.btn.btn-secondary:hover,
button.btn-secondary:hover {
  background-color: #dcdcdc !important;
}

.fade-in-top {
  transform: translateY(3em);
  transition: transform 3.5s 0.25s cubic-bezier(0, 1, 0.3, 1), opacity 0.3s 0.25s ease-out;
  opacity: 0;
  transition-delay: unset;
}

.fade-in-top.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-bottom {
  transform: translateY(-3em);
  transition: transform 3.5s 0.25s cubic-bezier(0, 1, 0.3, 1), opacity 0.3s 0.25s ease-out;
  opacity: 0;
  transition-delay: unset;
}

.fade-in-bottom.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.fade-in-left {
  transform: translateX(-3em);
  transition: transform 3.5s 0.25s cubic-bezier(0, 1, 0.3, 1), opacity 0.3s 0.25s ease-out;
  opacity: 0;
  transition-delay: unset;
}

.fade-in-left.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.fade-in-right {
  transform: translateX(3em);
  transition: transform 3.5s 0.25s cubic-bezier(0, 1, 0.3, 1), opacity 0.3s 0.25s ease-out;
  opacity: 0;
  transition-delay: unset;
}

.fade-in-right.is-visible {
  opacity: 1;
  transform: translateX(0);
}

.delay-01 {
  transition-delay: 0.1s;
}

.delay-02 {
  transition-delay: 0.2s;
}

.delay-03 {
  transition-delay: 0.3s;
}

.delay-04 {
  transition-delay: 0.4s;
}

.delay-05 {
  transition-delay: 0.5s;
}

.delay-06 {
  transition-delay: 0.6s;
}

.delay-07 {
  transition-delay: 0.7s;
}

.delay-08 {
  transition-delay: 0.8s;
}

.delay-09 {
  transition-delay: 0.9s;
}

.delay-1 {
  transition-delay: 1s;
}

/* --------------------
           HEADER
   -------------------- */

.navbar {
  background-color: white;
  border-bottom: solid 1px #f5f5f5;
  box-shadow: 5px 5px 10px rgba(0, 0, 0, 0.05);
  padding: inherit 0;
}

.navbar .navbar-brand {
  display: -moz-flex;
  display: flex;
}

.navbar .navbar-brand .brand-img {
  align-items: center;
  justify-content: center;
  display: flex;
  display: -moz-flex;
  display: -ms-flexbox;
  background-color: #f5f7fb;
  border-radius: 50%;
  padding: 1rem;
  width: 60px;
  height: 60px;
  margin: 0 15px 0 0;
}

@media (max-width: calc(768px - 1px)) {
  .navbar .navbar-brand .brand-img {
    width: 40px;
    height: 40px;
  }
}

.navbar .navbar-brand .brand-img img {
  width: inherit;
  max-width: 50px;
  height: auto;
}

@media (max-width: calc(768px - 1px)) {
  .navbar .navbar-brand .brand-img img {
    max-width: 40px;
  }
}

.navbar .navbar-brand .brand-title {
  align-items: center;
  justify-content: center;
  display: flex;
  display: -moz-flex;
  display: -ms-flexbox;
  width: 160px;
  white-space: normal;
}

@media (max-width: calc(768px - 1px)) {
  .navbar .navbar-brand .brand-title {
    width: 140px;
  }
}

.navbar .navbar-brand .brand-title .title {
  font-size: 16px;
  line-height: normal;
  letter-spacing: normal;
  font-weight: 600;
  margin: 0;
}

@media (max-width: calc(768px - 1px)) {
  .navbar .navbar-brand .brand-title .title {
    font-size: 14px;
  }
}

/* --------------------
        MAIN CONTENT
   -------------------- */

.main-content {
  /*padding: 120px 0;*/
  padding: 50px 0;
  height: 100%;
  min-height: 100vh;
}

@media (max-width: calc(768px - 1px)) {
  .main-content {
    padding: 50px 0;
  }
}

@media (min-width: 1440px) {
  .main-content {
    min-height: calc(90vh - 55px);
  }
}

.section {
  margin: 0;
}

.section .title-section,
.section .subtitle-section {
  font-weight: 700;
  text-transform: capitalize;
}

.section .title-section {
  font-size: 20px;
  line-height: 1.3;
  letter-spacing: 0em;
  max-width: 30%;
}

@media (max-width: calc(768px - 1px)) {
  .section .title-section {
    font-size: 18px;
    line-height: 1.3333333333;
    letter-spacing: 0em;
    max-width: 90%;
  }
}

.section .subtitle-section {
  font-size: 18px;
  line-height: normal;
  letter-spacing: normal;
  margin: 20px 0;
  max-width: 50%;
}

@media (max-width: calc(768px - 1px)) {
  .section .subtitle-section {
    text-align: center;
  }
}

.section .desc-section {
  max-width: 50%;
  margin: 20px auto 0;
}

@media (max-width: calc(768px - 1px)) {
  .section .desc-section {
    max-width: 100%;
  }
}

/* ----- Banner ----- */

.banner {
  background-color: #ffffff;
  height: 450px;
  max-height: 450px;
  margin: 80px 0 0;
}

@media (max-width: calc(768px - 1px)) {
  .banner {
    background-color: #f3f6f9;
    margin-top: 60px;
  }
}

.banner .banner-headline {
  height: 450px;
  width: 45%;
  flex-direction: column;
  display: -moz-flex;
  display: flex;
  -moz-justify-content: center;
  justify-content: center;
}

@media (max-width: calc(768px - 1px)) {
  .banner .banner-headline {
    width: 100% !important;
    text-align: center;
  }
}

.banner .banner-headline .banner-title {
  font-size: 24px;
  line-height: 1.4166666667;
  letter-spacing: 0em;
  font-weight: 600;
  margin: 0 0 20px;
}

@media (max-width: calc(768px - 1px)) {
  .banner .banner-headline .banner-title {
    font-size: 20px;
    line-height: 1.5;
    letter-spacing: 0em;
  }
}

.banner .banner-headline .banner-subtitle {
  font-size: 15px;
  line-height: 2;
  letter-spacing: 0em;
  font-weight: 400;
  width: 90%;
}

@media (max-width: calc(768px - 1px)) {
  .banner .banner-headline .banner-subtitle {
    font-size: 14px;
    line-height: 2;
    letter-spacing: 0em;
    margin: 0 auto;
  }
}

.banner .banner-headline .support .images-wrapper {
  display: flex;
  margin: 20px 0 0;
}

@media (max-width: calc(768px - 1px)) {
  .banner .banner-headline .support .images-wrapper {
    justify-content: center;
  }
}

.banner .banner-headline .support .images-wrapper .images {
  width: 42px;
  height: auto;
  /*width: auto;
  height: 42px;
  margin: 0 30px 0 0;*/
  margin: 0 10px 0 0;
}

.banner .banner-headline .support .images-wrapper .images img {
  /*width: inherit;
  height: auto;*/
  width: auto;
  height: 60px;
}

.banner .banner-headline .support .images-wrapper .images:last-child {
  margin-right: 0;
}

.banner .banner-image {
  width: 55%;
  align-items: flex-end;
  justify-content: flex-end;
  display: flex;
  display: -moz-flex;
  display: -ms-flexbox;
}

.banner .banner-image img {
  width: 100%;
  height: auto;
}

@media (max-width: calc(768px - 1px)) {
  .banner .banner-image {
    display: none;
  }
}

/* ----- Content : Langkah Validasi ----- */

.validation-steps .nav-tabs {
  align-items: center;
  justify-content: center;
  display: flex;
  display: -moz-flex;
  display: -ms-flexbox;
  border-bottom: none !important;
  position: relative;
  margin: 50px auto 0;
  width: 95%;
}

@media (max-width: calc(768px - 1px)) {
  .validation-steps .nav-tabs {
    display: inline-block;
    overflow-x: auto;
    overflow-y: hidden;
    padding: 0 15px;
    white-space: nowrap;
    width: 100%;
  }
}

.validation-steps .nav-tabs .nav-items {
  margin: 0px;
}

@media (max-width: calc(768px - 1px)) {
  .validation-steps .nav-tabs .nav-items {
    display: inline-block;
  }
}

.validation-steps .nav-tabs .nav-items .nav-link {
  font-size: 15px;
  line-height: normal;
  letter-spacing: 0em;
  background-color: transparent;
  border: none !important;
  color: #888888;
  cursor: pointer;
  font-weight: 600;
  position: relative;
  padding: 0.6rem 2rem;
  text-decoration: none;
  text-transform: uppercase;
  z-index: 3;
}

.validation-steps .nav-tabs .nav-items .nav-link.active {
  background-color: transparent;
  color: #ffffff !important;
  font-weight: 600;
}

.validation-steps .nav-tabs .nav-items .nav-link:hover {
  color: #383838;
}

@media (max-width: calc(768px - 1px)) {
  .validation-steps .nav-tabs .nav-items .nav-link {
    font-size: 14px;
    line-height: normal;
    letter-spacing: normal;
    padding: 0.6rem 1.2rem;
  }
}

.validation-steps .nav-tabs .slide1,
.validation-steps .nav-tabs .slide2 {
  border-radius: calc(7px + 23px);
  cursor: pointer;
  display: inline-block;
  height: 2.5rem;
  position: absolute;
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1.05);
}

.validation-steps .nav-tabs .slide1 {
  background-color: #2f82e8;
  z-index: 2;
}

.validation-steps .nav-tabs .slide2 {
  background: #f2f2f2;
  opacity: 0;
  padding: 1rem;
  z-index: 1;
}

.validation-steps .nav-tabs .squeeze {
  transform: scale(0.8);
}

.validation-steps .tab-content {
  background-color: #f3f6f9;
  border-radius: calc(7px + 12px) !important;
  margin: 30px auto 0;
  min-height: 60vh;
  padding: 70px 50px;
  width: 95%;
}

@media (max-width: calc(768px - 1px)) {
  .validation-steps .tab-content {
    padding: 25px;
    width: 100%;
  }
}

.validation-steps .tab-content .title-content {
  font-size: 18px;
  line-height: normal;
  letter-spacing: normal;
  font-weight: 600;
  margin: 0 0 30px;
}

@media (max-width: calc(768px - 1px)) {
  .validation-steps .tab-content .title-content {
    font-size: 16px;
    line-height: normal;
    letter-spacing: normal;
  }
}

.validation-steps .tab-content .list-child {
  margin: 10px 0;
}

.validation-steps .tab-content .list-child:last-child {
  margin-bottom: 0;
}

@media (max-width: calc(768px - 1px)) {
  .validation-steps .tab-content ol {
    padding-left: 20px;
  }
}

.validation-steps .tab-content ol li {
  line-height: 28px;
  font-weight: 500;
}

.validation-steps .tab-content p {
  font-weight: 500;
  line-height: 28px;
}

@media (max-width: calc(768px - 1px)) {
  .validation {
    padding: 0 1rem 1rem 1rem;
  }

  .validation .fade-in-top {
    opacity: 1;
  }
}

/* ------ Content : Images Stores ----- */

.download-app {
  border-top: solid 2px #f2f2f2;
  margin: 100px auto 0 !important;
  padding: 80px 0 0;
  width: 95%;
}

@media (max-width: calc(768px - 1px)) {
  .download-app {
    margin-top: 50px !important;
    padding-top: 50px !important;
  }
}

.download-app .logo-stores {
  display: -moz-flex;
  display: flex;
  align-items: center;
  justify-content: center;
  display: flex;
  display: -moz-flex;
  display: -ms-flexbox;
}

.download-app .logo-stores .images {
  display: inline-block;
  height: inherit;
  margin: 40px 20px 0;
  text-decoration: none;
  width: 180px;
  position: relative;
}

@media (max-width: calc(768px - 1px)) {
  .download-app .logo-stores .images {
    width: 130px;
    margin: 40px 15px 0;
  }
}

.download-app .logo-stores .images img {
  width: inherit;
  height: inherit;
}

.download-app .logo-stores .images.disable {
  cursor: auto;
}

.download-app .logo-stores .images.disable:after {
  content: "Coming Soon";
  align-items: center;
  justify-content: center;
  display: flex;
  display: -moz-flex;
  display: -ms-flexbox;
  font-size: 15px;
  line-height: normal;
  letter-spacing: normal;
  font-weight: 400;
  background-color: rgba(245, 245, 245, 0.75);
  color: #f2163e;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

/* ------ Content : Specimen-TTD ------ */

.table-signature {
  border: solid 1px #121212;
  border-collapse: collapse;
}

.table-signature tr,
.table-signature td {
  border: solid 1px #121212;
}

.table-signature.qrcode {
  width: 100% !important;
  border: none !important;
}

.table-signature.qrcode tr,
.table-signature.qrcode td {
  border: none !important;
}

.table-signature.qrcode .logo {
  padding-left: 0;
  text-align: left;
  width: 15%;
}

.table-signature.qrcode .logo img {
  width: 100% !important;
  max-width: 110px !important;
}

.table-signature.qrcode .desc p {
  /* width: 40%; */
  text-align: justify;
}

.table-signature .logo {
  border: none;
  margin: 0 auto;
  text-align: center;
  padding: 10px;
  width: 25%;
}

.table-signature .logo.bsre img {
  width: 100%;
  max-width: 155px;
}

.table-signature .desc {
  padding: 10px;
  width: 75%;
}

.table-signature .desc p {
  color: #222428;
  font-size: 14px;
  margin: 0 0 5px;
}

.table-signature a {
  color: #2f82e8;
}

.table-signature .more-info p {
  font-style: italic;
  font-size: 12px;
}

/* -------------------------
           FOOTER
   -------------------- */

.footer {
  align-items: center;
  justify-content: center;
  display: flex;
  display: -moz-flex;
  display: -ms-flexbox;
  flex: 1;
  background-color: #2c2c2c;
  padding: 12px 0;
  /* height: 80px; */
}

.footer .contact {
  padding: 12px;
  font-size: 14px;
}

.footer .contact, .contact h3{
  color: #ffffff;
  text-align: center;
}

.footer p,
.footer .footer-text {
  font-size: 14px;
  line-height: normal;
  letter-spacing: normal;
  color: #ffffff !important;
  margin: 0;
  text-align: center;
}

@media (max-width: calc(768px - 1px)) {
  .footer p,
  .footer .footer-text {
    font-size: 12px;
    line-height: normal;
    letter-spacing: normal;
  }
}

