/* line 4, app/assets/stylesheets/usercp/access_logs.scss */
.border-status-2xx {
  border-left-color: #28a745 !important;
}

/* line 8, app/assets/stylesheets/usercp/access_logs.scss */
.border-status-3xx {
  border-left-color: #007bff !important;
}

/* line 12, app/assets/stylesheets/usercp/access_logs.scss */
.border-status-4xx {
  border-left-color: #fd7e14 !important;
}

/* line 16, app/assets/stylesheets/usercp/access_logs.scss */
.border-status-5xx {
  border-left-color: #dc3545 !important;
}

/* line 20, app/assets/stylesheets/usercp/access_logs.scss */
.border-status-unknown {
  border-left-color: #6c757d !important;
}

/* line 25, app/assets/stylesheets/usercp/access_logs.scss */
.badge-status-2xx {
  background-color: #28a745 !important;
  color: #fff !important;
}

/* line 30, app/assets/stylesheets/usercp/access_logs.scss */
.badge-status-3xx {
  background-color: #007bff !important;
  color: #fff !important;
}

/* line 35, app/assets/stylesheets/usercp/access_logs.scss */
.badge-status-4xx {
  background-color: #fd7e14 !important;
  color: #fff !important;
}

/* line 40, app/assets/stylesheets/usercp/access_logs.scss */
.badge-status-5xx {
  background-color: #dc3545 !important;
  color: #fff !important;
}

/* line 45, app/assets/stylesheets/usercp/access_logs.scss */
.badge-status-unknown {
  background-color: #6c757d !important;
  color: #fff !important;
}

/* line 51, app/assets/stylesheets/usercp/access_logs.scss */
.status-positive {
  color: #28a745;
  font-weight: bold;
}

/* line 56, app/assets/stylesheets/usercp/access_logs.scss */
.status-negative {
  color: #dc3545;
  font-weight: bold;
}

/* line 61, app/assets/stylesheets/usercp/access_logs.scss */
.status-neutral {
  color: #6c757d;
}

/* line 65, app/assets/stylesheets/usercp/access_logs.scss */
.access-log-item {
  border-left: 2px solid;
  margin-bottom: 1px;
  background: #fff;
  border-radius: 0 4px 4px 0;
  transition: background-color 0.3s ease;
}

/* line 72, app/assets/stylesheets/usercp/access_logs.scss */
.access-log-item:hover {
  background: #f8f9fa;
}

/* line 76, app/assets/stylesheets/usercp/access_logs.scss */
.access-log-item.highlight-new {
  background-color: rgba(255, 255, 150, 0.7) !important;
  animation: fadeToNormal 2s ease-out forwards;
}

@keyframes fadeToNormal {
  0% {
    background-color: rgba(255, 255, 150, 0.7) !important;
  }
  100% {
    background-color: #fff !important;
  }
}

/* line 91, app/assets/stylesheets/usercp/access_logs.scss */
.access-log-header {
  padding: 6px 8px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
  font-size: 13px;
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* line 103, app/assets/stylesheets/usercp/access_logs.scss */
.access-log-chevron {
  color: #6c757d;
  font-size: 12px;
  transition: transform 0.2s ease;
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}

/* line 111, app/assets/stylesheets/usercp/access_logs.scss */
.access-log-chevron.expanded {
  transform: rotate(90deg);
}

/* line 116, app/assets/stylesheets/usercp/access_logs.scss */
.access-log-timestamp {
  color: #6c757d;
  min-width: 160px;
}

/* line 121, app/assets/stylesheets/usercp/access_logs.scss */
.access-log-ip {
  color: #007bff;
  min-width: 120px;
}

/* line 126, app/assets/stylesheets/usercp/access_logs.scss */
.access-log-host {
  color: #28a745;
  min-width: 140px;
}

/* line 131, app/assets/stylesheets/usercp/access_logs.scss */
.access-log-request {
  color: #343a40;
  flex: 1;
  word-break: break-all;
}

/* line 137, app/assets/stylesheets/usercp/access_logs.scss */
.access-log-status {
  color: #fff;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 11px;
  min-width: 40px;
  text-align: center;
}

/* line 147, app/assets/stylesheets/usercp/access_logs.scss */
.access-log-details {
  background: #f8f9fa;
  border-top: 1px solid #dee2e6;
  padding: 16px;
  font-size: 13px;
}

/* line 154, app/assets/stylesheets/usercp/access_logs.scss */
.access-log-details-grid {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 8px 16px;
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
}

/* line 161, app/assets/stylesheets/usercp/access_logs.scss */
.access-log-details-label {
  font-weight: 600;
  color: #495057;
}

/* line 166, app/assets/stylesheets/usercp/access_logs.scss */
.access-log-details-value {
  color: #343a40;
  word-break: break-all;
}

/* line 172, app/assets/stylesheets/usercp/access_logs.scss */
.border-log-critical {
  border-left-color: #dc3545 !important;
}

/* line 176, app/assets/stylesheets/usercp/access_logs.scss */
.border-log-error {
  border-left-color: #fd7e14 !important;
}

/* line 180, app/assets/stylesheets/usercp/access_logs.scss */
.border-log-warning {
  border-left-color: #ffc107 !important;
}

/* line 184, app/assets/stylesheets/usercp/access_logs.scss */
.border-log-info {
  border-left-color: #17a2b8 !important;
}

/* line 188, app/assets/stylesheets/usercp/access_logs.scss */
.border-log-debug {
  border-left-color: #6c757d !important;
}

/* line 192, app/assets/stylesheets/usercp/access_logs.scss */
.border-log-unknown {
  border-left-color: #6c757d !important;
}

/* line 197, app/assets/stylesheets/usercp/access_logs.scss */
.badge-log-critical {
  background-color: #dc3545 !important;
  color: #fff !important;
}

/* line 202, app/assets/stylesheets/usercp/access_logs.scss */
.badge-log-error {
  background-color: #fd7e14 !important;
  color: #fff !important;
}

/* line 207, app/assets/stylesheets/usercp/access_logs.scss */
.badge-log-warning {
  background-color: #ffc107 !important;
  color: #000 !important;
}

/* line 212, app/assets/stylesheets/usercp/access_logs.scss */
.badge-log-info {
  background-color: #17a2b8 !important;
  color: #fff !important;
}

/* line 217, app/assets/stylesheets/usercp/access_logs.scss */
.badge-log-debug {
  background-color: #6c757d !important;
  color: #fff !important;
}

/* line 222, app/assets/stylesheets/usercp/access_logs.scss */
.badge-log-unknown {
  background-color: #6c757d !important;
  color: #fff !important;
}

/* line 228, app/assets/stylesheets/usercp/access_logs.scss */
.log-item, .access-log-item {
  border-left: 2px solid;
  margin-bottom: 1px;
  background: #fff;
  border-radius: 0 4px 4px 0;
  transition: background-color 0.3s ease;
}

/* line 235, app/assets/stylesheets/usercp/access_logs.scss */
.log-item:hover, .access-log-item:hover {
  background: #f8f9fa;
}

/* line 239, app/assets/stylesheets/usercp/access_logs.scss */
.log-item.highlight-new, .highlight-new.access-log-item {
  background-color: rgba(255, 255, 150, 0.7) !important;
  animation: fadeToNormal 2s ease-out forwards;
}

/* line 246, app/assets/stylesheets/usercp/access_logs.scss */
.log-header, .access-log-header {
  padding: 6px 8px;
  cursor: pointer;
  -webkit-user-select: none;
     -moz-user-select: none;
          user-select: none;
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
  font-size: 13px;
  line-height: 1.4;
  display: flex;
  align-items: center;
  gap: 12px;
}

/* line 259, app/assets/stylesheets/usercp/access_logs.scss */
.log-chevron, .access-log-chevron {
  color: #6c757d;
  font-size: 12px;
  transition: transform 0.2s ease;
  width: 16px;
  text-align: center;
  flex-shrink: 0;
}

/* line 267, app/assets/stylesheets/usercp/access_logs.scss */
.log-chevron.expanded, .expanded.access-log-chevron {
  transform: rotate(90deg);
}

/* line 273, app/assets/stylesheets/usercp/access_logs.scss */
.log-details, .access-log-details {
  background: #f8f9fa;
  border-top: 1px solid #dee2e6;
  padding: 16px;
  font-size: 13px;
}

/* line 280, app/assets/stylesheets/usercp/access_logs.scss */
.log-details-grid, .access-log-details-grid {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 8px 16px;
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
}

/* line 287, app/assets/stylesheets/usercp/access_logs.scss */
.log-details-label, .access-log-details-label {
  font-weight: 600;
  color: #495057;
}

/* line 292, app/assets/stylesheets/usercp/access_logs.scss */
.log-details-value, .access-log-details-value {
  color: #343a40;
  word-break: break-all;
}

/* line 303, app/assets/stylesheets/usercp/access_logs.scss */
.log-hostname {
  color: #28a745;
  min-width: 140px;
}

/* line 308, app/assets/stylesheets/usercp/access_logs.scss */
.log-client-ip {
  color: #007bff;
  min-width: 120px;
}

/* line 313, app/assets/stylesheets/usercp/access_logs.scss */
.log-level {
  color: #fff;
  font-weight: 600;
  padding: 2px 6px;
  border-radius: 3px;
  font-size: 11px;
  min-width: 60px;
  text-align: center;
}

/* line 323, app/assets/stylesheets/usercp/access_logs.scss */
.log-module {
  color: #6c757d;
  min-width: 80px;
}

/* line 328, app/assets/stylesheets/usercp/access_logs.scss */
.log-message {
  color: #343a40;
  flex: 1;
  word-break: break-all;
}

/* line 334, app/assets/stylesheets/usercp/access_logs.scss */
.log-message-full {
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
  white-space: pre-wrap;
  word-break: break-word;
}

/* line 340, app/assets/stylesheets/usercp/access_logs.scss */
.log-timestamp {
  color: #6c757d;
  min-width: 160px;
}

/* line 379, app/assets/stylesheets/usercp/access_logs.scss */
.filter-section {
  background-color: #f8f9fa;
  padding: 15px;
  border-radius: 5px;
  margin-bottom: 20px;
}

/* line 387, app/assets/stylesheets/usercp/access_logs.scss */
.time-range-picker {
  position: relative;
}

/* line 390, app/assets/stylesheets/usercp/access_logs.scss */
.time-range-picker .time-range-button {
  display: flex;
  align-items: center;
  min-width: 200px;
  text-align: left;
  justify-content: space-between;
}

/* line 397, app/assets/stylesheets/usercp/access_logs.scss */
.time-range-picker .time-range-button .time-range-icon {
  color: #6c757d;
  margin-right: 8px;
  flex-shrink: 0;
}

/* line 403, app/assets/stylesheets/usercp/access_logs.scss */
.time-range-picker .time-range-button .time-range-text {
  flex: 1;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: left;
}

/* line 411, app/assets/stylesheets/usercp/access_logs.scss */
.time-range-picker .time-range-button .time-range-chevron {
  color: #6c757d;
  font-size: 12px;
  margin-left: 8px;
  flex-shrink: 0;
  transition: transform 0.2s ease;
}

/* line 419, app/assets/stylesheets/usercp/access_logs.scss */
.time-range-picker .time-range-button.is-invalid {
  border-color: #dc3545;
}

/* line 424, app/assets/stylesheets/usercp/access_logs.scss */
.time-range-picker .time-range-dropdown {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 1050;
  margin-top: 2px;
  background: #fff;
  border: 1px solid #ced4da;
  border-radius: 4px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  min-width: 600px;
}

@media (max-width: 768px) {
  /* line 424, app/assets/stylesheets/usercp/access_logs.scss */
  .time-range-picker .time-range-dropdown {
    min-width: 100vw;
    left: -15px;
    right: auto;
  }
}

/* line 443, app/assets/stylesheets/usercp/access_logs.scss */
.time-range-picker .time-range-content {
  display: flex;
  min-height: 300px;
}

@media (max-width: 768px) {
  /* line 443, app/assets/stylesheets/usercp/access_logs.scss */
  .time-range-picker .time-range-content {
    flex-direction: column;
  }
}

/* line 453, app/assets/stylesheets/usercp/access_logs.scss */
.time-range-picker .time-range-custom {
  flex: 1;
  padding: 20px;
  border-right: 1px solid #dee2e6;
}

@media (max-width: 768px) {
  /* line 453, app/assets/stylesheets/usercp/access_logs.scss */
  .time-range-picker .time-range-custom {
    border-right: none;
    border-bottom: 1px solid #dee2e6;
  }
}

/* line 463, app/assets/stylesheets/usercp/access_logs.scss */
.time-range-picker .time-range-custom h6 {
  margin-bottom: 15px;
  font-weight: 600;
  color: #495057;
}

/* line 469, app/assets/stylesheets/usercp/access_logs.scss */
.time-range-picker .time-range-custom .form-group {
  margin-bottom: 15px;
}

/* line 472, app/assets/stylesheets/usercp/access_logs.scss */
.time-range-picker .time-range-custom .form-group label {
  font-size: 12px;
  font-weight: 600;
  margin-bottom: 5px;
  display: block;
  color: #495057;
}

/* line 480, app/assets/stylesheets/usercp/access_logs.scss */
.time-range-picker .time-range-custom .form-group .time-input-with-picker {
  position: relative;
  display: flex;
  align-items: stretch;
}

/* line 485, app/assets/stylesheets/usercp/access_logs.scss */
.time-range-picker .time-range-custom .form-group .time-input-with-picker input[type="text"] {
  flex: 1;
  font-family: 'Monaco', 'Menlo', 'Ubuntu Mono', monospace;
  font-size: 13px;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

@media (max-width: 768px) {
  /* line 485, app/assets/stylesheets/usercp/access_logs.scss */
  .time-range-picker .time-range-custom .form-group .time-input-with-picker input[type="text"] {
    font-size: 16px;
  }
}

/* line 497, app/assets/stylesheets/usercp/access_logs.scss */
.time-range-picker .time-range-custom .form-group .time-input-with-picker .picker-btn {
  flex: 0 0 auto;
  padding: 0.375rem 0.5rem;
  border-left: none;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
  border-color: #ced4da;
  background-color: #fff;
  color: #6c757d;
  height: auto;
  display: flex;
  align-items: center;
  line-height: 1;
}

/* line 511, app/assets/stylesheets/usercp/access_logs.scss */
.time-range-picker .time-range-custom .form-group .time-input-with-picker .picker-btn:hover {
  background-color: #f8f9fa;
  border-color: #ced4da;
  color: #495057;
}

/* line 517, app/assets/stylesheets/usercp/access_logs.scss */
.time-range-picker .time-range-custom .form-group .time-input-with-picker .picker-btn:focus {
  box-shadow: none;
  border-color: #ced4da;
}

/* line 523, app/assets/stylesheets/usercp/access_logs.scss */
.time-range-picker .time-range-custom .form-group .time-input-with-picker .datetime-picker-popover {
  position: absolute;
  top: 100%;
  right: 0;
  z-index: 1060;
  margin-top: 2px;
  background: #fff;
  border: 1px solid #ced4da;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
  padding: 8px;
  min-width: 200px;
}

/* line 536, app/assets/stylesheets/usercp/access_logs.scss */
.time-range-picker .time-range-custom .form-group .time-input-with-picker .datetime-picker-popover input[type="datetime-local"] {
  font-size: 13px;
  border-color: #ced4da;
}

@media (max-width: 768px) {
  /* line 536, app/assets/stylesheets/usercp/access_logs.scss */
  .time-range-picker .time-range-custom .form-group .time-input-with-picker .datetime-picker-popover input[type="datetime-local"] {
    font-size: 16px;
  }
}

/* line 544, app/assets/stylesheets/usercp/access_logs.scss */
.time-range-picker .time-range-custom .form-group .time-input-with-picker .datetime-picker-popover input[type="datetime-local"]:focus {
  border-color: #007bff;
  box-shadow: 0 0 0 0.2rem rgba(0, 123, 255, 0.25);
}

/* line 549, app/assets/stylesheets/usercp/access_logs.scss */
.time-range-picker .time-range-custom .form-group .time-input-with-picker .datetime-picker-popover input[type="datetime-local"]::-webkit-calendar-picker-indicator {
  cursor: pointer;
  padding: 2px;
  border-radius: 2px;
}

/* line 554, app/assets/stylesheets/usercp/access_logs.scss */
.time-range-picker .time-range-custom .form-group .time-input-with-picker .datetime-picker-popover input[type="datetime-local"]::-webkit-calendar-picker-indicator:hover {
  background-color: #f8f9fa;
}

/* line 562, app/assets/stylesheets/usercp/access_logs.scss */
.time-range-picker .time-range-custom .form-group small {
  margin-top: 4px;
  font-size: 11px;
  color: #6c757d;
}

/* line 569, app/assets/stylesheets/usercp/access_logs.scss */
.time-range-picker .time-range-custom .alert-sm {
  padding: 6px 10px;
  font-size: 12px;
  margin-bottom: 10px;
}

/* line 575, app/assets/stylesheets/usercp/access_logs.scss */
.time-range-picker .time-range-custom .time-range-actions {
  display: flex;
  gap: 8px;
  margin-top: 20px;
}

/* line 583, app/assets/stylesheets/usercp/access_logs.scss */
.time-range-picker .time-range-presets {
  flex: 1;
  padding: 20px;
  background: #f8f9fa;
  display: flex;
  flex-direction: column;
}

/* line 590, app/assets/stylesheets/usercp/access_logs.scss */
.time-range-picker .time-range-presets h6 {
  margin-bottom: 15px;
  font-weight: 600;
  color: #495057;
  flex-shrink: 0;
}

/* line 597, app/assets/stylesheets/usercp/access_logs.scss */
.time-range-picker .time-range-presets .preset-buttons {
  display: flex;
  flex-direction: column;
  gap: 6px;
  overflow-y: auto;
  max-height: 250px;
  padding-right: 5px;
  /* Custom scrollbar */
}

/* line 606, app/assets/stylesheets/usercp/access_logs.scss */
.time-range-picker .time-range-presets .preset-buttons::-webkit-scrollbar {
  width: 6px;
}

/* line 610, app/assets/stylesheets/usercp/access_logs.scss */
.time-range-picker .time-range-presets .preset-buttons::-webkit-scrollbar-track {
  background: #f1f1f1;
  border-radius: 3px;
}

/* line 615, app/assets/stylesheets/usercp/access_logs.scss */
.time-range-picker .time-range-presets .preset-buttons::-webkit-scrollbar-thumb {
  background: #c1c1c1;
  border-radius: 3px;
}

/* line 619, app/assets/stylesheets/usercp/access_logs.scss */
.time-range-picker .time-range-presets .preset-buttons::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
}

/* line 624, app/assets/stylesheets/usercp/access_logs.scss */
.time-range-picker .time-range-presets .preset-buttons .preset-btn {
  text-align: left;
  font-size: 13px;
  padding: 8px 12px;
  border-color: #dee2e6;
  background: #fff;
  flex-shrink: 0;
}

/* line 632, app/assets/stylesheets/usercp/access_logs.scss */
.time-range-picker .time-range-presets .preset-buttons .preset-btn:hover {
  background: #e9ecef;
  border-color: #adb5bd;
}

/* line 637, app/assets/stylesheets/usercp/access_logs.scss */
.time-range-picker .time-range-presets .preset-buttons .preset-btn:active, .time-range-picker .time-range-presets .preset-buttons .preset-btn:focus {
  box-shadow: none;
  border-color: #007bff;
}

/* line 648, app/assets/stylesheets/usercp/access_logs.scss */
.time-filter .time-filter-presets {
  margin-bottom: 10px;
}

/* line 652, app/assets/stylesheets/usercp/access_logs.scss */
.time-filter .time-filter-custom {
  margin-top: 8px;
}

/* line 656, app/assets/stylesheets/usercp/access_logs.scss */
.time-filter .time-filter-custom .input-group .btn {
  border-color: #ced4da;
}

/* line 659, app/assets/stylesheets/usercp/access_logs.scss */
.time-filter .time-filter-custom .input-group .btn:hover {
  background-color: #e9ecef;
}

/* line 665, app/assets/stylesheets/usercp/access_logs.scss */
.time-filter .time-filter-custom small {
  margin-top: 4px;
  font-size: 11px;
}

@media (max-width: 768px) {
  /* line 675, app/assets/stylesheets/usercp/access_logs.scss */
  .time-filter .time-filter-custom .input-group input[type="datetime-local"] {
    font-size: 16px;
  }
}

/* line 683, app/assets/stylesheets/usercp/access_logs.scss */
.filter-row {
  display: flex;
  gap: 15px;
  align-items: flex-end;
  flex-wrap: wrap;
}

/* line 689, app/assets/stylesheets/usercp/access_logs.scss */
.filter-row .filter-buttons {
  display: flex;
  gap: 10px;
  margin-left: auto;
  align-items: center;
}

/* line 697, app/assets/stylesheets/usercp/access_logs.scss */
.filter-group {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

/* line 702, app/assets/stylesheets/usercp/access_logs.scss */
.filter-group label {
  font-size: 12px;
  font-weight: bold;
  margin-bottom: 2px;
}

/* line 708, app/assets/stylesheets/usercp/access_logs.scss */
.filter-group .form-control {
  width: 150px;
}

/* line 713, app/assets/stylesheets/usercp/access_logs.scss */
.access-log-histogram {
  margin: 24px 0;
}

/* line 716, app/assets/stylesheets/usercp/access_logs.scss */
.access-log-histogram .access-log-histogram-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 12px;
}

/* line 723, app/assets/stylesheets/usercp/access_logs.scss */
.access-log-histogram .access-log-histogram-header h3 {
  margin: 0 0 2px;
  font-size: 18px;
}

/* line 729, app/assets/stylesheets/usercp/access_logs.scss */
.access-log-histogram .access-log-histogram-chart {
  position: relative;
  height: 260px;
  min-height: 260px;
  max-height: 260px;
  overflow: hidden;
}

/* line 739, app/assets/stylesheets/usercp/access_logs.scss */
.access-log-histogram .access-log-histogram-canvas {
  position: absolute;
  inset: 0;
}

/* line 743, app/assets/stylesheets/usercp/access_logs.scss */
.access-log-histogram .access-log-histogram-canvas canvas {
  display: block;
  width: 100% !important;
  height: 100% !important;
  max-height: 100% !important;
  cursor: crosshair;
  touch-action: pan-y;
}

/* line 753, app/assets/stylesheets/usercp/access_logs.scss */
.access-log-histogram .access-log-histogram-loading {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 180px;
}

/* line 760, app/assets/stylesheets/usercp/access_logs.scss */
.access-log-histogram .alert {
  margin-bottom: 12px;
}

@media (max-width: 768px) {
  /* line 765, app/assets/stylesheets/usercp/access_logs.scss */
  .access-log-histogram .access-log-histogram-chart {
    height: 220px;
    min-height: 220px;
    max-height: 220px;
  }
}
/* line 1, app/assets/stylesheets/usercp/common.sass */
.confirm-or-spinner {
  width: 16px;
  display: inline-block;
}

/* line 6, app/assets/stylesheets/usercp/common.sass */
.table-wordpress-plugins th:nth-child(2), .table-wordpress-plugins th:nth-child(3), .table-wordpress-plugins th:nth-child(4) {
  width: 10%;
  min-width: 140px;
}
/* line 7, app/assets/stylesheets/usercp/contingents.sass */
.table-contingents tr td:last-child {
  width: 400px;
}

/* line 10, app/assets/stylesheets/usercp/contingents.sass */
.table-contingents tr td:last-child .progress {
  margin-bottom: 0;
}
/* line 2, app/assets/stylesheets/usercp/databases.sass */
.dl-horizontal dd > .button_to {
  margin-bottom: 0;
}

/* line 6, app/assets/stylesheets/usercp/databases.sass */
.table-usercp-databases tr td:last-child, .table-usercp-databases tr th:last-child {
  text-align: right;
}
/* line 2, app/assets/stylesheets/usercp/domains.sass */
.modal hr {
  margin: 10px 0;
}

/* line 5, app/assets/stylesheets/usercp/domains.sass */
.modal hr + h2 {
  margin-top: 0;
}

/* line 8, app/assets/stylesheets/usercp/domains.sass */
.dns-record-content {
  height: 1.5rem;
}

/* line 11, app/assets/stylesheets/usercp/domains.sass */
.dns-record-content .value {
  max-width: 30rem;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow-x: hidden;
  display: block;
}
/* line 5, app/assets/stylesheets/usercp/general.sass */
.usercp-root-link {
  color: #333;
}

/* line 8, app/assets/stylesheets/usercp/general.sass */
.input-code {
  font-family: SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", "Courier New", monospace;
}

/* line 11, app/assets/stylesheets/usercp/general.sass */
table .log-message {
  width: 77%;
  max-width: 600px;
  word-wrap: break-word;
  display: inline-block;
}

/* line 18, app/assets/stylesheets/usercp/general.sass */
.space-usage .progress {
  width: 100%;
  height: 0.5rem;
}

/* line 22, app/assets/stylesheets/usercp/general.sass */
.space-usage .percentage {
  vertical-align: top;
  display: inline-block;
  white-space: nowrap;
}

/* line 27, app/assets/stylesheets/usercp/general.sass */
.space-usage .inline-spinner {
  display: block;
  padding-right: 1rem;
}

/* line 31, app/assets/stylesheets/usercp/general.sass */
.space-usage .inline-spinner .text {
  display: none;
}

/* line 34, app/assets/stylesheets/usercp/general.sass */
.media-wrap {
  background: #ccc;
  padding: 0.75rem;
}

/* line 38, app/assets/stylesheets/usercp/general.sass */
.media-wrap img {
  max-height: 4rem;
}
/* line 1, app/assets/stylesheets/usercp/gulden.sass */
.table-gulden-transactions {
  width: 700px;
}

/* line 4, app/assets/stylesheets/usercp/gulden.sass */
.table-gulden-transactions th:nth-child(3), .table-gulden-transactions td:nth-child(3) {
  text-align: right;
}
/* line 5, app/assets/stylesheets/usercp/hidden_password.sass */
#hidden_password, #password-modal input[type="text"], input.copy-me {
  cursor: text;
}

/* line 8, app/assets/stylesheets/usercp/hidden_password.sass */
#hidden_password {
  display: none;
  margin-bottom: 0;
}

/* line 12, app/assets/stylesheets/usercp/hidden_password.sass */
input.credential, textarea.credential {
  background: transparent;
  border: none;
  box-shadow: none;
  cursor: text;
  font-family: monospace;
  min-width: 300px;
}

/* line 20, app/assets/stylesheets/usercp/hidden_password.sass */
.fake-credential {
  font-family: monospace;
  min-width: 300px;
  cursor: text;
  display: inline-block;
}
/* line 6, app/assets/stylesheets/usercp/inputs.sass */
.input-switch {
  position: relative;
  display: inline-block;
  width: 52px;
  height: 24px;
}

/* line 12, app/assets/stylesheets/usercp/inputs.sass */
.input-switch input {
  opacity: 0;
  width: 0;
  height: 0;
}

/* line 17, app/assets/stylesheets/usercp/inputs.sass */
.input-switch input:checked + .slider {
  background-color: #003a52;
}

/* line 20, app/assets/stylesheets/usercp/inputs.sass */
.input-switch input:focus + .slider {
  box-shadow: 0 0 1px #003a52;
}

/* line 23, app/assets/stylesheets/usercp/inputs.sass */
.input-switch input:checked + .slider:before {
  transform: translateX(26px);
}

/* line 28, app/assets/stylesheets/usercp/inputs.sass */
.input-switch .slider {
  position: absolute;
  cursor: pointer;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: #ccc;
  transition: .2s;
  border-radius: 34px;
}

/* line 40, app/assets/stylesheets/usercp/inputs.sass */
.input-switch .slider:before {
  border-radius: 50%;
  position: absolute;
  content: "";
  height: 16px;
  width: 16px;
  left: 4px;
  bottom: 4px;
  background-color: white;
  transition: .2s;
}
/* line 10, app/assets/stylesheets/usercp/installations.sass */
#installer-wrapper .progress .progress-bar {
  width: 0%;
}

/* line 13, app/assets/stylesheets/usercp/installations.sass */
#installer-wrapper .loading-icon {
  display: none;
  width: 100%;
  height: 150px;
  position: relative;
}

/* line 19, app/assets/stylesheets/usercp/installations.sass */
#installer-wrapper .estimate {
  text-align: center;
}

/* line 22, app/assets/stylesheets/usercp/installations.sass */
#installer-wrapper .screenshot-link img {
  max-width: 800px;
}

/* line 25, app/assets/stylesheets/usercp/installations.sass */
#installer-wrapper .status-waiting, #installer-wrapper .status-running, #installer-wrapper .status-installed, #installer-wrapper .status-configured, #installer-wrapper .status-success, #installer-wrapper .status-failure {
  text-align: center;
  display: none;
}

/* line 29, app/assets/stylesheets/usercp/installations.sass */
#installer-wrapper .status-waiting .step-text, #installer-wrapper .status-running .step-text, #installer-wrapper .status-installed .step-text, #installer-wrapper .status-configured .step-text, #installer-wrapper .status-success .step-text, #installer-wrapper .status-failure .step-text {
  font-size: 120%;
  font-weight: bold;
}

/* line 34, app/assets/stylesheets/usercp/installations.sass */
#installer-wrapper.wrapper-status-waiting .status-waiting {
  display: block;
}

/* line 38, app/assets/stylesheets/usercp/installations.sass */
#installer-wrapper.wrapper-status-running .status-running, #installer-wrapper.wrapper-status-running .loading-icon {
  display: block;
}

/* line 41, app/assets/stylesheets/usercp/installations.sass */
#installer-wrapper.wrapper-status-running .progress .progress-bar {
  width: 33%;
}

/* line 45, app/assets/stylesheets/usercp/installations.sass */
#installer-wrapper.wrapper-status-installed .status-installed, #installer-wrapper.wrapper-status-installed .loading-icon {
  display: block;
}

/* line 48, app/assets/stylesheets/usercp/installations.sass */
#installer-wrapper.wrapper-status-installed .progress .progress-bar {
  width: 66%;
}

/* line 52, app/assets/stylesheets/usercp/installations.sass */
#installer-wrapper.wrapper-status-configured .status-configured, #installer-wrapper.wrapper-status-configured .loading-icon {
  display: block;
}

/* line 55, app/assets/stylesheets/usercp/installations.sass */
#installer-wrapper.wrapper-status-configured .progress .progress-bar {
  width: 90%;
}

/* line 59, app/assets/stylesheets/usercp/installations.sass */
#installer-wrapper.wrapper-status-success .status-success {
  display: block;
}

/* line 62, app/assets/stylesheets/usercp/installations.sass */
#installer-wrapper.wrapper-status-success .progress .progress-bar {
  width: 100%;
}

/* line 66, app/assets/stylesheets/usercp/installations.sass */
#installer-wrapper.wrapper-status-failure .status-failure {
  display: block;
}

/* line 69, app/assets/stylesheets/usercp/installations.sass */
.software-installer-card-columns {
  -moz-column-count: 2;
       column-count: 2;
}
/* line 3, app/assets/stylesheets/usercp/invoices.sass */
.table-usercp-invoices thead tr th:first-child {
  width: 50px;
}

/* line 6, app/assets/stylesheets/usercp/invoices.sass */
.table-usercp-invoices thead tr th:nth-child(2), .table-usercp-invoices thead tr th:nth-child(3) {
  width: 150px;
}

/* line 9, app/assets/stylesheets/usercp/invoices.sass */
.table-usercp-invoices thead tr th:nth-child(4) {
  width: 150px;
}

/* line 12, app/assets/stylesheets/usercp/invoices.sass */
.account-balance {
  width: 20rem;
}

/* line 15, app/assets/stylesheets/usercp/invoices.sass */
.account-balance td:last-child {
  text-align: right;
}
/* line 2, app/assets/stylesheets/usercp/onboarding.sass */
.onboarding-row .label {
  line-height: normal;
  font-size: 20px;
  padding: 2px 7px 0px;
}

/* line 6, app/assets/stylesheets/usercp/onboarding.sass */
.onboarding-row .text-span {
  padding-top: 15px;
}

/* line 9, app/assets/stylesheets/usercp/onboarding.sass */
hr.onboarding-separator {
  margin: 20px 0 10px;
}
/* line 2, app/assets/stylesheets/usercp/payment_methods.sass */
#new_usercp_new_payment_method h4:first-child {
  margin-top: 1em;
}

/* line 5, app/assets/stylesheets/usercp/payment_methods.sass */
#new_usercp_new_payment_method fieldset {
  padding: 15px;
}

/* line 8, app/assets/stylesheets/usercp/payment_methods.sass */
#new_usercp_new_payment_method fieldset .payment-text {
  padding-left: 17px;
  margin-bottom: 10px;
}

/* line 12, app/assets/stylesheets/usercp/payment_methods.sass */
#new_usercp_new_payment_method fieldset .type-toggle {
  vertical-align: text-bottom;
}

/* line 15, app/assets/stylesheets/usercp/payment_methods.sass */
#new_usercp_new_payment_method fieldset .body {
  display: none;
}

/* line 18, app/assets/stylesheets/usercp/payment_methods.sass */
#new_usercp_new_payment_method fieldset.active {
  background: whitesmoke;
  border-radius: 3px;
  border: 1px solid #EAEAEA;
  padding: 14px;
}

/* line 24, app/assets/stylesheets/usercp/payment_methods.sass */
#new_usercp_new_payment_method fieldset.active .body {
  display: inherit;
}

/* line 27, app/assets/stylesheets/usercp/payment_methods.sass */
#new_usercp_new_payment_method fieldset.active .body .inline-actions {
  padding-left: 180px;
}

/* line 30, app/assets/stylesheets/usercp/payment_methods.sass */
#new_usercp_new_payment_method .pdf-link {
  padding-left: 25px;
}

/* line 35, app/assets/stylesheets/usercp/payment_methods.sass */
#new_usercp_payment_methods_create_credit_card .payment-text {
  padding-left: 17px;
}

/* line 38, app/assets/stylesheets/usercp/payment_methods.sass */
#new_usercp_payment_methods_create_credit_card .cc-num {
  margin-bottom: 7px;
  width: 145px;
  padding-left: 38px;
}

/* line 43, app/assets/stylesheets/usercp/payment_methods.sass */
#new_usercp_payment_methods_create_credit_card .cc-num + .card {
  display: inline-block;
  width: 30px;
  background-repeat: no-repeat;
  height: 20px;
  background-size: contain;
  background-position: center;
  background-color: white;
  margin-top: -1px;
  vertical-align: top;
}

/* line 55, app/assets/stylesheets/usercp/payment_methods.sass */
#new_usercp_payment_methods_create_credit_card .cc-num.identified + .card {
  border: 1px solid #eee;
}

/* line 58, app/assets/stylesheets/usercp/payment_methods.sass */
#new_usercp_payment_methods_create_credit_card .cc-num.visa + .card {
  background-image: url(/assets/cc-logo/visa-45639e6c30838888debb0575580d2e855924f4a6504c4226f6eead33965a7ee3.svg);
}

/* line 61, app/assets/stylesheets/usercp/payment_methods.sass */
#new_usercp_payment_methods_create_credit_card .cc-num.amex + .card {
  background-image: url(/assets/cc-logo/amex-42b4c882abb8508c2825b9f30308fb0a7f22c8bceab239afb0349e4eed1d47ae.svg);
}

/* line 64, app/assets/stylesheets/usercp/payment_methods.sass */
#new_usercp_payment_methods_create_credit_card .cc-num.mastercard + .card {
  background-image: url(/assets/cc-logo/mastercard-aea28dc4ac2e7929d7360938d1a2222c392b6912b85f31a97338b87e38aa50fc.svg);
}

/* line 67, app/assets/stylesheets/usercp/payment_methods.sass */
#new_usercp_payment_methods_create_credit_card .cc-num.diners + .card {
  background-image: url(/images/cc-logo/diners.svg);
}

/* line 70, app/assets/stylesheets/usercp/payment_methods.sass */
#new_usercp_payment_methods_create_credit_card .cc-num.discover + .card {
  background-image: url(/assets/cc-logo/discover-67801508f16f51c3878a8431c1c3829e4c4a1cbb99355bf5bf9baa6d625c56c0.svg);
}

/* line 73, app/assets/stylesheets/usercp/payment_methods.sass */
#new_usercp_payment_methods_create_credit_card .cc-exp {
  width: 66px;
}

/* line 76, app/assets/stylesheets/usercp/payment_methods.sass */
#new_usercp_payment_methods_create_credit_card .cc-cvc {
  width: 51px;
}

/* line 79, app/assets/stylesheets/usercp/payment_methods.sass */
#new_usercp_payment_methods_create_credit_card .cc-field-wrapper {
  position: relative;
  display: inline-block;
  margin-right: 5px;
}

/* line 84, app/assets/stylesheets/usercp/payment_methods.sass */
#new_usercp_payment_methods_create_credit_card .cc-field-wrapper.cc-card {
  display: block;
}

/* line 87, app/assets/stylesheets/usercp/payment_methods.sass */
#new_usercp_payment_methods_create_credit_card .cc-field-wrapper input {
  padding-left: 25px;
}

/* line 90, app/assets/stylesheets/usercp/payment_methods.sass */
#new_usercp_payment_methods_create_credit_card .cc-field-wrapper .input-icon {
  position: absolute;
  left: 5px;
  top: 5px;
}

/* line 95, app/assets/stylesheets/usercp/payment_methods.sass */
#new_usercp_payment_methods_create_credit_card .cc-number-with-card {
  position: relative;
}

/* line 98, app/assets/stylesheets/usercp/payment_methods.sass */
#new_usercp_payment_methods_create_credit_card .cc-number-with-card .card {
  position: absolute;
  top: 5px;
  left: 5px;
}

/* line 104, app/assets/stylesheets/usercp/payment_methods.sass */
#new_usercp_payment_methods_create_credit_card .form-group.error .help-block.payment-errors {
  margin-bottom: 5px;
}

/* line 107, app/assets/stylesheets/usercp/payment_methods.sass */
.container-narrow {
  padding: 10px;
  border-radius: 5px;
  border: 1px solid #eee;
  max-width: 700px;
  margin: 0 auto 20px;
}

/* line 114, app/assets/stylesheets/usercp/payment_methods.sass */
.container-narrow .form-horizontal, .container-narrow .form-horizontal .form-actions {
  margin-bottom: 0;
}

/* line 118, app/assets/stylesheets/usercp/payment_methods.sass */
.form-group.credit_card_display .rccs {
  margin: 0;
}

/* line 123, app/assets/stylesheets/usercp/payment_methods.sass */
#new_usercp_payment_methods_create_credit_card .cc-field-wrapper input {
  padding-top: 8px;
  padding-bottom: 8px;
  padding-right: 10px;
  padding-left: 40px;
  font-size: 18px;
  width: 8.85rem;
  line-height: 100%;
  /* text-align: center; */
}

/* line 133, app/assets/stylesheets/usercp/payment_methods.sass */
#new_usercp_payment_methods_create_credit_card .cc-field-wrapper.cc-card input {
  width: 18rem;
}

/* line 136, app/assets/stylesheets/usercp/payment_methods.sass */
#new_usercp_payment_methods_create_credit_card .cc-field-wrapper .input-icon {
  font-size: 20px;
  left: 8px;
  top: 6px;
}
/* line 1, app/assets/stylesheets/usercp/php_emails.sass */
.table-php-mails td {
  vertical-align: middle;
}
/* line 2, app/assets/stylesheets/usercp/restores.sass */
#restore-content-wrapper .loading-icon {
  width: 100%;
  height: 150px;
  position: relative;
  display: block;
}

/* line 8, app/assets/stylesheets/usercp/restores.sass */
#restore-content-wrapper .status-part {
  text-align: center;
  display: none;
}

/* line 12, app/assets/stylesheets/usercp/restores.sass */
#restore-content-wrapper .status-part .step-text {
  font-size: 120%;
  font-weight: bold;
}

/* line 18, app/assets/stylesheets/usercp/restores.sass */
#restore-content-wrapper.wrapper-status-waiting .status-waiting {
  display: block;
}

/* line 18, app/assets/stylesheets/usercp/restores.sass */
#restore-content-wrapper.wrapper-status-running .status-running {
  display: block;
}

/* line 18, app/assets/stylesheets/usercp/restores.sass */
#restore-content-wrapper.wrapper-status-extracting .status-extracting {
  display: block;
}

/* line 18, app/assets/stylesheets/usercp/restores.sass */
#restore-content-wrapper.wrapper-status-packing .status-packing {
  display: block;
}

/* line 18, app/assets/stylesheets/usercp/restores.sass */
#restore-content-wrapper.wrapper-status-copying .status-copying {
  display: block;
}

/* line 18, app/assets/stylesheets/usercp/restores.sass */
#restore-content-wrapper.wrapper-status-handover .status-handover {
  display: block;
}

/* line 18, app/assets/stylesheets/usercp/restores.sass */
#restore-content-wrapper.wrapper-status-restoring .status-restoring {
  display: block;
}

/* line 18, app/assets/stylesheets/usercp/restores.sass */
#restore-content-wrapper.wrapper-status-success .status-success {
  display: block;
}

/* line 18, app/assets/stylesheets/usercp/restores.sass */
#restore-content-wrapper.wrapper-status-failure .status-failure {
  display: block;
}

/* line 22, app/assets/stylesheets/usercp/restores.sass */
#restore-content-wrapper.wrapper-status-success .loading-icon, #restore-content-wrapper.wrapper-status-failure .loading-icon {
  display: none;
}
/* line 1, app/assets/stylesheets/usercp/security.sass */
.flag-icon {
  vertical-align: bottom;
  width: 24px;
  height: 24px;
  margin-left: 0.5rem;
}
/* line 6, app/assets/stylesheets/usercp/ssl.sass */
.form-usercp-ssl-activate .form-group.activate_certificate_csr {
  position: relative;
}
/* line 2, app/assets/stylesheets/usercp/subdomain_form.sass */
.form-group.usercp_create_free_subdomain_interaction_prefix {
  display: inline-block;
  height: 50px;
}

/* line 6, app/assets/stylesheets/usercp/subdomain_form.sass */
.form-group.usercp_create_free_subdomain_interaction_domain {
  display: inline-block;
  vertical-align: top;
}

/* line 10, app/assets/stylesheets/usercp/subdomain_form.sass */
.usercp_create_free_subdomain_interaction_prefix span.help-inline {
  position: absolute;
  top: 36px;
  right: 0;
  width: 217px;
}

/* line 16, app/assets/stylesheets/usercp/subdomain_form.sass */
.form-group.usercp_create_free_subdomain_interaction_prefix {
  position: relative;
}
/* line 2, app/assets/stylesheets/usercp/tickets.sass */
.table-usercp-tickets td:first-child {
  width: 60px;
}

/* line 5, app/assets/stylesheets/usercp/tickets.sass */
.table-usercp-tickets .flex-column-wrapper {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

/* line 12, app/assets/stylesheets/usercp/tickets.sass */
.table-ticket tr td:first-child {
  width: 150px;
}
/* line 7, app/assets/stylesheets/usercp/vms.sass */
.modal > form {
  margin-bottom: 0;
}

/* line 10, app/assets/stylesheets/usercp/vms.sass */
.modal.wide {
  width: 780px;
  margin-left: -390px;
}

/* line 16, app/assets/stylesheets/usercp/vms.sass */
.table-wide tbody td {
  vertical-align: middle;
}

/* line 19, app/assets/stylesheets/usercp/vms.sass */
.table-wide tbody td h4 {
  margin-bottom: 0;
}

/* line 22, app/assets/stylesheets/usercp/vms.sass */
.form-group.change_selection {
  padding-top: 5px;
}

/* line 26, app/assets/stylesheets/usercp/vms.sass */
.vms-table .progress {
  margin-bottom: 0;
  height: 10px;
}

/* line 30, app/assets/stylesheets/usercp/vms.sass */
.vms-table td:first-child {
  text-align: center;
  width: 36px;
  padding-right: 0;
}

/* line 35, app/assets/stylesheets/usercp/vms.sass */
.vms-table td:first-child img {
  height: 36px;
}

/* line 39, app/assets/stylesheets/usercp/vms.sass */
.vms-table td:nth-child(3) img {
  height: 16px;
}

/* line 42, app/assets/stylesheets/usercp/vms.sass */
.vms-table td:nth-child(1),
.vms-table th:nth-child(1),
.vms-table td:nth-child(3),
.vms-table th:nth-child(3) {
  text-align: center;
}

/* line 48, app/assets/stylesheets/usercp/vms.sass */
.vms-table td:nth-child(3) {
  width: 36px;
}

/* line 51, app/assets/stylesheets/usercp/vms.sass */
.vms-table td:nth-child(4) {
  width: 130px;
}

/* line 54, app/assets/stylesheets/usercp/vms.sass */
.vms-table td:nth-child(5) {
  width: 165px;
}

/* line 57, app/assets/stylesheets/usercp/vms.sass */
.vms-table td:nth-child(6) {
  width: 215px;
}

/* line 62, app/assets/stylesheets/usercp/vms.sass */
.virtual-machine-action-button .dropdown-menu {
  width: 215px;
}

/* line 66, app/assets/stylesheets/usercp/vms.sass */
.virtual-machine-action-button .btn-group a.disabled, .virtual-machine-action-button .dropdown-menu a.disabled {
  cursor: not-allowed;
}

/* line 68, app/assets/stylesheets/usercp/vms.sass */
.virtual-machine-action-button .btn-group a, .virtual-machine-action-button .dropdown-menu a {
  cursor: pointer;
}

/* line 71, app/assets/stylesheets/usercp/vms.sass */
.virtual-machine-action-button button.dropdown-toggle {
  padding-left: 0.5rem;
  padding-right: 0.5rem;
}

/* line 75, app/assets/stylesheets/usercp/vms.sass */
.virtual-machine-action-button > button.btn-lg.btn:first-child {
  min-width: 180px;
  white-space: nowrap;
}

/* line 80, app/assets/stylesheets/usercp/vms.sass */
.table-snapshots td:nth-child(2) {
  width: 110px;
}

/* line 83, app/assets/stylesheets/usercp/vms.sass */
.table-snapshots td:nth-child(3) {
  width: 190px;
}

/* line 86, app/assets/stylesheets/usercp/vms.sass */
.table-snapshots td:nth-child(4) {
  width: 130px;
}

/* line 89, app/assets/stylesheets/usercp/vms.sass */
.table-snapshots td:nth-child(5) {
  width: 110px;
}

/* line 93, app/assets/stylesheets/usercp/vms.sass */
.table-snapshots.table-with-radios td:nth-child(4) {
  width: 200px;
  text-align: left;
}

/* line 97, app/assets/stylesheets/usercp/vms.sass */
dl input.copy-to-clipboard[type="text"] {
  margin: 0;
  border: none;
  box-shadow: none;
  padding: 0;
  background: none;
  color: #272822;
  cursor: text;
}

/* line 106, app/assets/stylesheets/usercp/vms.sass */
.header-vms {
  margin-bottom: 0;
}

/* line 109, app/assets/stylesheets/usercp/vms.sass */
.header-vms .resource-btns {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

/* line 114, app/assets/stylesheets/usercp/vms.sass */
.header-vms .resource-btns .btn {
  margin-right: 0;
}

/* line 118, app/assets/stylesheets/usercp/vms.sass */
.vm-actions-dropdown .dropdown-menu {
  box-shadow: 0 0.2rem 0.6rem rgba(0, 0, 0, 0.12);
}

/* line 121, app/assets/stylesheets/usercp/vms.sass */
.vm-actions-dropdown .actions-chevron {
  margin-left: 0.25rem;
  transition: transform 0.15s ease-in-out;
}

/* line 125, app/assets/stylesheets/usercp/vms.sass */
.vm-actions-dropdown.show .actions-chevron {
  transform: rotate(180deg);
}

/* line 128, app/assets/stylesheets/usercp/vms.sass */
.vm-info-bar {
  color: #6c757d;
  font-size: 16px;
  line-height: 20px;
  padding: 1rem 3px 0 1rem;
  margin-bottom: 0.5rem;
}

/* line 135, app/assets/stylesheets/usercp/vms.sass */
.vm-model, .vm-template {
  padding: 15px 10px 15px 10px;
  border-radius: 5px;
  box-shadow: 0 1px 1px rgba(198, 227, 99, 0.53);
  display: inline-block;
  margin: 5px 10px 30px;
  border: 1px solid #dcd9d9;
  text-align: center;
  width: 175px;
  transition: background 0.3s, border-color 0.3s;
  cursor: pointer;
}

/* line 147, app/assets/stylesheets/usercp/vms.sass */
.vm-model:hover, .vm-template:hover {
  border-color: #05aeef;
  background: #f9f9f9;
}

/* line 151, app/assets/stylesheets/usercp/vms.sass */
.vm-model.selected, .vm-template.selected {
  border-color: #05aeef;
}

/* line 154, app/assets/stylesheets/usercp/vms.sass */
.vm-model input[type="radio"], .vm-template input[type="radio"] {
  height: 16px;
  width: 16px;
  margin-top: -8px;
}

/* line 159, app/assets/stylesheets/usercp/vms.sass */
.vm-model input[type="radio"] + label, .vm-template input[type="radio"] + label {
  margin-top: 0;
  display: block;
  padding-left: 0px;
  cursor: pointer;
}

/* line 165, app/assets/stylesheets/usercp/vms.sass */
.vm-model.too-small, .vm-model.current {
  background: rgba(117, 109, 109, 0.17);
}

/* line 169, app/assets/stylesheets/usercp/vms.sass */
.vm-template .version {
  margin-bottom: 10px;
}

/* line 172, app/assets/stylesheets/usercp/vms.sass */
.vm-template img {
  height: 64px;
}

/* line 175, app/assets/stylesheets/usercp/vms.sass */
.tab-pane > .callout {
  margin-top: 0;
}

/* line 179, app/assets/stylesheets/usercp/vms.sass */
.vps-overview h2 {
  margin-top: 0;
  margin-bottom: 20px;
}

/* line 183, app/assets/stylesheets/usercp/vms.sass */
.vps-overview .progress.inline {
  margin: 0 10px;
  margin-bottom: -4px;
  height: 20px;
  width: 200px;
  float: right;
}

/* line 190, app/assets/stylesheets/usercp/vms.sass */
.vps-overview .icon-resize-full, .vps-overview .icon-resize-small {
  float: right;
  margin: 10px 5px;
  cursor: pointer;
}

/* line 195, app/assets/stylesheets/usercp/vms.sass */
.vps-overview .timeframe {
  float: right;
  margin-top: 4px;
  margin-bottom: 0;
}

/* line 200, app/assets/stylesheets/usercp/vms.sass */
.vps-overview .timeframe select {
  width: 100px;
  vertical-align: baseline;
}

/* line 205, app/assets/stylesheets/usercp/vms.sass */
.vps-overview .well.count-well .well-count {
  font-size: 24px;
  line-height: normal;
}

/* line 209, app/assets/stylesheets/usercp/vms.sass */
.vps-overview .well.count-well .well-description {
  font-size: 16px;
  color: #7b7b7b;
}

/* line 213, app/assets/stylesheets/usercp/vms.sass */
.vps-overview .well.count-well .total {
  font-size: 14px;
}

/* line 216, app/assets/stylesheets/usercp/vms.sass */
.vm-graph-row {
  margin-bottom: 1rem;
}

/* line 219, app/assets/stylesheets/usercp/vms.sass */
.vm-graph-row .chart-container {
  position: relative;
  width: 100%;
  min-height: 250px;
  max-height: 360px;
  margin: 1rem 0 0.5rem;
}

/* line 226, app/assets/stylesheets/usercp/vms.sass */
.vm-graph-row .chart-dummy {
  width: 100%;
  height: 250px;
  border-radius: 3px;
  background: #ddd;
  display: inline-block;
}

/* line 234, app/assets/stylesheets/usercp/vms.sass */
.creating-cloud-vps .section-ready {
  display: none;
}

/* line 237, app/assets/stylesheets/usercp/vms.sass */
.creating-cloud-vps pre.code-block {
  margin: 10px auto;
  width: 640px;
}

/* line 241, app/assets/stylesheets/usercp/vms.sass */
.creating-cloud-vps > .spinner {
  position: relative;
  margin-top: 80px;
}

/* line 246, app/assets/stylesheets/usercp/vms.sass */
.table-charges td:first-child {
  white-space: pre;
}

/* line 249, app/assets/stylesheets/usercp/vms.sass */
.table-charges td:nth-child(2), .table-charges th:nth-child(2),
.table-charges td:nth-child(3), .table-charges th:nth-child(3),
.table-charges td:nth-child(4), .table-charges th:nth-child(4) {
  text-align: right;
  font-family: monospace;
  white-space: nowrap;
}

/* line 257, app/assets/stylesheets/usercp/vms.sass */
.table-with-buttons tbody td {
  height: 30px;
}

/* line 261, app/assets/stylesheets/usercp/vms.sass */
.table-snapshots tbody td:last-child {
  text-align: right;
}

/* line 265, app/assets/stylesheets/usercp/vms.sass */
.table-with-radios th:first-child {
  padding-left: 36px;
}

/* line 268, app/assets/stylesheets/usercp/vms.sass */
.create-snapshot {
  margin-left: 5px;
  margin-bottom: 0;
}

/* line 272, app/assets/stylesheets/usercp/vms.sass */
.create-snapshot input {
  margin-bottom: 0;
  margin-right: 5px;
}

/* line 279, app/assets/stylesheets/usercp/vms.sass */
.create-snapshot .text-error, .create-snapshot small {
  margin-left: 5px;
}

/* line 282, app/assets/stylesheets/usercp/vms.sass */
.create-snapshot small {
  color: #999999;
}

/* line 285, app/assets/stylesheets/usercp/vms.sass */
.loading-data {
  text-align: center;
}

/* line 288, app/assets/stylesheets/usercp/vms.sass */
.loading-data .spinner-wrap {
  margin-left: -4px;
}

/* line 291, app/assets/stylesheets/usercp/vms.sass */
.loading-data .css-spinloader {
  width: 48px;
  height: 48px;
  border-top-width: 4px;
  border-right-width: 4px;
  margin: 10px auto;
}

/* line 298, app/assets/stylesheets/usercp/vms.sass */
.loading-data span {
  font-size: 18px;
  font-weight: bold;
}

/* line 302, app/assets/stylesheets/usercp/vms.sass */
.nav-pills.separated {
  border-bottom: 1px solid #eee;
  padding-bottom: 7px;
}

/* line 307, app/assets/stylesheets/usercp/vms.sass */
.btn-primary .css-spinloader, .btn-danger .css-spinloader {
  display: inline-block;
  width: 11px;
  height: 10px;
  border-top-color: #fff;
}

@keyframes spin {
  0% {
    /* Chrome, Opera 15+, Safari 3.1+ */
    /* IE 9  */
    transform: rotate(0deg);
    /* Firefox 16+, IE 10+, Opera */
  }
  100% {
    /* Chrome, Opera 15+, Safari 3.1+ */
    /* IE 9 */
    transform: rotate(360deg);
    /* Firefox 16+, IE 10+, Opera */
  }
}

/* line 348, app/assets/stylesheets/usercp/vms.sass */
.tooltip-icon {
  font-weight: bold;
  text-decoration: none;
  border: 2px solid #ababab;
  color: #6d6d6d;
  border-radius: 50%;
  padding: 0px 6px;
  cursor: help;
}

/* line 357, app/assets/stylesheets/usercp/vms.sass */
.form-group > .Select {
  width: 250px;
}

/* line 361, app/assets/stylesheets/usercp/vms.sass */
.table-reseller-charges td:first-child {
  white-space: pre;
}

/* line 364, app/assets/stylesheets/usercp/vms.sass */
.table-reseller-charges thead th:nth-child(4),
.table-reseller-charges thead th:nth-child(5),
.table-reseller-charges tfoot th {
  text-align: right;
}

/* line 369, app/assets/stylesheets/usercp/vms.sass */
.table-reseller-charges thead th:nth-child(4), .table-reseller-charges td:nth-child(4),
.table-reseller-charges thead th:nth-child(5), .table-reseller-charges td:nth-child(5) {
  text-align: right;
  font-family: monospace;
  white-space: nowrap;
}

/* line 376, app/assets/stylesheets/usercp/vms.sass */
.inplace-editable {
  display: inline-block;
  text-decoration: none;
  border-bottom: 1px dashed #ccc;
  cursor: text;
  color: #333;
}

/* line 383, app/assets/stylesheets/usercp/vms.sass */
.inplace-editable:hover {
  color: #505050;
  text-decoration: none;
}

/* line 388, app/assets/stylesheets/usercp/vms.sass */
.badge-baseline {
  vertical-align: text-bottom;
}
/* line 18, app/assets/stylesheets/usercp/websites.sass */
.external-domain-manual-row h2 .label {
  padding: 2px 6px 0px;
  line-height: normal;
  font-size: 1em;
}

/* line 25, app/assets/stylesheets/usercp/websites.sass */
#new_usercp_external_domain_check .form-group.disabled > label {
  color: #676767;
  font-style: italic;
}

/* line 29, app/assets/stylesheets/usercp/websites.sass */
#new_usercp_external_domain_check .form-group.disabled > label .tooltip {
  font-style: normal;
}

/* line 32, app/assets/stylesheets/usercp/websites.sass */
form.stats-website-selection {
  margin-bottom: 0;
  height: 30px;
}

/* line 37, app/assets/stylesheets/usercp/websites.sass */
.charts-tab-content .tab-pane {
  height: 355px;
}

/* line 39, app/assets/stylesheets/usercp/websites.sass */
.charts-tab-content #page_views_chart, .charts-tab-content #hits_chart, .charts-tab-content #traffic_chart {
  height: 350px;
}

/* line 43, app/assets/stylesheets/usercp/websites.sass */
.filter-menu li a .icon-fixed-width {
  text-align: left;
}

/* line 46, app/assets/stylesheets/usercp/websites.sass */
.dropdown-menu.filter-menu {
  max-height: 400px;
  overflow-y: auto;
}

/* line 50, app/assets/stylesheets/usercp/websites.sass */
.dropdown-menu.filter-menu.loading {
  opacity: 0.9;
}

/* line 53, app/assets/stylesheets/usercp/websites.sass */
.dropdown-menu.filter-menu li.filter-search-list {
  padding: 3px 20px;
}

/* line 56, app/assets/stylesheets/usercp/websites.sass */
.dropdown-menu.filter-menu li.filter-search-list input {
  margin-bottom: 0;
  width: 96%;
}

/* line 60, app/assets/stylesheets/usercp/websites.sass */
.filter-row {
  margin-bottom: 15px;
}

/* line 63, app/assets/stylesheets/usercp/websites.sass */
.usercp-premium-features {
  list-style-type: none;
  margin-left: 0;
  margin-bottom: 10px;
  margin-top: 20px;
}

/* line 69, app/assets/stylesheets/usercp/websites.sass */
.usercp-premium-features li {
  padding-bottom: 10px;
  border-bottom: 1px solid #eeeeee;
  margin-bottom: 10px;
}

/* line 11, app/assets/stylesheets/usercp/websites.sass */
.usercp-premium-features li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

/* line 72, app/assets/stylesheets/usercp/websites.sass */
.usercp-premium-features i {
  float: left;
  margin-right: 10px;
  vertical-align: middle;
  line-height: 60px;
  color: green;
}

/* line 79, app/assets/stylesheets/usercp/websites.sass */
.usercp-premium-features p {
  margin-bottom: 0;
}

/* line 83, app/assets/stylesheets/usercp/websites.sass */
.potential-email-domains h4 {
  line-height: 30px;
}

/* line 86, app/assets/stylesheets/usercp/websites.sass */
.card .collapsing > table,
.card .collapse > table {
  margin-bottom: 0;
}

/* line 90, app/assets/stylesheets/usercp/websites.sass */
.table.table-websites thead th {
  vertical-align: middle;
}

/* line 95, app/assets/stylesheets/usercp/websites.sass */
.table-websites th:first-child {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
  width: 3rem;
}

/* line 102, app/assets/stylesheets/usercp/websites.sass */
.table-websites .website-parent td:first-child {
  padding-left: 0;
  padding-right: 0;
  text-align: center;
  width: 3rem;
}

/* line 108, app/assets/stylesheets/usercp/websites.sass */
.table-websites .website-parent td:nth-child(3) {
  width: 12rem;
}

/* line 111, app/assets/stylesheets/usercp/websites.sass */
.table-websites .website-parent td:nth-child(4) {
  width: 12rem;
}

/* line 114, app/assets/stylesheets/usercp/websites.sass */
.chevron {
  transition: transform 300ms;
}

/* line 117, app/assets/stylesheets/usercp/websites.sass */
.chevron-90 {
  transition: transform 300ms;
  transform-origin: 25% 50%;
}

/* line 121, app/assets/stylesheets/usercp/websites.sass */
.chevron-90.rotate {
  transform: rotate(90deg);
}

/* line 124, app/assets/stylesheets/usercp/websites.sass */
.chevron.rotate {
  transform: rotate(90deg);
}

/* line 127, app/assets/stylesheets/usercp/websites.sass */
.chevron.rotate-180 {
  transform: rotate(180deg);
}

/* line 130, app/assets/stylesheets/usercp/websites.sass */
.btn-hoverable:hover {
  color: #212529;
  background-color: #dedede;
  transition: background-color .4s ease, color .4s ease;
}

/* line 138, app/assets/stylesheets/usercp/websites.sass */
.status-icons .status-dot, .status-icons a {
  vertical-align: middle;
}

/* line 141, app/assets/stylesheets/usercp/websites.sass */
.status-dot {
  display: inline-block;
  width: 1rem;
  height: 1rem;
  border-radius: 50%;
}

/* line 147, app/assets/stylesheets/usercp/websites.sass */
.status-dot.status-success {
  background-color: #6fbf4d;
  box-shadow: 0 0 4px rgba(111, 191, 77, 0.4);
}

/* line 151, app/assets/stylesheets/usercp/websites.sass */
.status-dot.status-warning {
  background-color: #f5bd4b;
  box-shadow: 0 0 4px rgba(245, 189, 75, 0.4);
}

/* line 155, app/assets/stylesheets/usercp/websites.sass */
.status-dot.status-danger {
  background-color: #c93d38;
  box-shadow: 0 0 4px rgba(201, 61, 56, 0.4);
}

/* line 159, app/assets/stylesheets/usercp/websites.sass */
.slide-enter .website-details-outer {
  max-height: 0;
  overflow: hidden;
}

/* line 163, app/assets/stylesheets/usercp/websites.sass */
.slide-enter-active .website-details-outer {
  max-height: 178px;
  transition: max-height 400ms ease-in;
}

/* line 167, app/assets/stylesheets/usercp/websites.sass */
.slide-exit .website-details-outer {
  max-height: 178px;
  overflow: hidden;
}

/* line 171, app/assets/stylesheets/usercp/websites.sass */
.slide-exit-active .website-details-outer {
  max-height: 0;
  transition: max-height 400ms ease-in;
}

/* line 176, app/assets/stylesheets/usercp/websites.sass */
.table-websites .details-row td {
  padding: 0;
}

/* line 179, app/assets/stylesheets/usercp/websites.sass */
.table-websites .website-details-inner {
  padding: 0.75rem;
}

/* line 183, app/assets/stylesheets/usercp/websites.sass */
.settings-row .link {
  border-radius: 0.5rem;
  padding: 1rem;
}

/* line 187, app/assets/stylesheets/usercp/websites.sass */
.settings-row .link:hover {
  background-color: #f4f5f6;
  text-decoration: none;
  transition: background-color 0.5s;
}

/* line 192, app/assets/stylesheets/usercp/websites.sass */
.settings-row .link .btn {
  border-radius: 0.5rem;
}

/* line 195, app/assets/stylesheets/usercp/websites.sass */
.settings-row h5 {
  color: #05aeef;
}

/* line 198, app/assets/stylesheets/usercp/websites.sass */
.settings-row p {
  color: #333;
}

/* line 201, app/assets/stylesheets/usercp/websites.sass */
.settings-row p:last-child {
  margin-bottom: 0;
}

/* line 205, app/assets/stylesheets/usercp/websites.sass */
.website-subdomain .subdomain-icon {
  margin-right: 0.5rem;
  color: #6c757d;
}
/* line 3, app/assets/stylesheets/usercp/wordpress.sass */
.card-img-top.wordpress-preview {
  max-height: 18rem;
  overflow-y: hidden;
}

/* line 7, app/assets/stylesheets/usercp/wordpress.sass */
.card-img-top.wordpress-preview img {
  width: 100%;
}

/* line 10, app/assets/stylesheets/usercp/wordpress.sass */
.uploader {
  position: relative;
}

/* line 13, app/assets/stylesheets/usercp/wordpress.sass */
.uploader .upload-dropzone {
  border-color: #ccc;
  border-style: dashed;
  border-width: 2px;
  text-align: center;
  padding: 1rem;
}

/* line 21, app/assets/stylesheets/usercp/wordpress.sass */
.uploader .upload-dropzone.uploading {
  filter: blur(2px);
}

/* line 24, app/assets/stylesheets/usercp/wordpress.sass */
.uploader .upload-progress {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  padding: 1rem;
  transform: translate(-50%, -50%);
}
/* line 6, app/assets/stylesheets/usercp/wordpress_list.scss */
.wordpress-list {
  margin: 0;
  padding: 0;
  list-style: none;
  background: #fff;
  border: 1px solid rgba(51, 51, 51, 0.125);
  border-radius: 0.25rem;
  overflow: hidden;
}

/* line 16, app/assets/stylesheets/usercp/wordpress_list.scss */
.wordpress-list__row {
  display: flex;
  align-items: center;
  gap: 1.125rem;
  padding: 1rem 1.125rem;
  border-bottom: 1px solid rgba(51, 51, 51, 0.125);
  transition: background-color .12s ease;
}

/* line 24, app/assets/stylesheets/usercp/wordpress_list.scss */
.wordpress-list__row:last-child {
  border-bottom: none;
}

/* line 28, app/assets/stylesheets/usercp/wordpress_list.scss */
.wordpress-list__row:hover {
  background: #f8f9fa;
}

/* line 33, app/assets/stylesheets/usercp/wordpress_list.scss */
.wordpress-list__row--danger {
  box-shadow: inset 3px 0 0 #c93d38;
}

/* line 37, app/assets/stylesheets/usercp/wordpress_list.scss */
.wordpress-list__thumb {
  position: relative;
  flex-shrink: 0;
  width: 8rem;
  height: 5rem;
  border-radius: 0.25rem;
  overflow: hidden;
  background: #f8f9fa;
}

/* line 46, app/assets/stylesheets/usercp/wordpress_list.scss */
.wordpress-list__thumb img {
  display: block;
  width: 100%;
  height: 100%;
  -o-object-fit: cover;
     object-fit: cover;
  -o-object-position: top;
     object-position: top;
}

/* line 55, app/assets/stylesheets/usercp/wordpress_list.scss */
.wordpress-list__thumb-fallback {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #6c757d;
  font-size: 1.75rem;
  font-weight: 700;
}

/* line 66, app/assets/stylesheets/usercp/wordpress_list.scss */
.wordpress-list__main {
  flex: 1;
  min-width: 0;
}

/* line 71, app/assets/stylesheets/usercp/wordpress_list.scss */
.wordpress-list__title-line {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  flex-wrap: wrap;
}

/* line 78, app/assets/stylesheets/usercp/wordpress_list.scss */
.wordpress-list__name {
  margin: 0;
  min-width: 0;
  font-size: 1.25rem;
  font-weight: 700;
}

/* line 85, app/assets/stylesheets/usercp/wordpress_list.scss */
.wordpress-list__name-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: .25rem .375rem;
  margin: -.25rem -.375rem;
  border-radius: 0.25rem;
  color: inherit;
  text-decoration: none;
  transition: color .12s ease;
}

/* line 96, app/assets/stylesheets/usercp/wordpress_list.scss */
.wordpress-list__name-link:hover, .wordpress-list__name-link:focus-visible {
  color: #003a52;
  text-decoration: underline;
  text-underline-offset: 3px;
}

/* line 103, app/assets/stylesheets/usercp/wordpress_list.scss */
.wordpress-list__name-link:focus-visible {
  outline: 2px solid #003a52;
  outline-offset: 2px;
}

/* line 109, app/assets/stylesheets/usercp/wordpress_list.scss */
.wordpress-list__ext-icon {
  flex-shrink: 0;
  color: #6c757d;
  font-size: 0.875rem;
  transition: opacity .12s ease, color .12s ease;
}

/* line 115, app/assets/stylesheets/usercp/wordpress_list.scss */
.wordpress-list__name-link:hover .wordpress-list__ext-icon, .wordpress-list__name-link:focus-visible .wordpress-list__ext-icon {
  color: #003a52;
  opacity: 1;
}

@media (hover: hover) {
  /* line 125, app/assets/stylesheets/usercp/wordpress_list.scss */
  .wordpress-list__ext-icon {
    opacity: 0;
  }
  /* line 129, app/assets/stylesheets/usercp/wordpress_list.scss */
  .wordpress-list__row:hover .wordpress-list__ext-icon {
    opacity: .55;
  }
}

@media (hover: none) {
  /* line 135, app/assets/stylesheets/usercp/wordpress_list.scss */
  .wordpress-list__ext-icon {
    opacity: .55;
  }
}

/* line 142, app/assets/stylesheets/usercp/wordpress_list.scss */
.wordpress-list__meta {
  margin: .1875rem 0 0;
  color: #6c757d;
  font-size: 0.875rem;
}

/* line 148, app/assets/stylesheets/usercp/wordpress_list.scss */
.wordpress-list__perf {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  margin-top: .3125rem;
  color: #6c757d;
  font-size: 0.875rem;
}

/* line 157, app/assets/stylesheets/usercp/wordpress_list.scss */
.wordpress-list__perf-dot {
  flex-shrink: 0;
  width: .5rem;
  height: .5rem;
  border-radius: 50%;
}

/* line 163, app/assets/stylesheets/usercp/wordpress_list.scss */
.wordpress-list__perf-dot--fast {
  background: #6fbf4d;
}

/* line 167, app/assets/stylesheets/usercp/wordpress_list.scss */
.wordpress-list__perf-dot--medium {
  background: #f5bd4b;
}

/* line 171, app/assets/stylesheets/usercp/wordpress_list.scss */
.wordpress-list__perf-dot--slow {
  background: #c93d38;
}

/* line 176, app/assets/stylesheets/usercp/wordpress_list.scss */
.wordpress-list__actions {
  display: flex;
  flex-shrink: 0;
  gap: 0.5rem;
}

@media (max-width: 767.98px) {
  /* line 183, app/assets/stylesheets/usercp/wordpress_list.scss */
  .wordpress-list__row {
    flex-wrap: wrap;
    gap: 0.75rem;
  }
  /* line 188, app/assets/stylesheets/usercp/wordpress_list.scss */
  .wordpress-list__thumb {
    width: 5.5rem;
    height: 3.4375rem;
  }
  /* line 193, app/assets/stylesheets/usercp/wordpress_list.scss */
  .wordpress-list__actions {
    width: 100%;
  }
  /* line 196, app/assets/stylesheets/usercp/wordpress_list.scss */
  .wordpress-list__actions .btn {
    flex: 1;
  }
}

@media (prefers-reduced-motion: reduce) {
  /* line 203, app/assets/stylesheets/usercp/wordpress_list.scss */
  .wordpress-list__row,
.wordpress-list__name-link,
.wordpress-list__ext-icon {
    transition: none;
  }
}
/* line 6, app/assets/stylesheets/usercp/wordpress_performance.scss */
.wordpress-overview-section {
  margin-bottom: 2rem;
}

/* line 10, app/assets/stylesheets/usercp/wordpress_performance.scss */
.wordpress-performance-card {
  max-width: 640px;
  margin: 0;
  padding: 1.25rem;
}

/* line 16, app/assets/stylesheets/usercp/wordpress_performance.scss */
.wordpress-performance-card__header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

/* line 23, app/assets/stylesheets/usercp/wordpress_performance.scss */
.wordpress-performance-card__header h4 {
  margin: 0;
  font-size: 1rem;
  font-weight: 700;
}

/* line 30, app/assets/stylesheets/usercp/wordpress_performance.scss */
.wordpress-performance-status {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  gap: 0.375rem;
}

/* line 37, app/assets/stylesheets/usercp/wordpress_performance.scss */
.wordpress-performance-status__dot {
  width: .4375rem;
  height: .4375rem;
  border-radius: 50%;
  background: currentColor;
}

/* line 44, app/assets/stylesheets/usercp/wordpress_performance.scss */
.wordpress-performance-status--success {
  color: #527c41;
  background: #e2f2db;
}

/* line 49, app/assets/stylesheets/usercp/wordpress_performance.scss */
.wordpress-performance-status--warning {
  color: #987b3f;
  background: #fdf2db;
}

/* line 54, app/assets/stylesheets/usercp/wordpress_performance.scss */
.wordpress-performance-status--danger {
  color: #813836;
  background: #f4d8d7;
}

/* line 59, app/assets/stylesheets/usercp/wordpress_performance.scss */
.wordpress-performance-status--secondary {
  color: #929393;
  background: #fbfbfb;
}

/* line 64, app/assets/stylesheets/usercp/wordpress_performance.scss */
.wordpress-performance-card__hero {
  display: flex;
  align-items: baseline;
  gap: 0.625rem;
  margin-bottom: 0.25rem;
}

/* line 70, app/assets/stylesheets/usercp/wordpress_performance.scss */
.wordpress-performance-card__hero strong {
  color: #333;
  font-size: 2rem;
  font-weight: 700;
  line-height: 120%;
}

/* line 77, app/assets/stylesheets/usercp/wordpress_performance.scss */
.wordpress-performance-card__hero span {
  color: #6c757d;
  font-size: 0.875rem;
}

/* line 83, app/assets/stylesheets/usercp/wordpress_performance.scss */
.wordpress-performance-card__summary {
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 1rem;
  margin-bottom: 0.25rem;
}

/* line 90, app/assets/stylesheets/usercp/wordpress_performance.scss */
.wordpress-performance-card__summary--with-recent {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

/* line 94, app/assets/stylesheets/usercp/wordpress_performance.scss */
.wordpress-performance-card__recent {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 1rem;
  border-left: 1px solid rgba(51, 51, 51, 0.125);
}

/* line 102, app/assets/stylesheets/usercp/wordpress_performance.scss */
.wordpress-performance-card__context {
  margin: 0 0 1rem;
  font-size: 0.875rem;
}

/* line 107, app/assets/stylesheets/usercp/wordpress_performance.scss */
.wordpress-performance-card__separator {
  color: #6c757d;
}

/* line 111, app/assets/stylesheets/usercp/wordpress_performance.scss */
.wordpress-performance-card__metrics {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  padding-top: 0.75rem;
  border-top: 1px solid rgba(51, 51, 51, 0.125);
}

/* line 118, app/assets/stylesheets/usercp/wordpress_performance.scss */
.wordpress-performance-card__metrics span,
.wordpress-performance-card__metrics strong {
  display: block;
}

/* line 123, app/assets/stylesheets/usercp/wordpress_performance.scss */
.wordpress-performance-card__metrics span {
  margin-bottom: 0.125rem;
  color: #6c757d;
  font-size: 0.875rem;
}

/* line 129, app/assets/stylesheets/usercp/wordpress_performance.scss */
.wordpress-performance-card__metrics strong {
  color: #505050;
  font-size: 1rem;
  font-weight: 700;
}

/* line 136, app/assets/stylesheets/usercp/wordpress_performance.scss */
.wordpress-performance-card__graph-link {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  flex: 0 0 auto;
  font-size: 0.875rem;
  white-space: nowrap;
}

/* line 145, app/assets/stylesheets/usercp/wordpress_performance.scss */
.wordpress-performance-card__footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-top: 0.75rem;
}

/* line 153, app/assets/stylesheets/usercp/wordpress_performance.scss */
.wordpress-performance-card__details {
  flex: 1 1 auto;
  color: #6c757d;
  font-size: 0.875rem;
}

/* line 158, app/assets/stylesheets/usercp/wordpress_performance.scss */
.wordpress-performance-card__details summary {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  cursor: pointer;
}

/* line 165, app/assets/stylesheets/usercp/wordpress_performance.scss */
.wordpress-performance-card__details > div {
  margin-top: 0.5rem;
  line-height: 1.5;
}

/* line 170, app/assets/stylesheets/usercp/wordpress_performance.scss */
.wordpress-performance-card__details p {
  margin: 0;
}

/* line 173, app/assets/stylesheets/usercp/wordpress_performance.scss */
.wordpress-performance-card__details p + p {
  margin-top: 0.25rem;
}

/* line 179, app/assets/stylesheets/usercp/wordpress_performance.scss */
.wordpress-performance-graph {
  margin-top: 0;
  margin-bottom: 1rem;
  scroll-margin-top: 1rem;
}

/* line 184, app/assets/stylesheets/usercp/wordpress_performance.scss */
.wordpress-performance-graph .chart-container {
  position: relative;
  width: 100%;
  min-height: 250px;
  max-height: 360px;
  margin: 1rem 0 0.5rem;
}

@media (max-width: 575.98px) {
  /* line 194, app/assets/stylesheets/usercp/wordpress_performance.scss */
  .wordpress-performance-card {
    padding: 1rem;
  }
  /* line 198, app/assets/stylesheets/usercp/wordpress_performance.scss */
  .wordpress-performance-card__header {
    align-items: flex-start;
  }
  /* line 202, app/assets/stylesheets/usercp/wordpress_performance.scss */
  .wordpress-performance-card__hero {
    flex-wrap: wrap;
  }
  /* line 206, app/assets/stylesheets/usercp/wordpress_performance.scss */
  .wordpress-performance-card__summary {
    grid-template-columns: minmax(0, 1fr);
  }
  /* line 210, app/assets/stylesheets/usercp/wordpress_performance.scss */
  .wordpress-performance-card__recent {
    padding-top: 0.75rem;
    padding-left: 0;
    border-top: 1px solid rgba(51, 51, 51, 0.125);
    border-left: 0;
  }
  /* line 217, app/assets/stylesheets/usercp/wordpress_performance.scss */
  .wordpress-performance-card__footer {
    flex-wrap: wrap;
  }
}
/*

*/
