/* ===========================================
  HIDE DIVI NAVIGATION MENU
  =========================================== */
#top-menu-nav {
    visibility: hidden;
}
#et_mobile_nav_menu {
    visibility: hidden !important;
}
/* ===========================================
  EDITION MONIKER STYLES
  =========================================== */
.beta-badge-container {
  text-align: center;
  margin-bottom: 0.5rem;
}

.beta-badge {
  display: inline-block;
  padding: 0.25rem 0.75rem;
  background-color: rgba(18, 47, 81, 0.05); /* Updated brand color with transparency */
  border: 1px solid rgba(18, 47, 81, 0.2); /* Updated brand color for border */
  border-radius: 0.5rem;
  transform: rotate(6deg);  
  transition: all 0.2s ease;
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.05); /* Subtle depth */
}

.beta-badge:hover {
  transform: rotate(0deg);
  background-color: rgba(18, 47, 81, 0.08); /* Slightly darker on hover */
}

.beta-badge span {
  color: #122f51; /* Updated brand color */
  font-weight: 600;
  font-size: 0.875rem;
  letter-spacing: 0.05em; /* Slightly increased for elegance */
}

/* ===========================================
HEADER STYLES INCLUDING RESPONSIVE
  =========================================== */
.MarketplaceCompassHeader {
   text-align: left;
   margin-bottom: 4rem;
}

.MarketplaceCompassHeader h2 {
   font-size: 2.25rem;
   font-weight: 400;
   letter-spacing: -0.02em;
   margin-bottom: 1rem;
   color: #122f51;
}

h2.Marketplacesubtitle {
   font-size: 2rem;
   font-weight: 400;
   letter-spacing: -0.02em;
   margin-bottom: 1rem;
   color: #122f51;
}

p.Marketplacesubtitle {
   font-size: 1.1rem;
   line-height: 1.5;
   color: #424242;
   margin-bottom: 0.5rem;
}

p.Marketplacesubtitle2 {
   font-size: 1rem;
   line-height: 1.6;
   color: #424242;
   margin-bottom: 0.5rem;
}

@media (max-width: 480px) {
  .MarketplaceCompassHeader h2 {
     font-size: 1.5rem;
  }
  
  h2.Marketplacesubtitle {
     font-size: 1.5rem;
  }
  
  p.Marketplacesubtitle {
     font-size: 0.95rem;
     padding-left: 3%;
     padding-right: 3%;
  }

  p.Marketplacesubtitle2 {
     font-size: 0.9rem;
     padding-left: 3%;
     padding-right: 3%;
  }

}

/* ===========================================
  APP STYLES
  =========================================== */

.MarketCompassContainer {
    max-width: 700px;
    margin: 40px auto;
    padding: 30px;
    font-family: 'Inter', sans-serif;
    color: #1d1d1f;
}

/* Step Styling */
.MarketCompassStepWrapper {
    position: relative;
    margin-bottom: 60px;
    padding-left: 48px;
}

.MarketCompassStepNumber {
    position: absolute;
    left: 0;
    top: 0;
    width: 32px;
    height: 32px;
    background: #004f94;
    color: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
    font-size: 16px;
}

.MarketCompassInputSection {
    width: 100%;
}

/* Industry Select Styling */
.MarketCompassLabel {
    display: block;
    font-family: 'Roboto', sans-serif;
    font-size: 17px;
    font-weight: 500;
    margin-bottom: 8px;
    color: #004f94;
}

.MarketCompassSelect {
    width: 100%;
    height: 44px;
    padding: 0 40px 0 16px;
    font-size: 15px;
    border: 1px solid #d2d2d7;
    border-radius: 8px;
    background-color: #ffffff;
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg width='12' height='12' viewBox='0 0 12 12' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M2.5 4.5L6 8L9.5 4.5' stroke='%2386868b' stroke-width='1.5' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    cursor: pointer;
    transition: all 0.2s ease;
}

.MarketCompassSelect:focus {
    outline: none;
    border-color: #004f94;
    box-shadow: 0 0 0 4px rgba(0, 79, 148, 0.1);
}

/* Size Selector Styling */
/* REMOVED SIZE SELECTOR STYLE PLACEHOLDER */

/* Search Section */
.MarketCompassSearchWrapper {
    margin-bottom: 24px;
}

.MarketCompassInputGroup {
    position: relative;
}

.MarketCompassSearchInput {
    width: 100%;
    height: 44px;
    padding: 0 40px 0 16px;
    font-size: 16px;
    border: 1px solid #d2d2d7;
    border-radius: 8px;
    background-color: #ffffff;
    transition: all 0.2s ease;
}

.MarketCompassSearchInput:focus {
    outline: none;
    border-color: #004f94;
    box-shadow: 0 0 0 4px rgba(0, 79, 148, 0.1);
}

.MarketCompassSearchIcon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #727276;
    font-size: 20px;
}

/* Vendor List */
.MarketCompassSectionTitle {
    font-family: 'Roboto', sans-serif;
    font-size: 19px;
    font-weight: 500;
    color: #1d1d1f;
    margin: 24px 0 16px;
}

.MarketCompassVendorList {
    list-style: none;
    padding: 0;
    margin: 16px 0;
}

.MarketCompassVendorList li {
    display: flex;
    align-items: center;
    padding: 14px 16px;
    margin: 8px 0;
    background: #ffffff;
    border: 1px solid #d2d2d7;
    border-radius: 12px;
    transition: all 0.2s ease;
}

.MarketCompassVendorList li:hover {
    background: #f5f5f7;
}

.MarketCompassVendorList input[type="checkbox"] {
    margin-right: 12px;
    width: 18px;
    height: 18px;
    border: 1px solid #d2d2d7;
    border-radius: 4px;
    flex-shrink: 0;
}

.MarketCompassVendorList span {
    flex: 1;
    font-family: 'Inter', sans-serif;
    font-size: 15px;
    color: #1d1d1f;
    min-width: 0;
    word-wrap: break-word;
}

.MarketCompassCounter {
    display: flex;
    align-items: center;
    gap: 4px;
    color: #727276;
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    margin-top: 16px;
}

.MarketCompassCounterNumber {
    color: #1d1d1f;
    font-weight: 500;
}

/* jQuery UI Autocomplete */
.ui-autocomplete {
    background: #ffffff;
    border: 1px solid #d2d2d7;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.12);
    max-height: 280px;
    overflow-y: auto;
    margin-top: 4px;
    padding: 8px 0;
}

.ui-menu-item {
    padding: 10px 16px;
    font-size: 15px;
    color: #1d1d1f;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.ui-menu-item:hover {
    background-color: #f5f5f7;
}

/* Remove Button */
button.MarketCompassRemoveButton {
    border: none;
    background: none;
    color: #d93227;
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 13px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
    margin-left: auto;
}

button.MarketCompassRemoveButton:hover {
    background-color: rgba(255, 59, 48, 0.1);
}

/* Responsive Design */
/*@media (max-width: 1024px) {
    .MarketCompassSizeButton {

		flex: 1 1 calc(33.333% - 14px);
    }
}*/

@media (max-width: 768px) {
    .MarketCompassContainer {
        margin: 20px auto;
        padding: 20px;
    }
    
    .MarketCompassStepWrapper {
        padding-left: 40px;
        margin-bottom: 40px;
    }
    
    .MarketCompassLabel,
    .MarketCompassSelect,
    .MarketCompassSearchInput {
        font-size: 16px;
    }
    
    .MarketCompassSizeSelector {
        gap: 15px;
    }
    
    .MarketCompassSizeButton {
        padding: 16px 12px;
    }
    
    .MarketCompassSizeIcon {
        font-size: 28px;
        margin-bottom: 8px;
    }
    
    .MarketCompassSizeTitle {
        font-size: 15px;
    }
    
    .MarketCompassSizeDetail {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .MarketCompassContainer {
        margin: 10px;
        padding: 15px;
    }
    
    .MarketCompassStepWrapper {
        padding-left: 32px;
        margin-bottom: 30px;
    }
    
    .MarketCompassStepNumber {
        width: 24px;
        height: 24px;
        font-size: 14px;
    }
    
    .MarketCompassSizeSelector {
        gap: 10px;
    }
    
    .MarketCompassSizeButton {
        flex: 1 1 100%;
        min-width: 100%;
        padding: 12px;
    }

    .MarketCompassVendorList li {
        padding: 12px;
        flex-wrap: wrap;
    }

    .MarketCompassVendorList input[type="checkbox"] {
        margin-top: 3px;
    }

    .MarketCompassVendorList span {
        width: calc(100% - 42px);
        margin-left: 0;
    }

    button.MarketCompassRemoveButton {
        width: calc(100% - 42px);
        margin: 8px 0 0 30px;
        padding: 6px 12px;
        background-color: rgba(255, 59, 48, 0.08);
        text-align: left;
    }
    
    .MarketCompassSectionTitle {
        font-size: 17px;
    }
    
    .ui-autocomplete {
        max-height: 240px;
    }
}

/* ===========================================
  LOADER
  =========================================== */
#Marketplaceloader {
   border: 3px solid rgba(0, 79, 148, 0.1);
   border-top: 3px solid #004f94;
   border-radius: 50%;
   width: 69px;
   height: 69px;
   animation: spin 1s cubic-bezier(0.4, 0, 0.2, 1) infinite;
   margin: 40px auto;
}

@keyframes spin {
   0% { transform: rotate(0deg); }
   100% { transform: rotate(360deg); }
}

#MarketplaceloadingText {
   text-align: center;
   margin-top: 24px;
   margin-bottom: 60px;
   font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
   font-size: 0.95rem;
   color: #676767;    /* Softer text color */
   letter-spacing: -0.01em;
}
/* ===========================================
  GET RESULTS BUTTON
  =========================================== */
.Marketplacesubmit-container {
   text-align: center;
   margin: 2rem 0;
}

.Marketplacecalculate-btn {
   background-color: #004f94;
   color: #ffffff;
   font-family: 'Roboto', -apple-system, BlinkMacSystemFont,system-ui, sans-serif;
   font-size: 0.875rem;
   font-weight: 600;
   padding: 0.875rem 2.5rem;
   border: none;
   border-radius: 8px;
   cursor: pointer;
   letter-spacing: 0.01em;
   box-shadow: 0 1px 2px rgba(0,0,0,0.05);
   transition: all 0.3s ease;
}

.Marketplacecalculate-btn:hover {
   background-color: #003d73;
   transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0,79,148,0.2);
}

.Marketplacecalculate-btn:focus {
   outline: none;
   box-shadow: 0 0 0 2px #ffffff, 0 0 0 4px #004f94;
}

.Marketplacecalculate-btn:active {
   background-color: #002952;
   transform: translateY(1px);
}
/* ===========================================
  ERROR MESSAGE STYLES
  =========================================== */
.Marketplaceerror-message {
    text-align: center;
    color: #d93227;
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 1rem 0;
    letter-spacing: -0.01em;
    min-height: 24px;
}
/* ===========================================
RESULTS CONTAINER STYLES
=========================================== */
.MarketplaceResultsWrapper {
  padding-left: 5%;
  padding-right: 5%;
  margin: 3rem 0;
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
}

.MarketplaceResultsHeader {
  text-align: center;
  margin-bottom: 2rem;
}

.MarketplaceResultsHeader h3 {
  font-size: 1.75rem;
  font-weight: 400;
  letter-spacing: -0.02em;
  color: #122f51;
  margin-bottom: 0.75rem;
}

.MarketplaceResultsContext {
  font-size: 1rem;
  color: #424242;
  line-height: 1.5;
}

.MarketplaceResultsContent {
  background: #ffffff;
  border-radius: 12px;
  padding: 2rem;
  box-shadow: 0 2px 4px rgba(0,0,0,0.04);
  border: 1px solid #d2d2d7;
}

.MarketplaceResultsContent h4 {
    padding-top:40px;
	font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    color: #004f94;
	
}

.MarketplaceResultsContent a {
    color: #004f94;
    text-decoration: underline;
    transition: all 0.2s ease;
	font-size:1rem;
	display:inline-block;
}

.MarketplaceResultsContent a:hover {
    color: #003d73;
    transform: scale(1.05);
    transition: transform 0.3s ease, color 0.2s ease;
}

/* Responsive adjustments */
@media (max-width: 768px) {
  .MarketplaceResultsHeader h3 {
      font-size: 1.5rem;
  }
  
  .MarketplaceResultsContext {
      font-size: 1rem;
  }
  
  .MarketplaceResultsContent {
      padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .MarketplaceResultsWrapper {
      padding-left: 3%;
      padding-right: 3%;
  }
  
  .MarketplaceResultsContent {
      padding: 1rem;
  }
}
/* ===========================================
  SOLUTIONS LIST STYLES
  =========================================== */
.MarketplaceSolutionsContent {
    background: #ffffff;
    border-radius: 12px;
    padding: 2rem;
    box-shadow: 0 2px 4px rgba(0,0,0,0.04);
    border: 1px solid #d2d2d7;
}

.MarketplaceSolutionsContent h4 {
    padding-top: 20px;
    margin-bottom: 20px;
    font-size: 1.25rem;
    font-weight: 400;
    letter-spacing: -0.02em;
    color: #004f94;
}

#MarketplaceSolutionsListContent {
    list-style: none;
    padding: 0;
}

#MarketplaceSolutionsListContent li {
    margin-bottom: 1.5rem;
    padding-bottom: 1.5rem;
    border-bottom: 1px solid rgba(0, 79, 148, 0.1);
    line-height: 1.5;
	font-size: 80% !important;
}

#MarketplaceSolutionsListContent li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

@media (max-width: 480px) {
    .MarketplaceSolutionsContent {
        padding: 1rem;
    }
    
    .MarketplaceSolutionsContent h4 {
        font-size: 1.1rem;
    }
}
/* ===========================================
  PAGINATION STYLES
  =========================================== */
.MarketplacePagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 79, 148, 0.1);
}

.MarketplacePaginationButton {
    background-color: #ffffff;
    border: 1px solid #004f94;
    color: #004f94;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    cursor: pointer;
    font-size: 0.875rem;
    transition: all 0.2s ease;
}

.MarketplacePaginationButton:hover:not(:disabled) {
    background-color: #004f94;
    color: #ffffff;
}

.MarketplacePaginationButton:disabled {
    border-color: #d2d2d7;
    color: #86868b;
    cursor: not-allowed;
}

.MarketplacePaginationInfo {
    color: #424242;
    font-size: 0.875rem;
}	


/* Download Button Styling */
#downloadSolutions {
    background-color: #f7f7f7;
    color: #243A5E;
    border: 1px solid #ddd;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    font-size: 14px;
    transition: background-color 0.3s;
}

#downloadSolutions:hover {
    background-color: #e9e9e9;
}

#downloadSolutions:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

#downloadSolutions svg {
    margin-right: 5px;
}

