/* General button style */
.rsvp-btn {
  background-color: #f3f3f3; /* Default background */
  color: #333; /* Default text color */
  border: 1px solid #ccc; /* Default border */
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  font-size: 16px; /* Default font size */
  font-weight: normal; /* Default font weight */
  margin: 5px; /* Space between buttons */
}

/* RSVP Yes button active */
.rsvp-btn[data-response="yes"].active {
  background-color: #28a745; /* Green for active Yes */
  color: #fff; /* White text */
  border-color: #218838; /* Darker green border */
  box-shadow: 0 0 8px rgba(40, 167, 69, 0.5); /* Subtle green glow */
  font-weight: bold;
}

/* RSVP No button active */
.rsvp-btn[data-response="no"].active {
  background-color: #dc3545; /* Red for active No */
  color: #fff; /* White text */
  border-color: #c82333; /* Darker red border */
  box-shadow: 0 0 8px rgba(220, 53, 69, 0.5); /* Subtle red glow */
  font-weight: bold;
}

/* Container styles */
#rsvp-note-container {
  background-color: #f9f9f9; /* Light gray background */
  border: 1px solid #ddd; /* Subtle border for separation */
  border-radius: 8px; /* Rounded corners */
  padding: 16px; /* Inner padding for spacing */
  margin-top: 16px; /* Space from elements above */
  font-family: Arial, sans-serif; /* Consistent font */
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1); /* Soft shadow for depth */
}

/* Status message styles */
.rsvp-current-status {
  font-size: 16px; /* Slightly larger font */
  font-weight: bold; /* Make the text stand out */
  color: #333; /* Darker text color for readability */
  margin-bottom: 8px; /* Space below the status */
}

/* Highlighted status text */
.status-text {
  color: #0073aa; /* WordPress blue color */
  font-weight: bold; /* Emphasize the status */
}

/* Change prompt styles */
.rsvp-change-prompt {
  font-size: 14px; /* Slightly smaller font */
  color: #666; /* Subtle gray color */
  margin-top: 8px; /* Space above the prompt */
}

/* Hover effect for prompts (if clickable in the future) */
.rsvp-change-prompt:hover {
  text-decoration: underline; /* Indicate interactivity */
  cursor: pointer; /* Pointer cursor for clickable feel */
}

/* For a 'No RSVP' status */
#rsvp-note-container .status-text.no {
  color: #d63638; /* Red for 'No' RSVP */
}

/* For a 'Yes RSVP' status */
#rsvp-note-container .status-text.yes {
  color: #46b450; /* Green for 'Yes' RSVP */
}

@keyframes click-feedback {
  0% {
    transform: scale(1);
    background-color: #ddd;
  }
  50% {
    transform: scale(0.95);
    background-color: #bbb;
  }
  100% {
    transform: scale(1);
    background-color: inherit;
  }
}
.rsvp-btn:active {
  animation: click-feedback 0.2s ease;
}

/* Hover effects */
.rsvp-btn:hover {
  background-color: #e9ecef; /* Light gray hover */
  color: #333;
}

/* Default state for Yes button */
.rsvp-btn[data-response="yes"] {
  background-color: #e6f9ed; /* Light green for Yes */
  color: #28a745; /* Green text */
}

/* Default state for No button */
.rsvp-btn[data-response="no"] {
  background-color: #f9e6e6; /* Light red for No */
  color: #dc3545; /* Red text */
}

/* Style for active RSVP buttons*/
.rsvp-btn {
  background-color: #f3f3f3; /* Default background */
  color: #333; /* Default text color */
  border: 1px solid #ccc; /* Default border */
  padding: 10px 20px;
  border-radius: 4px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease;
}

.rsvp-btn.active {
  background-color: #007cba; /* Highlighted background */
  color: #fff; /* Highlighted text color */
  border-color: #007cba; /* Highlighted border */
  font-size: 18px; /* Larger font size for active buttons */
  font-weight: bold; /* Bold text for active buttons */
}

.rsvp-btn:hover {
  background-color: #005a99; /* Hover effect */
  color: #fff; /* Text color on hover */
}
*/


/* Specific style for Purchase Ticket button */
/* Style for Purchase Ticket div */
/* Ticket Purchase Button */
/* Ticket Purchase Button */
#ticket-buttons .ticket-purchase-btn .ms-ticket-purchase-btn {
  display: inline-block !important;
  font-weight: bold !important; /* Override theme's lighter font */
  color: #fff !important; /* Ensure white text */
  background-color: #0073aa !important; /* WordPress blue */
  border: 1px solid #005d8c !important; /* Darker blue border */
  padding: 100px 20px !important; /* Ensure consistent padding */
  border-radius: 4px !important; /* Rounded corners */
  cursor: pointer !important; /* Pointer cursor */
  text-align: center !important;
  font-size: 16px !important; /* Match your button font size */
  transition: background-color 0.2s ease, color 0.2s ease, box-shadow 0.2s ease !important;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1) !important; /* Subtle shadow */
  margin: 10px auto !important; /* Center button in its container */
}

/* Hover State */
#ticket-buttons .ticket-purchase-btn:hover {
  background-color: #005d8c !important; /* Darker blue on hover */
  color: #e0f7ff !important; /* Light text color */
  box-shadow: 0 0 10px rgba(0, 115, 170, 0.5) !important; /* Subtle blue glow */
}

/* Active State */
#ticket-buttons .ticket-purchase-btn:active {
  background-color: #004570 !important; /* Even darker blue */
  border-color: #003954 !important; /* Darker border */
  box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.2) !important; /* Pressed effect */
  transform: scale(0.98) !important; /* Slight shrink on press */
}

.upcoming-dates-list {
  list-style: none;
  padding: 0;
}

.upcoming-dates-list li {
  margin: 10px 0;
}

.rsvp-buttons button {
  margin-right: 5px;
}

.rsvp-buttons button.active {
  background-color: #0073aa;
  color: #fff;
}

#meeting-countdown {
  display: flex;
  justify-content: center;
  gap: 1rem;
  font-family: "Arial", sans-serif;
  text-align: center;
  flex-wrap: wrap; /* Allow wrapping on smaller screens */
  padding: 10px; /* Add padding for better spacing */
}

#meeting-countdown .time-unit {
  display: flex;
  flex-direction: column;
  align-items: center;
  flex: 1 1 20%; /* Default to 20% width per item */
  max-width: 100px; /* Cap maximum width for consistency */
  min-width: 70px; /* Set a reasonable minimum width */
}

#meeting-countdown .number {
  font-size: 2rem;
  font-weight: bold;
  background-color: #007bff; /* Blue background */
  color: white; /* White text */
  padding: 10px 20px; /* Spacing inside the tile */
  border-radius: 8px; /* Rounded corners */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle shadow for depth */
  min-width: 60px; /* Ensure uniform tile width */
  text-align: center;
}

#meeting-countdown .label {
  font-size: 0.9rem;
  color: #555; /* Subtle gray color for the label */
  margin-top: 5px; /* Space between the number and label */
}

@media screen and (max-width: 768px) {
  #meeting-countdown {
    gap: 0.5rem; /* Reduce gap for smaller screens */
  }

  #meeting-countdown .time-unit {
    flex: 1 1 40%; /* Take up 40% width on medium screens */
    max-width: 120px; /* Adjust max width for better fit */
  }

  #meeting-countdown .number {
    font-size: 1.5rem; /* Slightly smaller numbers */
    padding: 8px 16px; /* Adjust padding */
  }

  #meeting-countdown .label {
    font-size: 0.8rem; /* Slightly smaller labels */
  }
}

@media screen and (max-width: 480px) {
  #meeting-countdown {
    gap: 0.1rem; /* Reduce gap even further */
  }

  #meeting-countdown .number {
    font-size: 1.2rem; /* Smaller numbers for compact view */
    padding: 6px 12px; /* Adjust padding */
  }

  #meeting-countdown .label {
    font-size: 0.5rem; /* Compact label size */
  }
}

/* Basic button styles */
.btn {
  display: inline-block !important;
  padding: 10px 20px !important;
  font-size: 16px !important;
  font-weight: bold !important;
  text-align: center !important;
  text-decoration: none !important;
  border: 1px solid transparent !important;
  border-radius: 4px !important;
  cursor: pointer !important;
  transition: background-color 0.3s ease, color 0.3s ease !important;
}

/* Primary button styles */
.btn-primary {
  background-color: #007bff !important;
  color: #fff !important;
  border-color: #007bff !important;
}

.btn-primary:hover {
  background-color: #0056b3 !important;
  border-color: #004085 !important;
}

.meeting-notice {
  text-align: center;
  margin-bottom: 20px;
  padding: 10px;
  background-color: #f8f9fa;
  border: 1px solid #ddd;
  border-radius: 5px;
}

.meeting-notice p {
  margin: 0;
  font-size: 16px;
  font-weight: bold;
  color: #333;
}
/* RSVP Container */
.rsvp-container {
  background-color: #ffffff;
  border-radius: 5px;
  padding: 20px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  max-width: 600px;
  margin: 20px auto;
  font-family: Arial, sans-serif;
}

/* Tabs */
.rsvp-tabs {
  display: flex;
  justify-content: space-around;
  margin-bottom: 20px;
}

.rsvp-tab {
  flex: 1;
  text-align: center;
  background-color: #f9f9f9;
  border: 1px solid #ddd;
  border-radius: 5px;
  padding: 10px;
  cursor: pointer;
  font-size: 16px;
  color: #333;
  transition: all 0.3s ease;
}

.rsvp-tab.active {
  background-color: #007bff;
  color: #ffffff;
  border-color: #007bff;
  font-weight: bold;
}

/* Hover Effect for Tabs */
.rsvp-tab:hover {
  background-color: #007bff;
  color: #ffffff;
  border-color: #007bff;
}

/* Forms */
.rsvp-form {
  display: none;
}

.rsvp-form.active {
  display: block;
}

.rsvp-form p {
  margin-bottom: 15px;
}

.rsvp-form label {
  display: block;
  margin-bottom: 5px;
  font-weight: bold;
  color: #333;
}

.rsvp-form input[type="text"],
.rsvp-form input[type="email"],
.rsvp-form input[type="password"] {
  width: 100%;
  padding: 10px;
  border: 1px solid #ddd;
  border-radius: 5px;
  font-size: 14px;
}

/* Buttons */
.rsvp-btn {
  background-color: #007bff;
  color: #ffffff;
  border: none;
  padding: 10px 15px;
  border-radius: 5px;
  cursor: pointer;
  font-size: 14px;
  transition: background-color 0.3s ease;
}

.rsvp-btn:hover {
  background-color: #0056b3;
}
#meetsimple-notices .notice {
  padding: 10px;
  margin-bottom: 10px;
  border-left: 5px solid;
  font-size: 14px;
}
#meetsimple-notices .notice-success {
  background-color: #dff0d8;
  border-color: #3c763d;
  color: #3c763d;
}
#meetsimple-notices .notice-error {
  background-color: #f2dede;
  border-color: #a94442;
  color: #a94442;
}
.rsvp-current-status {
  font-size: 16px;
  font-weight: regular;
  margin-bottom: 10px;
  color: #333;
}

.rsvp-change-prompt {
  font-size: 14px;
  margin-bottom: 15px;
  color: #555;
}

.rsvp-container {
  margin-top: 20px;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 5px;
  background-color: #f9f9f9;
}

/*Meeting details styles*/
/* Meeting Info Wrapper */
.meeting-info-wrapper {
  font-family: Arial, sans-serif;
  max-width: 600px;
  margin: 20px auto;
  padding: 20px;
  border: 1px solid #ddd;
  border-radius: 8px;
  background-color: #f9f9f9;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}

/* Meeting Title */
.meeting-title {
  font-size: 1.5em;
  color: #333;
  margin-bottom: 10px;
  text-align: center;
}

/* Meeting Date and Time */
.meeting-date-time,
.meeting-location {
  font-size: 1em;
  color: #555;
  margin: 10px 0;
}

/* Map and View on Google Maps */
.meeting-map {
  margin-top: 15px;
  border-radius: 8px;
}

.view-map-link {
  display: inline-block;
  margin-top: 10px;
  font-size: 0.9em;
  color: #007bff;
  text-decoration: none;
  font-weight: bold;
}

.view-map-link:hover {
  text-decoration: underline;
}

/* RSVP Status */
.rsvp-status {
  margin-top: 20px;
  padding: 15px;
  background-color: #eaf7ff;
  border: 1px solid #b3e5ff;
  border-radius: 8px;
}

.rsvp-message {
  font-size: 1em;
  color: #007bff;
  text-align: center;
}

/* Join Meeting Button */
.join-meeting-button {
  display: block;
  margin: 20px auto;
  padding: 10px 20px;
  font-size: 1em;
  font-weight: bold;
  color: #fff;
  background-color: #28a745;
  text-align: center;
  text-decoration: none;
  border-radius: 4px;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
  transition: background-color 0.3s, transform 0.2s;
}

.join-meeting-button:hover {
  background-color: #218838;
  transform: translateY(-2px);
}

/* Info Message */
.meeting-info-message {
  font-size: 1em;
  color: #777;
  text-align: center;
  padding: 10px;
  background-color: #f5f5f5;
  border: 1px solid #ddd;
  border-radius: 8px;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
  .meeting-info-wrapper {
    padding: 15px;
  }
  .meeting-single {
    padding: 0 10px; /* Reduce padding on smaller screens */
  }

  .meeting-content-wrapper {
    margin: 0 5px; /* Add slight margins to the content wrapper on mobile */
  }

  .meeting-title {
    font-size: 1.3em;
  }

  .join-meeting-button {
    font-size: 0.9em;
    padding: 8px 15px;
  }
}

/* Meeting Date and Time Container */
.meeting-date-time {
  font-size: 1em;
  color: #555;
  margin: 10px 0;
}

.meeting-date {
  display: block;
  font-weight: bold;
  color: #333;
  margin-bottom: 5px;
}

.meeting-time {
  display: block;
  font-style: italic;
  color: #777;
}
.view-toggle {
  margin-bottom: 20px; /* Add space below the toggle button */
}

#toggle-view {
  background-color: #0073aa; /* WordPress blue */
  color: #ffffff; /* White text */
  border: none; /* Remove default border */
  border-radius: 5px; /* Rounded corners */
  padding: 10px 20px; /* Add some padding */
  font-size: 16px; /* Adjust font size */
  cursor: pointer; /* Show pointer on hover */
  transition: background-color 0.3s ease, transform 0.2s ease; /* Smooth hover effect */
}

#toggle-view:hover {
  background-color: #005a87; /* Darker blue on hover */
  transform: scale(1.05); /* Slight zoom effect */
}

#toggle-view:focus {
  outline: 2px solid #005a87; /* Accessibility focus outline */
  outline-offset: 2px; /* Add spacing for the outline */
}
.meeting-card {
  border: 1px solid #ddd; /* Subtle border */
  border-radius: 8px; /* Rounded corners for a softer look */
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1); /* Subtle drop shadow */
  transition: box-shadow 0.3s ease, transform 0.3s ease; /* Smooth hover effect */
  background: #ffffff; /* Ensure cards have a solid background */
  overflow: hidden;
}

.meeting-card-link {
  display: block; /* Makes the link span the entire card */
  text-decoration: none; /* Removes default link styles */
  color: inherit; /* Ensures text retains normal styling */
  height: 100%; /* Makes the link cover the entire card */
  width: 100%; /* Ensures full width */
  transition: transform 0.2s ease, box-shadow 0.3s ease; /* Smooth hover effects */
}

.meeting-card-link:hover {
  transform: scale(1.02); /* Slight zoom effect on hover */
  box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1); /* Adds a shadow for emphasis */
}

.read-more {
  display: inline-block;
  margin-top: 10px;
  color: #0073aa;
  font-weight: bold;
}
/* Hover Effect to Enhance Drop Shadow */
.meeting-card:hover {
  box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2); /* Stronger shadow on hover */
  transform: translateY(-4px); /* Slight lift on hover */
}
.card-header .overlay {
  position: absolute;
  bottom: 10px;
  left: 10px;
  background: rgba(82, 82, 82, 0.7);
  color: #fff;
}
.card-header .overlay .next-date {
  margin: 0;
  font-size: 14px;
  font-weight: bold;
}
/* Archive page */

/* General Styles */

#meetings-archive,
.page-header {
  display: grid;
  gap: 20px;
  max-width: 1200px; /* Set the maximum width */
  margin: 0 auto; /* Center the content */
  padding: 0 15px; /* Optional padding for smaller screens */
}

#primary.content-area {
  overflow: hidden; /* Ensures no unexpected horizontal scrolling */
}

/* Card View with Fixed Columns */
#meetings-archive.card-view.columns-1 {
  grid-template-columns: repeat(1, 1fr);
}

#meetings-archive.card-view.columns-2 {
  grid-template-columns: repeat(2, 1fr);
}

#meetings-archive.card-view.columns-3 {
  grid-template-columns: repeat(3, 1fr);
}

/* Responsive Grid for Card View */
@media (max-width: 768px) {
  #meetings-archive.card-view {
    grid-template-columns: repeat(1, 1fr); /* Single column for mobile */
  }

  #meetings-archive.card-view.columns-2,
  #meetings-archive.card-view.columns-3 {
    grid-template-columns: repeat(
      1,
      1fr
    ); /* Override specific column settings on mobile */
  }
}

/* General Card Styling */
#meetings-archive.card-view .meeting-card {
  border: 1px solid #ddd;
  border-radius: 8px;
  box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  overflow: hidden;
  background: #ffffff;
  display: flex;
  flex-direction: column;
}

/* Image Section */
#meetings-archive.card-view .card-header {
  margin: 0;
  padding: 0;
  position: relative;
  overflow: hidden;
}
.card-view .meeting-card .meeting-card-image {
  max-height: 200px; /* Set maximum height */
  width: 100%; /* Maintain aspect ratio */
  object-fit: cover; /* Ensure the image fits within the set height without distortion */
  display: block; /* Ensure proper alignment */
}
#meetings-archive.card-view .card-header img {
  max-height: 200px !important; /* Set maximum height */
  width: auto; /* Maintain aspect ratio */
  object-fit: cover; /* Ensure the image fits within the set height without distortion */
  display: block; /* Ensure proper alignment */
}

/* Content Section */
#meetings-archive.card-view .entry-header,
#meetings-archive.card-view .entry-content {
  padding: 16px;
}

#meetings-archive.card-view .entry-header {
  border-bottom: 1px solid #eee;
  margin-bottom: 8px;
}
#meetings-archive.list-view .entry-header,
#meetings-archive.list-view .entry-content {
  display: block; /* Ensure content is visible */
  padding: 16px; /* Add padding for readability */
}
#meetings-archive.card-view .entry-content {
  margin-top: 8px;
}

/* List View */
/* List View */
#meetings-archive.list-view {
  display: block;
}
#meetings-archive.list-view .list-image {
  flex: 0 0 100%; /* Ensure it adjusts correctly on mobile */
  max-width: 100%;
}

#meetings-archive.list-view .meeting-card {
  display: flex;
  flex-direction: row;
  gap: 20px;
  margin-bottom: 20px;
  border: 1px solid #ddd;
  background: #f9f9f9;
  box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#meetings-archive.list-view .list-view-wrapper {
  display: flex;
  width: 100%;
  gap: 20px; /* Add gap between the image and content */
}

#meetings-archive.list-view .list-image {
  flex: 0 0 30%; /* Image takes 30% of the width */
  max-width: 30%;
  height: auto; /* Automatically adjust height */
  overflow: hidden; /* Ensure no overflow if the image is larger */
}

#meetings-archive.list-view .list-image img {
  width: 100%; /* Ensure the image fills the width */
  height: 100%; /* Ensure the image fills the height */
  object-fit: cover; /* Crop the image to fit its container */
  display: block; /* Remove inline spacing issues */
}

@media (max-width: 768px) {
  #meetings-archive.list-view .list-view-wrapper {
    flex-direction: column; /* Stack the image and content vertically */
    align-items: stretch; /* Ensure full width for each child */
  }

  #meetings-archive.list-view .list-image {
    max-width: 100%; /* Make the image container full width */
    flex: none; /* Prevent flex shrinking or growing */
  }

  #meetings-archive.list-view .list-image img {
    width: 100%; /* Ensure the image fills its container */
    height: auto; /* Maintain the aspect ratio */
    object-fit: cover; /* Ensure the image fits within its container without distortion */
  }

  #meetings-archive.list-view .list-content {
    padding: 10px; /* Add some padding for readability */
  }
}
/* Responsive Adjustments for List View */
@media (max-width: 768px) {
  #meetings-archive.list-view .meeting-card {
    flex-direction: column;
    gap: 10px;
  }

  #meetings-archive.list-view .list-image {
    flex: 0 0 auto;
    max-width: 100%; /* Full width for mobile */
    /*  height: auto; Adjust height to fit content */
  }

  #meetings-archive.list-view .list-image img {
    width: 100%; /* Full width on mobile */
    height: auto; /* Maintain aspect ratio */
    object-fit: contain; /* Prevent cropping */
  }
}

.read-more {
  display: inline-block;
  background-color: #0073aa; /* WordPress blue */
  color: #ffffff;
  padding: 8px 15px;
  text-decoration: none;
  border-radius: 5px;
  font-size: 14px;
  transition: background-color 0.3s ease, transform 0.2s ease;
}
.entry-title a {
  color: #333333; /* Neutral dark color for the link */
  text-decoration: none; /* Remove default underline */
  font-weight: bold; /* Make the title bold */
  transition: color 0.3s ease; /* Smooth color transition */
}

.entry-title a:hover {
  color: #0073aa; /* WordPress blue for hover */
  text-decoration: underline; /* Add underline on hover for clarity */
}

.entry-title a:focus {
  outline: 2px solid #0073aa; /* Accessibility: Highlight focus state */
  outline-offset: 2px;
}
.read-more:hover {
  background-color: #005a87; /* Darker blue on hover */
  transform: scale(1.05); /* Slight zoom effect */
}

/* Single page */
/* Single page */
.meeting-single {
  margin: 0 auto;
  max-width: 1200px;
}

.meeting-featured-image img {
  width: 100%;
  height: auto;
  max-height: 400px;
  object-fit: cover;
  display: block;
}

.meeting-content-wrapper {
  display: flex;
  gap: 20px;
  margin-top: 20px;
}

.meeting-main-column {
  flex: 2;
}

.meeting-sidebar {
  flex: 1;
  background: #f9f9f9;
  padding: 20px;
  border-radius: 8px;
}

.meeting-title {
  font-size: 2rem;
  margin-bottom: 20px;
}

.meeting-countdown {
  margin-bottom: 20px;
}

.meeting-content {
  line-height: 1.6;
}

.meeting-details,
.meeting-rsvp {
  margin-bottom: 20px;
}

.meeting-details {
  background: #fff;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
}

.meeting-rsvp {
  background: #fff;
  padding: 15px;
  border: 1px solid #ddd;
  border-radius: 8px;
}

/* Mobile Styles */
@media (max-width: 768px) {
  .meeting-content-wrapper {
    flex-direction: column;
    gap: 0;
  }

  .meeting-main-column,
  .meeting-sidebar {
    flex: none;
    width: 100%;
  }

  .meeting-sidebar {
    margin-top: 20px;
  }
}

.rsvp-container,
.ticket-container {
  margin: 20px 0;
}

.ticket-select {
  width: 100%;
  padding: 0.5em;
  border: 1px solid #ccc;
  border-radius: 4px;
  font-size: 1em;
  margin-top: 10px;
}

.ticket-container h3 {
  font-size: 1.5em;
  margin-bottom: 0.5em;
}
