/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS (and SCSS, if configured) 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
 * 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.
 *




 */

 @import "rouge";
.mb-40 {
  margin-bottom: 40px;
}

.mb-30 {
  margin-bottom: 30px
}

.mb-20 {
  margin-bottom: 20px;
}

.my-40 {
  margin-bottom: 40px;
  margin-top: 40px;
}

.m-none {
  margin: 0;
}

.j-self-start {
  justify-self: flex-start;
}

.ellipsis {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.break-word {
  overflow: hidden;
  overflow-wrap: break-word;
}

.separed {
  display: flex;
  justify-content: space-between;
  margin-top: 15px;
  margin-bottom: 15px;
}

.aling-s-baseline {
  align-self: baseline;
}
body,
html {
  width: 100%;
  padding: 0;
  margin: 0;
  font-size: 15px;
}

html {
  line-height: 1.5;
}

* {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen-Sans, Ubuntu, Cantarell, "Helvetica Neue", sans-serif;
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5 {
  font-weight: 400;
}

h2 {
  font-size: 30px;
  margin: 1.52rem 0 0.912rem 0;
}

h3 {
  font-size: 26.25px;
  line-height: 110%;
  margin: 1.0933333333rem 0 0.656rem 0;
}
/* webpay */

.TBK-card {

  padding: 24px;
  margin: 0.5rem 0 1rem 0;
  border-radius: 2px;
  background-color: #fff;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14), 0 3px 1px -2px rgba(0, 0, 0, 0.12), 0 1px 5px 0 rgba(0, 0, 0, 0.2);

}

.TBK-content-left,
.TBK-content-right {
  display: grid;
  grid-template-columns: 1fr 1fr;
  column-gap: 30px;
  margin-bottom: 30px;
  align-items: center;
}

.TBK-table {
  display: flex;
  flex-direction: column;
}


.TBK-table_cell {
  display: grid;
  grid-template-columns: minmax(150px, 192px) 1fr;
  align-items: center;
  column-gap: 15px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.12);

}

.TBK-table_cell .text-head {
  font-weight: 700;
}

.TBK-table_cell .main-text {
  font-weight: 600;
}

@media (max-width: 992px) {
  .TBK-content-left {
    grid-template-columns: minmax(300px, auto);
    row-gap: 30px;
  }

  .TBK-content-right {
    display: grid;
    grid-template-columns: minmax(300px, auto);
    row-gap: 30px;
    grid-auto-flow: dense;
  }

  .item-right {
    grid-row: 1;
  }
}

/* home */

.TBK-info {
  background-color: #00acc1;
  padding: 25px;
  margin-bottom: 35px;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14),
    0 3px 1px -2px rgba(0, 0, 0, 0.12),
    0 1px 5px 0 rgba(0, 0, 0, 0.2);
  border-radius: 2px;

}

.TBK-info .TBK-info_text {
  color: #ffffff;
  margin: 0;
}

.TBK-operation-link {
  display: flex;
  flex-direction: column;
  border: 1px solid #e0e0e0;
  list-style-type: none;
}

.TBK-operation-link_href {
  padding: 10px 20px;
  border-bottom: 1px solid #e0e0e0;
  color: #c2185b;
  text-decoration: none;
  transition: background-color 0.5s linear;
  cursor: pointer;

}

.TBK-operation-link_href:last-child {
  border-bottom: none;
}

.TBK-operation-link_href:hover {
  background-color: #dddddd;
}

.TBK-section-container {
  display: grid;
  grid-template-columns: 366px 1fr;
  column-gap: 60px;
  align-items: center;
  margin-bottom: 40px;
}

.TBK-section-container-rev {
  display: grid;
  grid-template-columns: 1fr 366px;
  column-gap: 60px;
  align-items: center;
  margin-bottom: 40px;
}

div.code pre {
  background-color: #fff;
}

/* inputs */

.TBK-input {
  width: 100%;
  border-width: 1;
  padding: 0.75rem 0.5rem;
  border-radius: 0.375rem;
  border: 1px solid #d1d5db;
  margin-bottom: 20px;
  transition: border-color 0.25s linear;

}

.TBK-input:focus {
  border-color: #880e4f;
  outline: none;
}

/* buttons */

.TBK-button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  height: 36px;
  padding: 0 16px;
  background-color: #e91e63;
  text-decoration: none;
  border-radius: 2px;
  color: #fff;
  text-align: center;
  letter-spacing: .5px;
  border: none;
  transition: box-shadow .3s ease-out;
  transition: filter .2s linear;
  line-height: 0;

  
}

.TBK-button:hover {
  box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 7px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -1px rgba(0, 0, 0, 0.2);
}

.TBK-button:active {
  filter: brightness(0.9);
}

.TBK-button.TBK-button_blank {
  background-color: #ffffff;
  color: #000000;
  box-shadow: 0 3px 3px 0 rgba(0, 0, 0, 0.14), 0 1px 7px 0 rgba(0, 0, 0, 0.12), 0 3px 1px -1px rgba(0, 0, 0, 0.2);
}

/* page */
.TBK-container {
  margin: 0 auto;
  max-width: 1280px;
  padding: 0 11px;
}

.TBK-main-image {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 35px;

}

.TBK-main-image img {
  height: 100px;
  width: auto;
}

/* nav bar */
.menu {
  display: flex;
  height: 100%;
}

.menu-item {
  display: flex;
  justify-content: center;
  align-items: center;
  height: 100%;
  color: #ffffff;
  padding: 0 15px;
  cursor: pointer;
  text-decoration: none;

}

.menu-item:hover {
  background-color: rgba(0, 0, 0, 0.1);
}

.nav-bar {
  display: flex;
  justify-content: center;
  height: 64px;
  margin: auto;
  background-color: #880e4f;
  margin-bottom: 20px;
  box-shadow: 0 2px 2px 0 rgba(0, 0, 0, 0.14),
    0 3px 1px -2px rgba(0, 0, 0, 0.12),
    0 1px 5px 0 rgba(0, 0, 0, 0.2);
}

.nav-image {
  max-height: 30px;
  height: 100%;
  width: auto;
}

.nav-bar_container {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1280px;
  width: 100%;
  height: 100%;
}

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

.TBK-input-group {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  column-gap: 10px;
}

.TBK-order-rows {
  display: flex;
  column-gap: 20px;
}

@media (max-width: 992px) {
  .TBK-container {
    margin: 0 auto;
    max-width: unset;
    padding: 0 30px;
  }

  .TBK-main-image img{
    height: 75px;
  }

  .TBK-order-rows {
    flex-direction: column;
  }
}

.highlight table td { padding: 5px; }
.highlight table pre { margin: 0; }
.highlight, .highlight .w {
  color: #24292f;
  background-color: #f6f8fa;
}
.highlight .k, .highlight .kd, .highlight .kn, .highlight .kp, .highlight .kr, .highlight .kt, .highlight .kv {
  color: #cf222e;
}
.highlight .gr {
  color: #f6f8fa;
}
.highlight .gd {
  color: #82071e;
  background-color: #ffebe9;
}
.highlight .nb {
  color: #953800;
}
.highlight .nc {
  color: #953800;
}
.highlight .no {
  color: #953800;
}
.highlight .nn {
  color: #953800;
}
.highlight .sr {
  color: #116329;
}
.highlight .na {
  color: #116329;
}
.highlight .nt {
  color: #116329;
}
.highlight .gi {
  color: #116329;
  background-color: #dafbe1;
}
.highlight .kc {
  color: #0550ae;
}
.highlight .l, .highlight .ld, .highlight .m, .highlight .mb, .highlight .mf, .highlight .mh, .highlight .mi, .highlight .il, .highlight .mo, .highlight .mx {
  color: #0550ae;
}
.highlight .sb {
  color: #0550ae;
}
.highlight .bp {
  color: #0550ae;
}
.highlight .ne {
  color: #0550ae;
}
.highlight .nl {
  color: #0550ae;
}
.highlight .py {
  color: #0550ae;
}
.highlight .nv, .highlight .vc, .highlight .vg, .highlight .vi, .highlight .vm {
  color: #0550ae;
}
.highlight .o, .highlight .ow {
  color: #0550ae;
}
.highlight .gh {
  color: #0550ae;
  font-weight: bold;
}
.highlight .gu {
  color: #0550ae;
  font-weight: bold;
}
.highlight .s, .highlight .sa, .highlight .sc, .highlight .dl, .highlight .sd, .highlight .s2, .highlight .se, .highlight .sh, .highlight .sx, .highlight .s1, .highlight .ss {
  color: #0a3069;
}
.highlight .nd {
  color: #8250df;
}
.highlight .nf, .highlight .fm {
  color: #8250df;
}
.highlight .err {
  color: #f6f8fa;
  background-color: #82071e;
}
.highlight .c, .highlight .ch, .highlight .cd, .highlight .cm, .highlight .cp, .highlight .cpf, .highlight .c1, .highlight .cs {
  color: #6e7781;
}
.highlight .gl {
  color: #6e7781;
}
.highlight .gt {
  color: #6e7781;
}
.highlight .ni {
  color: #24292f;
}
.highlight .si {
  color: #24292f;
}
.highlight .ge {
  color: #24292f;
  font-style: italic;
}
.highlight .gs {
  color: #24292f;
  font-weight: bold;
}
.highlight table td { padding: 5px; }
.highlight table pre { margin: 0; }
.highlight, .highlight .w {
  color: #d0d0d0;
  background-color: #151515;
}
.highlight .err {
  color: #151515;
  background-color: #ac4142;
}
.highlight .c, .highlight .ch, .highlight .cd, .highlight .cm, .highlight .cpf, .highlight .c1, .highlight .cs {
  color: #505050;
}
.highlight .cp {
  color: #f4bf75;
}
.highlight .nt {
  color: #f4bf75;
}
.highlight .o, .highlight .ow {
  color: #d0d0d0;
}
.highlight .p, .highlight .pi {
  color: #d0d0d0;
}
.highlight .gi {
  color: #90a959;
}
.highlight .gd {
  color: #ac4142;
}
.highlight .gh {
  color: #6a9fb5;
  background-color: #151515;
  font-weight: bold;
}
.highlight .k, .highlight .kn, .highlight .kp, .highlight .kr, .highlight .kv {
  color: #aa759f;
}
.highlight .kc {
  color: #d28445;
}
.highlight .kt {
  color: #d28445;
}
.highlight .kd {
  color: #d28445;
}
.highlight .s, .highlight .sb, .highlight .sc, .highlight .dl, .highlight .sd, .highlight .s2, .highlight .sh, .highlight .sx, .highlight .s1 {
  color: #90a959;
}
.highlight .sa {
  color: #aa759f;
}
.highlight .sr {
  color: #75b5aa;
}
.highlight .si {
  color: #8f5536;
}
.highlight .se {
  color: #8f5536;
}
.highlight .nn {
  color: #f4bf75;
}
.highlight .nc {
  color: #f4bf75;
}
.highlight .no {
  color: #f4bf75;
}
.highlight .na {
  color: #6a9fb5;
}
.highlight .m, .highlight .mb, .highlight .mf, .highlight .mh, .highlight .mi, .highlight .il, .highlight .mo, .highlight .mx {
  color: #90a959;
}
.highlight .ss {
  color: #90a959;
}
