.navbar-button {
    border: 1px solid #41ACE7;
    border-radius: 2.5rem;
    color: #41ACE7;
    padding: .3rem 1rem;
}

img {
    max-width: 100%;
}

:root {
    --primary: #41ACE7;
    --secondary: #1666AE;
}

*,
html,
body,
h1,
h2,
h3,
h4,
h5 {
    font-family: 'Montserrat', sans-serif !important;
}

.text-primary {
    color: var(--primary);
}

.text-secondary {
    color: var(--secondary);
}

.grid-2 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 768px) {
    .grid-2 {
        grid-template-columns: 1fr;
    }
}

.grid-4 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 768px) {
    .grid-4 {
        grid-template-columns: 1fr;        
    }
}

.grid-3 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width: 768px) {
    .grid-3 {
        grid-template-columns: 1fr;
    }
}

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

.text-w {
    color: #fff;
}

.text-bold {
    font-weight: bold;
}

.list {
    list-style: none;
    padding: 0;
}

.list li {
    padding-left: 1.3em;
}

.list li:before {
    content: "\ea46";
    font-family: boxicons !important;
    display: inline-block;
    margin-left: -1.3em;
    width: 1.3em;
}

.list-icon-primary li:before {
    color: var(--primary);
}

.bg-gris {
    background-color: #f5f5f5;
}

.bg-secondary {
    background-color: var(--secondary);
    background-image: linear-gradient(to right top, #1666ae, #1e77be, #2888cd, #349adc, #41acea);
    color: #fff;
}

.bg-primary {
    background-color: var(--primary);
    color: #fff;
}

.bg-secondary h3 {
    color: #fff;
}

.uk-accordion-title {
    font-size: 1rem !important;
}

.uk-accordion-content {
    font-size: .9rem !important;
}

.collapse li {
    padding-bottom: 1rem;
    border-bottom: 1px solid #eaeaea;
}

.collapse li:last-child {
    border-bottom: none;
}

.gap-md {
    gap: 2rem;
}

@media (max-width: 768px) {
    .gap-md {
        gap: 0;
    }

    .collapse li:last-child {
        border-bottom: 1px solid #eaeaea;
    }
}

.footer_app {
    background-color: var(--secondary) !important;
    padding: 2rem 0;
    color: #fff;
}

.footer_app-description {
    font-weight: 300;
}

.footer_app li {
    font-weight: 300;
    color: #fff;
}

.footer_app a {
    color: #fff;
}

.footer_app a:hover {
    color: #fff;
}

.footer_app-subtitle {
    color: #fff;
    font-weight: bold;
    letter-spacing: .3rem;
    margin: 0;
}

.footer-link-icon {
    display: grid;
    grid-template-columns: 2rem 1fr;
    gap: .5rem;
}

.footer-link-icon-title {
    font-size: .8rem;
}

.footer-icon-link {
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.btn-rounded {
    border-radius: .4rem !important;
}

.btn-primary {
    border-color: var(--primary) !important;
    color: var(--primary) !important;
}

.unline-rounded {
    border-radius: .4rem !important;
}

.uk-notification {
    border-radius: .4rem !important;
}

.uk-notification-message {
    border-radius: .2rem !important;
    padding: .5rem .8rem !important;
    font-size: .9rem !important;
    background-color: #fff;
    background-color: var(--primary);
    color: #fff !important;
}

.uk-notification-message-danger {
    background-color: #f0506e !important;
}

.uk-notification-message-primary {
    background-color: var(--primary) !important;
}

.uk-notification-message-success {
    background-color: #4caf50 !important;
}

.uk-notification-message-warning {
    background-color: #ff9800 !important;
}

.uk-alert {
    border-radius: .3rem !important;
}

.uk-section {
    padding-top: 45px !important;
    padding-bottom: 45px !important;
}

.btn-outline {
    background-color: transparent !important;
    border: 2px solid #fff !important;
}

.banner-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.banner {
    padding: 6rem 0;
    background-size: cover;
    background-position: center;
}

.banner-sm {
    padding: 3rem 0;
}

.banner-title {
    font-weight: bold;
    margin: 0;
}

.banner-subtitle {
    margin: 0;
    font-size: 2.5rem;
}

.banner-description {
    font-size: 1.5rem;
    margin: 0;
    padding-bottom: 1rem;
}

.search-doc-grid {
    display: grid;
    grid-template-columns: 90px 3fr 170px;
    gap: 1rem;
}

.card-item {
    padding: 1rem;
    background-color: #fff;
    border-radius: .4rem;
}

@media (max-width: 768px) {
    .button-text-search {
        display: none;
    }

    .search-doc-grid {
        grid-template-columns: 3fr 1fr;
    }

    .search-doc-btn-label {
        display: none;
    }
}

.card-rounded {
    border-radius: .4rem !important;
}

.card-img {
    border-top-left-radius: .4rem !important;
    border-top-right-radius: .4rem !important;
}

.center-y {
    display: flex;
    align-items: center;
    justify-content: center;
}

.whatsapp {
    cursor: pointer;
    position: fixed;
    bottom: 0.8rem;
    right: 0.8rem;
    z-index: 999999;
    background-color: #25d366;
    color: #fff;
    height: 50px;
    width: 50px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    border-radius: 50%;
}

.whatsapp::before {
    content: "";
    position: absolute;
    border-radius: 50%;
    padding: 15px;
    border: 5px solid #25d366;
    opacity: 0.75;
    -webkit-animation-name: pulse-border;
    animation-name: pulse-border;
    -webkit-animation-duration: 1.5s;
    animation-duration: 1.5s;
    -webkit-animation-timing-function: ease-out;
    animation-timing-function: ease-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}

.whatsapp svg {
    width: 26px !important;
}

@-webkit-keyframes pulse-border {
    0% {
        padding: 15px;
        opacity: 0.75;
    }

    75% {
        padding: 30px;
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

@keyframes pulse-border {
    0% {
        padding: 15px;
        opacity: 0.75;
    }

    75% {
        padding: 30px;
        opacity: 0;
    }

    100% {
        opacity: 0;
    }
}

.region__img {
    height: 250px !important;
    object-fit: cover;
    filter: brightness(70%);
}

.brand-footer {
    display: grid;
    grid-template-columns: 3fr 1fr;
    padding: 1rem;
    gap: 1rem;
}

.brand-footer a {
    color: #fff;
}

.brand-footer-container {
    background-color: rgb(18, 85, 143);
    color: #fff;
}

@media (max-width: 768px) {
    .brand-footer {
        grid-template-columns: 1fr;
    }
}
@media (max-width: 640px) {
    .brand-footer-container {
      height: 120px;
    }
}

/**
Apartado de servicios
*/
.btn-servicios {
    background-color: white;
    color: var(--primary);
    border-color: var(--primary);
}

.btn-servicios:hover {
    transition-duration: 10s;
    transform: scale(1.1);

}

.servicios-card-border {
    border: 1.5px solid var(--primary);
    border-radius: 5px 5px;
}

div.servicios-card-border:hover {
    border: 2.5px solid var(--secondary);
    transition-property: border;
    transition-duration: 0.2s;
}

/**
text-captions para la web
*/
.text-caption,
.text-caption-blue {
    font-size: 0.8rem;
    font-weight: 400;
    word-spacing: 4hv;
    letter-spacing: 0.1vh;
    text-align: center;
}

.text-caption-blue {
    color: #24a0ed;
}

/**
cards de busqueda de dni y ruc
*/
.card-item-busqueda {
    width: 60vw;
    margin: 0 auto;
}

@media (max-width:1100px) {
    .card-item-busqueda {
        width: 80vw;
    }
}

@media (max-width: 900px) {
    .card-item-busqueda {
        width: 90%;
    }
}

.icons-step-animation {
    animation: wiggle;
    animation-duration: 3s;
}

@keyframes wiggle {

    0%,
    7% {
        transform: rotateZ(0);
    }

    15% {
        transform: rotateZ(-15deg);
    }

    20% {
        transform: rotateZ(10deg);
    }

    25% {
        transform: rotateZ(-10deg);
    }

    30% {
        transform: rotateZ(6deg);
    }

    35% {
        transform: rotateZ(-4deg);
    }

    40%,
    100% {
        transform: rotateZ(0);
    }
}


@media (max-width : 768px) {
    .banner-subtitle-movil {
        font-size: 1.5rem
    }

    .banner-description-movil {
        font-size: 0.9rem;
    }

}


.main-navbar {
    background-color: white !important;
}

.main-navbar>ul>li>a {
    color: #9A9995 !important;
}


/**
Códigos de error de sunat
*/

.btn-codigos-error {
    color: #EE4308;
    border-color: #EE4308;
    background-color: white;
}

.btn-codigos-error:hover {
    background-color: #F6C2B0;
    border-color: #EE4308;
    color: #EE4308;
}

.text-r {
    color: #EE4308;
}

.text-o {
    color: #DC990B
}


.global-spinner-container {
    background: radial-gradient(rgba(20, 20, 20, .8), rgba(0, 0, 0, .8));
    z-index: 9999999999;
    width: 100%;
    height: 100%;
    position: fixed;
    overflow: hidden;
    justify-content: center;
    align-content: center;
    vertical-align: middle;
    top: 0;
    right: 0;
}

.global-spinner {
    position: relative;
    align-self: center;
}


.grid-3-service {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

@media (max-width : 678px) {
    .grid-3-service img {
        width: 64px;
    }

    .grid-3-service .uk-card {
        width: 100px;
    }

    .grid-3-service .btn-servicios {
        font-size: 0.6rem;
        width: 100%;
        line-height: 0.8rem;
    }

    .grid-3-service .uk-button {
        padding: 5px;
    }

    .grid-3-service .uk-card-body {
        padding: 5px;
    }

    .grid-3-service {
        gap: 0.5rem !important
    }
}

@media (max-width : 300px) {
    .grid-3-service {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}



/**
Distritos
*/

.text-title-distritos {
    font-weight: 700;
    font-size: 1.8rem;
    color: white;
}

.distrito-nombre {
    font-weight: 600;
    letter-spacing: 0.2em;
    font-size: 0.9rem;
    color: white;
    text-align: center;
}



/**
Cards Planes
*/
.whatsapp-component {
    background-color: #202c33;
    border-radius: .5rem;
    width: 600px;
    height: 600px;
    position: fixed;
    right: 60px;
    bottom: 60px;
    visibility: hidden;
    transition: .2s;
    opacity: 0;
    transform: scale(0.5);

    /* El chat box aun se oculta por que no se culmino */
    /* display: none !important; */
}

@media (max-width: 768px) {
    .whatsapp-component {
        bottom: 80px;
        right: 0;
        width: 100%;
        border-radius: 0;
    }
}

.ws-box-open {
    visibility: visible;
    opacity: 1;
    transform: scale(1);
    z-index: 10;
}

.whatsapp-component__header {
    background-color: #202c33;
    height: 60px;
    width: 100%;
    display: grid;
    grid-template-columns: 60px 1fr;
    gap: .8rem;
    border-top-left-radius: .5rem;
    border-top-right-radius: .5rem;
}

.whatsapp-component__logo {
    display: flex;
    align-items: center;
    margin-left: 15px;
}

.whatsapp-component__logo img {
    border-radius: 50%;
}

.whatsapp-component__body {
    background-color: #111b21;
    height: 480px;
    width: 100%;
    background-position: relative;
}

.whatsapp-messages {
    max-height: 450px;
    overflow-y: auto;
    overflow-x: hidden;
}

.whatsapp-component__actions {
    background-color: #202c33;
    height: 60px;
    width: 100%;
    border-bottom-left-radius: .5rem;
    border-bottom-right-radius: .5rem;
    display: grid;
    grid-template-columns: 60px 1fr 60px;
    gap: .5rem;
    position: relative;
    z-index: 999;
}

.whatsapp-component-input-logo {
    display: flex;
    align-items: center;
}

.whatsapp-component__actions img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    margin-left: 15px;
}

.whatsapp-component__actions input {
    background-color: #293841;
    border: none;
    color: white;
    width: 100%;
    height: 30px;
    border-radius: .5rem;
    margin-top: 13px;
    padding-left: 10px;
    padding-right: 10px;
    box-sizing: border-box;
}

.whatsapp-component__body-img {
    background-repeat: repeat;
    height: 100%;
    width: 100%;
    opacity: 0.1;
    position: absolute;
}

.whatsapp-component__actions button {
    background-color: #202c33;
    border: none;
    color: white;
    width: 100%;
    height: 30px;
    border-radius: .5rem;
    margin-top: 13px;
}

.whatsapp-component__name {
    display: flex;
    align-items: center;
    color: #fff;
    transform: translateY(5px);
}

.ws-name {
    line-height: .3rem;
}

.ws-online {
    opacity: .6;
    font-size: .8rem;
}

.whatsapp-messages {
    display: grid;
    gap: .4rem;
    padding: 1rem;
    position: relative;
    z-index: 99;
}

.whatsapp-message {
    background-color: #202c33;
    display: inline-block;
    padding: 10px;
    color: #fff;
    border-radius: .2rem;
}

.whatsapp-message-me {
    float: right;
    background-color: #005c4b;
}