.text_info-pric{
 display: flex;
    justify-content: space-between;
    flex-direction: row;
    align-items: center;
}
.text_info-pric p{
        line-height: 0px;
    margin-bottom: 0px;
    color: #ff0000;
}
#map {
  
    width: 500px;
    height: 300px;
}
.con_flex{
     display: flex;
    justify-content: space-between;
    flex-direction: row;
    column-gap: 130px;
}
.con__text h4{
        text-align: center;
    font-size: 24px;
}
.del{
        display: block;
}
.del-mob{
        display: none;
}
        
@media screen and (max-width: 500px) {
	.del{
        display: none;
        
}
}
@media screen and (max-width: 500px) {
	.del-mob{
        display: block;
        
}
}

#myImg {
    border-radius: 5px;
    cursor: pointer;
    transition: 0.3s;
}

#myImg:hover {opacity: 0.7;}

/* The Modal (background) */
.modal {
    display: none; /* Hidden by default */
    position: fixed; /* Stay in place */
    z-index: 1; /* Sit on top */
    left: 0;
    top: 0;
    width: 100%; /* Full width */
    height: 100%; /* Full height */
    overflow: auto; /* Enable scroll if needed */
    background-color: rgb(0,0,0); /* Fallback color */
    background-color: rgba(0,0,0,0.3); /* Black w/ opacity */
}



/* Caption of Modal Image */
#caption {
    margin: auto;
    display: block;
    width: 80%;
    max-width: 700px;
    text-align: center;
    color: #ccc;
    padding: 10px 0;
    height: 150px;
}

/* Add Animation */
.modal-content, #caption {    
    -webkit-animation-name: zoom;
    -webkit-animation-duration: 0.6s;
    animation-name: zoom;
    animation-duration: 0.6s;
}

@-webkit-keyframes zoom {
    from {-webkit-transform:scale(0)} 
    to {-webkit-transform:scale(1)}
}

@keyframes zoom {
    from {transform:scale(0)} 
    to {transform:scale(1)}
}

/* The Close Button */
.close {
    position: absolute;
    top: 10px;
    right: 35px;
    color: #f1f1f1;
    font-size: 40px;

}

.close:hover,
.close:focus {
    color: #bbb;
    text-decoration: none;
    cursor: pointer;
}

/* 100% Image Width on Smaller Screens */
@media only screen and (max-width: 700px){
    .modal-content {
        width: 100%;
    }
}
/**затемнение фото*/
.item-photo:after {
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  top: 1930; left: 0;
  background: linear-gradient(to bottom, transparent 0%,  rgba(0,0,0,0.5) 100%);
}

.category_short .docs .item .icon {
    width: 12px;
    height: 18px;
    position: absolute;
    top: 0;
    left: 0;
    background: 0 0 no-repeat;
}
.category_short .docs .item {
    font-weight: 500;
    margin-bottom: 13px;
    padding-left: 22px;
    position: relative;
    padding-top: 2px;
    float: left;
    width: 100%;
}
.img-fluid {
    max-width: 100%;
    height: auto;
}
.cart{
        margin-top: 0px;
}
@media only screen and (max-width: 500px){
.cart{
        margin-top: 320px;
}
}
.prodectsen{
background: #daeaea;
    display: flex;
    flex-direction: column;
    margin-bottom: 30px;
        padding: 20px;
}
.prodectsen__des{
  display: flex;
    flex-direction: row;
    align-items: flex-start;
}
.prodectsen__des p{
  width: 80%;
}
.prodectsen__des div{
  width: 20%;
}
.prodectsen__price{
    gap: 60px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    
}
.prodectsen__price p{
    color: #ff0000;
  /*  line-height: 0px;  */
    margin-bottom: 0px;
}




/*Кнопка*/
/* From Uiverse.io by Li-Deheng */ 
.btn-conteiner {
  display: flex;
 
  justify-content:flex-end;
  --color-text: #ffffff;
  --color-background: #ff135a;
  --color-outline: #ff145b80;
  --color-shadow: #00000080;
}

.btn-content {
display: flex;
    align-items: center;
    padding: 5px 30px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 20px;
    color: var(--color-text);
    background: #1c48bd;
    transition: 1s;
    /* border-radius: 100px; */
    box-shadow: 0 0 0.2em 0 #1c48bd;
}

.btn-content:hover, .btn-content:focus {
  transition: 0.5s;
  -webkit-animation: btn-content 1s;
  animation: btn-content 1s;
  outline: 0.1em solid transparent;
  outline-offset: 0.2em;
  box-shadow: 0 0 0.4em 0 var(--color-background);
}

.btn-content .icon-arrow {
  transition: 0.5s;
  margin-right: 0px;
  transform: scale(0.6);
}

.btn-content:hover .icon-arrow {
  transition: 0.5s;
  margin-right: 25px;
}

.icon-arrow {
  width: 20px;
  margin-left: 15px;
  position: relative;
  top: 6%;
}
  
/* SVG */
#arrow-icon-one {
  transition: 0.4s;
  transform: translateX(-60%);
}

#arrow-icon-two {
  transition: 0.5s;
  transform: translateX(-30%);
}

.btn-content:hover #arrow-icon-three {
  animation: color_anim 1s infinite 0.2s;
}

.btn-content:hover #arrow-icon-one {
  transform: translateX(0%);
  animation: color_anim 1s infinite 0.6s;
}

.btn-content:hover #arrow-icon-two {
  transform: translateX(0%);
  animation: color_anim 1s infinite 0.4s;
}

/* SVG animations */
@keyframes color_anim {
  0% {
    fill: white;
  }

  50% {
    fill: var(--color-background);
  }

  100% {
    fill: white;
  }
}

/* Button animations */
@-webkit-keyframes btn-content {
  0% {
    outline: 0.2em solid var(--color-background);
    outline-offset: 0;
  }
}

@keyframes btn-content {
  0% {
    outline: 0.2em solid var(--color-background);
    outline-offset: 0;
  }
}

 
 /* From Uiverse.io by cssbuttons-io */ 
.prodectsen__button {
  font-size: 17px;
  padding: 1em 2.7em;
  font-weight: 500;
  background: #1c48bd;
  color: white;
  border: none;
  position: relative;
  overflow: hidden;
  cursor: pointer;
}

.gradient {
  position: absolute;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  margin-top: -0.25em;
  background-image: linear-gradient(
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0),
    rgba(0, 0, 0, 0.3)
  );
}

.label {
  position: relative;
  top: -1px;
}

.transition {
  transition-timing-function: cubic-bezier(0, 0, 0.2, 1);
  transition-duration: 500ms;
  background-color: rgba(16, 185, 129, 0.6);
  border-radius: 9999px;
  width: 0;
  height: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}

.prodectsen__button:hover .transition {
  width: 14em;
  height: 14em;
}

.prodectsen__button:active {
  transform: scale(0.97);
}
 /*Кнопка end*/  
 .row {
  --bs-gutter-x: 1.5rem;
  --bs-gutter-y: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: flex-start;
}
.prodectsen h2{
            padding-top: 20px;
}
@media only screen and (max-width: 600px){
#map {
    width: 320px;
    height: 300px;
}
}
@media only screen and (max-width: 1000px){
    .btn_blue {
    background: #808000;
    color: #ffffff;
    border: none;
    outline: none;
    padding: 10px;
    font-size: 18px;
    line-height: 122%;
    letter-spacing: 0.7px;
}
    .page_content_wrapper {
    padding-bottom: 0px;
}
    .btn-content {
    display: flex;
    align-items: center;
    padding: 5px 10px;
    text-decoration: none;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 14px;
    color: var(--color-text);
    background: #1c48bd;
    transition: 1s;
    /* border-radius: 100px; */
    box-shadow: 0 0 0.2em 0 #1c48bd;
}
    .prodectsen__button {
    font-size: 15px;
    padding: .5em 1.7em;
    font-weight: 500;
    background: #1c48bd;
    color: white;
    border: none;
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
    .prodectsen__des p {
      font-size: 16px;
}
    .con_flex {
    display: flex;
    justify-content: space-between;
    flex-direction: column;
    align-items: center;
}

    .footer_subscribe_form {
    position: relative;
    width: 100%;
    margin-left: 0px; 
}
  .prodectsen__des div {
    width: 100%;
}
.prodectsen__des p {
    width: 100%;
}
.prodectsen__des {
    padding-bottom: 30px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.prodectsen__price {
    gap: 15px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 10px;
}
}