:root{
	--px: 20px;
}

.large1{
	width: calc( 10 * var(--px));
}

.large2{
	width: calc( 20 * var(--px));
}

#body_admin{
    background: #fff;
    overflow-x: hidden;
}

#body_admin html{
    font-family: poppins !important;
}

#body_admin h2, #body_admin h3, #body_admin h4{
    font-weight: 400;
}

#body_admin h1{
    color: #fff;
    font-family: 'Goldman', cursive !important;
    margin: 0;
}

.margin{
	margin: 0 20px;
}

.form-group{
	width: 98%;
}

/* ------------------ Graphiques ------------------ */



.tabcontent a:nth-child(1){
	font-size: 24px;
}

.tabcontent a:nth-child(2){
	font-size: 23px;
}

.tabcontent a:nth-child(3){
	font-size: 22px;
}

.tabcontent a:nth-child(4){
	font-size: 21px;
}

.tabcontent a:nth-child(5){
	font-size: 20px;
}

.tabcontent a:nth-child(6){
	font-size: 19px;
}

.tabcontent a:nth-child(7){
	font-size: 18px;
}

.tabcontent a:nth-child(8){
	font-size: 17px;
}

.tabcontent a:nth-child(9){
	font-size: 16px;
}

.tabcontent a:nth-child(10){
	font-size: 15px;
}

.tabcontent a, .tabcontent a:hover{
	color: inherit;
	text-decoration: none;
}

/* ------------------ Switch ---------------------- */

.form_height{
	width: 300px;
	margin-top: 20px;
}

.checkbox_slider{
	position: absolute;
	top: 50%;
	left: 50%;
	transform: translate(-50%,-50%);
}

.form_height input[type="checkbox"]{
	position: relative;
	width: 120px;
	height: 40px;
	-webkit-appearance: none;
	background: linear-gradient(0deg, #999, #fff);
	outline: none;
	border-radius: 20px;
	box-shadow: 0 0 0 4px #353535, 0 0 0 5px #3e3e3e, inset 0 0 10px rgba(0,0,0,.5), 0 5px 20px rgba(0,0,0,.2), inset 0 0 15px rgba(0,0,0,.1);
}

.form_height input:checked[type="checkbox"]{
	background: linear-gradient(0deg, #6dd1ff, #20b7ff);
	box-shadow: 0 0 2px #6dd1ff, 0 0 0 4px #353535, 0 0 0 5px #3e3e3e, inset 0 0 10px rgba(0,0,0,1), 0 5px 20px rgba(0,0,0,.5), inset 0 0 15px rgba(0,0,0,.2);
	transition: .5s;
}

.form_height input[type="checkbox"]:before{
	content: '';
	position: absolute;
	top: 0;
	left: 0;
	width: 80px;
	height: 40px;
	background: linear-gradient(0deg, #000, #6b6b6b);
	border-radius: 20px;
	box-shadow: 0 0 0 1px #232323;
	transform: scale(.98,.96);
	transition: .5s;
}

.form_height input:checked[type="checkbox"]:before{
	left: 40px;
}

.form_height input[type="checkbox"]:after{
	content: '';
	position: absolute;
	top: calc(50% - 2px);
	left: 65px;
	width: 4px;
	height: 4px;
	background: linear-gradient(0deg, #6b6b6b, #000);
	border-radius: 50%;
	transition: .5s;

}

input:checked[type="checkbox"]:after{
	background: #63cdff;
	left: 105px;
	box-shadow: 0 0 5px #13b3ff, 0 0 15px #13b3ff;
}

.form_height span > p{
	margin: 0 15px;
	font-weight: bold;
	font-size: 20px;
}

.form_height p{
	margin: 3px 0 5px 0;
}

/* -------------------Menu Admin-------------------- */

@import url('https://fonts.googleapis.com/css2?family=Poppins&display=swap');

.headerDecal{
	height: 70px;
}

.wrapper li{
	list-style-type: none;
}

.header{
	z-index: 1;
	background: #22242A;
	position: fixed;
	width: calc(100% - 0%);
	height: 70px;
	display: flex;
    top: 0;
    left: 0;
}
  
.header .header-menu{
	width: calc(100% - 0%);
	height: 100%;
	display: flex;
	justify-content: space-between;
	align-items: center;
	padding: 0 20px;
}

.header .header-menu a:hover{
	text-decoration: none;
}

.header .header-menu .title{
	color: #fff;
	font-size: 25px;
	text-transform: uppercase;
	font-weight: 900;
}

.header .header-menu .title span{
	color: #4CCEE8;
}

.header .header-menu .sidebar-btn{
	color: #fff;
	position: absolute;
	margin-left: 240px;
	font-size: 22px;
	font-weight: 900;
	cursor: pointer;
	transition: 0.3s;
	transition-property: color;
}

.header .header-menu .sidebar-btn:hover{
	color: #4CCEE8;
}

.header .header-menu ul{
	display: flex;
	margin-bottom: 0px;
	list-style: none;
}

.header .header-menu ul li a{
	background: #fff;
	color: #000;
	display: block;
	margin: 0 10px;
	font-size: 18px;
	width: 34px;
	height: 34px;
	text-align: center;
	border-radius: 50%;
	transition: 0.3s;
	transition-property: background, color;
}

.header .header-menu ul li a svg{
	margin-top: 8px;
}

.header .header-menu ul li a:hover{
	background: #4CCEE8;
	color: #fff;
}

.wrapper{
	width: 240px;
    position: fixed;
    z-index: 1;
	top: 70px;
}

.wrapper .sidebar{
	background: #2F323A;
	transition: 0.3s;
	transition-property: width;
	overflow-y: auto;
	height: 100vh;
}

.wrapper .sidebar .sidebar-menu{
	overflow: hidden;
}

.wrapper .sidebar .sidebar-menu .profile p{
	color: #bbb;
	font-weight: 700;
	margin-bottom: 10px;
	margin: 20px 20px;
}

.wrapper .sidebar .sidebar-menu .item{
	overflow: hidden;
	font-size: 0.9rem;
}

.wrapper .sidebar .sidebar-menu .item .menu-btn{
	display: block;
	color: #fff;
	position: relative;
	padding: 20px 20px;
	transition: 0.3s;
	transition-property: color;
}

.wrapper .sidebar .sidebar-menu .item .menu-btn:hover{
	color: #4CCEE8;
	text-decoration: none;
}

.wrapper .sidebar .sidebar-menu .item .menu-btn svg{
	margin:0px 10px;
	font-size: 25px;
}

.wrapper .sidebar .sidebar-menu .item .menu-btn span svg{
	font-size: 10px;
}

.wrapper .sidebar .sidebar-menu .item .menu-btn .drop-down{
	float: right;
	font-size: 12px;
	margin-top: 3px;
}

.wrapper .sidebar .sidebar-menu .item .sub-menu{
	background: #3498DB;
	overflow: hidden;
	max-height: 0;
	transition: 0.3s;
	transition-property: background, max-height;
}

.wrapper .sidebar .sidebar-menu .item .sub-menu a{
	display: block;
	position: relative;
	color: #fff;
	white-space: nowrap;
	font-size: 15px;
	padding: 10px 10px 10px 40px;
	transition: 0.3s;
	transition-property: background;
}

.wrapper .sidebar .sidebar-menu .item .sub-menu a:hover{
	background: #55B1F0;
	text-decoration: none;
}

.wrapper .sidebar .sidebar-menu .item .sub-menu a:not(last-child){
	border-bottom: 1px solid #8FC5E9;
}

.wrapper .sidebar .sidebar-menu .item .sub-menu i{
	padding-right: 20px;
	font-size: 10px;
}

.wrapper .sidebar .sidebar-menu .item:target .sub-menu{
	max-height: 500px;
}

.wrapper .main-container{
	width: (100% - 250px);
	margin-top: 70px;
	margin-left: 250px;
	padding: 15px;
	background: url(background.jpg);
	background-repeat: no-repeat;
	background-size: cover;
	height: 100vh;
	transition: 0.3s;
}

.wrapper.collapse .sidebar{
	width: 70px;
}

.wrapper.collapse .sidebar .profile img,
.wrapper.collapse .sidebar .profile p,
.wrapper.collapse .sidebar a span{
	display: none;
}

.wrapper.collapse .sidebar .sidebar-menu .item .menu-btn{
	font-size: 23px;
}

.wrapper.collapse .sidebar .sidebar-menu .item .sub-menu i{
	font-size: 18px;
	padding-left: 3px;
}

.wrapper.collapse .main-container{
	width: calc(100% - 70px);
	margin-left: 70px;
}

.wrapper .main-container .card{
	background: #fff;
	padding: 15px;
	margin-bottom: 10px;
	font-size: 14px;
}

/* ------------------- Largeur de contenu -------------------- */

.bodyContent{
	width: calc( 100% - 240px);
	margin-left: 240px;
}

/* ------------------- Entete views Admin -------------------- */

.enteteViewAdmin{
	padding: 5px 10px;
	background-color: rgba(135, 206, 250, 0.3);
	border-bottom: solid 2px rgb(135, 206, 250);
	width: 100%;
}

.addArticle>.form-group, .addArticle>button{
    margin: 30px 0 !important;
}

.enteteViewAdminP{
	font-size: 12px;;
}

.countTableau{
	background-color: #343a40;
	height: 50px;
	margin-bottom: 20px;
}

.countTableau div span{
	color: white;
	font-size: 15px;
	line-height: 50px;
	padding-left: 10px;
}

.countTableau div .p{
	color: #343a40;
	padding: 2px 10px;
	background-color: white;
	border-radius: 20px;
}

.recapOrder{
	height:80px;
	padding: 5px 10px;
	background-color: rgba(38, 116, 165, 0.1);
	border: solid 2px rgb(135,206, 250);
	margin-bottom: 10px;
}

.recapOrder .align-items-center{
	height: 60px;
	margin: 0;
}

.recapOrder .recapOrderP{
	margin-left: 5px;
	font-weight: bold;
	font-size: 15px;
}

.recapOrder .recapOrderH3{
	font-size: 18px;
	margin-top: 10px;
	font-weight: bolder;
	color: darkgreen;
}

/* -------------------vue review-------------------- */

#nbrvisit{
	padding: 15px 0;
	margin-left: 2%;
	width: 96%;
}

#nbrvisit .nbrvisitTitre{
	font-size: 20px;
}

#nbrvisit .nbrvisitP{
	font-size: 40px;
	font-weight: 600;

}

.nbrvisit{
	width: 32%;
	margin-right: 2%;
	border: 1px solid rgb(135,206,250);
	background: rgba(135, 206, 250, 0.3);
	border-radius: 5px;
	margin-bottom: 15px;
	padding: 15px 0;
}

.nbrvisit:nth-child(){
	margin-left: 0;
}

.dashboardGraph{
	width: 96%;
	margin-left: 2%;
}

.graphAdmin{
	margin-bottom: 30px;
	width: 32%;
	margin-right: 2%;
}

.nbrIp{
	font-size: 120px;
}

/*---------------- review -------------------*/

.nbrview .margin-tab{
    margin-bottom: 15px !important;
}

/* Style the tab */
.tab {
overflow: hidden;
border: 1px solid #ccc;
background-color: #f1f1f1;
margin-bottom: 5px;
}

/* Style the buttons that are used to open the tab content */
.tab button {
background-color: inherit;
float: left;
border: none;
outline: none;
cursor: pointer;
padding: 14px 16px;
transition: 0.3s;
}

/* Change background color of buttons on hover */
.tab button:hover {
background-color: #ddd;
}

/* Create an active/current tablink class */
.tab button.active {
background-color: #ccc;
}

/* Style the tab content */
.tabcontent {
display: none;
padding: 6px 12px;
border: 1px solid #ccc;
border-top: none;
}

.tabcontent {
animation: fadeEffect 1s; /* Fading effect takes 1 second */
}

/* Go from zero to full opacity */
@keyframes fadeEffect {
from {opacity: 0;}
to {opacity: 1;}
}

#visitor{
height: 305px;
}

/* -------------------vue message-------------------- */

.message p{
	margin-bottom: 10px;
}

.message span{
	margin-bottom: 10px;
}

.message textarea{
	border: none;
	padding: 0;
}

/* -------------------vue addArticle-------------------- */

.listActiveButton{
	width: 90px;
	margin-bottom: 15px;
}

.buttonArticleAction{
	margin-right: 15px;
}

/* -------------------vue message-------------------- */

.reponse{
	margin: 20px 0;
}

.reponse .intermail{
	width: 97%;
	height: 2px;
	border-radius: 1px;
	background-color: var(--grey);
	margin: 20px 15px;
}

.reponse .reponse_date{
	margin-bottom: 20px;
}

.reponse h2{
	color:red;
	text-align: left
}





/* -------------------vue listMessage-------------------- */

thead th, tbody .tableEntete{
	padding-left: 10px;
	text-align: left;
}

tbody .margTop{
	margin-top: 15px;
}

thead th:first-child, thead th:last-child{
	text-align: center;
	padding-left: 0;
}

table{
	width: 98%;
	line-height: 24px;
}

table td{
	padding-left: 10px;
}

table td.textCenter{
	padding-left: 0;
}

.tableSpacer{
	height: 2px;
	background: var(--pink);
	border-radius: 1px;
	margin: 20px 0;
}

.lastTd{
	border: none;
}

.mail{
	margin-top: 5px;
}

/* -------------------vue addArticle-------------------- */

#articlesList .imgArticle{
	width: 100px;
	height: auto;
}

#articlesList .imgActiv{
	width: 15px;
	height: auto;
}

/* -------------------vue addArticle-------------------- */

.nota{
	padding: 20px 50px;
    background-color: rgba(197, 232, 253, 0.3);
    border: solid 2px rgb(135,206, 250);
    border-radius: 15px;
}

.nota img{
	border: 1px solid #fc5130;
}

.nota li{
	line-height: 50px;
}

.positive{
	color: green;
	font-weight: bold;
}

.negative{
	color: red;
	font-weight: bold;
}

/* -------------------vue listTagsArticle-------------------- */

#listTag .tagNbre span{
	color: #fff;
	padding: 2px 10px;
	background-color: #fc5130;
	border-radius: 20px;
}

#listTag .tagNbreNull span, #articlesList td span{
	color: #fc5130;
	padding: 2px 10px;
	border-radius: 20px;
	border: 2px solid #fc5130;
	font-weight: bold;
}

#listTag .tagName span{
	color: #fff;
	padding: 5px 15px;
	background-color: #fc5130;
	border-radius: 5px;
	margin-right: 10px;
	display: inline-block;
	margin-bottom: 15px;
}

#listTag .tagName{
	padding: 15px 0 0 0;
}

.addTags * {
	margin-bottom: 15px;
}

.addTags h2, .addFamily h2{
	margin: 25px 0 50px;
}

.addTags form, .addTags form div{
	margin-bottom: 0;
}

.addTags span, .addFamily span{
	color: #fff;
	padding: 5px 10px 5px;
	background-color: #fc5130;
	border-radius: 5px;
	margin-right: 10px;
	display: inline-block;
	margin-bottom: 15px;
}

.addTags span img, .addFamily span img{
	padding-left: 10px;
	margin-bottom: 2px;
}

.addTags button, .addFamily button{
	margin-bottom: 50px;
}

.addFamily form{
	margin: 0 !important;
}

/* -------------------vue listTagsArticle-------------------- */

.catLink{
	margin-bottom: 10px;
}

/* -------------------vue notation-------------------- */

.postit:before, .postit:after{
	content: "";
	position: absolute;
	bottom: 33px;
	width: 70%;
	height: 70%;
	z-index: -1;
}

.postit:before{
	left: 10px;
	transform: rotate(-4deg) skew(-9deg);
	box-shadow: -10px 20px 9px rgba(0, 0, 0, .4);
}

.postit:after{
	right: 10px;
	transform: rotate(4deg) skew(9deg);
	box-shadow: 10px 20px 9px rgba(0, 0, 0, .4);
}

/* -------------------vue config-admin-------------------- */

.logoSocial{
	width: 40px;
	height:40px;
	padding: 5px;
	border-radius: 5px;
}

.imgLogoSocial{
	width: 30px;
	height: auto;
}

.imgAdvertising{
	width: auto;
	height: 80px;
}

.imgSplit{
	width: 96px;
	height: 80px;
}

.imgUnsplit{
	width: 136px;
	height: 80px;
}

.textUnsplit{
	width: 96px;
}

.textSplit{
	width: 136px;
}

/* -------------------vue mon espace-------------------- */

	/* -------------------générique-------------------- */	

.spaceBottom{
	margin-top: 30px;
	margin-left: 30px;
}

.spaceBottom input, .spaceBottom select{
	margin-top: 10px;
}

/* -------------------vue mon espace-------------------- */

.configBody{
	margin: 0 !important;
}

.configBody h3{
	margin-bottom: 15px;
}

.configBody .galleryImage{
	border-right: 1px solid rgba(0,0,0,.1);
}

.configBody .gallerySelect{
	padding-left: 25px;
}

.configBody .gallery img{
	width: 100%;
}

.configBody .gallery p{
	font-size: 12px;
	text-align: center;
}

.configBody .imageAccueil{
	width: 633px;
	height: 280px;
	background: red;
}

.configBody .setting{
	padding: 0;
}

.configBody .settingSpan{
	border: 2px solid #fc5130;
	border-radius: 18px;
	height: 36px;
	width: 150px;
}

.configBody .quantity input{
	border: none;
	text-align: right;
	width: 40px;
}

.configBody .quantity .min{
	margin-left: 15px;
}

/* -------------------vue fonctionnalités-------------------- */

.selectHexa{
	margin: auto 20px auto 0;
}

.imgHexa{
	border-radius: 4px;
}

.imgPub{
	border-radius: 5px;
}

.leftLittlePub{
	width: 240px;
	height: 400px;
	background-position: left;
}

.rightLittlePub{
	width: 240px;
	height: 400px;
	background-position: right;
}

.fullLittlePub{
	width: 480px;
	height: 400px;
}

.fullBigPub{
	width: 55vw;
	height: auto;
}

.textLeftPub, .textRightPub{
	width: 240px;
}

.textFullPub{
	width: 480px;
}

#modifyAdvertisingButton{
	margin-top: 0 !important;
}

/* -------------------vue spécification-------------------- */

.specifications textarea{
	width: 400px;
}

.specifications input{
	width: 250px;
}

.specifications .euro{
	font-size: 1rem;
	margin: auto 0;
}

.specifications p{
	font-size: 12px;
	margin: 0 1rem 1rem;
}

.specifications #addSpec{
	margin-bottom: 15px;
}

.specifications .articlePrice{
	text-align: center;
	width: 230px;
}

.specifications .articlePrice p{
	margin-bottom: 0;
}

/* -------------------vue footer_admin-------------------- */

.footer_admin{
	height: 20px;
}

.sidebar .mentions{
	text-align: center;
	position: absolute;
	bottom: 60px;
	left: 0;
	width: 100%;
}

.sidebar .mentions p, .sidebar .mentions a{
	font-size: 10px;
	color: #fff;
}

.sidebar .mentions a{
	text-decoration: none;
}

.sidebar .mentions a:hover{
	color: #fff;
}