/* REMEMBER
# is an id selector, used to target a single specific element with a unique id, but . is a class selector used to target multiple elements with a particular class. To put it another way:
#foo {} will style the single element declared with an attribute id="foo"
.foo {} will style all elements with an attribute class="foo" (you can have multiple classes assigned to an element too, just separate them with spaces, e.g. class="foo bar")
END REMEMBER
 */

/* INIZIO IMAGE ZOOM ON OVER */

.wrapper {
    padding: 50px 50px;
    max-width: 1200px;
    text-align: center;
    margin-left: auto;
    margin-right: auto;
		margin-top: 80px;
}

.right {float: right !important;}
/* Image zoom on hover + Overlay colour */
.parent {
    width: 45%;
    margin: 20px;
    height: 300px;
    border: 1px solid white;
    overflow: hidden;
    position: relative;
    float: left;
    display: inline-block;
	cursor: pointer;
}

.child {
    height: 100%;
    width: 100%;
    background-size: cover;
    background-repeat: no-repeat;
    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

.parent:hover .child, .parent:focus .child {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
}

.parent:hover .child:before, .parent:focus .child:before {
    display: block;
		opacity: 0.7;
}

.parent:hover a, .parent:focus a {
    display: block;
}

.child:before {
    content: "";
    display: block;
	  opacity: 0;
    height: 100%;
    width: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background-color: rgba(52,73,94,0.75);
	    -webkit-transition: all .3s ease;
    transition: all .3s ease;
}

/* FINE IMAGE ZOOM ON OVER */

/* PROGRESS BAR */
.left-align{text-align:left!important}
.right-align{text-align:right!important}
.justify{text-align:justify!important}
.center{text-align:center!important}
.blue,.hover-blue:hover{color:#fff!important;background-color:#2196F3!important}
.green,.hover-green:hover{color:#fff!important;background-color:#4CAF50!important}
.red,.hover-red:hover{color:#fff!important;background-color:#f44336!important}
.light-grey,.hover-light-grey:hover,.light-gray,.hover-light-gray:hover{color:#000!important;background-color:#f1f1f1!important}
.dark-grey,.hover-dark-grey:hover,.dark-gray,.hover-dark-gray:hover{color:#fff!important;background-color:#616161!important}

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    padding-top: 100px; /* Location of the box */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.4); /* Black w/ opacity */
}

/* Modal Content */
.modal-content {
    background-color: #fefefe;
    margin: auto;
    padding: 20px;
    border: 1px solid #888;
    width: 80%;
}

/* The Close Button */
.close {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}
.close2 {
    color: #aaaaaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

.close2:hover,
.close2:focus {
    color: #000;
    text-decoration: none;
    cursor: pointer;
}

#ancor {
  display: none;
}
/* NOTIFICATION COUNT */
#administrator_menu {
	list-style:none;
	margin: 0px;
	padding: 0px;
}
#administrator_menu li {
	float: left;
	margin-right: 5px;
	font-size: 14px;
	font-weight:bold;
}
#notification_count {
	padding: 3px 7px 3px 7px;
	background: #cc0000;
	color: #ffffff;
	font-weight: bold;
	margin-left: 18px;
	border-radius: 9px;
	position: absolute;
	margin-top: -11px;
	font-size: 11px;
}
/* DIV ASSIGN */
.assign_container {
	float:left;
	display:block;
	width: 258px;
  border: 1px solid #73AD21;
  margin-bottom: 40px;
  margin-right: 40px;
  padding-left: 10px;
  padding-right: 10px;
  padding-bottom: 10px;
}
.assign_column {
	float:left;
	display:block;
  height: 100px;
  border: 1px solid #73AD21;
  padding-left: 5px;
	margin-left: 2px;
	margin-bottom: 2px;
}
/*#hover-assign {
    display:none;
}
#parent:hover #hover-assign {
    display:block;
}*/

.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

.animated.infinite {
  animation-iteration-count: infinite;
}

.animated.hinge {
  animation-duration: 2s;
}

.animated.flipOutX,
.animated.flipOutY,
.animated.bounceIn,
.animated.bounceOut {
  animation-duration: .75s;
}

@keyframes shake {
  from, to {
    -webkit-transform: translate3d(0, 0, 0);
    transform: translate3d(0, 0, 0);
  }

  10%, 30%, 50%, 70%, 90% {
    -webkit-transform: translate3d(-10px, 0, 0);
    transform: translate3d(-10px, 0, 0);
  }

  20%, 40%, 60%, 80% {
    -webkit-transform: translate3d(10px, 0, 0);
    transform: translate3d(10px, 0, 0);
  }
}

.shake {
  -webkit-animation-name: shake;
  animation-name: shake;
}
/* Clearfix */
.clearfix:after {
    content: ".";
    display: block;
    clear: both;
    visibility: hidden;
    line-height: 0;
    height: 0;
}
.clearfix {
    display: block;
}
html[xmlns] .clearfix {
    display: block;
}
* html .clearfix {
    height: 1%;
}
nav {
	font-family: 'Helvetica', sans-serif;
	width: 100%;
	max-width: 960px;
	margin: 0 auto 24px;
}
::-webkit-input-placeholder {
	color: #ddd !important;
}
::-moz-placeholder {
	color: #ddd !important;
}
:-ms-input-placeholder {
	color: #ddd !important;
}
/*input:-moz-placeholder {
	color: #ddd !important;
}*/
/*.cke_button_label.cke_button__inlinesave_label {
    display: inline;
}*/
.locator {
	width: 100%;
	height: 82px;
	background-color: #EFEFEF;
	margin: 81px 0 0;
	/* font-family: 'didot', 'playfair', serif; */
}
.container_locator {
	width: 100%;
	max-width: 960px;
	margin: 0 auto;
	padding: 0 56px;
	-webkit-box-sizing: border-box;
	-moz-box-sizing: border-box;
	box-sizing: border-box;
}
.container_locator a {
	text-decoration: none;
	color: #000;
}
.container_locator h3{
	text-transform: uppercase;
	font-size: 12px;
	float: right;
	line-height: 82px;
	font-weight: normal;
	/* font-family: 'didot', 'playfair', serif; */
  font-family: sans-serif; /* 1 */
}
.container_locator h1{
	float: left;
  line-height: 82px;
  font-size: 2em;
  font-family: sans-serif; /* 1 */
  text-transform: uppercase;
	  color: #80c31c;
  #other{
  	width: 100%;
  	max-width: 960px;
  	margin: 0 auto;
  }
  #other ul li {
  	text-transform: uppercase;
  }
  #otherh {
  	height: 82px !important;
  }
}
header {
	width:100%;
	height: 82px;
	background: white;
	position: fixed;
	top: 0px;
	z-index: 99999;
}
header * {
	-webkit-transition: all 300ms ease;
	-moz-transition: all 300ms ease;
	-ms-transition: all 300ms ease;
	-o-transition: all 300ms ease;
	transition: all 300ms ease;
	text-decoration: none;
	color: #000;
}
.scrolled {
	width: 100%;
	height: 82px;
}
.header_top {
	width: 100%;
	max-width: 960px;
	margin: 0 auto;
}
.scrolled #logo {
	float: right;
	/*width: 200px;*/
	width: 350px;
	margin: 10px 0 0 !important;
	line-height: 82px;
}
.scrolled #index {
	float: left;
}
.scrolled nav {
	/*width: 760px;*/
	width: 600px
}
.scrolled nav ul li {
	font-size: 11px !important;
	margin-right: 22px;
	line-height: 82px;
}
#logo{
	margin: 54px auto 66px;
	width: 380px;
	text-align: center;
}
#logo_due{
  float: right;
  width: 200px;
  margin: 10px 0 0 !important;
  line-height: 82px;
  text-align: center;
}
header #index ul li {
	font-size: 13px;
	text-transform: uppercase;
}
header # li {
	margin-right: 22px;
	font-size: 11px;
	line-height: 82px;
}
header #other ul li {
	margin-right: 22px;
	font-size: 11px;
	line-height: 82px;
  text-transform: uppercase;
}
header #other ul {
	float: left;
	width: 760px;
}
header ul li{
	float: left;
	margin-right: 40px;
	margin-top: 10px;
	list-style-type: none;
	text-decoration: none;
	font-size: 12px;
}
header ul li:last-child{
	margin-right: 0px;
}
.slider {
	margin-top: 230px;
	z-index: -10 !important;
}
/*.full_per_parr {
	max-width: 100% !important;
	width: 100% !important;
}*/
/*.sezioni {

    padding: 0rem 0 3rem;
    text-align: center;
}*/
.dialog{
  border-style: dashed;
  border-color: green;
  display: block;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 30px;
  padding-bottom: 30px;
}
.delete{
  border-style: dashed;
  border-color: red;
  display: block;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 30px;
  padding-bottom: 30px;
	margin-top:100px;
}
.delete .submit{
  border-style: none;
  padding-left: 0px;
  padding-bottom: 0px;
}
.modify{
  border-style: dashed;
  border-color: red;
  display: block;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 30px;
  padding-bottom: 30px;
	margin-top:100px;
}
.modify .submit{
  border-style: none;
  padding-left: 0px;
  padding-bottom: 0px;
}
.notification{
  border-style: dashed;
  border-color: red;
  display: block;
  padding-left: 30px;
  padding-right: 30px;
  padding-top: 30px;
  padding-bottom: 30px;
	margin-top:100px;
}
.notification .submit{
  border-style: none;
  padding-left: 0px;
  padding-bottom: 0px;
}
.footer{
    background: #373b44;
    color: #ffffff;
    display: none;
}
.footer_social {
    background: #373b44;
    color: #ffffff;
    display: block;
}
.new_product_home {
    background: #373b44;
    color: #ffffff;
    display: block;
}
.new_product_home_text {
    font-size: 6.3rem;
    color: white;
    margin-bottom: 0px;
    padding-top: 40px;
    padding-bottom: 40px;
    text-align: center;
}
.footer_align{
    height: 250px;
    display: table-cell;
    vertical-align: top;
    padding-top: 20px;
    padding-bottom: 30px
}
.footer_align_social{
    height: 50px;
    display: table-cell;
    vertical-align: top;
    padding-top: 20px;
    padding-bottom: 30px
}
.radio-input {
    display: inline-block;
    vertical-align: middle;
    margin-right: 10px;
    margin-left: 10px;
}
#pull {
	display: none;
}

/* box large */
.box_large {
	display: inline-block;
	border: 1px solid #dbdbdb;
	margin-bottom: 5px;
	width:626px;
	height:382px;
	vertical-align: top;
}

/* DIV MODAL PER COUPON */

.modal-dialog {
  width: 40%;
  margin: 30px auto;
  position: relative;
}
.modal-open .modal {
  overflow-x: hidden;
  overflow-y: auto;
}
.fade.in {
  opacity: 1;
}
.fade {
  opacity: 0;
  -webkit-transition: opacity .15s linear;
  -o-transition: opacity .15s linear;
  transition: opacity .15s linear;
}
.modal {
  color: white;
  position: fixed;
  top: 0;
  padding-top: 300px;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 100000;
  display: none;
  overflow: hidden;
  -webkit-overflow-scrolling: touch;
  outline: 0;
  background-color: #4c4c4c69;
}
.modal-header .close {
    margin-top: -2px;
}
.modal-content {
  background-color: red;
  margin: auto;
  padding: 20px;
  border: 1px solid #888;
  width: 80%;
}
button.close {
    -webkit-appearance: none;
    padding: 0;
    cursor: pointer;
    background: 0 0;
    border: 0;
}
.close {
    float: right;
    font-size: 30px;
    font-weight: 700;
    line-height: 1;
    color: #000;
    text-shadow: 0 1px 0 #fff;
    filter: alpha(opacity=20);
    opacity: .2;
}

/* -----------------------------

Madia tag per rendere il sito responsivo

------------------------------*/

/* Bigger than 920 */

@media screen and (max-width: 920px) {

  #ancor{
    display: block;
  }

  #otherh {
    height: 72px !important;
  }
  #other {
    background: #f9f9f9;
  }
  #other *:focus {
    outline: none;
  }
  #other ul {
    width: 80% !important;
    margin: 0 auto;
    float: none !important;
    display: none;
    -webkit-transition: all 300ms ease;
    -moz-transition: all 300ms ease;
    -ms-transition: all 300ms ease;
    -o-transition: all 300ms ease;
    transition: all 300ms ease;
  }
  #pull {
    background: #fff url('../images/logo2.png') no-repeat center center;
    width: 100%;
    display: block;
    height: 172px;
    line-height: 72px;
    color: #000;
    padding: 0 24px;
    box-sizing: border-box;
    text-indent: -99999px;
  }
  #pull .menu-icon {
    position: absolute;
    width: 16px;
    height: 16px;
    margin: 0;
    top: calc(50% - 8px);
    right: 25px;
    display: block;
    background: url('../images/menu-mobile.png') 0 0 no-repeat;
    -webkit-transform: rotate(0deg);
    -moz-transform: rotate(0deg);
    -ms-transform: rotate(0deg);
    -o-transform: rotate(0deg);
    transform: rotate(0deg);
    -webkit-transition: -webkit-transform 250ms ease-out 0s;
    -moz-transition: -moz-transform 250ms ease-out 0s;
    -o-transition: -o-transform 250ms ease-out 0s;
    transition: transform 250ms ease-out 0s;
  }
  #pull .menu-open {
    background-position: 0 -16px;
    -webkit-transform: rotate(-180deg);
    -moz-transform: rotate(-180deg);
    -ms-transform: rotate(-180deg);
    -o-transform: rotate(-180deg);
    transform: rotate(-180deg);
    -webkit-transition: -webkit-transform 250ms ease-out 0s;
    -moz-transition: -moz-transform 250ms ease-out 0s;
    -o-transition: -o-transform 250ms ease-out 0s;
    transition: transform 250ms ease-out 0s;
  }
  #logo_due {
    display: none;
  }
  #other ul {
    width: calc(100% - 200px) !important;
  }
  #other ul li {
    float: none;
    width: 100%;
    line-height: 35px !important;
    border-bottom: 1px solid #eee;
  }
  #other ul li:nth-last-of-type {
    border-bottom: none;
  }
  #other ul li a {
    display: block;
  }
  .header_top {
    display: none;
  }
  #logo {
    display: none;
  }
  #index {
    background: #f9f9f9;
  }
  #index ul {
    display: none;
    width: 80%;
    margin: 0 auto;
  }
  #index ul li {
    float: none;
    width: 100%;
    line-height: 35px !important;
    border-bottom: 1px solid #eee;
    margin-right: 22px;
    font-size: 11px !important;
  }
  #index ul li:last-of-type {
    border-bottom: none;
  }
  #index ul li a {
    display: block;
  }
  header {
    height: 72px;
  }
  .parent {width: 100%; margin: 20px 0px}
  .wrapper {padding: 20px 20px;
  }
  .new_product_home_text {
      font-size: 4.2rem;
      color: white;
      margin-bottom: 0px;
      padding-top: 40px;
      padding-bottom: 40px;
  }
}

/* Larger than mobile */
@media screen and (max-width: 780px) {

  .modal-dialog {
    width: 80%;
    margin: 30px auto;
    position: relative;
  }

/* box small */
	.box_small {
		float:left;
		display:block;
		width: 258px;
	  border: 1px solid #73AD21;
	  margin-bottom: 40px;
	  margin-right: 40px;
	  padding-left: 10px;
	  padding-right: 10px;
	  padding-bottom: 10px;
	}

/* box large */
.box_large {
	display: inline-block;
	border: 1px solid #dbdbdb;
	width: 292px;
	height: 100%;
	margin-bottom: 5px;
	vertical-align: top;
}
  #ancor{
    display: block;
  }
	#pull {
    background: #fff url('../images/logo2.png') no-repeat center center;
    width: 100%;
    display: block;
    height: 100px;
    line-height: 72px;
    color: #000;
    padding: 0 24px;
    box-sizing: border-box;
    text-indent: -99999px;
	}
	.slider {
		margin-top: 100px;
		z-index: -10 !important;
	}

	#otherh {
		height: 72px !important;
	}
	#other {
		background: #f9f9f9;
	}
	#other *:focus {
		outline: none;
	}
	#other ul {
		width: 80% !important;
		margin: 0 auto;
		float: none !important;
		display: none;
		-webkit-transition: all 300ms ease;
		-moz-transition: all 300ms ease;
		-ms-transition: all 300ms ease;
		-o-transition: all 300ms ease;
		transition: all 300ms ease;
	}

}


/* Bigger than 750 */
@media (min-width: 750px) {

}

/* Bigger than 1000 */
@media (min-width: 1000px) {

}
