/**
 * Global Colors Definition
 * The idea there is defining and fixing all global colors used on the website, without context
 * If you have to use #CC9D49 to your style sheet, use @orange
 * You have to change a previous color set to @darkGray1 to something else doesn't exist, do not change the static color definition
 * please create a dedicated color variable with a contextual name, like: @menuAnchorOrange for example
 *
 * Last but not least: you have to use directly white or black without referencing it to a variable. Do not use hexa code or rgb code for
 * these two colors
 */
/**
 * Static colors definitions
 */
/**
 * Variable colors definitions
 */
.clearfix {
  zoom: 1;
}
.clearfix:before,
.clearfix:after {
  display: table;
  content: "";
  zoom: 1;
}
.clearfix:after {
  clear: both;
}
/**
 * fontSizer - convert a font size in em by using the body font-size as a "yardstick"
 * magic number "16" is the browserFontSize in pixels. This is habitually the default font size
 *
 * @param  {px} fontSize: wanted font size in px
 * @return {em} returns the wanted font size in em
 */
/**
 * placeHolderCustomizer - change properties of the placeholder.
 * This mixin shall be applied on the input element it should fit
 * @source : http://stackoverflow.com/questions/2610497/change-an-inputs-html5-placeholder-color-with-css#answer-2610741
 */
.a11yOutline {
  outline: 3px solid #3A869D;
  z-index: 2;
}
#product-ratings-and-reviews {
  min-height: 400px;
}
#product-ratings-and-reviews .text-btn {
  padding: 7px 10px;
  font-family: inherit;
  text-decoration: none;
  background: transparent;
  border: none;
}
#product-ratings-and-reviews .text-btn.arrow {
  text-decoration: underline;
  color: inherit;
}
#product-ratings-and-reviews .text-btn.arrow:before {
  text-decoration: underline;
}
#product-ratings-and-reviews .text-btn.arrow:before {
  content: "→\00A0";
  display: inline-block;
  color: #CC9D49;
  text-decoration: none;
}
#product-ratings-and-reviews .btn:disabled,
#product-ratings-and-reviews .text-btn:disabled {
  opacity: .3;
}
#product-rating-row {
  position: relative;
  height: 45px;
  color: #2A2C2C;
  background: #CCCCCC;
  background: -webkit-linear-gradient(top, #CCCCCC 0%, white 100%);
  background: -moz-linear-gradient(top, #CCCCCC 0%, white 100%);
  background: -ms-linear-gradient(top, #CCCCCC 0%, white 100%);
  background: -o-linear-gradient(top, #CCCCCC 0%, white 100%);
  background: linear-gradient(to bottom, #CCCCCC 0%, white 100%);
}
#product-rating-row .product-rating {
  position: absolute;
  right: 0;
  top: 0;
  width: 252px;
  height: 21px;
  padding: 10px 20px 14px 0;
  line-height: 21px;
  font-weight: bold;
}
#product-rating-row .star-rating {
  float: left;
  height: 100%;
}
#product-rating-row .review-count {
  float: right;
  width: 80px;
  margin-top: 6px;
  font-size: .9em;
  line-height: 1em;
  text-align: right;
  color: #2A2C2C;
  text-decoration: underline;
  cursor: pointer;
}
#product-rating-cta {
  position: absolute;
  right: 20px;
  display: table;
  max-width: 240px;
  height: 45px;
}
#product-rating-cta .inner {
  display: table-cell;
  vertical-align: middle;
}
#product-rating-cta .text-btn {
  display: inline-block;
  padding: 0 0 0 15px;
  text-align: left;
}
#product-rating-cta .text-btn:before {
  position: absolute;
  left: 0;
}
#product-rating-tabs {
  overflow: hidden;
  float: left;
  width: 412px;
  height: 100%;
  margin-top: -10px;
  padding: 10px 0 0 14px;
}
#product-rating-tabs button {
  display: table-cell;
  float: left;
  width: 190px;
  height: 45px;
  text-align: center;
  /* stylelint-disable */
  vertical-align: middle;
  /* stylelint-enable */
  color: white;
  background: url("/_ui/img/ratings/tab-bg.jpg") 0 0 repeat-x;
  border: 0;
  -webkit-border-top-left-radius: 2px;
  -webkit-border-top-right-radius: 2px;
  -moz-border-radius-topleft: 2px;
  -moz-border-radius-topright: 2px;
  border-top-left-radius: 2px;
  border-top-right-radius: 2px;
  -webkit-box-shadow: 5px 0 10px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 5px 0 10px rgba(0, 0, 0, 0.3);
  box-shadow: 5px 0 10px rgba(0, 0, 0, 0.3);
}
#product-rating-tabs button .label {
  display: block;
  padding: 0 10px;
  line-height: 1em;
}
#product-rating-tabs button,
#product-rating-tabs button:active {
  padding: 0;
}
#product-rating-tabs button:hover,
#product-rating-tabs button.active {
  background-position: 0 100%;
}
#product-rating-tabs button.active {
  cursor: default;
}
#product-rating-tabs button + button {
  margin-left: 5px;
}
#product-reviews-panel {
  color: #2A2C2C;
  background: #EEEEF0;
}
#product-reviews-panel .account-title {
  padding-left: 40px;
}
#product-reviews-panel .btn {
  margin-top: -1px;
  margin-bottom: -4px;
}
.product-reviews-split-ct {
  position: relative;
  display: table;
  width: 100%;
  line-height: 1.5em;
}
.product-reviews-split-ct .col {
  display: table-cell;
  padding: 30px 40px;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}
.product-reviews-split-ct .col.left {
  width: 55%;
}
.product-reviews-split-ct .col.right {
  width: 45%;
  padding-left: 20px;
  padding-right: 20px;
  vertical-align: middle;
}
#rating-form fieldset {
  position: relative;
  padding: 40px;
}
#rating-form fieldset p {
  margin: 0 0 20px;
  font-size: 1.25em;
}
#rating-form fieldset > .helper {
  width: 205px;
  margin: -1.5em 0 30px;
  font-size: 1em;
  color: #898989;
}
#rating-form fieldset .conditions {
  clear: both;
  margin: 0;
  font-size: 1em;
}
#rating-form fieldset .conditions a {
  display: inline-block;
  color: inherit;
  font-weight: bold;
}
#rating-form .field-holder.last {
  margin-bottom: 0;
}
#rating-form .field-holder label {
  padding-right: 20px;
  cursor: pointer;
}
#rating-form .field-holder label.with-helper {
  padding-top: 4px;
  line-height: 1.2em;
}
#rating-form .field-holder label .helper {
  display: block;
  font-size: .75em;
}
#rating-form .field-holder input[type=text],
#rating-form .field-holder textarea {
  width: 355px;
}
#rating-form .field-holder input[type=text]:disabled,
#rating-form .field-holder textarea:disabled {
  color: #898989;
}
#rating-form .field-holder.field-error input[type=text],
#rating-form .field-holder.field-error textarea {
  border-color: #BE4342 !important;
}
#rating-form .field-holder textarea {
  height: 130px;
  min-height: 60px;
  resize: vertical;
}
#rating-form .field-holder input[type=checkbox] {
  position: absolute;
  left: -9999px;
}
#rating-form .field-holder input[type=checkbox] + label {
  position: relative;
}
#rating-form .field-holder input[type=checkbox] + label:before,
#rating-form .field-holder input[type=checkbox] + label:after {
  position: absolute;
  left: 100%;
  top: 50%;
}
#rating-form .field-holder input[type=checkbox] + label:before {
  content: "\0020";
  width: 16px;
  height: 16px;
  margin-top: -8px;
  background: white;
  border: 1px solid #C2C2C4;
  box-shadow: 0 2px 0 white;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}
#rating-form .field-holder input[type=checkbox] + label:after {
  width: 6px;
  height: 6px;
  margin-left: 6px;
  margin-top: -2px;
  background: #b8b8b8;
  background: -webkit-linear-gradient(top, #b8b8b8 0%, #888 100%);
  background: -moz-linear-gradient(top, #b8b8b8 0%, #888 100%);
  background: -ms-linear-gradient(top, #b8b8b8 0%, #888 100%);
  background: -o-linear-gradient(top, #b8b8b8 0%, #888 100%);
  background: linear-gradient(to bottom, #b8b8b8 0%, #888 100%);
}
#rating-form .field-holder input[type=checkbox].checked + label:after {
  content: "\0020";
}
#rating-form .field-holder #review-recommended-label .yes {
  position: absolute;
  left: 100%;
  top: 50%;
  margin-top: -8px;
  margin-left: 24px;
  line-height: 16px;
}
#rating-form .field-holder #review-anonymous-input + label {
  width: auto;
  padding: 0;
  margin: 0 0 10px 250px;
  font-size: 1em;
  line-height: 1em;
}
#rating-form .field-holder #review-anonymous-input + label:before,
#rating-form .field-holder #review-anonymous-input + label:after {
  left: -25px;
}
#rating-form .error-panel span {
  padding: 20px 40px 20px 75px;
  line-height: 1.5;
  background-position: 40px center;
}
.rating-stars-ct .rating-star {
  float: left;
  display: block;
  width: 24px;
  height: 21px;
  padding: 10px 0;
  background: url("/_ui/img/ratings/stars.png") 1px 10px no-repeat;
  cursor: pointer;
}
.field-error .rating-stars-ct .rating-star {
  background-position: 1px -190px;
}
.rating-stars-ct .rating-star.active {
  background-position: 1px -90px;
}
.rating-stars-ct[readonly] .rating-star {
  cursor: default;
}
.rating-form-result p {
  margin: 0;
  padding: 80px 25%;
  font-size: 1.2em;
  line-height: 1.4;
  text-align: center;
  color: #898989;
}
.rating-form-result p strong {
  display: block;
  margin-bottom: .5em;
  font-size: 1.8em;
  font-weight: normal;
  color: #2A2C2C;
}
.rating-controls {
  display: table;
  width: 100%;
  height: 65px;
  background: #dddddf;
  background: -webkit-linear-gradient(top, #dddddf 0%, #eeeced 100%);
  background: -moz-linear-gradient(top, #dddddf 0%, #eeeced 100%);
  background: -ms-linear-gradient(top, #dddddf 0%, #eeeced 100%);
  background: -o-linear-gradient(top, #dddddf 0%, #eeeced 100%);
  background: linear-gradient(to bottom, #dddddf 0%, #eeeced 100%);
}
.rating-controls .col {
  display: table-cell;
  padding: 0 20px;
  vertical-align: middle;
  text-align: right;
}
.rating-controls .col.left {
  width: 60%;
  padding-right: 10px;
  text-align: left;
}
.rating-controls .col.right {
  width: 40%;
  padding-left: 10px;
}
.rating-controls .pagination .prev {
  margin-left: -10px;
}
.rating-controls .pagination .next {
  margin-right: -10px;
}
.rating-controls .pages {
  display: inline-block;
}
.rating-controls .pages:before,
.rating-controls .pages:after {
  content: "\00A0|\00A0";
  display: inline-block;
  color: #CC9D49;
}
.rating-controls .pages.separator.left .first,
.rating-controls .pages.separator.right .last {
  position: relative;
}
.rating-controls .pages.separator.left .first:after,
.rating-controls .pages.separator.right .last:before {
  content: "...";
  position: absolute;
  min-width: 26px;
}
.rating-controls .pages.separator.left .first {
  margin-right: 20px;
}
.rating-controls .pages.separator.left .first:after {
  left: 100%;
  margin-left: -4px;
}
.rating-controls .pages.separator.right .last {
  margin-left: 20px;
}
.rating-controls .pages.separator.right .last:before {
  right: 100%;
  margin-right: -4px;
}
.rating-controls .pages .page {
  min-width: 26px;
  margin: 0 -2px;
  padding: 7px 6px;
  font-family: inherit;
  text-align: center;
  text-decoration: none;
  background: transparent;
  border: none;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
}
.rating-controls .pages .page:hover,
.rating-controls .pages .page.selected {
  background: #c9c7c8;
  background: -webkit-linear-gradient(top, #c9c7c8 0%, #dddbdc 100%);
  background: -moz-linear-gradient(top, #c9c7c8 0%, #dddbdc 100%);
  background: -ms-linear-gradient(top, #c9c7c8 0%, #dddbdc 100%);
  background: -o-linear-gradient(top, #c9c7c8 0%, #dddbdc 100%);
  background: linear-gradient(to bottom, #c9c7c8 0%, #dddbdc 100%);
}
.rating-controls .pages .page.selected {
  font-weight: bold;
  cursor: default;
}
.rating-controls .selectmenu + span {
  float: none !important;
}
.rating-controls .ui-selectmenu {
  float: none;
  margin-left: 5px;
}
#product-ratings-tooltip {
  position: absolute;
  right: 0;
  top: 100%;
  z-index: 5;
  width: 684px;
  font-weight: normal;
  color: #2A2C2C;
  background-color: #EBEBEB;
  -webkit-box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.3);
  -moz-box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.3);
  box-shadow: 0 -3px 10px rgba(0, 0, 0, 0.3);
}
#product-ratings-tooltip .col.left:after {
  content: "\0020";
  position: absolute;
  left: 55%;
  top: 0;
  width: 45%;
  height: 100%;
  background: #DEDEDE;
}
#product-ratings-tooltip .col.right {
  position: relative;
  z-index: 5;
}
#product-ratings-tooltip .col.right:after {
  content: "\0020";
  position: absolute;
  left: 50%;
  top: 0;
  width: 0;
  height: 0;
  margin-left: -7px;
  margin-top: -8px;
  border-bottom: 8px solid #DEDEDE;
  border-left: 7px solid transparent;
  border-right: 7px solid transparent;
}
#product-ratings-tooltip .col.right h3,
#product-ratings-tooltip .col.right .tooltip-title-heading {
  margin: 0 auto 30px;
  font-size: 1.4em;
  text-align: center;
  font-weight: bold;
}
#product-ratings-tooltip .text-btn {
  float: left;
  padding-left: 0;
  padding-right: 0;
}
#product-ratings-tooltip .text-btn[type=reset] {
  font-weight: bold;
  text-decoration: underline;
}
#product-ratings-tooltip .text-btn + .text-btn {
  float: right;
}
#product-reviews-summary-ct {
  color: #A9A9AB;
  background: black url("/_ui/img/ProductBrowserBlock/product-desc-bg.jpg") -90px 0 no-repeat;
}
#product-reviews-summary-ct h3,
#product-reviews-summary-ct .summary-title-heading {
  margin: 0 0 10px;
  font-size: 1.3em;
  color: white;
  font-weight: bold;
}
#product-reviews-summary-ct p {
  margin: 0 0 20px;
}
#product-reviews-summary-ct .col.left:before {
  content: "\0020";
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  width: 100%;
  height: 50px;
  background: url("/_ui/img/ratings/grad-top.png") 0 0 repeat-x;
  opacity: .25;
  pointer-events: none;
}
#product-reviews-summary-ct .col.left:after {
  content: "\0020";
  position: absolute;
  left: 55%;
  top: 0;
  width: 100px;
  height: 100%;
  margin-left: -100px;
  background: url("/_ui/img/ratings/grad-sep.png") 0 0 repeat-y;
  opacity: .75;
  pointer-events: none;
}
.product-rating-spread {
  display: table;
  width: 100%;
  margin-bottom: 30px;
  font-size: 1.2em;
  font-weight: bold;
}
.product-rating-spread .row {
  display: table-row;
}
.product-rating-spread .cell {
  display: table-cell;
  padding: 0 5px 1px;
  vertical-align: middle;
}
.product-rating-spread .star {
  width: 22.5%;
  text-align: right;
}
.product-rating-spread .star:after {
  content: "\0020";
  display: inline-block;
  width: 10px;
  height: 10px;
  margin-left: 1px;
  background: url("/_ui/img/ratings/star.png") 0 0 no-repeat;
}
.product-rating-spread .count {
  width: 22.5%;
}
.product-rating-spread .bar-ct {
  width: 55%;
}
.product-rating-spread .bar-ct .bar {
  overflow: hidden;
  display: block;
  height: 5px;
  background: #555;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
}
.product-rating-spread .bar-ct .fill {
  position: relative;
  z-index: 1;
  display: block;
  height: 5px;
  background: #CC9D49;
  -webkit-border-radius: 5px;
  -moz-border-radius: 5px;
  border-radius: 5px;
  -webkit-transition: width 500ms;
  -moz-transition: width 500ms;
  -ms-transition: width 500ms;
  -o-transition: width 500ms;
  transition: width 500ms;
}
.positive .product-rating-spread .star:after {
  background-position: 0 -40px;
}
.positive .product-rating-spread .bar-ct .bar {
  background-color: #B6B7B9;
}
.product-reviews-recommendation {
  margin: 0 20px;
  text-align: center;
}
#product-reviews-summary-ct .product-reviews-recommendation strong {
  color: white;
}
.product-reviews-recommendation .value {
  font-size: 1.5em;
}
.product-reviews-recommendation .value sup {
  top: -0.6em;
  font-size: .5em;
}
.positive .product-reviews-recommendation strong {
  color: inherit;
}
#product-reviews {
  background: #FBFBFB;
}
.product-review-list .helpful {
  padding: 10px 20px;
  background: #F6F6F6;
}
.product-review-list .helpful input {
  position: absolute;
  left: -9999px;
}
.product-review-list .helpful label {
  color: #7C7C7C;
  cursor: pointer;
}
.product-review-list .helpful label:after {
  content: attr(data-confirm);
  display: inline-block;
  margin-left: 10px;
  padding: 6px 12px 4px;
  font-size: 11px;
  font-weight: bold;
  color: #2A2C2C;
  border: 1px solid white;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  background: #e6e6e8;
  background: -webkit-linear-gradient(top, #e6e6e8 0%, #dcdcde 50%, #cfcfd1 50%, #c3c4c9 100%);
  background: -moz-linear-gradient(top, #e6e6e8 0%, #dcdcde 50%, #cfcfd1 50%, #c3c4c9 100%);
  background: -ms-linear-gradient(top, #e6e6e8 0%, #dcdcde 50%, #cfcfd1 50%, #c3c4c9 100%);
  background: -o-linear-gradient(top, #e6e6e8 0%, #dcdcde 50%, #cfcfd1 50%, #c3c4c9 100%);
  background: linear-gradient(to bottom, #e6e6e8 0%, #dcdcde 50%, #cfcfd1 50%, #c3c4c9 100%);
  -webkit-box-shadow: 0 0 3px rgba(0, 0, 0, .3) inset, 0 1px 2px 0 rgba(0, 0, 0, .2);
  -moz-box-shadow: 0 0 3px rgba(0, 0, 0, .3) inset, 0 1px 2px 0 rgba(0, 0, 0, .2);
  box-shadow: 0 0 3px rgba(0, 0, 0, .3) inset, 0 1px 2px 0 rgba(0, 0, 0, .2);
}
.product-review-list .helpful input.checked + label,
.product-review-list .helpful input.disabled + label {
  cursor: default;
}
.product-review-list .helpful input.checked + label:after {
  color: white;
  background: #CC9D49;
  background: -webkit-linear-gradient(top, #CC9D49 0%, #c49237 50%, #b18331 50%, #9d742c 100%);
  background: -moz-linear-gradient(top, #CC9D49 0%, #c49237 50%, #b18331 50%, #9d742c 100%);
  background: -ms-linear-gradient(top, #CC9D49 0%, #c49237 50%, #b18331 50%, #9d742c 100%);
  background: -o-linear-gradient(top, #CC9D49 0%, #c49237 50%, #b18331 50%, #9d742c 100%);
  background: linear-gradient(to bottom, #CC9D49 0%, #c49237 50%, #b18331 50%, #9d742c 100%);
}
.product-review-list .helpful .counter {
  position: relative;
  z-index: 5;
  display: inline-block;
  margin-left: -2px;
  padding: 8px 12px 6px;
  background: white;
  border: 1px solid #DEDEE0;
}
.product-review-list .helpful .counter:before,
.product-review-list .helpful .counter:after {
  content: "\0020";
  position: absolute;
  left: -9px;
  top: 50%;
  width: 0;
  height: 0;
  margin-top: -6px;
  border-right: 9px solid #DEDEE0;
  border-top: 6px solid transparent;
  border-bottom: 6px solid transparent;
}
.product-review-list .helpful .counter:after {
  margin-left: 1px;
  border-right-color: white;
}
.product-review-list .reply {
  margin: -10px 0 30px 80px;
  padding: 20px 0 0;
  border-top: 1px solid #DEDEE0;
}
.product-review-list .reply p {
  margin-bottom: 0;
}
.product-review-list .reply .info {
  margin-bottom: 10px;
}
.product-review-list .reply .info .author:before {
  content: "\0020";
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px -5px 0;
  vertical-align: baseline;
  background: url("/_ui/img/ratings/nespresso-icon.png") 0 0 no-repeat;
}
#product-ratings-tooltip .product-review-list {
  padding: 0 0 10px;
  background-color: transparent;
}
#product-ratings-tooltip .product-review-list li {
  padding: 0 0 10px;
}
#product-ratings-tooltip .product-review-list li + li {
  padding-top: 10px;
}
.reviews-loading {
  position: relative;
}
.reviews-loading:after {
  content: "\0020";
  position: absolute;
  left: 50%;
  top: 100px;
  width: 50px;
  height: 50px;
  margin: -25px 0 0 -25px;
  background: url("/_ui/img/ajax-loader.gif") 50% 50% no-repeat;
}
.reviews-loading .product-review-list {
  opacity: .1;
}
#product-rating-error {
  position: relative;
  padding: 40px;
  text-align: center;
  color: white;
  background: black url("/_ui/img/ProductBrowserBlock/product-desc-bg.jpg") 50% 0 no-repeat;
}
#product-rating-error h2,
#product-rating-error .heading {
  background: transparent url("/_ui/img/ratings/title-sep.png") 50% 100% no-repeat;
  margin: 0 0 25px;
  padding: 0 20% 25px;
  line-height: 1.5;
  font-weight: bold;
  font-size: 2em;
}
#product-rating-error p {
  margin: 0 0 40px;
  padding: 0 20%;
}
#product-rating-error .phone {
  display: block;
  font-weight: bold;
  margin: 20px 0 0;
}
#product-rating-error .close {
  position: absolute;
  right: 20px;
  top: 20px;
  width: 19px;
  height: 19px;
  background: transparent url("/_ui/img/notification-close.png") 0 0 no-repeat;
  border: none;
}
