.cbp-tab-nav {
    list-style: none;
    padding: 0;
    display: flex;
    border: none;
    gap: 8px;
    margin: 0;
}
.cbp-tab-nav li {
    padding: 10px;
    cursor: pointer;
    border: none;
    background: #09723B;
    color: #ffffff;
    font-size: 18px;
    border-radius: 16px 16px 0 0;
    margin: 0 !important;
}
.cbp-tab-nav li.active {
    background: #07E66F;
    color: #ffffff;
}
.cbp-tab-nav li img {
    width: 20px;
    min-width: 20px;
    margin-right: 10px;
    filter: brightness(0) invert(1);
    -webkit-filter: brightness(0) invert(1);
}
.cbp-tab-content {
    min-height: 484px;
    border: none;
    padding: 24px 16px;
    background: #ffffff;
    box-shadow: 0px 2px 10px 0px rgba(0, 0, 0, 0.25);
    border-radius: 0 16px 16px 16px;
    display: none;
}
.cbp-tab-content.active {
    display: block;
}
.cbp-form p {
    margin: 0 0 20px !important;
}
.cbp-form .col {
    padding-bottom: 0;
}
.cbp-form input,
.cbp-form select {
    outline: none !important;
    box-shadow: none !important;
    margin: 0 !important;
    font-size: 1em;
}
.cbp-form input[type=text],
.cbp-form input[type=date],
.cbp-form input[type=tel],
.cbp-form select {
    height: 45px;
    line-height: 45px;
    padding: 0 10px;
    border: 1px rgba(0,0,0,0.5) solid;
    border-radius: 7px;
}
.cbp-form .field-location {
    position: relative;
}
.cbp-form .field-location #swap-btn {
    content: "";
    position: absolute;
    width: 42px;
    height: 42px;
    padding: 0;
    line-height: 1;
    min-height: auto;
    top: calc(50% - 21px);
    right: 10px;
    z-index: 2;
    margin: 0;
}
.cbp-form .field-location #swap-btn img {
    width: 100%;
}
.cbp-form p.location {
    position: relative;
}
.cbp-form p.location input,
.cbp-form p.location select {
    padding-left: 110px !important;
}
.cbp-form p.location label {
    position: absolute;
    width: 100px;
    height: 100%;
    top: 0;
    left: 0;
    padding: 0 10px;
    border-radius: 7px 0 0 7px;
    background: #07E66F;
    display: flex;
    align-items: center;
    justify-content: flex-start;
    font-size: 1em;
    font-weight: 400;
    color: #000000;
    margin: 0;
}
html[lang=en-US] .cbp-form p.location input,
html[lang=en-US] .cbp-form p.location select {
    padding-left: 145px !important;
}
html[lang=en-US] .cbp-form p.location label {
    width: 155px;
}
.cbp-form p.field-radio label {
    display: inline-block;
    font-size: 1em;
    font-weight: 400;
    color: #000000;
    margin: 0 30px 0 0;
    position: relative;
}
.cbp-form p.field-radio label:last-child {
    margin: 0;
}
.cbp-form p.field-radio input {
    width: 19px;
    height: 19px;
    position: relative;
    top: 3px;
    margin: 0 6px 0 0 !important;
}
.cbp-form p.trip-type {
    position: relative;
}
.cbp-form p.trip-type:before {
    content: "";
    position: absolute;
    width: 32px;
    height: 32px;
    top: calc(50% - 16px);
    left: 34px;
    background-image: url("images/rotate2.svg");
    background-position: center;
    background-repeat: no-repeat;
    background-size: 26px;
}
.cbp-form p.trip-type select {
    padding-left: 110px;
}
.cbp-form p.car-type {
    padding: 10px 0 10px 56px;
    position: relative;
}
.cbp-form p.car-type:before {
    content: "";
    position: absolute;
    width: 32px;
    height: 32px;
    top: calc(50% - 16px);
    left: 0;
    background-image: url("images/duong-dai.svg");
    background-position: left center;
    background-repeat: no-repeat;
    background-size: 26px;
}
.cbp-form .field-submit {
    text-align: center;
}
.cbp-form .field-submit button {
    text-align: center;
    height: 45px;
    line-height: 45px;
    outline: none;
    box-shadow: none;
    padding: 0 46px 0 32px;
    font-size: 1em;
    color: #ffffff;
    font-weight: 400;
    background-color: #07E66F;
    border-radius: 90px;
    position: relative;
    margin: 0;
}
.cbp-form .field-submit button:after {
    content: "";
    position: absolute;
    width: 8px;
    height: 20px;
    top: calc(50% - 10px);
    right: 32px;
    background-image: url("images/arrow-right.svg");
    background-position: center;
    background-size: 8px;
    background-repeat: no-repeat;
}

#cbp-result {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    display: none;
    width: 100%;
    height: 100%;
    min-height: 100vh;
    outline: 0;
    overflow-x: hidden;
    overflow-y: auto;
    padding-right: 15px;
}
#cbp-result .popup-content-wrap {
    max-width: 600px;
    width: 100%;
    height: 100%;
    margin: 0 auto;
    padding: 20px 0;
    position: relative;
    z-index: 9;
    display: flex;
    align-items: center;
}
#cbp-result .popup-content-inner {
    padding: 20px;
    border: 1px #09723B solid;
    background: #ffffff;
    border-radius: 9px;
    overflow: hidden;
}
#cbp-result .popup-content-inner .popup-header {
    position: relative;
    text-align: center;
}
#cbp-result .popup-content-inner .title-popup {
    padding: 0 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
}
#cbp-result .popup-content-inner .title-popup img {
    width: 32px;
    min-width: 32px;
    margin-right: 5px;
}
#cbp-result .popup-content-inner .dxn-close {
    font-size: 29px;
    position: absolute;
    top: 50%;
    right: -10px;
    transform: translateY(-50%);
    padding: 10px;
    margin: 0;
    min-height: auto;
    height: auto;
    line-height: 1;
}
#cbp-result .popup-content-inner .popup-body {
    border: 1px #09723B solid;
    border-radius: 9px;
    overflow: hidden;
    margin-top: 40px;
}
#cbp-result .popup-content-inner .noti-popup-top {
    font-weight: 700;
    text-align: center;
    color: #09723B;
    padding: 20px 16px;
    border-bottom: 1px #09723B solid;
    background: #D7FFE9;
    margin: 0;
}
#cbp-result .popup-content-inner .total-price {
    font-size: 2em;
    font-weight: 700;
    text-align: center;
    color: #07E66F;
    padding: 10px;
    margin: 0;
}
#cbp-result .popup-content-inner .noti-popup-bottom {
    text-align: center;
    padding: 0 10px 16px;
}
.popup-backdrop {
    position: absolute;
    width: 100%;
    height: 100%;
    top: 0;
    left: 0;
    background: rgba(0,0,0,0.5);
    cursor: pointer;
}

@media only screen and (max-width: 550px) {
    .cbp-tab-nav li img {
        margin: 0;
    }
    .cbp-tab-nav li span {
        display: none;
    }
    .cbp-tab-nav li.active span {
        display: inline-block;
        margin-left: 10px;
    }
    .cbp-form p.field-radio-service {
        display: flex;
        align-items: center;
        justify-content: space-between;
    }
    html[lang=en-US] .cbp-form p.field-radio-service {
        justify-content: flex-start;
        flex-direction: column;
        align-items: flex-start;
    }
    .cbp-form p.field-radio label {
        margin: 0;
    }
    .cbp-form p.field-radio.car-type label {
        display: block;
    }
}