.buttn {
    display: inline-block;
    text-align: center;
    white-space: nowrap;
    vertical-align: middle;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    border: 1px solid transparent;
    padding: 7px 25px;
    font-size: 15px;
    line-height: 1.5;
    border-radius: 8px;
    transition: color .15s ease-in-out,background-color .15s ease-in-out,border-color .15s ease-in-out,box-shadow .15s ease-in-out;
    cursor: pointer;
    text-decoration: none;
}
.buttn:hover {
    text-decoration: none;
}

.buttn-red {
    background: #BC1A19;
    color: white;
}
.buttn-red:hover {
    background: #921110;
    color: white;
}

/* RED BUTTON */
.buttn-primary {
    background-color: #d40000;
    color: white;
    text-decoration: none;
}
.buttn-primary:hover {
    background: #b50000;
    color: white;
    text-decoration: none;
}

/* GRAY BUTTON */
.buttn-second {
    background: #B4B4B4;
    color: white;
    text-decoration: none;
}
.buttn-second:hover {
    background: #9b9b9b;
    color: white;
    text-decoration: none;
}

/* BUTTON IN FORM */
.buttn-gray {
    padding: 11px 12px 10px 12px;
    border: 1px solid #e9ecef;
    border-radius: 5px;
    background: #EFEFEF;
    width: 100%;
    margin: 5px 0;
    color: #212529;
}
.buttn-gray:hover {
    border: 1px solid #d40000;
    color: #d40000;
}

.form-check {
    padding: 11px 10px 11px 40px;
    border: 1px solid #e9ecef;
    border-radius: 5px;
    background: #EFEFEF;
    width: 100%;
    margin: 5px 0;
}
.form-check.no-border {
    padding: 0;
    border: none;
    border-radius: 5px;
    background: initial;
    width: 100%;
    margin: 5px 0;
}
.form-file {
    padding: 12px 12px 12px 30px;
    border: 1px solid #e9ecef;
    border-radius: 5px;
    background: #EFEFEF;
    width: 100%;
    margin:5px 0;
    background-image: url("/local/templates/personal/img/ico-file.svg");
    background-repeat: no-repeat;
    background-position: left 10px center;
    background-size: 14px;
}
.form-file-action {
    white-space: nowrap;
    overflow: hidden;
    width: 100%;
    display: block;
    text-overflow: ellipsis;
}