// Location Tracking ====
.location-tracking{
	margin: -15px;
	iframe{
		height: 100%;
		width: 100%;
		border: 0;
		top: 0;
		left: 0;
		right: 0;
		bottom: 0;
		position: fixed;
		z-index: -1;
	}
	.map-tooltip{
		position: absolute;
		top: 50%;
		left: 50%;
		transform: translate(-50%, -50%);
	}
}
.dz-tracking{
	position: fixed;
    left: 0;
    bottom: 0;
    width: 100%;
	
}


.map-tooltip{
	padding: 20px 25px;
    background-color: var(--bg-white);
    display: inline-block;
    border-radius: var(--border-radius-xl);
    box-shadow: 0px 4px 23px rgba(0, 0, 0, 0.25);
    position: relative;
	p{
		color: var(--text-light);
	}
	&:after{
		content: "";
		background-color: inherit;
		height: 20px;
		width: 20px;
		position: absolute;
		left: 18px;
		top: -6px;
		transform: rotate(45deg);
		box-shadow: -5px -3px 10px rgba(0,0,0,0.1);
	}
}

.delivery-man{
	padding: 20px 28px 50px;
	border-radius: 35px 35px 0 0;
    box-shadow: 0 0 10px rgba(0,0,0,0.2);
	z-index: 1;
    position: relative;
    margin: 0 auto -30px;
	
	.inner-content{
		display: flex;
		align-items: center;
	}
	.icon-area{
		display: flex;
		margin-left: auto;
	}
	.dz-media{
		overflow: hidden;
		margin-right: 20px;
	}
	.title{
		margin-bottom: 5px;
		font-weight: 500;
		color: #fff;
	}
	p{
		margin: 0;
	}
	.icon-cell{
		margin-left: 10px;
		height: 50px;
		width: 50px;
		background-color: rgba(255, 255, 255, 0.2);
		text-align: center;
		line-height: 50px;
		border-radius: 50%;
		font-size: 24px;
		color: #fff;
		svg{
			height: 50px;
		}
	}
}


// Fixed Content
.fixed-content{
	background-color: var(--bg-white);
    border-radius: 35px 35px 0 0;
    position: relative;
    z-index: 1;
    box-sizing: border-box;
    padding: 40px 30px;
}


// track list ==
.dz-track-list{
	padding: 0;
    margin: 0;
	position: relative;
	
	li{
		display: flex;
		align-items: center;
		margin-bottom: 30px;
		.icon-bx{
			height: 58px;
			width: 58px;
			text-align: center;
			line-height: 58px;
			border-radius: 50px;
			border: 1px solid;
			border-color: var(--primary);
			margin-right: 20px;
			background-color: var(--bg-white);
			
			svg{
				height: 58px;
			}
			&.location{
				background-color: #D9EDE6;
				border-color: #D9EDE6;
			}
			path[fill],
			path{
				fill: var(--primary);
			}
			i{
				color: var(--primary);
			}
		}
		.title{
			margin-bottom: 5px;
			font-weight: 500;
		}
		p{
			margin: 0;
			font-size: 12px;
		}
		
		&:last-child{
			margin-bottom: 0;
		}
		.button{
			text-transform: capitalize;
			font-weight: 700;
			margin-left: auto;
		}
	}
	&:after{
		content: "";
		height: calc(100% - 10px);
		left: 28px;
		top: 5px;
		width: 1px;
		border-left: 2px dashed rgba(0,0,0,0.3);
		position: absolute;
		z-index: -1;
	}
}