/**Variables**/
/*Sizes*/
/*Colors*/
/*Paddings*/
/*Margins*/
.clearfix:before,
.clearfix:after {
  content: " ";
  display: table;
}
.clearfix:after {
  clear: both;
}
.center-block {
  float: none;
  margin: 0 auto;
  display: block;
}
/*Colors*/
.orange-font {
  color: #FF6600;
}
/*Helper Classes*/
.pull-right {
  float: right;
}
.pull-left {
  float: left;
}
.hidden {
  display: none;
}
.show {
  display: block;
}
.invisible {
  visibility: hidden;
}
.capitalize {
  text-transform: capitalize;
}
.uppercase {
  text-transform: uppercase;
}
.italic {
  font-style: italic;
}
.bold {
  font-style: bold;
}
.line-break {
  float: left;
  clear: left;
  width: 100%;
}
.fa {
  font-family: 'fontawesome';
}
.img-responsive {
  width: 100%;
  max-width: 100%;
  height: auto;
}
.overflow-hidden {
  overflow: hidden;
}
@media screen and (max-width: 767px) {
  .hide-mobile {
    display: none;
    visibility: hidden;
  }
}
@media screen and (max-width: 999px) {
  .show-desktop {
    display: none;
    visibility: hidden;
  }
}
@media screen and (min-width: 768px) and (max-width: 999px) {
  .hide-tablet {
    display: none;
    visibility: hidden;
  }
}
@media screen and (min-width: 1000px) {
  .hide-desktop {
    display: none;
    visibility: hidden;
  }
}
#simplesearch-button {
  text-transform: uppercase;
  box-sizing: border-box;
  padding: 2px 6px;
  border: none;
  height: 26px;
  background: #CCC;
}
#simplesearch-button:focus {
  outline: none;
  box-shadow: none;
}
/**Mobile Only**/
@media screen and (max-width: 767px) {
  .responsive-header {
    background: #ff6600;
  }
  .header-logo {
    width: 250px;
    padding-top: 5px;
  }
  .main-nav-toggle,
  .mini-cart-mobile {
    font-size: 17px;
    height: 20px;
    color: #ffffff;
    margin-top: 15px;
  }
  .geo-selection-settings-popup {
    padding: 15px 30px;
  }
  .geo-selection-settings-popup .action-box {
    margin-bottom: 40px;
  }
  .geo-selection-settings-popup .selection-box .col {
    width: 100%;
  }
  .geo-selection-settings-popup .selection-box .col .msg {
    height: auto;
    margin-bottom: 20px;
  }
  #cboxContent {
    margin-top: 0;
  }
}
/**Mobile and Tablet**/
@media screen and (max-width: 999px) {
  .sitesearch {
    display: block !important;
    margin-bottom: 10px;
  }
  .sitesearch button {
    border-radius: 0;
    height: 25px;
    box-sizing: border-box;
    -webkit-appearance: none;
    -webkit-border-radius: 0;
  }
  .search-glass {
    display: none;
  }
  .simplesearchinput {
    width: 75%;
    padding: 5px;
    box-sizing: border-box;
    height: 25px;
  }
  .responsive-header {
    position: relative;
    z-index: 9999;
    transition: opacity 2s;
  }
  /*Header*/
  #header {
    height: auto;
  }
  #header .header-logo {
    float: none;
    margin: 0 auto;
    display: block;
  }
  #header .header-logo img {
    width: 100%;
    max-width: 100%;
    height: auto;
  }
  #header .minicartcontent {
    display: none !important;
  }
  .global-promo {
    background: #000000;
    text-align: center;
    color: #ffffff;
    padding: 5px 0;
    font-family: 'TradeGothicLT-Bold';
  }
  .global-promo a {
    color: currentColor;
  }
  /**Main Nav**/
  .main-nav-toggle,
  .mini-cart-mobile {
    position: absolute;
    cursor: pointer;
  }
  .main-nav-toggle a,
  .mini-cart-mobile a {
    color: #000;
  }
  .main-nav-toggle {
    left: 10px;
    display: block;
    width: 20px;
    text-align: center;
  }
  .main-nav-toggle.closed:after {
    content: "\f0c9";
    font-family: 'fontawesome';
  }
  .main-nav-toggle.opened:after {
    content: "\f00d";
    font-family: 'fontawesome';
  }
  /*Begin Main Nav Dropdown*/
  #main-nav-dropdown {
    font-family: 'TradeGothicLT-Bold';
    box-sizing: border-box;
    display: none;
    font-size: 16px;
    padding: 20px;
    position: absolute;
    width: 300px;
    /*lots of odd Z-index sequences throughout site so that is why this is set so high*/
    z-index: 100;
    background: #ffffff;
    box-shadow: 2px 2px 2px rgba(0, 0, 0, 0.5);
    /*These elementes get a different treatment in the mobile nav so the originals are removed*/
  }
  #main-nav-dropdown li.first-level {
    border-top: 1px solid #cccccc;
  }
  #main-nav-dropdown .categorymenu ul li {
    display: block;
    float: left;
    clear: both;
    width: 100%;
    text-transform: uppercase;
    padding: 10px 0;
    position: relative;
  }
  #main-nav-dropdown .categorymenu ul li a {
    display: inline-block;
    height: 100%;
    width: 100%;
    color: #000;
  }
  #main-nav-dropdown .categorymenu ul li a:hover {
    text-decoration: none;
    color: currentColor;
    color: #000;
  }
  #main-nav-dropdown li.first-level .top-menu.closed:after,
  #main-nav-dropdown .secondary-cat.closed:after {
    content: "\f054";
    font-family: 'fontawesome';
    float: right;
  }
  #main-nav-dropdown li.first-level .top-menu.opened:after,
  #main-nav-dropdown .secondary-cat.opened:after {
    content: "\f078";
    color: #cccccc;
    font-family: 'fontawesome';
    float: right;
  }
  #main-nav-dropdown .second-level {
    display: none;
    margin-left: 10px;
  }
  #main-nav-dropdown .second-level ul li,
  #main-nav-dropdown .second-level a {
    display: block;
    float: left;
    clear: both;
    padding: 10px 0;
  }
  #main-nav-dropdown .secondary-cat {
    font-size: 14px;
    display: inline-block;
    height: 100%;
    width: 100%;
  }
  #main-nav-dropdown .third-level {
    display: none;
    margin: 10px 0 0 10px;
    font-size: 12px;
  }
  #main-nav-dropdown .third-level a {
    padding: 5px 0;
  }
  #main-nav-dropdown .drop-list.second-level li:last-of-type > .secondary-cat {
    margin-bottom: 10px;
  }
  #main-nav-dropdown li.inside-icebreaker,
  #main-nav-dropdown .mens-kids,
  #main-nav-dropdown .mens-web-specials,
  #main-nav-dropdown .mens-gift-cards,
  #main-nav-dropdown .womens-kids,
  #main-nav-dropdown .womens-web-specials,
  #main-nav-dropdown .womens-gift-cards {
    display: none !important;
    visibility: hidden !important;
  }
  #main-nav-dropdown li.first-level.dynamic-nav {
    display: none;
  }
  #main-nav-dropdown li.first-level.dynamic-nav.mens,
  #main-nav-dropdown li.first-level.dynamic-nav.womens {
    display: block;
  }
  #main-nav-dropdown .view-all {
    font-style: italic;
    display: block;
    margin-top: 20px;
    font-size: 75%;
  }
  #main-nav-dropdown .account-links {
    display: inline-block;
    width: 100%;
    border-top: 1px solid #cccccc;
    padding: 20px 0;
    border-bottom: 1px solid #cccccc;
  }
  #main-nav-dropdown .geo-dropdown {
    position: relative;
    width: 100%;
    border: none;
    padding: 0;
    margin: 0;
    top: 15px;
  }
  /*End Main Nav Dropdown*/
  /**Mini Cart**/
  .mini-cart-mobile {
    right: 10px;
  }
  .mini-cart-mobile .mini-cart-item-word {
    display: none;
  }
  .responsive-header.fixed {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    box-shadow: 0px 1px 10px #FFF;
  }
  .responsive-header.fixed .global-promo {
    display: none;
  }
}
/**Tablet Only**/
@media screen and (min-width: 768px) and (max-width: 999px) {
  .responsive-header {
    background: #ffffff;
    border-bottom: 1px solid #cccccc;
  }
  .header-logo {
    width: 500px;
  }
  .main-nav-toggle,
  .mini-cart-mobile {
    margin-top: 30px;
    font-size: 21px;
  }
}
/**FOOTER**/
#footer {
  background: #cccccc;
  position: relative;
  padding: 40px 10px;
}
#footer a {
  color: currentColor;
  word-wrap: break-word;
}
#footer .footer-content {
  max-width: 1000px;
  margin: 0 auto;
}
#footer .emailsignup {
  display: block;
}
#footer .emailsignup h2 {
  font-size: 24px;
  color: #ffffff;
  width: auto;
  font-weight: bold;
  display: inline-block;
  box-sizing: border-box;
  padding: 0 0 10px 0;
}
#footer .emailsignup .email-box:before,
#footer .emailsignup .email-box:after {
  content: " ";
  display: table;
}
#footer .emailsignup .email-box:after {
  clear: both;
}
#footer .emailsignup .email-box:before,
#footer .emailsignup .email-box:after {
  content: " ";
  display: table;
}
#footer .emailsignup .email-box:after {
  clear: both;
}
#footer .emailsignup .email-box .thankyou {
  display: block;
  line-height: 28px;
  text-align: center;
  font-weight: bold;
  font-size: 16px;
}
#footer .emailsignup input.input-email {
  width: 80%;
  margin: 0 auto;
  position: relative;
}
#footer .emailsignup input.input-email {
  color: #6e6e6e;
  line-height: 30px;
  float: left;
  height: 30px;
  width: 100%;
  border: 0;
  border-left: solid 5px #ff6600;
  box-sizing: border-box;
  padding: 0 0 0 5px;
}
#footer .emailsignup button.btn-submit {
  height: 30px;
  margin: 0;
  padding: 0 10px;
  border: 0;
  background: #ff6600;
  color: #ffffff;
  width: auto;
  font-weight: bold;
  font-size: 16px;
  position: absolute;
  top: 0;
  right: 0;
}
#footer .emailsignup button.btn-submit:focus {
  box-shadow: none;
  outline: none;
}
#footer .account-links {
  width: 95%;
  margin: 20px 0 0 5%;
}
#footer .account-links:before,
#footer .account-links:after {
  content: " ";
  display: table;
}
#footer .account-links:after {
  clear: both;
}
#footer .account-links:before,
#footer .account-links:after {
  content: " ";
  display: table;
}
#footer .account-links:after {
  clear: both;
}
#footer .account-links li {
  box-sizing: border-box;
  width: 25%;
  padding: 5px;
  display: block;
  float: left;
}
#footer .social-links {
  padding: 20px 0;
}
#footer .social-links li {
  display: inline-block;
  font-size: 24px;
  background: #999999;
  border-radius: 50%;
  -moz-border-radius: 50%;
  -webkit-border-radius: 50%;
  -khtml-border-radius: 50%;
  margin: 0 5px 0 0;
  width: 40px;
  height: 40px;
  text-align: center;
  line-height: 40px;
  transition: all .25s;
}
#footer .social-links li:hover {
  background: #ff6600;
}
#footer .social-links a {
  font-size: 18px;
  color: #cccccc;
}
#footer .social-links a:hover {
  text-decoration: none;
  color: #ffffff;
}
/**Mobile Only**/
@media screen and (max-width: 767px) {
  #footer {
    padding: 20px 0;
  }
  #footer .emailsignup .email-box {
    width: 80%;
    margin: 0 auto;
  }
  #footer .emailsignup h2 {
    width: 100%;
    font-size: 21px;
    text-align: center;
  }
  #footer .account-links li {
    width: 33.333%;
    margin-bottom: 10px;
  }
  .email-signup-error {
    /*Counteracts inline style that is inserteved via JS*/
    margin-top: 0 !important;
  }
}
/**Mobile and Tablet**/
@media screen and (max-width: 999px) {
  #footer .footer-copyright,
  #footer .social-links {
    text-align: center;
  }
  #footer .privacy-and-security {
    margin: 15px 0;
    text-align: center;
  }
}
/**Tablet Only**/
@media screen and (min-width: 768px) and (max-width: 999px) {
  #footer .emailsignup {
    width: 85%;
    margin: 0 auto;
  }
}
/**Tablet and Desktop**/
@media screen and (min-width: 768px) {
  #footer .emailsignup h2 {
    width: 50%;
    float: left;
  }
  #footer .emailsignup .email-box {
    width: 50%;
    float: left;
  }
}
/**Desktop Only**/
@media screen and (min-width: 1000px) {
  #footer .social-links {
    padding: 0 0 10px 0;
  }
  #footer .footer-section:first-of-type {
    float: left;
    width: 60%;
  }
  #footer .footer-section:last-of-type {
    float: left;
    width: 40%;
  }
  #footer .footer-copyright,
  #footer .social-links {
    text-align: right;
  }
  #footer .privacy-and-security {
    margin: 15px 0;
  }
  #footer .privacy-and-security:before,
  #footer .privacy-and-security:after {
    content: " ";
    display: table;
  }
  #footer .privacy-and-security:after {
    clear: both;
  }
  #footer .privacy-and-security:before,
  #footer .privacy-and-security:after {
    content: " ";
    display: table;
  }
  #footer .privacy-and-security:after {
    clear: both;
  }
  #footer .privacy-and-security li {
    float: right;
  }
  #footer .account-links {
    margin-left: 0;
  }
  #footer .account-links li {
    padding-left: 0;
  }
}
/**Modals**/
.fm,
.fm *,
#modal-mask {
  box-sizing: border-box;
}
#modal-mask {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background: rgba(0, 0, 0, 0.85);
  border: none;
  display: block;
  /*This is a very high z-index but there are lots of extreme z-indexes throughout the site including those injected by vendors. this makes sure it sits on top of everything*/
  z-index: 9999999999;
}
.fm,
.fvm {
  text-align: left;
  position: fixed;
  overflow-x: hidden;
  overflow-y: auto;
  /*This is a very high z-index but there are lots of extreme z-indexes throughout the site including those injected by vendors. this makes sure it sits on top of everything*/
  z-index: 9999999999999;
}
.fm {
  display: none;
  padding: 30px;
  background: #FFF;
  width: auto;
  max-width: 80%;
  max-width: 800px;
  /*max-height: 80%;*/
  /*top: 10%;*/
}
.fvm {
  padding: 35px 0 0 0;
  max-height: 90%;
  /*top: 5%;*/
  width: 100%;
}
.fvm .embed-container {
  display: block;
  margin: 0 auto;
  position: relative;
}
.fvm .modal-video-embed {
  display: block;
  margin: 0 auto;
}
.modal .close-outer-container {
  position: relative;
  height: 30px;
  width: 30px;
  float: right;
}
.modal .close-inner-container {
  position: fixed;
}
.modal .close {
  line-height: 25px;
  position: absolute;
  display: block;
  height: 27px;
  width: 27px;
  right: -73px;
  top: -44px;
  border-radius: 50%;
  border: 1px #000 solid;
  background-color: #FFF;
  z-index: 9999999999999;
  text-align: center;
  text-decoration: none;
  font-weight: bold;
  cursor: pointer;
  color: #000 ;
}
.modal .close:after {
  content: "\f057";
  display: block;
  cursor: pointer;
  font-family: 'fontawesome';
  font-size: 24px;
  color: #000;
}
.fvm.modal .close {
  color: #FFF;
  top: -30px;
  right: 0;
}
@media screen and (max-width: 767px) {
  .fm {
    width: auto;
    max-width: 90%;
  }
  .modal .close {
    right: -50px;
    top: -25px;
  }
}
/*Specific modal treatments to help make the content more versatile until more dynamic content is created and styles are updated*/
/*Size guide modal on PDP*/
.size-guide-modal {
  /*Need !important tags since most of these widths are hardcoded into the assets.Once the assets are properly updated the important tags can be removed*/
}
.size-guide-modal .size-chart,
.size-guide-modal .size-info .intro {
  width: 90% !important;
  max-width: none !important;
}
.size-guide-modal #popup-sheep {
  display: none;
}
.size-guide-modal .size-info .text {
  max-width: 100% !important;
}
.size-guide-modal img {
  max-width: 100%;
  height: auto !important;
}
@media screen and (max-width: 767px) {
  .size-guide-modal .size-info .text {
    max-width: 90% !important;
  }
}
.ui-widget-overlay {
  height: 0 !important;
}
/***Main Wrapper Elements***/
body {
  -webkit-text-size-adjust: 100%;
  -moz-text-size-adjust: 100%;
  -ms-text-size-adjust: 100%;
}
.toggle-trigger {
  cursor: pointer;
  position: relative;
}
#wrapper:before,
#container:before,
#wrapper:after,
#container:after {
  content: " ";
  display: table;
}
#wrapper:after,
#container:after {
  clear: both;
}
#wrapper:before,
#container:before,
#wrapper:after,
#container:after {
  content: " ";
  display: table;
}
#wrapper:after,
#container:after {
  clear: both;
}
/**Mobile Only**/
@media screen and (max-width: 767px) {
  #main {
    width: 90%;
    margin: 0 auto;
  }
  .errorpage .errorpagemessage {
    top: 40px;
    left: 20px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.7);
  }
  .errorpage .errorpagemessage a {
    color: currentColor;
    text-decoration: underline;
  }
  .geo-selection-settings {
    height: 280px;
  }
  .geo-selection-settings .geo-selection-content {
    width: auto;
    padding: 20px;
  }
  .geo-selection-settings .geo-selection-content .geo-selection-message {
    padding: 0 0 20px;
  }
  .geo-selection-settings .underlay {
    height: 280px;
  }
  .geo-selection-cbox {
    width: 100% !important;
    height: 100% !important;
  }
  .geo-selection-cbox #cboxWrapper {
    width: 100% !important;
    height: auto !important;
  }
  .geo-selection-cbox #cboxWrapper #cboxContent {
    width: 100% !important;
    height: auto !important;
  }
  .geo-selection-cbox #cboxWrapper #cboxContent #cboxLoadedContent {
    width: 100% !important;
    height: auto !important;
  }
  .geo-selection-cbox #cboxWrapper #cboxContent #cboxLoadedContent .geo-selection-settings-popup {
    width: 100% !important;
  }
  .geo-selection-cbox #cboxWrapper #cboxContent #cboxLoadedContent .geo-selection-settings-popup .underlay {
    width: 100%;
  }
}
/**Mobile and Tablet**/
@media screen and (max-width: 999px) {
  #wrapper,
  #container {
    width: 100%;
  }
  input,
  select,
  textarea {
    border-radius: 0;
  }
  input:focus,
  select:focus,
  textarea:focus {
    outline: none;
  }
  #header.minicartcontent {
    display: none !important;
  }
  .notfound,
  .generalerror,
  .errorpage {
    margin: 0;
  }
  .errorpage .errorsearch {
    margin-left: 20px;
    padding-top: 10px;
  }
}
/**Tablet Only**/
@media screen and (min-width: 768px) and (max-width: 999px) {
  #main {
    width: 768px;
    margin: 0 auto;
  }
  .errorpage {
    background-position: -50px;
  }
  .errorpage .errorpagemessage {
    left: 540px;
  }
  .geo-selection-settings {
    height: 150px;
  }
  .geo-selection-settings .underlay {
    height: 150px;
  }
  .geo-selection-settings .geo-selection-content {
    width: auto;
    padding: 10px;
  }
}
/**Desktop Only**/
@media screen and (min-width: 1000px) {
  .geo-selection-settings {
    height: 150px;
  }
  .geo-selection-settings .underlay {
    height: 150px;
  }
  .geo-selection-settings .geo-selection-content {
    width: 1000px;
  }
}
