/* DARKS */
/* GREENS */
/* pallete one */
/* pallete two */
/* gradiants */
/* screen */
/* text */
* {
  font-family: "Poppins", sans-serif;
  box-sizing: border-box;
  margin: 0;
}

html, body {
  margin: 0;
  padding: 0;
  background-color: #181818;
  color: white;
}

main {
  padding: 0 50px;
}
@media only screen and (max-width: 768px) {
  main {
    padding: 0 16px;
  }
}

ul, ol {
  list-style: none;
  padding: 0;
  margin: 0;
}

li a {
  font-size: 14px;
  font-weight: 400;
}

a {
  text-decoration: none;
}
a.icon svg {
  width: 25px;
}

address {
  font-size: 14px;
}

.custom-flex {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
}

.custom-flex.align-items-start {
  align-items: flex-start;
}

p {
  font-size: 16px;
}

section {
  width: 100%;
}

h2 {
  font-size: 30px;
  font-weight: 300;
  line-height: 34px;
  margin-bottom: 20px;
}
h2 strong {
  font-weight: 600;
  color: #cbfc01;
  margin-bottom: 14px;
}

button {
  font-size: 14px;
  background: #cbfc01;
  border: none;
  color: #1e1e1e;
  padding: 3px 12px;
  border: solid 1px #cbfc01;
  cursor: pointer;
}

select {
  height: 29px;
  border: none;
  background: #cbfc01;
  cursor: pointer;
}

textarea:focus,
input:focus,
select:focus {
  outline: none;
}

[data-status=float-down] [data-float] {
  display: none;
}

body::-webkit-scrollbar,
.scroll::-webkit-scrollbar {
  width: 4px;
}

body::-webkit-scrollbar-track,
.scroll::-webkit-scrollbar-track {
  box-shadow: none;
}

body::-webkit-scrollbar-thumb,
.scroll::-webkit-scrollbar-thumb {
  background-color: black;
  outline: 1px solid black;
}

.flex {
  display: flex;
  justify-content: center;
  align-items: center;
}
.flex-start {
  justify-content: flex-start;
  align-content: flex-start;
}
.flex-end {
  justify-content: flex-end;
  align-content: flex-end;
}

.wrap {
  flex-wrap: wrap;
}

.w-100 {
  width: 100%;
}
.w-50 {
  width: 50%;
}
.w-auto {
  width: auto;
}

.ql-editor {
  color: black;
}

.click {
  cursor: pointer;
}

.lava {
  background: linear-gradient(90deg, #fe6c3b 0%, rgb(255, 21, 168) 100%);
}

@keyframes floating {
  0% {
    margin-top: -10px;
  }
  50% {
    margin-top: 0px;
  }
  100% {
    margin-top: -10px;
  }
}
.animate-margin-floating::after,
.animate-margin-floating::before {
  animation-name: floating;
  animation-duration: 4s;
  animation-iteration-count: infinite;
}

.hamburger {
  cursor: pointer;
}
.hamburger input {
  display: none;
}
.hamburger input:checked + svg {
  transform: rotate(-45deg);
}
.hamburger input:checked + svg .line-top-bottom {
  stroke-dasharray: 20 300;
  stroke-dashoffset: -32.42;
}
.hamburger svg {
  height: 3em;
  transition: transform 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.hamburger .line {
  fill: none;
  stroke: white;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 3;
  transition: stroke-dasharray 600ms cubic-bezier(0.4, 0, 0.2, 1), stroke-dashoffset 600ms cubic-bezier(0.4, 0, 0.2, 1);
}
.hamburger .line-top-bottom {
  stroke-dasharray: 12 63;
}

.menu {
  width: 100%;
  height: 50px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  background-color: transparent;
  z-index: 998;
  position: relative;
  left: 0;
  top: 0;
}
.menu .normal {
  width: calc(100% - 130px);
}
.menu .normal ul {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.menu .normal a {
  margin: 0 10px;
  padding: 12px 12px;
}
.menu .login {
  width: 130px;
  margin-left: 8px;
}
.menu .login a {
  margin: 0;
  padding: 12px 12px;
}
.menu .login ul {
  display: flex;
  justify-content: flex-end;
  flex-wrap: wrap;
}
.menu .content {
  max-width: 1400px;
  padding: 0 50px;
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
}
@media only screen and (max-width: 768px) {
  .menu .content {
    padding: 0;
  }
}
.menu .back {
  display: none;
  cursor: pointer;
}
.menu .relleno {
  display: none;
}
@media only screen and (max-width: 768px) {
  .menu .relleno {
    display: flex;
  }
}
.menu .title {
  font-size: 24px;
  font-weight: 600;
  color: white;
}
@media only screen and (max-width: 768px) {
  .menu .title {
    font-size: 16px;
  }
}
.menu .content-logo {
  width: 50%;
  display: flex;
  align-items: center;
  height: 50px;
}
.menu .content-logo .icon-menu {
  display: none;
  z-index: 3;
}
@media only screen and (max-width: 768px) {
  .menu .content-logo {
    width: 100%;
    justify-content: space-between;
  }
  .menu .content-logo .icon-menu {
    display: flex;
  }
}
.menu .content-logo a {
  display: flex;
  align-items: center;
}
.menu .content-logo a img {
  margin-left: 10px;
  width: 40px;
}
@media only screen and (max-width: 768px) {
  .menu .content-logo a img {
    width: 30px;
    height: 30px;
  }
}
.menu .content-menu {
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
  width: 50%;
  height: 50px;
  position: relative;
  transition: left 0.6s;
}
.menu .content-menu li.link {
  height: 100%;
  display: flex;
}
@media only screen and (max-width: 768px) {
  .menu .content-menu {
    padding-top: 60px;
    position: absolute;
    width: 80%;
    left: -100vw;
    top: 0;
    flex-wrap: wrap;
    justify-content: flex-start;
    background: black;
    min-height: 100vh;
    height: auto;
    align-items: flex-start;
    align-content: flex-start;
  }
}
.menu .content-menu a {
  color: white;
}
.menu .content-menu a svg {
  width: 25px;
  height: 25px;
}
.menu > ul {
  justify-content: center;
}
.menu > ul img {
  width: 30px;
  cursor: pointer;
}

.menu-opened .content-menu {
  z-index: 2;
}
@media only screen and (max-width: 768px) {
  .menu-opened .content-menu {
    left: 0;
  }
}
.menu-opened .menu .back {
  display: none !important;
  background-color: transparent;
  cursor: pointer;
  width: 100vw;
  height: 100vh;
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
}
@media only screen and (max-width: 768px) {
  .menu-opened .menu .back {
    display: flex !important;
  }
}
.menu-opened main {
  transition: opacity 1.6s;
}
@media only screen and (max-width: 768px) {
  .menu-opened main {
    opacity: 0.1;
  }
}

@media only screen and (max-width: 768px) {
  .menu .normal,
  .menu .login {
    width: 100%;
    margin: 0;
  }
  .menu .normal ul,
  .menu .login ul {
    justify-content: flex-start;
  }
  .menu .normal li {
    width: 100%;
  }
  .menu .login {
    position: absolute;
    bottom: 30px;
    left: 0;
  }
}
.whatsapp {
  right: 16px;
  cursor: pointer;
  position: fixed;
  background-color: #00bb2d;
  fill: #fff;
  border-radius: 100%;
  height: 50px;
  width: 50px;
  bottom: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 0;
  z-index: 999;
}
.whatsapp a {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  justify-content: center;
  align-items: center;
  display: flex;
}
.whatsapp svg {
  width: 60%;
  height: 60%;
  fill: white;
}

.header-image {
  width: 100%;
  height: 100vh;
  position: absolute;
  left: 0;
  top: 0;
  background-color: black;
  padding: 100px 50px;
  background-repeat: repeat;
  text-align: center;
  flex-direction: column;
}
@media only screen and (max-width: 768px) {
  .header-image {
    padding: 100px 16px 100px 16px;
    justify-content: flex-start;
  }
}
.header-image * {
  z-index: 3;
  position: relative;
}
.header-image::after {
  content: "";
  position: absolute;
  box-shadow: 0px 0px 10px #cbfc01;
  border: solid 2px #cbfc01;
  border-radius: 100%;
  width: 20px;
  z-index: 2;
  height: 20px;
  right: calc(20% - 13px);
  top: 100px;
  background-color: #cbfc01;
  transition: all 0.6s;
}
@media only screen and (max-width: 768px) {
  .header-image::after {
    display: none;
  }
}
.header-image::before {
  content: "";
  position: absolute;
  border: solid 4px #cbfc01;
  box-shadow: 0px 0px 10px #cbfc01;
  border-radius: 100%;
  width: 22px;
  z-index: 2;
  height: 22px;
  right: calc(80% - 15px);
  top: calc(90% - 80px);
  background-color: #181818;
}
.header-image h1 {
  width: 100%;
  font-size: 40px;
  line-height: 60px;
  color: #e7e7e7;
}
@media only screen and (max-width: 768px) {
  .header-image h1 {
    font-size: 22px;
    line-height: 32px;
    max-width: unset;
  }
}
.header-image h1 strong {
  font-size: 54px;
  color: #cbfc01;
  font-weight: 800;
}
@media only screen and (max-width: 768px) {
  .header-image h1 strong {
    font-size: 30px;
    line-height: 32px;
  }
}
.header-image h1 b {
  color: white;
}
.header-image p {
  color: white;
  font-weight: 400;
  font-size: 25px;
  width: 100%;
}
@media only screen and (max-width: 768px) {
  .header-image p {
    font-size: 20px;
  }
}
.header-image .lines {
  top: 0;
  left: 0;
  z-index: 2;
  width: 100%;
  height: 100%;
  position: absolute;
  background-color: transparent;
  justify-content: space-evenly;
}
.header-image .lines div {
  min-width: 1px;
  max-width: 1px;
  height: 100%;
  background-color: #707070;
  opacity: 0.3;
}
.header-image .follow {
  display: none;
  position: absolute;
  bottom: 40px;
  left: 50px;
}
.header-image .follow ul {
  width: 40px;
  height: auto;
  position: absolute;
  flex-direction: column;
  left: 0;
  bottom: 0;
}
.header-image .follow ul li {
  width: 100%;
  margin-bottom: 10px;
}
.header-image .follow img {
  width: 30px;
  height: 30px;
}
.header-image .arrow-spiral-content {
  position: absolute;
  top: calc(50% - 200px);
  left: 10%;
  width: 200px;
  height: 200px;
  color: white;
}
@media only screen and (max-width: 768px) {
  .header-image .arrow-spiral-content {
    width: 100px;
    height: 100px;
    top: unset;
    bottom: 300px;
    bottom: 300px;
    transform: rotate(342deg) translateY(36px);
  }
}
.header-image .arrow-spiral {
  width: 100%;
  height: 100%;
  transform: rotate(84deg);
  z-index: -1;
}
@media only screen and (max-width: 768px) {
  .header-image .arrow-spiral {
    opacity: 0.3;
  }
}
.header-image .rescue {
  position: absolute;
  bottom: 0;
  right: 30%;
  z-index: 10;
  width: 280px;
  height: auto;
  animation-name: floating_boat;
  animation-duration: 3s;
  animation-iteration-count: infinite;
}
.header-image .boat {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  opacity: 0.9;
  width: 280px;
  height: auto;
  animation-name: floating_boat;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  transform: rotate(313deg) translateY(40px);
}
@keyframes floating_boat {
  0% {
    bottom: -20px;
  }
  50% {
    bottom: 0px;
  }
  100% {
    bottom: -20px;
  }
}
.header-image .wave {
  position: absolute;
  z-index: 2;
  bottom: -50px;
  right: 0;
  opacity: 1;
  transform: rotate(180deg);
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 768px) {
  .header-image .wave {
    bottom: -90px;
  }
}
@keyframes my-animation {
  0% {
    transform: scale(1);
  }
  99% {
    transform: scale(100);
  }
  100% {
    left: 0;
    top: 0;
    border-radius: 0%;
    background-color: yellow;
  }
}

.shopify-speed {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  background: linear-gradient(90deg, #fe6c3b 0%, rgb(255, 21, 168) 100%);
  z-index: 3;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 100%;
  left: 0;
  transition: top 0.5s;
  overflow: hidden;
  padding: 100px 50px;
  align-content: center;
}
@media only screen and (max-width: 768px) {
  .shopify-speed {
    padding: 48px 16px;
  }
}
.shopify-speed .head-title {
  width: 100%;
  max-width: 630px;
  height: auto;
  color: white;
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-bottom: 50px;
}
@media only screen and (max-width: 768px) {
  .shopify-speed .head-title {
    text-align: center;
    margin-bottom: 20px;
  }
}
.shopify-speed .head-title p {
  color: white;
  width: 100%;
  max-width: 408px;
  text-align: center;
  font-size: 16px;
}
@media only screen and (max-width: 768px) {
  .shopify-speed .head-title p {
    font-size: 14px;
  }
}
.shopify-speed .head-title p a {
  color: #cbfc01;
  text-decoration: underline;
}
.shopify-speed .container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  align-content: flex-start;
  margin-bottom: 50px;
  position: relative;
}
.shopify-speed .container .contain-card {
  width: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shopify-speed .contain-punctuation .punctuation {
  background-color: white;
}
@media only screen and (max-width: 768px) {
  .shopify-speed .contain-punctuation .punctuation {
    padding: 10px;
  }
}
.shopify-speed .contain-punctuation .punctuation .contain-circle .circle {
  background: black;
}
.shopify-speed .contain-punctuation .punctuation .contain-circle .circle .circle2 {
  background: white;
}
.shopify-speed .contain-punctuation .punctuation .contain-circle .circle span {
  color: black;
}
.shopify-speed .contain-punctuation .punctuation .contain-description .title {
  color: black;
}

.contain-punctuation {
  max-width: 440px;
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}
.contain-punctuation .punctuation {
  width: 100%;
  padding: 10px;
  height: auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  border-radius: 10px;
  background-color: black;
}
@media only screen and (max-width: 768px) {
  .contain-punctuation .punctuation {
    justify-content: center;
    padding: 0;
  }
}
.contain-punctuation .punctuation .contain-circle {
  width: 65px;
  height: 65px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  overflow: hidden;
  margin-left: 10px;
}
@media only screen and (max-width: 768px) {
  .contain-punctuation .punctuation .contain-circle {
    margin-bottom: 10px;
  }
}
.contain-punctuation .punctuation .contain-circle .circle {
  background: #2c2c38;
  width: 65px;
  height: 65px;
  border-radius: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
}
.contain-punctuation .punctuation .contain-circle .circle::before {
  content: " ";
  background: linear-gradient(90deg, #fe6c3b 0%, rgb(255, 21, 168) 100%);
  top: 74%;
  border-radius: 100%;
  right: -19px;
  width: 100px;
  height: 100px;
  position: absolute;
  animation-name: floating;
  animation-duration: 3s;
  animation-iteration-count: infinite;
}
.contain-punctuation .punctuation .contain-circle .circle .circle2 {
  background: black;
  width: 50px;
  height: 50px;
  border-radius: 100%;
  z-index: 1;
}
.contain-punctuation .punctuation .contain-circle .circle span {
  position: absolute;
  font-size: 24px;
  z-index: 2;
  color: white;
}
.contain-punctuation .punctuation .contain-description {
  width: 80%;
  padding-left: 20px;
}
@media only screen and (max-width: 768px) {
  .contain-punctuation .punctuation .contain-description {
    padding-left: 0;
    width: 100%;
    text-align: center;
  }
}
.contain-punctuation .punctuation .contain-description .title {
  font-size: 16px;
  color: rgb(255, 255, 255);
}
.contain-punctuation .punctuation .contain-description p {
  width: 100%;
  color: #9a9b9f;
  font-size: 14px;
}
@media only screen and (max-width: 768px) {
  .contain-punctuation .punctuation .contain-description p {
    font-size: 12px;
  }
}

.shopify-speed-after {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  background: black;
  z-index: 3;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 100%;
  left: 0;
  transition: top 0.5s;
  overflow: hidden;
  padding: 100px 50px;
  align-content: center;
}
@media only screen and (max-width: 768px) {
  .shopify-speed-after {
    padding: 90px 16px;
    align-content: flex-start;
  }
}
.shopify-speed-after .head-title {
  width: 100%;
  max-width: 446px;
  height: auto;
  color: white;
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-bottom: 25px;
}
@media only screen and (max-width: 768px) {
  .shopify-speed-after .head-title {
    padding: 0 16px 18px 16px;
    margin-bottom: 0;
    align-content: flex-end;
    text-align: center;
  }
}
.shopify-speed-after .head-title p {
  color: #e7e7e7;
  width: 100%;
  max-width: 375px;
  text-align: center;
  font-size: 16px;
}
@media only screen and (max-width: 768px) {
  .shopify-speed-after .head-title p {
    font-size: 14px;
  }
}
.shopify-speed-after .head-title p a {
  color: #cbfc01;
  text-decoration: underline;
}
.shopify-speed-after .container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  align-content: flex-start;
  margin-bottom: 50px;
  position: relative;
}
.shopify-speed-after .container .contain-card {
  width: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.shopify-speed-after {
  /* ------------[ boat ]-------------  */
}
.shopify-speed-after .contain-punctuation .punctuation {
  justify-content: center;
}
.shopify-speed-after .contain-punctuation .punctuation .contain-description {
  margin-top: 15px;
  max-width: 280px;
}
.shopify-speed-after .contain-punctuation .punctuation .contain-description p {
  text-align: left;
}
@media only screen and (max-width: 768px) {
  .shopify-speed-after .contain-punctuation .punctuation .contain-description p {
    text-align: center;
  }
}
.shopify-speed-after .contain-punctuation .punctuation .contain-circle:nth-child(1) .circle {
  background: #fce901;
}
.shopify-speed-after .contain-punctuation .punctuation .contain-circle:nth-child(1) .circle::before {
  background: rgba(0, 0, 0, 0.7882352941);
  top: -70px;
}
.shopify-speed-after .contain-punctuation .punctuation .contain-circle:nth-child(2) .circle {
  background: #cbfc01;
}
.shopify-speed-after .contain-punctuation .punctuation .contain-circle:nth-child(2) .circle::before {
  display: none;
}
.shopify-speed-after .boat {
  position: absolute;
  bottom: 0;
  left: 0;
  z-index: 1;
  opacity: 0.9;
  width: 280px;
  height: auto;
  animation-name: floating_boat;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  transform: rotate(358deg) translateX(49px) translateY(-47px);
}
@media only screen and (max-width: 768px) {
  .shopify-speed-after .boat {
    transform: rotate(358deg) translateX(57px) translateY(-7px);
    width: 200px;
  }
}
@keyframes floating_boat {
  0% {
    bottom: -20px;
  }
  50% {
    bottom: 0px;
  }
  100% {
    bottom: -20px;
  }
}
.shopify-speed-after .wave {
  position: absolute;
  z-index: 2;
  bottom: -50px;
  right: 0;
  opacity: 1;
  transform: rotate(180deg);
  width: 100%;
  height: 200px;
  -o-object-fit: cover;
     object-fit: cover;
}
@media only screen and (max-width: 768px) {
  .shopify-speed-after .wave {
    bottom: -120px;
  }
}

.shopify-solution {
  display: flex;
  justify-content: center;
  align-content: center;
  flex-wrap: wrap;
  background: black;
  z-index: 3;
  position: absolute;
  width: 100%;
  height: 100%;
  top: 100%;
  left: 0;
  transition: top 0.5s;
  overflow: hidden;
  padding: 100px 50px;
}
@media only screen and (max-width: 768px) {
  .shopify-solution {
    padding: 48px 16px;
  }
}
.shopify-solution h2 {
  max-width: 500px;
  text-align: center;
}
.shopify-solution .free {
  width: 120px;
  height: 120px;
  margin: 10px 0 20px 0;
}
.shopify-solution .free svg {
  width: 100%;
  height: 100%;
}
.shopify-solution .head-title {
  width: 100%;
  max-width: 630px;
  height: auto;
  color: white;
  display: flex;
  align-items: center;
  flex-direction: column;
  margin-bottom: 50px;
}
@media only screen and (max-width: 768px) {
  .shopify-solution .head-title {
    padding: 48px 16px 18px 16px;
    margin-bottom: 0;
    align-content: flex-end;
  }
}
.shopify-solution .head-title p {
  color: #e7e7e7;
  width: 100%;
  max-width: 360px;
  text-align: center;
  font-size: 16px;
}
@media only screen and (max-width: 768px) {
  .shopify-solution .head-title p {
    max-width: 300px;
  }
}
.shopify-solution .head-title p a {
  color: #cbfc01;
  text-decoration: underline;
}
.shopify-solution .container {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: center;
  align-items: center;
  align-content: flex-start;
  margin-bottom: 50px;
  position: relative;
}
.shopify-solution .container .contain-card {
  width: 80%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.section-list-animation section[data-now] {
  top: 0% !important;
  z-index: 50;
}
.section-list-animation section.previous-animation {
  top: 100vh !important;
  transition: top 0.6s;
}
.section-list-animation section.next-animation {
  transition: top 0.6s;
  top: -100vh !important;
}

.set-size {
  font-size: 120px;
  transform: scale(0.8);
}

.charts-container:after {
  clear: both;
  content: "";
}

.pie-wrapper {
  height: 1em;
  width: 1em;
  float: left;
  margin: 15px;
  position: relative;
}
.pie-wrapper:nth-child(3n+1) {
  clear: both;
}
.pie-wrapper .pie {
  height: 100%;
  width: 100%;
  clip: rect(0, 1em, 1em, 0.5em);
  left: 0;
  position: absolute;
  top: 0;
}
.pie-wrapper .pie .half-circle {
  height: 100%;
  width: 100%;
  border: 0.1em solid #0accdb;
  border-radius: 50%;
  clip: rect(0, 0.5em, 1em, 0);
  left: 0;
  position: absolute;
  top: 0;
}
.pie-wrapper .label {
  background: none;
  border-radius: 50%;
  bottom: 0.4em;
  color: #ecf0f1;
  cursor: default;
  display: block;
  font-size: 0.25em;
  font-weight: 700;
  left: 0.4em;
  line-height: 2.8em;
  position: absolute;
  right: 0.4em;
  text-align: center;
  top: 0.4em;
}
.pie-wrapper .label .smaller {
  color: #ffffff;
  font-size: 0.45em;
  padding-bottom: 20px;
  vertical-align: super;
}
.pie-wrapper .shadow {
  height: 100%;
  width: 100%;
  border: 0.1em solid #bdc3c7;
  border-radius: 50%;
}
.pie-wrapper.progress-45 .pie .half-circle {
  border-color: #0accdb;
}
.pie-wrapper.progress-45 .pie .left-side {
  transform: rotate(162deg);
}
.pie-wrapper.progress-45 .pie .right-side {
  display: none;
}

.pie-wrapper--solid {
  border-radius: 50%;
  overflow: hidden;
}
.pie-wrapper--solid:before {
  border-radius: 0 100% 100% 0/50%;
  content: "";
  display: block;
  height: 100%;
  margin-left: 50%;
  transform-origin: left;
}
.pie-wrapper--solid .label {
  background: transparent;
}

.wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  min-height: 100%;
}

button::-moz-focus-inner {
  border: 0;
  padding: 0;
}

#calendary {
  margin: 20px 0;
  border-radius: 5px;
  position: relative;
  overflow: hidden;
  height: 260px;
  width: 100%;
  font-size: 14px;
  box-shadow: 0px 1px 4px rgba(0, 0, 0, 0.4);
}

table {
  border-collapse: collapse;
  table-layout: fixed;
  width: 100%;
  box-shadow: 0px 1px 3px rgba(0, 0, 0, 0.2);
  background-color: #181818;
  position: absolute;
  top: 0;
  left: 0;
  transform: translateX(0);
  transition: all 0.3s ease;
}

table tr {
  font-size: 10px;
}

table.actiu {
  transform: translateX(0px) top;
}

table.inactiu {
  transition: all 0.3s 0.01s ease;
}

table.amagat-esquerra {
  transform: translateX(-299px);
}

table.amagat-dreta {
  transform: translateX(300px);
}

td, th {
  text-align: center;
  background-color: #181818;
}

th {
  padding: 10px;
}

tr:first-child th {
  font-size: 20px;
  font-weight: bold;
  border-left: none;
  border-top: none;
}

tr:first-child th span {
  color: white;
  font-size: 14px;
}

td:last-child, th:last-child {
  border-right: none;
}

.th {
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  border-right: 1px solid rgba(0, 0, 0, 0.1);
  background-color: #9b59b6;
  color: #fff;
  text-shadow: 0px -1px 0px rgba(0, 0, 0, 0.2);
  font-weight: normal;
}

tr:first-child th span .any {
  font-size: 12px;
  font-weight: normal;
  display: block;
  text-shadow: none;
  color: rgba(255, 255, 255, 0.6);
}

tr:nth-child(2) th {
  padding: 6px;
  color: white;
}

td {
  padding: 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

td > span {
  color: #dddddd;
  padding: 6px;
  display: block;
  border: 2px solid transparent;
  transition: border 0.3s ease;
}

td:nth-child(even) > span {
  background-color: rgba(0, 0, 0, 0.02);
}

td:last-child > span,
td:nth-child(6) > span {
  color: #9b59b6;
}

td.avui > span {
  font-weight: bold;
  background-color: #9b59b6;
  color: #fff;
  border: 2px solid rgba(0, 0, 0, 0.1);
}

td > span:hover {
  background: #a57cb6;
  color: #fff;
  cursor: pointer;
}

.fora span {
  color: rgba(255, 255, 255, 0.2) !important;
}

.boto-next, .boto-prev {
  background: rgba(0, 0, 0, 0.2);
  color: #fff;
  font-family: inherit;
  border: none;
  font-size: 18px;
  font-weight: bold;
  text-shadow: inherit;
  padding: 0;
  line-height: 1px;
  height: 20px;
  width: 20px;
  vertical-align: middle;
  border-radius: 100%;
  position: absolute;
  top: 15px;
}

.boto-next {
  right: 10px;
}

.boto-prev {
  left: 10px;
}

.boto-next:hover,
.boto-prev:hover {
  background: rgb(0, 0, 0);
}

button:hover {
  cursor: pointer;
}

button:focus {
  outline: none;
}

@keyframes content-show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
.modal {
  background-color: rgba(0, 0, 0, 0.1);
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  display: none;
  z-index: 9999;
  justify-content: center;
  align-items: center;
}
.modal .content {
  display: flex;
  flex-wrap: wrap;
  background-color: white;
  min-height: auto;
  min-width: 700px;
  max-width: 80%;
  align-items: center;
  padding: 32px;
  border-radius: 15px;
}
.modal.opened {
  display: flex;
}
.modal.opened .content {
  animation-name: content-show;
  animation-duration: 0.4s;
  animation-iteration-count: 1;
}

@keyframes horizontal-shaking {
  0% {
    transform: translateX(0);
  }
  25% {
    transform: translateX(5px);
  }
  50% {
    transform: translateX(-5px);
  }
  75% {
    transform: translateX(5px);
  }
  100% {
    transform: translateX(0);
  }
}
.form-material {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  position: relative;
  height: 40px;
  margin-bottom: 45px;
}
.form-material label {
  width: 100%;
  font-size: 16px;
  position: absolute;
  z-index: 1;
  bottom: 0px;
  transition: bottom 0.3s, color 0.6s;
  color: #515551;
}
.form-material textarea {
  resize: none;
}
.form-material input, .form-material textarea {
  width: 100%;
  font-size: 14px;
  height: 20px;
  border: none;
  border-bottom: solid 1px #515551;
  position: absolute;
  z-index: 2;
  bottom: 0;
  cursor: pointer;
  background: transparent;
}
.form-material input[placeholder], .form-material input:focus, .form-material input.actived, .form-material textarea[placeholder], .form-material textarea:focus, .form-material textarea.actived {
  border-bottom: solid 1px black;
}
.form-material input[placeholder] + label, .form-material input:focus + label, .form-material input.actived + label, .form-material textarea[placeholder] + label, .form-material textarea:focus + label, .form-material textarea.actived + label {
  bottom: 20px;
  color: black;
}
.form-material input.error, .form-material textarea.error {
  border-bottom: solid 1px red;
  animation-name: horizontal-shaking;
  animation-duration: 0.4s;
  animation-iteration-count: 1;
}
.form-material input.error + label, .form-material textarea.error + label {
  bottom: 20px;
  color: red;
  animation-name: horizontal-shaking;
  animation-duration: 0.4s;
  animation-iteration-count: 1;
}

.content-buttons {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-bottom: 0;
}

.message-error {
  margin-top: -26px;
  color: red;
}

body main,
body {
  width: 100%;
  height: 100%;
  max-width: 100%;
  max-height: 100%;
  overflow: hidden;
}
