/*------------------------------------*\
  #BREAKPOINTS
\*------------------------------------*/
/**
 * Responsive Mixin
 * This mixin is designed for a _cleaner_ first approach
 * This means that css isn't overridden but rather replaced for
 * different viewport widths; making it easier to inspect/debug css
 *
 * Usage:
 * @include media-query(exclude-medium)    { ... }
 * @include media-query(medium-up-to-site) 	   { ... }
 * ... etc
 */
/**
 * [Adds styles to allow an element's height scale proportionatelly]
 * @param  {[Number]} $width
 * @param  {[Number]} $height
 */
/**
 * [Calculates the percentage aspect ratio (what % height is compared to the width)]
 * @param  {[Number]} $width
 * @param  {[Number]} $height
 * @return {[Number(%)]}
 */
/**
 * *****REMEMBER TO USE MARGIN OR PADDING AND NOT TOP/BOTTOM******
 * [Calculates the center of an element in relation to a provided width and height.
 * Useful to place an absolute element at the center of another when
 * the positioned element cannot be the target's child ]
 * @param  {[Number]} $width
 * @param  {[Number]} $height
 * @return {[Number(%)]}
 */
/**
 * [In the  awful case you can't use Flexbox to vertically align something]
 * @param  {[type]} $transform:       false         [Use transforms to align instead of the absolute trick]
 * @param  {[type]} $pos:             absolute      [position type]
 * @param  {[type]} $posAdj:          0             [position adjustment. If $transform is true, this value only affects the 'top' property.]
 * @param  {[type]} $alignHorizontal: false         [Includes horizontal alignment]
 */
/**
 * Generate Enumerated Class
 * Iterates from 0 to the specified length and generates classes that set the specified property
 * @param  {[String]} $classname:       required      [Required: Specify the class name]
 * @param  {[String]} $property:        $classname    [Optional: Specify the enumerated property (if it's different from the name of the class)]
 * @param  {[Number]} $length:          10            [Optional: Specify the end of the loop]
 * @param  {[String]} $units:           null          [Optional: specify units to append to the enumerated property]
 */
/**
 * [Strip the pesky units from values]
 * @param  {[Number]} $value
 */
/**
 * [Fluid Type]
 */
.pdp-main__Descriptions {
  width: 100%;
  font-size: 1rem;
  line-height: 1.5rem;
  padding-top: 1.875rem;
  padding-bottom: 0.625rem;
  font-weight: 450;
  text-align: left; }

.pdp-main__Terms-Conditions {
  font-size: 1rem;
  text-decoration: underline;
  font-weight: 450;
  padding-bottom: 0.625rem;
  text-align: left; }

@media (max-width: 47.9375rem) {
  .pdp-main__Descriptions {
    width: 100%;
    font-size: 14px;
    line-height: 1.571rem;
    padding-bottom: 0.313rem;
    padding-top: 1.25rem;
    text-align: left; }
  .pdp-main__Terms-Conditions {
    font-size: 14px;
    line-height: 1.714rem;
    border-bottom: 1px solid #727171;
    padding-bottom: 1.875rem;
    text-align: left; } }

.pdp .product-gallery__container button.slick-arrow.slick-next:after {
  content: "";
  width: 24px;
  height: 24px;
  background: url(../images/white.svg) no-repeat;
  top: 16px;
  right: 15px;
  left: 10px;
  position: absolute;
  display: inline-block; }

.pdp .product-gallery__container button.slick-arrow.slick-prev:after {
  content: "";
  width: 24px;
  height: 24px;
  background: url(../images/white.svg) no-repeat;
  top: 16px;
  right: 0;
  left: 15px;
  -webkit-transform: rotate(180deg);
  transform: rotate(180deg);
  position: absolute;
  display: inline-block; }


/*# sourceMappingURL=pdpMain.css.map*/