#interface_copy
{
	position: fixed;
    display: none;
	bottom: 0;
	width: 100%;
	height: 95vh;
	flex-direction: column;
	align-items: center;
	background-color: rgba(0, 0, 0, 0.7);
	backdrop-filter: blur(2px);
	color: white;
	z-index: 2000;
}

#interface_copy h2
{
	height: 10%;
	display: flex;
	justify-content: center;
	align-items: center;
}

#parent_for_copy
{
	height: 90%;
	width: 100%;
	display: flex;
}

.bloc_to_copy
{
	flex: 1;
	height: 100%;
	overflow: hidden;
}

.header_copy
{
	height: 10%;
	width: 100%;
	display: flex;
	justify-content: space-around;
	align-items: center;
}

.btn_copy
{
	height: 3em;
	width: 3em;
	background-color: transparent;
	border: 2px solid white;
	transition: border .1s linear;
	border-radius: 50%;
	position: relative;
}

.btn_copy:hover
{
	border-color: #4FD577;
}

.coche_copy
{
	opacity: 0;
	transition: opacity .3s linear;
}

.btn_copy img
{
	max-width: 60%;
	max-height: 60%;
	display: block;
	transform: translate(-50%, -50%);
	top: 50%;
	left: 50%;
	position: absolute;
}

.copy
{
	height: 90%;
	width: 100%;
	white-space: pre;
	font-family: monospace;
	overflow: scroll;
	padding-left: 1em;
	padding-top: 1em;
}

.croix_gris
{
    position: absolute;
    top: 1vh;
    right: 1vh;
    width: 4.5vh;
    height: 4.5vh;
    background-color: transparent;
    border: none;
    cursor: pointer;
    transform: rotate(45deg);
    z-index: 9000;
}

.croix_gris img
{
    width: 100%;
}

