/**
 * user/assets/styles/main.css
 *
 * @author Pablo Rubio
 * @version 1.0
 */

/*
 * Box model
 */

*,
*:after,
*:before {
  box-sizing: border-box;
}

/*
 * Selection
 */

::selection {
  background: rgba(247, 142, 30, 0.4);
  color: #58595b;
  text-shadow: none;
  padding: 5px;
}

::-moz-selection {
  background: rgba(247, 142, 30, 0.4);
  color: #58595b;
  text-shadow: none;
  padding: 5px;
}

/*
 * Utils
 */

.clear-after:after {
  display: block;
  content: '';
  clear: both;
  float: none;
}

button,
button:focus {
  outline: none;
}

/*
 * Slick
 */

.js-slick,
.js-slick .slick-list,
.js-slick .slick-track,
.js-slick .slick-slide {
  height: 100%;
}

.js-slick .item {
  height: 100%;
  width: 100%;
  background-position: center;
  background-size: cover;
}

.js-slick .item .background-image {
  width: 100%;
  height: 100%;
  background-position: center;
  background-size: cover;
}

.js-slick .slick-arrow {
  border: none;
  font-size: 0em;
  line-height: 0em;
  display: block;
  background: transparent;
  position: absolute;
  top: 50%;
  transform: translate(0%, -50%);

  z-index: 700;
}

.js-slick .slick-prev {
  left: 20px;
}

.js-slick .slick-next {
  right: 20px;
}

.js-slick .slick-arrow:before {
  display: block;
  width: 40px;
  height: 40px;
  font-family: dashicons;
  font-size: 40px;
  line-height: 40px;
  color: rgba(255,255,255, 1);
  text-shadow: 0 1px 3px rgba(0, 0, 0, 0.03), 0 1px 2px rgba(0, 0, 0, 0.06);
}

.js-slick .slick-prev:before {
  content: '\f341';
}

.js-slick .slick-next:before {
  content: '\f345';
}

.js-slick .slick-dots {
  position: absolute;
  bottom: 20px;
  width: 100%;
  display: block;
  padding: 0px;
  margin: 0px;
  list-style: none;
  text-align: center;

  transition: bottom 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.js-slick .slick-dots li {
  display: inline-block;
  margin: 6px;
  padding: 0px;
  font-size: 0em;
  line-height: 0em;
  transition: opacity 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.js-slick .slick-dots li button {
  width: 12px;
  height: 12px;
  margin: 0px;
  padding: 0px;
  display: block;
  border-radius: 50%;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.03), 0 1px 2px rgba(0, 0, 0, 0.06);
  background-color: rgba(255,255,255, 1);
  border: solid 1px rgba(247, 142, 30, 0.3);
  transition: width 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
    height 0.3s cubic-bezier(0.25, 0.8, 0.25, 1),
    background-color 0.3s cubic-bezier(0.25, 0.8, 0.25, 1);
}
.js-slick .slick-dots li.slick-active button {
  width: 20px;
  height: 20px;
  background-color: rgba(255,255,255, 1);
}

/*
 * Error 404
 */

#error-404 {
  width: 100%;
}

#error-404 .inner .the-content {
  padding: 80px;
  text-align: center;
  font-size: 1.3em;
  line-height: 1.2em;
  max-width: 500px;
  margin: 0px auto;
}

#error-404 .inner .the-content h2 {
  font-size: 6em;
  line-height: 1.2em;
  padding: 0px;
  margin: 0px;
}

#error-404 .inner .the-content h4 {
  margin: 0px;
  padding: 0px;
  font-size: 1.5em;
  line-height: 1.2em;
}

#error-404 .inner .the-content p {
  margin: 0px;
  padding: 80px 0px 80px 0px;
  font-size: 1em;
  line-height: 1.2em;
}

#error-404 .inner .the-content p a {
  color: #f78e1e;
}
