@import url("https://use.typekit.net/odg2ttd.css");

html, body {
    height: 100%;
    font-family: "europa";
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(100px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from {
    opacity: 0;
    transform: scaleZ(0.3);
  }
  to {
    opacity: 1;
    transform: scaleZ(1);
  }
}

@keyframes zoomIn {
  from {
    opacity: 0;
    transform: scale(0.3);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-100px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.cursor-pointer {
    cursor: pointer;
}

.custom-tooltip {
  --bs-tooltip-bg: var(--bs-gray-200);
  --bs-tooltip-color: var(--bs-black);
}

.fs-12 {
    font-size: 12px;
}

.fs-14 {
    font-size: 14px;
}

label.error {
    color: #ff7979 !important;
}

.header {
    width: 100%;
    height: 4.6rem;
    padding: 1rem 3rem; 
}

.header img {
    max-height: 3rem;
}

.btn-logout:hover {
    background-color: #569C5A;
}

.content {
    padding-bottom: 4.7rem;
    height: 85%;
}

footer{
    position: fixed;
    bottom: 0;
    width: 100%;
    height: 4.5rem;
    background-color: #FFFFFF;
}
footer h1{
    color: #9A9A9A;
    font-size: 13px;
    padding: 0.7em 3em;
    margin-bottom: 0px;
    position: absolute;
    bottom: 20px;
}

.menu {
    width: 290px;
    background-color: #FFFFFF;
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    overflow-y: auto;
    padding: 20px;
}

.selected-option{
    border-left: 3px solid #78DB7F;
    color: #78DB7F !important;
}

.bg-light-green {
    background-color: #78DB7F;
}

.bg-dark-green {
    background-color: #569C5A;
}

.bg-middle-gray {
    background-color: #C7C7C7;
}

.text-light-green {
    color: #78DB7F;
}

.text-middle-green {
    color: #5CA761;
}

.text-dark-green {
    color: #569C5A;
}

.text-dark-gray {
    color: #858585;
}

.text-middle-gray {
    color: #A2A2A2;
}

.text-light-gray {
    color: #C7C7C7;
}

.btn-white {
    background: linear-gradient(#FFFFFF, #F0F0F0);
    border-radius: 28px;
    background-color: #FFFFFF;
    color: #325C35;
    border-color: #F0F0F0;
    padding: 0.5rem 1.5rem;
    box-shadow: 0px 3px 8px hsl(0deg 0% 0% / 24%);
}

.btn-white:hover {
    background: linear-gradient(#D5F6D7, #78DB7F);
    background-color: #D5F6D7;
    border-color: #D5F6D7;
}

.btn-light-green {
    border-radius: 28px;
    background-color: #78DB7F;
    color: #FFFFFF;
    padding: 0.5rem 1.5rem;
}

.btn-light-green:hover {
    background-color: #569C5A;
    border-color: #569C5A;
    color: #FFFFFF;
}

.d-header-home{
    position: fixed;
    top:0;
    height: 20%;
    width: 100%;
}

.header-home{
    width: 20%;
    animation: fadeIn 0.5s ease-in-out;
}

.header-home-mobile{
    width: 40%;
    float: right;
    animation: fadeInDown 1.2s ease-in-out;
}

.container-home {
    height: 70%;
    position: fixed;
    top: 20%;
    margin: 0;
    text-align: center;
    width: 100%;
    padding-bottom: 7%;
}

.container-home > .container{
    overflow-y: auto;
    overflow-x: hidden;
    margin: auto;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    height: 100%;
}

.img-home {
    float: left;
    max-height: 100%;
    max-width: 50%;
    animation: zoomIn 1.2s ease-in-out;
}

.logo-home {
    margin: 0 auto;
    max-width: 80%;
    animation: fadeInRight 1.2s ease-in-out;
}

.div-home {
    float: right;
    width: 40%;
    max-width: 50%;
}

.div-home label {
    color: #A2A2A2;
    font-size: 16px;
}

.div-home input {
    border: 2px solid #E1E1E1 !important;
    border-radius: 23px !important;
}

.btn-home {
    padding: 0.9rem 3.7rem !important;
    margin-top: 1rem;
    animation: zoomIn 1.5s ease-in-out;
}

.footer-login {
    height: 10% !important;
}

.footer-home{
    position: absolute;
    bottom: 0;
    right: 2%;
    width: 30%;
    animation: fadeInUp 1.2s ease-in-out;
    transform: translateY(0);
}

@media (max-width: 767.98px){
    .d-header-home{
        position: initial;
        top:initial;
        height: 10%;
    }

    .header-home{
       visibility: hidden;
       display: none;
    }

    .container-home {
        position: initial;
        height: auto;
        top: initial;
        padding: 0 1rem;
    }

    .div-home {
        float: initial;
        width: 100%;
        max-width: initial;
        text-align: center;
    }

    .img-home {
        float: initial;
        max-height: initial;
        max-width: 90%;
        margin: 2rem auto;
    }

    .btn-home {
        width: 100%;
        margin-bottom: 3rem;
        animation: none;
    }

    .footer-home{
       visibility: hidden;
       display: none;
    }

    footer{
        position: initial;
        bottom: initial;
    }

    footer h1{
        padding: 2em 3em;
        position: initial;
        bottom: initial;
    }
}

.con-vert-align::after {
    content: '';
    display: inline-block;
    height: 100%;
    vertical-align: middle;
    margin-left: -0.5ch;
}

.div-validate {
    width: 38%;
    display: inline-block;
    vertical-align: middle;
    margin: 1% auto 6.5% auto;
    background-color: #FFFFFF;
    box-shadow: 3px 3px 28px rgb(104 104 104 / 16%);
}

.div-progress {
    margin-bottom: 2.5rem;
    margin-top: 1rem;
}

@media (max-width: 991.98px) {
    .div-validate {
        width: 80%;
    }
}

.div-validate input{
    height: 5.2rem;
    font-size: 2.5rem;
}

input:focus{
    border-color:  #78DB7F !important;
    box-shadow: initial !important;
}

.form-control.error {
    border-color: #ff7979 !important;
}

.card-folder {
    box-shadow: 0px 3px 8px rgb(0 0 0 / 16%);
    background-color: #FFFFFF;
    padding:  1.2rem 1.5rem;
    margin: 0.7rem 0.5rem;
    overflow: hidden;
    border-radius: 4px;
}

.card-folder img {
    width: 90%;
}

.card-doc {
    box-shadow: 0px 3px 8px rgb(0 0 0 / 16%);
    background-color: #FFFFFF;
    overflow: hidden;
    border-radius: 4px;
}

.doc-div-check {
    width: 6.5%;
    float: left;
    text-align: center;
    padding-top: 1em;
    padding-bottom: 1em;
}

.doc-div-num {
    width: 20%;
    float: left;
    text-align: center;
}

.doc-div-num>div {
    width: 50px;
    height: 100%;
    color: #FFFFFF;
    text-align: center;
}

.doc-div-name {
    width: 63%;
    float: left;
    padding-top: 1em;
    padding-bottom: 1em;
    padding-left: 1rem;
}

.doc-div-btn {
    width: 20%;
    float: left;
    padding-top: 1em;
    padding-bottom: 1em;
}

.doc-div-btn>button:hover {
    transform: scale(1.1, 1.1);
}