/******************
    User custom CSS
    ---------------

    In this file you can add your own custom CSS
    It will be loaded last, so you can override any other property.
    Also, it will never be updated. So if you inheritate a core template and just add here some CSS, you'll still benefit of all the updates
*/

@keyframes click-wave {
  0% {
    height: 20px;
    width: 20px;
    opacity: 0.35;
    position: relative;
  }
  100% {
    height: 100px;
    width: 100px;
    margin-left: -40px;
    margin-top: -40px;
    opacity: 0;
  }
}

/* BODY */

.font-noto {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
}

body {
  font-size: 16px;
  font-weight: 300;
}

/* HEADER */

.logo-container > img {
  max-height: 60px;
}

/* QUESTIONS */

.input-sm {
    font-size: 1em;
    font-weigt: normal;
}

.asterisk {
  display: none;
}

.survey-description.text-info {
  color: #000 !important;
}

.group-description {
    border-left-width: 0 !important;
    border-right-width: 0 !important;
    border-radius: 0;
    box-shadow: none !important;
    font-weight: bold;
    margin: 0;
}

.question-container {
  margin-bottom: 0.5em;
  border: 0 !important;
  box-shadow: none !important;
}

.question-title-container {
  padding-bottom: 0;
}

.question-text {
  font-weight: 600;

  border-bottom: 1px solid #ddd;
  padding: 8px;
  background: #f7f7f7;
}

.radio-list li {
    margin-right: 0;
}

.radio-item {
  padding-left: 40px;
}

li.radio-item {
  margin-bottom: 0.5em;
}

.radio-item label::after {
  width: 13px;
  height: 13px;
  left: 2px;
  top: 2px;
}

/*.radio-item label::before {
  width: 21px;
  height: 21px;
  margin-left: -22px;
}*/

body .answer-item label::after {
  background-color: #4992E7;
}

@media (min-width: 768px) {
  .form-inline .form-group {
    vertical-align: baseline;
  }
}

/* BUTTONS */
.fruity .btn-primary {border-radius: 4px;
  font-size: 1em;
  letter-spacing: 1px;
  font-weight: bold;
  line-height: 1.2;
  margin: 0 0.5em 1em 0.5em;
  outline: 0;
  padding: .7em 1.2em;
  text-decoration: none;
  text-transform: uppercase;
  transition: all 200ms ease-in;
    
  background-color: #4992E7;
  border-color: #4992E7;
}

.fruity .btn-primary:focus,
.fruity .btn-primary:hover {
  background-color: #4484DA;
  border-color: #4484DA;
}

/* INPUT */
.fruity textarea,
.fruity input[type="text"],
.fruity input[type="email"],
.fruity input[type="password"],
.fruity input[type="number"],
.fruity select {
  border-radius: 4px;
  border: 1px solid #BDBDBD;
  box-sizing: border-box;
  display: block;
  font-weight: 300;
  /*max-width: 500px;*/
  padding: .5em;
  width: 100%;
}

.fruity textarea:not([disabled]):hover,
.fruity input[type="text"]:not([disabled]):hover,
.fruity input[type="email"]:not([disabled]):hover,
.fruity input[type="password"]:not([disabled]):hover,
.fruity input[type="number"]:not([disabled]):hover,
.fruity select:not([disabled]):hover {
  border-color: #5AA1EC;
  transition: all 200ms ease-in-out;
}

.fruity textarea:not([disabled]):focus,
.fruity input[type="text"]:not([disabled]):focus,
.fruity input[type="email"]:not([disabled]):focus,
.fruity input[type="password"]:not([disabled]):focus,
.fruity input[type="number"]:not([disabled]):focus,
.fruity select:not([disabled]):focus {
  border-color: #5AA1EC;
  box-shadow: 0 0 0 0.2rem #BFDCF8;
  outline: none;
  transition: all 200ms ease-in-out;
}

/* UTILITY */
.ls-input-group-extra {
    display: none;
}

.space-col {
  margin-bottom: 0;
}