.pipe-right{
    border-right: solid 1px white;
    border-radius: 0px;
}

.box-data-contanier-custom-accordion{
    -webkit-box-pack: justify;
    -ms-flex-pack: justify;
    justify-content: space-between;
}

.card-header-custom-accordion:first-child {
    border-radius: calc(0.25rem - 1px) calc(0.25rem - 1px) 0 0;
}

.card-header-custom-accordion {
    padding: 0.5rem 1rem;
    margin-bottom: 0;
    background-color: rgba(0, 0, 0, 0.03);
    border-bottom: 1px solid rgba(0, 0, 0, 0.125);
    font-size: 1.2em;
}

.card-custom-accordion {
    position: relative;
    display: flex;
    flex-direction: column;
    min-width: 0;
    word-wrap: break-word;
    background-color: #fff;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 0.25rem;
    margin: 20px;
    padding: 0px;
}

.card-body-custom-accordion {
    flex: 1 1 auto;
    padding: 1rem 1rem;
}

.card-body-index-custom-accordion {
    flex: 1 1 auto;
    padding: 0px;
    font-size: 0.9em;
    overflow-y: auto;
}
.card-body-explain-custom-accordion{
    flex: 1 1 auto;
    padding: 1rem 1rem;
}
.marco-seccion{
    width: 100%;
    max-width: 1280px;
    margin: auto;
    background-clip: border-box;
    border: 1px solid rgba(0, 0, 0, 0.125);
    border-radius: 0.25rem;
}

.header-centered{
    text-align: center;
}

.header-marco-seccion{
    margin-bottom:0;
    line-height: 2em;
    text-align:center
}

.accordion-custom {
    background-color: #eee0;
    color: #444;
    cursor: pointer;
    padding: 18px;
    width: 100%;
    border: none;
    text-align: left;
    outline: none;
    font-size: 1.1em;
    transition: 0.4s;
  }
  
  .active, .accordion-custom:hover {
    background-color: #eee0;
  }
  
  .accordion-custom:after {
    content: '\002B';
    color: #777;
    font-weight: bold;
    float: right;
    margin-left: 5px;
  }
  
  .active-accordion-custom:after {
    content: "\2212";
  }
  
  .panel-custom-accordion {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.2s ease-out;
  }

  .list-group-custom-accordion {
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    padding-left: 0;
    margin-bottom: 0;
  }

  .list-group-item-custom-accordion {
    position: relative;
    display: block;
    padding: 0.75rem 1.25rem;
    margin-bottom: -1px;
    text-decoration: none !important;
    font-size: 1.0em;
    color: black !important;
}

.section-div-doc-custom{
    display:block;
    font-size: 0.8rem !important;
}
.pull-left-custom {
    float: left!important;
}
.color-primary-custom {
    color: #0088cc;
}
.text-muted-custom {
    color: #777;
}

.meth-get {
    background-color: #008000;
}

.meth-post{
    background-color: #dfad17;
}

.meth-put{
    background-color: #7c08a3f7;
}

.meth-delete{
    background-color: #9d1111f2;
}

.method {
    font-weight: 600;
    font-size: 15px;
    display: inline-block;
    margin: 0 0 5px 0;
    padding: 4px 5px;
    border-radius: 6px;
    text-transform: uppercase;
    color: #fff;
    line-height: 1.42857143;
}

.no-padding{
    padding-left: 0em; 
    padding-right: 0em;
}

.section-description{
    padding-left: 0em; 
    padding-right: 0em;
    margin: 10px 0px;
}

.url-api{
    padding: 1em;
    margin: 10px 0px;
    overflow: auto;
    background: #2d2d2d;
}
.url-text{
    color: #ccc;
    background: none;
    font-family: Consolas, Monaco, 'Andale Mono', 'Ubuntu Mono', monospace;
    word-spacing: normal;
    word-break: normal;
    word-wrap: normal;
}

.table-api{
    display: table;
    border-collapse: separate;
    box-sizing: border-box;
    text-indent: initial;
    border-spacing: 2px;
    border-color: grey;
    border-collapse: collapse;
    border-spacing: 0;
    background-color: transparent;
    border-collapse: collapse;
    width: 100%;
    margin: 0 0 20px 0;
}

.thead-api{
    display: table-header-group;
    vertical-align: middle;
    border-color: inherit;
    background-color: #777;
    color: #fff;
    text-align: left;
    padding: 5px 8px;
    border: 1px solid #777;
}

td.code{
    font-weight: 600;
    padding: 5px;
    border: 1px solid grey;
}

td.description{
    padding: 5px;
    border: 1px solid grey;
}

.thead-api-th{
    background-color: #777;
    color: #fff;
    text-align: left;
    padding: 5px 8px;
    border: 1px solid grey;
}


/*tabs*/

.tabbed {
	overflow-x: hidden; /* so we could easily hide the radio inputs */
}

.tabbed [type="radio"] {
	/* hiding the inputs */
	display: none;
}

.tabs {
	display: flex;
	align-items: stretch;
	list-style: none;
	padding: 0;
	border-bottom: 1px solid #ccc;
}
.tab > label {
	display: block;
	margin-bottom: -1px;
	padding: 12px 15px;
	border: 1px solid #ccc;
	background: #eee;
	color: #666;
	font-size: 12px; 
	font-weight: 600;
	text-transform: uppercase;
	letter-spacing: 1px;
	cursor: pointer;	
	transition: all 0.3s;
}
.tab:hover label {
	border-top-color: #333;
	color: #333;
}

.tab-content {
	display: none;
	color: #777;
}

/* As we cannot replace the numbers with variables or calls to element properties, the number of this selector parts is our tab count limit */
.tabbed [type="radio"]:nth-of-type(1):checked ~ .tabs .tab:nth-of-type(1) label,
.tabbed [type="radio"]:nth-of-type(2):checked ~ .tabs .tab:nth-of-type(2) label,
.tabbed [type="radio"]:nth-of-type(3):checked ~ .tabs .tab:nth-of-type(3) label,
.tabbed [type="radio"]:nth-of-type(4):checked ~ .tabs .tab:nth-of-type(4) label,
.tabbed [type="radio"]:nth-of-type(4):checked ~ .tabs .tab:nth-of-type(5) label,
.tabbed [type="radio"]:nth-of-type(5):checked ~ .tabs .tab:nth-of-type(6) label {
	border-bottom-color: #fff;
	background: #fff;
	color: #222;
}

.tabbed [type="radio"]:nth-of-type(1):checked ~ .tab-content:nth-of-type(1),
.tabbed [type="radio"]:nth-of-type(2):checked ~ .tab-content:nth-of-type(2),
.tabbed [type="radio"]:nth-of-type(3):checked ~ .tab-content:nth-of-type(3),
.tabbed [type="radio"]:nth-of-type(3):checked ~ .tab-content:nth-of-type(4),
.tabbed [type="radio"]:nth-of-type(3):checked ~ .tab-content:nth-of-type(5),
.tabbed [type="radio"]:nth-of-type(4):checked ~ .tab-content:nth-of-type(6) {
	display: block;
}
