/* alignment */
.page-header .header-nav .nav-primary {
  padding-left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.page-header .header-nav .nav-primary::after {
  display: none;
}
.page-header .header-nav .nav-primary li.level0 {
  padding: 0;
  flex: 1 1 auto;
}
.page-header .header-nav .nav-primary li.level0 a.level0 {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* icon last item */
.page-header .header-nav .nav-primary li.level0:last-child a.level0 img {
  filter: grayscale(1) brightness(5);
}

/* ebooks */
.prod-actions {
  display: grid;
  width: 100%;
  grid-template: 1fr / 1fr 1fr;
  grid-gap: 2rem;
  padding-top: 1rem;
}
body.catalog-product-view .product-view .prod-actions .price-info,
body.catalog-product-view .product-view .prod-actions .block.block-shipping-estimate,
body.catalog-product-view .product-view .prod-actions .add-to-cart-wrapper {
  margin: 0;
  padding: 0;
  border: 0;
  float: none;
  width: 100% !important;
  display: table;
}
body.catalog-product-view .product-view .prod-actions .block.block-shipping-estimate {
  padding: .5rem;
}
.prod-actions__title {
  margin-bottom: 1rem;
  font-size: 1.25rem;
  color: #004782;
  font-weight: 700;
}
.prod-actions__ebook-container {
  padding: 1rem;
  background: #eee;
}
.prod-actions__ebook-container p {
  font-size: 12px;
  color: #666;
  margin-bottom: 1rem;
}
.prod-actions__ebook-list {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template: 1fr / 1fr 1fr;
  grid-gap: 1rem;
}
.prod-actions__ebook-list li {
  margin: 0;
  padding: 0;
  list-style: none;
}
.prod-actions__ebook-list li a {
  display: block;
  transition: filter .2s ease-out, opacity .2s ease-out;
  filter: grayscale(1);
  opacity: .75;
}
.prod-actions__ebook-list li a:hover {
  filter: grayscale(0);
  opacity: 1;
}
.prod-actions__ebook-list li a img {
  display: block;
  height: 2.5rem;
  width: auto;
  border-radius: .25rem;
}

.catalog-product-view .product-view .product-essential .product-info .subtitle {
  padding: 5px 0;
  font-size: 20px;
  font-weight: normal;
  color: #004782;
}

.tooltip {
  /*position: absolute;*/
  display: inline-block;
  vertical-align: bottom;
  text-align: center;
  /*margin-left: -70px;*/
  /*margin-top: -28px;*/
  height: 20px;
  width: 20px;
  line-height: 20px;
  font-size: 16px;
  cursor: help;
  background: #004782;
  color: #ffffff;
  border-radius: 50% 50% 50% 50%;
}

.tooltip p {
  transition: visibility 0s, opacity 0.2s linear;
  visibility: hidden;
  opacity: 0;
  transition: visibility 0s, opacity 0.2s linear;
  position: relative;
  text-align: left;
  bottom: 30px;
  left: -355px;
  font-size: 12px;
  padding: 10px;
  color: #ffffff;
  background: #004782;
  width: 350px;
  word-break: break-all;
}

.tooltip p:after {
  top: 6%;
  left: 100%;
  border: solid transparent;
  content: " ";
  height: 0;
  width: 0;
  position: absolute;
  pointer-events: none;
  border-color: rgba(136, 183, 213, 0);
  border-top-color: #004782;
  border-width: 8px;
  margin-left: -8px;
}

.tooltip:hover > p {
  transition: visibility 0s, opacity 0.2s linear;
  visibility: visible;
  opacity: 1;
}