/******************
    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
*/

  .table-bordered > thead > tr > th {
    border: 1px solid #dadada;
  }
  .table-bordered > thead > tr > td {
    border: 1px solid #dadada;
  }
  /* Hide Donate button */
a[href*="donate"],
.btn-donate,
.donate {
    display: none !important;
}

/* Hide LimeSurvey Community Edition footer text */
.ls-footer,
footer,
#footer {
    display: none !important;
}
/* Base */
body,
#survey-container,
.survey-welcome,
.question-container {
  font-family: "Cairo", Arial, sans-serif;
}

/* Page background */
body {
  background: #f6f7fb;
}

/* Main card */
#survey-container,
.survey-welcome,
.group-container,
.question-container,
.container,
.main-container {
  background: #ffffff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 14px;
  box-shadow: 0 10px 30px rgba(0,0,0,.06);
}

/* Spacing */
#survey-container,
.main-container,
.container {
  padding: 22px;
  margin-top: 26px;
}

/* Headings */
h1, h2, h3, .h1, .h2, .h3 {
  letter-spacing: .2px;
}

/* Progress bar */
.progress {
  height: 10px;
  border-radius: 999px;
  background: rgba(0,0,0,.06);
}
.progress-bar {
  border-radius: 999px;
}

/* Inputs */
input[type="text"],
input[type="email"],
input[type="number"],
textarea,
select {
  border-radius: 10px !important;
  border: 1px solid rgba(0,0,0,.14) !important;
  padding: 10px 12px !important;
  outline: none !important;
}
input[type="text"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
textarea:focus,
select:focus {
  border-color: rgba(0,0,0,.35) !important;
  box-shadow: 0 0 0 4px rgba(0,0,0,.06) !important;
}

/

