*{
    box-sizing: border-box;
    user-select: none;
}
html, body, #app{
    display: contents;
    font-family: 'Raleway', sans-serif;
}
.content{
    display: contents;
}
.wrapper{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-flow: column nowrap;
    width: 100%;
    height: 100vh;
    background-color: rgb(55, 55, 55);
}
.header{
    background-color: white;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column nowrap;
}
.header h1{
    color: #BE8C29;
    font-size: 1.45rem;
    font-weight: 900;
}
.header img{
    height: 7rem;
    margin-top: 1rem;
}
.banner{
    background-color: #BE8C29;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}
.banner p{
    color: white;
    font-size: 1.1rem;
    font-weight: 700;
    letter-spacing: 0.05rem;
}
.general-body{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-flow: column nowrap;
    background-color: rgb(55, 55, 55);
    height: 60%;
}
.general-body .bye{
    color: white;
    letter-spacing: 0.1rem;
    font-size: 0.9rem;
    font-weight: 800;
    margin: 0.5rem;
}
.general-body .login-section{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-flow: column;
    background-color: white;
    width: 89%;
    height: 100%;
    border-radius: 0.5rem;
    max-height: 95%;
    margin: 1rem 0;
}
.general-body .login-section h3{
    width: 85%;
    font-size: 1rem;
    padding: 0.5rem;
    color: #90640b;
    font-weight: 900;
}
.general-body .login-section-body{
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column nowrap;
    width: 85%;
    height: 70%;
    padding-top: 3vh;
}
.login-section-body .login-subsection{
    display: flex;
    flex-flow: column nowrap;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
}
.login-section-body .login-subsection label{
    font-size: 0.9rem;
    font-weight: 800;
}
.login-section-body .login-subsection input{
    width: 100%;
    border-radius: 0.4rem;
    border: solid #BE8C29;
    height: 2.8rem;
    padding: 0 0.5rem;
    margin: 0.5rem 0;
}
.login-section-body .login-subsection input:focus{
    background-color: #d5b985;
    outline: none;
    transition: 0.35s;
    color: white;
}
.general-body .incorrect{
    margin: 0.5rem;
    background-color: white;
    width: 89%;
    height: 3rem;
    border-radius: 0.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border: solid rgb(201, 13, 13);
    margin: 0 0 1rem 0;
}
.general-body .incorrect p{
    color: rgb(201, 13, 13);
    letter-spacing: 0;
    font-size: 0.9rem;
}
.login-section a{
    font-size: 0.89rem;
    padding: 2vh 0;
    text-align: center;
    margin: 1rem;
    width: 89%;
}
.login-section-body .btn-group{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-flow: column nowrap;
    width: 100%;
    height: 5rem;
    margin: 1rem 0;
}
.login-section-body .btn-group .btn{
    border: none;
    width: 100%;
    height: 3.5rem;
    border-radius: 0.4rem;
    background-color: #BE8C29;
    color: white;
    font-weight: 600;
}
.login-section-body .btn-group .btn a, .login-section-body .btn-group .btn a:active{
    color: white;
    text-decoration: none;
    width: 100%;
}
.login-section-body .btn-group .btn:hover{
    background-color: #90640b;
    transition: 0.3s;
    cursor: pointer;
}
.footer{
    background-color: rgb(36, 36, 36);
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    max-height: 2rem;
    color: white;
    border-top: solid #BE8C29;
}
/* MODO RESPONSIVO WIDTH */
    /* APARTADO MEDIA QUERY CON WIDTH HACIA PC*/
    @media screen and (min-width:650px) {
        .general-body .login-section, .general-body .incorrect{
            width: 80%;
            transition: 1s;
        }
    }
    @media screen and (min-width:1000px) {
        .general-body .login-section,.general-body .incorrect{
            width: 65%;
            transition: 1s;
        }
    }
    @media screen and (min-width:1400px) {
        .general-body .login-section, .general-body .incorrect{
            width: 45%;
            transition: 1s;
        }
    }
    @media screen and (min-width:1800px) {
        .general-body .login-section, .general-body .incorrect{
            width: 40%;
            transition: 1s;
        }
        .login-section-body .login-subsection input{
            height: 3.5rem;
        }
        .login-section-body .btn-group .btn{
            height: 4rem;
        }
        .login-section-body .login-subsection input::placeholder, .login-section-body .login-subsection label, .login-section-body .btn-group .btn, .login-section a, .login-section-body .login-subsection input{
            font-size: 1rem;
        }
    }
     /* APARTADO MEDIA QUERY CON WIDTH HACIA TELEFONO*/
    @media screen and (max-width: 360px) {
        .header img{
            height: 6rem;
        }
        .header h1{
            font-size: 1.1rem;
        }
        .banner p{
            font-size: 0.95rem;
        }
        .general-body p{
            font-size: 0.89rem;
        }
    }
    @media screen and (max-width: 300px){
        .header img{
            height: 5rem !important;
        }
        .header h1{
            font-size: 0.99rem !important;
        }
        .banner p{
            font-size: 0.9rem !important;
        }
        .login-section-body .login-subsection label{
            font-size: 0.8rem !important;
        }
        .login-section-body .login-subsection input{
            height: 2rem;
        }
        .login-section-body .login-subsection input::placeholder{
            font-size: 0.8rem;
        }
        .login-section-body .btn-group .btn{
            font-size: 0.8rem !important;
            height: 2rem;
        }
        .general-body .incorrect p{
            font-size: 0.8rem;
        }
        .login-section a{
            font-size: 0.7rem;
        }
    }
/* MODO RESPONSIVO HEIGHT */
    /* APARTADO MEDIA QUERY CON HEIGHT HACIA PC*/
    @media screen and (min-height: 1000px) {
        .general-body {
            height: 100%;
        }
        .header h1{
            font-size: 1.9rem;
        }
        .banner p{
            font-size: 1.6rem;
        }
        .general-body p{
            font-size: 1.3rem;
        }
        .general-body .login-section{
            height: 85%;
        }
        .general-body .login-section-body{
            height: 60%;
        }
        .login-section-body .login-subsection label{
            font-size: 1.1rem;
        }
        .login-section-body .login-subsection input{
            height: 4rem;
        }
        .login-section-body .login-subsection input::placeholder{
            font-size: 1.1rem;
        }
        .login-section-body .btn-group .btn{
            height: 4rem;
        }
        .login-section .incorrect{
            font-size: 1.1rem;
        }
    }
    /* APARTADO MEDIA QUERY CON HEIGHT HACIA TELEFONO*/
    @media screen and (max-height: 740px) {
        .header img{
            height: 6rem;
        }
        .header h1{
            font-size: 1.1rem;
        }
        .banner p{
            font-size: 0.95rem;
        }
        .general-body p{
            font-size: 0.89rem;
        }
        .login-section-body .login-subsection input{
            height: 2.3rem;
        }
        .login-section-body .login-subsection input::placeholder{
            font-size: 0.8rem;
        }
        .login-section-body .btn-group .btn{
            font-size: 0.8rem !important;
            height: 2.3rem;
        }
        .login-section a{
            font-size: 0.75rem;
        }
    }
    @media screen and (max-height: 600px) {
        .footer{
            display: none;
        }
        .general-body{
            height: 100%;
        }
        .login-section-body .login-subsection input{
            height: 2rem;
        }
        .login-section-body .btn-group .btn{
            height: 2rem;
        }
    }
    @media screen and (max-height: 670px){
        .bye{
            display: none;
        }
        .general-body .login-section{
            margin: 0.5rem 0;
        }
    }
/* APARTADO CONFIRMAR CORREO */
.confirm-section{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-flow: column;
    background-color: white;
    width: 89%;
    height: 100%;
    border-radius: 0.5rem;
    max-height: 95%;
    margin: 1rem 0;
    /* border: solid #90640b; */
}
.confirm-section-header{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column nowrap;
    background-color: #90640b;
    padding: 1rem;
    border-radius: 0.4rem 0.4rem 0 0;
}
.confirm-section-header h2{
    margin: 0.5rem 0;
    color: white;
    font-size: 1.1rem;
}
.confirm-subsection{
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-flow: column nowrap;
    width: 85%;
    height: 75%;
    padding-bottom: 1rem;
}
.confirm-subsection p{
    font-size: 1rem;
    margin: 0.4rem 0;
}
.confirm-subsection .btn{
    border: none;
    width: 100%;
    padding: 1rem;
    height: 3.5rem;
    border-radius: 0.4rem;
    background-color: #BE8C29;
    color: white;
    font-weight: 600;
    cursor: pointer;
    margin: 1.5rem 0;
}
.confirm-subsection .btn a, .confirm-subsection .btn a:active{
    color: white;
    text-decoration: none;
}
.confirm-subsection a{
    margin: 1rem 0;
    font-size: 0.95rem;
}
.confirm-subsection-first{
    height: 40%;
}
.confirm-subsection-apartment{
    display: flex;
    align-items: flex-start;
    justify-content: center;
    flex-flow: column nowrap;
    height: 60%;
}
.confirm-section .btn:hover{
    background-color: #90640b;
    transition: 0.3s;
    cursor: pointer;
}
.confirm-subsection-mail{
    width: 100%;
    border-radius: 0.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column nowrap;
    margin: 0.4rem 0;
    padding: 1rem;
    background-color: #3db25e;
}
.confirm-subsection-mail h3{
    font-size: 1rem;
    margin: 0;
    color: white;
    font-weight: 900;
}
/* MODO RESPONSIVO WIDTH */
    /* APARTADO MEDIA QUERY CON WIDTH HACIA PC*/
    @media screen and (min-width:650px) {
        .confirm-section{
            width: 80%;
            transition: 1s;
        }
    }
    @media screen and (min-width:1000px) {
        .confirm-section{
            width: 65%;
            transition: 1s;
        }
    }
    @media screen and (min-width:1400px) {
        .confirm-section{
            width: 45%;
            transition: 1s;
        }
    }
    @media screen and (min-width:1800px) {
        .confirm-section{
            width: 40%;
            transition: 1s;
        }
    }
    /* APARTADO MEDIA QUERY CON WIDTH HACIA TELEFONO*/
    @media screen and (max-width: 390px) {
        .confirm-section-header h2{
            font-size: 0.95rem;
        }
        .confirm-subsection p{
            font-size: 0.89rem;
        }
        .confirm-subsection-mail{
            padding: 0.8rem;
        }
        .confirm-subsection-mail h3{
            font-size: 0.8rem;
        }
        .confirm-subsection p{
            font-size: 0.89rem;
        }
        .confirm-subsection a{
            font-size: 0.89rem;
        }
    }
    @media screen and (max-width: 300px) {
        .confirm-subsection-mail{
            padding: 0.4rem;
        }
        .confirm-subsection-mail h3{
            letter-spacing: 0;
        }
        .confirm-subsection p{
            font-size: 0.79rem;
        }
        .confirm-subsection a{
            font-size: 0.79rem;
        }
    }
    @media screen and (max-width: 240px){
        .header h1{
            display: none;
        }
        .header img{
            margin-bottom: 1rem;
        }
    }
/* COMPONENTES GLOBALES */
.alert{
    position: fixed;
    width: 30%;
    right: 1rem;
    bottom: 4rem;
    padding: 0 1rem;
    border-radius: 0.4rem;
    transition: 0.5s;
    box-shadow: 0 0 0.5rem #a737374f;
    animation-name: fadeIn, fadeOut;
    animation-delay: 0s, 3.5s;
    animation-duration: 0.6s, 0.6s;
}
.alert p{
    font-size: 1.1rem;
    color: white;
    font-weight: 800;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.alert-danger{
    background-color: rgba(216, 84, 84, 0.959);
}
.alert-success{
    background-color: #3eaf57;
}
.back-btn{
    display: contents;
    position: absolute;
}
.back-btn a{
    position: absolute;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 4.4rem;
    width: 7.5rem;
    font-size: 1.1rem;
    background-color: #be8c29a1;
    color: black;
    border: none;
    transition: 0.3s;
    text-decoration: none;
    border-radius: 4rem;
    margin: 0 1rem;
    padding:0;
    left: 0;
}
.back-btn a:hover{
    background-color: #be8c29;
    cursor: pointer;
    transition: 0.4s;
    width: 12rem;
}
.back-btn a:hover > .fa-chevron-left{
    color: transparent;
    transition: 0.4s;
}
.back-btn a:hover::after{
    content: 'Menú Principal';
    position: fixed;
    color: white;
    transition: 0.9s;
    text-transform: uppercase;
    font-size: 1.3rem;
    font-weight: 600;
}
.fa-chevron-left{
    font-size: 2rem;
    transition: 0.4s;
}


/* EFECTOS VARIOS */
.fade-in {
    animation: fadeIn ease 0.7s;
    -webkit-animation: fadeIn ease 0.7s;
    -moz-animation: fadeIn ease 0.7s;
    -o-animation: fadeIn ease 0.7s;
    -ms-animation: fadeIn ease 0.7s;
  }
  @keyframes fadeIn {
    0% {
      opacity:0;
    }
    100% {
      opacity:1;
    }
  }
  
  @-moz-keyframes fadeIn {
    0% {
      opacity:0;
    }
    100% {
      opacity:1;
    }
  }
  
  @-webkit-keyframes fadeIn {
    0% {
      opacity:0;
    }
    100% {
      opacity:1;
    }
  }
  
  @-o-keyframes fadeIn {
    0% {
      opacity:0;
    }
    100% {
      opacity:1;
    }
  }
  
  @-ms-keyframes fadeIn {
    0% {
      opacity:0;
    }
    100% {
      opacity:1;
  }
}


.invalid-feedback{
    color: rgb(146, 0, 0);
}
.special-password-section{
    display: flex;
    flex-flow: column nowrap;
    align-items: flex-start;
    justify-content: center;
    width: 100%;
    border: #3db25e;
    background-color: #7ad393;
    border-radius: 0.4rem;
    padding: 1rem;
    margin: 0.5rem 0;
}
.special-password-section i{
    padding: 0 0.5rem ;
}
.special-password-section label{
    margin: 0.1rem;
    font-weight: 800;
}
.advice-apartment{
    width: 90%;
    background-color: white;
    border-radius: 0.4rem;
    margin: 1.5rem 0;
    padding-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-flow: column;
}
.advice-apartment h2{
    font-size: 1.2rem;
    font-weight: 700;
}
.advice-apartment h3{
    font-size: 1.14rem;
    font-weight: 600;
}
.advice-apartment a{
    width: 70%;
    background-color: #BE8C29;
    height: 4rem;
    border-radius: 0.4rem;
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    font-weight: 800;
}
@media screen and (min-width:1800px) {
    .advice-apartment{
        width: 40%;
        transition: 1s;
    }
}
.add-candidate{
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-flow: column;
    padding: 1rem;
}
.filter-apartment{
    width: 95%;
    background-color: white;
    border-radius: 0.4rem 0.4rem 0 0;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-flow: row nowrap;
    padding: 0 1rem;
}
.filter-apartment input, .filter-apartment select{
    width: 30%;
    background-color: white;
    border-radius: 0.4rem;
    padding: 0 1rem;
    height: 3rem;
    font-size: 1rem;
    font-weight: 400;
    border: solid #7b6000;
    outline: none;
    margin: 0.5rem 0;
}
.filter-apartment input:focus, .filter-apartment select:focus{
    background-color: #d5b985;
    transition: 0.4s;
}
.filter-apartment .btn-group{
    width: 30%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-flow: row nowrap;
}
.filter-apartment .btn-group .btn-filter{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: row nowrap;
    height: 3rem;
    width: 48%;
    background-color:#BE8C29;
    border: none;
    border-radius: 0.4rem;
    cursor: pointer;
    color: white;
    font-size: 0.95rem;
    user-select: none;
    transition: 0.4s;
}
.filter-apartment .btn-group .btn-filter p{
    padding: 0 0.5rem;
}
.filter-apartment .btn-group .btn-filter:hover{
    background-color: #7b6000;
    transition: 0.4s;
}
.general-topbar{
    height: 15vh !important;
    max-height: 15vh;
    width: 100%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-flow: column nowrap;
    z-index: 11;
}
.general-topbar-section{
    width: 100%;
    height: 3.8rem;
    background-color: #BE8C29;
    padding: 0 0.5rem;
    margin: 0;
    border-bottom: solid white;
}
.general-topbar-section .menu{
    margin: auto;
    height: 100%;
    display: flex;
}
.general-topbar-section .menu nav{
    height: 100%;
}
.general-topbar-section .menu nav > ul{
    height: 100%;
    display: flex;
    margin: 0;
}
.general-topbar-section .menu nav > ul > li{
    height: 100%;
    list-style: none;
    position: relative;
}
.general-topbar-section .menu nav > ul > li > a{
    width: 100%;
    height: 100%;
    display: flex;
    color: white;
    justify-content: center;
    padding: 1rem;
    text-decoration: none;
    transition: all 0.4s ease;
    font-size: 1rem;
    font-weight: 800;
}
.general-topbar-section .menu nav > ul > li > a > i{
    font-size: 1.2rem;
    transition: 0.1s;
}
.general-topbar-section .menu nav > ul > li > a:hover{
    transform: scale(1.1);
    background-color: #90640b;
}
.general-topbar-section .menu nav > ul > li:first-child > a{
    padding: 1rem 3rem;
}
.general-topbar-section .menu nav  ul  li  ul{
    width: 200px;
    flex-flow: column nowrap;
    background-color: white;
    box-shadow: 0 0 0.1rem 0 #7b6000;
    position: absolute;
    left: -5px;
    padding: 0.5rem 0;
    display: none;
    opacity: 0;
    z-index: 10;
    transition: all 0.4s ease;
}
.general-topbar-section .menu nav  ul  li:hover >  ul{
    opacity: 1;
    top: 3rem;
    display: flex;
    transition: all 0.4s ease !important;
}
.general-topbar-section .menu nav  ul  li  ul::before{
    content: '';
    width: 0;
    height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 12px solid white;
    position: absolute;
    top: -12px;
    left: 20px;
}
.general-topbar-section .menu nav ul li ul li{
    list-style: none;
}
.general-topbar-section .menu nav  ul  li  ul a{
    display: block;
    color: #90640b;
    text-decoration: none;
    padding: 0.1rem 1rem;
    font-weight: 800;
}
.magic-appear{
    display: none;
}
.general-topbar-section .menu nav  ul  li  ul a:hover{
    background-color: #BE8C29;
    color: white;
    transition: 0.3s ;
}
.dinamic-content{
    height: 85vh !important;
    width: 100% !important;
    overflow-y: auto;
    overflow-x: hidden;
    padding: 0 0.5rem 0.5rem 0.5rem;
}
.general-tablespace{
    height: 69vh;
    width: 80% !important;
    background-color: white;
    overflow-y: auto;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}
.add-candidate-table{
    width: 95%;
    border-spacing: 0.2rem;
    border-radius: 0.4rem;
    margin: 1rem;
}
.add-candidate-table th, .add-candidate-table-two th, .add-candidate-table td, .add-candidate-table-two td{
    border: none;
    border-collapse: collapse;
    padding: 1rem;
    margin: 0.2rem;
    border-radius: 0.4rem;
}
.add-candidate-table th, .add-candidate-table-two th{
    background-color: #BE8C29;
    text-align: center;
    color: white;
    position: sticky;
    top: 0;
    z-index: 9;
}
.add-candidate-table td, .add-candidate-table-two td{
    background-color: #ead6b2;
    color: black;
    font-size: 1rem;
}
.candidate-info-table{
    width: 100%;
    height: auto;
    display: flex;
    align-items: stretch;
    justify-content: space-evenly;
    flex-flow: row nowrap;
}
.candidate-info-section{
    height: auto;
    display: flex;
    align-items: flex-start;
    flex-flow: column nowrap;
    justify-content: flex-start;
}
.candidate-info-section img{
    width: auto;
    height: 10rem;
    max-height: 10rem;
    border: solid #90640b;
    border-radius: 0.4rem;
}
.candidate-info-section h2{
    margin: 0.8rem 0;
}
.add-candidate-table .btn-group{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-flow: column nowrap;
    padding: 1rem;
}
.add-candidate-table .btn-group .btn{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: row nowrap;
    height: 3rem;
    width: 100%;
    border: none;
    border-radius: 0.4rem;
    cursor: pointer;
    color: white;
    font-size: 0.95rem;
    user-select: none;
    transition: 0.4s;
    margin-bottom: 0.8rem;
}
.add-candidate-table .btn-group .btn p{
    padding: 0 0.5rem;
}




.td-full{
    width: 100% !important;
    max-width:  100% !important;
}
.td-eighty-five{
    width: 85% !important;
    max-width:  85% !important;
}
.td-seventy-five{
    width: 75% !important;
    max-width:  75% !important;
}
.td-sixty{
    width: 60% !important;
    max-width:  60% !important;
}
.td-half{
    width: 50% !important;
    max-width: 50% !important;
}.td-fourty{
    width: 40% !important;
    max-width: 40% !important;
}.td-third{
    width: 33% !important;
    max-width: 33%!important;
}.td-thirthy{
    width: 30% !important;
    max-width: 30%!important;
}.td-quarter{
    width: 25% !important;
    max-width: 25%!important;
}
.td-twenty{
    width: 20%!important;
    max-width: 20%!important;
}.td-fifteen{
    width: 15%!important;
    max-width: 15%!important;
}.td-ten{
    width: 10%!important;
    max-width: 10%!important;
}
/* Botón para ver elemento */
.btn-see{
    background-color: rgb(112, 158, 218);
    color: white;
}
.btn-see:hover{
    background-color: rgb(88, 130, 185);
    transition: 0.3s;
}
.btn-see::before{
    content: 'Ver';
    font-size: 0rem;
    opacity: 0;
}
/* Boton de eliminar elemento */
.btn-delete{
    background-color: #da5353;
    color: white;
}
.btn-delete:hover{
    background-color: #9c0a0a;
    transition: 0.3s;
}
.btn-delete::before{
    content: 'Borrar';
    font-size: 0rem;
    opacity: 0;
}
/* Boton de editar elemento */
.btn-edit{
    background-color: #edc531;
    color: white;
}
.btn-edit:hover{
    background-color:#dbb42c;
    transition: 0.3s;
}
.btn-edit::before{
    content: 'Editar';
    font-size: 0rem;
    opacity: 0;
    color: white;
    text-shadow: 0 0 1rem white;
}
/* Solo colores */
/* color rojo */
.btn-red{
    background-color: #da5353;
    color: white;
}
.btn-red:hover{
    background-color: #9c0a0a;
    transition: 0.3s;
}
/* Color amarillo */
.btn-yellow{
    background-color: #edc531;
    color: white;
}
.btn-yellow:hover{
    background-color:#dbb42c;
    transition: 0.3s;
}
/* Color Azul */
.btn-blue{
    background-color: rgb(112, 158, 218);
    color: white;
}
.btn-blue:hover{
    background-color: rgb(88, 130, 185);
    transition: 0.3s;
}
/* Color Verde */
.btn-green{
    background-color: #3eaf57;
    color: white;
}
.btn-green:hover{
    background-color: #2e9645;
}
/* Apartado de botones de todos tipos */
.btn-success{
    background-color: #3eaf57;
    color: white;
}
.btn-orange{
    background-color: #e68f38;
    color: white;
}
.btn-turquose{
    background-color: #65a8aa;
    color: white;
}
.btn-success:hover{
    background-color: #3c9b48;
    transition: 0.3s;
}
.btn-orange:hover{
    background-color: #b95d00;
    transition: 0.3s;
}
.btn-turquose:hover{
    background-color: #3b7174;
    transition: 0.3s;
}
.pagination-apartment{
    width: 95%;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: row;
    border-radius:0 0 0.4rem 0.4rem;
}
.pagination-subapartment{
    width: 33%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: row nowrap;
}
.pagination{
    margin: 0;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: row nowrap;
    width: 100%;
}
.pagination li{
    display: contents;
    list-style: none;
}
.pagination li a{
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    color: white;
    background-color: #BE8C29;
    width: 3rem;
    height: 3rem;
    border-radius: 0.4rem;
    font-size: 1.1rem;
    margin: 0 0.2rem;
    box-shadow: 0 0 1rem rgba(146, 146, 146, 0.178);
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none; 
    font-weight: 900;
}
.active > .page-link{
    color: white;
    background-color:#7b6000;
    transition: 0.4s;
}
.pagination li a:hover{
    background-color:#7b6000;
    color: rgb(255, 255, 255);
    transition: 0.2s;
}
.pagination-subapartment label{
    font-weight: 900;
}
.pagination-subapartment select{
    width: 50%;
    background-color: white;
    border-radius: 0.4rem;
    padding: 0 1rem;
    height: 3rem;
    font-size: 1rem;
    font-weight: 400;
    border: solid #7b6000;
    outline: none;
    margin: 0.5rem 0;
}
.alert{
    position: fixed;
    width: 30%;
    right: 1rem;
    bottom: 4rem;
    padding: 0 1rem;
    border-radius: 0.4rem;
    transition: 0.5s;
    animation-name: fadeIn, fadeOut;
    animation-delay: 0s, 3.5s;
    animation-duration: 0.6s, 0.6s;
    height: 5rem;
    
}
.alert p{
    font-size: 1.1rem;
    color: white;
    font-weight: 800;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.alert-danger{
    background-color: rgba(216, 84, 84, 0.959);
}
.alert-success{
    background-color: #3eaf57;
}
.modal{
    position:fixed;
    top:0;
    left:0;
    z-index:1050;
    display:none;
    width:100%;
    height:100%;
    outline:0;
}
.modal-dialog{
    position: fixed;
    width: 100%;
    pointer-events: none;
    background: rgba(0, 0, 0, 0.568);
    height: 100vh;
    z-index: 100000;
}
.modal-content{
    position: fixed;
    display: flex;
    flex-direction: column;
    width: 30%;
    pointer-events: auto;
    background-color: #fff;
    background-clip: padding-box;
    border-radius: 0.3rem;
    outline: 0;
    animation: fadeIn ease 0.6s;
    -webkit-animation: fadeIn ease 0.6s;
    -moz-animation: fadeIn ease 0.6s;
    -o-animation: fadeIn ease 0.6s;
    -ms-animation: fadeIn ease 0.6s;
    box-shadow: 0 0 2rem rgb(0 0 0 / 71%);
    top: 10vh;
    right: 33vw;
}
.modal-backdrop{
    position:fixed;
    top:0;
    left:0;
    width:100vw;
    height:100vh;
    background-color:#000;
}
.no-modal-back{
    z-index: 3 !important;
}
.modal-backdrop.fade{
    opacity:0;
}
.modal-backdrop.show{
    opacity:.5;
}
.modal-header{
    display:flex;
    align-items:center;
    justify-content: center;
    padding: 0rem;
    margin: 0px;
    border-bottom:1px solid #e3e6f0;
    border-top-left-radius:calc(.3rem - 1px);
    border-top-right-radius:calc(.3rem - 1px);
    font-size: 20px;
}
.modal-body{
    position:relative;
    padding:1rem;
    margin: 0rem 0rem 2.5rem;
}
.modal-footer{
    display:flex;
    flex-wrap:wrap;
    align-items:center;
    justify-content:flex-end;
    padding:.75rem;
    border-top:1px solid #e3e6f0;
    border-bottom-right-radius:calc(.3rem - 1px);
    border-bottom-left-radius:calc(.3rem - 1px)
}
.modal .btn{
    color: rgb(255, 255, 255);
    border: none;
    font-size: 1rem;
    text-decoration: none;
    border-radius: 0.4rem;
    cursor: pointer;
    width: 29%;
    height: 2.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 0.5rem;
}





.add-candidate-form{
    background-color: white;
    border-radius: 0.4rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-flow: column nowrap;
    width: 80%;
    padding-bottom: 1rem;
}
.general-header{
    width: 100%;
    background-color: #BE8C29;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column nowrap;
    border-radius: 0.2rem;
    padding: 0.5rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.general-header h4, .general-header h3, .general-header h2, .general-header h1{
    margin: 0.5rem 0;
    color: white;
}
.advice{
    color: #9c0a0a;
}
.add-candidate-form-section{
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-flow: row nowrap;
    margin: 1rem 0;
}
.add-candidate-form-subsection{
    width: 49%;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    flex-flow: column nowrap;
}
.add-candidate-form-subsection label{
    font-weight: 800;
    margin: 0.4rem 0;
}
.add-candidate-form-subsection input, .add-candidate-form-subsection select{
    width: 100%;
    background-color: white;
    border-radius: 0.4rem;
    padding: 0 1rem;
    height: 4rem;
    font-size: 1rem;
    font-weight: 400;
    border: solid #7b6000;
    outline: none; 
}
.add-candidate-form-subsection .btn{
    width: 100%;
    border-radius: 0.4rem;
    padding: 0 1rem;
    height: 4rem;
    font-size: 1rem;
    font-weight: 400;
    outline: none; 
    border: none;
}
.add-candidate-form-section textarea{
    width: 100%;
    background-color: white;
    border-radius: 0.4rem;
    padding: 1rem;
    height: 8rem;
    font-size: 1rem;
    font-weight: 400;
    border: solid #7b6000;
    outline: none; 
    resize: none;
    font-family: 'Raleway', sans-serif;
}
.add-candidate-form-subsection input:focus, .add-candidate-form-subsection select:focus{
    background-color: #d5b985;
    transition: 0.4s;
}
.add-candidate-photo-section{
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column nowrap;
}
.add-candidate-photo-section img{
    width: auto;
    height: 10rem;
    max-height: 10rem;
    border: solid #90640b;
    border-radius: 0.4rem;
}
.click-image{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: row nowrap;
    height: 3rem;
    width: 100%;
    border: none;
    border-radius: 0.4rem;
    cursor: pointer;
    color: white;
    font-size: 1rem;
    user-select: none;
    transition: 0.4s;
    background-color: #BE8C29;
}
.add-candidate-form .btn-group, .add-mail-form .btn-group{
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-flow: row nowrap;
}
.add-candidate-form .btn-group .btn, .add-mail-form .btn-group .btn{ 
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: row nowrap;
    height: 4rem;
    width: 49%;
    border: none;
    border-radius: 0.4rem;
    cursor: pointer;
    color: white;
    font-size: 0.95rem;
    user-select: none;
    transition: 0.4s;
    margin-bottom: 0.8rem;
    margin: 1rem 0;
}
.add-candidate-radius{
    width: 40%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 800;
}
.add-candidate-radius input{
    width: 5rem;
    height: 2rem;
}
.add-candidate-checkbox{
    width: 90%;
    height: 20rem !important;
    max-height: 20rem !important;
    border-radius: 0.4rem;
    border: solid #90640b;
    overflow-y: auto;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: row wrap;
}
.add-candidate-checkbox-section{
    width: 45%;
    background-color: #BE8C29;
    padding: 1rem;
    border-radius: 0.4rem;
    color: white;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-flow: row nowrap;
    margin: 1rem;
}
.add-candidate-checkbox-section input{
    width: 3rem;
    height: 2rem;
}

.my-candidate{
    background-color: white;
    width: 80%;
    height: auto;
    border-radius: 0.4rem;
    padding-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-flow: column nowrap;

}
.my-candidate-section{
    height: 65vh !important;
    overflow: auto;
    width: 95%;
    padding: 1rem 0;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-flow: column nowrap;
}
.my-candidate-subsection{
    background-color: #90640b;
    width: 90%;
    display: flex;
    align-items: stretch;
    justify-content: center;
    flex-flow: row nowrap;
    padding: 1rem;
    border-radius: 0.4rem;
    margin: 1rem 0;
}
.my-candidate-subsection-apartment{
    background-color: #90640b;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column nowrap;
    color: white;
    padding: 1rem;
}
.my-candidate-subsection-apartment h2,.my-candidate-subsection-apartment h3, .my-candidate-subsection-apartment h4{
    margin: 0 0 1rem 0;
}
.my-candidate-subsection-apartment img{
    width: auto;
    height: 10rem;
    max-height: 10rem;
    border-radius: 0.4rem;
}
.my-candidate-subsection-apartment .btn{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: row nowrap;
    height: 4rem;
    width: 100%;
    border: none;
    border-radius: 0.4rem;
    cursor: pointer;
    color: white;
    font-size: 0.95rem;
    user-select: none;
    transition: 0.4s;
    margin-bottom: 0.8rem;
}
.my-candidate-subsection-apartment .btn p{
    font-size: 1rem;
}
.my-results{
    background-color: white;
    width: 80%;
    height: auto;
    border-radius: 0.4rem;
    padding: 1rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-flow: column nowrap;
}
.my-results select{
    width: 95%;
    background-color: white;
    border-radius: 0.4rem;
    padding: 0 1rem;
    height: 4rem;
    font-size: 1rem;
    font-weight: 400;
    border: solid #7b6000;
    outline: none;
    margin: 1rem 0; 
}
.my-results select:focus{
    background-color: #d5b985;
    transition: 0.4s;
}
.my-candidate-megasection{
    background-color: #90640b;
    width: 90%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-flow: column nowrap;
    padding: 1rem;
    border-radius: 0.4rem;
    margin: 1rem 0;
}
.my-candidate-megasection-apartment{
    height: 40vh !important;
    overflow: auto;
    width: 95%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-flow: column nowrap;
    margin: 1rem 0;
}
.my-candidate-megasection-subapartment{
    background-color: white;
    width: 95%;
    display: flex;
    align-items: center;
    justify-content: space-evenly;
    flex-flow: row nowrap;
    padding: 1rem;
    border-radius: 0.4rem;
    margin: 1rem 0;
}
.my-candidate-megasection-subapartment img{
    width: auto;
    height: 10rem;
    max-height: 10rem;
    border-radius: 0.4rem;
}
.my-candidate-megasection-subsubapartment{
    width: 75%;
}
.add-votation{
    background-color: white;
    width: 90%;
    height: 78vh;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-flow: column nowrap;
    border-radius: 0.4rem;
}
.add-votation h4{
    margin: 0.3rem;
}
.add-votation-body{
    max-width: 95% !important;
    background-color: #90640b;
    height: 30rem;
    border-radius: 0.4rem;
    overflow-y: none;
    overflow-x: auto;
    display: flex;
    align-items: stretch;
    justify-content: flex-start;
    flex-flow: row nowrap;
}
.add-votation-candidate{
    height: auto;
    background-color: white;
    width: 17rem!important;
    min-width: 17rem!important;
    margin: 1rem;
    border-radius: 0.4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-flow: column nowrap;
    box-shadow: 0 0 0.4rem rgba(0, 0, 0, 0.306);

}
.candidate-info{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-flow: column nowrap;
    height: 90%;
    padding: 1rem;
}
.add-votation-image-section{
    border: solid #90640b;
    width: 80%;
    height: 60%;
    border-radius: 0.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
}
.add-votation-image-section img{
    width: auto;
    height: 10rem;
    max-height: 10rem;
    border-radius: 0.4rem;
}
.other-candidate-input{
    width: 100%;
    background-color: white;
    border-radius: 0.4rem;
    padding: 0 1rem;
    height: 3rem;
    font-size: 1rem;
    font-weight: 400;
    border: solid #7b6000;
    outline: none; 
}
.candidate-radius{
    width: 3rem;
    height: 2rem;
    margin: 1rem;
}
.confirm-votation-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: row nowrap;
    height: 3rem;
    width: 50%;
    border: none;
    border-radius: 0.4rem;
    cursor: pointer;
    color: white;
    font-size: 0.95rem;
    user-select: none;
    transition: 0.4s;
    margin: 1rem;
    background-color: #2e9645;
}
.fluid-container{
    height: 80vh!important;
    width: 100%;
    overflow-y: auto;
    display: flex;
    align-items: center;
    flex-flow: column;
}
.internal-content{
    width: 80%;
    height: 39rem !important;
    display: flex;
    align-items: center;
    flex-flow: column;
    background-color: white;
    border-radius: 0.4rem;
    margin: 1rem 0;
}
.subinternal-content{
    width: 100%;
    height: 39rem !important;
    display: flex;
    overflow-y: auto;
    align-items: center;
    flex-flow: column;
    background-color: white;
    margin: 1rem 0;
}
.internal-content-btn{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: row nowrap;
    height: 3rem;
    width: 50%;
    border: none;
    border-radius: 0.4rem;
    cursor: pointer;
    color: white;
    font-size: 0.95rem;
    user-select: none;
    transition: 0.4s;
    margin-top: 1rem;
}
.add-mail-form{
    background-color: white;
    border-radius: 0.4rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-flow: column nowrap;
    width: 100%;
    padding-bottom: 1rem;
    min-height: 35rem;
}
.final-votation{
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column nowrap;
    background-color: #90640b;
    border-radius: 0.4rem;
    color: white;
    margin: 1rem ;
    padding: 1rem;
}
.final-votation img{
    height: 15rem;
    margin: 1rem 0;
}
.final-votation h1, .final-votation h2{
    text-align: center;
}
.add-votation-done{
    height: 40%;
    width: 80%;
    background-color: #BE8C29;
    border-radius: 0.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column nowrap;
}
.add-votation-done h2{
    font-size: 1.1rem;
    color: white;
}
.add-votation-done .btn{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: row nowrap;
    height: 5rem;
    width: 50%;
    background-color: white;
    border: none;
    border-radius: 0.4rem;
    cursor: pointer;
    color: black;
    font-size: 0.95rem;
    user-select: none;
    transition: 0.4s;
    margin-top: 1rem;
}
.home-container{
    width: 90%;
    background-color: white;
    border-radius: 0.4rem;
    margin: 1.5rem 0;
    padding-bottom: 1rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-flow: column;
}
.hola{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    height: 10vh;
}
.welcome-container{
    width: 80%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-flow: column;
}
.welcome-subcontainer{
    width: 80%;
    height: auto;
    background-color: #be8c29;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column;
    color: white;
    border-radius: 0.4rem;
}
.welcome-subcontainer a{
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: row nowrap;
    height: 3rem;
    width: 48%;
    background-color:#ffffff;
    border: none;
    border-radius: 0.4rem;
    cursor: pointer;
    color: #7b6000;
    font-size: 0.95rem;
    user-select: none;
    transition: 0.4s;
    margin: 1rem 0 2rem 0;
    font-size: 1.2rem;
}
.welcome-subcontainer a:hover{
    background-color: #bababa;
}
.special-tablespace{
    background-color: white;
    width: 95%;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-flow: column;
}
.add-candidate-table-two{
    width: 100%;
    border-radius: 0.4rem;
    overflow-y: auto;
    margin: 1rem 0;
}
.add-candidate-table-two p{
    margin: 0;
}
.fluid-content-two{
    height: 65vh !important;
    width: 95%;
    overflow-y: auto;
    display: flex;
    align-items: flex-start;
    flex-flow: column;
}
.results-space{
    width: 95%;
    display: flex;
    align-items: center;
    flex-flow: column;
    background-color: white;
    border-radius: 0.4rem;
    margin-top: 1rem;
}
.title-progress{
    background-color: #be8c29;
    border-radius: 0.4rem 0.4rem 0 0;
    width: 95%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column nowrap;
    color: white;
}
.title-progress h2{
    margin: 0.6rem; 
}
.add-votation-body-two{
    width: 90% !important;
    background-color: #90640b;
    height: 45rem !important;
    border-radius: 0.4rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-flow: column nowrap;
    margin: 1rem 0;
}
.white-head{
    width: 100%;
    border: solid #90640b;
    background-color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-flow: column nowrap;
    border-radius: 0.2rem;
    padding: 0.5rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.white-head h1{
    margin: 0.3rem;
    font-size: 1.5rem;
    color: #7b6000;
}
.white-footer{
    width: 100%;
    border: solid #90640b;
    background-color: white;
    display: flex;
    align-items: stretch;
    justify-content: space-between;
    flex-flow: row nowrap;
    border-radius: 0.2rem;
    padding: 0.5rem;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}
.anulate-vote{
    font-size: 20vh;
    color: #9c0a0a;
}
.add-votation-results{
    /* height: 10rem; */
    background-color: white;
    width: 49%;
    border-radius: 0.4rem;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    flex-flow: column nowrap;
    box-shadow: 0 0 0.4rem rgba(0, 0, 0, 0.337);
}
.add-votation-candidate h3{
    margin: 0.3rem 0;
}
.add-votation-results p{
    margin: 1rem;
}
.add-votation-results-section{
    height: 100%;
    background-color: white;
    width: 95%;
    margin: 0.3rem;
    border-radius: 0.4rem;
    display: flex;
    align-items: flex-start;
    justify-content: flex-start;
    flex-flow: column nowrap;
    overflow-y: auto;
}
.add-votation-results-section p{
    margin: 0.3rem 1rem;
}
/* RESPONSIVE */
@media screen and (max-width:1707px) and (max-height:890px){
    .candidate-info-section h2{
        font-size: 1.1rem;
    }
    .general-tablespace{
        height: 67vh;
    }
     .add-votation-image-section{
        height: 75%;
        width: 70%;
    }
    .modal-content{
        width: 45%;
        right: 25vw;
    }
    .fluid-content-two{
        align-items: flex-start;
    }
}

@media screen and (max-width:1505px) and (max-height:780px) {
    .general-tablespace{
       height: 66vh;
    }
    .td-half{
        width: 45% !important;
        max-width: 45% !important;
    }
    .candidate-info-section img{
        width: 9rem;
    }
    .candidate-info-section p{
        margin: 0.3rem 0;
    }
    .add-candidate-form-section{
        margin: 0.4rem 0;
    }
    .filter-apartment input, .filter-apartment select, .my-results select, .other-candidate-input{
        height: 2rem;
        font-size: 0.9rem;
        font-weight: 400;
    }
    .filter-apartment .btn-group .btn-filter{
        height: 2rem;
    }
    .add-candidate-form-subsection input, .add-candidate-form-subsection select{
        height: 3rem;
        font-size: 0.9rem;
    }
    .add-candidate-form .btn-group .btn, .add-mail-form .btn-group .btn, .add-candidate-form-subsection .btn{
        height: 3rem;
        font-size: 0.8rem;
    }
    .dinamic-content{
        height: 83vh !important;
    }
    .add-candidate-table th, .add-candidate-table-two th, .add-candidate-table td, .add-candidate-table-two td{
        padding: 0.5rem;
    }
    .add-candidate-table h2{
        font-size: 1.2rem;
        margin: 0.4rem 0;
    }
    .add-candidate-table h3{
        font-size: 1.05rem;
        margin: 0.4rem 0;
    }
    .add-candidate-table p{
        font-size: 0.9rem;
        margin: 0.4rem 0;
    }
    .add-candidate-table .btn-group .btn{
        height: 2rem;
        font-size: 0.85rem;
    }
    .my-candidate-subsection, .my-candidate-subsection-apartment, .my-candidate-subsection, .my-candidate-megasection-subapartment{
        padding: 0.3rem;
    }
    .my-candidate-subsection-apartment h2{
        font-size: 1.2rem;
        margin: 0.4rem 0;
    }
    .my-candidate-subsection-apartment h3, .my-candidate-megasection-subapartment h3{
        font-size: 1.05rem;
        margin: 0.4rem 0;
    }
    .my-candidate-subsection-apartment h4, .my-candidate-megasection-subapartment h4{
        font-size: 0.9rem;
        margin: 0.4rem 0;
    }
    .my-candidate-subsection-apartment img{
        width: 8rem;
    }
    .my-candidate-megasection-subapartment img{
        width: 7rem;
    }
    .my-candidate-subsection{
        width: 95%;
    }
    .general-header h4, .general-header h3, .general-header h2, .general-header h1{
        margin: 0;
    }
    .title-progress h2{
        font-size: 1.2rem;
    }
    .add-votation h3{
        margin: 0.3rem;
        font-size: 1rem;
    }
    .add-votation-candidate{
        width: 15rem !important;
        min-width: 15rem !important;
        padding: 0.4rem;
    }
    .candidate-info{
        width: 95%;
        padding: 0.3rem;
    }
    .add-votation-image-section{
        height: 80%;
    }
    .add-votation-image-section img{
        height: 9rem;
    }
    .add-votation-body-two{
        height: 40rem !important;
    }
    .add-votation-candidate img{
        width: 7rem;
    }
    .add-votation-candidate h3{
        font-size: 1rem;
    }
    .white-head h1{
        font-size: 1.1rem;
    }
    .home-container h1{
        font-size: 1.4rem;
    }
    .home-container h2{
        font-size: 1.2rem;
        margin: 0.4rem 0;
    }
    .special-photo{
        width: auto !important;
        height: 11rem !important;
        max-height: 11rem !important;
        border-radius: 0.4rem;
        margin: 1rem 0;
    }
    .add-votation-candidate h3{
        text-align: center;
        margin-bottom: 1rem;
    }
}

@media screen and (max-width:1408px) and (max-height:730px){
    .dinamic-content{
        height: 82vh !important;
    }
    .add-votation-candidate{
        width: 14rem !important;
        min-width: 14rem !important;
    }
}
/* telefono */
@media screen and (max-width:500px) and (max-height:900px){
    h1{
        font-size: 1.1rem !important;
        margin: 0.28rem 0;
    }
    h2{
        font-size: 1rem !important;
        margin: 0.28rem 0;
    }
    h3{
        font-size: 0.95rem !important;
        margin: 0.28rem 0;
    }
    p, h4{
        font-size: 0.9rem !important;
        margin: 0.28rem 0;
    }
    .home-container{
        width: 100%;
    }
    .welcome-container{
        width: 95%;
    }
    .welcome-subcontainer{
        width: 95%;
    }
    .alert{
        width: 90%;
        right: 0;
        bottom: 1rem;
    }
    .general-topbar-section .menu nav > ul{
        padding: 0;
    }
    .general-topbar-section .menu nav ul li ul{
        width: 140px;
    }
    .general-topbar-section .menu nav  ul  li:focus >  ul{
        opacity: 1;
        top: 3rem;
        display: flex;
        transition: all 0.4s ease !important;
    }
    .general-topbar-section .menu nav  ul  li:active >  ul{
        opacity: 1;
        top: 3rem;
        display: flex;
        transition: all 0.4s ease !important;
    }
    .add-votation-candidate{
        width: 15rem !important;
        min-width: 15rem !important;
    }
    .magic-appear{
        display: flex;
    }
    .magic-disappear{
        display: none;
    }
    .hola{
        height: 2rem !important;
    }
    .general-topbar{
        height: 6rem !important;
    }
    .dinamic-content{
        height: 97vh !important;
    }
    .add-votation{
        height: 40rem !important;
        max-height: 40rem !important;
        width: 98% !important;
    }
    .add-candidate{
        padding: 1rem 0;
    }
    .modal-content{
        width: 100%;
        right: 0;
    }
    .modal .btn{
        width: 40%;
    }
    .add-votation-done{
        min-height: 20rem !important;
    }
    .add-votation-done .btn{
        width: 80% !important;
    }
    .final-votation{
        width: 90%;
    }
    .fluid-content-two{
        align-items: flex-start;
    }
    .pagination-apartment{
        flex-flow: column;
    }
    .pagination-subapartment{
        width: 100%;
    }
    .pagination-subapartment label{
        margin: 1rem 0;
    }
    .pagination-subapartment select{
        width: 80%;
    }
}

@media screen and (max-width: 380px) and (max-height: 670px) {
    .add-votation{
        height: 34rem !important;
        max-height: 34rem !important;
    }
    .add-votation-image-section{
        max-height: 10rem;
    }
}
/* landscape mode */
@media screen and (max-width: 850px) and (max-height: 430px) {
    .pagination-apartment{
        flex-flow: column;
    }
    .pagination-subapartment{
        width: 100%;
    }
    .pagination-subapartment label{
        margin: 1rem 0;
    }
    .pagination-subapartment select{
        width: 80%;
    }
}

.special-photo{
    width: auto !important;
    height: 15rem;
    max-height: 15rem;
    border-radius: 0.4rem;
    margin: 1rem 0;
}
.add-votation-candidate h3{
    text-align: center;
    margin-bottom: 1rem;
}
.final-supertotal{
    background-color: #BE8C29;
    color: white;
    padding: 0.5rem;
}

.invent-component{
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-flow: ROW nowrap;
    height: 100%;
}
.apart-two-another{
    height: 100%;
    max-height: 33rem;
    margin-right: 0.2rem;
    width: 30% !important;
}
.apartment-invent-component{
    width: 70%;
    display: flex;
    align-items: center;
    justify-content: center;
    height: 100%;
}