/****************************
-- fake-selects --
****************************/
.fake-select {
  display: inline-block;
  position: relative;
  z-index: 1;
}

.fake-select .cta {
  border: 1px solid #ececec;
  border-radius: 17px;
  color: #999;
  display: block;
  font-size: 1.5rem;
  padding: 10px 30px 10px 17px;
  position: relative;
}

.fake-select .cta:hover {
  color: #662d80;
  text-decoration: none;
}

.fake-select .cta:after {
  color: #662d80;
  content: 'l';
  font-family: ngicons;
  font-size: 5px;
  margin-top: -2px;
  position: absolute;
  right: 15px;
  top: 50%;
  transition: all 200ms ease;
}

.fake-select .cta:hover:after {
  margin-top: 0;
}

.fake-select.active .cta:after {
  content: 'u';
}

.fake-select.active .cta:hover:after {
  margin-top: -4px;
}

.fake-select .drawer {
  background: #fff;
  border: 1px solid #e1e1e1;
  box-shadow: 0 0 6px -1px rgba(0,0,0,0.1);
  display: none;
  left: 0;
  margin-top: 4px;
  padding: 15px 17px;
  position: absolute;
  right: 0;
  top: 100%;
}

.fake-select .drawer ul {
  margin: 0;
  padding: 0;
}

.fake-select .drawer li {
  margin-top: 13px;
}

.fake-select .drawer li:first-child {
  margin: 0;
}

.fake-select .drawer a {
  color: #808080;
  font-size: 1.5rem;
  line-height: 1.25;
}

.fake-select .drawer a.active,
.fake-select .drawer a:hover {
  color: #662D80;
  text-decoration: none;
}

/****************************
-- Highlights --
****************************/
.wrapper > .highlight {
  margin: 0 -5.5556%;
  padding: 0 5.5556%;
}

.highlight.t1 {
  background-color: #662d80;
  padding-bottom: 15px;
  padding-top: 15px;
}

.highlight.t1 p a {
  text-decoration: underline;
}

/* attention */
.highlight .attention {
  padding-left: 28px;
  position: relative;
}

.highlight .attention:before {
  color: #fff;
  content: '!';
  font-size: 15px;
  font-family: ngicons;
  left: 0;
  line-height: 1.5;
  position: absolute;
  top: 0;
}

/****************************
-- Pager - Simple Pagination --
****************************/
.pager.simple-pagination {
  text-align: center;
}

.pager.simple-pagination ul {
  display: inline-block;
  margin: 0 -5px;
}

.pager.simple-pagination li {
  float: left;
  padding: 0 5px;
}

.pager.simple-pagination a,
.pager.simple-pagination span {
  display: block;
  color: #808080;
  font-size: 1.5rem;
  height: 20px;
  line-height: 20px;
  text-align: center;
  width: 20px;
}

.pager.simple-pagination a:hover {
  color: #613080;
  text-decoration: none;
}

.pager.simple-pagination .active span {
  background-color: #613080;
  border-radius: 100%;
  color: #fff;
  cursor: default;
  font-weight: 700;
}

.pager.simple-pagination .prev,
.pager.simple-pagination .next {
  color: transparent;
  font: 0/0 a;
}

.pager.simple-pagination .active .prev,
.pager.simple-pagination .active .next {
  background-color: transparent;
}

.pager.simple-pagination .prev:after,
.pager.simple-pagination .next:after {
  content: '';
  color: #808080;
  display: inline-block;
  font-family: ngicons;
  font-size: 1.2rem;
  line-height: 20px;
  text-align: center;
  width: 20px;
}

.pager.simple-pagination .prev:after {
  content: '<';
}

.pager.simple-pagination .next:after {
  content: '>';
}

.pager.simple-pagination .prev:hover:after,
.pager.simple-pagination .next:hover:after {
  color: #613080;
}

.pager.simple-pagination .active .prev:after,
.pager.simple-pagination .active .next:after {
  color: #adadad;
  opacity: 0.5;
}

/****************************
-- Media Queries --
****************************/
@media screen and (min-width: 60em) {
  /*---------------------
  Highlights
  ---------------------*/
  .wrapper > .highlight {
    margin: 0;
    padding-left: 25px;
    padding-right: 25px;
  }
}