/*custome css by elitemantra  */
.elite-main-form{
	display:flex;
	justify-content:space-between;
}

.elite-container {
      background: linear-gradient(to bottom right, #ffe1a3, #ffb347);
      padding: 30px;
      border-radius: 10px;
      width: 400px;
      box-shadow: 0 8px 20px rgba(0, 0, 0, 0.3);
    }

    .elite-heading {
      text-align: center;
      color: #222;
      font-size: 16px;
      margin-bottom: 20px;
    }

    .elite-section-title {
      font-weight: bold;
      margin: 20px 0 10px;
		font-size:15px;
    }

    .elite-car-types,
    .elite-priorities,
    .elite-categories {
      display: flex;
      justify-content: space-between;
      flex-wrap: wrap;
      gap: 10px;
    }

    .elite-car-type,
    .elite-priority-btn,
    .elite-category-btn {
      flex: 1;

      padding: 10px;
      border: 1px solid #999;
      border-radius: 8px;
      background-color: #fff;
      text-align: center;
      cursor: pointer;
      transition: transform 0.2s ease;
      box-shadow: 2px 2px 4px rgba(0,0,0,0.1);
    }

    .elite-car-type img {
      width: 60px;
      height: auto;
    }

    .elite-car-type span {
      display: block;
      margin-top: 5px;
      font-weight: bold;
    }

    .elite-priority-btn:hover,
    .elite-car-type:hover,
    .elite-category-btn:hover {
      transform: scale(1.05);
      background-color: #f0f0f0;
    }

    .elite-selected {
      border: 2px solid #1f64ac !important;
      background-color: #eaf4ff;
    }

    .elite-match-msg {
      text-align: center;
      font-weight: bold;
      margin: 20px 0 10px;
      font-size: 18px;
    }

    .elite-cta-button {
      display: block;
      width: 80%;
      margin:30px auto;
      padding: 12px;
      background-color: #000;
      color: #fff;
      font-weight: bold;
      border: none;
      border-radius: 10px;
      font-size: 16px;
      cursor: pointer;
      box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4);
    }

    .elite-cta-button:hover {
      background-color: #222;
    }

    /* Popup styles */
    .elite-popup {
      display: none;
      position: fixed;
      top: 0; left: 0;
      width: 100%; height: 100%;
      background-color: rgba(0,0,0,0.5);
      justify-content: center;
      align-items: center;
      z-index: 999;
    }

    .elite-popup-content {
      background-color: #fff;
      padding: 30px;
      border-radius: 10px;
      max-width: 400px;
      text-align: left;
      box-shadow: 0 5px 20px rgba(0,0,0,0.3);
    }

    .elite-close-btn {
      float: right;
      font-size: 20px;
      font-weight: bold;
      cursor: pointer;
      color: #999;
    }

    .elite-summary {
      margin-bottom: 20px;
      line-height: 1.6;
      color: #333;
    }

    .elite-priorities-2{
        margin-top:20px;
    }

