/*
Theme Name: explained
Theme URI: https://explained.io
Author: Explained LLC
Description: Business Web Experts. Consulting, Software & Service Combined.
Version: 1.0
*/

/* ORDER BY HTML */

html, body {
  margin:0;
  background:#fff;
  -moz-user-select: none;
  -khtml-user-select: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
img, iframe {
   max-width:100%;
}
a {
   text-decoration:none;
   color:#333;
}
input, textarea, body {
  font-family: 'Roboto', sans-serif;
}
.clear {
    clear:both;
}
.vertically_centered {
  position:absolute;
  top:50%;
  right:0;
  left:0;
  transform:translateY(-50%);
}
.fullyCentered {
  position:absolute;
  top:50%;
  left:50%;
  -webkit-transform:translate(-50%,-50%);
  -ms-transform:translate(-50%,-50%);
  transform:translate(-50%,-50%);
}

/* header css */

/*loader stuff*/
#loading {
    background: rgba(0,0,0,0.7);
    width: 260px;
    padding: 20px 10px;
    border-radius: 5px;
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    z-index: 11;
    text-align:center;
}
#loading .loading_text {
    display:block;
    color: white;
    font-size: 20px;
    margin-bottom: 0;
    margin-top: 10px;
}
#loading .spinner {
  margin:0 auto;
  width: 70px;
  text-align: center;
}
#loading .bounce {
  width: 18px;
  height: 18px;
  background-color: #fff;
  border-radius: 100%;
  display: inline-block;
}
#loading .bounce.normal_animation {
  -webkit-animation: sk-bouncedelay 1.4s infinite ease-in-out both;
  animation: sk-bouncedelay 1.4s infinite ease-in-out both;
}
#loading .bounce1.specific_animation {
  -webkit-animation-delay: -0.32s;
  animation-delay: -0.32s;
}
#loading .bounce2.specific_animation {
  -webkit-animation-delay: -0.16s;
  animation-delay: -0.16s;
}
@-webkit-keyframes sk-bouncedelay {
  0%, 80%, 100% { -webkit-transform: scale(0) }
  40% { -webkit-transform: scale(1.0) }
}
@keyframes sk-bouncedelay {
  0%, 80%, 100% { 
    -webkit-transform: scale(0);
    transform: scale(0);
  } 40% { 
    -webkit-transform: scale(1.0);
    transform: scale(1.0);
  }
}

.item_count {
  display:none;
  position: absolute;
  line-height: 20px;
  width: 18px;
  height: 18px;
  right: 5px;
  top: 5px;
  border-radius: 50%;
  font-size: 11px;
  color:#333;
}
#search_form {
  display:none;
  background:#fbfbfb;
  position:absolute;
  left:0;
  right:0;
  box-shadow:0 1px 1px 0 rgba(0,0,0,0.07), 0 1px 3px 0 rgba(0,0,0,0.10), 0 2px 1px -2px rgba(0,0,0,0.1);
  z-index:8;
}
#search_query {
  margin:0;
  margin-bottom:15px;
  background:white;
}
#messages_wrap {
  position: fixed;
  left: 0;
  right: 0;
  z-index: 12;
}
.message {
  color: #eee;
  width: 90%;
  max-width: 1024px;
  padding: 15px;
  margin: 0 auto;
  margin-top: 8px;
  margin-bottom: 8px;
  border-radius: 3px;
  font-size: 19px;
  text-align: center;
  box-shadow: 0 1px 1px 0 rgba(0,0,0,.07), 0 1px 3px 0 rgba(0,0,0,.06), 0 3px 1px -2px rgba(0,0,0,.1);
}
.message.success {
  background:rgb(28, 152, 60);
}
.message.error {
  background:rgb(187, 23, 23);
}
/* end header */

/*form stuff*/
form {
  margin:0 auto;
  padding:15px;
}
label {
  display: block;
  width: 100%;
  text-transform: uppercase;
  letter-spacing: .5px;
  font-size: 14px;
  margin-bottom: 3px;
}
input, select {
  display: block;
  width: 100%;
  padding: 10px 7px 7px;
  margin-bottom:1%;
  box-sizing: border-box;
  border: solid 1px #eee;
  background: #fbfbfb;
  border-radius: 3px;
  margin-bottom: 10px;
  font-size: 20px;
}
select {
  margin-left:0;
  width:auto;
}
form .half {
  margin:0 1% 1%;
  display:inline-block;
  vertical-align:top;
  width:48%;
}
input:focus, textarea:focus, select:focus {
  outline:0;
  border:solid 1px #ccc;
  background:white;
}
textarea {
  border:solid 1px #eee;
  margin-bottom:1%;
  padding:2% 1%;
  box-sizing:border-box;
  background:#fbfbfb;
  font-size:19px;
  width:100%;
  max-width:100%;
}
.g-recaptcha div {
  margin:8px auto;
}
.required.currently_missing {
  border:solid 1px red!important;
}
.submit_button {
  display: block;
  padding: 15px;
  font-size: 25px;
  text-align:center;
  color: #333;
  cursor: pointer;
  border: 0;
  border-radius: 3px;
  margin:0;
  text-transform: uppercase;
  letter-spacing: 1px;
}

/* article css (body) */
#article {
   min-height:500px;
   background:whitesmoke;
}
.content {
   padding:15px;
}
.content h1,
.content h2,
.content h3,
.content h4 {
   font-weight:bold;
}
.content h1 {
   font-size:35px;
   margin:1% 0;
}
.content h2 {
   font-size:29px;
}
.content h3 {
   font-size:22px;
}
.content h4 {
   font-size:18px;
}
.content p,
.content span,
.content a,
.content li {
   font-size:17px;
}
.content a {
   text-decoration:underline;
   display:inline-block;
}
#headline {
  text-align:center;
  margin-top:0;
}

/*far left nav & info box */
#info {
  padding-top:0;
  border-radius:4px;
  display:inline-block;
  vertical-align:top;
  max-width:100%;
  box-sizing:border-box;
}
.has_left #info {
  width:calc(100% - 215px);
}
#far_left {
  width:200px;
  display:inline-block;
  vertical-align:top;
  max-width:100%;
  box-sizing:border-box;
  margin:15px;
  margin-left:0;
}
#far_left .panel_item {
  background:#fff;
  border-radius:4px;
  margin-bottom:15px;
}
#far_left #menu a {
  display:block;
  text-decoration:none;
  height:36px;
  line-height:18px;
  color:#333;
  padding:4px;
  position:relative;
}
#far_left #menu a:hover {
  background:#fbfbfb;
}
#far_left #menu .parent_cat {
  padding:8px;
  text-align:center;
  border-bottom:solid 1px #fbfbfb;
  border-top-right-radius:4px;
  border-top-left-radius:4px;
}
#far_left #menu .parent_cat span {
  font-size: 14px;
  letter-spacing: 1px;
  text-transform: uppercase;
}
#far_left #menu a span {
  position:absolute;
  font-size:15px;
  top:50%;
  transform:translateY(-50%);
  left:8px;
  right:8px;
  max-height:36px;
  overflow:hidden;
}
#far_left #menu a img {
  position:absolute;
  border-radius:50%;
  left:8px;
  width:36px;
  height:36px;
}
/* end far left */

/* cart */
#cart_items {
  display:none;
  position:fixed;
  border-radius:3px;
  background:white;
  top:0;
  right:0;
  z-index:10;
  width:768px;
  max-width:96%;
  text-align: center;
  transition:.5s ease all;
  box-shadow:0 2px 2px 0 rgba(0,0,0,0.14), 0 3px 1px -2px rgba(0,0,0,0.12), 0 1px 5px 0 rgba(0,0,0,0.2);
}
#cart_items.cart_shown {
  transform:translate(-50%,-50%);
  top:50%;
  left:50%;
  right:auto;
}
#cart_title {
  font-size: 26px;
  margin: 0;
  font-weight:bold;
  position:relative;
  height: 50px;
  line-height: 50px;
  text-transform: uppercase;
  background: #fff;
  letter-spacing: 1px;
  border-bottom:solid 1px #eee;
  border-top-right-radius:3px;
  border-top-left-radius:3px;
}
#cart_title i {
  position:absolute;
  width:50px;
  height:50px;
  line-height:50px;
  font-size:30px;
  text-align:center;
  right:0;
  color:#ccc;
  border-top-right-radius:3px;
  cursor:pointer;
}
#item_grid {
  max-height:400px;
  overflow-y:auto;
  padding:15px;
  font-size:0;
  background:#fbfbfb;
}
#cart_empty {
  font-size: 22px;
  padding: 25px;
}
.cart_item {
  width: 49%;
  margin-bottom: 2%;
  margin-right: 2%;
  box-sizing: border-box;
  background: #fff;
  border-radius: 6px;
  display: inline-block;
  vertical-align: top;
  box-shadow:0 1px 1px 0 rgba(0,0,0,0.10), 0 3px 1px -3px rgba(0,0,0,0.10), 0 1px 5px 0 rgba(0,0,0,0.1);
}
.cart_item:nth-of-type(2n+2) {
  margin-right:0;
}
.cart_item img {
    float: left;
    margin: 10px;
    max-width: 20%;
    border-right: solid 1px #eee;
    padding-right: 10px;
}
.cart_item i {
    float: right;
    margin: 7px;
    width: 30px;
    height: 30px;
    line-height: 30px;
    font-size: 24px;
    cursor: pointer;
    color: #ccc;
}
.cart_item i:hover {
  color:#f26b6b;
}
.cart_item .item_name {
  font-size: 19px;
  padding-top: 15px;
  margin-bottom: 0;
  text-align: left;
}
.cart_item .item_options {
  font-size: 12px;
  text-align: left;
  list-style: none;
  margin: 0; 
  padding: 4px 0;
}
.cart_item .item_price_info {
  clear: both;
  border-top: solid 1px #eee;
  margin: 0 10px;
}
.cart_item .item_price_info div {
  display: inline-block;
  vertical-align: top;
  width: 50%;
  font-size: 14px;
  margin: 6px 0;
  line-height: 30px;
  border-right: solid 1px #eee;
  box-sizing: border-box;
}
.cart_item .item_price_info div.last {
  border-right:0;
}
#checkout {
  border-top-right-radius:0px;
  border-top-left-radius:0px;
}
@media only screen and (max-width: 768px)  {
  .cart_item {
    width:100%;
    display:block;
    margin:0;
  }
}
/* end cart */

