.page .form-file {
    padding-right: 45px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    position: relative;
}
.page .form-file p {
    margin-bottom: 0;
    margin-right: 34px;
    font-family: 'Roboto', sans-serif;
    font-weight: 400;
    font-size: 14px;
    line-height: 15px;
    color: #9098B1;
}

.page .form-file__input {
	width: 0.1px;
	height: 0.1px;
	opacity: 0;
	overflow: hidden;
	position: absolute;
	z-index: -1;
}

.page .form-file label {
    max-width: 165px;
    min-width: 165px;
    width: 100%;
    height: 33px;
    margin-bottom: 0;
    padding: 2px 0 2px 40px;
    border-radius: 20px;
    border: 1px solid #D3D3D3;
    background-image: url(../../img/upload.svg);
    background-repeat: no-repeat;
    background-size: 14px 14px;
    background-position: 12px center;
    font-family: 'Poppins-Regular';
    font-size: 12px;
    line-height: 13px;
    color: #D3D3D3;
    display: inline-flex;
    justify-content: flex-start;
    align-items: center;
    overflow: hidden;
}

.page .form-file label span {
    padding: 10px 0;
    min-width: 300px;
}

.page .form-file label {
	cursor: pointer; /* "hand" cursor */
}

.page .form-file__input:focus + span {
	outline: 1px dotted #000;
	outline: -webkit-focus-ring-color auto 5px;
}

.page .form-file label * {
	pointer-events: none;
}

.page .form-file .form-file__delete {
    width: 16px;
    height: 16px;
    background-image: url(../../img/close-red.svg);
    background-repeat: no-repeat;
    background-size: 10px 10px;
    background-position: center;
    position: absolute;
    top: calc(50% - 8px);
    right: 0;
    display: none;
}

/* active */
.page .form-file label.active {
    border: 1px solid #53D1B6;
    background-image: url(../../img/upload-green.svg);
    color: #53D1B6;
}