@font-face {
    font-family: 'icomoon';
    src: url('fonts/icomoon.eot?q7a1t3');
    src: url('fonts/icomoon.eot?q7a1t3#iefix') format('embedded-opentype'), url('fonts/icomoon.ttf?q7a1t3') format('truetype'), url('fonts/icomoon.woff?q7a1t3') format('woff'), url('fonts/icomoon.svg?q7a1t3#icomoon') format('svg');
    font-weight: normal;
    font-style: normal;
    font-display: block;
}

[class^="icon-"],
[class*=" icon-"] {
    /* use !important to prevent issues with browser extensions that change fonts */
    font-family: 'icomoon' !important;
    speak: none;
    font-style: normal;
    font-weight: normal;
    font-variant: normal;
    text-transform: none;
    line-height: 1;
    /* Better Font Rendering =========== */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.icon-cross:before {
    content: "\ea0f";
}

.btn {
    text-align: center;
    padding: .6em .8em .8em;
    border: none;
    color: white;
    background: lightgray;
    margin: 5px;
    border-radius: 5px;
    cursor: pointer;
    box-shadow: inset 0 -.2em rgba(0, 0, 0, .2);
    outline: 0;
    transition: .2s;
    will-change: transform;
}

.btn.primary {
    background: #7dc800;
}

.btn.warning {
    background: #ff463b;
}

.btn.duplicado {
    background: #3b6eff;
    ;
}

.btn.aceptable {
    background: #ff7a3b;
}

.btn:active {
    transform: scale(.9);
}

.overlay {
    background: rgba(0, 0, 0, .5);
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: 35px max-content;
    justify-items: center;
    transition: 1.1s ease-in;
    opacity: 0;
    visibility: hidden;
    overflow: hidden;
    z-index: -1;
}

.overlay.active {
    opacity: 1;
    visibility: visible;
    transition: 1.1s ease-in;
    overflow-y: auto;
    z-index: 30;
}

.modal {
    width: 90%;
    background: white;
    padding: 2em;
    border-radius: .5em;
    grid-row: 2 / 3;
    margin: 0 0 30px;
    display: grid;
    grid-row-gap: 20px;
}

@media (min-width: 720px) {
    .modal {
        width: 720px;
    }
}

@media (min-width: 1024px) {
    .modal {
        width: 60%;
    }
}

.modal i#cerrar {
    justify-self: end;
    font-size: 20px;
    color: #444;
}

.modal-container {
    height: 100%;
    display: grid;
    grid-template-columns: 1fr;
    grid-gap: 15px;
    overflow-y: scroll;
    overflow-x: hidden;
    padding: 0 10px;
}

.obj-user>a {
    text-decoration: none;
    justify-self: end;
    font-size: .9em;
    color: rgb(7, 126, 134);
    letter-spacing: 2px;
    font-family: 'Montserrat';
    transition: .2s ease-in;
}

.obj-user>a:hover {
    color: rgba(73, 186, 194, 0.973);
    transition: .2s ease-in;
}

.obj-resumen1>p {
    font-size: 1em;
    font-family: 'arial';
    text-justify: center;
    padding: 0 40px;
    max-height: 180px;
    overflow-y: scroll;
}

.obj-resumen>h3,
.obj-resumen1>h3 {
    font-family: 'Montserrat';
    margin: 8px 0;
}

.obj-resumen>p {
    font-size: 1em;
    font-family: 'Arial';
    text-justify: center;
    padding: 0 40px;
    letter-spacing: 1.5px;
}

.obj-combox {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
}

.item-container-combox>select {
    width: 200px;
    max-width: 200px;
    margin: 5px 15px;
    cursor: pointer;
    border-radius: 15px;
    padding: 8px;
    border: 1px solid #94ac64;
}

.obj-archive {
    display: flex;
    justify-content: center;
}

.item-combox>select {
    max-width: 200px;
    margin: 0 5px;
    cursor: pointer;
    border-radius: 15px;
    padding: 8px;
    border: 1px solid #94ac64;
}

.item-container-combox>select:focus {
    outline: none;
}

.item-archive {
    margin: 0 20px;
}

.item-archive>a {
    text-decoration: none;
    font-size: 50px;
    color: #9a0c0c;
    transition: .2s ease-in;
}

.item-archive>a:hover {
    color: #e61b1b;
    transition: .2s ease-in;
}


/*@keyframes animationIn {*/

@keyframes modalIn {
    0% {
        transform: translateY(-3000px);
    }
    60% {
        transform: translateY(25px);
    }
    75% {
        transform: translateY(-10px);
    }
    90% {
        transform: translateY(5px);
    }
}


/*@keyframes animationOut {*/

@keyframes modalOut {
    0% {
        transform: translateY(5px);
    }
    60% {
        transform: translateY(-10px);
    }
    75% {
        transform: translateY(25px);
    }
    100% {
        transform: translateY(-3000px);
    }
}