/*** Binoculars ***/











/*@import url('https://white-meadow-2064.santiago-c51.workers.dev/fonts.css');*/

/* ==============================================================
  SUPER 8
   ============================================================== */

@import url('https://fonts.googleapis.com/css2?family=Special+Elite&display=swap');


/* --------------------------------------------------------------
   GRAIN
   le grain saute d'une image à l'autre. 
   -------------------------------------------------------------- */

html::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  opacity: .40;
  mix-blend-mode: overlay;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='260' height='260'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.75' numOctaves='4'/%3E%3C/filter%3E%3Crect width='260' height='260' filter='url(%23n)'/%3E%3C/svg%3E");
  animation: inf-grain .5s steps(1) infinite;
}

@keyframes inf-grain {
   0% { background-position:   0px   0px; }
  16% { background-position: -42px  26px; }
  33% { background-position:  31px -37px; }
  50% { background-position: -18px -22px; }
  66% { background-position:  24px  39px; }
  83% { background-position: -35px  14px; }
 100% { background-position:   0px   0px; }
}


/* --------------------------------------------------------------
   VIGNETTAGE + CHEVEU 
   Deux couches en une : le dégradé des bords, et le poil coincé
   (apparaît toutes les 19 secondes)
   -------------------------------------------------------------- */

html::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9998;
  pointer-events: none;
  background-image:
    url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='56' height='44'%3E%3Cpath d='M4 44 C10 30 2 24 12 16 C20 10 16 4 26 2' fill='none' stroke='rgba(125,115,130,0.38)' stroke-width='1.7'/%3E%3C/svg%3E"),
    radial-gradient(ellipse 80% 70% at 50% 48%, transparent 44%, rgba(20, 8, 26, .7) 100%);
  background-repeat: no-repeat, no-repeat;
  background-size: 56px 44px, 100% 100%;
  background-position: 16% 200%, 0 0;
  animation: inf-hair 19s steps(1) infinite;
}

@keyframes inf-hair {
   0%, 72% { background-position: 16%   200%, 0 0; }
  74%      { background-position: 16%   100%, 0 0; }
  79%      { background-position: 16.4% 100%, 0 0; }
  84%      { background-position: 15.7% 100%, 0 0; }
  89%      { background-position: 16.3% 100%, 0 0; }
  92%      { background-position: 16%   200%, 0 0; }
 100%      { background-position: 16%   200%, 0 0; }
}


/* --------------------------------------------------------------
   3. SCINTILLEMENT + RESPIRATION 
   respiration de l'exposition x2 :
   le battement rapide du projecteur + la dérive lente du diaphragme
   -------------------------------------------------------------- */

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9997;
  pointer-events: none;
  background: #fff;
  mix-blend-mode: soft-light;
  animation: inf-flicker 3.1s steps(1) infinite;
}

@keyframes inf-flicker {
  0%, 42%, 58%, 100% { opacity: .05; }
  47%                { opacity: .13; }
  52%                { opacity: .02; }
}


/* --------------------------------------------------------------
   RAYURES 
   Deux traits verticaux, chacun sur son cycle. Quand une rayure
   doit disparaître, on la sort du cadre plutôt que de la masquer
   -------------------------------------------------------------- */

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9996;
  pointer-events: none;
  background-image:
    linear-gradient(to right, rgba(255,248,230,.45) 0 1px, transparent 1px),
    linear-gradient(to right, rgba(255,248,230,.38) 0 1px, transparent 1px);
  background-repeat: no-repeat;
  background-size: 1px 100%, 1px 100%;
  animation: inf-scratches 11.3s steps(1) infinite;
}

@keyframes inf-scratches {
   0% { background-position: -20px 0, -20px 0; }
  18% { background-position:  31%   0, -20px 0; }
  22% { background-position:  29%   0, -20px 0; }
  26% { background-position: -20px 0, -20px 0; }
  57% { background-position: -20px 0,  64%   0; }
  61% { background-position: -20px 0,  66%   0; }
  65% { background-position: -20px 0, -20px 0; }
 100% { background-position: -20px 0, -20px 0; }
}


/* --------------------------------------------------------------
   FUITE DE LUMIÈRE + COLLURE 
   fuite toutes les 17 secondes 
   -------------------------------------------------------------- */

/*.main-content { position: relative; }*/
#main { position: relative; }

#main::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 9995;
  pointer-events: none;
  opacity: 0;
  mix-blend-mode: screen;
  background: radial-gradient(ellipse 55% 130% at 104% 18%,
              rgba(255,164,72,.85), rgba(255,86,38,.3) 42%, transparent 72%);
  animation: inf-leak 17s ease-in-out infinite;
}

@keyframes inf-leak {
   0%, 62% { opacity: 0;   transform: translateX(0);   }
  70%      { opacity: .55; transform: translateX(-3%); }
  76%      { opacity: .85; transform: translateX(-6%); }
  84%      { opacity: .40; transform: translateX(-2%); }
  90%,100% { opacity: 0;   transform: translateX(0);   }
}

#main::after {
  content: "";
  position: fixed;
  left: 0;
  right: 0;
  height: 26vh;
  z-index: 9994;
  pointer-events: none;
  opacity: 0;
  background: linear-gradient(to bottom, transparent,
              rgba(0,0,0,.9) 35%, rgba(0,0,0,.9) 65%, transparent);
  animation: inf-splice 13s linear infinite;
}

@keyframes inf-splice {
   0%, 95%   { transform: translateY(-140%); opacity: 0; }
  95.4%      { transform: translateY(-140%); opacity: 1; }
  98%        { transform: translateY(420%);  opacity: 1; }
  98.4%,100% { transform: translateY(420%);  opacity: 0; }
}


/* --------------------------------------------------------------
   ÉTALONNAGE + TREMBLEMENT + SECOUSSE 
   Une seule animation de 13 s contient les cinq cycles de
   tremblement du projecteur ET la secousse de la collure
   ATTENTION : ne jamais poser ce filter sur body. la barre collée au scroll cesserait de coller.
   -------------------------------------------------------------- */

#main {
  filter: sepia(.14) saturate(.92) contrast(1.06);
  animation: inf-reel 13s steps(1) infinite,
             inf-breathe 9s ease-in-out infinite;
}

@keyframes inf-reel {
   0%    { transform: translate(0,     0    ); }
   4%    { transform: translate( .3px, -.25px); }
   8%    { transform: translate(-.25px, .2px ); }
  12%    { transform: translate( .2px,  .3px ); }
  16%    { transform: translate(-.3px, -.15px); }
  20%    { transform: translate(0,     0    ); }
  24%    { transform: translate( .3px, -.25px); }
  28%    { transform: translate(-.25px, .2px ); }
  32%    { transform: translate( .2px,  .3px ); }
  36%    { transform: translate(-.3px, -.15px); }
  40%    { transform: translate(0,     0    ); }
  44%    { transform: translate( .3px, -.25px); }
  48%    { transform: translate(-.25px, .2px ); }
  52%    { transform: translate( .2px,  .3px ); }
  56%    { transform: translate(-.3px, -.15px); }
  60%    { transform: translate(0,     0    ); }
  64%    { transform: translate( .3px, -.25px); }
  68%    { transform: translate(-.25px, .2px ); }
  72%    { transform: translate( .2px,  .3px ); }
  76%    { transform: translate(-.3px, -.15px); }
  80%    { transform: translate(0,     0    ); }
  84%    { transform: translate( .3px, -.25px); }
  88%    { transform: translate(-.25px, .2px ); }
  92%    { transform: translate( .2px,  .3px ); }
  95.4%  { transform: translateY(-3.5px); }
  96.6%  { transform: translateY( 2px  ); }
  97.4%  { transform: translateY(-.5px ); }
  98%    { transform: translate(0,     0    ); }
 100%    { transform: translate(0,     0    ); }
}

@keyframes inf-breathe {
  0%, 100% { filter: sepia(.14) saturate(.92) contrast(1.06) brightness(1);    }
  30%      { filter: sepia(.14) saturate(.92) contrast(1.06) brightness(1.07); }
  70%      { filter: sepia(.14) saturate(.92) contrast(1.06) brightness(.95);  }
}


/* --------------------------------------------------------------
   TYPOGRAPHIE, ABERRATION, HALATION
   aberration chromatique + halation ne touchent que le gros
   texte. En dessous de 18px elles rendent la lecture pénible
   -------------------------------------------------------------- */

.header-image,
h1, h2, h3 {
  font-family: 'Special Elite', Georgia, serif;
  text-shadow:
     .9px 0 rgba(255, 70, 10, .42),
    -.9px 0 rgba(0, 205, 255, .36),
    0 0 6px rgba(255, 216, 152, .20);
}


/* --------------------------------------------------------------
   MOUVEMENT RÉDUIT 
   Coupe toute animation pour les personnes qui l'ont demandé dans
   leurs réglages système. 
   -------------------------------------------------------------- */

@media (prefers-reduced-motion: reduce) {
  html::before,
  html::after,
  body::before,
  body::after,
  #main,
  #main::before,
  #main::after {
    animation: none;
  }
  #main::after { opacity: 0; }
}


@media (max-width: 1023px) {
 
  /* Coupe le tremblement du projecteur ET la respiration.
     C'est le gain le plus important du bloc. */
  #main {
    animation: none;
  }
 
  /* Le grain reste — c'est lui qui porte l'identité — mais deux
     fois moins fréquent et un peu plus discret. */
  html::before {
    opacity: .30;
    animation-duration: .9s;
  }
 
  /* Scintillement, fuite de lumière et collure : coupés.
     Ce sont trois couches plein écran en fusion, la fuite est en
     screen sur un dégradé saturé, c'est la plus lourde des trois. */
  body::before,
  #main::before,
  #main::after {
    animation: none;
    opacity: 0;
  }
 
  /* Halation quasi nulle sur petit écran : le texte y est plus
     petit, donc l'auréole mange davantage de lisibilité. */
  .header-image,
  h1, h2, h3 {
    text-shadow:
       .6px 0 rgba(255, 70, 10, .30),
      -.6px 0 rgba(0, 205, 255, .26);
  }
 
  /* Si ça saccade encore au scroll, décommente : l'étalonnage
     sépia statique force un calque sur toute la page.
     #main { filter: none; } */
}



/*modif*/
body {
  background: #602677;
  //font: 0.8em/1.8em 'Source Sans Pro', sans-serif;
  font: 1.2em/1.5em 'Special Elite', sans-serif;
  -webkit-font-smoothing: antialiased;
}

.top {
  place-self:end;
  position:sticky;
  bottom:20px;
  margin-left:90%;
  margin-top:100vh;
  margin-bottom:0;
  
  /* visual styling */
  text-decoration: none;
  padding: 7px 12px;
  font-family: 'Special Elite', sans-serif;
  color: #F9F2E5;
  background: #602677;
  border-radius: 300px;
  white-space:nowrap;
}

a.top:hover{
  color: #F9F2E5;
}


header {
  background: #602677;
}

#main {
  
    background-color: #F9F2E5;
  
}

#content {
  margin: 0 auto;
  padding: 1.5em 0;
  max-width: 76em;
  background: #F9F2E5;
  color: #333333;
}

footer {
  background: #602677;
  color: #F9F2E5;
}

.video-container {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
}

.video-container iframe {
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width:100%;
}

/********************
  TYPOGRAPHY
********************/

h1, h2, h3, h4 {
  font-weight: 400;
}

h1 a, h2 a, h3 a, h4 a {
  color: #333333;
}

h1 {
  font-size: 2.4em;
}

h2 {
  font-size: 2em;
  border-bottom: 1px solid rgba(0,0,0,0.075);
  padding-bottom: 10px;
}

h3 {
  margin: 2em 0 0.5em;
  font-size: 1.5em;
  border-bottom: 1px solid rgba(0,0,0,0.075);
  padding-bottom: 10px;
}

h3:first-child {
  margin-top: 0.5em;
}

h4 {
  font-size: 1.25em;
}

h2 small, h3 small {
  font-size: 0.75rem;
  display: block;
  margin: 0 0 -5px;
}

/*modif*/
.top-bar-section ul li a, footer ul li a{
  text-transform: uppercase;
  font-size: 1.1rem;
}

/*modif*/
.top-bar .name h1 {
  //font-size: 0.8125rem;
  //font-family:Adler;
  display:none;
}

/*modif annulée*/
.has-dropdown {
  //display:none;
}

/********************
  HTML ELEMENTS
********************/

p {
  margin: 0 0 20px;
}

ul, ol {
  margin: 0;
  padding: 0;
}

ul {
  list-style: none;
}

ol {
  list-style-position: inside;
}

a {
  color: #602677;
  text-decoration: none;
}

/*modif*/
#main a {
  color: #602677;
}

.underline {
  text-decoration:underline;
  text-decoration-style: dotted;
  text-underline-offset:3px;
}

a:hover {
  color: #333333;
}

select {
  -webkit-appearance: none;
  background: transparent;
	border: 0;
	cursor: pointer;
	font: inherit;
  border-radius: 0;
}

input, textarea {
  border: 0;
}

*:focus, *:active {
  outline: none;
}

img {
  border:1px solid #aaa;
}

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

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

.text-container a {
  text-decoration: underline dotted;
  text-decoration-thickness: 1px;
  text-underline-offset: 2px;
}

.toggle-input {
  display: none;
}

.toggle-label {
  color:grey;
  font-size:0.8em;
  line-height:0.8em;
  padding:0px;
  margin:0px;
}

.toggle-text {
  display: none;
  margin-top: 10px;
}

#en-link:checked ~ .text-container #en-text,
#fr-link:checked ~ .text-container #fr-text {
  display: block;
}

#en-link:checked ~ label[for="en-link"],
#fr-link:checked ~ label[for="fr-link"] {
  color: #333333;
  text-decoration:underline;
  text-underline-offset:3px;
  font-size:0.8em;
  line-height:0.8em;
  padding:0px;
  margin:0px;
}

/********************
  CLASSES
********************/

/*@font-face {
	font-family: "Adler";
	src: url('https://f9.limitedrun.com/fonts/1756/Adler.eot');
	src: local(Adler), url('https://f9.limitedrun.com/fonts/1757/Adler.ttf') format('opentype'); 
}

@font-face {
	font-family: "SpecialElite";
	src: url('https://f9.limitedrun.com/fonts/1754/SpecialElite.eot');
	src: local(SpecialElite), 
	url('https://f9.limitedrun.com/fonts/1753/SpecialElite-Regular.ttf') format('opentype'),
	url("https://f9.limitedrun.com/fonts/1755/SpecialElite.svg#SpecialElite") format("svg"); 
	font-weight:normal;
	font-style:normal;
}*/

/*modif*/
.button {
  background: #602677;
  color: #fff;
  padding: 0 10px;
  height: 30px;
  line-height: 30px;
  display: inline-block;
  //font-family: inherit;
  font-family:Special Elite, sans-serif;
  font-size: 0.9em;
  -webkit-font-smoothing: antialiased;
  margin: 0;
}

.button:hover {
  background: #333;
  color: #eee;
}

.overlay-wrapper {
  position: relative;
  overflow: hidden;
}

.overlay-wrapper:hover .overlay {
  display: block;
}

.overlay {
  display: none;
  position: absolute;
  top: 0;
  width: 100%;
  height: 100%;
	background: rgba(0,0,0,0.7);
}

.overlay span {
  color: white;
  height: 30px;
  width: 80%;
  text-align: center;
}

.overlay span, .absolute-center {
  margin: auto;
  position: absolute;
  top: 0; left: 0; bottom: 0; right: 0;
}

.banner {
  background: #C51919;
  position: absolute;
  bottom: 0;
  width: 100%;
  padding: 2px;
  text-align: center;
  color: white;
  font-size: 0.9em;
  font-weight: bold;
}

.ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.boxed {
  background: rgba(0,0,0,0.05);
  padding: 10px;
  margin-bottom: 2em;
}

article.row + article.row {
  margin-top: 50px;
}

.badge {
  display: block;
  width: 110px;
  height: 20px;
  text-indent: -9999px;
  background: url(https://s9.limitedrun.com/images/1080831/limited-run-badge-white.png) no-repeat;
  margin: 20px 0 0;
  opacity: 0.15;
}

.timeline-img img{
  width:200px;
}


/********************
  HEADER
********************/

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

.header-image img {
  border:none;
}



.contain-to-grid,
.top-bar,
.top-bar-section ul li,
.top-bar.expanded .title-area,
.top-bar-section li:not(.has-form) a:not(.button),
.top-bar-section .dropdown li:not(.has-form) a:not(.button) {
  background: #602677;
}

.top-bar-section li:not(.has-form) a:not(.button):hover,
.top-bar-section .dropdown li:not(.has-form) a:not(.button):hover,
.top-bar-section ul li:hover:not(.has-form)>a {
  background: rgba(0,0,0,0.1);
}

/*modif*/
.top-bar-section li:not(.has-form) a:not(.button) {
  color: #F9F2E5;
  //font-family: inherit;
  font-family:Special Elite, sans-serif;
}

.top-bar .name h1 a {
  color: #F9F2E5;
  font-weight: bold;
}

.top-bar-section .dropdown {
  min-width: 10em;
}

.top-bar-section ul li>a,
.top-bar-section .dropdown li a {
  padding: 0 15px;
}

.top-bar-section .dropdown li.title h5 a {
  line-height: inherit;
}

header a[href*="halfbob"] {
  display: none !important;  
}

/********************
  PAGINATION
********************/

.pagination {
  margin: 2em 0;
  text-align: center;
}

.page a, .current {
  color: #333333;
  display: inline-block;
  padding: 2px 10px;
  margin: 2px;
}

.page a:hover, .current {
  background: rgba(0,0,0,0.05);
}

.prev, .next {
  display: none;
}



/********************
  FOOTER
********************/

footer div > div {
  padding: 1.5em 0;
}

footer, footer a {
  color: #F9F2E5;
}

footer a:hover {
  color: white;
}


/*******************
   TABS
********************/

.tabs {
  display: flex;
  flex-wrap: wrap;
}
.tabs label {
  padding: 0px 40px 0px 0px;
  cursor: pointer;
  color:#602677;
}
.tabs .tab-content {
  width: 100%;
  padding: 20px 0px;
  order: 1;
}



/********************
  PRODUCT GRIDS
********************/

.product .overlay-wrapper {
  height: 178px;
  line-height: 178px;
  text-align: center;
}

  .roster-band-name{
    padding-bottom:35px;
    text-align:right;
    color:#444;
    z-index:10;
    margin:-4vh auto 0;
    transform: translateY(-10);
    margin-right:25px;
    font: 0.8em/0.9em 'Special Elite', sans-serif;
  }

@media (min-width: 640px) {
  .product .overlay-wrapper {
    height: 192px;
    line-height: 192px;
  }
  .top {
    margin-left:95%;
  } 
  .roster-band-name{
    padding-bottom:35px;
    text-align:right;
    color:#444;
    z-index:10;
    margin:-7.5vh auto 0;
    transform: translateY(-10);
    margin-right:25px;
    font: 1em/1.2em 'Special Elite', sans-serif;
  }
  
}

@media (min-width: 1024px) {
  .product .overlay-wrapper {
    height: 219px;
    line-height: 219px;
  }
}

/*modif*/
.product img {
  display: inline-block;
  max-height: 100%;
  vertical-align: middle;
  width: auto;
}

.variations {
  background: white;
  height: 30px;
  line-height: 30px;
  width:100%;
  text-align:left;
  margin:auto;
}

.variations select {
  width: 70%;
  color: #333;
  padding-left: 0px;
  margin-left:0px;
  line-height: 28px;
  text-align:left;
  margin:auto;
}

li .variations {
  border: 1px solid rgba(0,0,0,0.075);
}

.roster-img > img {
  border: 1px;
  box-shadow: 4px 4px 10px #000;
  -moz-box-shadow: 4px 4px 10px #000;
  -webkit-box-shadow: 4px 4px 10px #000;
}

/********************
  HOME PAGE
********************/

.featured-title {
  color : #333333;
  padding-top:0px;
  margin-top:20px;
  font-size:3em;
  line-height:1em;
  font-weight:bold;
  border-bottom:none;
  margin-bottom:10px;
  padding-bottom:10px;
}

.featured-subtitle {
  margin-top:0px;
  padding-top:0px;
  color:grey;
  border-bottom:none;
}

.home-button {
  color : #F9F2E5 !important;
  background-color : #602677;
  font-size: 24px;
  line-height:54px;
  display: inline-block;
  text-decoration:none !important;
  //padding: 1em 2em;  
  width:284px;
  border-radius: 5px;
  text-transform:uppercase;
}

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

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

/********************
  PRODUCT PAGE
********************/

#social {
  margin: 2em 0;
}

#social li {
  display: inline-block;
  vertical-align: top;
  margin-right: 10px;
}

.boxed span {
  display: block;
  text-align: center;
}

/*ajout*/
.boxed {
  width:90%;
}

#notification {
  margin: -1.5em 0 2em 0;
  text-align: center;
}


/********************
  ORDER PAGE
********************/

#order table {
  margin-bottom: 40px;
  width: 100%;
}

#order table thead th, #order table tbody td {
  text-align: left;
  vertical-align: top;
}

#order table thead th {
  vertical-align: bottom;
}

#order table tbody td + td {
  text-align: right;
  width: 130px;
}

#order table#metadata td {
  width: 50%;
}

#order table#metadata td + td {
  text-align: left;
}



/********************
  CONTACT PAGE
********************/

#contact input, #contact textarea {
  border: 1px solid #dfdfdf;
  padding: 10px;
  width: 100%;
  margin-bottom: 20px;
}

#contact textarea {
  height: 150px;
}

#contact #recaptcha_widget_div {
  margin-bottom: 20px;
}

/********************
  BANDSINTOWN
********************/

.bit-widget {
  font-family: inherit !important;
  color:  !important;
}

.bit-widget .bit-event {
  font-size: px !important;
  color:  !important;
}

.bit-widget .bit-button {
  background-color: #602677 !important;
  color: #F9F2E5 !important;
}

.bit-nav-bar-container {
  display: none;
}

.bit-no-dates-container {
  padding-top:50px !important;
  padding-bottom:30px !important;
}


/********************
  CLEARING STYLES
********************/
.clearing-thumbs, [data-clearing] {
  margin-bottom: 0;
  margin-left: 0;
  list-style: none; }
  .clearing-thumbs:before, .clearing-thumbs:after, [data-clearing]:before, [data-clearing]:after {
    content: " ";
    display: table; }
  .clearing-thumbs:after, [data-clearing]:after {
    clear: both; }
  .clearing-thumbs li, [data-clearing] li {
    float: left;
    margin-right: 10px; }
  .clearing-thumbs[class*="block-grid-"] li, [data-clearing][class*="block-grid-"] li {
    margin-right: 0; }

.clearing-blackout {
  background: #333333;
  position: fixed;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  z-index: 998; }
  .clearing-blackout .clearing-close {
    display: block; }

.clearing-container {
  position: relative;
  z-index: 998;
  height: 100%;
  overflow: hidden;
  margin: 0; }

.clearing-touch-label {
  position: absolute;
  top: 50%;
  left: 50%;
  color: #aaa;
  font-size: 0.6em; }

.visible-img {
  height: 95%;
  position: relative; }
  .visible-img img {
    position: absolute;
    left: 50%;
    top: 50%;
    margin-left: -50%;
    max-height: 100%;
    max-width: 100%; }

.clearing-caption {
  color: #cccccc;
  font-size: 0.875em;
  line-height: 1.3;
  margin-bottom: 0;
  text-align: center;
  bottom: 0;
  background: #333333;
  width: 100%;
  padding: 10px 30px 20px;
  position: absolute;
  left: 0; }

.clearing-close {
  z-index: 999;
  padding-left: 20px;
  padding-top: 10px;
  font-size: 30px;
  line-height: 1;
  color: #cccccc;
  display: none; }
  .clearing-close:hover, .clearing-close:focus {
    color: #ccc; }

.clearing-assembled .clearing-container {
  height: 100%; }
  .clearing-assembled .clearing-container .carousel > ul {
    display: none; }

.clearing-feature li {
  display: none; }
  .clearing-feature li.clearing-featured-img {
    display: block; }

@media only screen and (min-width: 40.063em) {
  .clearing-main-prev,
  .clearing-main-next {
    position: absolute;
    height: 100%;
    width: 40px;
    top: 0; }
    .clearing-main-prev > span,
    .clearing-main-next > span {
      position: absolute;
      top: 50%;
      display: block;
      width: 0;
      height: 0;
      border: solid 12px; }
      .clearing-main-prev > span:hover,
      .clearing-main-next > span:hover {
        opacity: 0.8; }

  .clearing-main-prev {
    left: 0; }
    .clearing-main-prev > span {
      left: 5px;
      border-color: transparent;
      border-right-color: #cccccc; }

  .clearing-main-next {
    right: 0; }
    .clearing-main-next > span {
      border-color: transparent;
      border-left-color: #cccccc; }

  .clearing-main-prev.disabled,
  .clearing-main-next.disabled {
    opacity: 0.3; }

  .clearing-assembled .clearing-container .carousel {
    background: rgba(51, 51, 51, 0.8);
    height: 120px;
    margin-top: 10px;
    text-align: center; }
    .clearing-assembled .clearing-container .carousel > ul {
      display: inline-block;
      z-index: 999;
      height: 100%;
      position: relative;
      float: none; }
      .clearing-assembled .clearing-container .carousel > ul li {
        display: block;
        width: 120px;
        min-height: inherit;
        float: left;
        overflow: hidden;
        margin-right: 0;
        padding: 0;
        position: relative;
        cursor: pointer;
        opacity: 0.4;
        clear: none; }
        .clearing-assembled .clearing-container .carousel > ul li.fix-height img {
          height: 100%;
          max-width: none; }
        .clearing-assembled .clearing-container .carousel > ul li a.th {
          border: none;
          box-shadow: none;
          display: block; }
        .clearing-assembled .clearing-container .carousel > ul li img {
          cursor: pointer !important;
          width: 100% !important; }
        .clearing-assembled .clearing-container .carousel > ul li.visible {
          opacity: 1; }
        .clearing-assembled .clearing-container .carousel > ul li:hover {
          opacity: 0.8; }
  .clearing-assembled .clearing-container .visible-img {
    background: #333333;
    overflow: hidden;
    height: 85%; }

  .clearing-close {
    position: absolute;
    top: 10px;
    right: 20px;
    padding-left: 0;
    padding-top: 0; } }

.clearing-assembled {
  
  margin: 0 auto 1.1875rem auto;
  max-width: 432px;
}

.clearing-assembled .clearing-thumbs li {
  text-align: center;
  width: 100%;
}

.clearing-assembled .clearing-thumbs li + li {
  height: 125px;
  line-height: 125px;
  margin: 0;
  padding: 5px;
  text-align: center;
  width: 33%;
}

@media (max-width: 400px) {

  .clearing-assembled .clearing-thumbs li + li {
    height: 75px;
    line-height: 75px;
  }
  
}

.clearing-assembled .clearing-thumbs li + li a img {
  max-height: 100%;
  max-width: 100%;
}

.clearing-assembled.clearing-blackout {
  max-width: 100%;
}

.clearing-assembled.clearing-blackout .clearing-thumbs li {
  width: 120px !important;
}

