﻿

/*analysis*/

.analysis {
    display: grid;
    align-content: center;
    height: 100%;
    background: linear-gradient(rgba(0, 0, 0, 0.85) 0%,rgba(0, 0, 0, 0.85) 100%), url(../assets/analysis-background.webp);
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.analysis__tabs {

}

.analysis__inner {
    width: 70%;
    background-color: #ffffff;
    border-radius: 5px;
}

.analysis__text {
    background: url(../assets/security-icon.svg);
    background-position: center;
    background-repeat: no-repeat;
    width: 70%;
    margin: 0px auto;
    padding-top:30px;
    padding-bottom:30px;
    font-weight: 400;
    text-align: center;
    font-size: 15px;
    color: #041554;
}

.analysis__sections {
    padding: 10px;
}

.analysis__section {
    display:none;
}

.analysis__section--active{
    display:block;
}

.analysis__section-logo {
    display: block;
    height: 100px;
    margin: 15px auto;
}

.section-form__content {
    position: relative;
}

.section-form__input {
    height: 60px;
    width: 100%;
    padding-left: 15px;
    border-radius: 5px;
    background: #FFFFFF;
    border: 1px solid rgba(0, 0, 0, 0.1);
    box-sizing: border-box;
    box-shadow: 0px 10px 20px rgb(0 0 0 / 25%);
    outline:none;
}

.section-form__button {
    position: absolute;
    transform: translate(-50%, -50%);
    top: 50%;
    right: 0;
    border: none;
    background: none;
    font-size: 20px;
}

.section-form__button:focus {
    outline: none;
}

.section-form__text {
    font-size: 20px;
    color: #041554;
    text-align: center;
    font-weight: 700;
}

.file-form__content {

}

.file-form__input--hidden {
    display:none;
}

.file-form__label {
    width: 250px;
    margin: 10px auto;
}

    .file-form__label .icon:before {
        content: "\f093"
    }

    .has-file .icon:before {
        content: "\f00c";
        color: #5AAC7B
    }

.file-form__file-name {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    font-weight: 700;
    padding-left: 5px;
}

.file-form__button {
    width: 250px;
    margin: 10px auto;
}

@media (max-width: 992px) {
    .analysis__inner {
        width: 100%;
    }
}

@media (max-width: 768px) {

    .analysis__tabs {
        grid-template-columns: auto;
        text-align: center;
        justify-content: center;
    }

    .analysis__section-logo {
        display: none;
    }

    .analysis__text {
        width: 80%;
        font-size: 13px;
        padding: 20px 0px;
    }
}





