/**
 * Фото
 *
 * @module ls/photo
 *
 * @license   GNU General Public License, version 2
 * @copyright 2013 OOO "ЛС-СОФТ" {@link http://livestreetcms.com}
 * @author    Denis Shakhov <denis.shakhov@gmail.com>
 */

.ls-photo {
    position: relative;
    width: 120px;
    height: 120px;
    margin: 0 auto;
    border-radius: 12px;
    font-size: 28px;
    overflow: hidden;
}

/* Изображение */
.ls-photo-image {
    vertical-align: top;
    max-width: 100%;
}

/* Действия */
.ls-photo-actions {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 0;
    margin: 0;
    background: rgba( 0, 0, 0, .55 );
    opacity: 0;
    -webkit-transition: opacity .2s;
    transition: opacity .2s;
}
.ls-photo-actions li {
    line-height: 32px;
    width: 100%;
    color: #fff;
    font-size: 14px;
    cursor: pointer;
    -webkit-transition: color .2s;
    transition: color .2s;
    opacity: 0.9;
    text-align: center;
}
.ls-photo-actions li label {
  margin: 0;
  cursor: pointer;
  width: 100%;
}
.ls-photo-actions li:hover {
    opacity: 1;
}
.ls-photo:hover .ls-photo-actions {
    opacity: 1;
}

/* @modifier nophoto */
.ls-photo--nophoto .ls-photo-image {
    width: 100%;
    /* border-radius: 12px; */
    /* font-size: 28px; */
}
.ls-photo--nophoto .ls-photo-actions {
    opacity: 1;
}
.ls-photo--nophoto .ls-photo-actions-crop-avatar,
.ls-photo--nophoto .ls-photo-actions-remove {
    display: none;
}

.ls-photo--nophoto .img-acronym{
    width: 100%;
    height: 100%;
    /* border-radius: 12px; */
    /* font-size: 28px; */
}