@import '../../../root/css/root.css';

.requirements-to-home-link_wrapper {
    margin: 0 0 50px 0;
}

/* ___general-require-section___ */
.general-require-section {
    display: flex;
    flex-direction: column;
    margin: 135px 0 135px 0;
}

.general-require-main_wrapper {
    display: flex;
    flex-direction: column;
    align-self: center;
    width: 1810px;
}

@media all and (max-width: 1810px) {
    .general-require-main_wrapper {
        width: 100%;
    }
}

.general-require-text-block {
    margin: 0 var(--main-indent) 35px var(--main-indent);
}

.general-require-li {
    margin: 0 0 0 35px;
}

/* ___abstract-structure-section___ */
.abstract-structure-section {
    display: flex;
    flex-direction: column;
    margin: 0 0 130px 0;
}

.abstract-structure-main_wrapper {
    display: flex;
    flex-direction: column;
    align-self: center;
    width: 1810px;
}

@media all and (max-width: 1810px) {
    .abstract-structure-main_wrapper {
        width: 100%;
    }
}

.abstract-structure-text-block {
     margin: 0 var(--main-indent) 35px var(--main-indent);
 }

.abstract-structure-li {
    margin: 0 0 0 35px;
}

.abstract-structure-downloads {
    display: flex;
    flex-direction: column;
    margin: 0 var(--main-indent) 0 var(--main-indent);
}

.download-sample_wrapper, .download-require_wrapper, .download-agreement_wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    align-self: flex-start;
    text-decoration: none;
    cursor: pointer;
}

.download-sample_wrapper, .download-require_wrapper {
    margin: 0 0 20px 0;
}

.download-text {
    font-family: Inter-Medium, sans-serif;
    font-size: 24px;
    font-weight: 100;
    color: var(--blue-color);
    margin: 0 0 0 10px;
}

/* ___send-file______________________________________________*/
/*_________________________________________________________*/

/* ___send-file-SECTION___ */
.send-file-section {
    display: flex;
    flex-direction: column;
    justify-content: center;
    margin: 95px 0 110px 0;
}

.send-file-main_wrapper {
    display: flex;
    flex-direction: column;
    align-self: center;
}

@media all and (max-width: 1610px) {
    .send-file-main_wrapper {
        width: 100%;
    }
}

/* ___send-file___ */
.send-file_wrapper {
    display: flex;
    flex-direction: column;
}

/* ___send-file-items___ */
.send-file-items {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    width: 1810px;
    margin: 0 0 20px 0;
}

@media all and (max-width: 1810px) {
    .send-file-items {
        display: flex;
        flex-direction: row;
        flex-wrap: wrap;
        width: 100%;
    }
}

.send-file-items-form {
    display: flex;
    flex-wrap: wrap;
    width: 100%;
}

.send-file-items-form.hidden {
    display: none;
}

.send-file-item {
    width: 45%;
    margin: 40px 2.5% 40px 2.5%;
}

.send-file-item-title {
    font-family: Exo2-Medium, sans-serif;
    font-size: 32px;
    font-weight: 100;
    color: var(--dark-text-color);
    margin: 0 0 20px 0;
}

.send-file-item-input {
    font-family: Inter-Medium, sans-serif;
    font-size: 24px;
    font-weight: 100;
    color: var(--dark-text-color);
    width: 100%;
    height: 73px;
    border: 2px solid var(--blue-color) ;
    box-sizing: border-box;
    padding: 0 0 0 22px;
}

.add-file-item-label {
    display: inline-block;
    width: 100%;
}

.send-file-item-input::placeholder {
    font-family: Inter-Regular, sans-serif;
    font-size: 22px;
    font-weight: 100;
    color: var(--light-text-color);
}

.send-file-item-input.invalid {
    border: 2px solid var(--red-color);
}

.add-file-item-input {
    position: absolute;
    z-index: -1;
    opacity: 0;
    display: block;
    width: 0;
    height: 0;
    border: 0;
    padding: 0;
}

.add-file-item-input-btn {
    display: inline-flex;
    align-items: center;
    font-family: Inter-Regular, sans-serif;
    font-size: 22px;
    font-weight: 100;
    text-align: center;
    color: var(--white-color);
    background: var(--blue-color);
    cursor: pointer;
    height: 73px;
    padding: 0 22px 0 22px;
}

.add-file-item-label:hover .add-file-item-input-btn {
    transition: var(--transition);
    background: var(--hover-color);
}

.add-file-item-label:not(:hover) .add-file-item-input-btn {
    transition: var(--transition-not);
    background: var(--blue-color);
}

.add-file-item-input-text {
    font-family: Inter-Regular, sans-serif;
    font-size: 22px;
    font-weight: 100;
    color: var(--light-text-color);
    padding: 0 0 0 18px;
}

.send-file-item-warning {
    font-family: Inter-Regular, sans-serif;
    font-size: 20px;
    font-weight: 100;
    color: var(--red-color);
    margin: 8px 0 0 0;
}

.send-file-item-buttons_wrapper {
    display: flex;
    flex-direction: row;
    align-items: center;
    width: 70%;
}

.send-file-item-button-label {
    display: block;
    position: relative;
    user-select: none;
}

.send-file-item-button-label input {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    cursor: pointer;
    height: 0;
    width: 0;
}

.send-file-item-button-label:first-child .send-file-item-button {
    margin: 0 10px 0 0;
}

.send-file-item-button-label:last-child .send-file-item-button {
    margin: 0 10px 0 0;
}

.send-file-item-button {
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: Exo2-Medium, sans-serif;
    font-size: 32px;
    font-weight: 100;
    color: var(--blue-color);
    width: 70px;
    height: 70px;
    border: 2px solid var(--blue-color);
    background: var(--white-color);
    border-radius: 100%;
    margin: 0 10px 0 10px;
    cursor: pointer;
}

.send-file-item-button-label input:checked ~ .send-file-item-button {
    background: var(--blue-color);
    color: var(--white-color);
}

.send-file-item-button-text {
    font-family: Exo2-Medium, sans-serif;
    font-size: 32px;
    font-weight: 100;
    color: var(--blue-color);
}

.send-file-item-button-label input:checked ~ .send-file-item-button .send-file-item-button-text {
    color: var(--white-color);
}

.send-file-button {
    font-family: Exo2-Medium, sans-serif;
    font-size: 32px;
    font-weight: 100;
    color: var(--white-color);
    width: 100%;
    height: 73px;
    background: var(--blue-color);
    align-self: center;
    border: none;
    outline: none;
    cursor: pointer;
    margin: 0 2.5% 0 2.5%;
}

.send-file-execute-message {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    margin: 40px 0 0 0;
}

.send-file-execute-message.active {
    display: flex;
}

.send-file-execute-message-title_wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin: 0 0 85px 0;
}

.send-file-execute-message-title {
    font-family: Exo2-Medium, sans-serif;
    font-size: 32px;
    font-weight: 100;
    color: var(--blue-color);
    margin: 10px 0 0 0;
}

.send-file-execute-message-data_wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.send-file-execute-message-data-text {
    font-family: Inter-Regular, sans-serif;
    font-size: 22px;
    font-weight: 100;
    color: var(--light-text-color);
    margin: 0 0 20px 0;
}

@media all and (max-width: 1610px) {
    .send-file-section {
        margin: 79px 0 91px 0;
    }

    .send-file-item {
        margin: 33px 2.5% 33px 2.5%;
    }

    .send-file-item-title {
        font-size: 26px;
        margin: 0 0 16px 0;
    }

    .send-file-item-input {
        font-size: 20px;
        height: 60px;
        padding: 0 0 0 18px;
    }

    .send-file-item-input::placeholder {
        font-size: 18px;
    }

    .add-file-item-input-btn {
        font-size: 18px;
        height: 73px;
        padding: 0 18px 0 18px;
    }

    .add-file-item-input-text {
        font-size: 18px;
        padding: 0 0 0 15px;
    }

    .send-file-item-warning {
        font-size: 16px;
    }

    .send-file-item-button {
        font-size: 26px;
        width: 58px;
        height: 58px;
    }

    .send-file-item-button:first-child {
        margin: 0 8px 0 0;
    }

    .send-file-item-button-text {
        font-size: 26px;
    }

    .send-file-button {
        font-size: 26px;
        height: 60px;
    }

    .send-file-execute-message-title_wrapper {
        margin: 0 0 72px 0;
    }

    .send-file-execute-message-title {
        font-size: 27px;
        margin: 8px 0 0 0;
    }

    .send-file-execute-message-data-text {
        font-family: Inter-Regular, sans-serif;
        font-size: 18px;
        margin: 0 0 16px 0;
    }
}

@media all and (max-width: 1450px) {
    .send-file-section {
        margin: 71px 0 82px 0;
    }

    .send-file-item {
        margin: 30px 2.5% 30px 2.5%;
    }

    .send-file-item-title {
        font-size: 23px;
        margin: 0 0 14px 0;
    }

    .send-file-item-input {
        font-size: 18px;
        height: 54px;
        padding: 0 0 0 16px;
    }

    .send-file-item-input::placeholder {
        font-size: 16px;
    }

    .add-file-item-input-btn {
        font-size: 16px;
        height: 54px;
        padding: 0 16px 0 16px;
    }

    .add-file-item-input-text {
        font-size: 16px;
        padding: 0 0 0 13px;
    }

    .send-file-item-warning {
        font-size: 14px;
    }

    .send-file-item-button {
        font-size: 23px;
        width: 52px;
        height: 52px;
        margin: 0 10px 0 10px;
    }

    .send-file-item-button:first-child {
        margin: 0 7px 0 0;
    }

    .send-file-item-button-text {
        font-size: 23px;
    }

    .send-file-button {
        font-size: 23px;
        height: 54px;
    }

    .send-file-execute-message-title_wrapper {
        margin: 0 0 60px 0;
    }

    .send-file-execute-message-title {
        font-size: 22px;
        margin: 7px 0 0 0;
    }

    .send-file-execute-message-data-text {
        font-family: Inter-Regular, sans-serif;
        font-size: 15px;
        margin: 0 0 13px 0;
    }
}

@media all and (max-width: 1240px) {
    .send-file-section {
        margin: 20px 0 70px 0;
    }

    .send-file-item {
        margin: 25px 2.5% 25px 2.5%;
    }

    .send-file-item-title {
        font-size: 19px;
        margin: 0 0 11px 0;
    }

    .send-file-item-input {
        font-size: 15px;
        height: 46px;
        padding: 0 0 0 13px;
    }

    .send-file-item-input::placeholder {
        font-size: 13px;
    }

    .add-file-item-input-btn {
        font-size: 13px;
        height: 46px;
        padding: 0 13px 0 13px;
    }

    .add-file-item-input-text {
        font-size: 13px;
        padding: 0 0 0 11px;
    }

    .send-file-item-warning {
        font-size: 12px;
    }

    .send-file-item-button {
        font-size: 19px;
        width: 44px;
        height: 44px;
        margin: 0 6px 0 6px;
    }

    .send-file-item-button-label:first-child .send-file-item-button {
        margin: 0 6px 0 0;
    }

    .send-file-item-button-text {
        font-size: 19px;
    }

    .send-file-button {
        font-size: 19px;
        height: 46px;
    }

    .send-file-execute-message-title_wrapper {
        margin: 0 0 60px 0;
    }

    .send-file-execute-message-title {
        font-size: 22px;
        margin: 7px 0 0 0;
    }

    .send-file-execute-message-data-text {
        font-family: Inter-Regular, sans-serif;
        font-size: 15px;
        margin: 0 0 13px 0;
    }
}

@media all and (max-width: 1015px) {
    .send-file-main_wrapper {
        width: 100%;
    }

    .send-file-items {
        flex-direction: column;
        align-items: center;
    }

    .send-file-item {
        width: calc(100% - var(--main-indent)*2);
        margin: 25px var(--main-indent) 25px var(--main-indent);
    }

    .send-file-button {
        width: calc(100% - var(--main-indent)*2);
        margin: 0 var(--main-indent) 0 var(--main-indent);
    }
}

@media all and (max-width: 840px) {
    .send-file-item {
        margin: var(--main-indent);
    }
}

/* @media*/
@media (max-width: 1610px) {
    .requirements-to-home-link_wrapper {
        margin: 0 0 41px 0;
    }

    .general-require-section {
        margin: 112px 0 112px 0;
    }

    .abstract-structure-section {
        margin: 0 0 110px 0;
    }

    .general-require-text-block, .abstract-structure-text-block {
        margin: 0 var(--main-indent) 30px var(--main-indent);
    }

    .general-require-li, .general-require-li {
        margin: 0 0 0 30px;
    }

    .download-sample_wrapper, .download-require_wrapper {
        margin: 0 0 17px 0;
    }

    .download-image {
        width: 39px;
        height: 39px;
    }

    .download-text {
        font-size: 20px;
        margin: 0 0 0 8px;
    }
}

@media (max-width: 1450px) {
    .requirements-to-home-link_wrapper {
        margin: 0 0 37px 0;
    }

    .general-require-section {
        margin: 101px 0 101px 0;
    }

    .abstract-structure-section {
        margin: 0 0 99px 0;
    }


    .general-require-text-block, .abstract-structure-text-block {
        margin: 0 var(--main-indent) 27px var(--main-indent);
    }

    .general-require-li, .general-require-li {
        margin: 0 0 0 27px;
    }

    .download-sample_wrapper, .download-require_wrapper {
        margin: 0 0 15px 0;
    }

    .download-image {
        width: 35px;
        height: 35px;
    }

    .download-text {
        font-size: 18px;
        margin: 0 0 0 7px;
    }
}

@media (max-width: 1240px) {
    .requirements-to-home-link_wrapper {
        margin: 0 0 31px 0;
    }

    .general-require-section {
        margin: 85px 0 85px 0;
    }

    .abstract-structure-section {
        margin: 0 0 84px 0;
    }

    .general-require-text-block, .abstract-structure-text-block {
        margin: 0 var(--main-indent) 23px var(--main-indent);
    }

    .general-require-li, .general-require-li {
        margin: 0 0 0 23px;
    }

    .download-sample_wrapper, .download-require_wrapper {
        margin: 0 0 13px 0;
    }

    .download-image {
        width: 30px;
        height: 30px;
    }

    .download-text {
        font-size: 15px;
        margin: 0 0 0 6px;
    }
}
