* {
    font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
}
html {
    height: 100%;
    display: flex;
    justify-content: center;
}
body {
    display: flex;
    background-color: #EEFDFF;
}
.wrapper {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-around;
}
/*.ui-toolbar-after-title-buttons {*/
/*    margin: auto;*/
/*}*/
.ui-btn-text {
    text-transform: uppercase;
    text-align: center;
    background-color: #bbed21;
    overflow: hidden;
    max-width: 180px;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: block;
    padding: 18px;
    border-radius: 7px;
    color: #525c69;
    cursor: pointer;
    transition: .2s;
}
.ui-btn-text--fetch {
    text-transform: uppercase;
    text-align: center;
    background-color: rgb(128, 128, 128);
    overflow: hidden;
    max-width: 180px;
    white-space: nowrap;
    text-overflow: ellipsis;
    display: block;
    padding: 18px;
    border-radius: 7px;
    color: #525c69;
    cursor: default;
}
.ui-btn-text:hover {
    background-color: #d2f95f;
}
.add-document-button {
    font-size: 15px;
    font-weight: 600;
    text-transform: none;
}

.title {
    font-weight: bold;
    text-transform: uppercase;
    font-size: 30px;
    text-align: center;
    max-width: 800px;
    color: #525c69;
}

.progress-block-and-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.progress-block {
    margin-top: 30px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.progress-block--companies-info {
    margin-top: 25px;
}

.progress-block--info {
    display: flex;
    gap: 10px;
}

.progress-block--deals {
    margin-top: 30px;
}

.progress-block--title-point {
    font-weight: 600;
    font-size: 22px;
    color: #525C69;
}
.progress-block--status .value {
    font-weight: 500;
}
.progress-block span.value {
    font-size: 22px;
    color: #525C69;
}

.progress-block--log a{
    font-size: 22px;
    color: #006FFF;
    text-decoration: none;
}
.progress-block--log a:hover {
    text-decoration: underline;
}

.final-progress-block {
    color: #525C69;
    font-size: 22px;
    text-align: center;
    margin-top: 20px;
}

.days-without-communication-field {
    margin-bottom: 30px;
}
.days-without-communication-field label {
    display: flex;
    align-items: center;
    gap: 5px;
}
.days-without-communication-field span {
    font-weight: bold;
    font-size: 22px;
    color: #525C69;
}
.days-without-communication-field input {
    padding: 10px;
    font-size: 16px;
    border-radius: 7px;
    border: 1px #525C69 solid;
    color: #525C69;
}
.days-without-communication-field input:focus {
    outline: none; 
}