/*!
 * Clases pertenecientes al elemento file.
 *
 * @author Claudio Lopez - tinet
 * @version 1.0
 */

.container-file {
    width: 100%;
    min-height: 260px;
    padding: 24px 16px;
    border: 1px dashed #99B7C8;
    position: relative;
    margin: 0 auto;
    margin-bottom: 32px;
}
.div-file-uploaded {
    background: #F4F9FC;
}
.container-file input {
    visibility: hidden;
    position: absolute;
    z-index: 2;
    width: 1px;
    height: 1px;
}

.container-file label {
    width: calc(100% - 32px);
    position: absolute;
    bottom: 16px;
    padding-top: 10px;
    padding-bottom: 10px;
    flex-direction: row;
    align-items: flex-start;
    background: #FFFFFF;
    color: #E94951;
    border: 1.5px solid #E94951;
    font-style: normal;
    font-weight: 500;
    font-size: 12px;
    line-height: 15px;
    text-align: center;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    cursor: pointer;
}
.container-file label:disabled {
    border: 1.5px solid #F29297;
    color: #F29297;
}
.container-file label:disabled:hover {
    border: 1.5px solid #F29297;
    color: #F29297;
    opacity: 1;
}
.container-file label:hover {
    border: 1.5px solid #F33F48;
    color: #F33F48;
}
.container-file label:focus {
    border: 1.5px solid #80282C;
    color: #80282C;
    outline:0;
}
.button-file-uploaded {
    border: 1.5px solid #004A75 !important;
    background: #F4F9FC !important;
    color: #004A75 !important;
}

.container-file h3 {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: -0.02em;
    color: #333D47;
    margin-top: 8px;
    margin-bottom: 0;
}

.fileover {
    background: #F4F9FC;
}
.loading-file {
    position: absolute;
    z-index: 3;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: #FFFFFF;
    text-align: center;
}
.loading-file img {
    margin-top: 60px;
    width: 32px;
}
.loading-file h3 {
    font-style: normal;
    font-weight: 300;
    font-size: 13px;
    line-height: 22px;
    text-align: center;
    letter-spacing: 0.02em;
    color: #333D47;    
}
.tooltip {
    background: #333D47 !important;
    font-style: normal !important;
    font-weight: 300 !important;
    font-size: 13px !important;
    line-height: 20px !important;
    letter-spacing: 0.2px !important;
    color: #FFFFFF !important;
    border-radius: 0 !important;
    margin-left: -30px !important;
}
.tooltip > div {
    padding: 9px;
}
.tooltip p {
    text-align: left !important;
}
.tooltip-right:after {
    border-color: transparent #333D47 transparent transparent !important;
}
.tooltip-left:after {
    border-color: transparent transparent transparent #333D47 !important;
}
.tooltip-top:after {
    border-color: #333D47 transparent transparent transparent !important;
}
.tooltip-bottom:after {
    border-color: transparent transparent #333D47 transparent !important;
}

.file-section {
    margin-bottom: 0 !important;
}
.info-tooltip {
    margin-bottom: 50px;
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 18px;
    letter-spacing: -0.02em;
    color: #333D47;
}
.bold {
    font-weight: bold !important;
}
@media (max-width: 768px) {
    .container-file {
        padding: 24px 32px;
        border: 1px solid #99B7C8;
    }
    .container-file label {
        width: calc(100% - 64px);
    }
}
