.map-row{
    display: flex;
}
.map-column-left{
    width: 35%;
    background: #0046FF08;
    padding: 80px 40px;
}
.full-width .input-group{
    max-width: 100% !important;
}
.map-column-left .input-group{
    max-width: 70%;
}
.map-column-left .input-group input{
    width: 100%;
}
.map-column-left select{
    min-width: 30%;   
}
.map-column-right{
    width: 65%;
}
.ol-zoom{
    display: none;
}
#map {
	 width: 100% !important;
	 height: 1080px;
}
 #map #location-info-body {
	 position: relative;
	 display: flex;
	 flex-direction: column;
	 align-items: center;
	 background-color: white;
	 border-radius: 8px;
	 font-family: Calibri, sans-serif;
	 padding: 15px 20px;
	 border: 1px solid #ccc;
	 box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
	 transform: translateY(-10px);
	 transition: all 0.2s ease-in-out;
}
 #map #location-info-body::after {
	 content: "";
	 position: absolute;
	 bottom: -10px;
	 left: 50%;
	 transform: translateX(-50%);
	 width: 0;
	 height: 0;
	 border-left: 10px solid transparent;
	 border-right: 10px solid transparent;
	 border-top: 10px solid white;
	 filter: drop-shadow(0 2px 2px rgba(0, 0, 0, 0.1));
}
 #map #location-info-body .location-name {
	 font-weight: bold;
	 font-size: 16px;
	 margin-bottom: 5px;
	 color: #333;
}
 #map #location-info-body .location-container {
	 text-align: center;
	 font-size: 14px;
	 color: #555;
	 line-height: 1.4;
}
 #accordionLocation {
	 max-height: 815px;
	 overflow-y: auto;
	 margin-top: 54px;
}
#accordionLocation {
  overflow: auto;          
  scrollbar-width: none;   
  -ms-overflow-style: none;
}
#accordionLocation::-webkit-scrollbar {
  display: none;
}
.location-item .collapse{
    display: none;
}
.location-item .collapse.show{
    display: block !important;
}
.location-item{
    box-shadow: 0px 1px 3px 0px #00236E1A;
    background: #fff;
    padding: 24px;
    border-radius: 16px;
    margin-bottom: 16px;
}
.location-item:last-child{
    margin-bottom: 0px;
}
.location-item .card-header{
    cursor: pointer;
}
.location-item .card-header .form-inline{
    align-items: center;
    justify-content: space-between;
}
.location-item .card-header .btn{
    background: transparent;
    border: none;
    text-shadow: none;
    box-shadow: none;
    padding: 0px;
    font-family: "Pretendard";
    font-size: 20px;
    font-weight: 600;
    line-height: 36px;
    text-transform: capitalize;
    color: #000;
}
.location-item .card-header svg{
    transition: transform 0.3s ease;
    transform: rotate(0deg);
}
.location-item .card-header[aria-expanded="true"] svg{
    transform: rotate(90deg);
}
.location-item .card-header[aria-expanded="true"] svg path{
    fill: #0046FF;
}
.location-item .card-header .location-name{
    font-family: "Pretendard";
    font-size: 18px;
    font-weight: 400;
    line-height: 32px;
    color: #404040;
}
.location-item .card-header .icon-flag{
    width: 32px;
    height: 24px;
    margin-right: 16px;
    position: relative;
    top: 8px;
}
.location-item .card-body{
    margin-top: 32px;
}
.location-item .card-body .card-body-item{
    gap: 12px;
    margin-bottom: 12px;
}
.location-item .card-body .card-body-item:last-child{
    margin-bottom: 0px;
}
.location-item .card-body .card-body-item .item-icon{
    width: 20px;
    height: 20px;
}
.location-item .card-body .card-body-item .item-value{
    width: 100%;
    font-family: "Pretendard";
    font-size: 16px;
    font-weight: 400;
    line-height: 22px;
    color: #000;
    margin-bottom: 0px;
}
.location-item .card-body .btn-inline{
    margin-top: 32px;
}
.location-item .card-body .btn-inline .btn-outline{
    padding: 8px 24px;
    border: 1px solid #0046FF;
    border-radius: 50px;
    background: #fff;
    font-family: "Pretendard";
    font-size: 16px;
    font-weight: 500;
    text-transform: uppercase;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    height: 44px;
    color: #0046FF;
}
.location-item .card-body .btn-inline .btn-outline:hover{
    background: #0046FF;
    color: #FFF;
}
.location-item .card-body .btn-inline .btn-outline:hover path{
    fill: #FFF;
}
 canvas {
	 max-width: unset !important;
	 width: unset !important;
}
 body > canvas {
	 display: none;
}
 .map-loading {
	 text-align: center;
}

@media (max-width: 767px) {
    #map{
        height: 400px;
    }
    .map-row{
        flex-direction: column;
    }
    .map-column-left .input-group{
        max-width: 100% !important;
    }
    .map-column-left{
        width: 100%;
        padding: 40px 20px;
    }
    .map-column-right{
        width: 100%;
    }
    #accordionLocation{
        max-height: 400px;
        margin-top: 20px;
    }
    .location-item{
        padding: 15px;
    }
    .location-item .card-header .form-inline{
        flex-direction: row !important; 
    }
    .location-item .card-header .btn{
        font-size: 16px;
        line-height: 26px;
        text-align: left;
    }
    .location-item .card-body .card-body-item{
        flex-direction: row;
    }
    .location-item .card-body .btn-inline{
        margin-top: 15px;
    }
}
 