:root {
    --map-text: #333;
    --map-primary: #236BBB;
    --map-secondary: #F8F8F8;
}



.ktech-list-ktech {
    display: grid;
    /* grid-template-columns: 350px 1fr; */
    grid-gap: 15px;
    align-items: center;
/*     margin-top: 30px; */

    @media only screen and (max-width: 800px) {
        grid-template-columns: 1fr;
    }
}

.ktech-list-ktech .ktech-card {
    position: relative;
    z-index: 1;
    background: #fff;
    border: 1px solid #ddd;
    border-radius: .85rem;
    overflow: hidden;
    z-index: 2;
    -webkit-box-shadow: 0 62px 33px -60px #d1c1b5;
    box-shadow: 0 62px 33px -60px #d1c1b5;
}

.ktech-card .list-filter {
    display: flex;
    gap: 1rem;
    padding: 1rem;
    background: var(--map-primary);

    @media only screen and (max-width: 800px) {
        flex-direction: column;
    }
}

.ktech-card .filter-gr {
    flex: 1;
}

.ktech-card .filter-gr select {
    margin-bottom: 0;
    border-radius: .2rem;
    border: none;
    box-shadow: none !important;
    opacity: 1;
}



.ktech-card .ktech-item {
    padding: 1rem;
    border-bottom: 1px solid #ddd;
}

.ktech-card .ktech-item:last-child {
    border-bottom: none;
}

.ktech-card .ktech-title {
    font-size: 1.15rem;
    color: var(--fs-color-primary);
}


.ktech-card .item-wrap {
    border-bottom: 1px solid #ddd;
}

.ktech-card .item-wrap:last-child {
    border-bottom: none;
}

.ktech-card .item-wrap .name {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: .35rem;
    color: var(--map-primary);
}



.ktech-item .item-wrap .list-infore {
    list-style: none;
    margin: 0;
}

.ktech-item .item-wrap .list-infore li {
    display: flex;
    align-items: center;
    gap: .5rem;
    color: var(--map-text);
    padding: 0;
    margin: 0;
}

.ktech-item .item-wrap .list-infore li a {
    color: var(--map-text);
}

.ktech-item .item-wrap .list-infore img {
    width: 1.2rem;
    height: 1.2rem;
}

.ktech-card .address-detail {
    max-height: 35rem;
    background: var(--map-secondary);
    overflow-y: scroll;
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
	@media only screen and (max-width: 800px) {
		max-height: 20rem;
	}
}

.ktech-card .number-list {
    font-weight: 600;
    color: var(--map-text);
    padding: .5rem 1rem;
    background: #fff;
}

.ktech-list-ktech .ktech-map iframe {
    width: 100%;
    height: 500px !important;
    border-radius: 8px;
}







@media only screen and (max-width: 800px) {
    .ktech-list-ktech .ktech-card {
        order: 2;
    }

    .ktech-list-ktech .ktech-map {
        order: 1;
    }
}