/*
 * Standard styles for the Z-man Games CMS.
 * This stylesheet is loaded in templates/ffg_marketing/css.html.
 */

/* TODO -- fix for admin panel stacking */
#cms_toolbar .cms_structure .cms_dragarea {
    position: absolute;
}

*, *::before, *::after {
    box-sizing: border-box;
}

html {
    font-size: 8px;
    min-height: 100%;
}

@media (min-width: 640px) {
    html {
        font-size: 9px;
    }
}

@media (min-width: 768px) {
    html {
        font-size: 10px;
    }
}

body {
    font-size: 1.4rem;
    font-family: 'nunitoregular', sans-serif;
    line-height: 1.45;
    margin: 0;
    background-color: #f0f0f0;
    background: repeating-linear-gradient(15deg, #f0f0f0, #f0f0f0 890px, #ffffff 890px, #ffffff 1780px);
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

#page-wrap {
    flex: 1 0 auto;
}

body.with-overflow-hidden {
    overflow: hidden;
}

input, 
button,
textarea,
select {
    font-family: 'nunitoregular', sans-serif;
    font-size: inherit;
    line-height: inherit;
}

strong, b {
    font-family: 'nunitobold', sans-serif;
}

.clearfix::before,
.clearfix::after {
    content: '';
    display: table;
}

.clearfix::after {
    clear: both;
}

a, a:hover {
    color: #f14400;
    text-decoration: none;
}

a.btn, a.btn:hover {
    color: white;
    cursor: pointer;
    text-align: center;
}

h1, h2, h3, h4, h5, h6 {
    font-family: 'nunitobold', sans-serif;
    text-transform: uppercase;
}

h1 {
    font-size: 4rem;
}

h2 {
    font-size: 2.5rem;
}

p {
    color: #686868;
}

.checkbox {
    color: #686868;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 1.5rem;
    padding-left: 2rem;
    position: relative;
    display: inline-block;
    vertical-align: middle;
}

.checkbox [type="checkbox"]:not(:checked),
.checkbox [type="checkbox"]:checked {
    position: absolute;
    left: -9999px;
}

.checkbox span::before {
    content: '';
    display: inline-block;
    vertical-align: middle;
    position: absolute;
    left: 0;
    top: .5rem;
    height: 1.2rem;
    width: 1.2rem;
    border-radius: 50%;
    background-color: transparent;
    border: 2px solid #686868;
}

.checkbox [type="checkbox"]:checked + span::before {
    background-color: #686868;
}

.btn {
    border: 0;
    background-color: black;
    color: white;
    font-size: 1.5rem;
    text-transform: uppercase;
    padding: 1rem 2.5rem;
    display: inline-block;
    transition: .3s ease-in-out;
    transition-property: color, background-color;
}

.btn:hover,
.btn:focus {
    background-color: #f14400;
    color: white;
}

.btn--block {
    display: block;
    width: 100%;
}

.btn-wrapper > :first-child {
    margin-bottom: 0.625rem;
}

.list-style-none {
    list-style-type: none;
    padding: 0;
}

.list-no-margin {
    margin-top: 0;
    margin-bottom: 0;
}

.text-center {
    text-align: center;
}

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

.pull-right {
    float: right;
}

.pull-left {
    float: left;
}

.content-wrap {
    max-width: 1300px;
    margin: 0 auto;
    padding-top: 8rem;
}

@media (max-width: 810px) {
    .downloads__nav.pull-right {
        float: none;
    }
}

@media (min-width: 1024px) {
    .content-wrap {
        padding-top: 11rem;
    }
}

@media (min-width: 1300px) {
  .container-full-width {
    margin-left: calc(-100vw / 2 + 1300px / 2);
    margin-right: calc(-100vw / 2 + 1300px / 2);
  }
}

.container-featured,
.text {
    padding: 0 1%;
}

.section-heading {
    font-family: 'nunitolight', sans-serif;
    font-size: 1.6rem;
    color: #afafaf;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin: 2rem 0 3rem 0;
    padding-bottom: 1.25rem;
    border-bottom: 2px solid rgba(175, 175, 175, 0.5);
    position: relative;
}

.section-link {
    display: inline-block;
    font-size: 1.2rem;
    letter-spacing: 1px;
    color: #f14400;
    text-transform: uppercase;
    border-bottom: 1px solid currentColor;
}

.aside-container {
    background-color: white;
    padding: 2.5rem;
    box-shadow: -2px 2px 34px 2px rgba(28, 24, 28, 0.08);
    margin-bottom: 2rem;
}

.aside-container__heading {
    font-size: 2rem;
    text-transform: uppercase;
    border-bottom: 2px solid #f14400;
    padding-bottom: 1rem;
    margin-bottom: 3.5rem;
    margin-top: 0;
}

@media screen and (min-width: 992px) and (max-width: 1199px) {
  .aside-container__heading {
    font-size: 1.7rem;
  }
}

.aside-container__item {
    text-align: center;
    margin: 2rem 0;
}

.aside-container__item img {
    max-height: 172px;
    transform: scale(1);
    transition: transform .3s ease-in-out;
}

.aside-container__item img:hover {
    transform: scale(1.05);
}

.aside-container__item h3 {
    font-size: 1.4rem;
}

.aside-container__item a {
    text-transform: uppercase;
    color: black;
}

/* limit text in white boxes to 4 lines */
.detail-copy {
    color: #787878;
    font-family: 'nunitolight', sans-serif;
    font-size: 1.4rem;
    line-height: 1.5;
    height: 10.5rem;
    overflow: hidden;
    margin-bottom: 0rem;
}

@media screen and (max-width: 1023px) {
    .hidden-mobile {
        display: none !important;
    }
}

@media screen and (min-width: 1024px) {
    .hidden-desktop {
        display: none !important;
    }
}

@media screen and (max-width: 767px) {
    .visible-tablet {
        display: none !important;
    }
}

@media screen and (min-width: 768px) {
    .hidden-tablet {
        display: none !important;
    }
}

.banner-img {
  width: 100vw;
  padding-top: 8rem;
  margin-top: -8rem;
  background-color: white;
}

@media (min-width: 1024px) {
  .banner-img {
    padding-top: 11rem;
    margin-top: -11rem;
  }
}

.js-link {
    cursor: pointer;
}

.heading-box {
  margin-top: 0;
  padding: 4.2rem 3rem 5.2rem;
  background-color: white;
  box-shadow: -2px 2px 34px 2px rgba(28, 24, 28, 0.08);
  position: relative;
  text-align: left;
}

@media screen and (min-width: 1200px) {
  .heading-box {
    padding-left: 11rem;
    padding-right: 11rem;
  }
}

/*
* The arrow with box shadow is just a rotated rectangle.
* It's moved under the box layer to hide the shadow on top.
* We will also need another pseudoelement to cover the box's shadow.
*/
.heading-box::after {
  content: '';
  width: 4rem;
  height: 4rem;
  background-color: white;
  box-shadow: -2px 2px 34px 2px rgba(28, 24, 28, .08);
  position: absolute;
  top: calc(100% - 2rem);
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  -webkit-transform: translateX(-50%) rotate(45deg);
  z-index: -1;
}

/*
* It's used just to hide the box shadow over rotated triangle
*/
.heading-box::before {
  content: '';
  width: 0;
  height: 0;
  border: 2.75rem solid transparent;
  border-top: 2.75rem solid white;
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  -webkit-transform: translateX(-50%);
}

.heading-box p {
  margin: 0;
  font-family: 'nunitolight', sans-serif;
  font-size: 1.6rem;
  line-height: 1.5;
}

.heading-box h1 {
  font-family: 'nunitobold', sans-serif;
  text-align: center;
  margin-top: 0;
  font-size: 2.8rem;
  padding-bottom: 1.7rem;
  border-bottom: 2px solid #f14400;
}

.download-item {
    color: #686868;
}

.download-item a,
.download-item .fa {
  display: inline-block;
  vertical-align: middle;
}

.download-item a,
.download-item a:hover {
  color: #f14400;
  text-transform: uppercase;
  margin-left: 1rem;
}

/*
 * jQuery UI slider
 */

.custom-slider.ui-slider-horizontal {
    height: 2px;
    border: 0;
    background: #afafaf;
    margin-top: 4.5rem; 
}

.custom-slider.ui-slider .ui-slider-handle {
    border: 0;
    border-radius: 50%;
    background: #686868;
    border: 2px solid #686868;
    height: 1.2rem;
    width: 1.2rem;
    outline: none;
    transition: background .3s ease-in-out;
}

.custom-slider--initial.ui-slider .ui-slider-handle {
    background: white;
}

.custom-slider__fill {
    height: 2px;
    background-color: #f14400;
}

.custom-slider .ui-slider-tip {
    color: #afafaf;
    top: -2rem;
    left: -50%;
}

.custom-slider-labels p {
    text-transform: uppercase;
    font-size: 1.2rem;
    color: #afafaf;
    display: inline-block;
    vertical-align: middle;
    margin-top: .5rem;
}

/*
 * Spinner loader
 */

.custom-loader #loading-bar {
    display: none;
}

.custom-loader #loading-bar-spinner .spinner-icon {
    width: 50px;
    height: 50px;
    border: 5px solid transparent;
    border-top-color: #f14400;
    border-left-color: #f14400;
    margin: 0 auto;
}

/*
 * Header
 */

#header {
    height: auto !important; /* TODO -- fix script */
}

.header {
    width: 100%;
}

.header--mobile {
    background-color: black; 
}  

@media screen and (min-width: 1024px) {
    .header--mobile {
        display: none;
    }
}

.header--mobile .header__logo {
    height: 6rem;
    margin-top: 1rem;
}

.header--mobile .header__primary-nav {
    text-align: center;
    height: 8rem;
}

.header--mobile .header__menu-button,
.header--mobile .header__search-button {
    padding: 0 2rem;
    height: 100%;
    line-height: 7.5rem;
}

.header--mobile .header__menu-button {
    float: left;
    color: #686868;
    font-size: 4rem;
    border-right: 1px solid #686868;
}

.header--mobile .header__search-button {
    float: right;
    font-size: 3rem;
    border-left: 1px solid #686868;
}

#mobile-menu-search-form,
#mobile-menu {
    display: none;
}

.header--mobile .header__menu {
    background-color: #1C1A1C;
    min-height: 100vh;
    padding: 2.5rem;
}

.header--mobile .header__menu ul {
    margin: 0;
    width: 100%;
}

.header--mobile .header__menu li {
    padding: 1.5rem 3rem;
}

.header--mobile .header__menu li a,
.header--mobile .header__menu li a:hover {
    color: white;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 3rem;
}

.header--mobile .header__menu li a.account {
    color: #565456;
    font-size: 1.6rem;
}

.header--mobile .header__menu li a.basket {
    font-size: 3.5rem;
}

.header--mobile .header__primary-menu {
    padding: 0 2.5rem 2.5rem 2.5rem;
    border-bottom: 1px solid #565456;
}

.header--mobile .header__primary-menu li a {
    border-bottom: 2px solid transparent;
    transition: color .3s ease-in-out;
}

.header--mobile .header__primary-menu li a:hover,
.header--mobile .header__primary-menu li a:active {
    color: #f14400;
    border-bottom-color: currentColor;
}

.header--desktop {
    background-color: transparent;
    transition: background-color .3s ease-in-out;
}

@media screen and (max-width: 1023px) {
    .header--desktop {
        display: none;
    }
}

.header--desktop .header__primary-nav {
    text-align: right;
    /*background-color: white;*/
    transition: background-color .3s ease-in-out;
}

.header--desktop .header__logo-wrapper {
    float: left;
    display: inline-block;
    line-height: 15rem;
    height: 17rem;
    width: 17rem;
    margin: .8rem 0 0 8rem;
    background-color: black;
    border-radius: 50%;
    border: 9px solid white;
    text-align: center;
    transition: .3s ease-in-out;
    transition-property: height, width, line-height, margin-top;
}

.header--desktop .header__logo-wrapper img {
    display: inline-block;
    vertical-align: middle;
    height: 6.5rem;
    margin-top: 0;
    box-shadow: none;
    transition: .3s ease-in-out;
    transition-property: box-shadow, height, margin-top;
}

.header--desktop .header__menu {
    padding-right: 10rem;
    background-color: black;
    display: inline-block;
    box-shadow: none;
    transition: .3s ease-in-out;
    transition-property: box-shadow;
}

.header--desktop .header__menu a {
    display: inline-block;
    font-size: 1.6rem;
    color: white;
    letter-spacing: 1px;
    height: 6rem;
    line-height: 6rem;
    padding: 0 1.8rem;
    text-transform: uppercase;
    position: relative;
    z-index: 1;
}

.header--desktop .header__menu a:hover::before {
    opacity: 1;
}

.header--desktop .header__menu a:first-child {
    margin-left: -2rem;
    padding-left: 2.3rem;
}

.header--desktop .header__menu a::before {
    content: '';
    position: absolute;
    left: 1.8rem;
    right: 1.8rem;
    bottom: 1.25rem;
    height: 2px;
    background-color: white;
    opacity: 0;
    transition: opacity .3s ease-in-out;
}

.header--desktop .header__menu a.header__search-button::before {
  display: none;
}

.header--desktop .header__menu a:first-child::before {
    left: 2.4rem;
}

.header--desktop .header__menu a::after {
    content: '';
    background: black;
    display: inline-block;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: -1;
    background-color: black;
    display: inline-block;
    transform: skew(-20deg);
    -webkit-transform: skew(-20deg);
    transition: .3s ease-in-out;
    -webkit-transition: .3s ease-in-out;
    transition-property: background-color;
    -webkit-transition-property: background-color;
}

.header--desktop .header__menu a.active::after {
    background-color: #f14400;
}

.header--desktop .header__secondary-menu {
    margin: 0 10rem 0 0;
    height: 5rem;
    transition: height .3s ease-in-out;
}

.header--desktop .header__secondary-menu li {
    display: inline-block;
    margin-left: 2.25rem;
    padding: 1.2rem 0;
}

.header--desktop .header__secondary-menu li a {
    font-size: 1.6rem;
    color: #686868;
    transition: color .3s ease-in-out;
    font-family: 'nunitolight', sans-serif;
    vertical-align: middle;
}

.header--desktop .header__secondary-menu li .fa {
    font-size: 1.8rem;
}

.header--desktop .header__secondary-menu li a:hover {
    color: #f14400;
}

/*
* Collapsed menu
*/

.header--desktop-collapsed .header__logo-wrapper {
    margin-top: -7.5rem;
    box-shadow: 0px 0px 20px rgba(134, 134, 134, .5);
}

.header--desktop-collapsed .header__logo-wrapper img {
    height: 5.5rem;
    margin-top: 4rem;
}

.header--desktop-collapsed .header__menu {
    box-shadow: 0px 0px 20px rgba(134, 134, 134, .5);
}

.header--desktop-collapsed .header__secondary-menu {
    height: 0;
}

.header--desktop-collapsed .header__primary-nav {
    background-color: transparent;
}

#top-nav-search-form {
    display: none;
}

/*
* Footer
*/

.footer {
    color: white;
    background-color: black;
    padding: 3rem 0;
    position: relative;
}

.footer-container {
    max-width: 1300px;
    margin: 0 auto;
}

.footer a {
    display: inline-block;
    padding: 0 .5rem;
}

.footer a,
.footer a:hover {
    color: white;
}

.footer a:hover {
    text-decoration: underline;
}

.footer__logo-container,
.footer__links-container {
    text-align: center;
}

@media screen and (min-width: 768px) {
    .footer__links-container {
        text-align: left;
    }
}

.footer__logo-container {
    margin-bottom: 2rem;
}

@media screen and (min-width: 768px) {
    .footer__logo-container {
        padding-right: 0;
        margin-bottom: 0;
        text-align: right;
    }
}

.footer__logo {
    max-width: 100px;
}

@media screen and (min-width: 768px) {
    .footer__logo {
        max-width: 135px;
    }
}

.footer__menu {
    text-transform: uppercase;
}

.footer__menu a {
    margin-bottom: 1rem;
}

@media screen and (min-width: 768px) {
    .footer__menu {
        margin-left: 2rem;
    }

    .footer__menu a {
        margin-bottom: 0;
    }
}

.footer__menu--secondary {
    font-size: 1.2rem;
}

.footer__copyright {
    font-size: 1rem;
    color: #686868;
    margin-left: 2.5rem;
}

#send-feedback {
    background-color: #ededed;
    border-left: 1px solid #343740;
    border-top: 1px solid #343740;
    border-top-left-radius: 5px;
    color: #343740;
    cursor: pointer;
    padding: .5rem;
    position: absolute;
    bottom: 0;
    right: 0;
}

#send-feedback:hover {
    background-color: #ffffff;
}

#send-feedback:active {
    background-color: #d5d5d5;
}

#top-games {
    margin-top: 0rem;
}

div.social-media-right {
    float: right;
    margin: 0 5px;
}

.social-media-icons {
    float: right;
    font-size: 18px;
    letter-spacing: 1px;
    padding: .65em 0 0;
}

img.icon {
    display: inline !important;
}

.pagination-container {
    margin-top: 4rem;
    margin-bottom: 1rem;
}

/*
 * Colors
 *
 */

.in-stock {
    color: #ededed;
}

.not-yet-available {
    background-color: #ccc;
}

.out-of-stock {
    background-color: #ccc !important;
}

.concept {
    background-color: #5a045b !important;
    color: #ededed;
}

.in-dev {
    background-color: #530003 !important;
    color: #ededed;
}

.at-print {
    background-color: #b25e05 !important;
    color: #ededed;
}

.on-boat {
    background-color: #96810c !important;
    color: #ededed;
}

.shipping {
    background-color: #61822b !important;
    color: #ededed;
}

.in-stores {
    background-color: #6cadbf;
    color: #ededed;
}

.awaiting-reprint {
    background-color: #84171b;
    color: #ededed;
}

.out-of-print {
    background-color: #390607;
    color: #ededed;
}

.lcg {
    background-color: #730000 !important;
}

.lcg.light {
    background-color: #930000 !important
}

.board {
    background-color: #00509f !important;
}

.board.light {
    background-color: #0070bf !important;
}

.mini {
    background-color: #416221 !important;
}

.mini.light {
    background-color: #618241 !important;
}

.organized-play {
    background-color: #781ca3 !important;
}

.organized-play.light {
    background-color: #8633ac !important;
}



/*
 * Global styles
 *
 */

div#spinner-container {
    background-color: rgba(235, 235, 235, .9);
    display: none;
    height: 100%;
    left: 0;
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 1000;
}

img#spinner {
    display: block;
    margin: auto;
}

div.section {
    border-bottom: 1px solid #343740;
}

div.right-sidebar {
    background-color: #e0e0e0;
    float: right;
    margin-left: 2%;
    margin-top: 10px;
    width: 27%;
}

div.right-sidebar h1 {
    border-bottom: 5px double #343740;
    color: #343740;
    font-size: 1.5em;
    margin: 0 0 10px;
    padding: 10px;
}

div.right-sidebar p {
    padding-left: 10px;
    padding-right: 10px;
}

div.right-sidebar > .news-list-item {
    margin: 0 0 1.25em;
}

a.link-button {
    /** background: #dcdcdc; **/
    display: inline-block;
    padding: .5em;
}

a.link-button:hover {
    background: #093156;
    color: #f5fbfe;
    text-decoration: none;
}

a.link-button:active {
    background: #093156;
}

a.link-button.active {
    background: #093156;
    color: #f5fbf3;
}

select.unstyled {
    -webkit-appearance: auto;
    border: none;
    border-radius: 0;
    margin: 0;
    padding: 0;
}

.fix-to-top {
    position: fixed;
    z-index: 200;
}

.centered {
    margin-right: auto;
    margin-left: auto;
    width: 85%;
    max-width: 1055px;
}

.fixed-at-top {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100vw;
    z-index: 200;
}

/*
 * Utility styles
 *
 */

.trademark {
    font-size: x-small;
    position: relative;
    top: -6px;
}

.no-padmar {
    padding: 0 !important;
    margin: 0 !important;
}

.cardcrop {
    border-radius: 10px;
    box-shadow: 3px 3px 5px #ccc;
    margin: 10px;
}

.center {
    display: block;
    margin-left: auto;
    margin-right: auto;
}

.twoup {
    text-align: center;
}

.threeup {
    text-align: center;
}

.textbox {
    background-color: #e0e0e0;
    border: 1px solid #ccc;
    float: right;
    margin: 10px;
    padding: 10px;
}

.sidebyside {
    border: 1px solid #ccc;
    clear: both;
    width: 100%;
}

.sidebyside div {
    padding: 10px;
}

.sidebyside div:first-child {
    float: left;
}

.sidebyside:after {
    content: "";
    clear: both;
    display: table;
}

.float-right {
    float: right;
}

.float-left {
    float: left;
}

.padding {
    padding: 10px;
}

.parallel-boxes {
    margin: 20px 0;
    overflow: auto;
    width: 100%;
}

.parallel-boxes div {
    border: 1px solid #ccc;
    padding: 10px;
    width: 45%;
}

.parallel-boxes div:first-child {
    float: left;
}

.parallel-boxes div:last-child {
    float: right;
}

a.card-preview img {
    max-width: 200px;
}

p.caption {
    color: #63656e;
    font-size: small !important;
    line-height: inherit !important;
}

/*
 * Header styles
 *
 */

.forum_username {
    font-size: 14px;
}

.forum_status {
    font-size: 11px;
    font-weight: bold;
}

ul#more-menu {
    background-color: rgba(237, 237, 237, 0.90);
    list-style-type: none;
    margin: 0;
    padding: 0;
    visibility: hidden;
}

ul#more-menu li {
    font-size: 12px;
    display: inline-block;
    padding: .25em .75em;
    position: relative;
    top: -.25em;
}

ul#more-menu li a:hover {
    text-decoration: none;
    color: #5da2bf;
}

.icon-container {
    float: right;
    margin: 12px 1px 0 3px;
}

i.top-nav-button:hover {
    background: #5da2bf;
    cursor: pointer;
}

i.mobile-menu-button {
    cursor: pointer;
}

span.primary-nav-item {
    border-color: #093156;
}

/*
 * Search styles
 *
 */

div.search {
    min-height: 600px;
}

form#search-form {
    clear: both;
}

span.search-status {
    display: block;
    margin-top: -2.5rem;
    margin-bottom: 0.5rem;
    color: white;
}

form#search-form input, form#search-form select {
    border: none;
    border-radius: 0;
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    box-sizing: border-box;
    color: #fff;

    margin: 0;
}

form#search-form input {
    box-sizing: border-box;
    color: #343740;
    font-family: "helvetica", "arial", "sans-serif";
    font-size: 16pt;
    font-weight: 300;
    margin: .25em 0 .5em 0;
    padding: 10px;
    width: 100%;

    -webkit-border-radius: 0px;
    -moz-border-radius: 0px;
    border-radius: 0px;
}

form#search-form select {
    background-color: #5da2bf;
    color: #fff;
    cursor: pointer;
    font-size: 11pt;
    height: 44px;
    margin: 0 0.25em;
    padding: 5px;
    text-align: center;
    -webkit-appearance: initial;

    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    border-radius: 5px;
}

form#search-form select#results-type {
    border: none;
    border-right: 1px solid #a0a0a0;
}

form#search-form select#page-size {

}

p#sort-control {
    background-color: #353640;
    color: #ffffff;
    font-size: 14pt;
    margin: 0;
    padding: .25em 20px;
}

p#sort-control select {
    vertical-align: middle;
}

a.search-result {
    border-bottom: 1px dotted;
    box-sizing: border-box;
    display: block;
    font-size: 18pt;
    height: 82px;
    margin: 0;
    padding: .5em 20px .5em 0;
    text-decoration: none;
}

a.search-result:hover {
    background-color: #fff;
}

a.search-result:active {
    background-color: #bebebe;
}

a.search-result img {
    display: block;
    float: left;
    max-height: 80px;
}

.result-coltext {
    float: left;
    width: 20%;
}

.search-sort-options {
    float: none;
}

a.search-result div.result-text {
    float: left;
    text-align: left;
    vertical-align: middle;
    width: 60%;
}

a.search-result p {
    margin: 0;
    padding: 0 10px;
}

a.search-result p.result-line-one {
    font-size: 14pt;
}

a.search-result p.result-line-two {
    font-size: 14pt;
}

a.search-result p.result-line-three {
    color: #63656e;
    font-size: 14px;
    margin-top: .15em;
    overflow: hidden;
    text-overflow: ellipsis;
    width: 100%;
    white-space: nowrap;
}

a.search-result p.result-line-three p {
    margin: 0;
    padding: 0;
    text-overflow: ellipsis;
    white-space: nowrap;
    width: 100%;
}

a.search-result div.price {
    float: right;
    font-size: 14pt;
    text-align: left;
    min-width: 75px;
}

a.search-result div.date {
    float: right;
    font-size: 14pt;
    text-align: center;
    width: 3em;
}

/*
 * Breadcrumb styles
 *
 */

div.breadcrumbs-container {
    background-color: rgba(237, 237, 237, 0.9);
    min-height: 22px;
    white-space: nowrap;
    overflow: hidden;
}

.breadcrumbs li {
    font-size: 10px;
}

div.fixed.breadcrumbs-container {
    margin: 0 7.5%;
    visibility: hidden;
    width: 85%;
}

ul.breadcrumbs {
    background-color: inherit;
    box-sizing: border-box;
    font-size: 10px;
    list-style-position: inside;
    list-style-type: none;
    padding: 0;
    width: 100%;

}

ul.breadcrumbs li {
    background-color: inherit;
    border-left: 1px solid #343740;
    cursor: pointer;
    display: inline-block;
    float: left;
    /** padding: .5em 1.5em; **/
}

ul.breadcrumbs li:first-child {
    border-left: none;
}

ul.breadcrumbs li:hover {

}

ul.breadcrumbs li:last-child {
    color: #000;
    cursor: default;
    font-weight: bold;
}

ul.breadcrumbs li:last-child p {
    font-size: 10px;
    margin: 0;
    display: inline-block;
    line-height: 14px;
}

ul.breadcrumbs li a {
    color: #63656e;
    text-decoration: none;
}

ul.breadcrumbs .separator {
    display: none;
}

.breadcrumbs span.active {
    display: inline-block;
    padding: 0.5em;
}

/*
 * Login page
 *
 */
form#login-form {
    background-color: #fafafa;
    margin: 2em auto;
    padding: 1em;
    width: 20%;
}

/*
 * Minisite
 *
 */

div.legal {
    clear: both;
    padding-top: 50px;
}

.legal p {
    color: #63656e;
    font-size: 10px;
}

/*
 * Bxslider fixes
 *
 */

ul.bxslider li {
    left: 0px;
}

/*
 * Feature plugin
 *
 */

div.carousel {
    box-sizing: border-box;
    left: 0px;
    overflow: hidden;
    padding: 0;
    visibility: hidden;
}

div.feature {
    position: relative;
}

div.background-carousel {
    width: 100%;
}

div.feature-grid {
    height: 100%;
}

div.feature-grid-item {
    box-sizing: border-box;
    display: table-cell;
    float: left;
    margin: 10px 0.75% 0;
    padding: 0;
}

div.feature-grid-item img {
    width: 100%;
}

img.carousel-img {
    left: 0px;
    margin: 0 auto !important;
    max-width: 100% !important;
    max-height: 375px;
    position: static;
    width: initial !important;
}

div.feature-grid-item-meta {
    border-top: 1px solid #093156;
    font-size: 10px;
    margin: 0;
    padding: 0;
}

/** News Archive/Posts **/

iframe#original-content {
    border: none;
    height: 500px;
    overflow: hidden;
    width: 100%;
}

/*
 * Recent news plugin
 *
 */

.unpublished {
    background-color: rgba(245, 200, 200, .85);
}

a#more-news {
    background-color: #343740;
    color: #fff;
    font-size: 18px;
    padding: 5px 10px;
}

.front-page-news a#more-news {
    margin-top: 10px;
}

a:hover#more-news {
    background-color: #093156;
}

div.front-page-news {
    padding: 0;
    text-align: center;
}

div.hidden-news {
    display: none;
}

div.news-list-item-container {
}

.news-list-item-row {
    clear: both;
}

.news-list-item {
    display: inline-block;
    float: left;
    height: 225px;
    margin: 10px 0 0 0;
    padding: 0 .75%;
    text-align: left;
}

div.right-sidebar .news-list-item {
    border-bottom: 1px solid #63646e;
}

div.news-list-item:first-child {
    padding-left: 0;
}

div.news-list-item:last-child {
    padding-right: 0;
}

div.news-item-meta {
    font-size: 10px;
    overflow: hidden;
    padding: 0 0 0.5em 0;
}

span.news-item-date {
    color: #63656e;
    float: left;
}

div.news-list-item img {
    display: block;
    width: 100%;
}

div.news-list-item span.title {
    display: block;
    font-size: 18px;
    font-family: "Noto Sans", "helvetica", "arial", "sans-serif";
    letter-spacing: .5px;
    margin: 7px 0 3px;
}

div.news-list-item p {
    color: #63656e;
    font-size: 14px;
    margin: 0px;
    padding: 0px;
    line-height: 21px;
    width: 100%;
}

/** Related news **/

a.relnews-title {
    background-color: none;
    color: #093156;
    font-family: "Noto Sans", "helvetica", "arial", "sans-serif";
    width: 100%;
}

.relnews-block {
    margin: 10px;
}

.relnews-leadin p {
    color: #63656e !important;
}

.empty-news-msg {
    font-size: 18px;
    padding: 1em;
}

/*
 * Minisite
 *
 */

/*
 * Sections
 *
 */

#scroll-to-top {
    color: #a8a8a8;
    cursor: pointer;
    font-size: 35px;
    position: fixed;
    right: .75em;
    top: 1.75em;
}

#scroll-to-top:hover {
    color: #b6b6b6;
    cursor: pointer;
    text-decoration: none;
}

#scroll-to-top:active {
    color: #9a9a9a;
}

div.section-menu-container-container {
    /* What an embarassing name! */
    min-height: 30px;
    position: static;
}

div.section-menu-container {
    background-color: rgba(237, 237, 237, 0.9);
    display: table;
    font-size: 14px;
    position: relative;
    table-layout: fixed;
    text-align: center;
    width: 100%;
}

div.section-menu-container > div:nth-child(2) > a {
    border-top: 1px solid #ccc;
}

div.fixed.section-menu-container {
    display: table;
    margin-left: 7.5%;
    min-height: 30px;
    position: fixed;
    visibility: hidden;
}

div.section-menu {
    background-color: #343740;
    display: table-row;
}

div.section-menu a {
    color: #fff;
    display: table-cell;
    border-right: 1px solid #ededed;
    padding: 5px;
}

div.section-menu > a:first-child {
    border-left: none;
}

div.section-menu > a:last-child {
    border-right: none;
}

h1.section-plugin {
    clear: both;
    font-family: "Noto Sans", "helvetica", "arial", "sans-serif";
    padding-left: 0;
    margin: 15px 0;
}

h2.section-plugin {
    background-color: #e0e0e0;
    clear: both;
    font-weight: 300;
    padding: 15px;
}

/*
 * Truncated text plugin
 *
 */

div.truncated-text {
    display: none;
}

a.truncated-text-button {
    background-color: #343740;
    clear: both;
    color: #fff;
    display: block;
    font-size: 16px;
    margin: 20px 0;
    padding: 5px;
    text-align: center;
}

#technical-data a.truncated-text-button {
    background-color: #343740;
    margin: 5px 0;
}

#technical-data a.truncated-text-button:hover {
    background-color: #093156;
}

/*
 * Product line page
 *
 */

.cardsleeve-number {
    color: #fff;
    text-shadow: 1px 1px #000, -1px -1px #000, -1px 1px #000, 1px -1px #000,
    1px 1px 2px rgba(53, 53, 53, 1);
}

.hashtag {
    color: #343740;
    display: inline-block;
    float: left;
    font-size: 11px;
    font-weight: bold;
    padding: 2px 5px;
    white-space: nowrap;
}

/*
.product-feature {
  display: block;
  width: 100%;
}
*/

#product-header {
    margin-top: 1em;
}

#product-main {
    box-sizing: border-box;
    float: left;
    width: 65%;
}

#product-sidebar {
    box-sizing: border-box;
    float: left;
    margin-left: 3%;
    width: 28%;
}

#product-sidebar-left {
    box-sizing: border-box;
    float: left;
    margin-right: 2%;
    margin-top: 10px;
    width: 300px;
}

.product-sidebar-img {
    max-height: 300px;
    width: 100%;
    padding-bottom: 10px;
}

.product-status-image {
    float: right;
    height: 24px;
    padding: 6px;
    margin: 5px 5px 0 0;

    border-radius: 10px;
    -moz-border-radius: 10px;
    -webkit-border-radius: 10px;
}

.carousel-img-container.product {
    height: 300px;
}

.carousel-img.product {
    position: relative;
    top: 50%;
    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

#purchase-info {
    background-color: #e0e0e0;
    border: 1px solid #ccc;
    padding: 5px;
}

#price {
    color: #fff;
    display: block;
    font-size: 18px;
    min-width: 73px;
}

#stock {
    display: block;
    font-size: 10px;
}

#buy-now {
    display: block;
    padding: 10px;
    text-align: center;
}

span#buy-now {
    font-size: 17px;
}

.cart-value {
    position: absolute;
    float: right;
    right: 0px;
    dispaly: inline;
    background-color: brown;
    border-radius: 0 0 0 5px;
    color: white;
    padding: 0 2px;
    font-weight: bold;
    width: 12px;
    text-align: center;
}

.out-stock {
    background: #e0e0e0;
    border-radius: 5px;
    color: #7e7e7e;
    font-size: 23px;
    float: left;
    height: 30px;
    margin: 3px 0;
    padding: 5px 5px 5px 7px
}

.out-stock i.fa {
    float: left;
    padding: 4px 5px 0 0;
}

.out-stock span {
    display: inline-block;
    font-size: 13px;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
}

.out-stock:hover {
    color: #990000;
}

input#product-quantity {
    border: none;
    box-sizing: border-box;
    display: inline-block;
    font-size: 17px;
    padding: 12px 0 11px 0;
    text-align: center;
    width: 15%;
}

a#buy-now {
    background: #e0e0e0;
    border-radius: 5px;
    color: #343740;
    font-size: 23px;
    float: left;
    height: 30px;
    margin: 3px 0;
    padding: 5px 5px 5px 7px;
    position: absolute;
    /**
      background-color: #343740;
      box-sizing: border-box;
      cursor: pointer;
      display: inline-block;
      font-size: 17px;
      width: 85%;
      **/
}

a#buy-now:hover {
    color: #5da2bf;
}

a#buy-now:active {

}

#technical-data {
    font-size: 13px;
    line-height: 1.5em;
}

#technical-data h3 {
    border-bottom: 1px solid #c2c2c2;
    margin: 0 0 5px;
    padding: 5px 0;
    text-align: center;
}

/** RELATED PRODUCT PLUGIN / PRODUCT ACCORDION ENTRY **/

div.product {
    box-sizing: border-box;
    display: inline-block;
    float: left;
    vertical-align: top;
    padding: 5px 10px;
}

.store-item-upper {
    background-color: #e0e0e0;
    border: 1px solid #ccc;
    height: 135px;
}

.sidebar .store-item-upper {
    background-color: #ededed;
    border: 1px solid #ccc;
    height: auto;
    text-align: center;
}

.product-thumb {
    float: left;
    height: 135px;
    max-height: 300px;
    max-width: 300px;
}

.sidebar .product-thumb {
    float: none;
    height: auto;
    margin: 0 auto;
}

.product-thumb img {
    max-height: 125px;
    padding: 5px 10px 5px 5px;
}

.sidebar .product-thumb img {
    max-height: 200px;
    padding: 10px 0;
}

.sidebar .product-name-box {
    height: auto;
    margin: 0;
    overflow: none;
    padding: 0 5px 10px;
    text-overflow: none;
}

.product-name-box {
    height: 80px;
    padding: 10px 5px 10px 0;
}

.product-link {
    font-family: "Noto Sans", "helvetica", "arial", "sans-serif";
    font-size: 16px;
    padding-bottom: 5px;
}

.sidebar .product-link p, .product-link p {
    display: inline;
    font-size: 16px;
    margin: 0;
    padding: 0;
}

.store-item-lower {
    background: #fff;
    height: 46px;
    width: 100% !important;
}

.product-retail {
    background-color: #343740;
    color: #fff;
    font-size: 18px;
    height: 100%;
    /**padding: 3px 6px 0;**/
}

.product-retail:hover {
    background-color: #4e515a;
}

.product-retail:active {
    background-color: #1b1e27;
}

.store-quantity {
    background-color: brown;
    box-sizing: border-box;
    border-radius: 0 0 0 5px;
    border-bottom: 1px solid brown;
    border-left: 1px solid brown;
    color: white;
    float: right;
    position: relative;
    padding: 0 3px;
    font-size: 14px;
    width: 1.5em;
    text-align: center;
    /* display: none; */
    /* width: 0px; */
    z-index: 10;
}

.store-price {
    float: left;
    margin-left: 5px;
    text-align: left;
    width: 90%;
}

.store-message {
    background-color: brown;
    border-radius: 0 7px 0 0;
    border-top: 1px solid #952626;
    border-right: 1px solid #952626;
    border-bottom: none;
    box-sizing: border-box;
    float: left;
    font-size: 12px;
    padding: 3px 1em 1px 5px;
    position: relative;
    text-align: left;
}

.store-message.buyable, .store-message.holiday-sale {
    background-color: green;
    border-top: 1px solid #007000;
    border-right: 1px solid #007000;
}

.store-message.b2b-store {
    background-color: #6db7d6;
    border-top: 1px solid #5da7c6;

    border-right: 1px solid #5da7c6;
}

.store-icon {
    color: white;
    font-size: 35px !important;
    float: right;
    position: relative;
    bottom: 0.5em;
    right: 12.5%;
}

.store-icon-out {
    color: white;
    font-size: 35px !important;
    float: right;
    position: relative;
    bottom: 0.5em;
    right: 10px;
}

.product-outofstock {
    background: #e0e0e0;
    border-radius: 5px;
    color: #7e7e7e;
    font-family: helvetica, arial, sans-serif;
    font-size: 20px;
    float: left;
    margin: 5px 0;
    padding: 3px 6px 3px 4px;
}

.product-outofstock span {
    display: inline-block;
    font-size: 13px;
    font-weight: 400;
    text-align: center;
    vertical-align: middle;
}

.product-outofstock i.fa {
    float: left;
    padding: 4px 5px 0 0;
}

a.product-outofstock:hover {
    color: #990000;
}

.product-addtocart {
    float: right;
    height: 30px;
    margin: -2px 16px -5px 7px;
    display: inline-block;
    right: 12px;
}

.product-addtocart-bar {
    background: #343740;
    cursor: pointer;
    height: 46px;
    width: 100%;
}

.product-addtocart-button {
    background: #343740;
}

.product-addtocart-button:hover {
    background: #ff0000;
}

.cart-contents {
    background: #63646e;
    border-radius: 0 0 5px 5px;
    color: #fff;
    display: block;
    float: left;
    font-family: helvetica, arial, sans-serif;
    font-size: 14px;
    font-weight: 400;
    left: 25px;
    padding: 1px 5px;
    position: relative;
    z-index: 1;
}

.cart-contents span {
    text-shadow: 1px 1px #000, -1px -1px #000, -1px 1px #000, 1px -1px #000, 1px 1px 2px rgba(53, 53, 53, 1);
}

a svg:hover #stock-in {
    fill: #5da2bf;
}

a svg:hover #stock-out {
    fill: #990000;
}

a svg #shopping-cart {
    fill: #fff;
}

.product-status {
    float: right;
    height: 40px;
}

.product-status-name {
    float: right;
    padding: 12px 0;
}

/** END RELATED PRODUCT PLUGIN / PRODUCT ACCORDION ENTRY **/

span.key {
    clear: left;
    float: left;
    font-weight: 700;
    text-transform: uppercase;
}

span.val {
    float: right;
}

h1.product-name {
    color: #343740;
    font-weight: 300;
    margin: 0;
    padding: .5em 0 .125em 0;
}

h1.product-name p {
    color: #343740;
    font-size: 26px;
    font-weight: 300;
    line-height: 38px;
    margin: 0;
    padding: .5em 0 .125em 0;
}

hr.product-hr {
    clear: both;
    color: #717379;
}

.product-fulfillment-partners {
    padding-top: 5px;
}

.product-fulfillment-partners img {
    float: left;
    width: 50%;
}

div.stats-container {
    border-bottom: 1px solid #c2c2c2;
    border-top: 1px solid #c2c2c2;
    clear: both;
    display: table;
    margin: 1em 0 0 0;
    table-layout: fixed;
    text-align: center;
    width: 100%;
}

.stat {
    border-left: 1px solid #c2c2c2;
    box-sizing: border-box;
    color: #63656e;
    display: table-cell;
    font-family: "Noto Sans", "helvetica", "arial", "sans-serif";
    font-size: 16px;
    padding: 1em;
}

.stat:first-child {
    border-left: none;
}

.stat img {
    margin: 0 .5em;
    max-width: 50px;
    vertical-align: middle;
    width: 40%;
}

.stat span {
    vertical-align: sub;
}

.cardsleeve-container {
    background-color: #0b4d84;
    margin: 0 auto;
    padding: 10px;
    text-align: center;
}

.cardsleeve-container a {
    color: #fff;
}

.cardsleeve-container a:hover {
    text-decoration: underline;
}

.cardsleeve-boxes {
    padding-top: 10px;
}

.cardsleeve-label {
    font-weight: normal;
    padding: 10px;
    text-transform: uppercase;
}

.sleeve {
    border-radius: 7px;
    display: inline-block;
    font-size: 17px;
    font-weight: bold;
    height: 28px;
    margin: 0 7px 5px 0;
    padding: 2px 0 0 0;
    text-align: center;
    width: 30px;

}

.blue {
    background-color: #62c7ed;
    border: 1px solid #00aeef;
}

.gray {
    background-color: #cbcccd;
    border: 1px solid #b8bbbd;
}

.green {
    background-color: #a4d78e;
    border: 1px solid #8ac86f;
}

.orange {
    background-color: #feb25a;
    border: 1px solid #f7931e;
}

.purple {
    background-color: #b191cb;
    border: 1px solid #8860a8;
}

.red {
    background-color: #be5c5f;
    border: 1px solid #a21d21;
}

.yellow {
    background-color: #ffed92;
    border: 1px solid #f4dd68;
}

/*
 * Support items
 *
 */

a.support-item {
    display: block;
    font-size: 18px;
    padding: .75em;
}

a.support-item:hover {
    text-decoration: none;
    background-color: #d5d5d5;
}

a.support-item:active {
    background-color: #bebebe;
}

div.support-item-container span {
    display: block;
}

span.subtitle {
    font-size: 14px;
    font-style: italic;
}

span.date {
    font-size: 12px;
}

span.file-size {
    float: right;
    font-size: 16px;
    position: relative;
    top: .5em;
}

/*
 * Recent Products
 *
 */

ul.recent-products {
    list-style-type: none;
    list-style-position: inside;
    margin-bottom: 10px;
    padding: 0 10px;
}

ul.recent-products li {
    border-bottom: 1px dashed #ccc;
}

ul.recent-products img {
    max-height: 40px;
    max-width: 40px;
    float: left;
    margin: 0 .5em .5em 0;
}

ul.recent-products p {
    clear: right;
    margin: 0;
}

ul.recent-products .date {
    font-size: 10px;
}

ul.recent-products a {
    display: block;
    padding-top: 10px;
    position: relative;
    text-decoration: none;
}

ul.recent-products a:hover {
    text-decoration: none;
}

ul.recent-products a:active {
    background-color: #bebebe;
}

/*
 * Upcoming
 *
 */

#upcoming-container {
    margin-bottom: 75px;
}

.upcoming-item {
    border-bottom: 1px solid #093156;
    height: 145px;
}

.upcoming-item:first-child {
    border-top: 1px solid #343740;
}

.upcoming-upper {
    height: 95px;
    padding: 10px 10px 0 10px;
}

.upcoming-lower {
    float: right;
    height: 60px;
    width: 40%;
}

.upcoming-item .color {
    border-radius: 10px 0 0 0;
    float: right;
    height: 40px;
    width: 100%;
}

.upcoming-thumb {
}

.upcoming-item img {
    float: left;
    max-height: 125px;
    margin-right: 1em;
}

img.upcoming-status {
    padding: 10px 5px 10px 10px;
    height: 20px;
    margin: 0;
}

.status-info {
    box-sizing: border-box;
    display: block;
    float: left;
    height: 100%;
    margin: 0;
    padding: .75em 0 .75em 5px;

}

.status-info:hover {
    text-decoration: none;
    background-color: #343740;
}

.status-info:active {
    background-color: #bebebe;
}

div.spacer {
    background-color: #ffffff;
    float: left;
    height: 34px;
    width: 60%;
}

span.product, span.collection {
    display: block;
    margin-bottom: 5px;
}

span.reprint {
    margin: 5px 0;
}

span.product {
    font-size: 18px;
}

span.status {
    font-family: "Noto Sans", "helvetica", "arial", "sans-serif";
    font-size: 14px;
    height: 20px;
    padding: 0 4px;
    vertical-align: middle;
}

.upcoming-status-text {
    color: #343740;
    float: right;
    padding: 12px 0;
}

.upcoming-status {
    color: #fff;
    float: left;
    padding: 10px 5px;
}

span.collection {
    font-size: 14px;
}

span.expected-by {
    font-size: 12px;
}

span.last-updated {
    font-size: 12px;
}

span.reprint {
    color: #b70000;
    font-size: 12px;
    font-style: italic;
    font-weight: bold;
}

select.upcoming-category {
    width: 20%;
}

select.upcoming-status {
    width: 15%;
}

select.upcoming-desc {
    width: 8%;
}

/*
 * More
 *
 */

div.npm-container {
    height: 100%;
    padding-top: 30px;
}

li.npm-list {
    display: inline;
    list-style-type: none;
    padding-right: 10px;
}

div.npm-list {
    float: left;
    margin: 10px 5px;
    width: 32.235%;
}

.npm-img {
    width: 100%;
}

.npm-text {
    background-color: #093156;
    color: #fff;
    font-family: "Noto Sans", "helvetica", "arial", "sans-serif";
    padding: 10px;
    text-align: left;
}

.npm-text a {
    color: #fff;
}

.npm-text a:hover {
    color: #fff;
    text-decoration: underline;
}

.corner-flair {
    width: 0px;
    height: 0px;
    border-top: 20px solid rgb(237, 237, 237);
    border-left: 20px solid transparent;
    margin: 4px 4px 0px 0px;
    float: right;
}

/*
 * Wrapped Video styles
 *
 */

img.frame {
    display: block;
    position: absolute;
    z-index: 0;
}

iframe.video {
    position: absolute;
    z-index: 10;
}

/*
 * Embedded blog post styles
 *
 */

div.embedded-blog-post {
    box-sizing: border-box;
    font-size: 14px;
    padding: 0;
}

div.embedded-blog-post h2 {
    margin: 0;
}

div.blog-post-preview {
    height: 100px;
    overflow: hidden;
}

/*
 * Add to cart
 *
 */

a.add-cart {
    cursor: pointer;
}

div.modal {
    display: none;
    position: fixed;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
    background-color: rgba(237, 237, 237, 0.90);
    z-index: 1000;
}

div.modal span {
    font-size: 17px;
}

div.modal a {
    color: #000;
    font-weight: bold;
    text-transform: uppercase;
    display: inline-block;
    margin-top: 20px;
}

div.modal a:hover {
    color: #f14400;
}

div.modal > div {
    /*
     * For centering a position: fixed; element, see
     * http://stackoverflow.com/questions/2005954/
     */

    left: 50%;
    margin-left: -250px;
    margin-top: -100px;
    max-width: 100%;
    padding: 3em;
    position: fixed;
    text-align: center;
    top: 40%;
    width: 500px;
}

div.modal div.success {
    color: #686868;
    background-color: #fff;
    border: 1px solid #26cb00;
}

div.modal div.choice {
    color: #686868;
    background-color: #fff;
    border: 1px solid #686868;
}

div.modal div.choice article {
    float: left;
    width: 49%;
}

div.modal div.choice article button {
    background-color: #000000;
    border: none;
    border-radius: 5px;
    color: #ffffff;
    cursor: pointer;
    height: 88px;
    width: 100%;
}

div.modal div.choice article a {
    box-sizing: border-box;
    margin: 0;
    padding: 0 2px;
    width: 50%;
}

div.modal div.error, div.modal div.failure {
    color: #d51400;
    background-color: #fff;
    border: 1px solid #d51400;
}

#cart-link .fa.fa-shopping-cart {
    letter-spacing: 5px;
}

#cart-link span {
    font-family: helvetica, arial, sans-serif;
    letter-spacing: normal;
}

/*
 * Other stuff
 *
 */

.centered-vertically {
    display: block;
    position: relative;
    top: 50%;

    -webkit-transform: translateY(-50%);
    -moz-transform: translateY(-50%);
    -ms-transform: translateY(-50%);
    -o-transform: translateY(-50%);
}

.page {
    height: 100%;
    margin-right: auto;
    margin-left: auto;
    width: 960px;
}

.navbar-left {
    padding-top: 2em;
    float: left;
    font-variant: small-caps;
}

.navbar-right {
    float: right;
    padding-top: 15px;
}

#header p {
    color: #FFF;
    font-size: medium;
    margin: 0px;
    padding: 11px;
}

.main-split {
    height: 100%
}

.main-full {
    height: 100%
}

.sidebar {
    float: left;
    width: 120px;
}

.sidebar a {

    /**
    display: block;
    color: #FFF;
    background-color: #353640;
    width: 110px;
    **/
    padding: 5px 0;
    text-decoration: none;

}

.sidebar a:hover {
    color: #5da2bf;
}

.active a {
    background-color: #e6e6e6;
    color: #000;
    display: block;
    font-weight: bold;
}

#sub-active a {
    font-weight: bold;
    color: #92ccfd;
    display: block;
}

.sidebar ul {
    margin: 0;
    padding: 0;
    list-style-type: none;
}

.sidebar li {
    text-align: right;

}

.sidebar li + li {

}

.sidebar h4 {
    margin: 7px 0
}

.sidebar p {
    display: block;
    font-size: small;
    padding: 0 0 5px 0;
    margin: auto;
}

.sidebar-bg {
    background: #353640;
    color: #FFF;
}

.content-full {
    background-color: #e6e6e6;
    float: right;
    min-height: 800px;
    width: 960px;
}

/* About */

.layout img {
    margin: 300px 0px 0px 470px;
    position: fixed;
}

.slider-ref {
    background-color: #00509f;
    color: #FFF;
    display: block;
    float: left;
    position: fixed;
    padding-top: 0;
    height: 20px;
    padding: 5px 10px;
    margin-top: 390px;
}

.slider-ref a {
    font-style: italic;
    text-decoration: underline;
}

/* SVG Logo Image */
.svg-logo-text:hover {
    fill: #5da2bf;

}

/* Collection */

.collection-header {
    background-color: #e0e0e0;
    cursor: pointer;
    font-weight: 300;
    margin: 5px 0;
    padding: 15px;
}

h1.collection-header .fa {
    padding-top: 5px;
}

h2.collection-header .fa {
    padding-top: 3px;
}

/* Generic Minisite */

.text-accordion-content {
    padding: 0 25px;
}

h1.section-plugin {
    border-bottom: 1px solid #343740;
    color: #343740;
    padding: 5px 0;
}

/* Showcase section */

#showcase-page-section {
    background-color: #343740;
    border: 1px solid #000;
    color: #FFF;
    margin-bottom: 10px;
    padding: 7px;
}

#showcase-page-section a {
    color: #fff;
}

/* Gallery */
.gallery-container {
    height: 200px;
    overflow: hidden;
}

.gallery-thumb {
    display: inline;
    max-width: 33%;
    max-height: 200px;
}

/* PRODUCTS CATALOG */
.display-toggle {
    float: right;
    font-size: 20px;
    padding: 10px 20px 0;
}

.display-toggle a {
    color: #ccc;
}

.display-toggle a.active {
    color: #093156;
}

/* Collection page social icons */

.social-icons-container {
    background: #343740;
    padding: 10px 0;
}

.social-icons-container .hashtag {
    color: #fff;
    float: none;
}

.social-icons-graphics {
    font-size: 20px;
    padding: 5px 10px;
    text-align: center;
}

.social-icons-graphics div {
    background-color: #fff;
    border-radius: 3px;
    display: inline-block;
    margin: 0 3px;
}

.social-icons-graphics a {
    color: #343740;
    padding: 0 5px;
}

/* Approval status display */

.cms_toolbar-item-text {
    padding: 2px 10px 2px 15px;
}

.cms_toolbar-item-text i.fa {
    padding: .33em .75em 0 0;
}

/*
 * Basket
 *
 */

/*
 * Individual Product Listings
 *
 */

.blog-content .prodlist a {
    text-decoration: underline;
}

.prodlist-container:first-child {
    border-top: 1px solid #ccc;
}

.blog-content .prodlist p, .blog-content .prodlist li {
    font-size: 13px;
    line-height: 20px;
}

.blog-content .prodlist p, .blog-content .prodlist h1 {
    padding: 0 20px;
}

.blog-content .prodlist h1 {
    margin-top: 0;
}

.blog-content .prodlist .flavortext {
    padding: 0 40px;
}

.prodlist {
    border-bottom: 1px solid #ccc;
    clear: both;
    padding: 20px 0;
}

.prodlist-img {
    float: left;
    width: 25%;
}

div.blog-content .prodlist-img img {

    max-width: 100%;
    vertical-align: top;
}

.prodlist-desc {
    float: left;
    width: 75%;
}

/*
 * Individual Product Listings
 *
 */

.blog-content .prodlist a {
  text-decoration: underline;
}

.prodlist-container:first-child {
  border-top: 1px solid #ccc;
}

.blog-content .prodlist p, .blog-content .prodlist li {
  font-size: 12px;
  line-height: 20px;
}

.blog-content .prodlist p, .blog-content .prodlist h1 {
  padding: 0 20px;
}

.blog-content .prodlist h1 {
  margin-top: 0;
}

.prodlist {
  border-bottom: 1px solid #ccc;
  clear: both;
  padding: 20px 0;
}

.prodlist-img {
  float: left;
  width: 25%;
}

div.blog-content .prodlist-img img {
  
  max-width: 100%;
  vertical-align: top;
}

.prodlist-desc {
  float: left;
  width: 75%;
}

.arkhamcursor {
    cursor: url(https://images-cdn.fantasyflightgames.com/filer_public/27/73/277307a4-ae6f-4b4b-98e0-1d9d9c5e363e/arkham_cursor.png), zoom-in;
}

button.btn--block.enabled {
  cursor: pointer;
}

button.btn--block.disabled {
  background-color: #858585;
  transition: none;
}
