/* Css page */
body {
  font-size: 15px;
}

img {
  max-width: 100%;
}

.row-custom {
  margin-right: -40px;
  margin-left: -40px;
}
.row-custom .list-item {
  padding: 0 40px;
}

.list-item .item {
  padding: 5px 0;
  margin-bottom: 10px;
}

.list-item .item:nth-child(2n + 1) {
  background-color: #eee;
}

.btn-focus {
  outline: 0;
}
/* end Css page */

/* Gradient Button */
.gradient-button {
  display: inline-block;
  border-radius: 100rem;
  font-size: 1.2rem;
  padding: 0.5rem 3rem;
  color: #000;
  box-shadow: 0 0 6px 0 rgba(157, 96, 212, 0.5);
  border: solid 3px transparent;
  background-image: linear-gradient(rgba(255, 255, 255, 0), rgba(255, 255, 255, 0)),
    linear-gradient(101deg, #78e4ff, #ff48fa);
  background-origin: border-box;
  background-clip: content-box, border-box;
  box-shadow: 2px 1000px 1px #fff inset;
  height: max-content;
}
.gradient-button:hover {
  box-shadow: none;
  color: white;
}

/* Input, Textarea */
.input-hover {
  border-color: rgba(21, 156, 64, 0.6) !important;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 1px rgba(21, 156, 64, 0.6) !important;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 1px rgba(21, 156, 64, 0.6) !important;
}

.textarea-hover {
  border-color: rgba(21, 156, 64, 0.6) !important;
  outline: 0;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 1px rgba(21, 156, 64, 0.6) !important;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 1px rgba(21, 156, 64, 0.6) !important;
}

.input-hover:focus,
.textarea-hover:focus {
  border-color: rgba(21, 156, 64, 0.6) !important;
  outline: 0;
  outline-color: #000000;
  -webkit-box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 1px rgba(21, 156, 64, 0.6) !important;
  box-shadow: inset 0 1px 1px rgba(0, 0, 0, 0.075), 0 0 1px rgba(21, 156, 64, 0.6) !important;
}

/*# sourceMappingURL=style.css.map */

/* CSS Triangle */
.arrow-up {
  width: 0;
  height: 0;
  border-left: 12px solid transparent;
  border-right: 12px solid transparent;
  border-bottom: 12px solid black;
}

.arrow-down {
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid #f00;
}

.arrow-left {
  width: 0;
  height: 0;
  border-top: 20px solid transparent;
  border-bottom: 20px solid transparent;
  border-right: 20px solid blue;
}

.arrow-right {
  width: 0;
  height: 0;
  border-top: 30px solid transparent;
  border-bottom: 30px solid transparent;
  border-left: 30px solid green;
}
