/**********************************************************************/
/**********************************************************************/
/**********************************************************************/
.btn {
  position: relative;
  display: flex;
  flex-direction: column;
  width: 250px;
  max-width: 100%;
  height: 45px;
  transition: background-color 0.3s;
  cursor: pointer;
}
.btn-white {
  border: 1px solid #000000;
  background-color: #ffffff;
}
.btn-black {
  border: 1px solid #000000;
  background-color: #000000;
}
.btn-black-bordered {
  border: 1px solid #ffffff;
  background-color: #181818;
}
.btn-white:hover {
  background-color: #000000;
}
.btn-black:hover {
  background-color: #ffffff;
}
.btn-black-bordered:hover {
  background-color: #ffffff;
}
.btn-wish svg {
  position: absolute;
  top: 50%;
  right: 14px;
  transform: translatey(-50%);
  width: 21px;
  transition: opacity 0.3s;
}
.btn-wish.in svg {
  opacity: 0;
}
.btn-wish svg path {
  transition: fill 0.3s;
}
.btn-wish:hover svg path {
  fill: #000000;
}
.btn span {
  margin: auto;
  padding-bottom: 2px;
  font-size: 13px;
  font-weight: 500;
  line-height: 15px;
  text-align: center;
  transition: color 0.3s;
}
.btn-white span,
.btn-black:hover span,
.btn-black-bordered:hover span {
  color: #000000;
}
.btn-black span,
.btn-black-bordered span,
.btn-white:hover span {
  color: #ffffff;
}
.btn-wish span {
  font-weight: 700;
}
.btn-wish span.btn-wish__in,
.btn-wish.in span.btn-wish__out {
  display: none;
}
.btn-wish.in span.btn-wish__in {
  display: block;
}

/**********************************************************************/
@media screen and (max-width: 1024px) {
  .btn {
    width: 195px;
    height: 35px;
  }
  .btn span {
    font-size: 12px;
  }
}

/**********************************************************************/
/**********************************************************************/
/**********************************************************************/
.wysiwyg {
  max-width: 100%;
}
.wysiwyg-black {
  color: #ffffff;
}
.wysiwyg .aligncenter,
.wysiwyg .alignleft,
.wysiwyg .alignright {
  display: block;
  padding: 0;
}
.wysiwyg .aligncenter {
  float: none;
}
.wysiwyg .alignright {
  float: right;
}
.wysiwyg .alignleft {
  float: left;
}
.wysiwyg img.aligncenter {
  margin: 5px auto 20px;
}
.wysiwyg img.alignright {
  margin: 5px 0 20px 20px;
}
.wysiwyg img.alignleft {
  margin: 5px 20px 20px 0;
}
.wysiwyg strong,
.wysiwyg b {
  font-weight: 700;
}
.wysiwyg h1,
.wysiwyg h2,
.wysiwyg h3,
.wysiwyg h4,
.wysiwyg h5,
.wysiwyg h6 {
  margin-bottom: 20px;
  text-transform: uppercase;
}
.wysiwyg h1 {
  font-size: 64px;
  font-weight: 600;
  line-height: 64px;
}
.wysiwyg h2 {
  font-size: 64px;
  font-weight: 500;
  line-height: 64px;
}
.wysiwyg h3 {
  font-size: 48px;
  font-weight: 700;
  line-height: 56px;
}
.wysiwyg h4 {
  font-size: 48px;
  font-weight: 500;
  line-height: 56px;
}
.wysiwyg h5 {
  font-size: 28px;
  font-weight: 600;
  line-height: 32px;
}
.wysiwyg h6 {
  font-size: 24px;
  font-weight: 600;
  line-height: 32px;
}
.wysiwyg a {
  color: #000000;
  text-decoration: underline;
  transition: opacity 0.3s;
}
.wysiwyg-black a {
  color: #ffffff;
}
.wysiwyg a:hover {
  opacity: 0.6;
}
.wysiwyg ul,
.wysiwyg ol,
.wysiwyg img {
  margin-bottom: 20px;
}
.wysiwyg ul {
  padding: 0;
  list-style: none;
}
.wysiwyg li {
  position: relative;
  margin-bottom: 5px;
  padding-left: 20px;
}
.wysiwyg li:before {
  content: "";
  position: absolute;
  left: 0;
  top: 7px;
  display: block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background-color: #000000;
}
.wysiwyg-black li:before {
  background-color: #ffffff;
}

/**********************************************************************/
.wysiwyg-heads-sm h1,
.wysiwyg-heads-sm h2 {
  font-size: 32px;
  line-height: 32px;
}
.wysiwyg-heads-sm h3,
.wysiwyg-heads-sm h4 {
  font-size: 24px;
  line-height: 28px;
}
.wysiwyg-heads-sm h5,
.wysiwyg-heads-sm h6 {
  font-size: 20px;
  line-height: 24px;
}

/**********************************************************************/
@media screen and (max-width: 767px) {
  .wysiwyg h1,
  .wysiwyg h2,
  .wysiwyg h3,
  .wysiwyg h4,
  .wysiwyg h5,
  .wysiwyg h6 {
    margin-bottom: 10px;
  }
  .wysiwyg ul,
  .wysiwyg ol,
  .wysiwyg img {
    margin-bottom: 10px;
  }
  .wysiwyg li {
    margin-bottom: 5px;
  }
}

/**********************************************************************/
/**********************************************************************/
/**********************************************************************/
.slider * {
  outline: none;
}
.slider .slidernav {
  position: relative;
  display: flex;
  justify-content: space-between;
  width: 100px;
  height: 20px;
  margin-bottom: 10px;
}
.slider .slidernav:after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 1px;
  background-color: #ffffff;
}
.slider .slidernav p {
  width: 20px;
  font-family: "Roboto", sans-serif;
  font-size: 12px;
  line-height: 20px;
  color: #ffffff;
  text-align: center;
}
.slider__img {
  width: 100%;
  height: 280px;
  background-position: center;
  background-size: cover;
  background-repeat: no-repeat;
}
.slider__arr {
  position: absolute;
  top: 50%;
  transform: translatey(-50%);
  display: flex;
  flex-direction: column;
  width: 30px;
  height: 100%;
  transition: opacity 0.3s;
  cursor: pointer;
  z-index: 100;
}
.slider__arr:hover {
  opacity: 0.6;
}
.slider__arr_l {
  left: 0;
}
.slider__arr_r {
  transform: translatey(-50%) scalex(-1);
  right: 0;
}
.slider__arr img {
  width: 10px;
  margin: auto;
}

/**********************************************************************/
/**********************************************************************/
/**********************************************************************/
.share {
  display: flex;
  flex-direction: column;
}
.share__toggler {
  position: relative;
  padding: 10px 0 10px 20px;
  font-size: 11px;
  font-weight: 600;
  line-height: 15px;
  color: #4f4f4f;
  transition: color 0.3s;
  cursor: pointer;
}
.share__toggler:hover {
  color: #000000;
}
.share__toggler img {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translatey(-50%);
  width: 13px;
}
.share .addtoany_shortcode {
  display: none;
  width: calc(100% + 8px);
  margin-left: -4px;
  margin-right: -4px;
}

/**********************************************************************/
/**********************************************************************/
/**********************************************************************/
.showLine:before {
  content: "";
  position: absolute;
  right: 0;
  bottom: 0;
  width: 0;
  height: 1px;
  background-color: #ffffff;
  transition: width 0.9s;
}
.showLine.show:before,
.showLine.hold:before {
  width: 100%;
}

/**********************************************************************/
/**********************************************************************/
/**********************************************************************/
.slideUp {
  transform: translatey(60px);
  opacity: 0;
  transition:
    transform 0.6s,
    opacity 0.6s;
}
.slideUp.show,
.slideUp.hold {
  transform: translatey(0);
  opacity: 1;
}

/**********************************************************************/
/**********************************************************************/
/**********************************************************************/
.mobslider {
  max-width: 500px;
}
.mobslider .mobslider__slide {
  outline: none;
}
.mobslider .mobslider__slide:not(.slick-active) {
  pointer-events: none;
}

/**********************************************************************/
.mobslider .slick-dots {
  position: absolute;
  top: 15px;
  left: 20px;
  display: flex;
  flex-wrap: wrap;
  padding: 0;
  list-style: none;
  pointer-events: none;
}
.mobslider .slick-dots li {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  margin: 0 6px 6px 0;
  background-color: #cecece;
  transition: background-color 0.3s;
  cursor: pointer;
}
.mobslider .slick-dots li.slick-active,
.mobslider .slick-dots li:hover {
  background-color: #9e9e9e;
}
.mobslider .slick-dots li button {
  display: none;
}

/**********************************************************************/
.mobslider__nav {
  display: flex;
  flex-wrap: wrap;
  width: calc(100% + 10px);
  margin: 20px -5px 0;
}
.mobslider__nav img {
  width: calc(20% - 10px);
  margin: 0 5px 10px;
  transition: opacity 0.3s;
  cursor: pointer;
}
.mobslider__nav img:hover {
  opacity: 0.6;
}

/**********************************************************************/
@media screen and (max-width: 767px) {
  .mobslider {
    position: relative;
    width: 100% !important;
    max-width: 450px;
    margin: 0 auto !important;
  }
  .mobslider .mobslider__slide {
    width: 100%;
    margin: 0 !important;
  }
}
