html {
  background: white;
}

body {
  font-size: 14px;
  /* -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  font-smooth: antialiased; */
  font-family: sans-serif;
}

.contentArea {
  width: 100%;
  overflow-x: hidden;
}

.unbreak {
  white-space: nowrap;
}

.color-gray-1 {
  color: #808080;
}

.page-title {
  font-size: 18px;
  text-align: center;
}

.btn-link {
  background: transparent;
  border: 0 none;
}

.ul-horizontal li {
  display: inline-block;
}

.btn {
  display: inline-block;
  border: 0 none;
  border-radius: 4px;
  padding: 10px 20px;
  text-decoration: none !important;
  background-color: black;
  color: white;
  transition: all .25s ease-in-out;
  margin-bottom: 10px;

  &.btn-no-margin {
    margin: 0;
  }

  &:not(.disabled):hover {
    background-color: rgba(0,0,0,.25);
    box-shadow: 0 0 10px 2px rgba(0,0,0,.3), 0 0 2px 1px rgba(0,0,0,.75);
    color: black;
  }

  &.btn-whatsapp {
    background: url('/resources/images/whatsapp-logo.svg') 20px / 20px no-repeat #25D366;
    padding-left: 50px;

    &:not(.disabled):hover {
      background-color: #1aa14c;
      box-shadow: 0 0 10px 2px rgba(0,0,0,.3), 0 0 2px 1px rgba(0,0,0,.75);
      color: white;
    }
  }

  &.btn-height-as-field {
    padding-top: 4px;
    padding-bottom: 4px;
  }

  &.disabled {
    background-color: gray;
    cursor: default;
    color: white;
  }
}

.field-top-label {
  text-align: center;
  font-size: 16px;
  color: #585858;
}

.section-title {
  font-size: 50px;
  font-weight: 600;
  color: #232323;
  margin-bottom: 40px;
  padding: 10px;
  background-color: rgb(247, 247, 247);
}

.privacy-and-conditions {
  color: #808080;

  a, a:link, a:hover, a:visited {
    color: #7e6648;
  }
}

#simple-chat-button--container {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 999999999;

  #simple-chat-button--button {
    display: block;
    position: relative;
    text-decoration: none;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    -webkit-transition: all 0.2s ease-in-out;
    transition: all 0.2s ease-in-out;
    -webkit-transform: scale(1);
    transform: scale(1);
    box-shadow: 0 6px 8px 2px rgba(0, 0, 0, .15);
    background: url('/resources/images/whatsapp-logo.svg') center / 44px 44px no-repeat #25D366;
    /* animation: floating-whatsapp-animation-2 5s 3s ease-out infinite; */
  
    &:before {
      content: "";
      position: absolute;
      top: 0;
      bottom: 0;
      left: 0;
      right: 0;
      border-radius: 50%;
      animation: floating-whatsapp-animation 5s 3s ease-out infinite;
      z-index: -1;
    }
  }
}

@keyframes floating-whatsapp-animation {
  0% {
    transform: scale(1);
    box-shadow: 0 0 2px rgba(0, 100, 0, .75), inset 0 0 1px rgba(0, 100, 0, .75);
  }

  20% {
    box-shadow: 0 0 40px transparent, inset 0 0 30px transparent;
    transform: scale(1.2);
  }

  21% {
    transform: scale(1);
  }
}

/* @media (min-width: 980px) {
  #simple-chat-button--container {
    bottom: 100px;
  }
} */
