.catasig-logo {
    margin-top: 0.8rem;
    margin-bottom: 0.8rem;
    height: 60px;
    width: auto;
}

.header-container {
    background-color: #fff;
    width: 100%;
    z-index: 100;
}

.main-container {
    width: 100%;
    padding-left: 2rem;
    display: flex;
    background-color: #fff;
}

.gov-container {
    background-color: #3366cc;
    /* height: 4vh; */
}

.gov-logo {
    margin-top: 0.1rem;
    height: 24px;
    width: auto;
}

.search-section {
    width: 20%;
}

.search-input {
    width: 300px !important;
    display: grid;
    font-size: 0.5rem !important;
}

.p-inputtext {
    padding: 0.4rem 0.7rem !important;
    display: block;
    width: 250px;
    outline: none;
    box-shadow: none;
    border: 1px solid #ced4da;
    border-radius: 8px;
}

.p-inputtext:hover {
    outline: none;
    box-shadow: none;
}

.logo-section {
    width: 80%;
}

.btn-container {
    margin: auto;
    margin-top: 1rem;
    display: flex;
}


.p-inputtext:enabled:focus {
    border-color: #05af65 !important;
    box-shadow: none !important;
}

.p-inputtext:enabled:hover {
    border-color: #05af65 !important;
}

.menu-container {
    height: 60px;
    border-top: 1px solid rgb(209, 209, 209);
    border-bottom: 4px solid #05af65;
    background: #eeeeee;
    display: flex;
    align-items: center;
    /* padding-left: 2rem; */
}

.menu-container a {
    text-decoration: none;
    display: block;
    /* padding: 15px 20px; */
    text-decoration: none;
    cursor: pointer;
}

.menu-container a:hover {
    color: #08bb6d;
}

.menu-container ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
}

.menu-container li {
    position: relative;
}


.submenu ul {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: #ffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
}

.submenu:hover ul {
    display: flex;
    flex-direction: column;
    z-index: 10;
}

.submenu ul li {
    width: 190px;
}


footer {
    margin-top: 5rem;
    position: relative;
    bottom: 0;
}

.text-center {
    text-align: center;
}

.light {
    color: #646464 !important;
}

.text-medium {
    font-size: medium !important;
}

.footer-container {
    padding: 2rem;
    background-color: #fff;
    border: 1px solid #d8d8d8;
    border-radius: 10px;
    color: #494949;
    margin: 1rem;
    width: 80%;
    margin: auto;
    margin-top: -10rem;
}

.copyright {
    text-align: center;
    margin: auto;
    position: absolute;
    right: 6rem;
    margin-top: 0.2rem;
    color: white;
}

.bg-main {
    background-color: #05af65;
    color: #fff;
}

.bg-footer{
    z-index: 9999;
    position: relative;
    bottom: 30px;
}

.m-0 {
    margin: none;
}

.second-family {
    font-family: "Open Sans", sans-serif !important;
}

.text-small {
    font-size: small !important;
}

.text-small-two {
    font-size: 14px;
}

.footer-container .title {
    color: #05af65;
    font-weight: bold;
}

.block-container {
    padding: 2rem;
}

.wsp-badge {
    background-color: rgb(212, 17, 17);
    color: #fff;
    position: absolute;
    right: 0;
    top: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    height: 20px;
    width: 20px;
    border-radius: 50%;
}

.wsp-badge span {
    color: #fff;
}

.wsp-btn {
    z-index: 10000;
    width: 70px;
    height: 70px;
    border-radius: 50%;
    padding: 1rem;
    position: fixed;
    right: 2rem;
    bottom: 1rem;
    outline: 5px solid #c0c0c05e;
    transition-duration: 3s;
    background: rgb(0, 176, 102);
    background: linear-gradient(0deg,
            rgba(0, 176, 102, 1) 0%,
            rgba(0, 255, 147, 1) 100%);
    box-shadow: 0 14px 28px rgba(0, 0, 0, 0.25), 0 10px 10px rgba(0, 0, 0, 0.22);
}

.wsp-btn:hover {
    transition-duration: 3s;
    background: rgb(0, 176, 102);
    background: linear-gradient(0deg,
            rgb(4, 138, 82) 0%,
            rgb(20, 252, 155) 100%);
}

.wsp-logo {
    cursor: pointer;
    margin: -0.1rem 0;
}


@media (min-width: 1024px) {
    .input-container {
        width: 20%;
    }
}

@media (max-width: 1400px) {
    .logo-section {
        width: 70%;
    }

    .search-section {
        width: 20%;
    }
}

@media (max-width: 882px) {
    .logo-section {
        width: 50%;
    }

    .search-section {
        width: 20%;
    }
}

@media (max-width: 764px) {
    .bg-white-md {
        background-color: white !important;
    }
}

.stepper-wrapper {
    margin-top: auto;
    display: flex;
    justify-content: space-between;
    margin-bottom: 20px;
}

.stepper-item {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
  
    @media (max-width: 768px) {
      font-size: 12px;
    }
}

.stepper-item::before {
    position: absolute;
    content: "";
    border-bottom: 2px solid #ccc;
    width: 100%;
    top: 20px;
    left: -50%;
    z-index: 2;
}
  
.stepper-item::after {
    position: absolute;
    content: "";
    border-bottom: 2px solid #ccc;
    width: 100%;
    top: 20px;
    left: 50%;
    z-index: 2;
}
  
.stepper-item .step-counter {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #ccc;
    margin-bottom: 6px;
}

.stepper-item.active {
    font-weight: bold;
}
  
.stepper-item.completed .step-counter {
    background-color:  #10B26E;
}

.stepper-item.completed.ok::after {
    position: absolute;
    content: "";
    border-bottom: 2px solid  #10B26E;
    width: 100%;
    top: 20px;
    left: 50%;
    z-index: 3;
}

.stepper-item:first-child::before {
    content: none;
}
.stepper-item:last-child::after {
    content: none;
}