
.large, .large input, .large button{
  font-size: 1.2em;
}

.small, a.small{
  font-size: .8em;
}

input{
  font-size: inherit;
  font-family: inherit;
}

a {
  text-decoration: none;
  color: #000;
  font-weight: normal;
}

.center{
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.left{
  text-align: left;
}
.right{
  text-align: right;
}



.table{
  display: table;
}

.table-cell-middle{
  display: table-cell;
  vertical-align: middle;
}

input,
button,
textarea {
  padding: 0.25rem 0.5rem; /* from button style */
  margin-top: 0.25rem;
  margin-bottom: 0.25rem;

  font-weight: inherit;

  border: 1px solid #ccc;
  border-radius: 0.15rem;
  -webkit-box-shadow: inset 0px 0px 5px 0px rgba(54,54,54,0.07);
  -moz-box-shadow: inset 0px 0px 5px 0px rgba(54,54,54,0.07);
  box-shadow: inset 0px 0px 5px 0px rgba(54,54,54,0.07);

}

input:focus, input:active,
textarea:focus, textarea:active,
button:focus{

   border: 1px solid #aaa;
}

.shadow{
	box-shadow: 2px 2px 5px rgba(0,0,0,.2);
}
.shadow-centered{
	box-shadow: 0 0 5px rgba(0,0,0,.2);
}

input:focus:invalid {
  /* insert your own styles for invalid form input */
  /* This isn't all that usefull as is. would be good as a background switcher with an astrics/check mark when it was correct

  the following is kinda cool but a bit buggy. dunno...
  border: 1px solid blue;
  */
}

.full-width, .full_width{
  width: 100%;
  box-sizing: border-box;
  /*display: block;
  max-width: none;*/
}

img, table  {
  border: 0;
  padding: 0;
  margin: 0;
}
table {
  border-collapse: collapse;
}

td, tr {
  margin: 0;
  padding: 0;
  vertical-align: top;
}

.flex_container{
  display: box;
  display: -webkit-box;  /* OLD - iOS 6-, Safari 3.1-6, BB7 */
  display: -ms-flexbox;  /* TWEENER - IE 10 */ /* NEW - Safari 6.1+. iOS 7.1+, BB10 */
  display: flex;         /* NEW, Spec - Firefox, Chrome, Opera */
}

.flex_direction_reverse{
  box-orient: vertical;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: row-reverse;
}

.flex_column{
  box-orient: vertical;
  -webkit-box-orient: vertical;
  -ms-flex-direction: column;
  flex-direction: column;
}

.float_right_600{
  float: right;
  margin-left: 1.5em;
  max-width: 50%;
}
.float_left_600{
  float: left;
  margin-right: 1.5em;
  max-width: 50%;
}


@media screen and (max-width: 600px){
  .flex_wrap_600{
    display: block; /* Fallback for non-flexbox browsers */
    display: flex;
    flex-wrap: wrap;
  }
  .float_right_600, .float_left_600{
    float: none;
    margin: 5%;
    max-width: 90%
  }

}
@media screen and (max-width: 500px){
  .flex_wrap_500{
    flex-wrap: wrap;
    justify-content: center;
  }
  .menu_link_on, .menu_link {
    padding: .4em .5em;
    font-size: 3.6vw;
  }
}

.flex_able{
  flex-grow: 1;
  flex-shrink: 1;
}

.flex_wrap{
  flex-wrap: wrap;
}
.un_flex_able{
  flex-shink: 0;
  flex-grow: 0;

}

.half_width {
  width: 46%;
}

.one_third_width {
  width: 26%;
}

.two_thirds_width {
  width: 56%;
}

@media screen and (max-width: 800px){
  .two_thirds_width,
  .one_third_width,
  .half_width{
    width: 100%;
  }
}


.float_right {
  float: right;
}

.float_left {
  float: left;
}
.flex_table{
  display: table;
  width: 100%;
}

.flex_table > div{
  display: table-cell;
  vertical-align: middle;
  direction: ltr;
  padding-right: 2em;
}

.flex_table:not(.rtl) > div:last-child{
  padding-right: 0;
}

.flex_table.rtl > div:first-child{
 padding-right: 0;
}

@media all and (max-width: 600px){
  .flex_table, .flex_table > div{
    display: block;
    padding: 1em 0;
    direction: ltr;
  }

  .flex_table > div > img{
    max-width: 100%;
    width: 100%;
    margin: auto;
  }
}

.obvious_link{
  text-decoration: underline;
  font-weight: bold;
  color: #000033;
}

.rtl{
  /* activate css ninjah */
  direction: rtl;
}

.search_form{
  white-space: nowrap;
}

.search_form input[type=search]{
  min-width: 2em;
}

.search_form input[type=submit], .search_form button{
  font-family: FontAwesome;
  padding: 7px 9px;
  margin: 0;
}

.search_result, .list_item{
  display: table;
  width: 100%;
  margin-bottom: 2em;
}

.search_result img, .list_item img{
  max-width: 150px;
  max-height:150px;
  margin-right: 1.5em;
  max-width: 25vw;
  display: table-cell;
  vertical-align: middle;
}
.search_result div, .list_item div{
  display: table-cell;
  vertical-align: middle;
}

.grid{
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  justify-content: space-between;
  margin: 7px -7px;
  /*align-items: center;*/
}
.grid_item{
  text-align: center;
  margin: 7px;
  flex-basis: 150px;
  max-width: 200px;
  flex-shrink: 1;
  flex-grow: 1;
}
.grid_item img{
  max-width: 100%;
  max-height: 160px;
  height: auto;
  width: auto;
}
.grid_item a{
  display: block;
}
.grid_item .button{
  max-width: 160px;
  margin: auto;
  box-sizing: border-box;
}

#large_search_div{
  max-width: calc(100vw - 30px);
}
#large_search_div input{
  font-size: 1.5em;
}

button,
.btn,
input[type=submit],
.button {
  /* fallback/image non-cover color */
 background-color: #f8ecae;

 /* Firefox 3.6+ */
 background-image: -moz-linear-gradient(#f8ecae, #eddb9d);

 /* Safari 4+, Chrome 1+ */
 background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#f8ecae), to(#eddb9d));

 /* Safari 5.1+, Chrome 10+ */
 background-image: -webkit-linear-gradient(#f8ecae, #eddb9d);

 /* Opera 11.10+ */
 background-image: -o-linear-gradient(#f8ecae, #eddb9d);

  /* standard */
 background-image: gradient(#f8ecae, #eddb9d);

  text-shadow: 0 1px 0 rgba(255,255,255,.7);
  box-shadow: 0 1px 0 rgba(255,255,255,.5) inset, 0 1px 0 rgba(255,255,255,.5);

  padding: 0.25rem 0.8rem;
  color: #553300;
  font-weight: 600;
  /*text-transform: uppercase;*/
  cursor:pointer;
  border: 1px solid #ccbfaa;
  border-radius: 0.15rem;

  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
  display: inline-block;
  margin: .2em 0em;
  white-space: nowrap;
}

button:hover,
.btn:hover,
input[type=submit]:hover,
.button:hover {

  /*
  box-shadow: 0 0 0.5rem 0rem #553300 inset;
  box-shadow: 0 0 0.5rem -0.15rem rgba(85, 51, 0, .3) inset;
  */
  background-color: #eddb9d;
  border: 1px solid rgba(153, 102, 51, .5);

  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

button:active,
.btn:active,
input[type=submit]:active,
.button:active {

 /* Firefox 3.6+ */
 background-image: -moz-linear-gradient(#eddb9d, #f8ecae);
 /* Safari 4+, Chrome 1+ */
 background-image: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#eddb9d), to(#f8ecae));
 /* Safari 5.1+, Chrome 10+ */
 background-image: -webkit-linear-gradient(#eddb9d, #f8ecae);
 /* Opera 11.10+ */
 background-image: -o-linear-gradient(#eddb9d, #f8ecae);
  /* standard */
 background-image: gradient(#eddb9d, #f8ecae);
  -webkit-transition: 0.3s;
  -o-transition: 0.3s;
  transition: 0.3s;
}

.button_small{
  font-weight: normal;
  font-size: 1em;
  padding: .1em .3em .1em .3em;
  margin: .3em;
  white-space: nowrap;
  min-width: 65px;
  text-align: center;
}


.cart_icon {
  width: 30px;
  height: 25px;
  background: url('../images/add-to-cart-button.png') -7px -2px no-repeat;
  border: 1px solid #e3d751;
  border-radius: 4px;
  display: inline-block;
  margin: 2px;
}


/* Audio Player Styles */
.song_title {
  cursor: pointer;
  padding: 5px;
}

.song_play_list td {
  vertical-align: middle;
}

.song_play_list tr {
  background-color: rgba(255, 255, 255, .27);
  height: 2.5em;
}

.song_play_list tr:nth-child(odd) {
  background-color: rgba(0, 0, 0, .03);
}

.play-pause-button {
  cursor: hand;
  cursor: pointer;
  background: url('../images/icons/play-pause.png') no-repeat;
  width: 28px;
  height: 28px;
  border: 0 solid black;
  display: block;
  transition: .2s;
}

.pointer{
  cursor: pointer;
}

.justify {
  text-align: justify;
  hyphens: auto;
  -webkit-hyphens: auto;
  -moz-hyphens: auto;
  -ms-hyphens: auto;
  hyphenate-limit-lines: 2;
  hyphenate-limit-chars: 7 3 2;
}

.sticky-share-optins{
  position: fixed;
  left: 10px;
  top: 40%;
  top: calc(50% - 120px);
}
.sticky-share-optins i{
  font-size: 3em
}
.sticky-share-optins a:after{
  display: block;
  content: '\A';
}

@media all and (max-width: 600px){
  .sticky-share-optins{
    display: none;
  }
}
/* Feature Box Styles */

.feature_box {
  margin: 2em 0;
  padding: 1% 0;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid; /* Firefox*/
  break-inside: avoid;
}

.feature_box image{
  max-width: 100%;
}

.strike_under {
  width: 100%;
  height: 17px;
  border-bottom: 1px solid #c4840d;
  text-align: center;
  margin-bottom: 17px;
}
.strike_under h3{
  font-size: 1.3em;
  font-weight: normal;
  padding: 0px 7px 0px 7px;
  margin: 7px 0px 7px 0px;
  display: inline;
  line-height: 1.5em;
  text-align: center;
  background-color: #fff;
}
