
body {
  --display-font: "Allura", Georgia, serif;
  --display-font-weight: 400;

  --heading-font: "Elms Sans", Georgia, serif;
  --heading-font-weight: 400;
  --heading-color: var(--bs-dark);
  --heading-line-height: 1.24;

  /* bootstrap */
  --bs-body-font-family: "Elms Sans", sans-serif;
  --bs-body-font-size: 1.2rem;
  --bs-body-font-weight: 200;
  --bs-body-line-height: 1.5;
  --bs-body-color: #8f8f8f;
  --bs-body-color-rgb: 143, 143, 143;

  --bs-primary: #e73c13;
  --bs-primary-dark: #be3b1a;
  --bs-secondary: #6c757d;
  --bs-black: #020202;
  --bs-light: #F1F1F0;
  --bs-dark: #212529;
  --bs-gray: #9aa1a7;
  --bs-gray-dark: #51565b;

  --bs-primary-rgb: 231, 60, 19;
  --bs-secondary-rgb: 108, 117, 125;
  --bs-black-rgb: 2, 2, 2;
  --bs-light-rgb: 241, 241, 240;
  --bs-dark-rgb: 33, 37, 41;

  --bs-link-color: var(--bs-dark);
  --bs-link-color-rgb: 17, 17, 17;
  --bs-link-decoration: underline;
  --bs-link-hover-color: var(--bs-primary);
  --bs-link-hover-color-rgb: 17, 17, 17;
}

@media only screen and (max-width: 991px) {
  body {
    --bs-body-font-size: 1.2rem;
  }
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
  font-family: var(--heading-font);
  font-weight: var(--heading-font-weight);
  color: var(--heading-color);
  line-height: var(--heading-line-height);
}

.display-1,
.display-2,
.display-3,
.display-4,
.display-5,
.display-6 {
  font-family: var(--display-font);
  font-weight: var(--display-font-weight);
}

.display-title-card {
  font-family: var(--display-font);
  font-weight: var(--display-font-weight);
  color: #fff;
  
   @media (width <= 1024px) {
    font-size: 75%;
  }
}

a {
  text-decoration: none;
  transition: all 0.3s ease-out;
}

.navbar {
	--bs-navbar-padding-y: 0 !important; /* top menu*/
}

/* dropdown */
.dropdown-menu {
  --bs-dropdown-border-radius: 0;
  --bs-dropdown-border-width: 0;
  --bs-dropdown-bg: #eb8d96; /*transparent;*/
  --bs-dropdown-padding-x: 0.25rem !important;
  --bs-dropdown-padding-y: 0.25rem !important;
}

.dropdown-menu li:last-child {
  border-bottom: 0 !important;
}

.dropdown-item {
  --bs-dropdown-item-padding-y: 0.5rem;
  --bs-dropdown-item-padding-x: 0.5rem;
  --bs-dropdown-link-color: var(--bs-black);
  --bs-dropdown-item-border-radius: 0;
  background-color: #eb8d96;
}

.dropdown-item:hover {
  background-color: #ffe5db !important;
}

.dropdown-item.active,
.dropdown-item:active {
  --bs-dropdown-link-active-color: var(--bs-light);
  --bs-dropdown-link-active-bg: var(--bs-secondary);
}

.offcanvas {
  width: 100% !important;
}

.dropdown .fs-6 {
    font-size: 0.9rem !important;
}

/* list group */
.list-group-item {
  --bs-list-group-item-padding-x: 0;
  --bs-list-group-border-width: 0;
}

/* btn */
.btn {
  --bs-btn-border-radius: 0;
}

.btn-primary {
  --bs-btn-color: #fff;
  --bs-btn-bg: var(--bs-primary);
  --bs-btn-border-color: var(--bs-primary);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--bs-primary-dark);
  --bs-btn-hover-border-color: var(--bs-primary-dark);
  --bs-btn-focus-shadow-rgb: 49, 132, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--bs-secondary);
  --bs-btn-active-border-color: var(--bs-secondary);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: #fff;
  --bs-btn-disabled-bg: var(--bs-primary);
  --bs-btn-disabled-border-color: var(--bs-primary);
}

.btn-outline-primary {
  --bs-btn-color: var(--bs-primary);
  --bs-btn-border-color: var(--bs-primary);
  --bs-btn-hover-color: #fff;
  --bs-btn-hover-bg: var(--bs-primary);
  --bs-btn-hover-border-color: var(--bs-primary);
  --bs-btn-focus-shadow-rgb: 13, 110, 253;
  --bs-btn-active-color: #fff;
  --bs-btn-active-bg: var(--bs-primary);
  --bs-btn-active-border-color: var(--bs-primary);
  --bs-btn-active-shadow: inset 0 3px 5px rgba(0, 0, 0, 0.125);
  --bs-btn-disabled-color: var(--bs-primary);
  --bs-btn-disabled-bg: transparent;
  --bs-btn-disabled-border-color: var(--bs-primary);
  --bs-gradient: none;
}

/* text white */
.text-white {
  --heading-color: var(--bs-light);
  --bs-breadcrumb-item-active-color: var(--bs-light);
  --bs-breadcrumb-divider-color: var(--bs-light);
  --bs-link-color-rgb: var(--bs-light-rgb);
  --bs-link-hover-color-rgb: var(--bs-light-rgb);
}

.text-white .nav-link {
  --bs-nav-link-color: var(--bs-light);
  --bs-nav-link-hover-color: var(--bs-light);
  --bs-nav-link-active-color: var(--bs-light);
  --bs-navbar-active-color: var(--bs-light);
}

/* dark theme */
[data-bs-theme=dark] {
  color-scheme: dark;

  --heading-color: #fff;
  --bs-link-color: #ccc;
  --bs-link-hover-color: var(--bs-primary);
  --bs-link-color-rgb: 204, 204, 204;
  --bs-link-hover-color-rgb: var(--bs-primary-rgb);
  --bs-body-color: #d1d1d1;
  --bs-body-bg: #020202;
  --bs-body-bg-rgb: 2, 2, 2;
}

[data-bs-theme=dark] .dropdown-item {
  --bs-dropdown-link-color: var(--bs-light);
  --bs-dropdown-link-hover-color: var(--bs-white);
}

[data-bs-theme=dark] .bg-white,
[data-bs-theme=dark] .bg-light {
  --bs-bg-opacity: 0.1;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
  --bs-gutter-x: 1.5rem;
}

/* end of Bootstrap Color Theme */

/* letter spacing */
.ls-1 {
  letter-spacing: 0.1em;
}
.ls-2 {
  letter-spacing: 0.2em;
}

/* header + footer colors */

.top-site {
  background-color: #ffe5db;
  
    @media (width <= 1024px) {
    display: none;
  }
}

.top-menu {
  background-color: #eb8d96;
}

#footer {
  background-color: #ffe5db;
}

.footer-bottom {
  background-color: #eb8d96;
  color: #000;
  
    @media (width <= 1024px) {
    font-size: 0.8em;
  }
}

/* slide-in from bottom menu */
/* adapted from : https://codepen.io/ihateonions/pen/ZeEWgB */

.bottom-menu { 
  width: 100%; 
  float: left; 
  background-color: #fff; 
  color: #444; 
  box-shadow: 0 -5px 10px 5px rgba(0, 0, 0, 0.5); 
  position: fixed; 
  bottom: 0; 
  display: none; 
  height: 90%; 
  z-index: 1000; 
}

.bottom-menu-inside { width: 95%; text-align: left; padding: 50px 100px; margin: 0; }

#close-bottom-menu {
  font-size: 30px;
  top: 20px;
  right: 20px;
  float: right;
  color: #333;
  position: relative;
  text-decoration: none;
  -webkit-transition: all .2s ease-in-out;
  -moz-transition: all .2s ease-in-out;
  transition: all .2s ease-in-out;
}

#close-bottom-menu:hover { color: red; }

/* button launcher for bottom menu */
/* https://codepen.io/burakcanince/pen/zMENNr */

.bottom-menu-launcher {
  display: flex;
  align-items: center;
  justify-content: center;
  border: none;
  border-radius: 10px;
  color: #fff;
  font-size: 1em;
  float: left;
  width: 250px;
  padding: 0 20px;
}

.btn-gradient {
  background: rgba(0, 0, 0, 0.15);
  box-shadow: 2px 0 0 0 rgba(78, 72, 72, 0.4);
  border-radius: 10px 60px 0 10px;
  position: relative;
  left: -20px;
  width: 40%;
  padding: 10px;
}

.btn-gradient i {
  font-size: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.btn-dribbble {
  background-color: #f0709f;
}

.btn-text {
  width: 60%;
}

/* homepage responsive -- hide uneeded elements */

.left-row, .right-row {
    @media (width <= 1024px) {
    display: none;
  }
}

.center-row {
    @media (width <= 1024px) {
    width: 100%;
  }
}

/* btn-link */
.btn-link {
  text-transform: uppercase;
  text-decoration: none;
  font-size: 0.8em;
  letter-spacing: 2px;
}

/* bg-overlay */
.bg-overlay {
  position: relative;
}

.bg-overlay::after {
  content: '';
  position: absolute;
  background: rgba(0, 0, 0, 0.6);
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: -1;
}

/* homepage center div bg */

#main-center-bg {
  background-image: url('img/logo-desserts-gourmands-4_small.png');
  background-repeat: no-repeat;
  background-position: center bottom;
}

/* textes & liens */

.text-align-center {
  text-align: center;
}

.text-75 {
  font-size: 75% !important;
  text-transform: lowercase !important;
}

.text-85 {
  font-size: 85% !important;
}

.link-ext {
  color: #eb8d96;
  border-bottom: 1px dashed;
}

/* tooltip */

.lien-tooltip
{
 color: #eb8d96 !important;
 border-bottom: 1px #eb8d96 dashed !important;
 cursor: hand !important;
}

.lien-tooltip:hover
{
 cursor: hand !important;
}

/* séparateur */

.hr-align-center {
  height: 55px;
  background-image: url('img/type_4.png');
  background-repeat: no-repeat;
  background-position: center;
}

/* ul li team :-) */

ul.teamster, ul.teamster li {
  list-style: none !important;
  padding: 0.5em 0;
  font-size : 95%;
}

/* logo text */

@media (min-width: 1200px) {
    .display-5 {
        font-size: 4rem; /* default font is 3rem */
    }
}

.logo-top-text span {
  font-size : 50%;
}

/* logo "original recipe" */

.original-recipe-logo {
  top: -30px;
  left: -30px;
  float: left;
  position: absolute;
  width : 150px;
  height : 150px;
}

/* séparateur hr + h6 */

hr {
  display: block;
  margin: 50px 0 -15px;
  width: 100%;
  height: 1px;
  border: 0;
  background-color: rgba(0, 0, 0, 0.95);
}

hr + h6 {
  display: inline-block;
  position: relative;
  left: 50%;
  margin: 0;
  padding: 5px 10px;
  border: 1px solid #453986;
  transform: translateX(-50%);
  color: #453986;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.32em;
  text-align: center;
  text-transform: uppercase;
  background-color: #fff;
}

hr + h6::first-letter {
  margin-left: 0.32em;
}

/* alternative transform: translate */

hr + h6 {
  border-width: 1px 0;
}

hr + h6::before, hr + h6::after {
  display: block;
  position: absolute;
  top: 0;
  bottom: 0;
  width: 1px;
  background: #453986;
  content: "";
}

hr + h6::before {
  left: 0;
}

hr + h6::after {
  right: 0;
}

/* homepage cloudtags */

p.cloudtags {
  max-width: 90%;
  margin: 3em auto 1em;
}

p.cloudtags span {
  font-size: calc(1rem * var(--tag-multiplier));
  color: var(--tag-color);
}

/* highlight */

p.highlight {
  font-size : 80%;
}

/*****************************************/
/*    Highlight style for <strong> tag   */
/*****************************************/

strong {
  position: relative;
}

strong::before {
  /* highlight color */
  background-color: #eb8d96;

  content: "";
  position: absolute;
  width: calc(100% + 4px);
  height: 60%;
  left: -2px;
  bottom: 0;
  z-index: -1;
  transform: rotate(-2deg);
}

h4 {
	color: #000;
	margin: 0;
	margin-bottom: 20px;
	padding: 0;
	text-align: center;
}

/* weekly recipe link */

a.weekly-recipe {
  position: relative;
}

a.weekly-recipe:after {
  content: "[ voir la recette ]";
  text-transform: uppercase;
  font-size: 0.75rem;
  position: absolute;
  left: 115px;
  top: 5px;
  box-shadow: 0px 1px 3px 0px slateblue;
  color: black;
  padding: 3px 5px;
  transform: rotate(-13deg);
  background-color: yellow;
}

/* side menu recipes */

.side-menu-left {
    width: 0;
	max-width: 95%;
    height: 100%;
    padding: 0;
	z-index: 100;
	margin-left: 0;
    box-sizing: border-box;
    background-color: #fff;
	color: #455560;
    display: flex;
    flex-flow: column nowrap;
    box-shadow: 5px 0px 10px rgba(17, 26, 41, 0.6);
    position: fixed;

    transition: .5s;
	font-size: 0.9em;
}

#side-menu-left-switch {
    position: absolute;
    opacity: 0;
	
	@media (width <= 1024px) {
    display: none;
	}
}

#side-menu-left-switch:checked + .side-menu-left {

	padding: 50px 25px;
	width: 700px;
	
	& nav.side-menu-left-links a {
    display: block;
	}
}

nav.side-menu-left-links a {
    display: none;
    padding: 10px;
    color: #455560;
    text-decoration: none;
    position: relative;
}

nav.side-menu-left-links a+a::before {
     content: '';
     position: absolute;
     border-top: 0.1rem dashed #455560;
     left: 10px;
     right: 30px;
     top: 0;
 }

.side-menu-left label {
    position: absolute;
    width: 80px;
    height: 100px;
	padding: 0 15px 15px;
    background-color: #fff;
    color: #455560;
    right: -80px;
    top: 25.5%;
    bottom: 0;
    line-height: 90px;
    text-align: center;
    border-radius: 0 10px 10px 0;
	border: 1px dashed #455560;
	border-left: 0;
	
	@media (width <= 1024px) {
    display: none;
	}
}

 /* Method 1 */

nav.side-menu-left-links a img {
     margin-right: 0.5em;
     transform: scale(1);
     transition: .5s;
}

nav.side-menu-left-links a:hover img {
    margin-right: 1.5em;
    transform: scale(1);
	right: -50px;
}

nav.side-menu-left-links a:hover {
    color: #eb8d96 !important;
}

.img-icon {
    width: 30px;
}

/* right menu slide-in information */

.side-menu-right {
    width: 0;
	max-width: 95%;
    height: 100%;
    padding: 0;
	z-index: 100;
	position: fixed;
	right: 0;
    background-color: #fff;
	color: #455560;
    -webkit-box-shadow: -5px 0px 10px 0px rgba(0, 0, 0, 0.5);
	box-shadow: -5px 0px 10px 0px rgba(0, 0, 0, 0.5);

    transition: .5s;
	font-size: 0.9em;
}

#side-menu-right-switch {
    position: absolute;
    opacity: 0;
}

#side-menu-right-switch:checked + .side-menu-right {
    width: 700px;
	padding: 50px 50px;
	transform: translate3d(0, 0, 0);
}

#side-menu-right-switch:checked + .side-menu-right label .fa-solid {
    transform: scaleX(-1);
}

.side-menu-right label {
    position: absolute;
    width: 80px;
    height: 100px;
	padding: 0 15px 15px;
    background-color: #fff;
    color: #455560;
    left: -80px;
    top: 25.5%;
    bottom: 0;
    line-height: 95px;
    text-align: center;
    border: 1px dashed #455560;
	border-right: 0;
	border-radius: 10px 0  0 10px;
	
	@media (width <= 1024px) {
    display: none;
	}
}

.thumbnail {
    max-width: 75px;
}

.mini-thumbnail {
    max-width: 50px;
}

.flex-fill {
  font-size: 85% !important;
}

/*
-- lightbox -- https://codepen.io/trvswgnr/pen/MWrPwWx 
*/

/*
 card recipe 
 inspired by https://codepen.io/wpcoder/pen/wPBMMK
*/

.recipe-card {
  width: 95%;
  margin: 0 auto;
  height: auto;
}

#card-container {
  background: #ededed;
  width: 100%;
  height: auto;
}

#card-title {
  background: #455560;
  padding: 15px 50px 5px;
  border-radius: 5px 5px 0 0;
}

#card-title h2 {
  color: #fff;
  font-size: 3rem !important;
}

#card-info {
  background: #fff !important;
  width: 100%;
  border-left: solid 1px #ededed;
  border-right: solid 1px #ededed;
}

#card-info.display-flex {
  display: flex;
  flex-wrap: wrap;
  background-color: #fff !important;
}

#card-info.display-flex > [class*='col-'] {
  flex-grow: 1;
  background-color: #fff !important;
}

.spacer { clear: both; }

.detail-value {
  color: #ee6116;
}

#card-items {
  background: #eee;
  padding: 20px
}

.card-item-title {
  width: 90%;
  height: 50px;
  margin-left: 25px;
  padding: 15px 0 50px 0;
  text-align: left;
  display: flex;
  align-items: center;
}

ul.list-circle {
list-style-type: circle;
list-style-position: outside;
}

#method {
  background: #fff;
  border-left: solid 1px #ededed;
  border-right: solid 1px #ededed;
  border-bottom: solid 1px #ededed;
  padding: 20px 10px;
}

#method li.ingredients {
  list-style-position: inside;
  margin-bottom: 10px;
  margin-left: -38px;
  list-style-type: none;
}

/* liens */

.link-recipe {
  color: #eb8d96;
}

.tip-recipe {
  color: #b44;
}

.title-recipe {
  /*font-family: "Faster One", system-ui;
  font-family: "Fontdiner Swanky", serif;*/
  font-family: "Fredericka the Great", serif;
  font-weight: 400;
  font-style: normal;
}

.orange {
  color: #ee6116;
}

.orange-soft {
  color: #f88218; /* f49138 */
}

.red {
  color: #a00;
}

/* recipes images */

.icons-small {
  width: 35px;
  height: 35px;
}

.icons-medium {
  width: 50px;
  height: 50px;
}

.icons-large {
  height: 57px;
}

.move-up-25 {
  margin-top: -25px;
}

.move-up-50 {
  margin-top: -50px;
}

.text-xxs-small {
  font-size: 60%;
} 

.icon-recipe {
  height: 30px;
}

.nutriscore-bg {
  background-image: url('img/nutriscore.png');
  background-repeat: no-repeat;
  background-position: right 50px bottom 50%;
  background-size: 25%;
}

/* augmente la taille par défaut du tooltip */

.tooltip-inner {
  width: 300px !important;
  max-width: 400px !important;
  text-align: justify;
}

/* prompt messages */

#promptMessages {
  position: fixed;
  top: 25px;
  right: 25px;
  width: 30%;
}

.alert {
  position: relative;
}

.alert .close {
  position: absolute;
  top: 5px;
  right: 5px;
  font-size: 1em;
}

.alert .fa-solid {
  margin-right: 1em;
}

/* recipe text underline */

.fontdiner-swanky-regular {
  font-family: "Fontdiner Swanky", serif;
  font-weight: 400;
  font-style: normal;
}

.text-underline {
  font-family: "Fredericka the Great", serif;
  font-optical-sizing: auto;
  /*font-family: "Fontdiner Swanky", serif;*/
  font-weight: 400;
  font-style: normal;
  font-size: 1.5rem;
  /*text-transform: uppercase;*/
  text-align: center;
  line-height: 1;
}

.fancy {
  position: relative;
  white-space: nowrap;
}

.fancy:after {
  --deco-height: 0.3125em;
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: calc(var(--deco-height) * -0.925);
  height: var(--deco-height);
  background-image: url("data:image/svg+xml,%3Csvg width='100' height='64' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cg clip-path='url(%23a)'%3E%3Cpath d='M-17 30.5C-1 22 72-4 54 13 37.9 28.2-2.5 57.5 16 55.5s72-29 104-40' stroke='%23990011' stroke-width='10'/%3E%3C/g%3E%3Cdefs%3E%3CclipPath id='a'%3E%3Cpath fill='%23fff' d='M0 0h100v64H0z'/%3E%3C/clipPath%3E%3C/defs%3E%3C/svg%3E%0A");
  background-size: auto 100%;
  background-repeat: round;
  background-position: 0em;
}

/* recipe name title */

.h-kranky-regular-italic {
  font-family: "Kranky", serif;
  font-weight: 400;
  font-style: italic;
}

.fredericka-the-great {
  font-family: "Fredericka the Great", serif;
  font-weight: 400;
  font-style: normal;
}

/* recipe of the week link 
   https://codepen.io/carolaine-vieira/pen/VqwbZN 
*/

.recipe-of-the-week {
  /*background-color: #ffe5db;*/
  background-color: #ffee8c; /*eb8d96;*/
  border: 1px solid #000;
  color: #000;
  font-family: "Elms Sans", serif;
  font-size: 0.8rem;
  text-transform: uppercase;  
  padding: 10px;
  max-width: 95%; /* max width of button */
  display: block;
  text-align: left;  
  margin: 10px auto;
  position: relative;
}

.recipe-of-the-week:before {
  content: ">";
  position: absolute;
  right: 0;
  top: 0;
  background: #000;
  color: #fff;
  font-family: "Roboto", serif;
  font-size: 3em;
  font-weight: 400;
  width: 50px;
  height: 100%;
  line-height: 37px;
  text-align: center;
  padding-right: 25px;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.recipe-of-the-week:hover:before {
  padding-right: 0;
  -webkit-transition: all 0.3s ease-out;
  -moz-transition: all 0.3s ease-out;
  -ms-transition: all 0.3s ease-out;
  -o-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.recipe-of-the-week:hover {
  background-color: #ffde21; /* f5d558 ? */
  border-color: #000;
  color: #000;
}

/*
 timeline recipe 
 inspired by https://codepen.io/alanhouser/pen/aErrQJ
*/

#timeline-content {
  margin: -25px 0 0 50px;
  text-align: left;
}

.timeline {
  border-left: 2px solid #455560;
  border-bottom-right-radius: 2px;
  border-top-right-radius: 2px;
  letter-spacing: 0.5px;
  position: relative;
  line-height: 1.4em;
  font-size: 1.15rem;
  padding: 25px 0 25px 50px;
  list-style: none;
  text-align: left;
  max-width: 90%;
  color: #222;
}

.timeline h1 {
  font-size: 1.2rem;
}

.timeline h2,
.timeline h3 {
  font-size: 1.4rem;
}

.timeline .event {
  border-bottom: 1px dashed #455560;
  padding-bottom: 10px;
  margin-bottom: 25px;
  position: relative;
}

.timeline .event:last-of-type {
  padding-bottom: 0;
  margin-bottom: 0;
  border: none;
}

.timeline .event:before,
.timeline .event:after {
  position: absolute;
  display: block;
  top: 0;
}

.timeline .event:before {
  left: -197.5px;
  color: #455560;
  content: attr(data-date);
  text-align: right;
  font-size: 1.2rem;
  min-width: 120px;
}

.timeline .event:after {
  box-shadow: 0 0 0 2px #455560;
  left: -56.85px;
  background-color: #ccc;
  border-radius: 50%;
  height: 11px;
  width: 11px;
  content: "";
  top: 5px;
}

/* copy recipe to clipbpard button */
/* https://codepen.io/doel_javid/pen/OPVXKaX */

@keyframes gummy-btn-hover {
	40% {
		transform: scale(1.05);
		border-radius: 10px;
	}
	70% {
		transform: scale(1.05);
		border-radius: 16px;
	}
	100% {
		transform: scale(1.05);
		border-radius: 10px;
	}
}

@keyframes gummy-btn-press {
	75% {
		transform: scale(0.85);
		border-radius: 32px;
	}
	100% {
		transform: scale(0.9);
		border-radius: 20px;
	}
}

a.button {
	position: relative;
	padding: 8px 10px 3px 10px;
	background-color: #f46;
	color: #000;
	border: 2px solid #a24;
	border-radius: 16px;
	font-family: inherit;
	font-size: 1em;
	font-weight: 400;
	transition: all linear 0.2s;
	font-family: "Sour Gummy", sans-serif;
}

a.button:hover {
	transform: scale(1.05);
	border-radius: 10px;
	animation: 0.5s linear gummy-btn-hover;
	cursor: pointer;
}

a.button:active {
	transform: scale(0.9);
	border-radius: 20px;
	animation: 0.2s linear gummy-btn-press;
}

a.button:before {
	content: "";
	position: absolute;
	top: 5px;
	right: 12px;
	width: 70%;
	height: 4px;
	background-color: #fff;
	border-radius: 8px;
}

/*
	These are simply just overglorified color classes.
*/

.gummy-cherry {
	background-color: #f46;
	border-color: #a24;
}

.gummy-strawberry {
	background-color: #fad;
	border-color: #d7b;
}

.gummy-raspberry {
	background-color: #3df;
	border-color: #57c;
}

.gummy-lemon {
	background-color: #ff0;
	border-color: #b90;
}

/* alert messages modal a.k.a toast */
.toast-alert {
  /*position: absolute;*/
  position: fixed;
  top: 25px;
  right: 25px;
  z-index: 10000;
  border-radius: 15px;
  border: 1px solid #999;
  background: #eee;
  padding: 20px 35px 20px 25px;
  box-shadow: 0 6px 20px -5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transform: translateX(calc(100% + 25px));
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.35);
  
  display: none;
}

.toast-alert.active {
  display: block;
  transform: translateX(0%);
}

.toast-alert .toast-alert-content {
  display: flex;
  align-items: center;
}

.toast-alert-content .check {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  min-width: 35px;
  background-color: #f46;
  color: #fff;
  font-size: 20px;
  border-radius: 50%;
}

.toast-alert-content .message {
  display: flex;
  flex-direction: column;
  margin: 0 20px;
}

.message .text {
  font-size: 1rem;
  font-weight: 400;
  color: #666;
}

.message .text.text-1 {
  font-weight: 600;
  color: #333;
}

.toast-alert .close {
  position: absolute;
  top: 10px;
  right: 15px;
  padding: 5px;
  cursor: pointer;
  opacity: 0.7;
}

.toast-alert .close:hover {
  opacity: 1;
}

.toast-alert .progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;

}

.toast-alert .progress:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background-color: #f46;
}

.progress.active:before {
  animation: progress 5s linear forwards;
}

@keyframes progress {
  100% {
    right: 100%;
  }
}

/* Fix for Smaller Screens */

@media (max-height: 300px) {
	body {
		justify-content: flex-start;
	}
}

/* Adjust for Reduced Motion */

@media (prefers-reduced-motion: reduce) {
	* {
		transition: none !important;
		animation-duration: 0.001s !important;
	}
}

/* flip cards - crusts recipes */
/* 
  https://codepen.io/zremboldt/pen/ZvQjOG 

*/

.info ul.ul-1, .info .ul-1 li {
  text-decoration: none;
  list-style: circle outside;
}

.info ul.ul-2, .info .ul-2 li {
  text-decoration: none;
  list-style: decimal;
}

.info ul.ul-1, .info ul.ul-2 {
  padding-left: 20px;
}

svg {
  margin: 0px;
  min-width: 24px;
  min-height: 24px;
}

.cardContainer {
  display: inline-block;
  position: relative;
  width: 30%;
  height: 600px;
  min-width: 400px;
  min-height: 600px;
  margin: 4px;
  perspective: 1000px;
}

.active-box {
  transform: translateZ(0px) rotateY(180deg) !important;
}

.active-box:after {
  display: none;
}

.card {
  display: inline-block;
  width: 100%;
  height: 100%;
  cursor: pointer;
  -moz-backface-visibility: hidden;
  transform-style: preserve-3d;
  transform: translateZ(-100px);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.card .side .front .info p {
  font-size: 1rem !important;
}

.card:after {
  content: "";
  position: absolute;
  z-index: -1;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  box-shadow: 0 14px 50px -4px rgba(0, 0, 0, 0.15);
  opacity: 0;
  transition: all 0.6s cubic-bezier(0.165, 0.84, 0.44, 1.4);
}

.card:hover {
  transform: translateZ(0px);
}

.card:hover:after {
  opacity: 1;
}

.card .side {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  position: absolute;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background-color: white;
}

.card .front {
  z-index: 2;
}

.card .back {
  transform: rotateY(180deg);
  overflow: auto !important;
}

.card .info {
  padding: 16px;
}

.front .img {
  background-color: #dadce2;
  background-position: center;
  background-size: cover;
  border-radius: 5px 5px 0 0;
  width: 100%;
  height: 250px;
}

.front .img1 {
  background-image: url('img/recipes/pates-10.jpg');
}

.front .img2 {
  background-image: url('img/recipes/pates-8.jpg');
}

.front .img3 {
  background-image: url('img/recipes/pates-7.jpg');
}

.front .img4 {
  background-image: url('img/recipes/pates-11.jpg');
}

.front .img5 {
  background-image: url('img/recipes/pates-2.jpg');
}

.front .img6 {
  background-image: url('img/recipes/pates-5.jpg');
}

.front .img7 {
  background-image: url('img/recipes/pates-1.jpg');
}

.front .img8 {
  background-image: url('img/recipes/pates-13.jpg');
}

.front .img9 {
  background-image: url('img/recipes/pates-3.jpg');
}

.back .reviews {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
  cursor: pointer;
}

.back .reviews p {
  color: #c4c4c4;
  font-weight: 300;
  margin: 1px 0 0 6px;
  transition: 0.3s ease-in-out;
}

.back .info {
  overflow: auto !important;
}

.medium-text {
  font-size: 0.9rem !important;
}

/* showroom recipe card */

.container-recipe-box {
  background-color: #fff;
  position: relative;
  display: inline-block;
  width: 25%;
  border-radius: 5px;
  box-shadow: 0 15px 20px rgba(0, 0, 0, 0.356);
  padding: 10px 10px;
  margin: 0 50px 50px 50px;
}

.container-recipe-box img {
  width: 100%;
  border-radius: 5px 0 0 5px;
  padding: 1px 1px;
}

.container-recipe-box .btn {
  position: absolute;
  bottom: -20px;
  right: -20px;
  border: none;
  outline: none;
  display: flex;
  align-items: center;
  background-color: #fc9400;
  color: #fff;
  padding: 15px 30px;
  font-size: 1rem;
  text-transform: uppercase;
  border-radius: 5px;
  cursor: pointer;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.294);
}

.container-recipe-box .btn i {
  margin-left: 20px;
  font-size: 1.5rem;
}

.container__text {
  padding: 15px 20px 0;
}

.container__text h4 {
  color: #351897;
  font-weight: 400;
}

.container__text p {
  font-size: 1rem;
}

.container__text .container__text__timing {
  display: flex;
  margin: 20px 0 10px;
}

.container__text .container__text__timing .container__text__timing_time {
  margin-right: 40px;
}

.container__text .container__text__timing h5 {
  margin-bottom: 5px;
  font-size: 1rem;
  font-weight: 400;
  color: #818189;
}

.container__text .container__text__timing p {
  color: #351897;
  font-weight: bold;
  font-size: 1.2rem;
}

/* toast modal for copied ingredients list */

.toast-alert {
  position: fixed;
  top: 25px;
  right: 25px;
  border-radius: 15px;
  border: 1px solid #999;
  background: #eee;
  padding: 20px 35px 20px 25px;
  box-shadow: 0 6px 20px -5px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  transform: translateX(calc(100% + 25px));
  transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.35);
  transition-duration: 3s;
}

.toast-alert.active {
  transform: translateX(0%);
  transition-duration: 3s;
  transition-property: transform;
}

.toast-alert .toast-alert-content {
  display: flex;
  align-items: center;
}

.toast-alert-content .check {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 35px;
  min-width: 35px;
  background-color: #f46;
  color: #fff;
  font-size: 20px;
  border-radius: 50%;
}

.toast-alert-content .message {
  display: flex;
  flex-direction: column;
  margin: 0 20px;
}

.message .text {
  font-size: 1rem;
  font-weight: 400;
  color: #666;
}

.message .text.text-1 {
  font-weight: 600;
  color: #333;
}

.toast-alert .close {
  position: absolute;
  top: 10px;
  right: 15px;
  padding: 5px;
  cursor: pointer;
  opacity: 0.7;
}

.toast-alert .close:hover {
  opacity: 1;
}

.toast-alert .progress {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 3px;
  width: 100%;

}

.toast-alert .progress:before {
  content: "";
  position: absolute;
  bottom: 0;
  right: 0;
  height: 100%;
  width: 100%;
  background-color: #f46;
}

.progress.active:before {
  animation: progress 5s linear forwards;
}

@keyframes progress {
  100% {
    right: 100%;
  }
}

/**/