#track_pop_up{
    position: fixed;
    width: 0px;
    height: 0px;
    background-color: red;
    right: 15px;
    bottom: 15px;
    border-radius: 1000px;
    z-index: 10;
    transition: .3s;
    cursor: pointer;
    -webkit-box-shadow: 0px 0px 20px -9px rgba(0,0,0,0.95);
    -moz-box-shadow: 0px 0px 20px -9px rgba(0,0,0,0.95);
    box-shadow: 0px 0px 20px -9px rgba(0,0,0,0.95);
  
}

#pop_up_cls_btn{
cursor: pointer;
}

#track_pop_panel{
    position: fixed;
    width: 300px;
    height: 270px;
    right: 20px;
    background-color: white;
    z-index: 10;
    bottom: 20px;
    -webkit-box-shadow: 0px 0px 20px -9px rgba(0,0,0,0.95);
    -moz-box-shadow: 0px 0px 20px -9px rgba(0,0,0,0.95);
    box-shadow: 0px 0px 20px -9px rgba(0,0,0,0.95);
    padding: 20px;
    visibility: hidden;
 
}


#btn_pop_up_track{
    outline: none; 
    position: relative;
    top: 20px;
    border: 0px;
    background-color: red;
    color: white;
    padding: 10px;
    font-family: abel;
    font-weight: bold;
}

#track_pop_up:hover{
    background-color: black;
}

@media screen and (max-width: 1110px) {
    #track_pop_up{width: 60px;     height: 60px;}
    #track_pop_panel{   visibility: visible;}

}