@charset "UTF-8";

body {
	font-family: 'Roboto', sans-serif !important;
	color: #3b4043;
}

/* Button Back to Top */
#btn-back-to-top {
  display: none;
  position: fixed;
  bottom: 2em;
  right: 1.2rem;
  z-index: 99;
  padding: 0.8rem 1.4rem;
  border: none;
  outline: none;
  cursor: pointer;
  background-color: #ffb428;
  color: white;
  opacity: 0.7;
  transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
#btn-back-to-top:hover { background-color: #e3222a; }

/* Loader */
#loader {
  display: flex;
  position: fixed;
  height: 100%;
  width: 100%;
  z-index: 5000;
  background: rgba(0, 0, 0, 0.91);
}
.loader-inner { display: block; margin: auto; }
.loader-inner img { width: 14rem; margin-bottom: 1rem; }
.spinner-border { width: 3rem !important; height: 3rem !important; }

/* Font and Background Color */
.bg-red { border: none; background-color: #e3222a !important; color: white !important; }
.bg-dark-red { border: none; background-color: darkred !important; color: white !important; }
.bg-green { border: none; background-color: #a4c700 !important; color: white !important; }
.bg-orange { border: none; background-color: #ffb428 !important; color: white !important; }
.bg-black { border: none; background-color: black !important; color: white !important; }
.bg-dark-gray { border: none; background-color: #3b4043 !important; color: white !important; }
.bg-gray { border: none; background-color: #babbbc !important; color: white !important; }
.bg-light-gray { border: none; background-color: #dadada !important; color: #3b4043 !important; }
.bg-white { border: none; background-color: white !important; color: #3b4043 !important; }
.bg-dark { border: none; background-color:#212529 !important; color: white !important; }
.bg-gold { border: none; background-color: #ffb428 !important; color: white !important; }

.text-red { color: #e3222a !important; }
.text-dark-red { color: darkred !important; }
.text-green { color: #a4c700 !important; }
.text-orange { color: #ffb428 !important; }
.text-black { color: black !important; }
.text-dark-gray { color: #3b4043 !important; }
.text-gray { color: #babbbc !important; }
.text-light-gray { color: #dadada !important; }
.text-gold { color: #ffb428 !important; }

/* Font Family */
.font-roboto { font-family: 'Roboto', sans-serif !important; }
.font-satisfy { font-family: 'Satisfy', cursive !important; }

/* Font Size */
.xsmall { font-size: 0.7rem !important; }
.xxsmall { font-size: 0.6rem !important; }

/* Rotate */
.rotate-1 { transform: rotate(1deg); }
.rotate--1 { transform: rotate(-1deg); }
.rotate-2 { transform: rotate(2deg); }
.rotate--2 { transform: rotate(-2deg); }

/* Panel Heading Custom */
.accordion-item { border: none; }
.accordion-button:not(.collapsed) {
  color: black ;
  background-color: transparent;
  box-shadow: none;
}
.accordion-button::after {
  margin-top: 1rem;
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='dark'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
}
.accordion-button:not(.collapsed)::after {
  background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='dark'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e") !important;
}

/* Désactive le focus autour bouton */
*:focus {
   outline: none !important;
   box-shadow: none;
   -webkit-box-shadow: none;
}
.btn:focus,.btn:active {
   outline: none !important;
   box-shadow: none;
   -webkit-box-shadow: none;
}
.dropdown-toggle:focus {
  outline: none !important;
  box-shadow: none !important;
}
a {
  outline: none !important;
  box-shadow: none !important;
}

/* ---------------------------------------------------
    NAVBAR 
----------------------------------------------------- */

.navbar { padding: 1rem 0; border: none; z-index: 997; }
.btn-toggle { color: white; -webkit-transition: all 0.3s; -o-transition: all 0.3s; transition: all 0.3s; }
.btn-toggle:hover { color: #3b4043; }

/* ---------------------------------------------------
    SIDEBAR FULLSCREEN STORE INFO
----------------------------------------------------- */

.overlay-fs {
  position: fixed;
  z-index: 1001;
  width: 100%;
  height: 0%;
  top: 0;
  left: 0;
  background-color: rgb(0,0,0);
  background-color: rgba(0,0,0, 0.9);
  overflow-y: auto;
  transition: 0.5s;
}

.overlay-fs-content { top: 25%; width: 100%; text-align: center; }
.overlay-fs a { text-decoration: none; color: white; }
.overlay-fs a:hover, .overlay-fs a:focus { color: #3b4043; }
.overlay-fs .closebtn { 
    position: absolute; 
    top: 0.8rem;
    right: 0.2rem;
    width: 4rem;
    height: 4rem;
	font-size: 2rem;
    line-height: 2rem;
    text-align: center;
    cursor: pointer;
	-webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
.overlay-fs .closebtn:hover { 
    color: black;
}

/* ---------------------------------------------------
    SIDEBAR MENU
----------------------------------------------------- */
#sidebar {
	position: fixed;
	z-index: 999;
    top: 0;
    left: -15rem;
	width: 15rem;
    height: 100vh;
    background: #e3222a;
    color: #fff;
    transition: all 0.3s;
    overflow-y: scroll;
}
#sidebar.active { left: 0; }

.sidebar-header a img { margin-left: -1.3rem; }

#dismiss {
    position: absolute;
    top: 0.5rem;
    right: 0.5rem;
	width: 2rem;
    height: 2rem;
    line-height: 2rem;
    text-align: center;
    cursor: pointer;
	-webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
#dismiss:hover { color: #ea8d02; }

.overlay {
    display: none;
    position: fixed;
	z-index: 998;
    width: 100vw;
    height: 100vh;
    background: rgba(0, 0, 0, 0.7);
    opacity: 0;
    transition: all 0.5s ease-in-out;
}
.overlay.active { display: block; opacity: 1; }

#sidebar .sidebar-header { padding: 2rem; text-align: center; }
#sidebar ul li a {
    display: block;
    padding: 1rem;
	font-size: 1.1em;
	text-transform: uppercase;
	text-decoration: none;
	color: white;
	border-bottom: 1px solid #d61229;
	-webkit-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}
#sidebar ul li a:hover { background: #1d1d1d; }

#sidebar ul li ul li a:hover { background: #1d1d1d; color: white !important }
#sidebar ul li ul li.active a { color: #1d1d1d; }
#sidebar ul li.active>a,
a[aria-expanded="true"] {
    color: #1d1d1d;
}
#sidebar ul li.active>a:hover,
a[aria-expanded="true"] {
    color: white;
}

a[data-toggle="collapse"] { position: relative; }

.dropdown-toggle::after {
    display: block;
    position: absolute;
    top: 50%;
    right: 2rem;
    transform: translateY(-50%);
}
ul ul a {
	padding: 0.5rem 0rem 0.5rem 2rem !important;
	background: #d61229;
    font-size: 0.9em !important;
	border-bottom: none !important;
}




/* ---------------------------------------------------
    CONTENT 
----------------------------------------------------- */

#content {
    position: absolute;
    top: 0;
    right: 0;
	width: 100%;
    min-height: 100vh;
    transition: all 0.3s;  
}

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

header { background-color: black !important; padding-top: 0.5rem; }
.navHeader-part { background-color: #e3222a; }
.navHeader-part a.nav-link { color: white !important; }
.navHeader-part a:hover.nav-link { color: black !important; transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }
.navigation-part ul.navbar-nav li.nav-item a.nav-link { font-size: 1rem !important; }

li.btn-order-online { background-color: #a4c700; transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }
li:hover.btn-order-online { background-color: darkred; }
li:hover.btn-order-online a:hover { color: white !important; }

li.btn-carte-menu { background-color: #a4c700; transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }
li:hover.btn-carte-menu  { background-color: #3b4043; }

#logo-header { width: 13rem; height: 5.4rem; background-color: white; }
#logo-header a img { margin-left: -0.6rem; }

button.btn-orderOnline { margin-top: -0.6rem; background-color: #ffb428; font-size: 1rem; font-weight: bold; text-transform: uppercase; color: white; transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }
button:hover.btn-orderOnline { background-color: #3b4043; }
button.btn-orderOnline a { text-decoration: none; color: white; }

button.btn-call { margin-top: -0.6rem; background-color: #e3222a; font-size: 1rem; font-weight: bold; text-transform: uppercase; color: white; transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }
button:hover.btn-call { background-color: #3b4043; }
button.btn-call a { text-decoration: none; color: white; }

h1.slogan { font-size: 2.4rem; } 

/* ---------------------------------------------------
    JUMBOTRON AND BREADCRUMB 
----------------------------------------------------- */

.breadcrumb li a { text-decoration: none; color: white; }
.breadcrumb li.active { color: #a4c700; }

.bg-cover {
    background-attachment: static;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
/*.jb-concept { background-image: linear-gradient(to bottom, rgba(0,0,0,0.6) 0%,rgba(0,0,0,0.6) 100%), url("../img/jumbotron/bg-concept.png"); }*/
.jb-concept { background-image: url("../img/jumbotron/bg-concept.png"); }


/* ---------------------------------------------------
    FOOD MENU WITH ICON
----------------------------------------------------- */

.food-menu-part { 
	margin-top: 3.5rem;
	background-color: #3b4043; 
	text-align: center; 
	overflow-x: scroll;
    overflow-y: hidden;
    white-space: nowrap;
	padding-left: 0 !important;
	padding-bottom: 0 !important;
}

.food-menu-part img { width: 4rem; }
.food-menu-part a { color: white !important; text-decoration: none; white-space: normal; }

.food-menu {
	display: inline-block;
	width: 5rem; height: 5rem;
	margin-right: 1rem !important;
	padding: 0.5rem 0 0 0;
	transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}
.food-menu-active {
	display: inline-block;
	margin-right: 1rem !important;
	width: 5rem; height: 5rem;
	padding: 0.5rem 0 0 0;
	background-color: #e3222a;
}
.food-menu:hover { background-color: #ffb428; }
.food-menu a img, .food-menu-active a img { margin: 0 0 0.5rem 0; }

div.scrollmenu {
  background-color: #333;
  overflow: auto;
  white-space: nowrap;
}

div.scrollmenu a {
  display: inline-block;
  color: white;
  text-align: center;
  padding: 14px;
  text-decoration: none;
}

div.scrollmenu a:hover {
  background-color: #777;
}



/* MAIN */
.main-part { }
.content-main { }

.logo-store-name { width: 6rem; } 

.aboutus-part { }

.label-part { color: white; text-decoration: none; }

button.btn-readMore { margin-top: -0.6rem; background-color: #e3222a; font-size: 1rem; font-weight: bold; text-transform: uppercase; color: white; transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }
button:hover.btn-readMore { background-color: #ffb428; }
button.btn-readMore a { text-decoration: none; color: white; }


/* ---------------------------------------------------
    PRODUCT
----------------------------------------------------- */
button.accordion-button { border: 0; }
button.accordion-button h1 { margin-bottom: -1rem; text-transform: uppercase; font-weight: bold; color: #3b4043; text-align: start; }
.accordion-collapse { border: 0; }
.accordion-body { padding: 0; background-color: #f8f9fa; }

.content-product { }
.product-carousel { background: none; border: none; text-align: center; }
.product-name { margin-bottom: 0; font-size: 2rem; text-transform: uppercase; line-height:1.7rem; }
.product-name span { font-size: 0.8rem; }
.product-size { font-size: 1rem; font-weight: normal; color: #babbbc; }
.product-price { font-size: 1.5rem; font-weight: normal; color: #3b4043; }
.product-desc { min-height: 3rem; margin-bottom: 0; font-size: 0.9rem; color: #6c757d/*text-muted*/; }
.product-image { margin: 0 auto;  }

li.product-oneprice { font-size: 0.9rem !important; font-weight: normal; color: #3b4043 !important; }


.sort-dought {
    background-attachment: static;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}
.classique-dought { background-image: url("../img/pizzas/pate-classique.png"); }
.sesame-dought { background-image: url("../img/pizzas/pate-sesame.png"); }
.pan-dought { background-image: url("../img/pizzas/pate-pan.png"); }
.cheesy-dought { background-image: url("../img/pizzas/pate-cheesy.png"); }

.dashed { border: 1px #dadada dashed; }

/* ---------------------------------------------------
    FOOTER
----------------------------------------------------- */

footer { }

.footer-part { }

.online-part { }
.online-part h1 { margin-bottom: 0; font-size: 4rem; font-weight: normal; }
.online-part h5 { margin-bottom: 0; font-size: 2rem; font-weight: lighter; }

.bk-orderOnline { background: black; text-transform: uppercase; color: white; cursor: pointer; transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }
.bk-orderOnline:hover { background: #3b4043; }
.bk-orderOnline a { color: white; text-decoration: none; }
.bk-orderOnline a:hover { color: white; }

.badge-ou {
	margin-right: -5.5rem;
	margin-top: -3rem;
}

.bk-cardOnline { background: #e3222a; text-transform: uppercase; color: white; cursor: pointer; transition: color 0.15s ease-in-out, background-color 0.15s ease-in-out, border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out; }
.bk-cardOnline:hover { background: #3b4043; }
.bk-cardOnline a { color: white; text-decoration: none; }
.bk-cardOnline a:hover { color: white }

.location-part { }
.location-part h1 { margin-bottom: 0; font-size: 2rem; font-weight: lighter; text-transform: uppercase; text-align: center; }
.locationItinary  { margin-left: -3.2rem; text-align: center; }

.contact-part { text-align: center; text-transform: uppercase; }
.contact-part span.contactTitle { display: block; font-weight: lighter; font-size: 1rem; }
.contact-part span.contactText { display: block; font-weight: lighter; font-size: 2.5rem; }
.contact-part span.contactText-small { display: block; font-weight: lighter; font-size: 0.7rem; }
.contact-part a.contactMail { display: block; font-weight: normal; font-size: 1.5rem; text-decoration: none; color: white; }
.contact-part a:hover.contactMail { text-decoration: underline; }
.contact-part img { width: 5rem; }

.socialNetwork-part { text-align: center; }
.socialNetwork-part h4 { display: inline-block; margin-bottom: 0 !important; color: #dadada; text-transform: uppercase; }
.socialNetwork-part a { color: #dadada; text-decoration: none; }
.socialNetwork-part a:hover { color: darkgray; }

.copyRight-part { color: #3b4043; }
.copyRight-part a { color: #3b4043; text-decoration: none; }
.copyRight-part a:hover { text-decoration: underline; }

/* COUPON Menus & Promos */
.coupon-grid { border: 3px #dadada dashed; text-align: center }
.coupon-grid-bg { background-color: #e3222a; color: white; }
.coupon-grid h1 { font-family: 'Satisfy', cursive !important; }
.coupon-grid h2, .coupon-grid h4 { text-transform: uppercase; }
.coupon-grid h4 {   }
.coupon-grid h5 { font-weight: bold; }
.coupon-grid h5 span { font-family: 'Satisfy', cursive !important; font-weight: lighter !important; }
.coupon-grid h6 { text-transform: uppercase; font-weight: bold; }
.coupon-money { font-size: 5rem !important;  letter-spacing: -0.3rem; font-weight: lighter; }
.coupon-currency { display: inline-block; margin-bottom: 1rem !important; font-size: 2.8rem !important; }
.coupon-cents { display: inline-block; margin-bottom: 0rem !important; font-size: 1rem !important; font-weight: normal; }

/* X-Small devices (portrait phones, less than 576px) */
@media (max-width: 575.98px) {
			
	#logo-header { width: 10rem !important; height: 4.7rem; }
	
	h1.slogan { font-size: 0.7rem !important; } 
	
	.online-part { }
	.online-part h1 { font-size: 1.5rem; }
	.online-part h5 { font-size: 1rem; }
	
	.badge-ou {
		margin-right: -5rem;
		margin-top: -1.3rem !important;
	}
	
	.location-part h1 { font-size: 1.5rem; }
	.contact-part span.contactTitle { font-size: 0.9rem !important; }
	.contact-part span.contactText { font-size: 1.4rem !important; }
	.contact-part span.contactText-small { margin-bottom: -0.2rem; font-size: 0.5rem !important; }
	.contact-part a.contactMail { margin-top: -0.3rem !important; margin-bottom: 1.5rem; font-size: 1.5rem !important; }
	.contact-part img { margin-top: 0rem; }
	.bk-mail { background-color: darkgrey;  }
	
	.food-menu-part { position: fixed; top: 0; margin-top: 4.1rem; z-index: 995; opacity: 0.95; }
	.food-menu-part img { width: 3rem; }
    .food-menu {
		width: 3.5rem; height: 3.5rem;
		margin-right: 1rem !important;
		padding: 0.2rem 0 0 0 !important;
	}
	.food-menu-active {
		margin-right: 1rem !important;
		width: 3.5rem; height: 3.5rem;
		padding: 0.2rem 0 0 0 !important;
	}
	
	.breadcrumb-part { margin-top: 9rem;}
	
    
}

/* Small devices (landscape phones, less than 768px) */
@media (min-width: 576px) and (max-width: 767.98px) {
	
	.loader-inner img { width: 5rem; margin-bottom: 1rem; }
    .spinner-border { width: 2rem !important; height: 2rem !important; }
	
	
	h1.slogan { font-size: 1rem !important; } 
	
	.about-us-brand-bg { height: 20rem; }

	.online-part { }
	.online-part h1 { font-size: 2.5rem; }
	.online-part { font-size: 1rem; }
	
	.badge-ou {
		margin-right: -5rem;
		margin-top: -2.5rem;
	}
	
	.location-part h1 { font-size: 1.5rem; }
	.contact-part span.contactTitle { font-size: 0.8rem; }
	.contact-part span.contactText { font-size: 1.3rem; }
	.contact-part span.contactText-small { font-size: 0.6rem; }
	.contact-part a.contactMail { margin-top: 0.3rem; margin-top: 0.2rem;  margin-bottom: 0.7rem; font-size: 0.7rem; }
	
}

/* Medium devices (tablets, less than 992px) */
@media (min-width: 768px) and (max-width: 991.98px) { 
	
	button.btn-orderOnline { font-size: 1rem !important; }
	
	h1.slogan { font-size: 1.2rem !important; } 
	
	.badge-ou {
		margin-right: -5rem;
		margin-top: -3rem;
	}

	.about-us h2 { font-size: 1.5rem; }
	.about-us p { font-size: 0.8rem; }

	.location-part h1 { font-size: 2rem; }
	.contact-part span.contactTitle { font-size: 1rem; }
	.contact-part span.contactText { font-size: 1.9rem; }
	.contact-part a.contactMail { margin-top: 0.3rem; margin-bottom: 1.1rem; font-size: 0.9rem; }
	
}

/* Large devices (desktops, less than 1200px) */
@media (min-width: 992px) and (max-width: 1199.98px) { 
	
	#logo-header {  }
	.navigation-part ul.navbar-nav li.nav-item a.nav-link { font-size: 0.88rem !important; }
	
	h1.slogan { font-size: 2rem; } 

	.contact-part a.contactMail { margin-top: 0.5rem; margin-bottom: 1.1rem; font-size: 1rem; }
	
}

/* X-Large devices (large desktops, less than 1400px) */
@media (min-width: 1200px) { 
	
	.contact-part a.contactMail { margin-top: 0.3rem; margin-bottom: 0.7rem; }
	
}

/* XX-Large devices (larger desktops)
   No media query since the xxl breakpoint has no upper bound on its width */