@import url('https://fonts.googleapis.com/css?family=Open+Sans:300,300i,400,400i,600,600i,700,700i,800,800i');
body {
    margin: 0px;
    height: 100%;
    width: 100%;
    font-family: 'Open Sans', sans-serif;
    font-size: 12px;
}
.wrapper{
    
}
.wrapper .loaderLayout{
    width: 40px;
    position: absolute;
    top: calc(50% - 20px);
    left: calc(50% - 20px);
    overflow: hidden;
    z-index: 999;
    padding: 10px;
    border-radius: 8px;
    background-color: rgba(0, 0, 0, 0.3);
}
.wrapper .loader {
    border: 5px solid #f3f3f3;
    border-radius: 50%;
    border-top: 5px solid #1ec796;
    height: 30px;
    width: 30px;
    -webkit-animation: spin 1s linear infinite; /* Safari */
    animation: spin 1s linear infinite;
    
    z-index: 1;
}
/* Safari */
@-webkit-keyframes spin {
    0% { -webkit-transform: rotate(0deg); }
    100% { -webkit-transform: rotate(360deg); }
  }
  
  @keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
  }
.header,
.footer {
    position: fixed;
    width: 100%;
    z-index: 1;
    background: #fff;
}
.header {
    top: 0;
}

.header .title {
    color: #1ec796;
    margin: 0px;
    /* margin-left: 40px; */
    margin-top: 10px;
    font-size: 12px;
    text-align: center;
}

.header .pickUp img {
    float: left;
    padding: 0px 10px;
}

.header .drop {
    clear: both;
    padding-bottom: 4px;
}
.header .drop a {
    text-decoration: none;
    color: #01befe;

}
.header .drop img {
    float: left;
    padding: 0px 10px;
}

.header .pickUp, .header .drop {
    position: relative;
}

.header span {
    padding-bottom: 10px;
}

.header .pickUpPoint, .header .dropPoint {
    padding-top: 10px;
    margin-left: 40px !important;
    display: inline-block;
    margin: 0;
    margin-left: 0px;
    text-overflow: ellipsis;
    overflow: hidden;
    width: 80%;
    padding-bottom: 3px;
    color: #aba5a5;
    white-space: nowrap;
    text-overflow: ellipsis;
}
.header .dropPoint {
    border-top: 1px solid #f2f2f2;
}
.header .pickUpPoint::before, .header .dropPoint::before {
    content: ' ';
    height: 14px;
    width: 16px;
    position: absolute;
    left: 15px;
    background-repeat: no-repeat !important;
    background-size: contain !important;
    top: 12px;
}
.header .pickUpPoint::before {
    background: url(../images/green_dot_icon.png);
}
.header .dropPoint::before {
    background: url(../images/red_dot_icon.png);
}
.footer {
    bottom: 0px;
    border: 1px solid #ddd;
}
.footer .driverDetailsLayout {
    overflow: hidden;
    padding: 5px 10px;
}
.footer .driverDetails {
    float: left;
    width: 50%;
}
.footer .driverDetails img {
    float: left;
    margin-right: 15px;
    max-width: 40px;
}
.footer .driverDetails h5, .footer .driverCarDetails h5 {
    display: inline-block;
    margin-bottom: 0px;
    margin-top: 0px;
}
.footer .driverDetails .rating .lnr {
    font-size: 12px;
    border-right: 1px solid #fff;
    padding: 0 5px;
}

.footer .driverDetails .rating .number {
    font-size: 8px;
    padding: 0 5px;
}
.footer .driverDetails .rating .layout {
    background: #ffd05b;
    color: #fff;
    padding: 0px;
    border-radius: 4px;
    border: 1px solid #ffd05b;
}
.footer .driverCarDetails {
    width: 50%;
    float: right;
    text-align: right;
}
.footer .driverCarDetails img {
    margin-left: 15px;
    float: right;
    max-width: 40px;
}
.footer .callDriverLayout{
    clear: both;
}
.footer .callDriverLayout .callDriverCont {
    text-align: center;
    background: #f6f6f6;
    padding: 5px 0;
}
.footer .callDriverLayout .callDriverCont .lnr-phone-handset{
    font-size: 20px;
    color:#2cbb2c;
}
.footer .callDriverLayout .callDriverCont .callDriver {
    margin: 0;
    color: #949494;
}
.footer .driverCarDetails .rating p {
    display: inline-block;
    margin: 0;
    font-size: 12px;
    color: #969696;
}




#floating-panel {
    position: absolute;
    top: 10px;
    left: 25%;
    z-index: 5;
    background-color: #fff;
    padding: 5px;
    border: 1px solid #999;
    text-align: center;
    font-family: 'Roboto','sans-serif';
    line-height: 30px;
    padding-left: 10px;
    display: none;
  }

  span#borderd_line {
    height: 17px;
    width: 10px;
    position: absolute;
    left: 22px;
    top: 21px;
    border-left: 1px dotted #cecece;
}
.popUp .overlay {
    position: absolute;
    top: 0;
    left:0;
    width: 100%;
    height: 100vh;
    transition: 0.5s;
    transform: scale(0);
    transform-origin: center center;
}
.overlay.active{
    bottom:0px;
    right: 00px;
    transform: scale(1);
}
.popUp .overlay .event{
    position: absolute;
    top: 50%;
    left:50%;
    transform: translate(-50%, -50%);
    width: 70%;
    height: auto;
    min-height: 150px;
    background: #1ec796;
    box-shadow: 0 10px 15px rgba(0, 0, 0, .5);
    box-sizing: border-box;
    border-radius: 8px;
    padding:50px;
}
.popUp .overlay .event .close{
    position: absolute;
    top: -10px;
    right: -10px;
    cursor: pointer;

}
.popUp .overlay .event .close img{
    max-width: 20px;
}
.popUp .overlay .event .cont{
    text-align: center;
    color: #fff;
    font-weight: 600;
}
.popUp .overlay .event .cont img{
    display: block;
    max-width: 60px;
    margin: 0 auto;
}
section.driverDetailsLayout img {
    border-radius: 50%;
}
#booking_status_txt {
    position: absolute;
    top: 109px;
    z-index: 100;
    background: white;
    padding: 10px 20px;
    border-radius: 0px 20px 20px 0px;
    font-size: 13px;
    color: #1eced1;
    font-weight: 600;
    text-transform: uppercase
}