.phone {
    position: fixed;
    right: 0px;
    top: 50%;
    z-index: +99;
    transform: translateY(-50%);
}

.phone img {
    
    width: 50px;
    animation-name: mover;
    -webkit-animation: mover 1s infinite alternate;
    animation: mover 1s infinite alternate;
}

.call1 {
    position: fixed;
    bottom: 0;
    right: 5px;
    z-index: +9999;
    animation-name: mover1;
    -webkit-animation: mover1 1s infinite alternate;
    animation: mover1 1s infinite alternate;
}

.call1 img {
    width: 50px;
    margin-bottom: 5px;
    display: block;
}

@keyframes mover {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-10px);
    }
}

@keyframes mover1 {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-10px);
    }
}

.call2 {
    position: fixed;
    bottom: 0;
    left: 5px;
    z-index: +9999;
    animation-name: mover11;
    -webkit-animation: mover11 1s infinite alternate;
    animation: mover11 1s infinite alternate;
}

.call2 img {
    margin-bottom: 100px;
    display: block;
}

@keyframes mover11 {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-10px);
    }
}

@keyframes mover11 {
    0% {
        transform: translateY(0);
    }
    100% {
        transform: translateY(-10px);
    }
}

.special {
     animation-name: mover11;
    -webkit-animation: mover11 1s infinite alternate;
    animation: mover11 1s infinite alternate;
    position: fixed;
    bottom: 10px;
    left: 10px;
    z-index: 9999;
}

.modal-box .show-modal {
    color: #000;
    background: linear-gradient(#00ACC8, #0094B9);
    font-size: 17px;
    font-weight: 500;
    text-transform: uppercase;
    padding: 10px 20px 11px;
    margin: 80px auto 0;
    border: none;
    outline: none;
    display: block;
    border-radius: 50px;
    transition: all 0.3s ease 0s;
}

.modal-box .show-modal:hover,
.modal-box .show-modal:focus {
    color: #fff;
    box-shadow: 7px 7px rgba(0, 0, 05, 0.1);
    outline: none;
}

.modal-backdrop.in {
    opacity: 0;
}

.modal-box .modal-dialog {
    width: 400px;
    margin: 100px auto 0;
}

.modal.fade .modal-dialog {
    transform-origin: top center;
    transform: scaleY(0);
}

.modal.in .modal-dialog {
    transform: scaleY(1);
}

.modal-box .modal-dialog .modal-content {
    color: #000;
    background: linear-gradient(45deg, #fff, #fcfcfc, #fff);
    text-align: center;
    border: none;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
}

.modal-box .modal-dialog .modal-content .close {
    color: rgba(255, 255, 255, 0.7);
    background-color: #0094B9;
    font-size: 16px;
    font-weight: 600;
    text-shadow: none;
    line-height: 15px;
    height: 28px;
    width: 28px;
    border-radius: 50%;
    overflow: hidden;
    opacity: 1;
    position: absolute;
    left: auto;
    right: 5px;
    top: 5px;
    z-index: 1;
    transition: all 0.3s;
}

.modal-box .modal-dialog .modal-content .close:hover {
    color: #fff;
}

.modal-box .modal-dialog .modal-content .close:focus {
    outline: none;
}

.modal-box .modal-dialog .modal-content .modal-body {
    padding: 0 30px !important;
}

.modal-box .modal-dialog .modal-content .modal-body .modal-icon {
    color: #fff;
    background: linear-gradient(#00ACC8, #0094B9);
    font-size: 40px;
    line-height: 100px;
    width: 100px;
    height: 100px;
    margin: -50px auto 35px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2);
    border-radius: 50%;
}

.modal-box .modal-dialog .modal-content .modal-body .title {
    font-size: 20px;
    font-weight: 600;
    margin: 0 0 30px;
}

.modal-box .modal-dialog .modal-content .modal-body .title span {
    font-size: 16px;
    font-weight: 400;
}

.modal-box .modal-dialog .modal-content .modal-body .form-control {
    background-color: #e7e7e7;
    font-size: 15px;
    font-weight: 500;
    text-align: center;
    height: 45px;
    border: 2px solid #e7e7e7;
    border-radius: 50px;
    box-shadow: none;
}

.modal-box .modal-dialog .modal-content .modal-body .form-control:focus {
    background-color: #fff;
    box-shadow: none;
}

.modal-box .modal-dialog .modal-content .modal-body .btn {
    color: #fff;
    background: linear-gradient(#00ACC8, #0094B9);
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    width: 100%;
    padding: 12px 10px 13px;
    margin: 25px 0 35px;
    border: none;
    border-radius: 50px;
    transition: all 0.3s ease 0s;
}

.modal-box .modal-dialog .modal-content .modal-body .btn:hover {
    text-shadow: 3px 3px rgba(0, 0, 0, 0.4);
    box-shadow: 0 0 5px rgba(0, 0, 0, 0.2);
}

.modal-box .modal-dialog .modal-content .modal-body .btn:focus {
    outline: none;
}

.modal-box .modal-dialog .modal-content .modal-footer {
    background-color: #f5f5f5;
    text-align: center;
}

.modal-box .modal-dialog .modal-content .modal-footer ul {
    padding: 0;
    margin: 0;
    list-style: none;
}

.modal-box .modal-dialog .modal-content .modal-footer ul li {
    display: inline-block;
    padding: 0 10px;
}

.modal-box .modal-dialog .modal-content .modal-footer ul li:first-child {
    border-right: 1px solid #999;
}

.modal-box .modal-dialog .modal-content .modal-footer ul li a {
    color: #555;
    font-weight: 500;
    transition: all 0.3s ease 0s;
}

.modal-box .modal-dialog .modal-content .modal-footer ul li a:hover {
    color: #0094B9;
}

@media only screen and (max-width: 576px) {
    .modal-dialog {
        width: 95% !important;
    }
}

.section-darkblue {
    background: url(../images/Banner-2.html);
    padding: 0px 0px 70px 0px;
    background-size: cover;
}


/*.sotware-form .tab-content {
                min-height: 350px;
            }*/

.tab .nav-tabs {
    border: 1px solid #31708f;
}

.tab .nav-tabs li {
    margin: 0;
}

.tab .nav-tabs li a {
    font-size: 14px;
    color: #1d1c1c;
    font-weight: 600;
    background: #fff;
    margin: 0;
    padding: 20px 25px;
    border-radius: 0;
    border: none;
    border-right: 1px solid #ddd;
    letter-spacing: 1px;
    position: relative;
}

.tab .nav-tabs li a:hover {
    border-top: none!important;
    border-bottom: none!important;
    border-right-color: #ddd;
}

.tab .nav-tabs li.active a,
.tab .nav-tabs li.active a:hover {
    color: #fff;
    border: none!important;
    background: #0daace;
    border-right: 1px solid #0daace;
}

.tab .nav-tabs li.active a:before {
    content: "";
    width: 58%;
    height: 4px;
    background: #fff;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
}

.tab .nav-tabs li.active a:after {
    content: "";
    border-top: 10px solid #0daace;
    border-left: 10px solid transparent;
    border-right: 10px solid transparent;
    position: absolute;
    bottom: -10px;
    left: 43%;
}

.tab .tab-content {
  font-size: 14px;
    line-height: 25px;
    background: #fff;
    padding: 20px;
    border-top: none;
    box-shadow: 0px 1px 4px #a7a7a7;
    border: 1px solid #d7d7d7;
    border-radius: 0px 0px 10px 10px;
    
}

.tab .tab-content h3 {
    font-size: 24px;
    color: #999898;
    margin-top: 0;
}

.form-check-inline {
    display: inline-flex;
    -ms-flex-align: center;
    align-items: center;
    padding-left: 0;
    margin-right: 2rem;
    margin-bottom: 30px;
}

.form-group label {
    color: #000;
    font-size: 14px;
}

.radiotextsty {
    color: #464648;
    font-size: 14px;
    font-weight: 600;
}

.customradio {
    display: block;
    position: relative;
    padding-left: 30px;
    margin-bottom: 0px;
    cursor: pointer;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
}

.customradio input {
    position: absolute;
    opacity: 0;
    cursor: pointer;
}

.checkmark {
    position: absolute;
    top: 0;
    left: 0;
    height: 20px;
    width: 20px;
    background-color: white;
    border-radius: 50%;
    margin-left: 6px;
    border: 1px solid #000;
}

.customradio:hover input ~ .checkmark {
    background-color: transparent;
}

.customradio input:checked ~ .checkmark {
    background-color: white;
    border: 1px solid #BEBEBE;
}

.checkmark:after {
    content: "";
    position: absolute;
    display: none;
}

.customradio input:checked ~ .checkmark:after {
    display: block;
}

.customradio .checkmark:after {
    top: 1px;
    left: 1px;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: #000;
}

@media only screen and (max-width: 480px) {
    .tab .nav-tabs li {
        width: 33.30%;
        float: left;
        text-align: center;
    }
    #sliderr {
        padding: 0px;
    }
    #owl-demo-slider .item img {
        height: 300px!important;
    }
    .section-darkblue {
        padding: 25px 0px;
        background:none;
       
    }
    .about-info .tj-heading-style h3{ font-size:24px; }
    .tj-welcome {
    padding: 0px 0;
}
.about-info {
    margin-bottom: 30px;
}
    .tab .nav-tabs li a {
        font-size: 10px;
        color: #1d1c1c;
        font-weight: 600;
        background: #fff;
        margin: 0;
        padding: 15px 8px;
    }
}

.padding-0 {
    padding: 0px 5px 0px 15px;
}

.adding-destination {
    position: relative;
}

.plus {
    position: absolute;
    right: 35px;
    top: 5px;
    cursor: pointer;
}

::placeholder {
    font-size: 12px!important;
    color: #9c9c9c!important;
    font-weight: 600;
    font-family: 'Quicksand', sans-serif;
}

.submit_btn {
    color: #fff;
    background-color: #fb7e01!important;
    border-color: #fb7e01 !important;
    font-weight: 600;
    padding: 10px 50px!important;
    border-radius: 0px;
    position: absolute;
    bottom: 30px;
}

.route-lists li a {
    color: #000;
    text-transform: capitalize;
    font-weight: 700;
    transition: .3s;
    font-size: 13px;
}

.route-lists li a:hover {
    color: #0daace;
    transition: .3s;
}

.one-way-select-car {
    background-color: #f5f5f5;
    padding: 10px 0px;
}

.breadcrumb {
    margin: 0px;
    padding: 0px 15px 5px;
}

.modifySearch {
    font-size: 11px;
    background: #fff;
    border: none;
    color: #20a8d9;
    height: 25px;
    padding: 0px 19px;
    font-weight: 700;
}

.table-responsive {
    /* min-height: .01%; */
    overflow-x: inherit;
    min-height: 90px;
    /*border: 1px solid #78b7e4;*/
    border-radius: 8px;
    margin-bottom: 10px;
}

.table-responsive.active-car-detail .one_way_inclusion {
    display: block;
}

.one_way_taxi_name {
    font-weight: 600;
}

.tooltip-inner {
    width: 100% !important;
}

.padding-one-way {
    padding: 0px;
}
#
.table {
    margin: 0px;
    font-style: normal;
    color: #000;
}

/*.table > tbody > tr > td {
    padding: 0px!important;
}*/

.select-button {
    text-align:center;
    width: 10rem;
    display: inline-block;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    border-radius: 3px;
    background: linear-gradient( 90deg, #1a77be 0, #01aeed);
    margin-bottom: 26px;
    margin-left: 20px;
    margin-right: 20px;
}

.detail_car {
    cursor: pointer;
}

.one_way_inclusion {
    display: none;
}

.one_way_inclusion ul li {
    display: inline-block;
    margin-right: 25px;
}

.one_way_inclusion ul li img {
    width: 40px;
}

.one_way_inclusion ul li .inclus {
    font-size: 14px;
    font-weight: 100;
    margin-left: 5px;
}

.mobile_section_inclusion {
    padding: 5px 20px;
}

.mobile_section_inclusion li {
    font-size: 9px;
    font-weight: 100;
    list-style: inside;
    list-style-type: disclosure-closed;
}

@media(max-width: 768px) {
    .desktop-section {
        display: none;
    }
}

@media(min-width: 768px) {
    .mobile-section {
        display: none;
    }
}

.one-way-select-car {
    background-color: #f5f5f5;
    padding: 10px 0px;
}

.breadcrumb {
    margin: 0px;
    padding: 0px 15px 5px;
}

.booking-form-section {
    border: 1px solid #ccc;
}

.booking-form-section h3 {
    color: white;
    font-size: 14px;
    background-color: #0daace;
    margin: 0px;
    padding: 10px;
}

.form_field {
    padding: 10px 20px;
}

.image-container {
    position: relative;
    border-radius: 100%;
    overflow: hidden;
}

.image {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 100%;
}

.overlay {
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    height: 100%;
    width: 100%;
    opacity: 0;
    transition: .5s ease;
    background-color: #008CBA;
}

.image-container:hover .overlay {
    opacity: 1;
}

.text {
    color: white;
    font-size: 20px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    -ms-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
    text-align: center;
}

.table {
    margin: 0px;
}

.table > thead > tr > th,
.table > tbody > tr > td {
    /*color: #000;*/
}
.sotware-form .tab-content{
    min-height: 350px;
}