/* Style Sheet for Garoo's World of Warcraft website */
/* Last Modified 26-May-2021 */

/**************************/
/****** Clear Styles ******/
/**************************/

* {
  margin: 0;
  padding: 0;
}

/****************************/
/****** General Styles ******/
/****************************/

body {
  font: 16px Poppins,sans-serif;
  margin: 0px;
  background: #666
}

h1 {
  font: 24px Roboto,sans-serif;
  margin: 0px;
}

h2 {

}

a {
  text-decoration: none;
}

.smalltext {
  font-size: 0.8em;
  color: #4f7d7d;
}

.smalltext2 {
  font-size: 0.9em;
}

/*****************************/
/****** CSS Grid Layout ******/
/*****************************/

.grid {
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  grid-template-areas:
  "title"
  "canvass"
  "footer";
  grid-gap: 2px;
}

@media screen and (min-width: 1200px) {
  .grid {
    display: grid;
    grid-template-columns: 1fr 1100px 1fr;
    grid-template-rows: auto;
    grid-template-areas:
    ". title ."
    ". header ."
    ". canvass ."
    ". footer .";
    grid-gap: 2px;
  }
}

.title {
  grid-area: title;
  display: block;
  padding: 0 0 50px 0;
  z-index: 100;
  background-color: #666;
}

.header {
  grid-area: header;
  background-color: #777;
  background-image: url(img/world-of-warcraft-banner.jpg);
  background-size: contain;
  background-clip: content;
  background-repeat: no-repeat;
  padding: 0 0 16px 0;
  height: 328px;
  visibility: hidden;
}

@media screen and (min-width: 1200px) {
 .header {
   visibility: visible;
 }
}

.canvass {
  grid-area: canvass;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-areas:
  "content";
  grid-gap: 0px;
  padding-bottom: 20px;
}

@media screen and (min-width: 1200px) {

.canvass {
  grid-area: canvass;
  display: grid;
  grid-template-columns: 2fr 9fr;
  grid-template-areas:
  "sidebar content";
  grid-gap: 0px;
  padding-bottom: 20px;
}

}

.sidebar {
  position: fixed;
  grid-area: sidebar;
  background-color: #666;
  display: inline-block;
  font: 20px "Roboto",sans-serif;
  line-height: 1.8em;
  width: auto;
  padding: 20px 0 50px 0;
  visibility: hidden;
}

@media screen and (min-width: 1200px) {
  .sidebar {
    visibility: visible;
  }
}

.content {
  grid-area: content;
  display: flex;
  flex-flow: row wrap;
  justify-content: space-around;
  align-items: stretch;
  /*align-items: flex-start;*/
  align-content: space-around;
  /*background-color: #777;*/
  margin: 5px;
  flex-basis: 23%;
  padding: 0 0 20px 0;
/*  flex-grow: 1;
  flex-shrink: 1;
  flex-basis: auto;*/
}

.footer {
  grid-area: footer;
  font: 14px "Open Sans",sans-serif;
  background-color: #666;
  text-align: center;
  padding: 0 20px 20px 20%;
}

.footer a {
  text-decoration: none;
  color: #ddd;
}

/****************************/
/****** Footer Styling ******/
/****************************/

.footer p{
  margin: 5px 0px;
  color: #aaa
}


/***********************************/
/****** Title: Navbar Styling ******/
/***********************************/

.title {
  background-color: #333;
}

.title h1 {
  display: block;
}

.navbar {
  position: fixed;
  display: flex;
  flex-flow: row wrap;
  justify-content: left;
  height: 50px;
  background-color: #333;
}

.navbar p a {
  text-decoration: none;
  color: #fff;
}

.navbar ul {
  display: inline-block;
  float: right;
  list-style: none;
  height: 50px;
}

.navbar ul li {
  list-style: none;
  display: inline-flex;
  position: relative;
  font: 1em "Montserrat",sans-serif;
  font-weight: 700;
}

.navbar ul li a {
  display: block;
  text-decoration: none;
  color: #fff;
  padding: 15px 15px 15px 15px;
  background-color: #333;
}

.navbar ul li a:hover {
  color: red;
  background-color: #444;
}

.navbar ul li p {
  display: block;
  color: #fff;
  padding: 15px 15px 14px 15px;
  background-color: #333;
}

.navbar ul li p:hover {
  color: red;
  background-color: #444;
}

.navbar ul li ul {
  display: none;
  position: absolute;
  margin: 50px 0 0 0;
  padding: 0px;
  width: 150px;
  /*background-color: #777;*/
}

.navbar ul li:hover ul {
  display:block;
  background-color: #222;
  height: auto;
}

.navbar ul li ul li {
  min-width: 210px;
  height: auto;
  padding: 0;
}

.navbar ul li ul li:hover {
  background-color: #555;
}

.navbar ul li ul li a {
  padding: 10px 10px 10px 10px;
  width: 100%;
}

.navbar ul li ul li a:hover {
  background-color: #444;
}


/****************************/
/****** Header Styling ******/
/****************************/

.header h1{
  font: 28px "Open Sans",sans-serif;
  color: #fff;
  font-weight: 900;
  padding: 100px 0 0 30px;
  margin: 0;
}

/*****************************/
/****** Content Styling ******/
/*****************************/

.content p {
  width: 100%;
  padding: 0px 20px 20px 20px;
  text-align: justify;
  display:block;
}

.content h1 {
  font: 24px "Rubik",sans-serif;
  font-weight: 800;
  color: #000;
  width: 100%;
  padding-bottom: 40px;
  padding-top: 40px;
  text-align: center;
}

.content ul {
  text-align: left;
  padding: 0 0 10px 0;
}

.content a {
  color: #b6aff6;
}

.content a:hover {
  color: #1565c0;
}

/*****************************/
/****** Sidebar Styling ******/
/*****************************/

.sidebar {
  font: 0.8em "Rubik",sans-serif;
}

.sidebar p{
  background-color: #444;
  text-align: center;
  font-weight: 600;
  padding: 10px 0;
  outline: 1px solid #000;
}

.sidebar ul {
  list-style: none;
  background-color:#888;
  padding: 0;
  outline: 1px solid #000;
}

.sidebar ul a {
  display: block;
  color: #fff;
  padding: 10px 30px;
}

.sidebar ul li {
  width: auto;
}

.sidebar ul li:hover {
  background-color: #444;
}

/************************************/
/****** item-fullblock Styling ******/
/************************************/

.item-fullblock {
  display: block;
  position: relative;
  min-height: 200px;
  width: 850px;
  padding: 10px;
  margin: 10px 0;
  justify-content: center;
  align-content: center;
  background-color: #888;
}

.item-fullblock p {
  display: block;
  text-align: justify;
  width: 90%;
}

.item-fullblock ul {
 display: block;
 width: 80%;
 list-style: circle;
 list-style-position: inside;
 padding: 0 0 0 80px;
}

.item-fullblock ul li {
  text-indent: -40px;
}

.item-fullblock img {
  display: block;
  margin: 0 auto 20px auto;
}


/***********************************/
/****** item-fullflex Styling ******/
/***********************************/

.item-fullflex {
  display: flex;
  /*position: relative;*/
  min-height: 200px;
  width: 850px;
  padding: 10px;
  margin: 10px 0;
  justify-content: center;
  align-content: center;
  background-color: #888;
}

.item-fullflex h1 {
  font: 24px "Rubik",sans-serif;
  display: block;
  font-weight: 800;
  /*width: 100%;*/
  width: inherit;
  padding-bottom: 20px;
  padding-top: 40px;
  text-align: center;
}

/********************************/
/****** item-200px Styling ******/
/********************************/

.item-200px {
  display: flex;
  position: relative;
  height: 270px;
  width: 200px;
  padding: 5px;
  margin: 5px;
  justify-content: center;
  align-content: center;
  background-color: #777;
}

.item-200px a {
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
}

.item-200px img {
  width: 100px;
  height: 100px;
  position: absolute;
  left: 50px;
  top: 8px;
}

.item-200px h2 {
  position: absolute;
  display: block;
  width: 100%;
  text-align: center;
  top: 120px;
  left: 0;
  font: 1em "Roboto",sans-serif;
  font-weight: 600;
  color: #222;
}

.item-200px p {
  position: absolute;
  display: block;
  width: 90%;
  text-align: justify;
  top: 145px;
  left: 0;
  font: 0.8em "Roboto",sans-serif;
  font-weight: 400;
  color: #333;
  padding: 0 5% 0 5%;
}

.item-200px:hover {
  background: #888;
  outline: 1px solid #000;
}

/********************************/
/****** item-150px Styling ******/
/********************************/

.item-150px {
  display: flex;
  position: relative;
  height: 200px;
  width: 150px;
  padding: 5px;
  margin: 5px;
  justify-content: center;
  align-content: center;
  background-color: #888;
}

.item-150px a {
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
}

.item-150px img {
  width: 100px;
  height: 100px;
  position: absolute;
  left: 25px;
  top: 5px;
}

.item-150px h2 {
  position: absolute;
  display: block;
  width: 100%;
  text-align: center;
  top: 110px;
  left: 0;
  font: 1em "Roboto",sans-serif;
  font-weight: 600;
  color: #222;
}

.item-150px p {
  position: absolute;
  display: block;
  width: 90%;
  text-align: justify;
  top: 135px;
  left: 0;
  font: 0.8em "Roboto",sans-serif;
  font-weight: 400;
  color: #333;
  padding: 0 5% 0 5%;
}

.item-150px:hover {
  background: #888;
  outline: 1px solid #000;
}

/********************************/
/****** item-100px Styling ******/
/********************************/

.item-100px {
  display: flex;
  position: relative;
  height: 120px;
  width: 100px;
  padding: 5px;
  margin: 5px;
  justify-content: center;
  align-content: center;
  background-color: #444;
}

.item-100px a {
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
}

.item-100px img {
  width: 60px;
  height: 60px;
  position: absolute;
  left: 28px;
  top: 5px;
}

.item-100px h2 {
  position: absolute;
  display: block;
  width: 100%;
  text-align: center;
  top: 70px;
  left: 0;
  font: 1em "Roboto",sans-serif;
  font-weight: 600;
  color: #ddd;
}

.item-100px h3 {
  position: absolute;
  display: block;
  width: 100%;
  text-align: center;
  top: 90px;
  left: 0;
  font: 0.9em "Roboto",sans-serif;
  font-weight: 500;
  color: #bbb;
}

.item-100px:hover {
  background: #888;
  outline: 1px solid #000;
}





/********************************/
/****** item-800px Styling ******/
/********************************/

.item-800px, .item-800px-no {
  display: flex;
  position: relative;
  min-height: 200px;
  width: 850px;
  padding: 10px;
  margin: 10px 0;
  justify-content: center;
  align-content: center;
  background-color: #888;
}

.item-800px-no {
  background-color: inherit;
}

.item-800px p, .item-800px-no p {
  font-size: 0.9em;
  width: 90%;
}

.item-800px:hover {
  outline: 1px solid #000;
}

.item-800px img {
  position: relative;
  max-width: 150px;
  max-height: 150px;
  vertical-align: middle;
}

.item-800px-no img {
  position: relative;
  max-width: 120px;
  max-height: 120px;
  vertical-align: middle;
}

.item-800px-nr img {
  position: relative;
  vertical-align: middle;
}

.item-800px table, .item-800px-no table {
  width: 100%;
  height: 100%;
}

.item-800px tbody, .item-800px-no table {
  width: auto;
}

.item-800px table tr, .item-800px-no table tr {
  width: 100%;
  height: 100%;
}

.item-800px table tr td, .item-800px table tr td {
  height: 100%;
  padding: 5px;
}

.item-800px table tr td p, .item-800px table tr td {
  padding: 10px;
  padding-right: 100px;
  font: 0.8em;
}

.item-800px-no h3 {
  text-align: center;
  font-size: 0.8em;
  display: inline-block;
  position: relative;
  align-self: center;
  padding: 10px;
}

/*************************************/
/****** accordian-800px Styling ******/
/*************************************/

.accordian-800px {
  padding: 20px;
  display: block;
  width: 100%;
}

.accordian-800px a {
  color: #0e6655;
  font-weight: 600;
}

.accordian-800px h2 {
  display: block;
  text-align: center;
  padding: 0 10px 20px 10px;
}

.accordion {
  width: 100%;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
  border-radius: 5px;
  overflow: hidden;
  font-family: "Quicksand", sans-serif;
  background: #444;
}

.accordion__label {
  padding: 14px 20px;
}

.accordion__content {
  padding: 0;
}

.accordion__label {
  display: block;
  color: #fff;
  font-weight: 500;
  cursor: pointer;
  position: relative;
  transition: background 0.1s;
}

.accordion__label:hover {
  background: rgba(0, 0, 0, 0.1);
}

.accordion__label::after {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 20px;
  width: 12px;
  height: 6px;
  background-image: url('data:image/svg+xml;utf8,<svg width="100" height="50" xmlns="http://www.w3.org/2000/svg"><polygon points="0,0 100,0 50,50" style="fill:%23FFFFFF99;" /></svg>');
  background-size: contain;
  transition: transform 0.4s;
}

.accordion__content, .acnr {
  display: block;
  width: 80%;
  background: #999;
  line-height: 1.6;
  font-size: 0.85em;
  display: none;
  padding: 20px;
}


.accordion__content p, .acnr p {
  width: 95%;
}

.accordion__input {
  display: none;
}

.accordion__input:checked ~ .accordion__content {
  display: block;
  width: inherit;
  padding-right: 20px;
}

.accordion__input:checked ~ .accordion__label::after {
  transform: translateY(-50%) rotate(0.5turn);
}

.accordion__content table {
  width: 100%;
  text-align: left;
}

.accordion__content table tr td {
  padding: 5px;
}

.accordion__content img {
  max-width: 100px;
  max-height: 100px;
}

.accordion__content table p {
  width: auto;
}

.accordion__content .td-150px {
  width: 150px;
  padding: 0;
}

.accordion__content .td-rem {
  width: 100%;
}

/********************************/
/****** item-400px Styling ******/
/********************************/

.item-400px {
  display: flex;
  position: relative;
  min-height: 150px;
  width: 400px;
  padding: 5px;
  margin: 10px 0;
  justify-content: center;
  align-content: center;
  background-color: #888;
}

.item-400px a {
  position: absolute;
  padding: 0;
  margin: 0;
  width: 100%;
  height: 100%;
  z-index: 99;
}

.item-400px p {
  font-size: 0.9em;
  width: 90%;
}

.item-400px:hover {
  outline: 1px solid #000;
}

.item-400px img {
  position: relative;
  max-width: 100px;
  max-height: 100px;
  vertical-align: middle;
}

.item-400px table {
  width: 100%;
  height: 100%;
}

.item-400px table td {
  padding: 0;
}
.item-400px table tr td p {
  padding: 0;
  margin: 0 5px 0 0;
}

/*.item-400px tbody {
  width: auto;
}

.item-400px table tr {
  width: 100%;
  height: 100%;
}

.item-400px table tr td {
  height: 100%;
  padding: 5px;
  outline: 1px dashed #000;
}

.item-400px table tr td p {
  padding: 10px;
  padding-right: 100px;
  font: 0.8em;
}*/

.item-400px h3 {
  text-align: center;
  font-size: 0.8em;
  display: inline-block;
  position: relative;
  align-self: center;
  padding: 10px;
}

/**********************/
/****** Clearfix ******/
/**********************/

.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
