.flightTrackingBtn{
	border-radius: 1rem;
	width: fit-content;
	cursor:pointer;
	&.active{
		background: black;
		color: white;
	}
}
 

.flightTrackingPopup{
	width: -moz-fit-content;
    width: fit-content;
    width: 208px;
	z-index: 21;
    right: 83px;
    top: -10px;
    border-radius: 1.5rem;
    
    .arrow-right {
    	border-bottom: 8px solid transparent;
    	border-left: 12px solid #f1f2f5;
    	border-top: 8px solid transparent;
    	width: 0;
    	height: 0;
    	right: -11px;
    	top: 24px;
    }
    
    .closePopup{
	    svg{
	    	width: 1.5rem;
		    height: 1.5rem;
	    }
	    top: 1rem;
	    right: 1rem;
	    cursor: pointer;
	}
	
	h4{
		font-size: 1rem;
    	line-height: 1.5rem;
	}
}
.flightTrackingPopup.detail{
	right: 100px;
}

@media only screen and (max-width: 991px) and (min-width: 350px) {
	.flightTrackingPopup{
		right: 70px;
	}
}
@media only screen and (max-width: 405px) and (min-width: 350px) {
	.flightTrackingPopup.detail{
		top: 70px;
		left: 0px;
	}
	.arrow-right {
    	border-left: 8px solid transparent!important;
    	border-right: 8px solid transparent!important;
    	border-bottom: 12px solid #f1f2f5!important;
    	left: 56px!important;
    	top: -18px!important;
    	right: 0px!important;
    }
	
}