.more-products-modal {
  margin: auto;
  border: none;
  outline: none;
  box-shadow: 0px 2px 8px 0px #482C7714;
  border-radius: 12px;
}

/*.more-products-modal::backdrop {
  background: rgba(0, 0, 0, 0.5);
}
*/
.more-product-modal-dailog::backdrop{
	background: black;
    opacity: 0.5;
}


.modal-conatiner {
  position: relative;
  z-index: 1;
  width: 630px;
  height: 430px;
  display: flex;
  justify-content: center;
  align-items: center;
}


.more-products-modal .cross-icon img {
  cursor: pointer;
  height: 32px;
  width: 32px;
}

.more-products-modal .modal-header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.more-products-modal .more-product-modal-dailog {
  max-width: 1019px;
  min-width: 369px;
 /* width: 100%;*/
  padding: 40px 32px;
  border: none;
  border-radius: 24px;
}

.more-products-modal .modal-header-content .modal-product-title {
  margin-bottom: unset;
  font-size: 2rem;
  line-height: 100%;
  font-weight: 700;
  color: #093E81;
}

.more-products-modal .more-product-modal-body {
  text-align: left;
  /* padding: 0 3rem 3rem; */
}

.more-products-modal .categories-container {
  display: flex;
  gap: 20px;
}

.more-products-modal .category-section {
  /* flex: 25%; */
  background: #F6F8FA;
  /* background: white; */
  border-radius: 5px;
  padding: 40px 32px;
  border-radius: 16px;
  min-width: 305px;
  width: 100%;
}

.more-products-modal .link {
  color: #093E81;
  font-family: Raleway;
  font-weight: 700;
  font-size: 20px;
  line-height: 100%;
}

.more-products-modal .category-name {
  margin-bottom: 24px;
}

.products-list li a {
  font-family: Raleway;
  font-weight: 400;
  font-size: 14px;
  line-height: 100%;
}

.products-list li {
  padding-bottom: 20px;
  word-wrap: break-word;
}

.products-list li:last-child{
	padding-bottom: unset;
}

@media screen and (max-width : 768px) {
  .more-products-modal {
    box-shadow: unset;
  }

  .modal-conatiner {
    width: 100%;
    height: 100%;
  }

  .more-products-modal .more-product-modal-dailog {
    padding: 24px 20px;
    top: 5%;
    max-width: 328px;
    min-width: unset;
    margin: 0 16px;
    max-height: 458px;
    height: 100%;
  }
  .more-products-modal .category-section{
    padding: 20px 24px;
  }
  .more-products-modal .category-name{
    margin-bottom: 20px;
  }
  .more-products-modal .link{
    font-size: 16px;
  }
  .more-products-modal .modal-header-content{
    margin-bottom: 16px;
  }
  .more-products-modal .categories-container{
    gap: 16px;
  }

}