.adr-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-gap: 24px;
}

.adr-cell {
    display: flex;
    padding: 16px;
    gap: 16px;
    flex-shrink: 0;
    border-radius: 16px;
    border: 1px solid var(--border-light-border, #E6ECEF);
    background: var(--background-light-bg, #FFF);
    color: var(--text-dark-text-secondary, #4B6D82);
    text-decoration: none;
    position: relative;
}

.address-photo {
    overflow: hidden;
    border-radius: 12px;
    width: 160px;
    height: 140px;
}

.address-photo img {
    width: 100%;
    object-fit: cover;
    height: 100%;
}

.address-details {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: flex-start;
}

.address-title {
    color: var(--text-dark-text, #073551);
    font-size: 18px;
    font-weight: 600;
    line-height: 135%;
    letter-spacing: -0.144px;
}

.address-region {
    color: var(--text-dark-text-secondary, #4B6D82);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.4;
}

.shopsBtn {
    width: 100%;
    margin-top: 40px;
}

.mapMobileBtn {
    display: none;
}

.h1 span,
h1 span {
    color: var(--text-accent, #01B5CC);
    display: inline-flex;
    align-items: center;
    gap: 4px;
    cursor: pointer;
}

#map3 {
    border-radius: 24px;
    height: 400px;
    overflow: hidden;
    margin-top: 40px;
}

.delivery-text {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid var(--border-light-border, #E6ECEF);
}

.delivery-text .lineInfo {
    display: flex;
    align-items: center;
    gap: 24px;
}

.iconWithTxtBlock {
    min-width: 205px;
}
.address-info,.topDetailAdres{
    display: flex;
    flex-direction: column;
    gap: 4px;
    align-items: flex-start;
}
.address-phone{
    color: var(--button-primary-default, #073551);
font-size: 14px;
font-weight: 600;
line-height: 24px;
}





@media screen and (max-width:1199px) {
.adr-row{
    grid-template-columns: repeat(2, 1fr);
}

}


@media screen and (max-width:991px) {
.address-photo{
    width: 100px;
    height: 100px;
}
.adr-row{
    gap: 15px;
}
.delivery-text .lineInfo{
    gap: 20px;
}
.iconWithTxtBlock {
  min-width: 50px;
  flex: none;
}
.delivery-text {
  margin-top: 16px;
  padding-top: 16px;
}
.shopsBtn {
  margin-top: 24px;
}
#map3 {
  height: 300px;
  margin-top: 24px;
}
.iconWithTxtBlock .imgF {
  width: 40px;
  height: 40px;
}



}

@media screen and (max-width:767px) {

.delivery-text .lineInfo{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    grid-gap: 16px;
}


.adr-row{
    grid-template-columns: repeat(1, 1fr);
    gap: 0px;
    margin:0 -15px;
}
.adr-cell{
    border-radius: 0;
    border:none;
    border-bottom: 1px solid #E6ECEF;
    font-size: 12px;
}
.adr-cell:last-child{
    border-bottom: none;
}
.shopsBtn {
  margin-top: 8px;
}
.address-details{
    flex: 1;
}
.botDetailAdres{
    width: 100%;
}
.address-info,.topDetailAdres{
    gap: 2px;
}
.address-info{
    position: relative;
    width: 100%;
    padding-right: 40px;
}
.address-info:after{
    position: absolute;
    right: 0;
    bottom: 0;
    content: '';
    border-radius: 50%;
    background: url(../images/arrow-up-rightDark.svg) no-repeat center/16px 16px,var(--button-secondary-default, #F2F5F7);
    width: 32px;
    height: 32px;
}

#map3 {
  height: 200px;
  margin-top: 16px;
}
.delivery-text{
    padding-top: 0;
    border-top: 0;
}
}

@media screen and (max-width:600px) {
.address-title,.address-phone{
    font-size: 14px;
}
.address-region{
    font-size: 12px;
}
.delivery-text .lineInfo{
    grid-template-columns: repeat(1,1fr);
}



}


