.img-block-extra-btns{
    display: flex;
    justify-content: start;
    margin-top: 14px;
}
.img-block-extra-btns div:only-child{
    width: 100%;
}

.img-block-extra-btns > div:not(:only-child):first-child {
    margin-right: 10px;
}
.model-viewer-btn{
    position: relative;
    padding: 4px;
    border: 1px solid #EFF1F2;
    cursor: pointer;
    width: auto;
    background: #F8F8F8;
    display: flex;
    justify-content: center;
    align-items: center;
}
.model-viewer-btn:hover{
    border-color: #559D76;
}
.model-viewer-btn svg{
    display: block;
    height: 30px;
    width: 35px;
    padding: 5px;
    fill:#7C7F85;
    stroke-linecap:round;
    stroke-linejoin:round;
    cursor: pointer;
}
.model-viewer-btn span{
    padding-right: 10px;
}

.model-viewer-wrapper{
    display: flex;
    width: 100%;
    height: 100%;
    justify-content: center;
    align-items: center;
}
.model-viewer-content {
    position: absolute;
    top:0;
    bottom: 0;
    z-index: 9;
    height: 100%;
    width: 100%;
    background-color: #fff;
}


.model-viewer-content model-viewer{
    width: 100%;
    height: 100%;
    background: #fff;
}
.model-viewer-close-wrp{
    text-align: right;
}

@media screen and (min-width: 767px){
    .model-viewer-content{
        max-height: 80vh;
    }
    .img-block-extra-btns div:only-child {
        width: auto;
    }
}