.btn-enr {
    position: absolute;
    bottom: 10px;
    border-color:transparent;
    background-color: transparent;
    border-radius: 30px;
    height: 42px;
    color:white;
    font-weight: 400;
}
.btn-enr:hover,
.btn-enr-access:hover {
    background-color: white;
    color: var(--color-btn);
}

.chat__text {
    white-space: pre-wrap; 
    word-break: break-word; 
}
.btn-enr-access {
    position: absolute;
    bottom: 10px;
    border-color:transparent;
    background-color: white;
    border-radius: 30px;
    height: 42px;
    color: green;
    font-weight: 700;
}

.btn-delete {
    border: none;
    color: var(--color-grey);
    background-color: transparent;
    display: block;
    position: absolute;
    right: 0;
    padding: 7px 15px;
    top: 0;
}

.btn-delete:hover {
    color: white;
    background-color:var(--color-red);   
}

.chat,
.crypto__info {
    border-radius: 3px;
    border: 1px solid var(--color-grey);
    padding: 25px;
}

.crypto__info {
    text-align: justify;
}

.crypto__info,
.crypto__alert {
    margin-top: 25px;
}

.crypto__description {
    margin-top: 10px;
}

.crypto__list p {
    margin-top: 30px;
}

.crypto__alert-title {
   color: var(--color-red);
   margin-bottom: 10px;
}

.chat__message {
    max-width: 85%;
    background: var(--color-dark);
    padding: 15px 10px 10px 15px;
    color: #fff;
    border-radius: 20px;
    margin-bottom: 20px;
    transition: all .4s ease-out;
    position: relative;
}

.chat__message--revers {
    margin-left: auto;
    background: var(--color-link);
    color: #fff;
}

.chat__window {
    margin-bottom: 25px;
    min-height: 500px;
    max-height: 500px;
    overflow: auto;
}

.chat__user {
    max-width: 250px;
    border-radius: 30px;
    background: #fff;
    color: var(--color-dark);
    font-size: 14px;
    text-align: center;
    line-height: 16px;
    padding: 5px 10px;
    margin-left: auto;
}

.chat-attachment__item {
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: var(--color-white);
    padding-left: 50px;
    position: relative;
    margin: 5px 0;
    min-height: 35px;
    line-height: 1.2;
    text-decoration: none;
}

.chat-attachment__item:hover {
    color: var(--color-white);
}

.chat-attachment__size {
    font-size: 12px;
    line-height: 16px;
}

.chat-attachment__item:hover .chat-attachment__name{
    text-decoration: underline;
}

.chat-attachment__icon {
    font-size: 19px;
    width: 35px;
    position: absolute;
    left: 5px;
    height: 35px;
    top: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: #fff;
    color: var(--color-dark);
}

.chat__btn {
    margin-top: 10px;
    display: block;
    position: relative;
}

.chat__btn-user {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}



.chat__btn-title.chat__btn-title_nomrg {
    margin: 0;
}

.chat__btn-title {
    display: inline-block;
    margin-top: 5px;
}

.chat__btn > * {
    margin-bottom: 10px;
}

.uk-select {
    width: auto;
}

.uk-button {
    margin-top: 10px;
}

.chat__crypto {
    margin: 20px 0 0 0;
}

.uk-alert-success p {
    margin-bottom: 0;
    color: green;
    font-weight: bold;
}

.uk-alert-danger {
    color: var(--color-red);
    margin-bottom: 0;
    font-weight: bold;
}

.uk-list-title {
    display: none;
    margin: 20px 0 0 0;
    font-weight: bold;
}

.uk-list-title.active {
    display: block;
}


.chat__controls {
    text-align: right;
    margin-top: 15px;
}

.chat__controls .btn {
    width: 220px;
    text-align: center;
}

.chat__form {
    display: flex;
    justify-content: space-between;
}

.chat__textarea textarea::placeholder {
    color: var(--color-grey);
}
.chat__textarea textarea{
    width: 100%;
    height: 100px;
    border: 1px solid var(--color-grey);
    background: var(--color-grey-v2);
    padding: 10px;
}

.form-message {
    position: relative;
}

.alert-chat {
    position: absolute;
    right: 0;
    bottom: -15px;
    margin: 0;
    padding: 0;
    border: none;
}

.hidden {
    display: none;
}

.textarea-mesage.is-active {
    border: 1px solid var(--color-red);
}

.chat-attachment {
    font-size: 14px;
    margin-top: 20px;
    margin-bottom: 10px;
}


@media (max-width: 575px) {
    .chat__message {
        width: 93%;
        max-width: 93%;
        line-height: 16px;
    }

    .chat {
        padding: 10px;
    }

    .chat__user {
        font-size: 10px;
        max-width: 160px;
        padding: 5px;
        line-height: 14px;
    }

}


@media (max-width: 890px) {

}