/**
 * Radiant World Employee Appraisal Form
 * IE11-compatible CSS with Radiant World branding
 *
 * Colors:
 * - Primary gold accent
 * - Dark charcoal (#3B3D40) for text
 * - White backgrounds
 * - Soft gray (#838D8F) for secondary text
 */

/* ==========================================================================
   CSS Reset / Normalize Basics
   ========================================================================== */

html {
  line-height: 1.15;
  -ms-text-size-adjust: 100%;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  padding: 0;
}

*,
*:before,
*:after {
  -webkit-box-sizing: border-box;
  -moz-box-sizing: border-box;
  box-sizing: border-box;
}

article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
  display: block;
}

img {
  border-style: none;
  max-width: 100%;
  height: auto;
}

button,
input,
optgroup,
select,
textarea {
  font-family: inherit;
  font-size: 100%;
  line-height: 1.15;
  margin: 0;
}

button,
input {
  overflow: visible;
}

button,
select {
  text-transform: none;
}

/* ==========================================================================
   Typography
   ========================================================================== */

body {
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: #3B3D40;
  background-color: #f5f5f5;
}

h1, h2, h3, h4, h5, h6 {
  margin-top: 0;
  margin-bottom: 0.5em;
  font-weight: 600;
  line-height: 1.2;
  color: #3B3D40;
}

h1 { font-size: 2em; }
h2 { font-size: 1.5em; }
h3 { font-size: 1.25em; }
h4 { font-size: 1em; }

p {
  margin-top: 0;
  margin-bottom: 1em;
}

a {
  color: #B8860B;
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

/* ==========================================================================
   Layout - IE11 Compatible (using floats and display:table)
   ========================================================================== */

.clearfix:after {
  content: "";
  display: table;
  clear: both;
}

.page-wrapper {
  min-height: 100vh;
  display: table;
  width: 100%;
  table-layout: fixed;
}

.container {
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 20px;
  padding-right: 20px;
}

/* ==========================================================================
   Header
   ========================================================================== */

.header {
  background-color: #ffffff;
  border-bottom: 3px solid #D4AF37;
  padding: 20px 0;
}

.header .container {
  text-align: center;
}

.header-logo {
  display: block;
  max-width: 200px;
  height: auto;
  margin-left: auto;
  margin-right: auto;
  margin-bottom: 15px;
}

.header-title {
  font-size: 1.5em;
  color: #3B3D40;
  margin: 0;
  font-weight: 600;
}

.header-subtitle {
  font-size: 1em;
  color: #838D8F;
  margin: 5px 0 0 0;
}

/* ==========================================================================
   Main Content Area
   ========================================================================== */

.main-content {
  padding: 30px 0;
  background-color: #f5f5f5;
}

.form-wrapper {
  background-color: #ffffff;
  border-radius: 4px;
  padding: 30px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.form-section {
  margin-bottom: 30px;
  padding-bottom: 30px;
  border-bottom: 1px solid #e0e0e0;
}

.form-section:last-child {
  margin-bottom: 0;
  padding-bottom: 0;
  border-bottom: none;
}

.section-title {
  font-size: 1.25em;
  font-weight: bold;
  color: #3B3D40;
  margin-bottom: 20px;
  padding-bottom: 10px;
  border-bottom: 2px solid #D4AF37;
}

.section-description {
  color: #838D8F;
  font-size: 0.9em;
  margin-bottom: 20px;
}

/* Subsection titles for KITE categories */
.subsection-title {
  font-size: 1.1em;
  color: #3B3D40;
  margin-top: 25px;
  margin-bottom: 15px;
  padding-bottom: 8px;
  border-bottom: 1px solid #D4AF37;
  font-weight: bold;
}

.subsection-title:first-of-type {
  margin-top: 0;
}

/* Overall Performance Rating Section */
.overall-rating-section {
  margin-top: 30px;
  padding: 20px;
  background: linear-gradient(135deg, #f8f4e8 0%, #fff 100%);
  border: 2px solid #D4AF37;
  border-radius: 8px;
  text-align: center;
}

.overall-rating-title {
  font-size: 1.1em;
  color: #3B3D40;
  margin-bottom: 8px;
  font-weight: 600;
}

.overall-rating-formula {
  font-size: 0.85em;
  color: #838D8F;
  margin-bottom: 15px;
  font-style: italic;
}

.overall-rating-display {
  display: inline-block;
}

.overall-rating-value {
  font-size: 2.5em;
  font-weight: 700;
  color: #D4AF37;
  display: block;
}

.overall-rating-label {
  font-size: 0.9em;
  color: #838D8F;
}

/* ==========================================================================
   Form Elements - IE11 Compatible
   ========================================================================== */

.form-group {
  margin-bottom: 20px;
}

.form-group:after {
  content: "";
  display: table;
  clear: both;
}

.form-label {
  display: block;
  margin-bottom: 8px;
  font-weight: 600;
  color: #3B3D40;
}

.form-label .required {
  color: #c0392b;
}

.form-input,
.form-select,
.form-textarea {
  display: block;
  width: 100%;
  padding: 12px 15px;
  font-size: 16px;
  line-height: 1.5;
  color: #3B3D40;
  background-color: #ffffff;
  border: 1px solid #ccc;
  border-radius: 4px;
  -webkit-transition: border-color 0.15s ease-in-out;
  -moz-transition: border-color 0.15s ease-in-out;
  -o-transition: border-color 0.15s ease-in-out;
  transition: border-color 0.15s ease-in-out;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
  outline: none;
  border-color: #D4AF37;
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.2);
}

.form-input:disabled,
.form-select:disabled,
.form-textarea:disabled {
  background-color: #f5f5f5;
  cursor: not-allowed;
}

.form-textarea {
  min-height: 120px;
  resize: vertical;
}

.form-select {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23838D8F'%3E%3Cpath d='M10.293 3.293L6 7.586 1.707 3.293A1 1 0 00.293 4.707l5 5a1 1 0 001.414 0l5-5a1 1 0 10-1.414-1.414z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 15px center;
  padding-right: 40px;
}

/* IE11 select fix */
.form-select::-ms-expand {
  display: none;
}

.form-help {
  display: block;
  margin-top: 5px;
  font-size: 0.85em;
  color: #838D8F;
}

.form-error {
  color: #c0392b;
  font-size: 0.85em;
  margin-top: 5px;
}

.form-input-error,
.form-select-error,
.form-textarea-error {
  border-color: #c0392b;
}

.form-input-error:focus,
.form-select-error:focus,
.form-textarea-error:focus {
  border-color: #c0392b;
  box-shadow: 0 0 0 2px rgba(192, 57, 43, 0.2);
}

/* ==========================================================================
   Rating Scale - IE11 Compatible (using floats)
   ========================================================================== */

.rating-group {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e0e0e0;
}

.rating-group:last-of-type {
  border-bottom: none;
}

.rating-question {
  font-weight: 600;
  color: #3B3D40;
  margin-bottom: 10px;
}

/* Rating Legend Box */
.rating-legend {
  background-color: #f9f9f9;
  border: 1px solid #e0e0e0;
  border-radius: 4px;
  padding: 15px 20px;
  margin-bottom: 25px;
}

.rating-legend-title {
  font-size: 1em;
  font-weight: bold;
  color: #3B3D40;
  margin-bottom: 10px;
  padding-bottom: 8px;
  border-bottom: 1px solid #e0e0e0;
}

.rating-legend-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.rating-legend-list li {
  padding: 4px 0;
  font-size: 0.9em;
  color: #3B3D40;
}

.rating-legend-list li strong {
  color: #D4AF37;
  display: inline-block;
  width: 20px;
}

/* Rating Scale (inline radio buttons) */
.rating-scale {
  overflow: hidden;
  margin-bottom: 10px;
}

.rating-scale:after {
  content: "";
  display: table;
  clear: both;
}

.rating-options {
  overflow: hidden;
}

.rating-option {
  float: left;
  width: 20%;
  text-align: center;
  padding: 5px;
}

.rating-option input[type="radio"] {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
}

.rating-option .rating-value {
  display: block;
  padding: 12px 8px;
  border: 2px solid #e0e0e0;
  border-radius: 4px;
  cursor: pointer;
  font-size: 1em;
  font-weight: 600;
  color: #3B3D40;
  background-color: #ffffff;
  -webkit-transition: all 0.15s ease-in-out;
  -moz-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}

.rating-option .rating-value:hover {
  border-color: #D4AF37;
  background-color: #fffdf5;
}

.rating-option input[type="radio"]:checked + .rating-value {
  background-color: #D4AF37;
  border-color: #D4AF37;
  color: #ffffff;
}

.rating-option input[type="radio"]:focus + .rating-value {
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.4);
}

.rating-value {
  display: block;
  font-size: 1.25em;
  font-weight: 600;
}

.rating-label {
  display: block;
  font-size: 0.7em;
  color: #838D8F;
  line-height: 1.2;
  margin-top: 5px;
}

.rating-option input[type="radio"]:checked + label .rating-label {
  color: #ffffff;
}

/* Rating Remarks Textarea */
.rating-remarks {
  margin-top: 10px;
  min-height: 60px;
}

.rating-remarks.remarks-required {
  border-color: #D4AF37;
  background-color: #fffdf5;
}

.rating-remarks.remarks-required:focus {
  border-color: #D4AF37;
  box-shadow: 0 0 0 2px rgba(212, 175, 55, 0.3);
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
  display: inline-block;
  padding: 12px 30px;
  font-size: 16px;
  font-weight: 600;
  line-height: 1.5;
  text-align: center;
  text-decoration: none;
  vertical-align: middle;
  cursor: pointer;
  border: 2px solid transparent;
  border-radius: 4px;
  -webkit-transition: all 0.15s ease-in-out;
  -moz-transition: all 0.15s ease-in-out;
  -o-transition: all 0.15s ease-in-out;
  transition: all 0.15s ease-in-out;
}

.btn:focus {
  outline: none;
}

.btn-primary {
  color: #ffffff;
  background-color: #D4AF37;
  border-color: #D4AF37;
}

.btn-primary:hover {
  background-color: #B8960F;
  border-color: #B8960F;
}

.btn-primary:focus {
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.4);
}

.btn-secondary {
  color: #3B3D40;
  background-color: #ffffff;
  border-color: #ccc;
}

.btn-secondary:hover {
  background-color: #f5f5f5;
  border-color: #3B3D40;
}

.btn-secondary:focus {
  box-shadow: 0 0 0 3px rgba(59, 61, 64, 0.2);
}

.btn-lg {
  padding: 15px 40px;
  font-size: 18px;
}

.btn-block {
  display: block;
  width: 100%;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Button group for form navigation */
.btn-group {
  overflow: hidden;
  margin-top: 30px;
  padding-top: 20px;
  border-top: 1px solid #e0e0e0;
}

.btn-group .btn-prev {
  float: left;
}

.btn-group .btn-next {
  float: right;
}

/* ==========================================================================
   Progress Indicator
   ========================================================================== */

.progress-bar {
  background-color: #e0e0e0;
  height: 8px;
  border-radius: 4px;
  margin-bottom: 20px;
  overflow: hidden;
}

.progress-fill {
  background-color: #D4AF37;
  height: 100%;
  border-radius: 4px;
  -webkit-transition: width 0.3s ease-in-out;
  -moz-transition: width 0.3s ease-in-out;
  -o-transition: width 0.3s ease-in-out;
  transition: width 0.3s ease-in-out;
}

.progress-steps {
  overflow: hidden;
  margin-bottom: 30px;
}

.progress-step {
  float: left;
  text-align: center;
  position: relative;
}

.progress-step-number {
  display: block;
  width: 30px;
  height: 30px;
  line-height: 30px;
  margin-left: auto;
  margin-right: auto;
  border-radius: 50%;
  background-color: #e0e0e0;
  color: #838D8F;
  font-weight: 600;
  font-size: 14px;
}

.progress-step.active .progress-step-number,
.progress-step.completed .progress-step-number {
  background-color: #D4AF37;
  color: #ffffff;
}

.progress-step-label {
  display: block;
  margin-top: 8px;
  font-size: 0.75em;
  color: #838D8F;
}

.progress-step.active .progress-step-label {
  color: #3B3D40;
  font-weight: 600;
}

/* ==========================================================================
   Footer
   ========================================================================== */

.footer {
  background-color: #3B3D40;
  color: #ffffff;
  padding: 20px 0;
  text-align: center;
}

.footer p {
  margin: 0;
  font-size: 0.9em;
}

.footer a {
  color: #D4AF37;
}

.footer a:hover {
  color: #ffffff;
}

/* ==========================================================================
   Utility Classes
   ========================================================================== */

.text-center { text-align: center; }
.text-left { text-align: left; }
.text-right { text-align: right; }

.text-muted { color: #838D8F; }
.text-primary { color: #D4AF37; }
.text-dark { color: #3B3D40; }

.mt-0 { margin-top: 0; }
.mt-1 { margin-top: 10px; }
.mt-2 { margin-top: 20px; }
.mt-3 { margin-top: 30px; }

.mb-0 { margin-bottom: 0; }
.mb-1 { margin-bottom: 10px; }
.mb-2 { margin-bottom: 20px; }
.mb-3 { margin-bottom: 30px; }

.hidden { display: none; }

/* ==========================================================================
   Alert Messages
   ========================================================================== */

.alert {
  padding: 15px 20px;
  margin-bottom: 20px;
  border-radius: 4px;
  border: 1px solid transparent;
}

.alert-success {
  color: #155724;
  background-color: #d4edda;
  border-color: #c3e6cb;
}

.alert-error {
  color: #721c24;
  background-color: #f8d7da;
  border-color: #f5c6cb;
}

.alert-warning {
  color: #856404;
  background-color: #fff3cd;
  border-color: #ffeeba;
}

.alert-info {
  color: #0c5460;
  background-color: #d1ecf1;
  border-color: #bee5eb;
}

/* ==========================================================================
   Tables (for admin data display)
   ========================================================================== */

.table-responsive {
  width: 100%;
  overflow-x: auto;
}

.table {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 20px;
}

.table th,
.table td {
  padding: 12px 15px;
  text-align: left;
  border-bottom: 1px solid #e0e0e0;
}

.table th {
  background-color: #f5f5f5;
  font-weight: 600;
  color: #3B3D40;
}

.table tbody tr:hover {
  background-color: #f9f9f9;
}

/* ==========================================================================
   Responsive Design - Media Queries (IE11 Compatible)
   ========================================================================== */

/* Tablet and below */
@media screen and (max-width: 768px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }

  .form-wrapper {
    padding: 20px;
  }

  .header-title {
    font-size: 1.25em;
  }

  h1 { font-size: 1.75em; }
  h2 { font-size: 1.35em; }

  .rating-option {
    width: 20%;
    padding: 3px;
  }

  .rating-option label {
    padding: 8px 3px;
  }

  .rating-value {
    font-size: 1.1em;
  }

  .rating-label {
    font-size: 0.6em;
  }

  .btn-group .btn-prev,
  .btn-group .btn-next {
    float: none;
    display: block;
    width: 100%;
    margin-bottom: 10px;
  }

  .btn-group .btn-prev {
    margin-bottom: 10px;
  }

  .btn-group .btn-next {
    margin-bottom: 0;
  }
}

/* Mobile */
@media screen and (max-width: 480px) {
  body {
    font-size: 15px;
  }

  .header {
    padding: 15px 0;
  }

  .header-logo {
    max-width: 150px;
  }

  .header-title {
    font-size: 1.1em;
  }

  .form-wrapper {
    padding: 15px;
    border-radius: 0;
  }

  .main-content {
    padding: 15px 0;
  }

  .section-title {
    font-size: 1.1em;
  }

  .form-input,
  .form-select,
  .form-textarea {
    padding: 10px 12px;
  }

  .rating-option {
    width: 20%;
    padding: 2px;
  }

  .rating-option label {
    padding: 6px 2px;
  }

  .rating-value {
    font-size: 1em;
  }

  .rating-label {
    display: none;
  }

  .btn {
    padding: 10px 20px;
    font-size: 15px;
  }

  .btn-lg {
    padding: 12px 25px;
    font-size: 16px;
  }
}

/* ==========================================================================
   Review Section Styles
   ========================================================================== */

.review-section {
  margin-bottom: 25px;
  padding-bottom: 20px;
  border-bottom: 1px solid #e0e0e0;
}

.review-section:last-of-type {
  border-bottom: none;
}

.review-header {
  overflow: hidden;
  margin-bottom: 15px;
}

.review-header:after {
  content: "";
  display: table;
  clear: both;
}

.review-section-title {
  float: left;
  margin: 0;
  font-size: 1.1em;
  color: #3B3D40;
  line-height: 1.5;
}

.review-header .btn-edit,
.review-header .btn-toggle {
  float: right;
  margin-left: 10px;
}

.btn-link {
  background: none;
  border: none;
  color: #D4AF37;
  padding: 5px 10px;
  cursor: pointer;
  font-size: 0.85em;
  text-decoration: underline;
}

.btn-link:hover {
  color: #B8960F;
}

.btn-edit-small {
  background: none;
  border: none;
  color: #D4AF37;
  padding: 2px 5px;
  cursor: pointer;
  font-size: 0.75em;
  text-decoration: underline;
}

.btn-edit-small:hover {
  color: #B8960F;
}

.review-content {
  padding: 10px 15px;
  background-color: #f9f9f9;
  border-radius: 4px;
}

.review-collapsible {
  margin-top: 10px;
}

.review-item {
  overflow: hidden;
  padding: 8px 0;
  border-bottom: 1px solid #e0e0e0;
}

.review-item:last-child {
  border-bottom: none;
}

.review-item-block {
  display: block;
}

.review-label {
  font-weight: 600;
  color: #838D8F;
  font-size: 0.9em;
}

.review-item:not(.review-item-block) .review-label {
  float: left;
  width: 35%;
}

.review-item-block .review-label {
  display: block;
  margin-bottom: 5px;
}

.review-value {
  color: #3B3D40;
}

.review-item:not(.review-item-block) .review-value {
  float: right;
  width: 60%;
  text-align: right;
}

.review-item-block .review-value {
  display: block;
  white-space: pre-wrap;
  word-wrap: break-word;
}

/* ==========================================================================
   KITE Summary Styles
   ========================================================================== */

.kite-summary {
  overflow: hidden;
}

.kite-summary:after {
  content: "";
  display: table;
  clear: both;
}

.kite-score-box {
  float: left;
  width: 25%;
  padding: 10px;
  text-align: center;
}

.kite-letter {
  display: block;
  width: 50px;
  height: 50px;
  line-height: 50px;
  margin: 0 auto 8px auto;
  border-radius: 50%;
  background-color: #D4AF37;
  color: #ffffff;
  font-size: 1.5em;
  font-weight: 700;
}

.kite-category {
  display: block;
  font-size: 0.75em;
  color: #838D8F;
  line-height: 1.3;
  margin-bottom: 8px;
}

.kite-avg {
  display: block;
  font-size: 1.5em;
  font-weight: 700;
  color: #3B3D40;
}

.kite-details {
  margin-top: 15px;
}

.kite-detail-category {
  margin-bottom: 15px;
  padding-bottom: 15px;
  border-bottom: 1px solid #e0e0e0;
}

.kite-detail-category:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.kite-detail-title {
  font-size: 0.95em;
  color: #3B3D40;
  margin-bottom: 10px;
}

.kite-detail-list {
  list-style: none;
  margin: 0;
  padding: 0;
}

.kite-detail-item {
  overflow: hidden;
  padding: 5px 0;
}

.kite-detail-item:after {
  content: "";
  display: table;
  clear: both;
}

.kite-detail-label {
  float: left;
  color: #838D8F;
  font-size: 0.85em;
}

.kite-detail-value {
  float: right;
  font-weight: 600;
  color: #3B3D40;
}

/* ==========================================================================
   Submit Section Styles
   ========================================================================== */

.submit-section {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 2px solid #D4AF37;
}

.checkbox-label {
  display: block;
  cursor: pointer;
  padding: 10px;
  background-color: #f9f9f9;
  border-radius: 4px;
  border: 1px solid #e0e0e0;
}

.checkbox-label:hover {
  background-color: #fffdf5;
  border-color: #D4AF37;
}

.checkbox-label input[type="checkbox"] {
  margin-right: 10px;
  vertical-align: middle;
}

.checkbox-text {
  font-size: 0.95em;
  color: #3B3D40;
}

.submit-message {
  padding: 15px 20px;
  margin: 20px 0;
  border-radius: 4px;
  font-size: 0.95em;
}

.submit-message-info {
  color: #0c5460;
  background-color: #d1ecf1;
  border: 1px solid #bee5eb;
}

.submit-message-success {
  color: #155724;
  background-color: #d4edda;
  border: 1px solid #c3e6cb;
}

.submit-message-error {
  color: #721c24;
  background-color: #f8d7da;
  border: 1px solid #f5c6cb;
}

.btn-submit {
  float: right;
}

/* ==========================================================================
   Success Section Styles
   ========================================================================== */

.success-section {
  text-align: center;
  padding: 40px 20px;
}

.success-icon {
  display: inline-block;
  width: 80px;
  height: 80px;
  line-height: 80px;
  border-radius: 50%;
  background-color: #28a745;
  color: #ffffff;
  font-size: 3em;
  margin-bottom: 20px;
}

.success-section .section-title {
  border-bottom: none;
  color: #28a745;
}

.submission-id {
  margin-top: 30px;
  padding: 15px 20px;
  background-color: #f9f9f9;
  border-radius: 4px;
  font-size: 0.95em;
}

.submission-id span {
  font-weight: 600;
  color: #D4AF37;
}

/* ==========================================================================
   Deliverables Section
   ========================================================================== */

.deliverables-section {
  margin-top: 30px;
  padding-top: 20px;
  border-top: 2px solid #D4AF37;
}

.deliverables-title {
  font-size: 1.1em;
  font-weight: bold;
  color: #3B3D40;
  margin-bottom: 15px;
}

/* Smaller deliverable input fields */
.deliverable-input {
  min-height: 36px;
  resize: vertical;
}

/* ==========================================================================
   Responsive Adjustments for Review
   ========================================================================== */

@media screen and (max-width: 768px) {
  .kite-score-box {
    width: 50%;
    margin-bottom: 15px;
  }

  .review-item:not(.review-item-block) .review-label,
  .review-item:not(.review-item-block) .review-value {
    float: none;
    width: 100%;
    text-align: left;
  }

  .review-item:not(.review-item-block) .review-label {
    margin-bottom: 5px;
  }
}

@media screen and (max-width: 480px) {
  .review-section-title {
    float: none;
    margin-bottom: 10px;
  }

  .review-header .btn-edit,
  .review-header .btn-toggle {
    float: none;
    display: inline-block;
    margin-left: 0;
    margin-right: 5px;
  }

  .kite-letter {
    width: 40px;
    height: 40px;
    line-height: 40px;
    font-size: 1.2em;
  }

  .kite-avg {
    font-size: 1.2em;
  }

  .success-icon {
    width: 60px;
    height: 60px;
    line-height: 60px;
    font-size: 2em;
  }
}

/* ==========================================================================
   Print Styles
   ========================================================================== */

@media print {
  .header {
    border-bottom-color: #000000;
  }

  .footer {
    background-color: #ffffff;
    color: #3B3D40;
  }

  .btn {
    display: none;
  }

  .form-wrapper {
    box-shadow: none;
  }
}
