.close-modal-2 {
	position: absolute;
    top: 0.2rem;
    right: 1rem;
    font-size: 4rem;
    color: #333;
    cursor: pointer;
    border: none;
    background: none;
}

.b_modal_2 {
  position: fixed;
  top: 50%;
  left: 50%;
  width: 70%;
  transform: translate(-50%, -50%);
  background-color: white;
  padding: 2rem;
  border-radius: 5px;
  box-shadow: 0 3rem 5rem rgba(0, 0, 0, 0.3);
  z-index: 9999;
}

.overlay_2 {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  backdrop-filter: blur(3px);
  z-index: 999;
}

.b_div_2{
	margin: 0 auto 12px;
    width: fit-content;
	-webkit-align-items: center;
    color: #0a8800;
    display: -webkit-flex;
    flex-direction: row;
    font-family: miui, system-ui, -apple-system, BlinkMacSystemFont, \.SFNSText-Regular, Helvetica, Arial, sans-serif;
    font-size: 13px;
    font-weight: 400;
    -webkit-justify-content: center;
    line-height: .2rem;
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
}

.b_svg_2{
	flex-shrink: 0;
    height: 13px;
    margin-right: 4px;
	margin-top: 0.5px;
    width: 13px;
    fill: #0a8800;
    transform: translateY(-1px);
	color: #0a8800;
}
.b_modal_2 h1{
	color: #222;
    font-size: 20px;
    font-weight: 600;
    line-height: 28px;
    text-align: center;
	margin-top: 0;
}
.b_modal_2 input{
	height: 4rem;
    width: 100%;
    color: #222;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: .18rem;
    padding: 0 .5rem 0 .5rem;
	margin: 0.6rem 0;
}
.b_modal_2 textarea{
	height: 8rem;
    width: 100%;
    color: #222;
    font-size: 1.5rem;
    font-weight: 400;
    padding: .7rem .5rem 0 .5rem;
    margin: 0.6rem 0;
}
.my_basket_2{
	display: flex;
	flex-direction: row;
	justify-content: center;
	align-items: center;
	gap: 1rem;
}
/* Для большинства смартфонов (до 480px) */
@media (max-width: 480px) {
	.b_modal_2 {
	  width: 100%;
	}
	.my_basket_2{
		flex-direction: column;
	}
}
/* Для больших смартфонов и "фаблетов" (до 600px) */
@media (max-width: 600px) {
	.b_modal_2 {
	  width: 90%;
	}
	.my_basket_2{
		flex-direction: column;
	}
}
/* ========== ПЛАНШЕТЫ (>=768px) ========== */
@media (min-width: 768px) {
	.b_modal_2 {
	  width: 50%;
	}
	.my_basket_2{
		flex-direction: row;
	}
}
/* ========== ДЕСКТОПЫ (>=1024px) ========== */
@media (min-width: 1024px) {
	.b_modal_2 {
	  width: 40%;
	}
	.my_basket_2{
		flex-direction: row;
	}
}