

/* Contabilidad escenarios Style */

.container-escenarios {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  
  margin: 2rem auto;
  padding: 2rem;
  background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
  border-radius: 16px;
  box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
}

.container-escenarios  ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.container-escenarios  li {
  margin: 0.75rem 0;
  padding: 1rem;
  background: white;
  border-radius: 12px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  border-left: 4px solid #e2e8f0;
  transition: all 0.3s ease;
  position: relative;
}

.container-escenarios  li:hover {
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
  border-left-color: #3b82f6;
}

/* Niveles jerárquicos */
.container-escenarios  li li {
  margin-left: 1.5rem;
  border-left-color: #10b981;
  background: #f8fffe;
}

.container-escenarios  li li li {
  margin-left: 1.5rem;
  border-left-color: #f59e0b;
  background: #fffbeb;
}

.container-escenarios  strong {
  display: inline-block;
  font-weight: 600;
  color: #1e293b;
  font-size: 1.1rem;
  margin-right: 1rem;
  position: relative;
}

.container-escenarios  strong::before {
  content: '📁';
  margin-right: 0.5rem;
  font-size: 1rem;
}

/* Estilos para botones */
.container-escenarios  .btn {
  border: none;
  border-radius: 8px;
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
  text-transform: none;
  letter-spacing: 0.025em;
  margin-left: 0.5rem;
  position: relative;
  overflow: hidden;
}

.container-escenarios  .btn::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
  transition: left 0.5s;
}

.container-escenarios  .btn:hover::before {
  left: 100%;
}

.container-escenarios  .btn-primary {
  background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
  color: white;
  box-shadow: 0 2px 4px rgba(59, 130, 246, 0.3);
}

.container-escenarios  .btn-primary:hover {
  background: linear-gradient(135deg, #2563eb 0%, #1e40af 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(59, 130, 246, 0.4);
}

.container-escenarios  .btn-info {
  background: linear-gradient(135deg, #10b981 0%, #059669 100%);
  color: white;
  box-shadow: 0 2px 4px rgba(16, 185, 129, 0.3);
}

.container-escenarios  .btn-info:hover {
  background: linear-gradient(135deg, #059669 0%, #047857 100%);
  transform: translateY(-1px);
  box-shadow: 0 4px 8px rgba(16, 185, 129, 0.4);
}

.container-escenarios  .btn-xs {
  padding: 0.375rem 0.75rem;
  font-size: 0.75rem;
}

/* Iconos para botones */
.container-escenarios  .btn-primary::after {
  content: ' ➕';
  margin-left: 0.25rem;
}

.container-escenarios  .btn-info::after {
  content: ' 📝';
  margin-left: 0.25rem;
}

/* Animaciones de entrada */
.container-escenarios  li {
  animation: slideIn 0.3s ease-out;
}

@keyframes slideIn {
  from {
    opacity: 0;
    transform: translateX(-20px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

/* Líneas conectoras */
.container-escenarios  li li::before {
  content: '';
  position: absolute;
  left: -1.5rem;
  top: 50%;
  width: 1rem;
  height: 2px;
  background: #cbd5e1;
  border-radius: 1px;
}

.container-escenarios  li li::after {
  content: '';
  position: absolute;
  left: -1.5rem;
  top: 0;
  bottom: 50%;
  width: 2px;
  background: #cbd5e1;
  border-radius: 1px;
}

.container-escenarios  li:last-child::after {
  display: none;
}

/* Responsive */
@media (max-width: 768px) {
  .container {
    margin: 1rem;
    padding: 1rem;
  }
  
  li {
    padding: 0.75rem;
  }
  
  li li {
    margin-left: 1rem;
  }
  
  strong {
    display: block;
    margin-bottom: 0.5rem;
    margin-right: 0;
  }
  
  .btn {
    margin-left: 0;
    margin-top: 0.5rem;
  }
}

/* Estados de focus para accesibilidad */
.container-escenarios  .btn:focus {
  outline: 2px solid #3b82f6;
  outline-offset: 2px;
}

/* Hover effects mejorados */
.container-escenarios  li:hover strong::before {
  content: '📂';
        }

/* Contabilidad escenarios Style */

/* Modal Style */
  .header-section {
      background: linear-gradient(135deg, #007a7b 0%, #08131d 100%);
      color: white;
      padding: 20px;
      border-radius: 8px 8px 0 0;
  }

  .info-card {
      background: #f8f9fa;
      border-left: 4px solid #007bff;
      padding: 15px;
      margin: 10px 0;
  }

  .amount-highlight {
      font-size: 1.5rem;
      font-weight: bold;
      color: #28a745;
  }

  .rate-badge {
      background: #17a2b8;
      color: white;
      padding: 5px 15px;
      border-radius: 20px;
      font-weight: bold;
  }

  .payment-table {
      max-height: 300px;
      overflow-y: auto;
  }

  .status-badge {
      padding: 4px 12px;
      border-radius: 15px;
      font-size: 0.8rem;
      font-weight: bold;
  }

  .status-active {
      background: #d4edda;
      color: #155724;
  }

  .status-pending {
      background: #fff3cd;
      color: #856404;
  }

  .modal-header-custom {
      /* background: linear-gradient(135deg, #007bff 0%, #0056b3 100%); */
      background: linear-gradient(135deg, #007a7b 0%, #08131d 100%);
      color: white;
  }

  .financial-summary {
      background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
      border-radius: 8px;
      padding: 20px;
      margin: 15px 0;
  }

  .summary-item {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 8px 0;
      border-bottom: 1px solid #dee2e6;
  }

  .summary-item:last-child {
      border-bottom: none;
  }

  .summary-label {
      font-weight: 600;
      color: #495057;
  }

  .summary-value {
      font-weight: bold;
      color: #212529;
  }

/* Modal Style */

.financial-amount {
  font-size: 1.125rem;
  font-weight: 700;
}
.fw-semibold {
  color : #000;
  font-weight: bold;
}
.date-card {
  text-align: center;
  padding: 1.5rem;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.date-card.opening {
  background-color: #dbeafe;
}

.date-card.expiration {
  background-color: #fed7aa;
}

.date-card.creation {
  background-color: #dcfce7;
}

.date-icon {
  font-size: 3rem;
  margin-bottom: 0.5rem;
}

.navbar-static-top {
  background: #a48a5d;
  color : #fff !important;
}

.navbar-static-top .text-muted  {
  color : #000 !important;
  font-weight: bold;
  font-size: 12px;
}

.navbar-static-top  a {
  color : #fff !important;
  font-weight: 600;
  font-size: 12px;
}

.navbar-static-top  span {
  color : #000 !important;
  font-weight: 600;
  font-size: 12px;
}

/* Card Grid */
.grid-saldo {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.highlight-ordinary {
  border-left-color: #17a2b8;
}
.highlight-capital {
  border-left-color: #ffc107;
}
.highlight-total {
  border-left-color: #28a745;
  background-color: #e9fbe9;
}

/* Individual Cards */
.grid-saldo .card {
  background-color: #eaf4fc;
  border-left: 5px solid #007bff;
  border-radius: 10px;
  padding: 20px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  transition: transform 0.2s ease-in-out;
}

.grid-saldo .card:hover {
  transform: translateY(-5px);
}
.grid-saldo .card h3 {
  font-size: 16px;
  color: #555;
  margin-bottom: 10px;
}
.grid-saldo .card .amount {
  font-size: 22px;
  font-weight: bold;
}
.grid-saldo .card .amount.negative {
  color: #f44336;
}


.card .amount.positive {
  color: #28a745;
}



/* Total Card Highlight */
.total-card {
  background-color: #4caf50;
  color: white;
}
.total-card .amount {
  color: white;
}

.card-header{
    background: #ccbb86;
  }
  .card{
    background: #fff;
  }
  .steper-sub-title{
    font-size: 11px;
    
  }
  .steper-title{
    font-size: 17px;
    color: #000;
  }
  code {
    white-space: pre;
    font-family: monospace;
    font-size: 12px;
    background-color: #f0f0f0;
  }
  
  
  .nav > li > a {
    color: #ffffff;
  }
  .loader { animation: animationinit 5s; }
  @keyframes animationinit {
    0% {rotate: x 270deg;border-radius: 50%;}
    100% { rotate: 360deg; }
  }
  .loader2 { animation: animationend 2s; }
  @keyframes animationend {
    0% { rotate: 360deg; }
    100% { rotate: x 270deg; border-radius: 50%; }
  }
  
  .profile-card {
    width: 300px;
    height: 400px;
    margin-left: 100px;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    display: grid;
    place-items: center;
    position: relative;
    transition: all 1s;
    z-index: 1;
    overflow: hidden;
  }
  
  .info h2,
  .info p {
    color: #fff;
    opacity: 0;
    transition: all 0.6s;
  }
  
  .profile-card:hover .info h2,
  .profile-card:hover .info p {
    opacity: 1;
  }
  
  .info::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #007a7b;
    transform: skew(30deg) translateX(100%);
    opacity: 0.3;
    z-index: -1;
    transition: all 0.6s ease;
  }
  .info::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #007a7b;
    transform: skew(-30deg) translateX(100%);
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.7);
    opacity: 0.3;
    z-index: -1;
    transition: all 0.6s ease;
  }
  
  .profile-card:hover .info::before {
    transform: skew(30deg) translateX(50%);
  }
  
  .profile-card:hover .info::after {
    transform: skew(-30deg) translateX(40%);
    opacity: 0.7;
  }
  .profile-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #007a7b;
    opacity: 0.3;
    transform: skew(30deg) translateX(85%);
    transition: all 0.6s ease;
    z-index: -1;
  }
  
  .profile-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: #007a7b;
    opacity: 0.3;
    transform: skew(-30deg) translateX(85%);
    transition: all 0.6s ease;
    z-index: -1;
  }
  .profile-card:hover:before {
    transform: skew(30deg) translateX(30%);
  }
  .profile-card:hover:after {
    transform: skew(-30deg) translateX(20%);
  }
  
  .input-file{
    background-color: #f8f9fc;
    border: 1px solid #e2e9f3;
    border-radius: 4px;
    height: 40px;
    color: #007a7b;
  }
  .input-file::file-selector-button{
    border: none;
    border-radius: 4px;
    color: white;
    background-color: #007a7b;
    border: 1px solid #007a7b;
    height: 40px;
    cursor: pointer;
    transition: all .25s ease-in;
    cursor: pointer;
  }
  .input-file::file-selector-button:hover{
    background-color: #fff;
    color: #565A90;
    transition: all .25s ease-in;
  }
  
  
  .alert-hover:hover { 
    box-shadow: 10px 10px 20px rgba(36, 36, 36, 0.5); 
  } 
  .wizard > .steps .current a, .wizard > .steps .current a:hover, .wizard > .steps .current a:active{
    background: #007a7b;
    font-size: 14px;
  }
  .wizard > .content > .body input{
    border-bottom: 1px solid #000000;
  }
  
  #page-title h2{
    color: #000;
    font-weight: 500;
  }
  .nav > li > a{
    font-size: 13px;
  }
  
  .padding{
    padding-top: 10px;
    padding-bottom:10px
  }
  
  input[type="text"], input[type="number"],  textarea, .form-control {
    width: 100%;
    padding: 10px;
    border-radius: 5px;
    height: 60% !important;
    border-bottom: 1px solid #000000;
    font-size: 14px;
    background-color: #d8ddf769;
  } 
  
  .select-input  {
    width: 90%;
    padding: 10px;
    height: 100% !important;
    font-size: 12px;
  } 
  
  .bootstrap-table .table > thead > tr > th {
    border-bottom: 1px solid #007a7b;
    vertical-align: bottom;
    border: 1px solid #007a7b;
    background-color: #007a7b;
    color: #fff;
  }
  
  .nav-tabs .nav-item.show .nav-link, .nav-tabs .nav-link.active{
      border-color: #007a7b;
      background: #007a7b;
      color: #fff;
  }
  
  .nav-tabs .nav-link:not(.active):focus, .nav-tabs .nav-link:not(.active):hover{
      border-color: #007a7b;
      background: #007a7b;
      color: #fff;
  }
  
  .nav-tabs .nav-link:not(.active):focus, .nav-tabs .nav-link{
    border-color: #557793;
    background: #557793;
    color: #fff;
  }
  
  
  
  .navbar-default{
    background: #007a7b;
  }
  
  .nav.metismenu > li{
    background: #007a7b;
  }
  .navbar-default .nav > li > a:hover, .navbar-default .nav > li > a:focus{
    background-color: #085151;
    color: white;
  }
  
  ul.nav-second-level{
    background: #085151;
  }
  
  .nav > li.active {
    background: #085151;
  }
  
  
  
  .wizard > .content > .body ul {
      list-style: none !important;
  }
  
  /*******************************************************
  * Responsive
  *******************************************************/
  h2 {
    font-size: calc(0.85em + 1.3vw);
  }
  
  .control-label{
    color: #000;
    font-weight: 600;
  }
  
  .btn-zoom {
     padding:0.5%;
     font-weight:700;
     font-size:14px;
  }
  
  /*******************************************************
  * Theme
  *******************************************************/
  
  .animation-zoom{
   animation: zoom-in-zoom-out 1s ease infinite;
  }
  
  @keyframes zoom-in-zoom-out {
    0% {
      transform: scale(1, 1);
    }
    50% {
      transform: scale(1.5, 1.5);
    }
    100% {
      transform: scale(1, 1);
    }
  }
  
  body{
    text-transform: uppercase;
    font-size: 11px;
  }
  
  .alert-primary {
      background-color: #007a7b ;
      border-color: transparent;
      border-left: 3px solid #007a7b ;
      color: #fff;
  }
  
  
  .btn-primary{
    background-color: #007a7b  !important;
    border-color: #007a7b  !important;
  }
  
  
  .btn-primary:hover, .btn-primary:focus, .btn-primary.focus {
      background-color: #085151  !important;
      border-color: #085151  !important;
      color: #FFFFFF;
  }
  
  
  .my_scrollbar::-webkit-scrollbar {
    width: 8px;               /* width of the entire scrollbar */
  }
  
  .my_scrollbar::-webkit-scrollbar-track {
    background: #dadada;        /* color of the tracking area */
  }
  
  .my_scrollbar::-webkit-scrollbar-thumb {
    background-color: #25476a;    /* color of the scroll thumb */
    border-radius: 20px;       /* roundness of the scroll thumb */
    border: 3px solid #25476a;  /* creates padding around scroll thumb */
  }
  
  
  button.btn-primary.dim {
      box-shadow: inset 0 0 0 #0c369f, 0 5px 0 0 #0c519f, 0 10px 5px #7caece !important;
  }
  
  .btn-primary:hover, .btn-primary:focus, .btn-primary.focus {
      background-color: #085151  !important;
      border-color: #085151  !important;
      color: #FFFFFF;
  }
  
  .form-control:focus, .single-line:focus{
      border-color: #085151  !important;
  }
  
  .form-control.is-valid, .was-validated .form-control:valid {
      border-color: #085151  !important;
  }
  
  .form-control.is-valid:focus, .was-validated .form-control:valid:focus{
      border-color: #085151  !important;
      box-shadow: 0 0 0 0.2rem rgba(36, 98, 222, 0.25);
  }
  
  .div-card:hover {
      box-shadow: 2px 2px 5px #999;
      cursor: pointer;
      cursor: hand;
  }
  
  /* The switch - the box around the slider */
  .switch {
    position: relative;
    display: inline-block;
    width: 60px;
    height: 34px;
  }
  
  /* Hide default HTML checkbox */
  .switch input {
    opacity: 0;
    width: 0;
    height: 0;
  }
  
  /* The slider */
  .slider {
    position: absolute;
    cursor: pointer;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: #ccc;
    -webkit-transition: .2s;
    transition: .2s;
  }
  
  .slider:before {
    position: absolute;
    content: "";
    height: 26px;
    width: 26px;
    left: 4px;
    bottom: 4px;
    background-color: white;
    -webkit-transition: .2s;
    transition: .2s;
  }
  
  input:checked + .slider {
    background-color: #2196F3;
  }
  
  input:focus + .slider {
    box-shadow: 0 0 1px #2196F3;
  }
  
  input:checked + .slider:before {
    -webkit-transform: translateX(26px);
    -ms-transform: translateX(26px);
    transform: translateX(26px);
  }
  
  /* Rounded sliders */
  .slider.round {
    border-radius: 34px;
  }
  
  .slider.round:before {
    border-radius: 50%;
  }
  
  
  
  /*******************************************************
  * DatePicker
  *******************************************************/
    .datepicker table tr td.disabled,
    .datepicker table tr td.disabled:hover {
      background: rgba(0, 0, 0, 0) none repeat scroll 0 0;
      color: #dddddd;
      cursor: default;
    }
  
  .dropdown-toggle::after {
      content: "";
      border: 0;
  }
  
  
  /*******************************************************
  * Magic-Checkbox
  *******************************************************/
    .magic-checkbox + label::before {
        border-radius: 0px;
    }
    .magic-checkbox + label::before, .magic-radio + label::before {
        height: 17px;
        width: 17px;
    }
    .magic-checkbox + label::after {
        left: 6px;
        top: 1px;
    }
    .magic-checkbox + label, .magic-radio + label {
        padding-left: 25px;
    }
  
  
  /*******************************************************
  * bootstrapTable
  *******************************************************/
    .btt-icons {
      text-align: center;
    }
    .btt-icons > a {
      margin: 0 5px;
    }
    .btt-icons i.fa,
    .btt-icons span.glyphicon,
    .btt-icons .fa {
      font-size: 1.3em;
      color: #428bca;
    }
    .btt-icons i.fa:hover,
    .btt-icons span.glyphicon:hover {
      color: #2A6496;
    }
  
    .bootstrap-table .fixed-table-container {
      background: #fff none repeat scroll 0 0;
    }
    .bootstrap-table .fixed-table-toolbar .bars{
      margin-top: 0;
      padding-top: 0;
    }
    .bootstrap-table .fixed-table-toolbar .bars .btn-group{
      display: block;
      margin-top: 5px;
    }
  
    .bootstrap-table .date_range {
      display: inline-block;
      float: right;
      margin-left: 10px;
      margin-top: 2px;
      top: 12px;
      width: 225px;
    }
  
    .btt-toolbar{
      float: left;
    }
  
    .btt-toolbar select{
      display: inline-block;
      max-width: 250px;
      min-width: 75px;
      width: auto;
    }
  
    .btt-toolbar .btn-group{
      display: inline-block !important;
      position: relative;
      top: -4px;
    }
  
    .btt-toolbar select {
        background-color: #ffffff;
        border: 1px solid #e3e3e3;
        box-shadow: none;
        color: #565656;
        display: inline-block;
        height: 35px;
        margin-top: -1px;
        max-width: 100%;
        padding: 7px 12px;
        transition: all 300ms linear 0s;
    }
    .bootstrap-table .dropdown-menu label{
      font-size: .8em;
    }
  
    .btt-toolbar .select2-container {
      display: inline-block;
      width: auto !important;
      max-width: 225px !important;
    }
  
    @media (max-width: 585px) {
      .btt-toolbar a.add{
        font-size: 0;
        padding-bottom: 10px;
        padding-top: 10px;
      }
      .btt-toolbar a.add::before {
        content: "\f067";
          font-size: 10px;
        font: normal normal normal 14px/1 FontAwesome;
        text-rendering: auto;
        -webkit-font-smoothing: antialiased;
        -moz-osx-font-smoothing: grayscale;
      }
  
      .btt-toolbar select {
        width: 100%;
        margin-top: 10px;
      }
  
      .bootstrap-table .columns-right,
      .bootstrap-table .search{
        margin-top: 0;
      }
  
      .pull-right.search {
          width: 45%;
      }
    }
  
    @media (max-width: 360px) {
      .pull-right.search {
          width: 150px;
      }
    }
  
  
  /*******************************************************
  * Tab Backgroud
  *******************************************************/
    .tab-base .tab-content{
      background: none;
      border: 2px solid #f8f8f8;
          border-top-color: rgb(248, 248, 248);
          border-top-style: solid;
          border-top-width: 2px;
      border-top: 3px solid #fff;
    }
  
  
  /*******************************************************
  * table-nifty
  *******************************************************/
    .table-nifty th{
      padding: 8px !important;
    }
  
  
  
  /* .section SECTION
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  
  .section {
    background: #f8ac59;
    padding: 50px 0;
  }
  
  .section .container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
  }
  
  .section h1 {
    font-size: 2.5rem;
  }
  
  .section h2 {
    font-size: 1.3rem;
  }
  
  
  
  /* TIMELINE-horizontal
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  
  .timeline-horizontal {
    white-space: nowrap;
    overflow-x: hidden;
  }
  
  .timeline-horizontal ol {
    font-size: 0;
    width: 100vw;
    padding: 100px 0;
    transition: all 1s;
  }
  
  .timeline-horizontal ol li {
    position: relative;
    display: inline-block;
    list-style-type: none;
    width: 160px;
    height: 3px;
    background: #f8ac59;
  }
  
  .timeline-horizontal ol li:last-child {
    width: 150px;
  }
  
  .timeline-horizontal ol li:not(:first-child) {
    margin-left: 14px;
  }
  
  .timeline-horizontal ol li:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    left: calc(100% + 1px);
    bottom: 0;
    width: 12px;
    height: 12px;
    transform: translateY(-50%);
    border-radius: 50%;
    background: #f8ac59;
  }
  
  .timeline-horizontal ol li div {
    position: absolute;
    left: calc(100% + 7px);
    width: 150px;
    padding: 15px;
    font-size: 1rem;
    white-space: normal;
    color: #fff;
    background: #f8ac59;
  }
  
  .timeline-horizontal ol li div::before {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    width: 0;
    height: 0;
    border-style: solid;
  }
  
  .timeline-horizontal ol li:nth-child(odd) div {
    top: -16px;
    transform: translateY(-100%);
  }
  
  .timeline-horizontal ol li:nth-child(odd) div::before {
    top: 100%;
    border-width: 8px 8px 0 0;
    border-color: #f8ac59  transparent transparent transparent;
  }
  
  .timeline-horizontal ol li:nth-child(even) div {
    top: calc(100% + 16px);
  }
  
  .timeline-horizontal ol li:nth-child(even) div::before {
    top: -8px;
    border-width: 8px 0 0 8px;
    border-color: transparent transparent transparent #f8ac59;
  }
  
  .timeline-horizontal time {
    display: block;
    font-size: 11px;
    font-weight: bold;
    margin-bottom: 8px;
  }
  
  
  
  /* TIMELINE-horizontal ARROWS
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  
  .timeline-horizontal .arrows {
    display: flex;
    justify-content: center;
    margin-bottom: 20px;
  }
  
  .timeline-horizontal .arrows .arrow__prev {
    margin-right: 20px;
  }
  
  .timeline-horizontal .disabled {
    opacity: .5;
  }
  
  .timeline-horizontal .arrows img {
    width: 45px;
    height: 45px;
  }
  
  
  /* GENERAL MEDIA QUERIES
  –––––––––––––––––––––––––––––––––––––––––––––––––– */
  @media screen and (max-width: 599px) {
    .timeline-horizontal ol,
    .timeline-horizontal ol li {
      width: auto;
    }
  
    .timeline-horizontal ol {
      padding: 0;
      transform: none !important;
    }
  
    .timeline-horizontal ol li {
      display: block;
      height: auto;
      background: transparent;
    }
  
    .timeline-horizontal ol li:first-child {
      margin-top: 25px;
    }
  
    .timeline-horizontal ol li:not(:first-child) {
      margin-left: auto;
    }
  
    .timeline-horizontal ol li div {
      width: 94%;
      height: auto !important;
      margin: 0 auto 25px;
    }
  
    .timeline-horizontal ol li div {
      position: static;
    }
  
    .timeline-horizontal ol li:nth-child(odd) div {
      transform: none;
    }
  
    .timeline-horizontal ol li:nth-child(odd) div::before,
    .timeline-horizontal ol li:nth-child(even) div::before {
      left: 50%;
      top: 100%;
      transform: translateX(-50%);
      border: none;
      border-left: 1px solid white;
      height: 25px;
    }
  
    .timeline-horizontal ol li:last-child,
    .timeline-horizontal ol li:nth-last-child(2) div::before,
    .timeline-horizontal ol li:not(:last-child)::after,
    .timeline-horizontal .arrows {
      display: none;
    }
  }
  
  