

/* ---------------------------------- */
/* Buttons
------------------------------------- */
button {
  vertical-align: middle;
}

span.button, button.button {
  background-color: #be185d;
  top: 0;
  color: #fff;
  position: relative;
  padding: 8px 18px;
  line-height: 22px;
  position: relative;
  font-weight: 500;
  font-size: 15px;
  display: inline-block;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  overflow: hidden;
  border: none;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

input[type="button"], input[type="submit"] {
  background-color: #be185d;
  top: 0;
  padding: 10px 20px;
  line-height: 24px;
  color: #fff;
  position: relative;
  font-size: 15px;
  font-weight: 500;
  display: inline-block;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  overflow: hidden;
  border: none;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

a.button {
  background-color: #be185d;
  top: 0;
  padding: 8px 18px;
  line-height: 22px;
  color: #fff;
  position: relative;
  font-size: 15px;
  font-weight: 500;
  display: inline-block;
  -webkit-transition: all 0.2s ease-in-out;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
  overflow: hidden;
  border: none;
  border-radius: 4px;
  -webkit-box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
          box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

/* Icons Aligment*/
.button i[class^="icon-material"], button.button i[class^="icon-material"] {
  font-size: 18px;
  height: 0;
  width: 18px;
  line-height: 0;
  top: 2px;
  position: relative;
  display: inline-block;
  margin-left: 3px;
}

input[type="button"] i[class^="icon-material"], input[type="submit"] i[class^="icon-material"] {
  font-size: 18px;
  height: 0;
  width: 18px;
  line-height: 0;
  top: 2px;
  position: relative;
  display: inline-block;
  margin-left: 3px;
}

a.button i[class^="icon-material"] {
  font-size: 18px;
  height: 0;
  width: 18px;
  line-height: 0;
  top: 2px;
  position: relative;
  display: inline-block;
  margin-left: 3px;
}

.button i[class^="icon-feather"], button.button i[class^="icon-feather"] {
  font-size: 15px;
  height: 0;
  width: 16px;
  line-height: 0;
  top: 2px;
  position: relative;
  display: inline-block;
  margin-left: 3px;
}

input[type="button"] i[class^="icon-feather"], input[type="submit"] i[class^="icon-feather"] {
  font-size: 15px;
  height: 0;
  width: 16px;
  line-height: 0;
  top: 2px;
  position: relative;
  display: inline-block;
  margin-left: 3px;
}

a.button i[class^="icon-feather"] {
  font-size: 15px;
  height: 0;
  width: 16px;
  line-height: 0;
  top: 2px;
  position: relative;
  display: inline-block;
  margin-left: 3px;
}

/* Dark Style */
button.button.dark {
  background-color: #333;
  color: #fff;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

input[type="button"].dark, input[type="submit"].dark {
  background-color: #333;
  color: #fff;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

a.button.dark {
  background-color: #333;
  color: #fff;
  -webkit-box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* Dark Style */
button.button.gray {
  background-color: #eaeaea;
  color: #666;
  -webkit-box-shadow: none;
          box-shadow: none;
}

input[type="button"].gray, input[type="submit"].gray {
  background-color: #eaeaea;
  color: #666;
  -webkit-box-shadow: none;
          box-shadow: none;
}

a.button.gray {
  background-color: #eaeaea;
  color: #666;
  -webkit-box-shadow: none;
          box-shadow: none;
}

button.button.gray:hover {
  background-color: #e0e0e0;
}

input[type="button"].gray:hover, input[type="submit"].gray:hover {
  background-color: #e0e0e0;
}

a.button.gray:hover {
  background-color: #e0e0e0;
}

body .button i.icon-material-outline-arrow-right-alt {
  font-size: 22px;
  top: 4px;
}

.button.full-width {
  max-width: 100%;
  width: 100%;
  text-align: center;
  display: block;
}

.button.big {
  font-size: 18px;
  padding: 13px 22px;
}

body .button.big i {
  font-size: 22px;
  top: 3px;
  position: relative;
}

/* Slide Out Button */
.button.button-slide-out span {
  -webkit-transform: translateY(0px);
          transform: translateY(0px);
  opacity: 1;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.button.button-slide-out:hover span {
  -webkit-transform: translateY(-10px);
          transform: translateY(-10px);
  opacity: 0;
  display: inline-block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.button.button-slide-out i {
  -webkit-transform: translateY(calc(-50% + 10px));
          transform: translateY(calc(-50% + 10px));
  opacity: 0;
  display: inline-block;
  -webkit-transition: 0.3s;
  transition: 0.3s;
  position: absolute;
  left: 0;
  right: 0;
  font-size: 18px;
  top: 50%;
  height: 20px;
}

.button.button-slide-out:hover i {
  -webkit-transform: translateY(calc(-50% + 0px));
          transform: translateY(calc(-50% + 0px));
  opacity: 1;
}

/* Move on Hover */
.move-on-hover {
  -webkit-box-shadow: 0 4px 12px rgba(190, 24, 93, 0.1);
          box-shadow: 0 4px 12px rgba(190, 24, 93, 0.1);
  -webkit-transform: translateY(0);
          transform: translateY(0);
  -webkit-transition: 0.3s;
  transition: 0.3s;
}

.move-on-hover:hover {
  -webkit-box-shadow: 0 4px 12px rgba(190, 24, 93, 0.2);
          box-shadow: 0 4px 12px rgba(190, 24, 93, 0.2);
  -webkit-transform: translateY(-2px);
          transform: translateY(-2px);
}

/* Centered Button */
.centered-button {
  text-align: center;
  display: block;
}

.centered-button .button {
  margin: 0 auto;
}

/* Bookmark Button */
span.bookmark-icon {
  font-size: 20px;
  position: absolute;
  z-index: 101;
  right: 35px;
  top: 35px;
  cursor: pointer;
  background-color: #eee;
  color: #c0c0c0;
  display: block;
  height: 39px;
  width: 39px;
  border-radius: 50%;
  -webkit-transition: all 0.4s;
  transition: all 0.4s;
  line-height: 27px;
}

.bookmark-icon.bookmarked {
  -webkit-animation: bookmarked-shadow 0.3s;
          animation: bookmarked-shadow 0.3s;
}

.bookmark-icon:before {
  -webkit-transition: -webkit-transform 0.4s cubic-bezier(0.8, -0.41, 0.19, 2.5);
  transition: -webkit-transform 0.4s cubic-bezier(0.8, -0.41, 0.19, 2.5);
  transition: transform 0.4s cubic-bezier(0.8, -0.41, 0.19, 2.5);
  transition: transform 0.4s cubic-bezier(0.8, -0.41, 0.19, 2.5), -webkit-transform 0.4s cubic-bezier(0.8, -0.41, 0.19, 2.5);
  font-family: "Material-Icons";
  position: absolute;
  right: 0;
  left: 0;
  text-align: center;
  top: 6px;
  content: "\e988";
}

.bookmark-icon:hover {
  background-color: #333;
  color: #fff;
}

.bookmark-icon.bookmarked {
  background-color: #feb342;
  color: #fff;
}

.bookmark-icon.bookmarked:before {
  -webkit-animation: bookmark-icon 0.5s;
          animation: bookmark-icon 0.5s;
}

@-webkit-keyframes bookmarked-shadow {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(254, 179, 66, 0.8);
            box-shadow: 0 0 0 0 rgba(254, 179, 66, 0.8);
  }
  100% {
    -webkit-box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
            box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
  }
}

@keyframes bookmarked-shadow {
  0% {
    -webkit-box-shadow: 0 0 0 0 rgba(254, 179, 66, 0.8);
            box-shadow: 0 0 0 0 rgba(254, 179, 66, 0.8);
  }
  100% {
    -webkit-box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
            box-shadow: 0 0 0 10px rgba(0, 0, 0, 0);
  }
}

@-webkit-keyframes bookmark-icon {
  0% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

@keyframes bookmark-icon {
  0% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
  }
  50% {
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}

/* Bookmark Button */
.bookmark-button {
  background-color: #404040;
  display: inline-block;
  padding: 0;
  position: relative;
  height: 44px;
  line-height: 44px;
  color: #fff;
  padding: 0 15px;
  padding-left: 59px;
  border-radius: 4px;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  cursor: pointer;
  -webkit-box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
          box-shadow: 0 3px 12px rgba(0, 0, 0, 0.1);
}

.bookmark-button .bookmark-icon, .bookmark-button:hover .bookmark-icon {
  background-color: rgba(255, 255, 255, 0.05);
}

.bookmark-button .bookmark-icon {
  border-radius: 4px;
  position: absolute;
  left: 0;
  right: auto;
  top: auto;
  height: 44px;
  width: 44px;
  border-radius: 4px 0 0 4px;
  pointer-events: none;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  -webkit-animation: none;
          animation: none;
}

.bookmark-button .bookmark-icon:before {
  top: 8px;
  color: #fff;
  -webkit-transition: 0.4s;
  transition: 0.4s;
  font-size: 18px;
}

.bookmark-button.bookmarked {
  background-color: #feb342;
  color: #fff;
  -webkit-box-shadow: 0 3px 12px rgba(254, 179, 66, 0.2);
          box-shadow: 0 3px 12px rgba(254, 179, 66, 0.2);
}

.bookmark-button.bookmarked .bookmark-icon:before {
  color: #fff;
}

.bookmark-button:hover .bookmark-icon:before {
  color: #fff;
}

.bookmark-button.bookmarked .bookmark-icon, .bookmark-button.bookmarked:hover .bookmark-icon {
  background-color: rgba(255, 255, 255, 0.16);
}

.bookmark-button.bookmarked .bookmarked-text {
  display: block;
}

.bookmark-button .bookmark-text {
  display: block;
}

.bookmark-button.bookmarked .bookmark-text, .bookmark-button .bookmarked-text {
  display: none;
}

/* ---------------------------------- */
/* Button with sliding icon
------------------------------------- */
.button-sliding-icon {
  text-align: center;
}

.button-sliding-icon i {
  opacity: 0;
  max-width: 0;
  -webkit-transition: 0.25s;
  transition: 0.25s;
  display: inline-block;
  -webkit-transform: translateX(-20px);
          transform: translateX(-20px);
}

.button-sliding-icon:hover i {
  max-width: 20px;
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}

/* For buttons */
.button.button-sliding-icon {
  padding-left: 20px;
  padding-right: 10px;
}

.button.button-sliding-icon:hover {
  padding-right: 20px;
}

.button.button-sliding-icon i {
  padding-right: 5px;
}

.button.button-sliding-icon:hover i {
  max-width: 20px;
  opacity: 1;
  -webkit-transform: translateX(0);
          transform: translateX(0);
}
