@import url("../fonts/poppins/stylesheet-poppins.css");
@import url("../fonts/source-sans-3/stylesheet.css");
*, *::before, *::after {
    box-sizing: border-box;
}

* {
    margin: 0;
    padding: 0;
    font: inherit;
}

body {
    display: flex;
    flex-direction: column;
    font-family: 'Source Sans 3', sans-serif;
    line-height: 20px;
    min-height: 100vh;
    min-height: 100dvh;
}

img, picture, svg , video {
    display: block;
    max-width: 100%;
}

a{
    text-decoration: none;
    cursor: pointer;
    color: #5F8E90;
}

a:hover {
    color: #446D6D;
}

.content {
    flex: 1 0 auto;
}

footer {
    flex-shrink: 0;
    display: grid;
    grid-template-columns: 1fr 2fr 1fr;
    padding: 2rem;
}

.footer-bg {
    background-color: #EFEFEF;
}

.footer-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
}

.footer-text-header {
    display: flex;
    justify-content: center;
    align-items: end;
    gap: 0.5rem;
}

.footer-text-header p {
    height: 100%;
    display: flex;
    align-items: end;
    font-size: 0.875rem;
    line-height: 1.25rem;
    font-weight: 600;
    color: rgb(31 41 55);
}

.footer-text-content {
    text-align: center;
    font-size: 0.875rem;
    line-height: 1.25rem;
    color: rgb(55 65 81);
}

footer a {
    color: #3E5E60;
}

@media(max-width: 390px) {
    .footer-text-header {
        align-items: center;
        flex-direction: column;
    }
}

strong {
    font-weight: 700;
}

ul {
    list-style: none;
}

.d-flex {
    display: flex;
}

.d-inline {
    display: inline;
}

.d-none {
    display: none!important;
}

.justify-content-center {
    justify-content: center;
}

.align-items-center {
    align-items: center;
}

.align-items-end {
    align-items: end;
}

.flex-direction-column {
    flex-direction: column;
}

.fw-600 {
    font-weight: 600;
}

.fw-700 {
    font-weight: 700;
}

.txt-sm {
    font-size: 0.825rem;
    line-height: 1.25rem;
}

.txt-md {
    font-size: 1.25rem;
    line-height: 1.2;
}

.txt-lg {
    font-size: 1.5rem;
    line-height: 2rem;
}

.text-align-center {
    text-align: center;
}

.border-gray-200 {
    border:1px solid rgb(229 231 235);
}

.bg-white {
    background-color: rgb(255 255 255);
}

.bg-gray {
    background-color: #f2f2f2;
    background-color: #f4f2f3;
    background-color: hsl(227 60% 97%);
    background-color: rgb(243 244 246);
    background-color: rgb(249 249 249);
}

.justify-content-between {
    justify-content: space-between;
}

.justify-content-end {
    justify-content: end;
}

.text-gray-500 {
    color: rgb(107 114 128);
}

.text-gray-600 {
    color: #575e6c;
}

.text-gray-700 {
    color: #393f4c;
}

.text-green-bd {
    color: #446D6D; 
}

.text-blue-bd {
    color: #213A93;
}

.pl-1 {
    padding-left: 0.25rem;
}

.pl-4 {
    padding-left: 2rem;
}

.pr-1 {
    padding-right: 0.25rem;
}

.pt-1 {
    padding-top: 0.25rem;
}

.ml-2 {
    margin-left: 1.5rem;
}

.p-1 {
    padding: 0.8rem;
}

.p-2 {
    padding: 1rem;
}

.p-4 {
    padding: 2rem;
}

.mt-1 {
    margin-top: 0.5rem;
}

.mt-2 {
    margin-top: 1.5rem;
}

.mt-3 {
    margin-top: 3rem;
}

.mt-4 {
    margin-top: 4rem;
}

.mt-5 {
    margin-top: 2rem;
}

.mt-6 {
    margin-top: 1rem;
}

.mb-1 {
    margin-bottom: 0.5rem;
}

.mb-2 {
    margin-bottom: 1.5rem;
}

.mb-3 {
    margin-bottom: 3rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

.gap-1 {
    gap: 0.2rem;
}

.position-relative {
    position: relative;
}

.position-absolute {
    position: absolute;
}

.hero {
    height: 55vh;
	height: 55dvh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    position: relative;
    padding: 2rem;
}

.hero picture {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: -2;
}

.hero picture img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero::after {
    content: "";
    background: rgba(0, 0, 0, 0.2);
    position: absolute;
    inset: 0;
}

.hero h1 {
    font-size: 3rem;
    font-weight: 700;
    text-transform: uppercase;
    line-height: 56px;
    color: #fff;
    margin-bottom: 2rem;
    z-index: 1;
    text-align: center;
    flex-wrap: wrap;
    display: flex;
    gap: 1rem;
    justify-content: center;
    align-items: center;
}

.hero h2 {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.5rem;
    line-height: 2.5rem;
    max-width: 1100px;
    z-index: 1;
    font-weight: 600;
    text-align: center;
}

.acciones {
    display: flex;
    flex: 1;
}

.hovereffect {
    width:100%;
    height: 100%;
    overflow: hidden;
    position: relative;
    text-align: center;
    background: #000;
    cursor: pointer;
}

.hovereffect .overlay {
    width: 100%;
    height: 100%;
    position: absolute;
    overflow: hidden;
    top: 0;
    left: 0;
    padding: 50px 20px;
}

.hovereffect:hover img {
    opacity: 0.4;
    transform: scale(1.1);
}

.hovereffect img {
    display: block;
    position: relative;
    max-width: none;
    width: calc(100% + 20px);
    transition: all .7s ease-in-out;
}

.acciones h3 {
    text-shadow: 3px 3px 6px #2D2D2D;
    font-size: 2.6rem;
    text-transform: uppercase;
    font-weight: 700;
    color: #fff;
}

@media (max-width: 1170px) {
    .acciones h3 {
        font-size: 2rem;
    }
}

@media (max-width: 850px) {
    .acciones {
        flex-direction: column;
    }
    .acciones h3 {
        font-size: 2.5rem;
    }
    .hero h1 {
        font-size: 2.15rem;
    }
    .hero h2 {
        font-size: 1.25rem;
        line-height: 1.75rem;
    }
    .hero {
        height: 50dvh;
        height: 50vh;
    }
    footer {
        display: flex;
        flex-direction: column;
        gap: 1rem;
        justify-content: center;
        align-items: center;
    }
    .footer-text-header p {
        font-size: 0.65rem;
    }
    .footer-text-content {
        font-size: 0.75rem;
    }
}

.navbar-container {
    box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 2;
}

.navbar {
    padding: 0.875rem 2rem;
    max-width: 80rem;
    margin-right: auto;
    margin-left: auto;
}

.logotipo {
    font-family: "Poppins", sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: #5F8E90;
    text-transform: uppercase;
}

.navbar a:hover {
    color: #5F8E90;
    transition: all 300ms ease-in;
}

.breadcrumb {
    display: flex;
    gap: 8px;
}

.breadcrumb img {
    height: 100%;
}

.page-header {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 0.5rem 1.75rem;
    margin-top: 50px;
}

@media (max-width: 500px) {
	.page-header {
		gap: 0;
        padding: 1rem 1.75rem;
        margin-top: 38px;
        justify-content: space-evenly;
        height: auto;
	}
}	

.page-container {
    margin-left: auto;
    margin-right: auto;
    max-width: 75rem;
    padding: 3.5rem 3rem;
}

.header-title {
    font-size: 1.35rem;
    line-height: 1.3;
}

.accordion {
    background-color: #c1d6d7;
    color: #393f4c;
    cursor: pointer;
    padding: 15px;
    width: 100%;
    text-align: center;
    border: none;
    outline: none;
    transition: 0.4s;
    font-size: 17px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    word-spacing: 3px;
    border-radius: 6px;
}

.accordion:after {
    content: '\02795'; 
    font-size: 13px;
    color: #777;
    float: right;
    margin-left: 5px;
    transition: 0.4s;
}

.active:after {
    content: "\2796"; 
}

.panel {
    padding: 0 18px;
    background-color: white;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-in-out, opacity 0.3s ease-in-out;
    opacity: 0;
    margin: 0.5rem 0 0.2rem;
    line-height: 1.5;
    color: #374151;
}

.accordion.active + .panel {
    opacity: 1;
}

.panel ol {
    padding-left: 2rem;
}

.hamburger-menu {
    display: none;
}

@media only screen and (max-width: 991px){
    .hamburger-menu {
        position: absolute;
        right: 0em;
        border: none;
        /*height: 3em;   
        width: 3em;^*/
		height: 2.25em;
        width: 2.25em;
        z-index: 100;
        display: block;
        background: transparent;
        padding: 0;
        top: 50%;
        transform: translateY(-50%);
        transition: top .3s;
    }
    .hamburger-menu span {
        height: 3px;
        width: 1.3em;
        background-color: #5F8E90;
        display: block;
        position: absolute;
        left: 50%;
        border-radius: 3px;
        transform: translateX(-50%);
        transition: background-color 0.3s;
    }
    .hamburger-menu span:before {
        content: '';
        position: absolute;
        display: block;
        height: 3px;
        width: 100%;
        background: #5F8E90;
        opacity: 1;
        top: -7px;
        left: 0;
        transition: width .3s, left .3s, top .3s, transform .5s;
    }
    .hamburger-menu span:after {
        content: '';
        position: absolute;
        display: block;
        height: 3px;
        width: 100%;
        background: #5F8E90;
        opacity: 1;
        top: 7px;
        left: 0;
        transition: width .3s, left .3s, top .3s, transform .3s;
    }
    .hamburger-menu.clicked span {
        background-color: transparent;
    }
    .hamburger-menu.clicked span:before {
        width: 100%;
        transform: translate(-50%, -50%) rotate(225deg);
        left: 50%;
        top: 50%;
    }
    .hamburger-menu.clicked span:after {
        width: 100%;
        transform: translate(-50%, -50%) rotate(-225deg);
        left: 50%;
        top: 50%;
    }
    .navbar-menu {
        position: fixed;
        z-index: 2;
        background-color: white;
        width: 100%;
        flex-direction: column;
        left: 0;
        top: 50px;
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
        border-radius: 0 0 0.375em 0.375em;
        padding: 2rem 0;
        gap: 2rem;
        transform: scaleY(0);
        transform-origin: top;
        transition: transform 0.35s, padding-top 0.3s, top 0.3s;
        border-top: 2px solid #5F8E90;
    }
    .navbar {
        padding: 0.875rem 1rem;
    }
    .navbar-menu a {
        justify-content: center;
        font-size: 16px;
        margin-left: 0;
    }
    .navbar-menu.open {
        transform: scaleY(1);
        padding-top: 3.125em;
        z-index:2;
    }
}

@media only screen and (max-width: 500px){
	.navbar {
		padding: 0.5rem 1rem;
    }
	.navbar-menu {
        position: fixed;
        z-index: 2;
        background-color: white;
        width: 100%;
        flex-direction: column;
        left: 0;
        top: 38px;
        box-shadow: rgba(149, 157, 165, 0.2) 0px 8px 24px;
        border-radius: 0 0 0.375em 0.375em;
        padding: 2rem 0;
        gap: 2rem;
        transform: scaleY(0);
        transform-origin: top;
        transition: transform 0.35s, padding-top 0.3s, top 0.3s;
        border-top: 2px solid #5F8E90;
    }
}

@media (max-width: 575px) {
    .page-container {
        padding-left: 2rem;
        padding-right: 2rem;
    }
    .panel {
        padding: 0;
    }
    .panel ol {
        padding-left: 1rem;
    }
}

@media (min-width: 991px) and (max-width: 1200px) {
    .page-container {
        max-width: 64rem;
    }
}

@media (max-width: 990px) {
    .page-container {
        max-width: 45rem;
    }
}

.page-header picture {
    position: absolute;
    top: 0;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 100px;
}

.page-header picture img {
    width: 100%;
    height: 100px;
    object-fit: cover;
}

.navbar-menu li a {
    text-decoration: none;
    line-height: 1.125em;
    position: relative;
    z-index: 1;
    transition: color .3s;
}

.navbar-menu li a:before {
    content: '';
    position: absolute;
    display: block;
    height: 0.125em;
    background: #5F8E90;
    opacity: 1;
    bottom: -0.3125em;
    border-radius: 0.1875em;
    z-index: -1;
    width: 0%;
    transition: width .3s;
}

.navbar-menu li a:hover:before {
    width: 100%;
}

.accordion.faq {
    color: #5F8E90;
	color: #537C7F;
    display: block;
    /*margin-bottom: -0.5rem;*/
    padding: 10px 30px 10px 10px;
    border-bottom: 1px solid #5F8E90;
    background-color: #fff;
    border-radius: 0;
    letter-spacing: 0;
    text-align: left;
    text-transform: none;
}

.panel.faq {
    /*margin-top: 0.7rem !important;
    margin-bottom: 0.5rem !important;*/
    margin: 0!important;
}

.panel.faq p {
    padding: 0.5rem;
}

.accordion-arrow {
    fill: #5F8E90;
    position: absolute;
    right: 8px;
    top: 12px;
    pointer-events: none;
    transform: rotate(360deg);
    transition: transform 0.3s;
}

.accordion.faq:after {
    content: "";
}

.accordion-arrow.active {
    transform: rotate(180deg);
    fill: #fff;
    transition: transform 0.3s, fill 0.3s;
}

.accordion-wrapper:hover .accordion.faq, .accordion.faq.active {
    background-color: #5F8E90;
    color: #fff;
}

.accordion-wrapper:hover svg {
    fill: #fff;
}

.form-wrapper {
    width: 100%;
    max-width: 36rem;
    margin: 2rem auto 0;
}

.input-group-wrapper {
    display: flex;
    border-radius: 0.375rem;
    border: 1px solid #5F8E90;
    margin-top: 0.5rem;
}

.input-group-wrapper input,
.input-group-wrapper textarea,
.input-group-wrapper select {
    border: 0;
    outline: none;
    width: 100%;
    padding: 0.5rem 0.75rem;
    flex: 1 1 auto;
    font-size: 1rem;
    line-height: 1.5rem;
    border-top-right-radius: 0.375rem;
    border-bottom-right-radius: 0.375rem;
    color: #393f4c;
}

.input-group-icon-container {
    padding: 1rem;
    background-color: #e1eaea;
    border-right: 1px solid #5F8E90;
    border-top-left-radius: 0.375rem;
    border-bottom-left-radius: 0.375rem;
}

.input-group-icon-container svg {
    fill: #5F8E90;
}

.input-label {
    font-size: 16px;
    line-height: 1.5;
    font-weight: 500;
    display: block;
}

.btn-1 {
    align-items: center;
    border: 0px;
    border-radius: 10rem;
    color: rgb(255, 255, 255);
    cursor: pointer;
    display: inline-flex;
    flex-shrink: 0;
    font-size: 0.875rem;
    font-style: italic;
    font-weight: 700;
    justify-content: center;
    letter-spacing: 0.1rem;
    line-height: 1;
    padding: 1rem 2rem;
    text-align: center;
    text-decoration: none;
    text-transform: uppercase;
    background-color: #5F8E90;
	background-color: #537C7F;
    transition: background-color 300ms;
}

.btn-1:hover, .btn-1:focus {
    background-color: #446D6D;
}

@media (max-width: 600px) {
    .btn-1 {
        width: 100%;
    }
}

@media (max-width: 767.98px){
    .logotipo {
        font-size: 1.3rem;
    }
}

.form-select {
    display: block;
    width: 100%;
    padding: 0.375rem 2.25rem 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-image: url("../images/icons/chevron-down.svg");
    background-repeat: no-repeat;
    background-position: right 0.75rem center;
    background-size: 16px 12px;
    border: 1px solid #dadce0;
    border-radius: 0.25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    appearance: none;
}

.row {
    display: flex;
    flex-wrap: wrap;
}

.form-control {
    display: block;
    width: 100%;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.5;
    color: #212529;
    background-color: #fff;
    background-clip: padding-box;
    appearance: none;
    border-radius: 0.25rem;
    transition: border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    border: 1px solid #dadce0;
}

.form-select:focus, .form-control:focus {
    outline: 0;
    box-shadow: 0 0 0 0.25rem rgba(13,110,253,.25);
}

.fa-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.fa-wrapper {
    box-shadow: 0px 2px 7px 1px rgba(0,0,0,0.19); 
    padding: 3rem; 
    background-color: #fff;
}

.select-label {
    color: #446D6D;
    font-weight: 600;
}

.bg-table-section {
    background-color: rgb(248 248 248);
    background-color: rgb(240 242 245);
    background-color: rgb(223 244 233);
    background-color: #fff;
}

.table-title {
    color: #446D6D;
    font-weight: 600;
    font-size: 1.2rem!important;
    letter-spacing: 0.15px;
    text-transform: uppercase;
	line-height: 1.2;
}

.table-divisor {
    border-bottom: 1px solid #446D6D;
    opacity: 0.6;
    margin: 1rem 0 3rem;
}

.table-layout {
    border-collapse: collapse;
    box-shadow: 0 5px 10px #eaeaea;
    text-align: left;
    width: 100%;
    background-color: #fff;
    box-shadow: 0 1px 3px 0 rgba(0,0,0,.1), 0 1px 2px -1px rgba(0,0,0,.1);
    box-shadow: 0 5px 10px #eaeaea;
}

.table-head {
    color: #fff;
    background-color: #446D6D;
    position: sticky;
    top: 48px;
	z-index: 2;
}

.table-head tr, .table-body tr {
    border: 1px solid #eaeaea;
}

.table-head tr th {
    font-size: 0.75rem;
    line-height: 1.25rem;
    padding: 1rem 2rem;
    letter-spacing: 0.045rem;
    font-weight: 500;
    text-align: left;
    text-transform: uppercase;
}

.table-body {
    font-size: 12px;
    letter-spacing: 0.25px;
}

.table-body tr th, .table-body tr td {
    padding: 0.85rem 1.65rem;
}

.table-body tr th {
    font-weight: 600;
}
.btn-1.btn-map {
    padding: 0.75rem 1rem;
    font-size: .875rem;
    text-transform: none;
    font-weight: 500;
    letter-spacing: 0;
}

.input-label.select-label {
    font-size: 0.875rem;
    line-height: 1.25rem;
}

.btn-2 {
    padding: 0.5rem 1rem;
    line-height: 1.25;
    border-radius: 10rem;
    text-transform: uppercase;
    letter-spacing: 0.025rem;
    font-weight: 600;
    font-size: 11px;
    border: 2px solid #fff;
}

.btn-2.btn--prev {
    background-color: rgb(223 244 233);
    color: #393f4c;
}

.btn-2.btn--next {
    background-color: #5F8E90;
    color: #fff;
}

.container-btn-2:hover, container-btn-2:focus {
    box-shadow: 0px 2px 7px 1px rgba(0,0,0,0.19);
    transition: box-shadow 300ms;
}

@media (max-width: 600px) {
    .fa-layout {
        grid-template-columns: 1fr;
    }
    .fa-wrapper {
        padding: 2rem;
    }
    .page-container.fa-container {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

@media (max-width: 990px) {
    .page-container.table-container {
        padding-left: 1rem;
        padding-right: 1rem;
        max-width: 80rem;
    }
}

.table-body tr td.btn-cell {
    padding: 0.2rem;
}

.container-btn-2 {
    border-radius: 10rem;
    padding: 0.1rem;
    outline: none;
    border: none;
}

.container--prev {
    background-color: rgb(223 244 233 / 80%);
}

.container--next {
    background-color: #5f8e909c;
}

/*========SCROLLER==========*/
::-webkit-scrollbar {
    width: 0.95em;
}

::-webkit-scrollbar-track {
    border-radius: 100vw;
    background: white;
    background: #f2f2f2;
    margin-block: 1px;
}

::-webkit-scrollbar-thumb {
    border-radius: 100vw;
    background: #446D6D;
    background: #73a3a5;
    /*background: #b4b4b4;*/
    border: 3px solid #fff;
    border: 3px solid #f2f2f2;
}

::-webkit-scrollbar-thumb:hover {
    background: #5F8E90;
}

/*======SCROLLER==========*/

.marcas-container {
    padding: 2rem 4rem;
    max-width: 100rem;
    margin: auto;
}

.marca-container {
    background-color: #fff;
    /*padding: 3rem 4rem*/
    border-radius: 1rem;
    box-shadow: 0 1px 3px 0 rgba(0,0,0,.1), 0 1px 2px -1px rgba(0,0,0,.1);
    max-width: 16rem;
    max-width: 20rem;
}

.marca-container picture img {
    width: 100%;
    height: 100%;
}

.marca-container:hover {
    box-shadow: 0 10px 15px -3px rgba(0,0,0,.1),0 4px 6px -4px rgba(0,0,0,.1);
    transition: box-shadow 150ms ease-in;
}

.marca-container:hover picture img {
    transform: scale(1.15);
    transition: transform 300ms ease;
}

@media(max-width: 600px) {
    .marcas-container {
        padding: 2rem 1rem;
    }
}

.page-container.login-form-layout {
    padding: 2.5rem 1rem;
}

.login-form-container {
    box-shadow: 0 1px 3px 0 rgba(0,0,0,.1),0 1px 2px -1px rgba(0,0,0,.1);
    border-radius: 0.5rem;
    box-shadow: 0px 3px 6px 0px rgba(0, 0, 0, 0.1), 0px 1px 3px 0px rgba(0, 0, 0, 0.08);
    box-shadow: 0 6px 15.98px 1.02px rgba(56,86,122,.1);
    box-shadow: 0 15px 35px 0 rgba(60,66,87,0.08), 0 5px 15px 0 rgba(0,0,0,.12);
}

.login-title {
    text-align: center;
    text-transform: uppercase;
}

.input-group-icon-container.form-icon-container {
    padding: 0.5rem 0.75rem;
	display: flex;
    justify-content: center;
    align-items: center;
}

.aviso-text {
    text-align: center;
    line-height: 1.5rem;
}

.aviso-icon {
    display: inline-block;
    margin-right: 4px;
}

.eye-button {
    background: #fff;
    border: none;
    outline: none;
    border-top-right-radius: 0.375rem;
    border-bottom-right-radius: 0.375rem;
}

.eye-icon {
    padding-right: 12px;
    opacity: 0.5;
    cursor: pointer;
}

.login-form {
    padding: 2rem 1.25rem;
}

.login-form button.btn-1 {
    width: 100%;
}

@media (min-width: 640px) {
    .login-form-container {
        max-width: 36rem;
        margin: auto;
    }
    .login-form {
        padding: 2rem 4rem;
    }
}

.password-control-container {
    background-color: rgba(63, 136, 245, 0.1);
    border-radius: 0.5em;
}

.password-control-container li {
    font-weight: 500;
    margin-top: 4px;
}

.password-control-container li.valid,
.password-control-container li.valid p  {
    color: #19b21f;
}

.password-control-container li.invalid,
.password-control-container li.invalid p {
    color: #f20000;
}

.password-control-container li.valid svg {
    fill: #19b21f;
}

.password-control-container li.invalid svg {
    fill: #f20000;
}

.form-animate {
    animation: fadeIn 0.5s, slideUp 0.7s;
}

.modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(24, 49, 83, 0.5);
    z-index: 3;
    overflow: auto;
}
  
.modal-content {
    background-color: #fefefe;
    margin: 1rem auto;
    border: 1px solid #888;
    width: 80%;
    max-width: 50rem;
    border-radius: 0.5rem;
}

@media (max-width: 600px) {
    .modal-content {
        width: calc(100% - 4px);
    }
}

.modal-header p {
    text-transform: uppercase;
}
  
.close {
    height: 30px;
    width: 30px;
    border-radius: 50%;
    border: none;
    outline: none;
    color: #fff;
    background-color: #003105;
    font-size: 28px;
    font-weight: 700;
    cursor: pointer;
	display: flex;
    align-items: center;
    justify-content: center;
}
  
.close:hover,
.modal-footer .close:hover {
    background-color: #e03131;
    transition: background-color 300ms ease;
}

.modal-footer .close {
    border: none;
    outline: none;
    color: #fff;
    background-color: #003105;
    font-size: 1rem;
    font-weight: 400;
    cursor: pointer;
    text-transform: uppercase;
    padding: 1rem;
    border-radius: 0.375rem;
    letter-spacing: 0.1em;
    height: auto;
    width: auto;
}

.modal.fadeIn .modal-content {
    animation: slideUp 0.3s ease-out;
}

.modal.fadeOut .modal-content {
    animation: fadeOut 0.2s ease, slideDown2 0.5s;
}

/*==========A N I M A C I O N E S =============*/
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

@keyframes fadeOut {
    from {
        opacity: 1;
    }
    to {
        opacity: 0;
    }
}

@keyframes slideDown {
    0% {
        transform: translate3d(0, -50px, 0);
    }
    100% {
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideDown2 {
    0% {
        transform: translate3d(0, 0, 0);
    }

    100% {
        transform: translate3d(0, 50px, 0);
    }
}

@keyframes slideUp {
    0% {
        transform: translate3d(0, 50px, 0);
    }
    100% {
        transform: translate3d(0, 0, 0);
    }
}

@keyframes slideRight {
    from {
      transform: translate3d(0, 0, 0);
    }
    to {
      transform: translate3d(50px, 0, 0);
    }
}

@keyframes zoomOut {
    0% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}

@keyframes zoomIn {
    0% {
        transform: scale(0.1);
    }
    100% {
        transform: scale(1);
    }
}

.loader {
    font-size: 5px;
    width: 1em;
    height: 1em;
    border-radius: 50%;
    position: relative;
    text-indent: -9999em;
    animation: mulShdSpin 1.1s infinite ease;
    transform: translateZ(0);
}

  @keyframes mulShdSpin {
    0%,
    100% {
      box-shadow: 0em -2.6em 0em 0em #ffffff, 1.8em -1.8em 0 0em rgba(255,255,255, 0.2), 2.5em 0em 0 0em rgba(255,255,255, 0.2), 1.75em 1.75em 0 0em rgba(255,255,255, 0.2), 0em 2.5em 0 0em rgba(255,255,255, 0.2), -1.8em 1.8em 0 0em rgba(255,255,255, 0.2), -2.6em 0em 0 0em rgba(255,255,255, 0.5), -1.8em -1.8em 0 0em rgba(255,255,255, 0.7);
    }
    12.5% {
      box-shadow: 0em -2.6em 0em 0em rgba(255,255,255, 0.7), 1.8em -1.8em 0 0em #ffffff, 2.5em 0em 0 0em rgba(255,255,255, 0.2), 1.75em 1.75em 0 0em rgba(255,255,255, 0.2), 0em 2.5em 0 0em rgba(255,255,255, 0.2), -1.8em 1.8em 0 0em rgba(255,255,255, 0.2), -2.6em 0em 0 0em rgba(255,255,255, 0.2), -1.8em -1.8em 0 0em rgba(255,255,255, 0.5);
    }
    25% {
      box-shadow: 0em -2.6em 0em 0em rgba(255,255,255, 0.5), 1.8em -1.8em 0 0em rgba(255,255,255, 0.7), 2.5em 0em 0 0em #ffffff, 1.75em 1.75em 0 0em rgba(255,255,255, 0.2), 0em 2.5em 0 0em rgba(255,255,255, 0.2), -1.8em 1.8em 0 0em rgba(255,255,255, 0.2), -2.6em 0em 0 0em rgba(255,255,255, 0.2), -1.8em -1.8em 0 0em rgba(255,255,255, 0.2);
    }
    37.5% {
      box-shadow: 0em -2.6em 0em 0em rgba(255,255,255, 0.2), 1.8em -1.8em 0 0em rgba(255,255,255, 0.5), 2.5em 0em 0 0em rgba(255,255,255, 0.7), 1.75em 1.75em 0 0em #ffffff, 0em 2.5em 0 0em rgba(255,255,255, 0.2), -1.8em 1.8em 0 0em rgba(255,255,255, 0.2), -2.6em 0em 0 0em rgba(255,255,255, 0.2), -1.8em -1.8em 0 0em rgba(255,255,255, 0.2);
    }
    50% {
      box-shadow: 0em -2.6em 0em 0em rgba(255,255,255, 0.2), 1.8em -1.8em 0 0em rgba(255,255,255, 0.2), 2.5em 0em 0 0em rgba(255,255,255, 0.5), 1.75em 1.75em 0 0em rgba(255,255,255, 0.7), 0em 2.5em 0 0em #ffffff, -1.8em 1.8em 0 0em rgba(255,255,255, 0.2), -2.6em 0em 0 0em rgba(255,255,255, 0.2), -1.8em -1.8em 0 0em rgba(255,255,255, 0.2);
    }
    62.5% {
      box-shadow: 0em -2.6em 0em 0em rgba(255,255,255, 0.2), 1.8em -1.8em 0 0em rgba(255,255,255, 0.2), 2.5em 0em 0 0em rgba(255,255,255, 0.2), 1.75em 1.75em 0 0em rgba(255,255,255, 0.5), 0em 2.5em 0 0em rgba(255,255,255, 0.7), -1.8em 1.8em 0 0em #ffffff, -2.6em 0em 0 0em rgba(255,255,255, 0.2), -1.8em -1.8em 0 0em rgba(255,255,255, 0.2);
    }
    75% {
      box-shadow: 0em -2.6em 0em 0em rgba(255,255,255, 0.2), 1.8em -1.8em 0 0em rgba(255,255,255, 0.2), 2.5em 0em 0 0em rgba(255,255,255, 0.2), 1.75em 1.75em 0 0em rgba(255,255,255, 0.2), 0em 2.5em 0 0em rgba(255,255,255, 0.5), -1.8em 1.8em 0 0em rgba(255,255,255, 0.7), -2.6em 0em 0 0em #ffffff, -1.8em -1.8em 0 0em rgba(255,255,255, 0.2);
    }
    87.5% {
      box-shadow: 0em -2.6em 0em 0em rgba(255,255,255, 0.2), 1.8em -1.8em 0 0em rgba(255,255,255, 0.2), 2.5em 0em 0 0em rgba(255,255,255, 0.2), 1.75em 1.75em 0 0em rgba(255,255,255, 0.2), 0em 2.5em 0 0em rgba(255,255,255, 0.2), -1.8em 1.8em 0 0em rgba(255,255,255, 0.5), -2.6em 0em 0 0em rgba(255,255,255, 0.7), -1.8em -1.8em 0 0em #ffffff;
    }
  }

.btn-2.btn--swal {
    background-color: #28a745;
    color: #fff;
    cursor: pointer;
    font-size: 0.875rem;
    line-height: 1.4;
    transition: background-color 0.5s;
}

.btn-2.btn--swal:hover {
    background-color: #269c42;
}

.welcome-section {
    animation: fadeIn ease 2s;
    animation-iteration-count: 1;
    animation-fill-mode: forwards;
}

.fa-searcher-bg {
    background: #e0ebeb;
    background: #fff;
}

.fa-searcher-layout {
    max-width: 75rem;
    margin: auto;
    padding: 1rem;
    gap: 1rem;
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr 1fr;
	padding-top: 0.5rem;   /*agregado*/
}

.fa-searcher-layout button {
    /*box-shadow: rgba(0, 0, 0, 0.20) 0px 3px 2px, rgba(0, 0, 0, 0.20) 0px 3px 2px;*/
    transition: transform 300ms ease;
    padding: 0.75rem 2rem;
}

.fa-searcher-layout button:hover {
    transform: translate3d(0px, -5px, 0px);
    transition: transform 300ms ease;
}

.fa-input {
    margin-top: 4px;
    border: 1px solid #bec6db;
    border-radius: 16px;
    border: 1px solid #bed4db;
    border: 1px solid #b9d5de;
}

@media (max-width: 500px) {
    .fa-searcher-layout {
        grid-template-columns: 1fr;
        /*gap: 12px;*/
		gap: 8px;
    }
}

@media (min-width: 501px) and (max-width: 850px) {
    .fa-searcher-layout {
        grid-template-columns: 1fr 1fr;
    }
}

.contenido {
    transition: 0.5s; /* Transición suave para el efecto */
}

.menu-activo.contenido {
    /* Efecto de sombra cuando el menú está activo */
    filter: brightness(50%);
	pointer-events: none;
}

@media (max-width: 650px) {
    .fa-table-container th {
        display: none;
    }

    .fa-table-container td,
    .fa-table-container tbody th {
        display: flex;
        justify-content: space-between;
		gap: 1rem;
    }

    .fa-table-container tbody th:first-child {
        padding-top: 1rem !important;
        font-size: 0.95rem;
        display: flex;
        justify-content: center;
        background: rgb(223 244 233 / 75%);
        background: #a8d5ba;
        color: #00263e;
    /* color: #446D6D;*/
    }

    .fa-table-container td:last-child {
        padding-bottom: 1rem!important;
    }

    .fa-table-container td::before,
    .fa-table-container tbody th::before {
        font-weight: 700;
        text-transform: capitalize;
    }
    /*
    .fa-table-container tbody th:nth-of-type(1)::before {
        content: "nombre";
    }
    */
    .fa-table-container td:nth-of-type(1)::before {
        content: "telefono";
    }
    .fa-table-container td:nth-of-type(2)::before {
        content: "direccion";
    }

    .btn-1.btn-map {
        width: 90%;
        padding: 0.75rem 2rem;
        margin: 0 auto;

        background: #fff;
        color: #5F8E90;
        border: 1px solid #5F8E90;
        border-radius: 4px;
        font-weight: 600;
    }
}

.btn-location {
    top: 15%;
    background-color: #5F8E90;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    border: 0;
    outline: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
}

.btn-gotolist  {
	background-color: #5f6d90;
    color: #fff;
    font-weight: 600;
    font-size: 1rem;
    border: 0;
    outline: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    top: 25%;
}

@media (max-width: 500px) {
	.input-group-wrapper input, .input-group-wrapper textarea, .input-group-wrapper select,
	.login-form button.btn-1 {
		height: 48px;
	}
	.eye-button {
		height: 48px;
		width: 48px;
	}
	.input-label.select-label.fa-label {
		display: none;
	}
}

.account__wrapper {
	display: flex;
	flex-direction: column;
	width: 100%;
}

.account__btn {
	background-color: #fff; 
	border: 1px solid #446d6d1a;
	border-radius: 20px; 
	padding: 2rem; 
	margin-bottom: 2rem; 
	font-size: 1.5rem; 
	color: #446D6D; 
	font-weight: 700; 
	cursor: pointer; 
	outline: none; 
	text-align: left;
	transition: all 0.3s cubic-bezier(.25,.8,.25,1);
	display: flex;
    justify-content: space-between;
    align-items: center;
}

.account__btn:hover {
	box-shadow: rgba(0, 0, 0, 0.1) 0px 4px 12px;
}

input:disabled,
select:disabled {
    background-color: #f0f0f0; 
    border: 1px solid #ccc; 
    color: #999; 
    cursor: not-allowed; 
    opacity: 0.7; 
    transition: background-color 0.3s ease, color 0.3s ease; 
}

input:disabled:hover,
select:disabled:hover {
    background-color: #e0e0e0; 
    color: #777; 
}


button#buscar:disabled {
    background-color: #cccccc; 
    color: #666666; 
    cursor: not-allowed; 
    opacity: 0.6; 
}

button:disabled {
    opacity: 0.5; /* Para hacer el botón visualmente más apagado */
    cursor: not-allowed; /* Cambia el cursor para indicar que no es clicable */
}

.fa-result-layout {
	display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.map__container {
		padding: 0 10px;
}

@media (max-width: 650px) {
	.fa-result-layout {
		align-items: baseline;
		flex-direction: column;
		justify-content: center;
		gap: 1rem;
	}
}

.icono-jeringa {
	transform: rotate(45deg)
}

.iw_layout {
	background-color: white;
    padding: 15px;
    border-radius: 8px;
    color: #00263e;
    font-family: 'Source Sans 3';
    font-weight: 700;
    font-size: 0.95rem;
}

.iw_layout h2 {
	margin: auto;
    margin-bottom: 12px;
    width: fit-content;
}

.iw_layout a {
	display: inline-block;
    padding: 10px 15px;
    background-color: #c9e0e8;
    color: #00263e;
    text-decoration: none;
    border-radius: 5px;
    margin-top: 10px;
}

.gm-ui-hover-effect {
    opacity: .6;
    border-radius: 10rem;
    background: #e4e7f0 !important;
}

.swal2-title {
    line-height: 1.2;
}

