/*
  This file contains all the base styling for sass files. Pulling in all the 
  necessary variables and mixins but does not actually output anything so is
  safe to use as a base for other css files without adding excessive weight
*/
/*********************
BREAKPOINTS
*********************/
/*
  screen-tiny: 321 - 320
  screen-xs: 480px - 767px
  screen-sm: 768px - 969px
  screen-md: 970px - 1199px
  screen-lg: 1200px
*/
/*********************
Placeholder
*********************/
/*********************
VENDOR PREFIX
*********************/
.xrx_feature_read_more_bar {
  background-color: #000;
  text-align: center;
  position: absolute;
  top: 1940px;
  left: 0;
  right: 0;
  padding: 8px;
  display: none;
}

.xrx_feature_read_more_bar button {
  background-color: #000;
  border: 1px solid #fff;
  color: #fff;
  font-family: "Roboto Condensed",sans-serif;
  font-size: 16px;
  padding: 10px 12px;
}

.xrx_feature_read_more_bar button:active,.xrx_feature_read_more_bar button:hover {
  color: #000;
  background-color: #fff;
  outline: none;
}

/*
    Min:  - 
    Max: screen-sm - 767px
  */
@media screen and (max-width:767px) {
  .xrx_feature_read_more_enabled .field-body {
    max-height: 2000px;
    overflow: hidden;
    transition: max-height 500ms ease-in-out,margin-bottom 500ms ease-in-out;
    position: relative;
    margin-bottom: 30px;
  }
  .xrx_feature_read_more_enabled .field-body .xrx_feature_read_more_bar {
    display: block;
  }
  .xrx_feature_read_more_enabled.xrx_feature_read_more_active .field-body {
    max-height: 99999999px;
    margin-bottom: 0px;
  }
  .xrx_feature_read_more_enabled.xrx_feature_read_more_active .field-body .xrx_feature_read_more_bar {
    display: none;
  }
}
