/* -----------------------------------------------------
 * Layout settings
 * ----------------------------------------------------- */
/* -----------------------------------------------------
 * App-wide specs: colors, dimensions, etc.
 * Controller- and page-specific variables should be declared in
 * the controller-specific SASS stylesheet.
 * ----------------------------------------------------- */
/*
 * Utopia-specific SASS variables and mixins.
 */
/* Page layouts
 */
/* -----------------------------------------------------
 * Grids
 *
 * Programmatically generate the widths of elements that
 * belong in the grid.
 *
 * Usage:
 *
 * .container
 *   @include row
 *   .primary
 *     @include col(8)
 *     @include internal-margin
 *   .secondary
 *     @include col(4)
 *     @include last
 * .container
 *   @include row
 *   .tertiary
 *     @prepend(4)
 *     @include(4)
 *     @append(4)
 *
 * Inspired by:
 *   http://bjorkoy.com/2010/05/css-grids-with-sass/
 * ----------------------------------------------------- */
/* math magic */
/* create row div */
/* create a column div */
/* make an element span n columns */
/* the first and last columns in a row needs these */
/* prepend n blank columns */
/* append n blank columns */
/*
 * Book display styles.
 */
.metadata-content .grid-construct {
  padding-top: 40px;
  border-top: 1px solid #eeeeee;
  font-family: proxima-nova, sans-serif;
}
.metadata-content .grid-construct p {
  color: #555555;
  word-break: break-word;
}
.metadata-content .grid-construct h4, .metadata-content .grid-construct h5, .metadata-content .grid-construct .section-heading {
  font-family: proxima-nova, sans-serif;
  font-weight: 600;
  letter-spacing: 0.05em;
  font-size: 20px;
  text-transform: none;
  color: #333333;
}
@media (max-width: 320px) {
  .metadata-content .grid-construct {
    padding-left: 0;
    padding-right: 0;
    padding-top: 15px;
  }
}
.metadata-content .grid__column--left, .metadata-content .copy__wrapper {
  padding: 0 85px;
}
@media (max-width: 980px) {
  .metadata-content .grid__column--left, .metadata-content .copy__wrapper {
    padding: 0 25px;
    text-align: left;
  }
}
@media (max-width: 850px) {
  .metadata-content .grid__column--left, .metadata-content .copy__wrapper {
    padding: 0 5%;
    text-align: left;
  }
}
@media (max-width: 640px) {
  .metadata-content .grid__column--left, .metadata-content .copy__wrapper {
    width: 100%;
  }
}

.radio-custom:after {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  top: -2px;
  left: -2px;
  position: relative;
  background-color: white;
  content: "";
  display: inline-block;
  visibility: visible;
  border: 2px solid #d1d3d1;
}

.radio-custom:checked:after {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  padding: 3px;
  top: -28px;
  left: 3px;
  position: relative;
  background-color: #555555;
  content: "";
  display: inline-block;
  visibility: visible;
  border: 1px solid #d1d3d1;
}

.radio-custom:checked:before {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  padding: 2px;
  top: -2px;
  left: -3px;
  position: relative;
  background-color: white;
  content: "";
  display: inline-block;
  visibility: visible;
  border: 2px solid #d1d3d1;
}

.author-bookshelf .book-list__book-details {
  margin-left: 0;
}
.author-bookshelf .book-list__avatar_link, .author-bookshelf .book-list__book-avatar, .author-bookshelf .staff_badge {
  display: none;
}
.author-bookshelf .book-list__details-link .book-list__book-author, .author-bookshelf .book-list__details-link .book-list__book-title {
  padding-left: 0;
}

.staff_badge {
  display: none;
}

.book-list__btns {
  margin: 0 auto 15px;
  padding-top: 0;
}

.book-list__btn--cta {
  margin: 0 auto;
}

.author-bookshelf {
  margin-bottom: 10px;
}

.see-more {
  text-align: center;
  content: "";
  position: relative;
  width: 100%;
  height: 30px;
  right: 0;
  cursor: pointer;
}
.see-more .see-more-content {
  background-image: -webkit-gradient(linear, to top, to bottom, color-stop(0%, #ffffff), color-stop(100%, rgba(255, 255, 255, 0)));
  background-image: -webkit-linear-gradient(to top, #ffffff, rgba(255, 255, 255, 0));
  background-image: -moz-linear-gradient(to top, #ffffff, rgba(255, 255, 255, 0));
  background-image: -o-linear-gradient(to top, #ffffff, rgba(255, 255, 255, 0));
  background-image: linear-gradient(to top, #ffffff, rgba(255, 255, 255, 0));
  width: 100%;
  position: absolute;
  height: 70px;
  bottom: 30px;
}
.see-more:hover {
  cursor: pointer;
}
.see-more:hover .see-more-link {
  color: #00c0be;
}
.see-more:hover .see-more-link:after {
  border-color: #00c0be;
}
.see-more .see-more-link {
  font-size: 14px;
  color: black;
  text-transform: uppercase;
  min-width: 95px;
  display: initial;
  text-align: center;
  margin: 0 auto;
  margin-top: 10px;
  font-family: proxima-nova, sans-serif;
  font-weight: 600;
  letter-spacing: 1px;
  cursor: pointer;
  top: 85px;
  position: relative;
  padding-right: 20px;
}
.see-more .see-more-link:hover {
  cursor: pointer;
}
.see-more .see-more-link:after {
  content: "";
  background-color: white;
  border-bottom: 1px solid black;
  border-right: 1px solid black;
  display: block;
  right: 0;
  position: absolute;
  -moz-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  -webkit-transform: rotate(45deg);
  transform: rotate(45deg);
  height: 10px;
  width: 10px;
  top: -1px;
}

.breadcrumb {
  height: 0;
}
