/*
Theme Name: Horrocks Beer Garden
Author: Media Advantage
Author URI: https://themediaadvantage.com/
Description: Advanced Drink Keeper for Horrocks Beer Garden.
Requires at least: WordPress 5.1.0
Version: 1.0.0
*/

html {
   padding: 0;
   margin: 0;
}

body {
   padding: 0;
   margin: 0;
   background-color: #ffff;
   font-family: 'Public Sans', Helvetica, Arial, sans-serif;
}

header {
   margin-bottom: 20px;
}

header img.logo {
   position: absolute;
   top: 10px;
   left: 10px;
   width: 60px;
   height: 60px;
}

header img.logo.garden {
   position: absolute;
   top: 10px;
   left: 80px;
   width: 300px;
   max-height: 200px;
}

header .stripes > div {
   height: 20px;
}

header .stripes > div:nth-child(1) {
   background-color: #E4162D;
}

header .stripes > div:nth-child(2) {
   background-color: #DBB262;
}

header .stripes > div:nth-child(3) {
   background-color: #2A624B;
}

header .stripes > div:nth-child(4) {
   background-color: #251E3A;
}

@media screen and (max-width: 599px) {
   header {
      margin-bottom: 0;
   }

   header img {
      width: 45px;
      height: 45px;
      top: 7px;
      left: 7px;
   }

   header .stripes > div {
      height: 15px;
   }
}

main hr{
	height: 1px;
	border: none;	
	background-color: #ffff;
}

article {
   max-width: 960px;
   padding-top: 20px;
   padding-bottom: 20px;
   margin-left: auto;
   margin-right: auto;
   color: #fff;
   display: flex;
   align-items: center;
   border-bottom: 1px solid rgba(255,255,255, 0.3);
}

article:last-child {
   border-bottom: none;
}


article .image {
   min-width: 50px;
   margin-left: 10px;
}

article .image img {
   width: 50px;
   height: 50px;
}

article .prices {
   text-align: right;
   min-width: 180px;
   margin-right: 15px;
}

article .info {
   margin-left: 15px;
   flex-basis: 100%;
}

article .manufacturer {
   font-size: 18px;
   font-weight: 600;
   letter-spacing: 1px;
   color: #006838;
}

article .name {
   font-size: 24px;
   max-width: 350px;
   font-weight: 800;
   color: #000;
   letter-spacing: 1px;
   text-transform: uppercase;
   overflow: visible;
   text-overflow: ellipsis;
}

article .menu-title {
	margin: 0;
	font-size: 36px;
	max-width: 100%;
	font-weight: 800;
	color: #000;
	letter-spacing: 1px;
	text-transform: uppercase;
	white-space: nowrap;
	overflow: hidden;
	text-overflow: ellipsis;
}

article .attributes {
   min-width: 100px;
   font-size: 21px;
   font-weight: 600;
   color: #000;
}

article .attribute-label {
   display: inline-block;
   width: 50px;
}

article .meta {
   min-width: 200px;
   font-weight: 600;
   font-size: 18px;
   color: #000;
}

article .beer-style {
   font-size: 18px;
   font-weight: 800;
   color: #006838;
}

article .price {
   color: #000;
   font-size: 21px;
   font-weight: 600;
   letter-spacing: 1px;
   line-height: 20px;   
}

article .amount {
   display: inline-block;
   min-width: 65px;
   color: #000;
   font-size: 21px;
   font-weight: 600;
}

@media screen and (max-width: 959px) {
   article {
      -webkit-flex-wrap: wrap;
      -ms-flex-wrap: wrap;
      flex-wrap: wrap;
      -ms-align-items: flex-start;
      align-items: flex-start;
      max-width: 599px;
   }

   article .image {
      flex-basis: 10%;
      margin-left: 2%;
      min-width: 0;
   }

   article .info {
      margin-left: 2%;
      flex-basis: 86%;
      max-width: 86%;
   }

   article .name {
      max-width: none;
      white-space: normal;
      overflow: auto;
      text-overflow: inherit;
   }

   article .meta {
      margin-left: 14%;
      flex-basis: 40%;
      min-width: 0;
   }

   article .attributes {
      flex-basis: 42%;
      margin-left: 4%;
   }

   article .prices {
      display: -webkit-flex;
      display: -ms-flex;
      display: flex;
      margin-top: 20px;
      margin-left: 14%;
      flex-basis: 86%;
      justify-content: space-between;
   }

   article .amount {
      min-width: 0;
   }
}

@media screen and (max-width: 499px) {
   article .image {
      flex-basis: 15%;
      margin-left: 0%;
      padding-left: 15px;
      min-width: 0;
      box-sizing: border-box;
   }

   article .info {
      margin-left: 0;
      padding-left: 15px;
      flex-basis: 85%;
      max-width: 85%;
      box-sizing: border-box;
   }

   article .meta {
      margin-top: 20px;
      padding-left: 15px;
      margin-left: 0;
      flex-basis: 57%;
      min-width: 0;
   }

   article .attributes {
      margin-top: 20px;
      flex-basis: 32%;
      margin-left: 2%;
   }

   article .prices {
      margin-left: 0;
      flex-basis: 100%;
      padding-left: 15px;
      text-align: center;
   }

   article .price {
      font-size: 13px;
      padding-right: 10px;
   }

   article .amount {
      font-size: 12px;
   }
}

@media screen and (max-width: 379px) {
   article .image {
      flex-basis: 18%;
   }

   article .info {
      flex-basis: 82%;
      max-width: 82%;
   }
}