.mainCard {
    background-color: #FFF;
    padding: 2rem 2rem;
    border-radius: 0.5rem;
    border: 1px #E9EAEC solid;
}

button.btn.step.underline {
    border-bottom: 0.2rem solid #00094B;
}

.circle {
    color: white;
    width: 2rem;
    height: 2rem;
    padding: auto;
    border-radius: 10rem;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-right: 1rem;
}

.primaryButtonNty {
    background-color: #00094B;
    border-color: #00094B;
}

.primaryButtonNty:focus, .primaryButtonNty:active, .primaryButtonNty:hover{
    background-color: #00094B !important;
    border-color: #00094B !important;
    color: white;
}

.circleActive {
    background-color: #00094B;
}

.circleInactive {
    background-color: gray;
}

.alert.alert-info.footerAlert {
    background-color: #4a83d809;
    margin-bottom: unset;
    margin-right: 2rem;
}

.alert.alert-info.footerAlert p {
    padding-bottom: 0rem;
}

.index-header {
    width: 100%;
    display: flex;
    justify-content: space-between;
}

.index-titleRow {
    display: flex;
    align-items: center;
}

.index-tooltipIcon {
    margin-left: 1rem;
}

.panel-footer {
    display:flex; 
    justify-content: space-between; 
}

.sm-hide {
    display: unset;
}

.panel-footer .btn-container {
    display:flex; 
    justify-content: end;
}

.panel-footer .btn-container .btn {
    flex-grow: 1;
}

.panel-heading.stepSelector {
    display:flex; 
    justify-content: space-evenly; 
    align-items:center;
    padding-bottom: 0;
    padding-top: 0;
}

button.btn.step {
    border-bottom: 0.2rem solid transparent;
    padding-bottom: 2rem;
    padding-top: 2rem;
}

.md-hide {
    display: none;
}

.table-spacing {
    margin-bottom: 2rem;
}

.toggle-btn {
    border: 3px solid #00094B;
    display: inline-block;
    /* padding-top: 0.2rem;
    padding-bottom: 0.2rem; */
    padding-left: 0.5rem;
    padding-right: 0.5rem;
    position: relative;
    text-align: center;
    font-size: 0.65rem;
    transition: background 600ms ease, color 600ms ease;
}

/* Lógica del Toggle */
input[type="radio"].toggle {
  display: none;
}

input[type="radio"].toggle + label {
  cursor: pointer;
  min-width: 60px;
  position: relative; /* Asegura el posicionamiento del pseudo-elemento */
}

input[type="radio"].toggle + label:hover {
  background: none;
  color: #00094B;
}

input[type="radio"].toggle + label:after {
  background: #00094B;
  content: "";
  height: 100%;
  position: absolute;
  top: 0;
  transition: left 200ms cubic-bezier(0.77, 0, 0.175, 1);
  width: 100%;
  z-index: -1;
}

/* Lado Izquierdo */
input[type="radio"].toggle.toggle-left + label {
  border-right: 0;
  border-radius: 1rem 0 0 1rem;
}

input[type="radio"].toggle.toggle-left + label:after {
  left: 100%;
}

/* Lado Derecho */
input[type="radio"].toggle.toggle-right + label {
  margin-left: -5px;
  border-radius: 0 1rem 1rem 0;
}

input[type="radio"].toggle.toggle-right + label:after {
  left: -100%;
}

/* Estado Activo (Checked) */
input[type="radio"].toggle:checked + label {
  cursor: default;
  color: #fff;
  transition: color 200ms;
  background-color: #00094B;
}

input[type="radio"].toggle:checked + label:after {
  left: 0;
}

@media screen and (max-width: 768px) {
    .activeStep {
        width: 100%;
        font-size: larger;
    }

    .unactiveStep{
        display: none;
    }

    .panel-footer {
        flex-direction: column;
    }

    .sm-hide {
        display: none;
    }

    .alert.alert-info.footerAlert {
        margin-bottom: 2rem;
        margin-right: unset;
    }

    .index-header {
        flex-direction: column;
    }

    .monthlyToggle {
        margin: auto;
        margin-top: 1rem;
    }

    .md-hide {
        display: unset;
    }
}