.faqList__item {
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    box-shadow: 0 4px 12px 0 #00000029;
    text-decoration: none;
    transition: all 0.5s;
    margin-bottom: 10px;
    border-radius: 7px;

    font-family: 'Circe';
    font-size: 16px;
}
.faqList__item:hover {
    text-decoration: none;
    transition: all 0.3s;
    box-shadow: 0 4px 12px 0 #0000004f;
}

.faqList__item .faqList__question {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    cursor: pointer;
    padding: 15px 20px;
    align-items: center;
    position: relative;
}


.faqList__item .faqList__question span{
    padding-left: 15px;
    color: #4d3e33;
    width: 80%;
}
/**/
.line-stat {
    display: block;
    height: 5px;
    clear: left;
    margin-bottom: 5px;
    padding: 0 7.5px;
    margin-left: auto;
    margin-right: auto;
    border-radius: 3px;
    background-color: #6610f2;
}
.stat-wrap{
    text-align: center;
}
/**/
.fullWidthImage {
    position: fixed;
    left: 0;
    top: 0;
    width: 100vw;
    height: 100vh;
    background: rgba(0,0,0,0.5); /* цвет фона */
}
.fullWidthImage img{
    position: fixed; /* фиксированное положение */
    top: 20%;
    right: 0;
    bottom: 0;
    left: 20%;
    z-index: 1000;
    width: 70vw !important;
}
