#strip1,
#strip2 {
    background-color: #EE2E44;
    color: white !important;
    padding: 26px 30px;
    font-family: Arial, sans-serif;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

#strip1 a,
#strip2 a {
    color: white !important;
}

.strip-text {
    font-size: 20px;
    font-weight: bold;
    color: white !important;
}

.strip-subtext {
    font-weight: 600;
    color: white !important;
}

.strip-button {
    border: 2px solid white;
    color: white !important;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 24px;
    font-weight: bold;
    font-size: 16px;
}

.floating-button-wrapper {
    position: fixed;
    bottom: 0px;
    right: 20px;
    transition: transform 0.3s ease;
    display: flex;
    justify-self: anchor-center;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.95) 60%, rgba(255, 255, 255, 1) 78%);
    height: 125px;
    align-items: center;
    width: 100%;
    justify-content: center;
}

.floating-button-wrapper.rise-text {
    transform: translateY(0);
}

.floating-button-wrapper.drop-text {
    transform: translateY(100px);
}

.floating-button {
    background-color: #EE2E44;
    color: white !important;
    padding: 15px 30px;
    font-weight: bold;
    border-radius: 40px;
    text-decoration: none;
    display: inline-block;
    font-size: 18px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    cursor: pointer;
}

#modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    z-index: 9999;
    font-family: Arial, sans-serif;
}

.modal-content {
    width: 418px;
    margin: 8% auto;
    background-color: #fff;
    border-radius: 12px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.modal-header {
    background-color: #FFEFF1;
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: start;
    position: relative;
    background-image: url('https://vyaparwebsiteimages.vypcdn.in/download_desktop_popup_image.png');
    background-size: cover;
    background-position: center;
}

.modal-title {
    font-size: 20px;
    width: 80%;
    color: #000;
    line-height: 1.3;
    margin-top: 42px;
    margin-bottom: 20px;
}

.modal-close {
    width: 20px;
    height: 20px;
    cursor: pointer;
    position: absolute;
    top: 20px;
    right: 20px;
    margin: 0;
}

.modal-body {
    padding: 20px;
}

.modal-fieldset {
    border: 1px solid #ED1A3B;
    border-radius: 10px;
    padding: 3px 2px;
}

.modal-legend {
    color: #ED1A3B;
    font-size: 13px;
    border-bottom: none;
    width: auto;
    margin-bottom: 0;
}

.modal-input {
    height: 33px !important;
    width: 100%;
    padding: 10px;
    border: none !important;
    outline: none !important;
    font-size: 16px;
    color: #333;
}

.modal-error {
    display: none;
    color: red;
    margin-top: 10px;
    font-size: 14px;
}

.modal-safe-message {
    color: #ED1A3B;
    font-size: 13px;
    text-align: center;
    margin-top: 10px;
}

.modal-button-wrapper {
    text-align: center;
    margin-top: 25px;
    margin-bottom: 10px;
}

.modal-button {
    width: 100%;
    background-color: #ED1A3B;
    color: white;
    padding: 8px 24px;
    border: none;
    border-radius: 10px;
    font-size: 15px;
    cursor: pointer;
}


.modal-input::-webkit-outer-spin-button,
.modal-input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

/* For Firefox */
.modal-input[type="number"] {
    -moz-appearance: textfield;
}

.iti--separate-dial-code .iti__selected-flag {
		background: white;
}
.iti--allow-dropdown {
		width: 100%;
}
.iti--allow-dropdown input {
	background: white;
}

/* Categories */
.categories-link-container {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(185px, max-content));
  gap: 20px;
  justify-content: start;
}

.categories-link-container .category-link {
  background-color: #ed1a3b;
  border-radius: 40px;
  color: #fff !important;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 10px 20px;
  white-space: nowrap;
  box-sizing: border-box;
  font-weight: bold;
}



@media only screen and (max-width: 767px) {
 /* Categories */
  .categories-link-container {
    gap: 15px;
    grid-template-columns: repeat(auto-fit, minmax(165px, max-content));
  }

  .categories-link-container .category-link {
    border-radius: 20px;
    padding: 7px;
    font-size: 14px;
  }
}
