/*   полноэкранный просмотр */
.fullscreen_container { position: fixed; width: 100%; height: 100%; background-color:  rgba(0,0,0,0.8); z-index: 10000; top: 0; left:0; display: flex; align-items: center ; justify-content: space-around ;   }
.fullscreen_container .close_button_container {color: white; position: fixed; top: 5px; right: 5px; display: flex; cursor: pointer; opacity: 0.8; user-select: none;   }
.fullscreen_container .close_button_container:hover { transform: scale(1.05); opacity: 1; transition: all 0.3s ease;}
.fullscreen_container .fullscreen_centr { background-color: white; min-height: 50px; min-width: 200px; border-radius: 10px; padding: 20px;  }

#close_fullscreen_button { fill: white;width: 30px; height: 30px; margin-left: 10px;   }

.fullscreen_container [data-type="fullscreen_message"] {user-select: none}
