.modif_overlay
{
/*Positionnement du fond*/
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;

  /*Couleur du fond*/
  background: rgba(0, 0, 0, 0.4);
  transition: opacity 700ms cubic-bezier(0.77,0.2,0.05,1.0),visibility 0.5s;

  /*Fond Masqué lorsque menu inactif*/
  visibility: hidden;
  opacity: 0;

  /*Pas de marge intérieure*/
  padding:0px;

  /*Position verticale*/
  z-index: 1000;
}

.modif_overlay label
{
	/*Etendre label sur toute la surface disponible*/
	display: block;
	width: 100%;
	height: 100%;
}

.shop_info_content
{
	/*Positionnement du menu*/
	position: absolute;
  top:50vh;
  right:0%;

	/*Dimensions du menu*/
	width: auto;
	min-width: 45%;
  max-width: 90%;
	height: auto;

	/*Positionnement vertical*/
	z-index: 15000;

	/*marges*/
	margin-bottom: 2px;
	margin:0px;
	padding: 0px;

	/*Sortie du menu du champs tant qu'il n'est pas cliqué*/
  	transform-origin: top right;
  	transform: translate(+100%, 0);
  	transition: transform 0.9s cubic-bezier(0.77,0.2,0.05,1.0);
    visibility: hidden;
    opacity: 0;


  	/*Disposition du contenu du menu*/
  	display: flex;
  	flex-direction: column;
  	flex-wrap: nowrap;
  	justify-content: flex-start;
  	align-items: stretch;

  	/*Fond du menu*/
  	background: white;

  	overflow-y: auto;
  	overscroll-behavior-y:contain;

    border-radius: 10px 0 0 10px;
}

.shop_info_content_header
{
	align-self: flex-end;
	padding:3%;
	padding-bottom: 0px;
	margin-bottom: 0px;
}

.shop_info_content_body
{
	display: flex;
	flex-direction: column;
	flex-wrap: none;
	justify-content: center;
	align-items: flex-start;

	align-self: center;
	width: 90%;
	height: auto;

	padding: 0px;
	margin: 0px;

}

/*Masquer les checkbox standard*/
input[name='shop_info_checkbox_panel']
  {
    display: none;
  }
 input[name='shop_info_radio_panel'] 
  {
    display: none;
  }

/*modification du curseur sur les labels*/
  .modification label
  {
  	cursor: pointer;
  }

/*Activation du menu lorsqu'il est actionné*/
input[name='shop_info_checkbox_panel']:checked ~ .shop_info_content
{
  transform: none;
  visibility: visible;
  opacity: 1;
}

input[name='shop_info_checkbox_panel']:checked ~ .modif_overlay
{
 visibility: visible;
 opacity: 1;
}

.shop_info_close img
{
  max-height: 20px;
  width:auto;
}

.shop_photo_note
{
  font-size: 0.7em;
  margin-bottom: 20px;
  margin-top: 5px;
  margin-left: 8px;
}

.login_block_field .checkbox_fill_address
{
  font-size: 1em;
  margin-bottom: 20px;
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  overflow-wrap: break-word;
}

.login_block_field .checkbox_fill_address > :nth-child(2)
{
 margin-left: 5px;
 max-width: 200px;
}

 .login_block_field .shop_horaires label
 {
  align-self: flex-start;
  margin-bottom: 10px;
 }

.login_block_field .shop_horaires
{
  margin-bottom: 20px;
  display: flex;
  flex-direction: column;
  flex-wrap: wrap;
  justify-content: flex-start;
  align-items: flex-start;

  max-width: 100%; 
}


.login_block_field .shop_horaires table *
{
  vertical-align: top;
  font-size: 0.8rem;
  font-weight: normal;
  text-align: left;
}

.login_block_field .shop_horaires table
{
  margin-left:10%;
}
.login_block_field .shop_horaires table td
{
  padding-top: 10px;
}

.login_block_field .shop_horaires table td div
{
  display: flex;
  flex-wrap: nowrap;
  flex-direction: row;
  justify-content: flex-start;
  align-items: flex-start;

  white-space: pre;
}


.login_block_field .shop_horaires input[type="checkbox"]
{
  height: 10px;
  width: 10px;
  margin-left: 0px;
  margin-right: 4px;
}

.login_block_field .shop_horaires input[type="number"]
{
  width: 35px;
  border: 0.5px solid rgb(230,230,230);
  outline: none;
}

.login_block_field .shop_horaires .shop_horaires_day
{
  margin-bottom: 8px;
}

#pm_clsd, #am_clsd
{
  display: none;
}

.shop_categories_note
{
  font-size: 0.7em;
  margin-top: 5px;
  margin-bottom: 5px;
  margin-left: 8px;
}

.tag-container {
  border: 0.5px solid rgb(1,70,8);
  border-radius: 4px;
  margin-bottom: 20px;
  background: #fff;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  padding: 6px;
  width: 98%;
}

.tag-container .tag {
  height: 30px;
  margin: 5px;
  padding: 5px 6px;
  border: 1px solid #ccc;
  border-radius: 3px;
  background: #eee;
  display: flex;
  align-items: center;
  color: #333;
  box-shadow: 0 0 4px rgba(0, 0, 0, 0.2), inset 0 1px 1px #fff;
  cursor: default;
}
.tag i {
  font-size: 16px;
  color: #666;
  margin-left: 5px;
}
.tag-container input {
  min-height: 20px;
  width: 20%;
  padding: 5px;
  font-size: 16px;
  border: 0;
  outline: none;
  color: #333;
  flex: 1;
}
