/* settings styles
*/
/* Eric Meyer's CSS Reset
   http://meyerweb.com/eric/tools/css/reset/ 
   v2.0 | 20110126
   License: none (public domain)
   This is a Sass partial
*/
@import url(https://fonts.googleapis.com/css?family=Open+Sans:300,400,600,700,800);
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

/* Global layout styles
*/
body {
  background-color: black;
  color: #cccccc;
  font-size: 16px;
  font-weight: 100;
  line-height: 1.4;
  background-image: url(/static/images/bg.png);
  background-position: 50% 50%;
  background-size: 2200px auto;
}

a {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  text-decoration: none;
  color: #c7b9dc;
}
a:hover {
  color: #f2edf9;
}

p {
  margin-bottom: 30px;
}

ul {
  margin-bottom: 30px;
  list-style: disc outside none;
  margin-left: 22px;
}

.page-content {
  position: relative;
  padding-top: 60px;
  z-index: 2;
}
.page-content:after {
  content: '';
  clear: both;
  display: table;
}

.page-outer {
  width: 100%;
}

.page-inner {
  margin: 0 auto;
  max-width: 1180px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 20px;
}

.page-row:after {
  content: '';
  clear: both;
  display: table;
}

.page-row__col50 {
  float: left;
  width: 50%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 20px;
}
.page-row__col50:first-child {
  padding-left: 0;
}
.page-row__col50:last-child {
  padding-right: 0;
}
.page-row__col50.-newsletter {
  border-right: 1px solid #6e5e87;
  padding-right: 60px;
}
@media (max-width: 850px) {
  .page-row__col50 {
    float: none;
    width: 100%;
    padding: 0;
  }
  .page-row__col50.-newsletter {
    border-right: none;
    padding-right: 0;
  }
}

.carousel-container {
  margin: 60px 0;
}

body {
  font-family: 'Open Sans', sans-serif;
}

/* navigation styles
*/
.button {
  font-size: 14px;
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  border: 1px solid #6e5c86;
  display: inline-block;
  padding: 8px 14px;
  background-color: #6e5c86;
  color: #ffffff;
  cursor: pointer;
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #6e5e87;
  display: none;
  z-index: 10;
}

.nav-inner {
  position: relative;
  padding: 10px 20px;
  margin: 0 auto;
  max-width: 1180px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  min-height: 60px;
}

.nav-logo__small {
  position: absolute;
  left: 20px;
  top: 14px;
}
.nav-logo__small img {
  width: 32px;
}
.nav-logo__small.-footer {
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
}
.nav-logo__small.-footer img {
  width: 40px;
}

.nav-links {
  position: absolute;
  left: 60px;
  top: 18px;
}
.nav-links ul {
  margin-bottom: 0;
}
.nav-links li {
  display: inline-block;
  margin-left: 30px;
  font-size: 16px;
}
@media (max-width: 800px) {
  .nav-links li {
    display: block;
    text-align: right;
    padding: 5px 0;
    margin-left: 0px;
    font-size: 22px;
  }
}
.nav-links li a {
  color: #f2edf9;
}
@media (max-width: 800px) {
  .nav-links ul {
    margin: 0;
  }
}
@media (max-width: 800px) {
  .nav-links {
    display: none;
    top: 47px;
    right: 0;
    background-color: #6e5e87;
    padding: 0 20px 20px;
  }
}

.footer-nav-links {
  margin-left: 60px;
  padding: 50px 0;
}
@media (max-width: 600px) {
  .footer-nav-links {
    margin-left: 50px;
  }
}

.footer-copyright {
  display: inline-block;
}
@media (max-width: 600px) {
  .footer-copyright {
    display: block;
  }
}

.footer-link {
  display: inline-block;
  margin: 0 0 0 40px;
}
@media (max-width: 600px) {
  .footer-link {
    margin-left: 0;
    margin-right: 10px;
  }
}

.topnav-mobile__menu {
  display: none;
  position: absolute;
  right: 20px;
  top: 22px;
}
.topnav-mobile__menu .-open {
  display: block;
}
.topnav-mobile__menu .-close {
  display: none;
}
@media (max-width: 800px) {
  .topnav-mobile__menu {
    display: block;
  }
}

.footer-newsletter-signup {
  padding: 0 0 0 50px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}
.footer-newsletter-signup h3 {
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 10px;
}
.footer-newsletter-signup input {
  width: 210px;
  margin-right: 5px;
  font-size: 14px !important;
}
.footer-newsletter-signup input:disabled {
  opacity: 0.5;
}
@media (max-width: 850px) {
  .footer-newsletter-signup {
    padding: 0;
  }
}

.footer-newsletter-signup__input {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  display: inline-block;
  background-color: #707070;
  border: 1px solid #707070;
  padding: 8px 10px;
  font-size: 18px;
  color: #ffffff;
  width: 210px;
  margin-right: 5px;
  font-size: 14px !important;
  outline: none;
}
.footer-newsletter-signup__input::-webkit-input-placeholder {
  color: white;
  opacity: 0.5;
}
.footer-newsletter-signup__input:-ms-input-placeholder {
  color: white;
  opacity: 0.5;
}
.footer-newsletter-signup__input::-ms-input-placeholder {
  color: white;
  opacity: 0.5;
}
.footer-newsletter-signup__input::placeholder {
  color: white;
  opacity: 0.5;
}
.footer-newsletter-signup__input:focus, .footer-newsletter-signup__input:active {
  border: 1px solid white;
}

.form-success {
  display: none;
  font-size: 12px;
  line-height: 1.5;
  color: #bababa;
  padding-top: 20px;
}

.form-error {
  display: none;
  color: red;
  padding: 10px 0;
  font-size: 12px;
  line-height: 1.5;
}

/* home styles
*/
.hero-logo {
  position: absolute;
  top: 20px;
  left: 20px;
  width: 100px;
}

.home-hero {
  position: relative;
  min-height: 300px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 130px 20px 50px;
  line-height: 1.4;
}
.home-hero.-microsite {
  padding: 150px 20px 150px;
}
@media (max-width: 850px) {
  .home-hero {
    padding: 140px 20px 40px;
  }
}

.hero-header h1 {
  font-size: 70px;
  font-weight: 600;
  line-height: 1;
  color: #f2edf9;
}
@media (max-width: 850px) {
  .hero-header h1 {
    line-height: 1;
    margin-bottom: 20px;
  }
}
@media (max-width: 700px) {
  .hero-header h1 {
    font-size: 55px;
  }
}
@media (max-width: 500px) {
  .hero-header h1 {
    font-size: 47px;
  }
}
.hero-header .hero-subheader {
  font-size: 30px;
  margin-bottom: 60px;
  padding-top: 10px;
}
@media (max-width: 850px) {
  .hero-header .hero-subheader {
    margin-bottom: 30px;
  }
}

.hero-link {
  -webkit-transition: all 0.3s;
  -o-transition: all 0.3s;
  transition: all 0.3s;
  color: #cccccc;
}
.hero-link:hover {
  color: #c7b9dc;
}

.hero-header__h1 {
  margin-bottom: 40px;
}

.sub-header__h2 {
  font-size: 70px;
  font-weight: 400;
}
@media (max-width: 850px) {
  .sub-header__h2 {
    line-height: 1;
  }
}

.home-legend {
  border-top: 1px solid #6e5e87;
}
@media (max-width: 850px) {
  .home-legend {
    display: none;
  }
}

.home-legend__header {
  font-size: 24px;
  font-weight: 300;
  padding: 16px 0 10px;
}

.home-legend__row:after {
  content: '';
  clear: both;
  display: table;
}

.home-legend__col {
  position: relative;
  float: left;
  width: 33.3%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 20px 10px 20px 60px;
}
.home-legend__col img {
  position: absolute;
  left: 0;
  top: 50%;
  -webkit-transform: translateY(-50%);
  -ms-transform: translateY(-50%);
  transform: translateY(-50%);
  width: 45px;
}

.home-section__header {
  position: relative;
  margin: 0 0 0 380px;
  border-left: 1px solid #6e5e87;
  padding: 0 0 0 40px;
}
@media (max-width: 850px) {
  .home-section__header {
    margin: 0;
    padding: 0;
    border-top: 1px solid #6e5e87;
    border-left: none;
  }
}

.home-section__header--h2 {
  position: absolute;
  left: -370px;
  width: 330px;
  top: -2px;
  font-weight: 300;
  font-size: 40px;
  color: #c8badd;
  line-height: 1.2;
}
@media (max-width: 850px) {
  .home-section__header--h2 {
    position: relative;
    left: auto;
    width: auto;
    top: auto;
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
    padding: 20px 0;
  }
  .home-section__header--h2 br {
    display: none;
  }
}

.carousel-item {
  position: relative;
}

.carousel-item__inner {
  background-color: #f2f2f2;
  padding: 30px 20px;
  margin: 0 10px;
  color: #424242;
  min-height: 650px;
}
.carousel-item__inner strong {
  font-weight: bold !important;
}

.carousel-item__header {
  font-size: 24px;
  color: #6e5e87;
  min-height: 100px;
  padding-right: 50px;
  line-height: 1.3;
}
.carousel-item__header a {
  color: #6e5e87;
}

.carousel-legend {
  position: absolute;
  top: 15px;
  right: 24px;
  width: 36px;
}

.carousel-item__body {
  border-top: 1px solid #6e5e87;
  margin-top: 10px;
  padding-top: 20px;
}
.carousel-item__body p {
  margin-bottom: 22px;
}

.carousel-item__why {
  padding-top: 20px;
  min-height: 160px;
}

.carousel-item__image {
  position: absolute;
  bottom: -1px;
  right: 9px;
  width: 220px;
}

.section-carousel {
  margin-bottom: 150px;
}

/* gift styles
*/
.claim-gift__row {
  position: relative;
  padding-right: 130px;
  padding-bottom: 60px;
  margin-bottom: 40px;
  border-bottom: 1px solid #6e5e87;
}
.claim-gift__row:after {
  content: '';
  clear: both;
  display: table;
}
@media (max-width: 700px) {
  .claim-gift__row {
    padding-right: 0;
  }
}

.error-container {
  position: absolute;
  left: 0;
  bottom: 20px;
  color: red;
}
@media (max-width: 700px) {
  .error-container {
    bottom: 10px;
  }
}

.claim-gift__col1 {
  float: left;
  width: 40%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-right: 20px;
}
@media (max-width: 700px) {
  .claim-gift__col1 {
    float: none;
    width: 100%;
    padding-right: 0;
  }
}

.claim-gift__col2 {
  float: left;
  width: 60%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding-right: 20px;
}
@media (max-width: 700px) {
  .claim-gift__col2 {
    float: none;
    width: 100%;
    padding-right: 0;
  }
}

.claim-gift__button {
  -webkit-transition: all 0.25s;
  -o-transition: all 0.25s;
  transition: all 0.25s;
  position: absolute;
  top: 0;
  right: 0;
  display: block;
  text-align: center;
  width: 130px;
  color: white;
  padding: 16px 0;
  background-color: #6e5e87;
}
.claim-gift__button:hover {
  color: #6e5e87;
  background-color: white;
}
@media (max-width: 700px) {
  .claim-gift__button {
    position: relative;
    top: auto;
    right: auto;
  }
}

.claim-gift__input {
  padding: 16px 8px;
  font-size: 16px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  width: 100%;
  outline: none;
}
.claim-gift__input:active, .claim-gift__input:focus {
  outline: none;
  border: 2px solid #6e5e87;
}
@media (max-width: 700px) {
  .claim-gift__input {
    margin-bottom: 10px;
  }
}

.gift-row {
  margin-bottom: 60px;
}
.gift-row:after {
  content: '';
  clear: both;
  display: table;
}

.gift-item {
  position: relative;
  float: left;
  width: 33.3%;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  padding: 0 20px 20px 20px;
}
.gift-item:first-child {
  padding-left: 0;
}
.gift-item:last-child {
  padding-right: 0;
}
@media (max-width: 750px) {
  .gift-item {
    float: none;
    width: 100%;
    max-width: 500px;
    padding: 0 0 40px 0;
    margin: 0 auto;
    margin-bottom: 40px;
    border-bottom: 1px solid white;
  }
  .gift-item:last-child {
    border-bottom: none;
  }
}

.error-container {
  display: none;
}

#sectionGifts {
  display: none;
}

#giftType {
  font-weight: bold;
}

.gift-item__image {
  position: relative;
  display: block;
  height: 200px;
  width: 200px;
  border-radius: 50%;
  background-color: #58595b;
}
.gift-item__image img {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 80%;
}
.gift-item__image img.-go-climate {
  width: 50%;
}
.gift-item__image img.-surprise {
  width: 48%;
}

.gift-item__title {
  position: relative;
  font-size: 26px;
  margin-top: 20px;
}

.gift-item__description {
  padding: 20px 0 0;
}
.gift-item__description a {
  display: inline-block;
  text-decoration: underline;
}

.gift-item__button {
  -webkit-transition: all 0.25s;
  -o-transition: all 0.25s;
  transition: all 0.25s;
  display: block;
  text-align: center;
  width: 130px;
  text-decoration: none !important;
  padding: 16px 0;
  color: white;
  background-color: #6e5e87;
}
.gift-item__button:hover {
  color: #6e5e87;
  background-color: white;
}

.gift-claim {
  cursor: pointer;
}

/* modal styles
*/
.modal-thanks {
  position: absolute;
  color: white;
  background-color: #715e89;
  z-index: 300;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: none;
}

.modal-thanks__inner {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  width: 80%;
  max-width: 400px;
}
.modal-thanks__inner p {
  font-size: 22px;
}

.modal-thanks__header {
  font-size: 50px;
  font-weight: bold;
}

.modal-container {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 101;
  display: none;
}

.modal-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: black;
  opacity: 0.7;
}

.modal-contents {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  text-align: center;
  width: 90%;
  max-width: 600px;
  background-color: white;
  padding: 40px 30px 30px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  z-index: 200;
  color: #424242;
}

.modal-close {
  position: absolute;
  right: 10px;
  top: 10px;
  font-weight: bold;
  font-size: 20px;
  color: black;
}
.modal-close:hover {
  color: black;
}

.modal-ctas {
  padding: 30px 0 0 0;
  text-align: center;
}
.modal-ctas a {
  text-transform: uppercase;
  display: inline-block;
  padding: 8px 16px;
  color: #424242;
  border: 1px solid #424242;
  margin: 0 6px;
}
.modal-ctas a.-submit {
  color: white;
  background-color: #6e5e87;
}

#modalLoading, #modalSuccess, #modalFail {
  display: none;
}

.lds-heart {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
  -webkit-transform: rotate(45deg);
  -ms-transform: rotate(45deg);
  transform: rotate(45deg);
  -webkit-transform-origin: 40px 40px;
  -ms-transform-origin: 40px 40px;
  transform-origin: 40px 40px;
}

.lds-heart div {
  top: 32px;
  left: 32px;
  position: absolute;
  width: 32px;
  height: 32px;
  background: #424242;
  -webkit-animation: lds-heart 1.2s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
  animation: lds-heart 1.2s infinite cubic-bezier(0.215, 0.61, 0.355, 1);
}

.lds-heart div:after,
.lds-heart div:before {
  content: " ";
  position: absolute;
  display: block;
  width: 32px;
  height: 32px;
  background: #424242;
}

.lds-heart div:before {
  left: -24px;
  border-radius: 50% 0 0 50%;
}

.lds-heart div:after {
  top: -24px;
  border-radius: 50% 50% 0 0;
}

@-webkit-keyframes lds-heart {
  0% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
  5% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  39% {
    -webkit-transform: scale(0.85);
    transform: scale(0.85);
  }
  45% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  60% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
  100% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}

@keyframes lds-heart {
  0% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
  5% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  39% {
    -webkit-transform: scale(0.85);
    transform: scale(0.85);
  }
  45% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  60% {
    -webkit-transform: scale(0.95);
    transform: scale(0.95);
  }
  100% {
    -webkit-transform: scale(0.9);
    transform: scale(0.9);
  }
}
/* slick styles
*/
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  -webkit-touch-callout: none;
  -webkit-user-select: none;
  -ms-user-select: none;
  user-select: none;
  -ms-touch-action: pan-y;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}

.slick-list {
  position: relative;
  overflow: hidden;
  display: block;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}

.slick-slider .slick-track,
.slick-slider .slick-list {
  -webkit-transform: translate3d(0, 0, 0);
  -ms-transform: translate3d(0, 0, 0);
  transform: translate3d(0, 0, 0);
}

.slick-track {
  position: relative;
  left: 0;
  top: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before, .slick-track:after {
  content: "";
  display: table;
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}

.slick-slide {
  float: left;
  height: 100%;
  min-height: 1px;
  display: none;
}
[dir="rtl"] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}

.slick-arrow.slick-hidden {
  display: none;
}

/* Slider */
.slick-loading .slick-list {
  background: #fff url("./ajax-loader.gif") center center no-repeat;
}

/* Icons */
@font-face {
  font-family: "slick";
  src: url("./fonts/slick.eot");
  src: url("./fonts/slick.eot?#iefix") format("embedded-opentype"), url("./fonts/slick.woff") format("woff"), url("./fonts/slick.ttf") format("truetype"), url("./fonts/slick.svg#slick") format("svg");
  font-weight: normal;
  font-style: normal;
}
/* Arrows */
.slick-prev,
.slick-next {
  position: absolute;
  display: block;
  height: 40px;
  width: 40px;
  line-height: 0px;
  font-size: 0px;
  cursor: pointer;
  color: transparent;
  top: 50%;
  -webkit-transform: translate(0, -50%);
  -ms-transform: translate(0, -50%);
  transform: translate(0, -50%);
  padding: 0;
  border: none;
  border-radius: 50%;
  outline: none;
  background-color: #6e5e87;
  z-index: 1;
}
.slick-prev:hover, .slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  outline: none;
  background: transparent;
  color: transparent;
  background-color: #6e5e87;
  border: none !important;
}
.slick-prev:hover:before, .slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: "slick";
  font-size: 20px;
  line-height: 1;
  color: white;
  opacity: 0.75;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

.slick-prev {
  left: -15px;
}
[dir="rtl"] .slick-prev {
  left: auto;
  right: -25px;
}
.slick-prev:before {
  content: '';
  background-image: url(/static/images/icons/icon-left-arrow.png);
  width: 20px;
  height: 25px;
  display: block;
  background-size: 13px;
  background-repeat: no-repeat;
  position: absolute;
  top: 10px;
  left: 12px;
}
[dir="rtl"] .slick-prev:before {
  content: ">";
}

.slick-next {
  right: -15px;
}
[dir="rtl"] .slick-next {
  left: -25px;
  right: auto;
}
.slick-next:before {
  content: '';
  background-image: url(/static/images/icons/icon-right-arrow.png);
  width: 20px;
  height: 25px;
  display: block;
  background-size: 13px;
  background-repeat: no-repeat;
  position: absolute;
  top: 10px;
  left: 15px;
}
[dir="rtl"] .slick-next:before {
  content: "<";
}

/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}

.slick-dots {
  position: absolute;
  bottom: -50px;
  list-style: none;
  display: block;
  text-align: center;
  padding: 0;
  margin: 0;
  width: 100%;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  height: 20px;
  width: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  border: 0;
  display: block;
  height: 20px;
  width: 20px;
  outline: none;
  line-height: 0px;
  font-size: 0px;
  color: transparent;
  padding: 5px;
  cursor: pointer;
  border: 1px solid white;
  border-radius: 50%;
  background-color: black;
}
.slick-dots li button:hover, .slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:before {
  position: absolute;
  top: 0;
  left: 0;
  content: "";
  width: 20px;
  height: 20px;
  font-family: "slick";
  font-size: 6px;
  line-height: 20px;
  text-align: center;
  color: black;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button {
  border: 1px solid white;
  background-color: #6e5e87;
}
.slick-dots li.slick-active button:before {
  background-color: #6e5e87 !important;
  border-radius: 50%;
  opacity: 0;
}
