@charset "UTF-8";
/* Dashboard Mobile Responsive Styles */
/* Mobile styles for screens smaller than 768px */
@media (max-width: 767px) {
  /* Layout adjustments */
  /* line 6, app/assets/stylesheets/dashboard_mobile.scss */
  .dashboard-wrapper {
    flex-direction: column;
  }
  /* line 10, app/assets/stylesheets/dashboard_mobile.scss */
  .sidebar {
    position: fixed !important;
    left: -280px !important;
    top: 0 !important;
    height: 100vh !important;
    width: 280px !important;
    z-index: 1050 !important;
    transition: left 0.3s ease !important;
    background: rgba(255, 255, 255, 0.95) !important;
    backdrop-filter: blur(20px) !important;
    box-shadow: 4px 0 20px rgba(0, 0, 0, 0.1) !important;
  }
  /* line 23, app/assets/stylesheets/dashboard_mobile.scss */
  .sidebar.show {
    left: 0 !important;
  }
  /* Add backdrop overlay when sidebar is open */
  /* line 28, app/assets/stylesheets/dashboard_mobile.scss */
  .sidebar.show::before {
    content: '' !important;
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    width: 100vw !important;
    height: 100vh !important;
    background: rgba(0, 0, 0, 0.5) !important;
    z-index: 1040 !important;
    pointer-events: none !important;
  }
  /* Ensure sidebar is above backdrop */
  /* line 41, app/assets/stylesheets/dashboard_mobile.scss */
  .sidebar.show {
    z-index: 1050 !important;
  }
  /* Make sure sidebar content is visible */
  /* line 46, app/assets/stylesheets/dashboard_mobile.scss */
  .sidebar * {
    visibility: visible !important;
    opacity: 1 !important;
  }
  /* line 51, app/assets/stylesheets/dashboard_mobile.scss */
  .sidebar .sidebar-header,
.sidebar .sidebar-nav,
.sidebar .sidebar-footer {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  /* line 59, app/assets/stylesheets/dashboard_mobile.scss */
  .sidebar .nav-list {
    list-style: none !important;
    padding: 0 !important;
    margin: 0 !important;
  }
  /* line 65, app/assets/stylesheets/dashboard_mobile.scss */
  .sidebar .nav-item {
    margin: 0.25rem 1rem !important;
  }
  /* line 69, app/assets/stylesheets/dashboard_mobile.scss */
  .sidebar .nav-link {
    display: flex !important;
    align-items: center !important;
    gap: 0.75rem !important;
    padding: 0.875rem 1rem !important;
    color: #64748b !important;
    text-decoration: none !important;
    border-radius: 12px !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
  }
  /* line 81, app/assets/stylesheets/dashboard_mobile.scss */
  .sidebar .nav-link:hover {
    background: rgba(102, 126, 234, 0.1) !important;
    color: #667eea !important;
  }
  /* line 86, app/assets/stylesheets/dashboard_mobile.scss */
  .sidebar .nav-link.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
  }
  /* line 91, app/assets/stylesheets/dashboard_mobile.scss */
  .main-content {
    margin-left: 0 !important;
    width: 100% !important;
    padding-top: 60px !important;
  }
  /* line 97, app/assets/stylesheets/dashboard_mobile.scss */
  .top-nav {
    position: fixed !important;
    top: 0 !important;
    left: 0 !important;
    right: 0 !important;
    height: 60px !important;
    padding: 0.5rem 1rem !important;
    z-index: 1000 !important;
  }
  /* Mobile Navigation Buttons - only show on mobile */
  /* line 108, app/assets/stylesheets/dashboard_mobile.scss */
  .mobile-nav-buttons {
    display: flex !important;
    gap: 0.5rem !important;
    align-items: center !important;
  }
  /* Hide sidebar on mobile since we have nav buttons */
  /* line 115, app/assets/stylesheets/dashboard_mobile.scss */
  .sidebar {
    display: none !important;
  }
  /* line 119, app/assets/stylesheets/dashboard_mobile.scss */
  .mobile-nav-btn {
    display: flex !important;
    align-items: center !important;
    gap: 0.25rem !important;
    padding: 0.5rem 0.75rem !important;
    background: rgba(255, 255, 255, 0.9) !important;
    border-radius: 8px !important;
    color: #64748b !important;
    text-decoration: none !important;
    font-size: 0.8rem !important;
    font-weight: 500 !important;
    transition: all 0.3s ease !important;
    border: 1px solid rgba(255, 255, 255, 0.2) !important;
  }
  /* line 134, app/assets/stylesheets/dashboard_mobile.scss */
  .mobile-nav-btn:hover {
    background: rgba(102, 126, 234, 0.1) !important;
    color: #667eea !important;
    transform: translateY(-1px) !important;
  }
  /* line 140, app/assets/stylesheets/dashboard_mobile.scss */
  .mobile-nav-btn.active {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%) !important;
    color: white !important;
  }
  /* Logout button styling */
  /* line 146, app/assets/stylesheets/dashboard_mobile.scss */
  .mobile-logout-btn {
    background: rgba(239, 68, 68, 0.1) !important;
    color: #ef4444 !important;
    border-color: rgba(239, 68, 68, 0.2) !important;
  }
  /* line 152, app/assets/stylesheets/dashboard_mobile.scss */
  .mobile-logout-btn:hover {
    background: rgba(239, 68, 68, 0.2) !important;
    color: #dc2626 !important;
  }
  /* line 157, app/assets/stylesheets/dashboard_mobile.scss */
  .mobile-nav-btn i {
    font-size: 0.9rem !important;
  }
  /* line 161, app/assets/stylesheets/dashboard_mobile.scss */
  .mobile-nav-btn span {
    display: none !important;
  }
  /* Show text on larger mobile screens */
}

@media (max-width: 767px) and (min-width: 480px) {
  /* line 167, app/assets/stylesheets/dashboard_mobile.scss */
  .mobile-nav-btn span {
    display: inline !important;
  }
}

@media (max-width: 767px) {
  /* Page content adjustments */
  /* line 173, app/assets/stylesheets/dashboard_mobile.scss */
  .page-content {
    margin: 0.25rem !important;
    padding: 0.75rem !important;
    border-radius: 8px !important;
  }
  /* Header adjustments */
  /* line 180, app/assets/stylesheets/dashboard_mobile.scss */
  .d-flex.justify-content-between {
    flex-direction: column !important;
    gap: 0.5rem !important;
    align-items: stretch !important;
    margin-bottom: 1rem !important;
  }
  /* line 187, app/assets/stylesheets/dashboard_mobile.scss */
  .dashboard-header-content {
    text-align: center !important;
  }
  /* line 191, app/assets/stylesheets/dashboard_mobile.scss */
  .dashboard-header-content h1 {
    font-size: 1.5rem !important;
    margin-bottom: 0.5rem !important;
  }
  /* line 196, app/assets/stylesheets/dashboard_mobile.scss */
  .dashboard-header-content p {
    font-size: 0.9rem !important;
    margin-bottom: 0 !important;
  }
  /* line 201, app/assets/stylesheets/dashboard_mobile.scss */
  .add-event-btn {
    width: 100% !important;
    padding: 1rem !important;
    font-size: 1rem !important;
    border-radius: 12px !important;
    min-height: 50px !important;
  }
  /* Stats cards - make them much smaller and compact */
  /* line 210, app/assets/stylesheets/dashboard_mobile.scss */
  .row.mb-4 {
    margin: 0 -0.15rem 0.5rem -0.15rem !important;
  }
  /* line 214, app/assets/stylesheets/dashboard_mobile.scss */
  .col-xl-3 {
    padding: 0 0.15rem !important;
    margin-bottom: 0.3rem !important;
  }
  /* Extra small mobile devices - make cards even smaller */
}

@media (max-width: 767px) and (max-width: 576px) {
  /* line 221, app/assets/stylesheets/dashboard_mobile.scss */
  .col-6 {
    padding: 0 0.1rem !important;
    margin-bottom: 0.2rem !important;
  }
  /* line 226, app/assets/stylesheets/dashboard_mobile.scss */
  .card {
    border-radius: 4px !important;
    margin-bottom: 0.2rem !important;
  }
  /* line 231, app/assets/stylesheets/dashboard_mobile.scss */
  .card-body {
    padding: 0.4rem !important;
  }
  /* line 235, app/assets/stylesheets/dashboard_mobile.scss */
  .card .text-xs {
    font-size: 0.55rem !important;
    margin-bottom: 0.15rem !important;
  }
  /* line 240, app/assets/stylesheets/dashboard_mobile.scss */
  .card .h5 {
    font-size: 1rem !important;
    margin: 0 !important;
  }
  /* line 245, app/assets/stylesheets/dashboard_mobile.scss */
  .card .fa-2x {
    font-size: 1rem !important;
  }
  /* line 249, app/assets/stylesheets/dashboard_mobile.scss */
  .card .col-auto {
    padding-left: 0.3rem !important;
  }
}

@media (max-width: 767px) {
  /* line 254, app/assets/stylesheets/dashboard_mobile.scss */
  .card {
    border-radius: 6px !important;
    margin-bottom: 0.3rem !important;
  }
  /* line 259, app/assets/stylesheets/dashboard_mobile.scss */
  .card-body {
    padding: 0.5rem !important;
  }
  /* Make card content smaller */
  /* line 264, app/assets/stylesheets/dashboard_mobile.scss */
  .card .text-xs {
    font-size: 0.6rem !important;
    margin-bottom: 0.2rem !important;
  }
  /* line 269, app/assets/stylesheets/dashboard_mobile.scss */
  .card .h5 {
    font-size: 1.2rem !important;
    margin: 0 !important;
  }
  /* line 274, app/assets/stylesheets/dashboard_mobile.scss */
  .card .fa-2x {
    font-size: 1.2rem !important;
  }
  /* line 278, app/assets/stylesheets/dashboard_mobile.scss */
  .card .col-auto {
    padding-left: 0.5rem !important;
  }
  /* line 282, app/assets/stylesheets/dashboard_mobile.scss */
  .text-xs {
    font-size: 0.7rem !important;
  }
  /* line 286, app/assets/stylesheets/dashboard_mobile.scss */
  .h5 {
    font-size: 1.5rem !important;
  }
  /* line 290, app/assets/stylesheets/dashboard_mobile.scss */
  .fa-2x {
    font-size: 1.5rem !important;
  }
  /* Search container */
  /* line 295, app/assets/stylesheets/dashboard_mobile.scss */
  .search-container {
    padding: 1rem !important;
    margin-bottom: 1rem !important;
  }
  /* line 300, app/assets/stylesheets/dashboard_mobile.scss */
  .search-container .row {
    margin: 0 !important;
  }
  /* line 304, app/assets/stylesheets/dashboard_mobile.scss */
  .search-container .col-md-6 {
    margin-bottom: 1rem !important;
    padding: 0 !important;
  }
  /* line 309, app/assets/stylesheets/dashboard_mobile.scss */
  .search-container .col-md-6:last-child {
    margin-bottom: 0 !important;
  }
  /* line 313, app/assets/stylesheets/dashboard_mobile.scss */
  .search-input,
.search-select {
    height: 45px !important;
    font-size: 0.9rem !important;
    padding: 0.6rem 0.8rem !important;
  }
  /* Table adjustments - ensure all content is visible */
  /* line 321, app/assets/stylesheets/dashboard_mobile.scss */
  .table-responsive {
    border-radius: 12px !important;
    margin-bottom: 1rem !important;
    overflow-x: scroll !important;
    -webkit-overflow-scrolling: touch !important;
    scrollbar-width: thin !important;
    scrollbar-color: #667eea #f1f5f9 !important;
  }
  /* Custom scrollbar for webkit browsers */
  /* line 331, app/assets/stylesheets/dashboard_mobile.scss */
  .table-responsive::-webkit-scrollbar {
    height: 8px !important;
  }
  /* line 335, app/assets/stylesheets/dashboard_mobile.scss */
  .table-responsive::-webkit-scrollbar-track {
    background: #f1f5f9 !important;
    border-radius: 4px !important;
  }
  /* line 340, app/assets/stylesheets/dashboard_mobile.scss */
  .table-responsive::-webkit-scrollbar-thumb {
    background: #667eea !important;
    border-radius: 4px !important;
  }
  /* line 345, app/assets/stylesheets/dashboard_mobile.scss */
  .table-responsive::-webkit-scrollbar-thumb:hover {
    background: #5a67d8 !important;
  }
  /* line 349, app/assets/stylesheets/dashboard_mobile.scss */
  .table {
    font-size: 0.8rem !important;
    min-width: 800px !important;
    width: 100% !important;
  }
  /* line 355, app/assets/stylesheets/dashboard_mobile.scss */
  .table thead th {
    padding: 0.75rem 0.5rem !important;
    font-size: 0.7rem !important;
    white-space: nowrap !important;
    position: sticky !important;
    top: 0 !important;
    background: #667eea !important;
    color: white !important;
    z-index: 10 !important;
  }
  /* line 366, app/assets/stylesheets/dashboard_mobile.scss */
  .table td {
    padding: 0.75rem 0.5rem !important;
    vertical-align: middle !important;
  }
  /* line 371, app/assets/stylesheets/dashboard_mobile.scss */
  .table td h6 {
    font-size: 0.9rem !important;
    margin-bottom: 0.25rem !important;
  }
  /* line 376, app/assets/stylesheets/dashboard_mobile.scss */
  .table td small {
    font-size: 0.75rem !important;
  }
  /* Button adjustments - make all buttons visible and touch-friendly */
  /* line 381, app/assets/stylesheets/dashboard_mobile.scss */
  .btn-sm {
    font-size: 0.8rem !important;
    padding: 0.5rem 0.75rem !important;
    min-height: 40px !important;
    margin: 0.25rem 0.1rem !important;
    white-space: nowrap !important;
  }
  /* line 389, app/assets/stylesheets/dashboard_mobile.scss */
  .btn-group-vertical {
    width: 100% !important;
  }
  /* line 393, app/assets/stylesheets/dashboard_mobile.scss */
  .btn-group-vertical .btn {
    width: 100% !important;
    margin-bottom: 0.25rem !important;
    min-height: 40px !important;
    font-size: 0.8rem !important;
    padding: 0.5rem 0.75rem !important;
  }
  /* Ensure all buttons are visible */
  /* line 402, app/assets/stylesheets/dashboard_mobile.scss */
  .table td .btn {
    display: inline-block !important;
    visibility: visible !important;
    opacity: 1 !important;
  }
  /* Badge adjustments */
  /* line 409, app/assets/stylesheets/dashboard_mobile.scss */
  .badge {
    font-size: 0.7rem !important;
    padding: 0.3rem 0.6rem !important;
  }
  /* Image adjustments */
  /* line 415, app/assets/stylesheets/dashboard_mobile.scss */
  .table td img {
    max-width: 40px !important;
    max-height: 40px !important;
  }
  /* Make all columns visible but mobile-friendly */
  /* line 421, app/assets/stylesheets/dashboard_mobile.scss */
  .table-responsive .table th,
.table-responsive .table td {
    min-width: auto !important;
    white-space: normal !important;
    display: table-cell !important;
    visibility: visible !important;
  }
  /* Add scroll indicator */
  /* line 430, app/assets/stylesheets/dashboard_mobile.scss */
  .table-responsive::after {
    content: "← Scroll →" !important;
    position: absolute !important;
    bottom: -25px !important;
    left: 50% !important;
    transform: translateX(-50%) !important;
    background: rgba(102, 126, 234, 0.9) !important;
    color: white !important;
    padding: 0.25rem 0.75rem !important;
    border-radius: 12px !important;
    font-size: 0.7rem !important;
    font-weight: 500 !important;
    z-index: 5 !important;
  }
  /* Ensure all table content is visible */
  /* line 446, app/assets/stylesheets/dashboard_mobile.scss */
  .table-responsive .table * {
    visibility: visible !important;
    display: block !important;
  }
  /* line 451, app/assets/stylesheets/dashboard_mobile.scss */
  .table-responsive .table td * {
    display: inline-block !important;
  }
  /* line 455, app/assets/stylesheets/dashboard_mobile.scss */
  .table-responsive .table .btn-group-vertical {
    display: block !important;
  }
  /* line 459, app/assets/stylesheets/dashboard_mobile.scss */
  .table-responsive .table .btn-group-vertical .btn {
    display: block !important;
    width: 100% !important;
    margin-bottom: 0.25rem !important;
  }
  /* Form controls */
  /* line 466, app/assets/stylesheets/dashboard_mobile.scss */
  .form-control {
    font-size: 0.9rem !important;
    padding: 0.6rem 0.8rem !important;
    min-height: 45px !important;
  }
  /* Modal adjustments */
  /* line 473, app/assets/stylesheets/dashboard_mobile.scss */
  .modal-dialog {
    margin: 0.5rem !important;
    max-width: calc(100% - 1rem) !important;
  }
  /* line 478, app/assets/stylesheets/dashboard_mobile.scss */
  .modal-header,
.modal-body,
.modal-footer {
    padding: 1rem !important;
  }
  /* Alert adjustments */
  /* line 485, app/assets/stylesheets/dashboard_mobile.scss */
  .alert {
    padding: 0.75rem 1rem !important;
    margin-bottom: 0.75rem !important;
  }
  /* line 490, app/assets/stylesheets/dashboard_mobile.scss */
  .alert-title {
    font-size: 0.85rem !important;
  }
  /* line 494, app/assets/stylesheets/dashboard_mobile.scss */
  .alert-message {
    font-size: 0.8rem !important;
  }
}

/* Extra small devices */
@media (max-width: 576px) {
  /* line 501, app/assets/stylesheets/dashboard_mobile.scss */
  .page-content {
    margin: 0.1rem !important;
    padding: 0.5rem !important;
  }
  /* line 506, app/assets/stylesheets/dashboard_mobile.scss */
  .dashboard-header-content h1 {
    font-size: 1.25rem !important;
  }
  /* line 510, app/assets/stylesheets/dashboard_mobile.scss */
  .dashboard-header-content p {
    font-size: 0.8rem !important;
  }
  /* line 514, app/assets/stylesheets/dashboard_mobile.scss */
  .add-event-btn {
    padding: 0.75rem !important;
    font-size: 0.9rem !important;
  }
  /* line 519, app/assets/stylesheets/dashboard_mobile.scss */
  .card-body {
    padding: 0.75rem !important;
  }
  /* line 523, app/assets/stylesheets/dashboard_mobile.scss */
  .text-xs {
    font-size: 0.65rem !important;
  }
  /* line 527, app/assets/stylesheets/dashboard_mobile.scss */
  .h5 {
    font-size: 1.25rem !important;
  }
  /* line 531, app/assets/stylesheets/dashboard_mobile.scss */
  .fa-2x {
    font-size: 1.25rem !important;
  }
  /* line 535, app/assets/stylesheets/dashboard_mobile.scss */
  .search-container {
    padding: 0.75rem !important;
  }
  /* line 539, app/assets/stylesheets/dashboard_mobile.scss */
  .search-input,
.search-select {
    height: 40px !important;
    font-size: 0.85rem !important;
    padding: 0.5rem 0.6rem !important;
  }
  /* line 546, app/assets/stylesheets/dashboard_mobile.scss */
  .table {
    font-size: 0.75rem !important;
  }
  /* line 550, app/assets/stylesheets/dashboard_mobile.scss */
  .table thead th {
    padding: 0.5rem 0.25rem !important;
    font-size: 0.65rem !important;
  }
  /* line 555, app/assets/stylesheets/dashboard_mobile.scss */
  .table td {
    padding: 0.5rem 0.25rem !important;
  }
  /* line 559, app/assets/stylesheets/dashboard_mobile.scss */
  .table td h6 {
    font-size: 0.85rem !important;
  }
  /* line 563, app/assets/stylesheets/dashboard_mobile.scss */
  .table td small {
    font-size: 0.7rem !important;
  }
  /* line 567, app/assets/stylesheets/dashboard_mobile.scss */
  .btn-sm {
    font-size: 0.7rem !important;
    padding: 0.3rem 0.5rem !important;
    min-height: 32px !important;
  }
  /* line 573, app/assets/stylesheets/dashboard_mobile.scss */
  .btn-group-vertical .btn {
    min-height: 32px !important;
  }
  /* line 577, app/assets/stylesheets/dashboard_mobile.scss */
  .badge {
    font-size: 0.65rem !important;
    padding: 0.25rem 0.5rem !important;
  }
  /* line 582, app/assets/stylesheets/dashboard_mobile.scss */
  .table td img {
    max-width: 35px !important;
    max-height: 35px !important;
  }
  /* line 587, app/assets/stylesheets/dashboard_mobile.scss */
  .form-control {
    font-size: 0.85rem !important;
    padding: 0.5rem 0.6rem !important;
    min-height: 40px !important;
  }
  /* line 593, app/assets/stylesheets/dashboard_mobile.scss */
  .modal-dialog {
    margin: 0.25rem !important;
    max-width: calc(100% - 0.5rem) !important;
  }
  /* line 598, app/assets/stylesheets/dashboard_mobile.scss */
  .modal-header,
.modal-body,
.modal-footer {
    padding: 0.75rem !important;
  }
}
/* line 5, app/assets/stylesheets/events.scss */
.invisible {
  visibility: hidden;
}

/* line 9, app/assets/stylesheets/events.scss */
.avatar {
  vertical-align: middle;
  width: 50px;
  height: 50px;
  border-radius: 50%;
}

/* line 16, app/assets/stylesheets/events.scss */
.custom-file-input {
  display: none;
  /* Hide the default file input */
}

/* line 20, app/assets/stylesheets/events.scss */
.custom-file-label {
  background-color: #f8f9fa;
  border: 1px solid #ced4da;
  border-radius: 0.25rem;
  padding: 0.375rem 0.75rem;
  cursor: pointer;
}

/* line 28, app/assets/stylesheets/events.scss */
.file-name {
  display: inline-block;
  padding-left: 0.5rem;
  color: black;
  /* Set the color of the file name text */
}
/* line 1, app/assets/stylesheets/scaffolds.scss */
body {
  background-color: #fff;
  color: #333;
  margin: 0;
}

/* line 6, app/assets/stylesheets/scaffolds.scss */
body, p, ol, ul, td {
  font-family: verdana, arial, helvetica, sans-serif;
  font-size: 13px;
  line-height: 18px;
}

/* line 11, app/assets/stylesheets/scaffolds.scss */
pre {
  background-color: #eee;
  padding: 10px;
  font-size: 11px;
}

/* line 16, app/assets/stylesheets/scaffolds.scss */
a {
  color: #000;
}

/* line 19, app/assets/stylesheets/scaffolds.scss */
a:visited {
  color: #666;
}

/* line 22, app/assets/stylesheets/scaffolds.scss */
a:hover {
  color: #fff;
  background-color: #000;
}

/* line 26, app/assets/stylesheets/scaffolds.scss */
th {
  padding-bottom: 5px;
}

/* line 29, app/assets/stylesheets/scaffolds.scss */
td {
  padding: 0 5px 7px;
}

/* line 32, app/assets/stylesheets/scaffolds.scss */
div.field,
div.actions {
  margin-bottom: 10px;
}

/* line 36, app/assets/stylesheets/scaffolds.scss */
#notice {
  color: green;
}

/* line 39, app/assets/stylesheets/scaffolds.scss */
.field_with_errors {
  padding: 2px;
  background-color: red;
  display: table;
}

/* line 44, app/assets/stylesheets/scaffolds.scss */
#error_explanation {
  width: 450px;
  border: 2px solid red;
  padding: 7px 7px 0;
  margin-bottom: 20px;
  background-color: #f0f0f0;
}

/* line 51, app/assets/stylesheets/scaffolds.scss */
#error_explanation h2 {
  text-align: left;
  font-weight: bold;
  padding: 5px 5px 5px 15px;
  font-size: 12px;
  margin: -7px -7px 0;
  background-color: #c00;
  color: #fff;
}

/* line 60, app/assets/stylesheets/scaffolds.scss */
#error_explanation ul li {
  font-size: 12px;
  list-style: square;
}

/* line 64, app/assets/stylesheets/scaffolds.scss */
label {
  display: block;
}
/* line 4, app/assets/stylesheets/sundry.scss */
html,
body {
  font-size: 15px;
}

/* line 10, app/assets/stylesheets/sundry.scss */
.main-container {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-flow: column;
  justify-content: center;
  align-items: center;
}

/* line 20, app/assets/stylesheets/sundry.scss */
.check-container {
  width: 6.25rem;
  height: 7.5rem;
  display: flex;
  flex-flow: column;
  align-items: center;
  justify-content: space-between;
}

/* line 28, app/assets/stylesheets/sundry.scss */
.check-container .check-background {
  width: 100%;
  height: calc(100% - 1.25rem);
  background: linear-gradient(to bottom right, #5de593, #41d67c);
  box-shadow: 0px 0px 0px 65px rgba(255, 255, 255, 0.25) inset, 0px 0px 0px 65px rgba(255, 255, 255, 0.25) inset;
  transform: scale(0.84);
  border-radius: 50%;
  animation: animateContainer 0.75s ease-out forwards 0.75s;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
}

/* line 42, app/assets/stylesheets/sundry.scss */
.check-container .check-background svg {
  width: 65%;
  transform: translateY(0.25rem);
  stroke-dasharray: 80;
  stroke-dashoffset: 80;
  animation: animateCheck 0.35s forwards 1.25s ease-out;
}

/* line 51, app/assets/stylesheets/sundry.scss */
.check-container .check-shadow {
  bottom: calc(-15% - 5px);
  left: 0;
  border-radius: 50%;
  background: radial-gradient(closest-side, #49da83, transparent);
  animation: animateShadow 0.75s ease-out forwards 0.75s;
}

@keyframes animateContainer {
  0% {
    opacity: 0;
    transform: scale(0);
    box-shadow: 0px 0px 0px 65px rgba(255, 255, 255, 0.25) inset, 0px 0px 0px 65px rgba(255, 255, 255, 0.25) inset;
  }
  25% {
    opacity: 1;
    transform: scale(0.9);
    box-shadow: 0px 0px 0px 65px rgba(255, 255, 255, 0.25) inset, 0px 0px 0px 65px rgba(255, 255, 255, 0.25) inset;
  }
  43.75% {
    transform: scale(1.15);
    box-shadow: 0px 0px 0px 43.334px rgba(255, 255, 255, 0.25) inset, 0px 0px 0px 65px rgba(255, 255, 255, 0.25) inset;
  }
  62.5% {
    transform: scale(1);
    box-shadow: 0px 0px 0px 0px rgba(255, 255, 255, 0.25) inset, 0px 0px 0px 21.667px rgba(255, 255, 255, 0.25) inset;
  }
  81.25% {
    box-shadow: 0px 0px 0px 0px rgba(255, 255, 255, 0.25) inset, 0px 0px 0px 0px rgba(255, 255, 255, 0.25) inset;
  }
  100% {
    opacity: 1;
    box-shadow: 0px 0px 0px 0px rgba(255, 255, 255, 0.25) inset, 0px 0px 0px 0px rgba(255, 255, 255, 0.25) inset;
  }
}

@keyframes animateCheck {
  from {
    stroke-dashoffset: 80;
  }
  to {
    stroke-dashoffset: 0;
  }
}

@keyframes animateShadow {
  0% {
    opacity: 0;
    width: 100%;
    height: 15%;
  }
  25% {
    opacity: 0.25;
  }
  43.75% {
    width: 40%;
    height: 7%;
    opacity: 0.35;
  }
  100% {
    width: 85%;
    height: 15%;
    opacity: 0.25;
  }
}
/*
 * This is a manifest file that'll be compiled into application.css, which will include all the files
 * listed below.
 *
 * Any CSS and SCSS file within this directory, lib/assets/stylesheets, or any plugin's
 * vendor/assets/stylesheets directory can be referenced here using a relative path.
 *
 * You're free to add application-wide styles to this file and they'll appear at the bottom of the
 * compiled file so the styles you add here take precedence over styles defined in any other CSS/SCSS
 * files in this directory. Styles in this file should be added after the last require_* statement.
 * It is generally better to create a new file per style scope.
 *


 */

/*# sourceMappingURL=application.css-f993afab1c23bddb46c85ee4a59c9859e9fd0f2b4fc7384a13a65b422599b3ed.map */
