.block-number {
  text-align: center;
  font-weight: bold;
  font-size: 0.8125em;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #191919;
  transition: 0.3s ease-out;
}
.block-number:hover {
  opacity: 1;
}
.block-number::after {
  content: '';
  display: inline-block;
  width: 0;
  height: 0;
  margin-left: 6px;
  margin-bottom: 2px;
  border-left: 3px solid transparent;
  border-right: 3px solid transparent;
  border-top: 3px solid #191919;
}
.block-number a:hover,
.block-number a:focus {
  color: #191919;
}

.demo-section .main-content .section,
.main-content .topbar,
.main-content .navbar,
.main-content .header,
.main-content .footer {
  margin: 30px 20px 100px;
  border: 1px solid #f5f6f7;
  box-shadow: 0 0 15px rgba(0, 0, 0, 0.05);
}

.main-content .navbar {
  position: static;
  margin: 0;
}

/*# sourceMappingURL=style.css.map */
/* * Custom stylesheet */
.btn-accordion {
  position: relative;
  display: flex;
  align-items: center;
  text-align: left;
}

.btn-accordion::after {
  flex-shrink: 0;
  width: 1.25rem;
  height: 1.25rem;
  margin-left: auto;
  content: '';
  background-image: url(../../images/down-arrow-blue.svg);
  background-repeat: no-repeat;
  background-size: 1.25rem;
  transition: transform 0.2s ease-in-out;
  z-index: 5;
}

.btn-accordion:not(.collapsed)::after {
  transform: rotate(-180deg);
}

.shadow-faq {
  box-shadow: 0 3px 6px #0e3c66;
  border-radius: 25px;
  background-color: #616874;
}

.card-header {
  border-radius: 25px;
}

.btn-faq {
  color: #000;
  background: #f6f7f7;
}

.card-body img {
  max-width: 100% !important;
  height: auto !important;
}

.text-tema {
  text-transform: lowercase;
}

.text-tema::first-letter {
  text-transform: uppercase;
}
/** Estilos scrollbar cards*/
.card-body {
  max-height: 30rem;
  overflow-x:hidden;
  overflow-y: auto;
  /*Estilos estándar experimentales (Principalmente Firefox)*/
  scrollbar-color: rgba(0, 0, 0, 0.5) rgba(0, 0, 0, 0);
  scrollbar-width: thin;
}

/* Estilos para motores Webkit y blink (Chrome, Safari, Opera... )*/

.card-body::-webkit-scrollbar {
  -webkit-appearance: none;
}

.card-body::-webkit-scrollbar:vertical {
  width: 10px;
}

.card-body::-webkit-scrollbar-button:increment,
.card-body::-webkit-scrollbar-button {
  display: none;
}

.card-body::-webkit-scrollbar:horizontal {
  height: 10px;
}

.card-body::-webkit-scrollbar-thumb {
  background-color: #30343a;
  border-radius: 20px;
  border: 2px solid #30343a;
}

.card-body::-webkit-scrollbar-track {
  border-radius: 10px;
}

.card-body img {
  border-radius: 0.5rem;
  margin-left: 50%;
  transform: translateX(-50%);
}

/**Tooltip Styles*/

.icon-clipboard {
  background-image: url('../../images/clipboard.svg');
  height: 1rem;
  width: 1rem;
  margin-right: 1rem;
}

.tooltip-clipboard {
  position: relative;
  display: inline-block;
  font-style: normal;
}

/* Tooltip text */
.tooltip-clipboard .tooltip-text {
  visibility: hidden;
  width: 120px;
  background-color: #343a40aa;
  color: #fff;
  text-align: center;
  padding: 5px 0;
  border-radius: 6px;
  font-size: 12px;
  text-transform: lowercase;
  font-style: normal;

  /* Position the tooltip text - see examples below! */
  position: absolute;
  z-index: 1;
  bottom: 110%;
  left: 50%;
  margin-left: -60px;
  /* Use half of the width (120/2 = 60), to center the tooltip */
}
.tooltip-clipboard .tooltip-text::first-letter {
  text-transform: uppercase;
}
/* Show the tooltip text when you mouse over the tooltip container */
.tooltip-clipboard:hover{
  cursor: pointer;
}
.tooltip-clipboard:hover .tooltip-text {
  visibility: visible;
}

.tooltip-clipboard .tooltip-text::after {
  content: ' ';
  position: absolute;
  top: 100%;
  /* At the bottom of the tooltip */
  left: 50%;
  margin-left: -5px;
  border-width: 5px;
  border-style: solid;
  border-color: #343a40aa transparent transparent transparent;
}
