/* mybox */
	
	.mybox * {
		box-sizing: border-box;
	}

	.mybox {
		position: fixed;
		top: 0; right: 0; width: 100%; height: 100%;
		z-index: 999999996;
	}
		.mybox_overlay {
			position: absolute;
			top: 0; right: 0; bottom: 0; left: 0;
			background: rgba(0, 0, 0, 0.8);
			z-index: 999999997;
		}
		.mybox_loader {
			position: fixed;
			top: 0; right: 0; width: 100%; height: 100%;
			background-repeat: no-repeat;
			background-position: center center;
			z-index: 999999998;
		}
		.mybox_close:after {
			position: absolute;
			top: -0; right: -0;
			padding: 2px 4px 5px 5px;
			background: #fff;
			border-radius: 3px;
			font-size: 1.5em;
			color: rgba(239,83,80 ,1);
			cursor: pointer;
				display: inline-block;
				font-style: normal;
				font-variant: normal;
				text-rendering: auto;
				-webkit-font-smoothing: antialiased;
			font-family: "Font Awesome 5 Free";
			content: "\f00d";
		}
		.mybox_conteneur {
			position: absolute;
			/*top: 50px; left: 50px;*/
			z-index: 999999999;
			background: #fff;
			padding: 10px;
		}
		.mybox_contenu {
		}

	@media screen and ( min-width: 1000px ){
		.mybox_conteneur {
		}

	}