@import url('https://fonts.googleapis.com/css2?family=Maven+Pro:wght@400;600&family=Work+Sans:wght@300;400&display=swap');
*,p{
  font-family: 'Work Sans', sans-serif;
}
h1,h2,h3,h4,h5,h6,a{
  font-family: 'Maven Pro', sans-serif;
}
html,
*,
a,
input{
  -webkit-font-smoothing: antialiased;
  -moz-font-smoothing: antialiased;
  -o-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-weight: 400;
  line-height: 1.3;
}
.caClearfix::after{
  content: "";
  clear: both;
  display: table;
}
html{
  font-size: 14px;
}
/*** The new CSS Reset - version 1.4.5 (last updated 13.1.2022) ***/

/*
  Remove all the styles of the "User-Agent-Stylesheet", except for the 'display' property
  - The "symbol *" part is to solve Firefox SVG sprite bug
 */
*:where(:not(iframe, canvas, img, svg, video):not(svg *, symbol *)) {
  all: unset;
  display: revert;
}
*{
	scroll-behavior: smooth;
}
/* Preferred box-sizing value */
*,
*::before,
*::after {
  box-sizing: border-box;
}

/* Reapply the pointer cursor for anchor tags */
a {
  cursor: revert;
}

/* Remove list styles (bullets/numbers) */
ol, ul, menu {
  list-style: none;
}

/* For images to not be able to exceed their container */
img {
  max-width: 100%;
  display: block;
  width: 100%;
}

/* removes spacing between cells in tables */
table {
  border-collapse: collapse;
}

/* revert the 'white-space' property for textarea elements on Safari */
textarea {
  white-space: revert;
}

/* fix the feature of 'hidden' attribute.
   display:revert; revert to element instead of attribute */
:where([hidden]){
  display:none;
}

/* revert for bug in Chromium browsers
   - fix for the content editable attribute will work properly. */
:where([contenteditable]){
  -moz-user-modify: read-write;
  -webkit-user-modify: read-write;
  overflow-wrap: break-word;
  -webkit-line-break: after-white-space;
}

/* apply back the draggable feature - exist only in Chromium and Safari */
:where([draggable="true"]) {
  -webkit-user-drag: element;
}
label{
    display: block;
    font-family: 'Maven Pro', sans-serif;
    font-weight: 600;
    font-size: .9rem;
    margin-bottom: 0.2rem;
}
input{
        box-shadow: none;
    /* inherit font & color from ancestor */
    color: inherit;
    font: inherit;
    /* Normalize `line-height`. Cannot be changed from `normal` in Firefox 4+. */
    line-height: normal;
    /* Corrects font smoothing for webkit */
    -webkit-font-smoothing: inherit;
    -moz-osx-font-smoothing: inherit;
    /* Corrects inability to style clickable `input` types in iOS */
    -webkit-appearance: none;
    /* Remove excess padding and border in Firefox 4+ */
    display: block;
    width: 100%;
    font-size: 1rem;
    padding: 0.6rem 0.8rem;
    box-sizing: border-box;
    border: 1px solid #d3d3d3;
    border-radius: 5px;
    font-family: 'Work Sans', sans-serif;
}

[data-splitting] .char{
  opacity: 0;
}
.caWrapper{
    width: 90%;
    margin: auto;
}
.caLogin{
  position: fixed;
  width: 100%;
  height: 100vh;
  left: 0;
  top: 0;
/*  background-color: #064cb2; */
}
.caLogin .caContent {
    width: 90%;
    margin: auto;
    box-shadow: 0 10px 40px rgba(0,0,0,0.3);
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    left: 0;
    right: 0;
    max-width: 30rem;
    transition: .3s ease all;
}
.caLogin .caContent > div:first-of-type{
  background-color: #f6f8fa;
  padding: 2rem;
}
.caLogin .caContent > div:last-of-type{
  display: none;
}
.caLogin .caContent > div:first-of-type img{
    width: 9rem;
    margin-bottom: 3rem;
    margin-top: 1rem;
}
.caLogin .caContent h3{
    font-weight: 600;
    font-size: 1.6rem;
    letter-spacing: -1px;
}
.caLogin .caContent p{
    font-size: 1.1rem;
    color: #4d4d4d;
}
.caLogin .caForm{
    margin: 2rem 0 0 0;
}
.caLogin .caForm > div{
  margin-bottom: 1rem;
}

.caLogin .btnSubmit{
    width: 100%;
    text-align: center;
    box-shadow: none;
    color: inherit;
    font: inherit;
    line-height: normal;
    -webkit-font-smoothing: inherit;
    -moz-osx-font-smoothing: inherit;
    -webkit-appearance: none;
    display: block;
    font-family: 'Maven Pro', sans-serif;
    font-weight: 600;
  /*  background-color: #db9201; */
    color: #FFF;
    box-sizing: border-box;
    padding: 0.7rem 0;
    border-radius: 6px;
    margin-top: 1.7rem;
    cursor: pointer;
    transition: .3s ease all;
}
.caLogin .btnSubmit:hover{
    filter: saturate(0.6);
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}
.caLogin small{
    font-family: 'Work Sans', sans-serif;
    font-size: .8rem;
    display: block;
    text-align: center;
    margin-top: 4rem;
    opacity: .5;
}
span.error{
    font-family: 'Work Sans', sans-serif;
    font-size: .8rem;
    display: block;
    letter-spacing: -.5px;
    font-weight: 500;
    line-height: 1.6;
    opacity: .7;
    color: red;
    font-weight: 600;
}
.object-container {
    width: 100%;
    height: calc(100vh - 5.7rem);
    background-color: #525659;
}
.object-container object{
display: block;
    width: 90%;
    margin: auto;
    height: 100%;
}
.caQuit {
  font-family: 'Maven Pro', sans-serif;
  font-weight: 600;
  letter-spacing: -.5px;
  /*background-color: #db9201; */
  border-radius: 6px;
  display: block;
  color: #FFF;
  padding: 0.5rem 2rem;
  font-size: 1.1rem;
  float: right;
  cursor: pointer;
  transition: .3s ease all;
}
.caSign {
    text-indent: -9999px;
    font-weight: 600;
    letter-spacing: -.5px;
  /*  background-color: #064cb2; */
    border-radius: 10px;
    display: block;
    color: #FFF;
    padding: 0.5rem 1rem;
    font-size: 1.1rem;
    float: left;
    cursor: pointer;
    background-repeat: no-repeat;
    background-image: url(../img/edit.svg);
    background-size: 50%;
    background-position: 50% 50%;
    width: 36px;
    height: 36px;
    transition: .3s ease all;
}
.caQuit:hover,
.caSign:hover {
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
    filter: saturate(0.6);
  }
header {
    overflow: hidden;
    width: 100%;
    padding: 1.5rem 0;
    height: 5.57rem;
    box-sizing: border-box;
}
.caSignatureSpace{
    background-color: #f7f7f7;
    width: 100%;
    height: 130px;
    margin-top: 0.5rem;
    border: 1px solid #d8d8d8;
    border-radius: 5px;
}

@media screen and (min-width: 768px) {
  html{
    font-size: 15px;
  }
  .caLogin .caContent {
      max-width: 60rem;
      display: flex;
  }
.caLogin .caContent > div:last-of-type {
    display: block;
    width: calc(100% - 25rem);
    position: relative;
    background: -moz-linear-gradient(201deg, rgb(0 0 0 / 50%) 0%, rgb(0 0 0 / 20%) 30%, rgb(246 81 8 / 10%) 70%, rgb(246 81 8 / 50%) 100%);
    background: -webkit-linear-gradient(201deg, rgb(0 0 0 / 50%) 0%, rgb(0 0 0 / 20%) 30%, rgb(246 81 8 / 10%) 70%, rgb(246 81 8 / 50%) 100%);
    background: linear-gradient(201deg, rgb(0 0 0 / 50%) 0%, rgb(0 0 0 / 20%) 30%, rgb(246 81 8 / 10%) 70%, rgb(246 81 8 / 50%) 100%);
    filter: progid:DXImageTransform.Microsoft.gradient(startColorstr="#000000",endColorstr="#ffffff",GradientType=1);
}
  .caLogin .caContent > div:last-of-type img{
    margin: auto;
    /*width: 85%;*/
    object-fit: cover;
    height: 100%;
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
  }
  .caLogin .caContent > div:first-of-type {
    padding: 3rem;
    width: 25rem;
  }
}

@media screen and (min-width: 1024px) {
  html{
    font-size: 16px;
  }
  .caLogin .caContent {
    box-shadow: 0 10px 60px rgba(0,0,0,0.4);
  }
  .caLogin .caContent > div:first-of-type img {
    width: 8rem;
    margin-bottom: 2rem;
    margin-top: 0;
  }
}







/**************************\
  Basic Modal Styles
\**************************/

.modal {
  font-family: 'Work Sans', sans-serif;
}
.modal p {
    line-height: 1.2;
    font-size: 1.1rem;
    letter-spacing: -.5px;
}

.modal__overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0,0,0,0.6);
  display: flex;
  justify-content: center;
  align-items: center;
}

.modal__container {
    background-color: #fff;
    padding: 30px;
    max-width: 500px;
    max-height: 100vh;
    border-radius: 4px;
    overflow-y: auto;
    box-sizing: border-box;
    width: 90%;
}

.modal__header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.modal__title {
  margin-top: 0;
  margin-bottom: 0;
  font-weight: 600;
  font-size: 1.5rem;
  line-height: 1.25;
 /* color: #00449e; */
  box-sizing: border-box;
}

.modal__close {
  background: transparent;
  border: 0;
  cursor: pointer;
  display: block;
  transition: .3s ease all;
}
.modal__close:hover{
 -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.modal__header .modal__close:before { 
  content: "\2715";
    background: #f0f0f0;
    height: 2rem;
    display: block;
    line-height: 2;
    width: 2rem;
    text-align: center;
    border: 1px solid #d0d0d0;
    border-radius: 100rem;
    color: #646464;
    transition: .3s ease all;
}
.modal__header .modal__close:hover:before {
    background: #5b5b5b;
    border: 1px solid #5b5b5b;
    color: #FFF;
}
.modal__content {
  margin-top: .5rem;
  margin-bottom: 2rem;
  line-height: 1.5;
  color: rgba(0,0,0,.8);
}

.modal__btn {
font-size: 1rem;
    padding: 0.7rem 2rem;
    background-color: #e6e6e6;
    color: rgba(0,0,0,.8);
    border-radius: 0.25rem;
    border-style: none;
    border-width: 0;
    cursor: pointer;
    -webkit-appearance: button;
    text-transform: none;
    overflow: visible;
    line-height: 1.15;
    margin: 0;
    will-change: transform;
    -moz-osx-font-smoothing: grayscale;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
    -webkit-transform: translateZ(0);
    transform: translateZ(0);
    transition: -webkit-transform .25s ease-out;
    transition: transform .25s ease-out;
    transition: transform .25s ease-out,-webkit-transform .25s ease-out;
    font-family: 'Maven Pro', sans-serif;
    font-weight: 600;
    border-radius: 6px;
}

.modal__btn:focus, .modal__btn:hover {
  -webkit-transform: scale(1.05);
  transform: scale(1.05);
}

.modal__btn-primary {
  /* background-color: #00449e; */
  color: #fff;
  margin-left: .5rem;
}
.caLinks {
    display: inline-block;
    position: relative;
    transition: .3s ease all;
    background-color: #efefef;
    padding: 0 2rem;
    border-radius: 5px;
    border: 1px solid #cdcdcd;
    margin-top: 1rem;
}
.caLinks img {
    position: absolute;
    width: 1.2rem;
    top: 0;
    right: 2rem;
    bottom: 0;
    margin: auto;
}

.caLinks span{
    display: block;
    padding: 0.5rem 2rem 0.5rem 0;
    color:#2a2a2a;
}
.caLinks:hover{
  opacity: .6;
    text-decoration: none;
}

/**************************\
  Demo Animation Style
\**************************/
@keyframes mmfadeIn {
    from { opacity: 0; }
      to { opacity: 1; }
}

@keyframes mmfadeOut {
    from { opacity: 1; }
      to { opacity: 0; }
}

@keyframes mmslideIn {
  from { transform: translateY(15%); }
    to { transform: translateY(0); }
}

@keyframes mmslideOut {
    from { transform: translateY(0); }
    to { transform: translateY(-10%); }
}

.micromodal-slide {
  display: none;
}

.micromodal-slide.is-open {
  display: block;
}

.micromodal-slide[aria-hidden="false"] .modal__overlay {
  animation: mmfadeIn .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.micromodal-slide[aria-hidden="false"] .modal__container {
  animation: mmslideIn .3s cubic-bezier(0, 0, .2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__overlay {
  animation: mmfadeOut .3s cubic-bezier(0.0, 0.0, 0.2, 1);
}

.micromodal-slide[aria-hidden="true"] .modal__container {
  animation: mmslideOut .3s cubic-bezier(0, 0, .2, 1);
}

.micromodal-slide .modal__container,
.micromodal-slide .modal__overlay {
  will-change: transform;
}

.modal__footer{
  text-align: right;
}

.modal {
  display: none;
}

.modal.is-open {
  display: block;
}



/*Estilos animación error 403
===============================*/
.caAnimationContainer{
    width: 100%;
    height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10;
    position: relative;
}

.caError403{
    background-color: #064cb2;
    width: 100%;
    height: 100%;
    overflow: hidden;
}
.caError403 .caNumber span {
    font-weight: bolder;
    color: #fff;
    font-size: 8rem;
    font-family: 'Montserrat', sans-serif;
    position: absolute;
    display: block;
    text-align: center;
    width: 100%;
    top: 80px;
    letter-spacing: 10px;
}
.caError403 .caLock{
    transform: scale(.4);
}
.caError403 .caNumber{
    position: relative;
    margin-top: -80px;
}
.caError403 .caLock .caHead {
    background-color: transparent;
    border: 35px solid #4bbfe8;
    width: 140px;
    height: 180px;
    border-radius: 100rem;
    margin: auto;
    margin-bottom: -100px;
    position: relative;
    z-index: 1;
}
.caError403 .caLock .caBody{
    background-color: #FFF;
    border-radius: 100rem;
    width: 200px;
    height: 200px;
    z-index: 5;
    position: relative;
    margin: auto;
}
.caError403 .caLock .caBody i,
.caError403 .caLock .caBody b{
    background-color: #414042;
}
.caError403 .caLock .caBody .caEyes{
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 35%;
    width: 55%;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    animation: eyes 2s ease-in-out infinite;
}
.caError403 .caLock .caEyes i{
    display: block;
    width: 25px;
    height: 25px;
    border-radius: 100rem;
    position: relative;
}
.caError403 .caLock .caEyes i:first-of-type{
    transform: rotate(45deg);
    animation: eye01 3s ease-in-out infinite alternate;
}
.caError403 .caLock .caEyes i:last-of-type{
    transform: rotate(-45deg);
    animation: eye02 3s ease-in-out infinite alternate;
}
.caError403 .caLock .caEyes i::before{
    content: "";
    display: block;
    width: 15px;
    height: 15px;
    border-radius: 100rem;
    background-color: #FFF;
    top: -3px;
    left: 0;
    right: 0;
    margin: auto;
    position: absolute;
}
.caError403 .caLock .caEyes i::after{
    content: "";
    display: block;
    width: 100%;
    height: 6px;
    background-color: #FFF;
    top: 0;
    left: 0;
    right: 0;
    margin: auto;
    position: absolute;
}
.caError403 .caLock .caMouth{
    display: block;
    width: 30px;
    height: 55px;
    border-radius: 100rem;
    position: absolute;
    left: 0;
    right: 0;
    margin: auto;
    top: 50%;
    animation: talk .2s ease-in-out infinite alternate;
}
.caError403 .caLock .caMouth::after{
    content: "";
    display: block;
    position: absolute;
    top: 0;
    width: 40px;
    height: 40px;
    background-color: #414042;
    left: -5px;
    border-radius: 100rem;
}
.caError403 .caKey{
    position: relative;
    width: 80px;
    margin: auto;
    margin-top: -65px;
    margin-bottom: 20px;
}
.caError403 .caMessage h5{
    text-align: center;
    color: #FFF;
    font-size: 1.3rem;
}
.caError403 .caMessage h5 b{
    font-weight: 600;
    display: block;
    text-align: center;
}
.caError403 .caReturn {
    font-weight: 600;
    font-size: 1.3rem;
    background: transparent;
    color: #FFF;
    border: 2px solid #FFF;
    display: block;
    width: 14rem;
    text-align: center;
    border-radius: 100rem;
    padding: 0.9rem 0 1rem 0;
    margin: auto;
    margin-top: 3rem;
    transition: .3s ease all;
}
.caError403 .caReturn:hover {
    background-color: #FFF;
    color: #064cb2;
    -webkit-transform: scale(1.05);
    transform: scale(1.05);
}
.caErrorTxt {
    position: absolute;
    font-size: 70px;
    font-weight: bold;
    color: #FFF;
    background-color: #da9200;
    border-radius: 5px;
    display: block;
    text-align: center;
    padding: 5px 50px 10px 50px;
    right: -60px;
    top: -140px;
    transform: rotate(14deg);
    z-index: 10;
    box-shadow: 10px 10px 30px rgba(0,0,0,0.4);
}

.circle {
    position: absolute;
    top: 0;
    bottom: 190px;
    left: 0;
    right: 0;
    margin: auto;
    width: 80px;
    height: 80px;
    background-color: rgba(0, 0, 0, 0.1);
    border-radius: 50%;
    -webkit-animation: grow 3s ease-in-out infinite;
    animation: grow 3s ease-in-out infinite;
}

.c01{
    background: rgba(0, 0, 0, 0.15);
    -webkit-animation-delay: 1s;
    animation-delay: 1s;
}
.c02{
    background: rgba(0, 0, 0, 0.2);
    -webkit-animation-delay: 2s;
    animation-delay: 2s;
}

@-webkit-keyframes grow {
    0% {
        transform: scale(1, 1);
        opacity: 1;
    }
    100% {
        transform: scale(8, 8);
        opacity: 0;
    }
}

@keyframes grow {
    0% {
        transform: scale(1, 1);
        opacity: 1;
    }
    100% {
        transform: scale(8, 8);
        opacity: 0;
    }
}

@keyframes talk{
    0% {
        height: 55px;
    }
    100% {
        height: 48px;
    }
}
@keyframes eye01{
    0% {
        transform: rotate(45deg) scaleY(1);
    }
    40% {
        transform: rotate(30deg) scaleY(1);
    }
    42% {
        transform: rotate(30deg) scaleY(.1);
    }
    44% {
        transform: rotate(30deg) scaleY(1);
    }
    70%{
        transform: rotate(45deg) scaleY(1);
    }
    100% {
        transform: rotate(30deg) scaleY(1);
    }
}
@keyframes eye02{
    0% {
        transform: rotate(-45deg);
    }
    40% {
        transform: rotate(-30deg) scaleY(1);
    }
    42% {
        transform: rotate(-30deg) scaleY(.1);
    }
    44% {
        transform: rotate(-30deg) scaleY(1);
    }
    70%{
        transform: rotate(-45deg);
    }
    100% {
        transform: rotate(-30deg);
    }
}

.wobble-horizontal {
    -webkit-animation-name: wobble-horizontal;
    animation-name: wobble-horizontal;
    -webkit-animation-duration: 2s;
    animation-duration: 2s;
    -webkit-animation-timing-function: ease-in-out;
    animation-timing-function: ease-in-out;
    -webkit-animation-iteration-count: infinite;
    animation-iteration-count: infinite;
}
@keyframes wobble-horizontal {
    16.65% {
        -webkit-transform: translateX(8px);
        transform: translateX(8px);
    }

    33.3% {
        -webkit-transform: translateX(-6px);
        transform: translateX(-6px);
    }

    49.95% {
        -webkit-transform: translateX(4px);
        transform: translateX(4px);
    }

    66.6% {
        -webkit-transform: translateX(-2px);
        transform: translateX(-2px);
    }

    83.25% {
        -webkit-transform: translateX(1px);
        transform: translateX(1px);
    }

    100% {
        -webkit-transform: translateX(0);
        transform: translateX(0);
    }
}






@media screen and (min-width: 768px) {
    .caAnimationContainer > div{
        width: 90%;
    }
    .caError403 .caLock {
        transform: scale(.8);
    }
    .caError403 .caNumber span {
        font-size: 13rem;
        top: 55px;
        letter-spacing: 25px;
    }
    .caError403 .caKey {
        width: 120px;
        margin-top: -15px;
        margin-bottom: 15px;
    }
    .caError403 .caMessage h5 {
        font-size: 1.5rem;
    }
    .caError403 .caNumber {
        margin-top: -25px;
    }
    .circle{
        width: 150px;
        height: 150px;
    }
    .caError403 .caErrorTxt {
        font-size: 50px;
    }
    .caError403 .caErrorTxt {
        right: -35px;
        top: -120px;
    }
}
@media screen and (min-width: 1024px) {
    .caError403 .caLock {
        transform: scale(1);
    }
    .caError403 .caNumber span {
        font-size: 15rem;
        top: 35px;
    }
    .caError403 .caKey {
        width: 135px;
        margin-top: 15px;
        margin-bottom: 5px;
    }
    .caError403 .caNumber {
        margin-top: 0;
    }
    .circle{
        width: 200px;
        height: 200px;
        top: -20px;
    }
    .caError403 .caMessage h5 {
        font-size: 2rem;
    }
}