/* colours */
:root{
 
  --primary: #FFE9D2;
  --secondary: #FFE1C4;
  --title: #FF8816;

}

.row .col {
  padding: 0 0.33em;
}
.thumb
{
  border: 1px solid #CCC;
  border-radius: 10px 10px 0px 0px;
  margin-bottom: 10px;
  text-align: center;
}
.thumb span
{
  color: #757575;
  font-family:sans-serif;
}
.thumb img
{
  border-radius: 10px 10px 0px 0px;
  height: 50px;
  width: 100%;
}
.quick-guide img{
  height: 100px;
}
/* layout styles */
nav{
  background: #fff;/*var(--primary);*/
  border-bottom: 5px solid var(--secondary);
}
nav a{
  color: var(--title);
  font-size: 22px;
  font-family: sans-serif;
}
nav a span{
  font-weight: bold;
}
nav .sidenav-trigger{
  margin: 0;
}

/* recipe styles */
.recipes{
  margin-top: 20px;
}
.headers{
  color: var(--title);
  padding: 20px;
}
.card-panel.recipe{
  border-radius: 8px;
  padding: 10px;
  box-shadow: 0px 1px 3px rgba(90,90,90,0.1);
  display: grid;
  grid-template-columns: 2fr 6fr 1fr;
  grid-template-areas: "image details delete";
  position: relative;
}
.recipe img{
  grid-area: image;
  max-width: 60px;
}
.recipe-details{
  grid-area: details;
  margin-top: 6px;
}
.recipe-delete{
  grid-area: delete;
  position: absolute;
  bottom: 0px;
  right: 0px;
}
.recipe-delete i{
  font-size: 18px;
}
.recipe-title{
  font-weight: bold;
}
.recipe-ingredients{
  font-size: 0.8em;
}

/* form-styles */
.add-btn{
  background: var(--title) !important;
}
input{
  box-shadow: none !important;
  -webkit-box-shadow: none !important;
}
.side-form button{
  background: var(--title);
  box-shadow: 1px 1px 3px rgba(90,90,90,0.2);
}
form .input-field{
  margin-top: 30px;
}
.sidenav
{
  background: var(--primary);
  color: var(--title);
}

.sidenav li>a{
  text-transform: uppercase;
  color: var(--title);
}

.sidenav .subheader{
  text-transform: uppercase;
  color: var(--title);
}

.editor img {
  display: block;

  /* This rule is very important, please don't ignore this */
  max-width: 100%;
}

:root {
  --gutter: 20px;
}

.app {
  display: grid;
  grid-gap: var(--gutter) 0;
  grid-template-columns: var(--gutter) 1fr var(--gutter);
  align-content: start;
}

.app > * {
  grid-column: 2 / -2;
}

.app > .full {
  grid-column: 1 / -1;
}

.hs {
  display: grid;
  grid-gap: calc(var(--gutter) / 2);
  grid-template-columns: 10px;
  grid-template-rows: minmax(130px, 1fr);
  grid-auto-flow: column;
  grid-auto-columns: calc(55% - var(--gutter) * 2);

  overflow-x: scroll;
  scroll-snap-type: x proximity;
  padding-bottom: calc(.75 * var(--gutter));
  margin-bottom: calc(-.25 * var(--gutter));
}

.hs:before,
.hs:after {
  content: '';
  width: 10px;
}


/* Demo styles */

ul {
  list-style: none;
  padding: 0;
}

h1,
h2,
h3 {
  margin: 0;
}

.app {
 
  overflow-y: scroll;
}

.hs > li,
.item {
  scroll-snap-align: center;
  padding: calc(var(--gutter) / 11 * 1.5);
  display: flex;
  flex-direction: column;
  justify-content: top;
  align-items: center;
  background: #FFE1C4;;
  border-radius: 3px;
  font-size: 18px;
  color:#545454;;
  font-weight: bold;
}



.no-scrollbar {
  scrollbar-width: none;
  margin-bottom: 0;
  padding-bottom: 0;
}
.no-scrollbar::-webkit-scrollbar {
  display: none;
} 

.lang-switch
{
    padding-left: 20px;
    
}

.lang-switch > label{
  font-size: 14px;
  color:#FF8816;
}
.hide
{
  display: none;
}
.headerbar
{
    color: #FF8816;
    margin: 10px;
    padding: 20px;
}

.cdx-block
{
   margin-right: 20px;
   text-align: justify;
}

.ellipsis {
  margin: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
  width:175px;
}
.round-btn
{
  border: 1px solid #26a69a;
  border-radius: 5px;
  padding: 2px 5px;
  top:50px !important;
}

.list-img
{
  position: absolute;
    width: 72px;
    height: 72px;
    overflow: hidden;
    left: 15px;
    display: inline-block;
    vertical-align: middle;
    border: 3px solid #FFE1C4;
}