/* ========= CSC - March 2017 ========= */
/* Final updates... cleanups and fixes	*/
/* and realigns on navbar, header, 		*/
/* homepage, product pages, etc.		*/
/* ==================================== */

/* CONTENT AREA */
.content-area {
  width: 95%; 
}

/* END CONTENT AREA */

/* ======================================================================== */

/* HEADER & NAVBAR */

/* Hide Social icons and Login link */
.tools>.connect { display: none; }
.main-header-wrap .main-header .tools > a.account-options { display: none; }

/* Prevent Navbar from overflowing right side of page */
.main-header .fixednav { width: 100% !important; }

/* Prevent "Designed by..." description text from dropping below logo */
.main-header-wrap .main-header .store-title { max-width: inherit; }

/* Resize the Navbar so all items fit on one line as the page scales down in width */
/* Also move the Cart icon into the Navbar, then up on top of it as screen gets narrow */
.main-header nav.full.compress .nav-item > .label,
.main-header nav.full.compress .nav-item.dropdown > a,
.main-header nav.full .nav-item > .label,
.main-header nav.full .nav-item > .label.dropdown,
.main-header nav.full .nav-item > .label.dropdown > a {
  padding: 10px 10px;
}
.main-header nav.full .nav-item.dropdown > a,
.main-header nav.full .nav-item.has-mega-nav > a {
  padding-right: 10px !important;   
}
li.nav-item.first.dropdown {
  width: initial; 
}
.main-header nav.full .nav-item .icon {
  position: initial;
  top: initial;
  left: initial;
}
#header-nav-ul {
  text-align: left; 
}
li.nav-item.first.dropdown {
  padding-left: 10px;
}
body.ctc .action-links .tools {
  position: absolute;
  z-index: 50;
  right: 0px;
  top: 56px;
}
@media only screen and (max-width: 999px) {
  body.ctc .action-links .tools {
	top: 12px;
  }
}
@media only screen and (min-width: 1000px) {
  .main-header nav.full.compress .nav-item > .label, 
  .main-header nav.full.compress .nav-item.dropdown > a, 
  .main-header nav.full .nav-item > .label, 
  .main-header nav.full .nav-item > .label.dropdown, 
  .main-header nav.full .nav-item > .label.dropdown > a {
    padding: 10px 20px; 
  }
}
@media only screen and (max-width: 1039px) and (min-width: 720px) {
  body.ctc nav.full {
    width: calc(100% - 100px);
    float: right;
    position: absolute;
    z-index: 30;
    left: 100px;
    top: 56px;
  }
  .main-header nav.full .nav-item .icon { 
    position: relative;
    top: 0; 
    left: 0;
  }
  .main-header nav.full.compress .nav-item.dropdown > a {
    padding-right: 20px; 
  }
  li.nav-item.first.dropdown {
    width: inherit;
  }
}
@media only screen and (max-width: 1039px) and (min-width: 910px) {
  .main-header nav.full.compress .nav-item > .label {
	padding: 10px 20px;
  } 
}
@media only screen and (max-width: 1039px) and (min-width: 901px) {
  .main-header nav.full.compress .nav-item > .label {
      padding-right: 20px;
  }
  .main-header nav.full .nav-item.dropdown > a, .main-header nav.full .nav-item.has-mega-nav > a {
      padding-right: 10px;
  }
}

/* Mobile menu - remove borders that show when collapsed */
.mobile-navigation {
  border-bottom: none;
  border-top: none;
}

/* Show description "Designed in..." even on mobile */
@media only screen and (max-width: 489px) {
  body .main-header .logotext p {
    text-align: left;
    display: block;
    top: 20px;
    position: absolute;
    left: 80px;
  }
}

/* Add Promo Offer text section at top-right of header */
.template-collection .main-header-wrap .main-header .store-title {
  padding-bottom: 0px; 
  margin-bottom: 15px;
}
.header-banner-text {
  text-align: right;
  padding: 5px 0px;
  color: #000;
  text-transform: uppercase;
  font-style: italic;
  line-height: 12px;
  opacity: 0.7;
  font-weight: normal;
  font-size: 12px;
  margin-bottom: 10px;
  vertical-align: middle;
  cursor: default;
  padding-top: 24px;
}
.header-banner-text2 {
  display: none; 
  text-align: center;
  width: 100%;
  margin-top: -15px;
}
@media only screen and (max-width: 999px) and (min-width: 791px) {
  .header-banner-text {
    display: none;
  }
  .header-banner-text2 {
    display: block;
    width: 81%;
    margin: 0 auto;
    margin-top: 0;
    margin-bottom: 10px;
    text-align: center;
    border-top: 1px solid #777;
    border-bottom: 1px solid #777;
    padding-top: 8px;
    width: 90%;
  }
}
@media only screen and (max-width: 790px) and (min-width: 720px) {
  .header-banner-text {
    display: none;
  }
  .header-banner-text2 {
    display: block;
    width: 95%;
    margin: 0 auto;
    text-align: center;
    margin-bottom: 10px;
    border-top: 1px solid #777;
    border-bottom: 1px solid #777;
    padding-top: 8px;
  }
}
@media only screen and (max-width: 719px) and (min-width: 490px) {
  .header-banner-text {
    display: none;
  }
  .header-banner-text2 {
    display: block;
    padding: 5px 15px 3px 0px;
    margin-bottom: 20px;
    width: 51%;
    text-align: left;
    margin-left: 115px;
    margin-top: -50px;
  }
}
@media only screen and (max-width: 489px) {
  .header-banner-text {
    display: none;
  }
  .header-banner-text2 {
  	margin-top: 0; 
    display: block;
    border-bottom: 1px solid #777;
    border-top: 1px solid #777;
    font-size: 11px;
    padding: 5px 15px 3px 15px;
    margin-bottom: 20px;
  }
  body.ctc #ctc-mobile-hamburger {
    top: 14px;
  }
}


/* END OF HEADER & NAVBAR */

/* ======================================================================== */

/* COLLECTIONS */
/* Center title and description text */
.template-collection .page-title,
.template-collection .collection-header .description {
  text-align: center; 
  width: 100%;
  padding-right: 30px;
  padding-left: 30px;
}
.template-collection .collection-header .description {
  font-style: italic;
}
@media only screen and (min-width: 720px) {
  ul.product-list.four.two-items {
    margin-left: 24%;
    width: 100%;
  }
}
@media only screen and (max-width: 719px) {
  body.ctc.template-collection>section>.page-title>span.label {
    text-align: center;
  }
}
.template-collection .page-title .label {
  text-transform: uppercase;
}

/* Fix alignment of three-item width display */
@media only screen and (max-width: 850px) {
  .template-collection .product-list.four .product {
    width: 32%; 
  }
}

/* Don't show border around collection images on mobile view */
body.ctc .product-list li.product figure {
  border: none; 
}


/* END OF COLLECTIONS */

/* ======================================================================== */

/* PRODUCT-LIST */
/* List Item realign so all boxes same height */
.product-list>.product>.product-inner>.priceholder {
  height: auto !important;
}
.product-list>.product>.product-inner>.priceholder>.title { 
  margin: inherit;
  line-height: 16px;
  height: 32px;
  text-align: center;
  margin-top: 10px;
  padding: 0px 5px;
  /* font-variant: small-caps; */
}
.product-list>.product>.product-inner>.priceholder>.price {
  text-align: center;
  margin: 20px 0;
  line-height: 0px;
  margin-bottom: 20px !important;
}
.product-list>.product>.product-inner>.priceholder>.sizing {
  text-align: center;
  color: #555;
  font-style: italic;
  font-size: 11pt;
  margin: 10px 0 0;
}

@media only screen and (max-width: 400px) {
  .product-list>.product>.product-inner>.priceholder>.title {
    height: 60px;
  }
}

/* Hide the 'Add to Cart' button on Collections pages to clean it up */
.template-collection .product-list .product .product-inner form#add-item-form {
  display: none; 
}

/* Add dotted grey borders for contrast */
.template-collection .product-list .product .product-inner {
  /* border: 1px dotted darkgrey; */
}

/* END OF PRODUCT-LIST */

/* ======================================================================== */

/* MOBILE */
/* Reduce padding of mobile menu */
.mobile-dropdown .list .list-item a{
  padding: 15px; 
}

/* END OF MOBILE */

/* ======================================================================== */

/* PRODUCT PAGES */
.details>.module>.brand {
  display: none;
}

