/* -----  BASE ------  */

[type="checkbox"]:not(:checked),
[type="checkbox"]:checked
{
  	position: absolute;
  	left: -9999px;
}
[type="checkbox"]:not(:checked) + label,
[type="checkbox"]:checked + label 
{
  	display: inline-block;
  	position: relative; 
  	padding-left: 3px; 
  	cursor: pointer; 
  	font-family: Arial;
}
.list > ul > li > div.list-checkbox [type="checkbox"]:not(:checked) + label,
.list > ul > li > div.list-checkbox [type="checkbox"]:checked + label
{
	padding: 2px 15px 0 25px;
}
input[type="checkbox"] + label::before,
.list > ul > li > div.list-checkbox input[type="checkbox"] + label::before
{
    content: '';
	display: block;
    width: 18px;
    height: 18px;
	border-radius: 3px;
    background: url("../images_adm/ico_check_rad.png") no-repeat left top;
	background-size: 36px;
	opacity: 0.7;
}
.list > ul > li > div.list-checkbox input[type="checkbox"] + label::before
{
	position: absolute;
	top: 0;
	left: 0;
	border: none;
}
input[type="checkbox"]:checked + label::before,
.list > ul > li > div.list-checkbox input[type="checkbox"]:checked + label::before
{
    background: url("../images_adm/ico_check_rad.png") no-repeat left bottom;
	background-size: 36px;
	opacity: 0.7;
}
input[type="checkbox"] + label:hover::before
{
	opacity: 1;
}
[type="radio"]:not(:checked),
[type="radio"]:checked
{
	position: absolute;
	left: -9999px;
}
[type="radio"]:not(:checked) + label,
[type="radio"]:checked + label 
{
  display: inline-block;
  position: relative; 
  padding-left: 3px;
  cursor: pointer; 
}
input[type="radio"] + label::before
{
    content: '';
    display: block;
    width: 18px;
    height: 18px;
	border-radius: 3px;
    background: url("../images_adm/ico_check_rad.png") no-repeat -18px top;
	background-size: 36px;
	opacity: 0.7;
}
input[type="radio"]:checked + label::before
{
    background: url("../images_adm/ico_check_rad.png") no-repeat -18px bottom;
	background-size: 36px;
	opacity: 0.7;
}
input[type="radio"] + label:hover::before
{
	opacity: 1;
}
html
{
	
}
body 
{
    margin: auto;
    padding: 0;
    width: 100%;
    background: rgb(249, 249, 249);
	box-sizing: border-box;
}
p 
{
    margin: 0;
}
img 
{
    border: 0;
}
li 
{
   list-style-type: none;
}
ul
{
   margin: 0;
   padding: 0;
}
.container-100
{
	
	width: 100%;
	margin: auto;
}
.container-100-child
{
	width: 100%;
}
@media (min-width: 2560px)
{
	.container-100-child
	{
		margin: auto;
		max-width: 2560px;
	}
}
.flex-container
{
	display: -webkit-box;
	display: -ms-flexbox;
	display: flex;
	-ms-flex-wrap: wrap;
	    flex-wrap: wrap;
}
*
{
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}
input,
textarea,
select
{
	-webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
}
.uppercase
{
	text-transform: uppercase;
}
@media (max-width: 740px) {
	body {
		overflow-x: hidden;
	}
}

/* ----- TOP HEADER -----  */

.admin-header-background
{   
	margin: auto;
	position: fixed;    
	top: 0;
	left: 0;
	width: 100%;
	height: 52px;
	z-index: 88888;
	background-color: rgb(104, 158, 12);
}
.admin-header {
	position: relative;
}
.admin-header > .logo
{
	flex: 1;
}
.admin-header > .logo > a
{
	display: inline-block;
	width: 130px;
	height: 41px;
	margin: 6px 0 0 12px;
	background: url("../images_adm/logo_adm.png") no-repeat;
	background-size: 130px 41px;
	opacity: 0.9;
}
.admin-header > ul
{   
	display: flex;
 	margin-right: 15px;
}
.admin-header > ul > li
{   
	display: inline-flex;
	position: relative;
	margin: 0 10px;
}
.admin-header > ul > li > a,
.admin-header > ul > li > form
{   
	display: block;
	margin: auto 0;
	font-family: Arial;
	color: #ffffff;
	font-size: 0.85em;
	font-weight: bold;
	text-decoration: none;
	opacity:0.9;
	height: 29px;	
}
.admin-header > ul > li > a {
	position: relative;
	display: flex;
	z-index: 3;
}
.admin-header > ul > li > a > svg {
	height: 17px;
	fill: #FFF;
	margin: auto 0;
}
.admin-header > ul > li > a > span
{
	display: none;
	position: absolute;
	right: 0;
	top: 31px;
	font-family: Arial;
	font-size: 0.8em;
	color: #555555;
	background: #FFFFFF;
	border: solid 1px #DDDDDD;
    padding: 7px;
	margin: auto 0;
    opacity: 0.9;
    letter-spacing: 1px;
    z-index: 500;
    font-size: 0.9em;
    font-weight: normal;
}
.admin-header > ul > li > a.home:hover > span {
	display: block;
}
.admin-header > ul > li > a.help:hover > span {
	display: block;
	min-width: 57px;
}
.admin-header > ul > li > a.website:hover > span {
	display: block;
	min-width: 85px;
}
.admin-header > ul > li > a.logout:hover > span {
	display: block;
	min-width: 97px;
}
.admin-header > ul > li > a.config:hover > span {
	display: block;
	min-width: 185px;
}
#mobile-button {
	display: none;
	margin: 11px 10px 0;
	width: 30px;
	height: 30px;
	background: url('../images_adm/mobile_button.png') no-repeat center center;
	background-size: 30px 30px;
	padding: 10px;
	cursor: pointer;
}
#mobile-right-button {
	display: none;
	margin: 0 10px;
	width: 30px;
	height: 52px;
	padding: 16px 10px 10px 10px;
	cursor: pointer;
}
#mobile-right-button span {
	display: block;
	background-color: white;
	width: 5px;
	height: 5px;
	margin: 0 auto;
	border-radius: 5px 5px 5px 5px;
}
#mobile-right-button span:nth-child(2n) {
	margin-top: 4px;
	margin-bottom: 3px;
}
.lang-button img,
.lang-button input
{
	margin-top: 6px;
	height: 17px;
	border: solid 1px #FFFFFF;
}
#adm-flags
{
	display: block;
	position: absolute;
	top: 1px;
	left: -9px;
	opacity: 0;
	z-index: 888888;
	width: 42px;
	height: 41px;
	background: #FFFFFF;
	overflow: hidden;
	margin: 11px 0 0 0;
	-moz-box-shadow: 0px 0px 1px 0px #cfcfcf;
	-webkit-box-shadow: 0px 1px 0px 0px #cfcfcf;
	-o-box-shadow: 0px 0px 1px 0px #cfcfcf;
	box-shadow: 0px 0px 1px 0px #cfcfcf;
	filter:progid:DXImageTransform.Microsoft.Shadow(color=#cfcfcf, Direction=NaN, Strength=5);
	transition: height 0.5s;
}
#adm-flags .li_head_adm_flag
{
	-webkit-transition: background-color 500ms ease-out 1s;
    -moz-transition: background-color 500ms ease-out 1s;
    -o-transition: background-color 500ms ease-out 1s;
    transition: background-color 500ms ease-out 1s;
}
#adm-flags .li_head_adm_flag form
{
	text-align: center;
	margin: 0;
	padding-bottom: 3px;
}
#adm-flags .li_head_adm_flag:hover form input
{
	opacity: 0.6;
}
@media (max-width: 740px) {
	#mobile-button, #mobile-right-button {
		display: block;
	}
	.admin-header > .logo {
		text-align: center;
	}
	#right-menu {
		display: none;
		position: absolute;
		width: 100%;
		background-color: rgb(238, 238, 238);
		top: 52px;
		left: 0;
	}
	#right-menu > li {
		display: block;
		width: 100%;
		margin: 0;
		border-bottom: 1px solid rgba(0, 0, 0, 0.1);
	}
	#right-menu > li:hover {
		background-color: rgba(0, 0, 0, 0.1);
	}
	#right-menu > li > a {
		display: flex;
		width: 100%;
		height: auto;
		margin: 0;
		padding: 10px 15px;
	}
	.admin-header > ul > li > a > svg {
		display: inline-flex;
		fill: rgb(34, 34, 34);
	}
	#right-menu > li > a > span {
		display: block;
		position: static;
		background: transparent;
		border: none;
		font-size: 0.85em;
		color: rgb(34, 34, 34);
		padding: 0 0 0 15px;
		opacity: 1;
	}
	#right-menu > li > #lang-button {
		display: none;
	}
	#adm-flags_wrap {
		padding: 10px 15px;
	}
	#adm-flags {
		position: static;
		display: flex;
		opacity: 1;
		margin: 0;
		width: 100%;
		height: 19px;
		background-color: transparent;
		box-shadow: none;
	}
	#adm-flags .lang-button input {
		margin: 0 15px 0 0;
	}
}
@media (min-width: 741px) {
	#adm-flags:hover {
		display: block;
		opacity: 1;
		height: 155px;
	}
}

/* ----- FORM SIGN IN -----  */

.parent-item-connexion-menu
{
	display: flex;
	width: 100%;
	height: 100vh;
}
.item-connexion-menu
{   
	margin: auto;
	width: 300px;
	border: 1px solid #dedede;
	background: rgb(236, 236, 236);
	padding: 20px 20px 20px;
	text-align: center;
}
.item-connexion-menu > .logo > a
{
	display: inline-block;
	width: 170px;
	height: 54px;
	margin: 0 0 5px 0;
	background: url("../images_adm/logo_adm_conn.png") no-repeat;
	background-size: 170px 54px;
	opacity: 0.9;
}
.item-connexion-menu > p:not(error-txt)
{
	padding: 5px 0;
	font-size: 0.9em;
	font-family: Arial;
	color: #777777;
}
.item-connexion-menu > p > a
{
	font-family : Arial, Helvetica;
    font-size: 1em;
    color: #989898;
    text-decoration: none;
}
.item-connexion-menu > p > a:hover
{
	color: #858585;
}
.item-connexion-menu > input
{
	width: 100%;
	height: 40px;
	font-family : Arial, Helvetica;
    font-size: 0.85em;
    color: #828282;
	border: 1px solid #E4E4E4;
	border-radius: 3px;
	padding-left: 5px;
	margin: 5px 0 0 0;
	font-style: italic;
}
.item-connexion-menu > input[type="submit"]
{
	border: none;
	margin: 10px 0;
	background-color: #777777;
	color: #f5f5f5;
	cursor: pointer;
}
.item-connexion-menu > input[type="submit"]:hover
{
	background-color: #515151;
}
.item-connexion-menu > p > span
{
	font-family: Arial;
	font-size: 0.9em;
	color: #D70116;
	letter-spacing: 0.5px;
}

/* ----- MAIN MENU -----  */

.main-menu
{
	position: fixed;
	top: 52px;
	left: 0;
	width: 300px;
	height: calc(100vh - 52px);
	margin: 0;
	background: rgb(238, 238, 238);
	z-index: 8888;
	overflow: hidden;
}
.item-main-menu
{   
	display: flex;
	width: 285px;
	border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.item-main-menu:hover
{   
	background-color: rgba(0, 0, 0, 0.1);
}
.item-main-menu ul
{
	display: flex;
	flex: 1;
	height: 45px;
    padding: 0 15px 0 0;
    cursor: pointer;
}
.item-main-menu li
{   
	display: inline;
	margin: auto 0;
	font-family: Arial;
	font-size: 0.8em;
}
.item-main-menu a
{   
	font-family: Arial;
	color: #FFFFFF;
	text-decoration: none;
}
.item-main-menu a:hover
{   
	text-decoration: underline;
}
.sub-item-main-menu
{   
	width: 100%;
	border: none;
	margin: auto 0;
	padding: 0;
	background: rgb(255, 255, 255);
}
.sub-item-main-menu li
{   
	border-bottom: 1px solid #e8e8e8;
}
.sub-item-main-menu a
{
	display: table-cell;
	width: 100%;
	height: 45px;
	padding: 0 10px;
	font-family: Arial;
	font-size: 0.75em;
	color: #2D2218;
	text-decoration: none;
	font-weight: normal;
	vertical-align: middle;
}
.sub-item-main-menu a:hover
{
	opacity: 0.8;
}
.icon-item-main-menu
{
	width: 22px;
	margin: auto 5px;
}
.icon-item-main-menu img
{
	max-width: 22px;
	height: auto;
	margin-top: 6px;
}
.icon-more-main-menu
{
	background:url("../images_adm/ico_more.png") top center no-repeat;
	background-size: 8px 16px;
	width: 8px;
	height: 8px;
	margin: auto 10px auto 0;
	font-size: 0.8em;
	font-weight: bold;
	cursor: pointer;
}
#menu-actif .icon-more-main-menu
{
	background-position: bottom center;
}
@media (max-width: 740px) {
	.main-menu {
		left: -300px;
	}
} 

/* ----- INTERNAL BODY -----  */

.internal-body
{   
	width: calc(100% - 300px);
	margin: 92px 0 0 300px;
}
.header-internal-body
{   
    z-index: 1;
    position: fixed;
    background-color: rgb(249, 249, 249);
    top: 52px;
    left: 300px;
	width: 100%;
	height: 44px;
	border-bottom: 1px solid rgb(226, 226, 226);
	font-family: Arial;
	font-size: 0.9em;
	color: #606060;
	letter-spacing: 0.5px;
	font-weight: bold;
	padding: 14px 0 0 15px;
	white-space: nowrap;
}
.body-internal-body
{   
	width: 100%;
	padding: 30px 30px 40px;
}
@media (max-width: 740px) {
	.internal-body
	{
		width: 100%;
		margin-left: 0;
	}
	.header-internal-body
	{
		left: 0;
	}
	.body-internal-body
	{  
		width: 100%;
		padding: 30px 15px 40px;
	}
}

/* ----- PADS HOMEPAGE -----  */

.body-internal-body.pads-wrap
{
	padding-bottom: 10px;
	margin: auto;
}
.body-internal-body.pads-wrap > a
{
	display: flex;
	width: 18%;
	height: 120px;
	padding: 0 20px;
	margin: 0 1% 20px;
	text-align: center;
	background: rgb(236, 236, 236);	
	font-family: Arial;
	color:#4c4c4c;
	text-decoration: none;
}
.body-internal-body.pads-wrap > a > span
{
	display: block;
	width: 100%;
	font-size: 1.5em;
	margin: auto 0;
}
.body-internal-body.pads-wrap > a > span > span
{
	display: block;
	width: 100%;
	font-size: 0.6em;
	margin-top: 10px;
}
@media (max-width: 1280px) {
	.body-internal-body.pads-wrap > a
	{
		width: 31.33%;
	}
}
@media (max-width: 900px) {
	.body-internal-body.pads-wrap > a
	{
		width: 100%;
		margin: 0 auto 20px;
	}
}

/* ----- LISTES -----  */

.list .error
{
	width: 100%;
	background: #f2cfcf;
	padding: 12px 0 12px 10px;
	margin: 20px 0;
	font-family: Arial;
	font-size: 0.85em;
	color: #D70116;
	letter-spacing: 0.5px;
}
.list .succes
{
	width: 100%;
	background: #e6f6d7;
	padding: 12px 0 12px 10px;
	margin: 20px 0;
	font-family: Arial;
	font-size: 0.85em;
	color: #5c8c2c;
	letter-spacing: 0.5px;
}
.list .link-add
{
	display: inline-block;
	font-family: Arial;
	font-size: 0.85em;
	color: #f9f9f9;
	text-decoration: none;
	padding: 11px 17px;
	border-radius: 3px;
	background-color: #757575;
	margin-right: 15px;
}
.list .link-add:hover
{
	background-color: #646464;
}
.list .action-bloc, .list.user-data
{
	margin: 25px 0 15px 0;
}
.list .action-bloc.margin-top-none
{
	margin-top: 0;
}
.list .action-bloc a:hover
{
	opacity: 1;
}
.list .action-bloc [type="checkbox"]:not(:checked) + label,
.list .action-bloc [type="checkbox"]:checked + label 
{
   padding-left: 0px; 
}
.list .action-bloc input[type="checkbox"] + label::before
{
    content: '';
    display: block;
    width: 18px;
    height: 18px;
	background: none;
	border: 1px solid #3952c2;
	border-radius: 3px;
	margin: auto 10px;
	opacity: 0.7;
}
.list .action-bloc input[type="checkbox"]:checked + label::before
{
    background: url("../images_adm/ico_action.png") no-repeat -83px center;
	background-size: 227px 16px;
	opacity: 0.7;
}
.list .action-bloc input[type="checkbox"] + label:hover::before
{
	opacity: 1;
}
.list .action-bloc.bottom
{
	margin: 15px 0 0 0;
}
.list > ul > li
{
	display: block;
	width: 100%;
	font-family: Arial;  
	color: #473330;
	font-size: 0.8em;
	background: #f0f0f0;
	border-bottom: 1px solid #e9e9e9;
	padding: 0 10px;
}
.list > ul > li:nth-child(2n)
{
	background: #f8f8f8;
}
.list > ul > li > div
{
	display: flex;
	height: 46px;
}
.list > ul > li > div span,
.list > ul > li > div > div:not(.shop-status)
{
	display: block;
	margin: auto 0 auto 5px;
}
.list > ul > li > div > div.overflow
{
	display: flex;
	width: 70%; 
	overflow: hidden;
	white-space: nowrap;
}
.list > ul#sortable > li
{
	cursor: pointer;
	cursor: move;
}
.hide 
{
	display: none !important;
}
.disable-element
{
	cursor: default !important;
}
.list > ul > li [type="checkbox"]:not(:checked) + label,
.list > ul > li [type="checkbox"]:checked + label
{
   margin: auto 0;
   padding-left: 0px; 
}
.list > ul > li input[type="checkbox"] + label::before
{
    content: '';
	display: block;
    width: 18px;
    height: 18px;
	border-radius: 3px;
	background: none;
	border: 1px solid #3952c2;
	border-radius: 3px;
	margin: auto 10px auto 0;
	opacity: 0.7;
}
.list > ul > li input[type="checkbox"]:checked + label::before
{
    background: url("../images_adm/ico_action.png") no-repeat -83px center;
	background-size: 227px 16px;
	opacity: 0.7;
}
.list > ul > li input[type="checkbox"] + label:hover::before
{
	opacity: 1;
}
.list > ul > li > div img
{
	display: block;
	width: 20px;
	height: 14px;
	margin: auto 10px;
}
.list > ul > li textarea
{
	width: 50%;
	font-family: Tahoma; 
	font-size: 1em; 
	color: #a4a4a4;
	font-style: italic;
	border: 1px solid #E4E4E4;
	border-radius: 3px;
	padding: 8px;
}
.list > ul > li > div.list-checkbox > div
{
	margin: auto 0 auto 2px;
}
.list > ul > li .date
{
	margin: 10px 0;
}
.list > ul > li .media
{
	margin: 15px 0;
}
.list > ul > li .media img
{
	position: relative;
	width: 108px;
	height: 90px;
	margin: 0 5px 0 0;
}
.list > ul > li > div.infos
{
	height: auto;
	margin: 10px -5px;
}
.list > ul > li > div p
{
	flex: 1;
	background: #FFF;
	min-width: 200px;
	text-align: center;
	padding: 10px;
	margin: 5px;
	word-wrap: break-word;
}
.list > ul > li > div p > b
{
	display: block;
	margin-bottom: 3px;
}
.list > ul > li > div p a
{
	font-family: Arial; 
	color: #464646;
}
.list > ul > li .description
{
	margin: 25px 0;
	padding: 0 7px;
}
.list > ul > li .error
{
	font-size: 1em;
}
@media (max-width: 1024px) {
.list > ul > li > div > div.overflow
	{
		width: 60%;
	}
	.list > ul > li textarea
	{
		width: 100%;
	}
	.list > ul > li > div.list-checkbox
	{
		height: auto;
		margin: 0 0 15px;
	}
	.list > ul > li > div.list-checkbox > div
	{
		width: 100%;
		margin: 15px 0 0;
	}
}
.icon-delete-all
{
	display: block;
	width: 20px;
	height: 20px;
	background: url("../images_adm/ico_action.png") no-repeat -101px center;
	background-size: 227px 18px;
	border: 1px solid #3952c2;
	border-radius: 3px;
	margin: auto 10px auto 0;
	opacity: 0.7;
	cursor: pointer;
}
.icon-delete-all:hover
{
	opacity: 1;
}
.icon-valid-all
{
	display: block;
	width: 20px;
	height: 20px;
	background: url("../images_adm/ico_action.png") no-repeat -191px center;
	background-size: 227px 18px;
	border: 1px solid #3952c2;
	border-radius: 3px;
	margin: auto 10px auto 0;
	opacity: 0.7;
	cursor: pointer;
}
.icon-valid-all:hover
{
	opacity: 1;
}
.icon-remove-all
{
	display: block;
	width: 20px;
	height: 20px;
	background: url("../images_adm/ico_action.png") no-repeat -173px center;
	background-size: 227px 18px;
	border: 1px solid #3952c2;
	border-radius: 3px;
	margin: auto 10px auto 0;
	opacity: 0.7;
	cursor: pointer;
}
.icon-remove-all:hover
{
	opacity: 1;
}
.icon-delete
{
	display: block;
	width: 20px;
	height: 20px;
	background: url("../images_adm/ico_action.png") no-repeat left center;
	background-size: 227px 18px;
	border: 1px solid #d20000;
	border-radius: 3px;
	margin: auto 10px auto 0;
	opacity: 0.7;
	font-size: 0px;
	cursor: pointer;
}
.icon-delete:hover
{
	opacity: 1;
}
.icon-valid
{
	display: block;
	width: 20px;
	height: 20px;
	background: url("../images_adm/ico_action.png") no-repeat -137px center;
	background-size: 227px 18px;
	border: 1px solid #32822e;
	border-radius: 3px;
	margin: auto 10px auto 0;
	opacity: 0.7;
	cursor: pointer;
	font-size: 0px;
}
.icon-valid:hover
{
	opacity: 1;
}
.icon-remove
{
	display: block;
	width: 20px;
	height: 20px;
	background: url("../images_adm/ico_action.png") no-repeat -155px center;
	background-size: 227px 18px;
	border: 1px solid #f36200;
	border-radius: 3px;
	margin: auto 10px auto 0;
	opacity: 0.7;
	cursor: pointer;
	font-size: 0px;
}
.icon-remove:hover
{
	opacity: 1;
}
.icon-update
{
	display: block;
	width: 20px;
	height: 20px;
	background: url("../images_adm/ico_action.png") no-repeat -18px center;
	background-size: 227px 18px;
	border: 1px solid #544b2f;
	border-radius: 3px;
	margin: auto 10px auto 0;
	opacity: 0.7;
}
.icon-update:hover
{
	opacity: 1;
}
.icon-look
{
	display: block;
	width: 20px;
	height: 20px;
	background: url("../images_adm/ico_action.png") no-repeat -209px center;
	background-size: 227px 18px;
	border: 1px solid #252525;
	border-radius: 3px;
	margin: auto 10px auto 0;
	opacity: 0.7;
	cursor: pointer;
	font-size: 0px;
}
.icon-look:hover
{
	opacity: 1;
}
.margin-icon-update
{
	margin: auto 40px auto 30px;
}
.icon-active-on,
.icon-active-off,
.link-lists
{
	flex: 1;
	text-align: right;
}
.icon-active-on > a
{
	display: inline-block;
	width: 23px;
	height: 18px;
	background: url("../images_adm/ico_action.png") no-repeat -59px center;
	background-size: 227px 18px;
	border-radius: 3px;
	margin: auto 0;
	opacity: 0.7;
	margin-top: 2px;
}
.icon-active-off > a
{
	display: inline-block;
	width: 23px;
	height: 18px;
	background: url("../images_adm/ico_action.png") no-repeat -36px center;
	background-size: 227px 18px;
	border-radius: 3px;
	opacity: 0.7;
	margin-top: 2px;
}
.icon-active-on > a:hover,
.icon-active-off > a:hover
{
	opacity: 1;
}
.icon-listing-ads
{
	display: flex;
	width: 20px;
	height: 20px;
	border: 1px solid #544b2f;
	border-radius: 3px;
	margin: auto 10px auto 0;
	opacity: 0.7;
}
.icon-listing-ads > svg
{
	margin: auto;
	width: 12px;
	height: 12px;
	fill: #544b2f;
}
.icon-shop
{
	display: flex;
	width: 20px;
	height: 20px;
	border: 1px solid #544b2f;
	border-radius: 3px;
	margin: auto 10px auto 0;
	opacity: 0.7;
}
.icon-shop > svg
{
	margin: auto;
	width: 15px;
	height: 15px;
	fill: #544b2f;
}
.link-lists > a
{
	display: inline-block;
	width: 20px;
	height: 20px;
	background: url("../images_adm/ico_action.png") no-repeat -119px center;
	background-size: 227px 18px;
	border: 1px solid #414141;
	border-radius: 3px;
	opacity: 0.7;
	margin-top: 2px;
}
.link-lists > a:hover
{
	opacity: 1;
}
.list > ul > li > div > div.shop-status
{
	display: flex;
	flex: 1;
	align-self: center;
	line-height: 13px;
}
.list > ul > li > div > div.shop-status:before
{
	display: inline-block;
	margin: 0 4px 0 auto;
	content: " ";
	width: 12px;
	height: 12px;
	border-radius: 50%;
	background-color: #ce0404;
}
.list > ul > li > div > div.shop-status.active:before
{
	background-color: #398e22;
}
.list > ul > li > div > div.shop-status
{
	color: #ce0404;
}
.list > ul > li > div > div.shop-status.active
{
	color: #398e22;
}

/* ----- GENERAL FORMS -----  */

.form .error
{
	width: 100%;
	background: #f2cfcf;
	padding: 12px;
	margin: 0 0 20px;
	font-family: Arial;
	font-size: 0.85em;
	color: #D70116;
	letter-spacing: 0.5px;
}
.form .succes
{
	width: 100%;
	background: #e6f6d7;
	padding: 12px;
	margin: 0 0 20px;
	font-family: Arial;
	font-size: 0.85em;
	color: #5c8c2c;
	letter-spacing: 0.5px;
}
.form > div,
.form > form > div
{
	background: #f0f0f0;
	padding: 30px;
}
div.div-form
{
	width: 100%;
	margin-bottom: 24px;
	min-height: 42px;
}
.form > form > div > div.div-form:last-child,
.form > form > div > div.last-child > div.div-form:last-child,
div.div-form.first-child
{
	margin-bottom: 0;
}
.form > form > div > div.last-child > div.div-form:first-child
{
	margin-top: 24px;
}
div.div-form > p,
div.div-form > div,
#calendar-wrap > p
{
	margin: auto 0;
}
div.div-form div.label
{
	height: 20px;
	margin: auto 0;
}
div.div-form label
{
	cursor: pointer;
}
div.div-form p,
div.div-form label,
#calendar-wrap > p
{
	width: 40%;
}
div.div-form > p,
div.div-form > label,
#calendar-wrap > p
{
	padding-right: 60px;
}
div.div-form > div > label
{
	width: auto;
}
div.div-form > p.top
{
	margin-top: 5px;
}
div.div-form > div.top
{
	margin-top: 0;
}
div.div-form > div > a:not(.delete_link)
{
	display: inline-block;
	line-height: 32px;
	font-family: Arial;
	font-size: 0.85em;
	color: #f9f9f9;
	text-decoration: none;
	border: 1px solid #6d6d6d;
	border-radius: 6px;
	background-color: #757575;
	text-align: center;
	padding: 0 30px;
}
div.div-form > div > img
{
	width: 300px;
}
div.div-form > div,
#calendar-wrap > div
{
	flex: 1;
}
div.div-form > div > span
{
	font-family: Arial;
	color: #565656;
	font-size: 0.85em;
	margin-left: 15px;
}

.form input
{
	width: 80%;
	height: 42px;
	font-family : Arial, Helvetica;
    font-size: 0.85em;
    color: #a4a4a4;
	border: 1px solid #E4E4E4;
	border-radius: 3px;
	padding: 0 6px;
	font-style: italic;
	margin: auto 0;
}
div.div-form textarea
{
	width: 80%;
	font-family: Tahoma; 
	font-size: 0.85em; 
	color: #a4a4a4;
	border: 1px solid #E4E4E4;
	border-radius: 3px;
	padding: 8px;
	font-style: italic;
}
div.div-form textarea.long
{
	width: 100%;
}
.form select	
{
	width: 80%;
	height: 42px;
	font-family : Arial, Helvetica;
    font-size: 0.85em;
    color: #a4a4a4;
	border: 1px solid #E4E4E4;
	border-radius: 3px;
	padding: 2px 0 0 6px;
	font-style: italic;
	background: #FFF url("../images_adm/icon_arrow_select.png") no-repeat right 12px center;
    background-size: auto;
	background-size: 14px 8px;
}
div.div-form > div.select-short
{
	display: flex;
	flex: inherit;
	justify-content: space-between;
	width: 48%;
}
div.div-form > div.select-short select
{
	width: 33%;
}
.select-cat				
{
	color: #000000;
	background-color: #DDDDDD;
}
.form > form > div div.map-preview
{
	width: 100%;
	max-width: 250px;
	margin-left: 40%;
	margin-bottom: 20px;
}
.form > form > div.map-preview svg
{
	max-width: 100%;
}
.form > form > div > div.map-preview #tooltip
{
	display: none;
}
.form > form > div > div.map-preview #regions_list
{
	display: none;
}
div.div-form .title,
#calendar-wrap > p
{
	font-family: Arial; 
	font-size: 0.8em; 
	color: #473330;
	font-weight: bold;
}
div.div-form .title.normal
{
	font-weight: normal;
}
div.div-form label.title,
div.div-form .title > span.info
{
	font-weight: normal;
	margin: auto 0;
}
div.div-form .title > span.info
{
	display: block;
	margin-top: 10px;
}
div.div-form.title
{
	border-bottom: 1px solid #dbdbdb;
}
div.div-form.title p
{
	width: 100%;
	font-size: 1em;
	color: #a4a4a4;
}
div.div-form.info p
{
	width: 100%;
	font-family: Arial; 
	font-size: 0.95em; 
	color: #575757;
}
.form div.input-submit
{
	width: 100%;
	background: transparent;
	padding: 0;
	text-align: center;
	margin: 20px auto 0;
}
.form div.input-submit > input[type="submit"],
.form div.input-submit > input[type="button"]
{
	display: inline-block;
	width: auto;
	height: 38px;
	background-color: #777777;
	color: #f5f5f5;
	font-family: Arial;
	font-size: 0.9em;
	font-style: normal;
	border: 0;
	border-radius: 6px;
	cursor: pointer;
	padding: 0 40px;
}
.form div.input-submit input[type="submit"]:hover,
.form div.input-submit input[type="button"]:hover
{
	background-color: #515151;
}
#display-map
{
	display: block;
	width: 100%;
	min-height: 250px;
	border: 1px solid #E4E4E4;
	overflow: hidden;
}
div.div-form.geolocalisation
{
	margin-bottom: 0;
}
div.div-form.geolocalisation > div > div
{
	margin-bottom: 20px;
}
div.div-form.geolocalisation p
{
	margin-bottom: 30px;
}
.lang-form-buttons
{
	display: flex;
	width: 100%;
	border-bottom: 1px solid #dbdbdb;
	margin-bottom: 24px;
}
.lang-form-buttons li
{
	opacity: 0.5;
	margin: 0 20px 5px 0;
	cursor: pointer;
}
.lang-form-buttons li.selected
{
	opacity: 1;
	cursor: auto;
}
.lang-form-buttons li img
{
	width: 40px;
}
.lang-form:not(.first)
{
	display: none;
}
/* Form update images */
.uploader-container
{
	margin-bottom: 10px;	
}
.uploader-container:after
{
	content: " ";
	display: block;
	clear: both;	
}
.update-image
{
	padding-bottom: 10px;
	margin: auto;
}
.update-image > form
{
	display: flex;
	position: relative;
	width: 23%;
	height: 150px;
	padding: 20px;
	margin: 0 1% 20px;
	text-align: center;
	background: rgb(236, 236, 236);	
	font-family: Arial;
	color:#4c4c4c;
	text-decoration: none;
}
.update-image > form > div
{
	display: block;
	width: 100%;
	margin: auto;
}
.update-image > form > div > img
{
	max-width: 90%;
	max-height: 50px;
	margin: 0 auto;
}
.update-image > form > div > p
{
	font-family: Arial; 
	font-size: 0.8em; 
	color: #473330;
	font-weight: bold;
	margin-top: 10px;
}
.update-image > form > div > p >  span
{
	display: block;
	width: 100%;
	font-weight: normal;
	margin-top: 5px;
}
.update-image > form > div > input
{
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	width: 100%;
	height: 150px;
	filter: alpha(opacity=0);
	cursor: pointer;
	background: red;
}
.update-image > form p.loading
{
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	margin-top: 0;
	width: 100%;
	height: 150px;
	opacity: 0.6;
	background: #242424;
	text-align: center;
}
.update-image > form p.loading > img
{
	margin: auto;
}
.update-image > form .hover-info
{
	display: flex;
	flex-direction: column;
	position: absolute;
	top: 0;
	left: 0;
	margin-top: 0;
	width: 100%;
	height: 150px;
	background: #242424;
	text-align: center;
	opacity: 0;
	transition: opacity 1s;
}
.update-image > form:hover .hover-info {
	opacity: 0.75;
}
.update-image > form .hover-info div {
	margin: auto;
	text-align: center;
	opacity: 1;
}
.update-image > form .hover-info svg {
	display: inline-block;
	width: 30px;
	fill: white;
	margin-bottom: 5px;
}
.update-image > form .hover-info span
{
	display: block;
	color: white;
	font-size: 1em;
}
.update-image > form .error
{
	display: none;
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 150px;
	opacity: 0.9;
	text-align: center;
	background: #f2cfcf;
	padding: 12px 0 12px 10px;
	margin: 0 0 20px;
	font-family: Arial;
	font-size: 0.85em;
	color: #D70116;
	letter-spacing: 0.5px;
}
.update-image > form .error > span
{
	display: block;
	margin: auto;
}
div.div-form p.upload-file
{
	position: relative;
	width: 100%;
	height: 20px;
	background: url("../images_adm/ico_upload.png") no-repeat left center;
	background-size: 20px;
	font-family: Arial;
	font-size: 0.8em;
	font-weight: bold;
	color: #4f4f4f;
	padding: 4px 0 0 31px;
	text-align: left;
}
.form .upload-file input
{
	width: 80%;
	height: 35px;
	position: absolute;
	opacity: 0; 
    filter: alpha(opacity=0);
    cursor: pointer;
    margin-top: -10px;
    margin-left: -36px;
}
/*  Calendar  */
#calendar-wrap 
{
	display: flex;
	width: 100%;
	margin-bottom: 24px;
}
#calendar-wrap.calendar-wrap-hide
{
	display:none;
}
#calendar-wrap > p
{
	margin-top: 0;
}
#calendar-wrap input
{
	width: 16%;
	margin-right: 10px;
}
#calendar-wrap [name="cal_price"]
{
	width: 26%;
}
#calendar-wrap #add-period, #calendar-wrap [id^="cal_period_"]
{
	position: relative;
	display: flex;
	flex-wrap: wrap;
	width: 100%;
}
#calendar-wrap [id^="cal_period_"]
{
	margin-bottom: 12px;
}
#calendar-wrap span
{
	vertical-align: middle;
	font-family: Arial;
	font-size: 0.9em;
	line-height: 42px;
	margin-right: 10px;
}
#calendar-wrap a
{
	display: inline-block;
	color: #FFFFFF;
	text-align: center;
	border-radius: 4px;
	text-decoration: none;
	font-family: Arial;
	font-size: 0.95em;
	margin-left: 10px;
	padding: 10px;
}
#calendar-wrap #insert-period
{
	background: #73ae20;
	padding: 10px 15px;
}
#calendar-wrap .cal_period_update
{
	background: #9f9f9f;
}
#calendar-wrap .cal_period_remove
{
	background: #c90c0f;
	margin-left: 5px;
}
#calendar-wrap .cal_eff_period
{
	background: #ff8f27;
	margin-left: 5px;
}
#calendar-wrap a:hover
{
	opacity: 0.8;
}
#calendar-wrap .hide
{
	display: none;	
}
#cal_msg_error1, #cal_msg_error2
{
	display: none;
}
@media (max-width: 1338px) 
{
	#calendar-wrap .calendar-buttons
	{
		display: block;
		width: 100%;
		margin-top: 12px;
	}
	#calendar-wrap .cal_period_update, #calendar-wrap #insert-period
	{
		margin-left: 0;
	}
}
@media (max-width: 1024px) {
	div.div-form > p,
	div.div-form > div
	{
		display: block;
		width: 100%;
	}
	div.div-form.color-choice > p
	{
		width: 80%;
		margin: auto 0;
	}
	div.div-form
	{
		margin-bottom: 20px;
	}
	div.div-form .title
	{
		margin-bottom: 8px;
	}
	.form input,
	div.div-form textarea,
	div.div-form select
	{
		width: 100%;
	}
	div.div-form > p.top
	{
		margin-top: 0;
	}
	div.div-form > label
	{
		width: 90%;
	}
	div.div-form > div
	{
		text-align: right;
	}
	div.div-form > div.image
	{
		text-align: left;
	}
	div.div-form > div.left
	{
		margin-top: 10px;
		text-align: left;
	}
	div.div-form > div > span
	{
		width: 100%;
		display: block;
		margin-top: 10px;
		margin-left: 0;
	}
	.form > form > div > div.map-preview
	{
		margin: 0 auto 20px;
	}
	.update-image > form {
		width: 48%;
	}
	div.div-form.geolocalisation p
	{
		padding-right: 0;
		margin-bottom: 20px;
	}
	#calendar-wrap
	{
		display: block;
	}
	#calendar-wrap > p {
		width: 100%;
		margin-bottom: 8px;
	}
	div.div-form p.upload-file
	{
		margin-top: 15px;
	}
	.form .upload-file input,
	div.div-form > div.select-short
	{
		width: 100%;
	}
}
@media (max-width: 740px) {
	.form > form > div
	{
		padding: 30px 20px;
	}
	.update-image > form {
		width: 100%;
		margin: 0 auto 20px;
		
	}
}

/* ----- SEARCH -----  */

.search > div
{
	padding: 17px 10px;
}
.search input,
.search select
{
	flex: 1;
	min-width: 180px;
	margin: 3px 5px;
}
.search div.input-submit 
{
    display: block;
    width: 100%;
    background: transparent;
    padding: 0;
    text-align: left;
    margin: 10px 0 3px 5px;
}
@media (max-width: 1024px) {
	.search div.input-submit 
	{
		text-align: center;
		margin-left: 0;
	}	
} 

/* ----- PAGINATION -----  */

.pagination
{
	margin: 20px 0 0 10px;
}
.pagination > a,
.pagination > span
{
	display: inline-flex;
	line-height: 26px;
	font-family: Arial;
	font-size: 0.7em;
	color: #373737;
	text-decoration: none;
	background-color: #f0f0f0;
	border-radius: 3px;
	padding: 0 9px;
	margin: 5px 5px 0 0;
}
.pagination > a:hover
{
	background-color: #e1e1e1;
}
.pagination > a.selected
{
	font-weight: bold;
	background-color: #e1e1e1;
}
.pagination > a.selected:hover
{
	text-decoration: underline;
}
@media (max-width: 1024px) {
	.pagination
	{
		margin: 20px auto 0;
	}
}

/* ----- POPUP-----  */

#popup_msg {
	display: none;
}
.ui-draggable .ui-dialog-titlebar
{
	display: none;
}
.ui-sortable
{
	position:relative;
}
.ui-dialog
{
	padding: 0;
}
#popup_msg p
{
	text-align: center;
	margin: 0;
	padding: 0;
}
#popup_msg p.active
{
	line-height: 52px;
	color: #555555;
	font-size: 0.8em;
	background: #F4F4F4;
	border-bottom: solid 1px #DDDDDD;
	font-weight: bold;
}
.ui-widget-overlay.custom-overlay
{
    background-color: black;
    background-image: none;
    opacity: 0.4;
    z-index: 1040;    
}
.ui-dialog
{
	font-size: 0.9em;
	z-index: 88888 !important ;
}
.ui-dialog .ui-dialog-buttonpane
{
	border: none;
	margin-top: 0 !important;
}
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset
{
	width: 100%;
	float: none;
	text-align: center;
}
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset .ui-button:first-child
{
	color: #51841F;
	border: solid 1px #51841F;
	background: #FFFFFF !important;
}
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset .ui-button:last-child
{
	color: #D40000;
	border: solid 1px #D40000;
	background: #FFFFFF !important;
}
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset .ui-button
{
	border: none;
}
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset .ui-button:first-child:hover
{
	color: #FFFFFF;
	background: #51841F !important;
}
.ui-dialog .ui-dialog-buttonpane .ui-dialog-buttonset .ui-button:last-child:hover
{
	color: #FFFFFF;
	background: #D40000 !important;
}
.popup-txt
{
	display: none;
	position: fixed;
	font-family: Arial;
	font-size: 12px;
	color: #555555;
	background: #FFFFFF;
	border: solid 1px #DDDDDD;
    padding: 7px;
    margin: 20px 0 0 -10px;
    opacity: 0.9;
    letter-spacing: 1px;
    z-index: 500;
}
#popup_preview
{
	padding: 15px;
	overflow-y: scroll;
}
.popup_preview_title
{
	font-size: 1.1em;
	font-weight: Bold;
}
#popup_preview p:first-child
{
	margin-top: 10px;
}
#popup_preview p
{
	margin-top: 20px;
}
#popup_preview textarea
{
	width: 100%;
	height: 100%;
	border: none;
	background: none;
}

/*  ----- GOOGLE MAP FORM -----  */

#geoloc_button
{
	display: block;
	margin: 0;
	cursor: pointer;
	margin: 10px 0 10px 0;
	text-decoration: none;
}
#geoloc_button img
{
	width: 100%;
	height: 100%;
}

/*  ----- UPLOAD FORM -----  */
.error[data-error] 
{
	display: none;
}
.upload
{
	position: relative;
	display: flex;
	width: 130px;
    height: 85px;
    z-index: 0;
}
.upload.inline
{
	display: flex;
	float: left;
	margin: 0 10px 10px 0;
}
.upload.file
{
	width: 70px;
    height: 85px;
}
.upload .upload_delete_link,
.delete_link
{
	position: absolute;
	z-index: 2;
	width: 30px;
	height: 30px;
	background: url("../images_adm/ico_delete.png") no-repeat;
	background-size: 30px 30px;
}
.form .upload input.input-file
{
	position: absolute;
	top: 0;
	left: 0;
    opacity: 0;
    filter: alpha(opacity=0);
    cursor: pointer;
    width: 100%;
    height: 100%;
    z-index: 1;
    padding: 0;
    margin: 0;
}
.upload > img
{
	width: 100%;
	height: 100%;
	object-fit: cover;
}
.upload > img.click
{
	z-index: 1;
	cursor: pointer;
}
.upload .loading
{
	position: absolute;
	display: none;
	top: 0;
	left: 0;
	width: 100%;
    height: 100%;
    opacity: 0.6;
	background: #242424;
}
.upload .loading > img
{
	margin: auto;
}
.upload.file .loading > img
{
	width: 70px;
}
.upload .icon-add 
{
	position: absolute;
	top: 0;
	right: 0;
	display: block;
	font-family : Tahoma;
    font-size : 0.9em;
    color: #FFFFFF;
    font-weight: bold;
	background: #D4D4D4;
	width: 25px;
	height: 25px;
	line-height: 20px;
	text-align: center;
	padding: 0 0 0 5px;
	-webkit-border-bottom-left-radius: 25px;
	-moz-border-radius-bottomleft: 25px;
	border-bottom-left-radius: 25px;
}
.form div.input-submit input[type="button"]:disabled
{
	opacity: 0.6;	
}
/*  ----- COLOR SLECTOR -----  */
#color-bloc {
	display: none;
    position: fixed;
    z-index: 2;
    top: 50px;
    background: rgba(221, 221, 221, 0.9);
    color: rgb(68, 68, 68);
    font-weight: bold;
    font-size: 0.8em;
    font-family: Arial;
    width: 550px;
    right: 0px;
    border-bottom: 3px solid rgb(85, 85, 85);
}
#color-bloc .inner-color-block {
	display: flex;
	flex-wrap: wrap;
}
#color-bloc .title_color {
	width: 100%;
	background: rgb(85, 85, 85);
	color: rgb(238, 238, 238);
	padding: 10px;
	text-align: center;
}
.js-color-box {
	color: rgb(68, 68, 68);
	font-size: 0.8em;
	font-family: Arial;
	margin: 15px 15px 0;
	text-align: center;
	width: calc(25% - 30px);
	min-height: 50px;
}
#colorDiv100 {
	color: rgb(68, 68, 68);
	width: 100%;
	margin: auto;
}
.js-color-box span {
	display: block;
	margin: 0 0 4px 0;
	text-align: center;
}
.js-color-box #full100 {
	font-family: Arial;
	font-size: 1.2em;
	color: #f9f9f9;
	text-decoration: none;
	padding: 11px 17px;
	border-radius: 3px;
	background-color: rgb(85, 85, 85);
	margin: 20px auto;
	border: none;
	letter-spacing: 1px;
	cursor: pointer;
}
@media (max-width: 740px) {
	#color-bloc {
		width: 100%;
	}
	.js-color-box {
		min-height: 60px;
	}
	#colorDiv100 input {
		width: auto;
		margin-left: 20px;
	}
}