/*general css*/

@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100;0,200;0,300;0,400;0,500;0,600;0,700;0,800;0,900;1,100;1,200;1,300;1,400;1,500;1,600;1,700;1,800;1,900&display=swap');

:root {
    --primary-font: 'Montserrat', sans-serif;
    --primary-color: #fff;
    --primary-bg-color: #087a00;
    --primary-text-bg-color: #124511;
    --default-form-control-color: #087a00;
    --focus-form-control-color: #087a00;
}

* {
    font-family: var(--primary-font);
}

html {
  overflow:   scroll;
}

::-webkit-scrollbar {
    width: 0px;
    height: 0px;
    background: transparent; /* make scrollbar transparent */
}

/*this rule is specially for iphone*/
input,
textarea {
    font-size: 16px !important;
}
/*this rule is specially for iphone*/

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
input:-webkit-autofill:active{
    -webkit-box-shadow: 0 0 0 30px white inset !important;
}

input[type="radio"] {
    -webkit-appearance: checkbox; /* Chrome, Safari, Opera */
    -moz-appearance: checkbox;    /* Firefox */
    box-shadow:none !important;
}

input[type="radio"]:checked {
    accent-color: var(--primary-bg-color);
}

input[type="checkbox"] {
    box-shadow:none !important;
}

p, ul, ol {
    margin-bottom: 15px;
}

p:last-child {
    margin-bottom: 0;
}

a {
    -webkit-transition: 0.3s all ease;
    -o-transition: 0.3s all ease;
    transition: 0.3s all ease;
    text-decoration: none;
    text-decoration: none;
}

a:hover {
    text-decoration: none;
    color: var(--primary-bg-color);
}

h1, h2, h3, h4, h5 {
    color: var(--primary-color);
    font-family: var(--primary-font);
}

h1 a, h2 a, h3 a, h4 a, h5 a {
    color: var(--primary-color);
}

h1 a:hover, h2 a:hover, h3 a:hover, h4 a:hover, h5 a:hover {
    color: var(--primary-color-hover);
}

.dropdown-toggle::after {
    border: none;
    content: "\f107";
    vertical-align: unset;
    font-family: "Font Awesome 5 Pro";
}

.form-control,
.form-select {
    box-shadow: none !important;
    border-color: none !important;
/*    border: 1px solid var(--default-form-control-color);*/
    border-radius: 8px;
}

.form-control:focus,
.form-select:focus {
    border: 1px solid var(--focus-form-control-color);
    border-radius: 8px;
}

input:focus {
  outline: 0;
  outline-color: transparent;
  outline-style: none;
}

.form-check-input:checked {
    background-color: var(--primary-bg-color);
    border-color: var(--primary-bg-color);
}

/*these two are overriding the b5 for show and login forms*/
.input-group>:not(:first-child):not(.dropdown-menu):not(.valid-tooltip):not(.valid-feedback):not(.invalid-tooltip):not(.invalid-feedback) {
    margin-left: 0px;
}

.input-group:not(.has-validation)>.dropdown-toggle:nth-last-child(n+3), .input-group:not(.has-validation)>:not(:last-child):not(.dropdown-toggle):not(.dropdown-menu) {
    border-top-right-radius: 8px;
    border-bottom-right-radius: 8px;
}
/*these two are overriding the b5 for show and login forms*/

button {
    box-shadow: none !important;
}

.accordion-button:focus {
/*    border-bottom: 0.1rem solid rgb(195 195 195);*/
/*    border-bottom: none;*/
}

.input-group .btn {
    position: relative;
    z-index: auto;
}

.btn-primary:hover,.btn-primary:focus,.btn-primary:active,
.btn-primary:active:focus:not(:disabled):not(.disabled),
.btn:focus, .btn:active, .btn:hover{
    box-shadow: none!important;
    outline: 0;
}

.container {
    width: 100%;
}

#preloader {
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 99999999999;
    background: rgb(0 0 0 / 45%);
}

.loader {
    position: absolute;
    width: 5rem;
    height: 10rem;
    top: 50%;
    margin: 0 auto;
    left: 0;
    right: 0;
    transform: translateY(-50%);
}

.circular {
    animation: rotate 2s linear infinite;
    height: 100%;
    transform-origin: center center;
    width: 100%;
    position: absolute;
    top: 0;
    bottom: 0;
    left: 0;
    right: 0;
    margin: auto;
}

#success-msg {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    margin: 0 !important;
    width: 100%;
    text-align: center;
    border: none;
    border-radius: 0;
    padding: 6px 10px;
    font-weight: 500;
    color: #155724;
    background-color: #d4edda;
    border-color: #d4edda;
}

#error-msg {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 9999;
    margin: 0 !important;
    width: 100%;
    text-align: center;
    border: none;
    border-radius: 0;
    padding: 6px 10px;
    font-weight: 500;
    color: red;
    background-color: #ffbaba;
    border-color: #ffbaba;
}

.toast-header {
    background-color: var(--primary-bg-color) !important;
    color: #fff !important;
    border: none;
    border-top-left-radius: 0px;
    border-top-right-radius: 0px;
}

.toast-body {
    color: #000;
}

.alert-danger {
    color: red;
    background-color: #ffbaba;
}

.js-cookie-consent {
    position: fixed;
    left: 0;
    bottom: 0;
    padding: 10px;
    text-align: center;
    width: 100%;
    z-index: 9999;
    background-color: var(--primary-bg-color);
    border-color: black;
    color: var(--primary-color);
}

.js-cookie-consent-agree {
    background-color: var(--primary-bg-color);
    color: white;
    border: 2px solid #ffffff;
}

.js-cookie-consent-agree:hover {
    background-color: var(--primary-bg-color);;
    color: white;
    border: 2px solid #ffffff;
}

#backToTop {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 45px;
    height: 45px;
    z-index: 9999;
    line-height: 50px;
    font-size: 26px;
    text-align: center;
    border-radius: 0px;
    color: var(--primary-bg-color);
    cursor: pointer;
    transition: all 0.5s;
    background-color: #fff;
    box-shadow: 0 0 22px rgba(0, 0, 0, 0.2);
}

.accordion-button:after {
    background-image: url("data:image/svg+xml,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23087a00'><path fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/></svg>") !important;
    transform: scale(0.7);
}

.accordion-button:not(.collapsed)::after {
    transform: rotate(-180deg) scale(0.7);
}

.swal2-popup {
    border-radius: 0px;
}

.swal2-popup .swal2-styled.swal2-cancel,
.swal2-popup .swal2-styled.swal2-confirm {
    border-radius: 0px;
    padding: 6px 20px;
}

.alert {
    border-radius: 0px !important;
    padding: 4px 10px !important;
}
/*general css*/

/*loader css*/
.lds-roller {
    display: inline-block;
    position: relative;
    width: 80px;
    height: 80px;
}

.lds-roller div {
    animation: lds-roller 1.2s cubic-bezier(0.5, 0, 0.5, 1) infinite;
    transform-origin: 40px 40px;
}

.lds-roller div:after {
    content: " ";
    display: block;
    position: absolute;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #fff;
    margin: -4px 0 0 -4px;
}

.lds-roller div:nth-child(1) {
    animation-delay: -0.036s;
}

.lds-roller div:nth-child(1):after {
    top: 63px;
    left: 63px;
}

.lds-roller div:nth-child(2) {
    animation-delay: -0.072s;
}

.lds-roller div:nth-child(2):after {
    top: 68px;
    left: 56px;
}

.lds-roller div:nth-child(3) {
    animation-delay: -0.108s;
}

.lds-roller div:nth-child(3):after {
    top: 71px;
    left: 48px;
}

.lds-roller div:nth-child(4) {
    animation-delay: -0.144s;
}

.lds-roller div:nth-child(4):after {
    top: 72px;
    left: 40px;
}

.lds-roller div:nth-child(5) {
    animation-delay: -0.18s;
}

.lds-roller div:nth-child(5):after {
    top: 71px;
    left: 32px;
}

.lds-roller div:nth-child(6) {
    animation-delay: -0.216s;
}

.lds-roller div:nth-child(6):after {
    top: 68px;
    left: 24px;
}

.lds-roller div:nth-child(7) {
    animation-delay: -0.252s;
}

.lds-roller div:nth-child(7):after {
    top: 63px;
    left: 17px;
}

.lds-roller div:nth-child(8) {
    animation-delay: -0.288s;
}

.lds-roller div:nth-child(8):after {
    top: 56px;
    left: 12px;
}

@keyframes lds-roller {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}
/*loader css*/

/*login, signup, passowrd reset, email verification modal*/
/*general modal css*/
.modal-title {
    color: #000;
}

.spmx.spmx_right .modal-dialog {
    position: fixed;
    margin: auto;
    width: 100%;
    height: 100%;
    -webkit-transform: translate3d(0%, 0, 0);
    -ms-transform: translate3d(0%, 0, 0);
    -o-transform: translate3d(0%, 0, 0);
    transform: translate3d(0%, 0, 0);
}

.spmx.spmx_right .modal-content {
    height: 100%;
    overflow-y: auto;
    border-radius: 0px;
}

.spmx.spmx_right .modal-body {
/*    padding: 15px 15px 80px;*/
}

.spmx.spmx_right.fade .modal-dialog {
    right: 0;
    -webkit-transition: opacity 0.3s linear, right 0.3s ease-out;
    -moz-transition: opacity 0.3s linear, right 0.3s ease-out;
    -o-transition: opacity 0.3s linear, right 0.3s ease-out;
    transition: opacity 0.3s linear, right 0.3s ease-out;
}

.spmx.spmx_right.fade.in .modal-dialog {
    right: 0;
}
/*general modal css*/
/*login modal*/
#uLoginModal .modal-content {
    border-radius: 0px;
}

#uLoginModal .modal-header {
    display: block;
    border: none;
}

#uLoginModal .modal-header .modal-title {
    font-size: 16px;
    font-weight: 800;
    margin-top: 10px;
    /*padding: 0px 20px;*/
}

#ul_form .form-label {
    color: black;
    font-size: 14px;
    font-weight: 400;
}

#ul_form .form-control {
    border-radius: 0px;
    font-weight: 400;
}

#ul_form .form-control:focus {
    border-radius: 0px;
}

#ul_form #show-password {
    color: black;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
}

.ls-text {
    color: black;
    font-size: 14px;
    font-weight: 600;
}

.ls-forgot-password a {
    font-size: 14px;
    font-weight: 400;
}

.ls-buttons {
    color: var(--primary-color);
    background-color: var(--primary-bg-color);
    border-radius: 0px;
    font-size: 16px;
    font-weight: 800;
}

.ls-gg-button {
    background-color: #bd1406;
}

.ls-fb-button {
    background-color: #3B5998;
}

.ls-apple-button {
    background-color: black;
}

.ls-buttons:hover {
    color: #ffffff;
}

.social-media-logins {
    display: none;
}

/*login modal*/

/*sign up*/
#uRegModal .modal-content {
    border-radius: 0px;
}

#uRegModal .modal-header {
    display: block;
    border: none;
}

#uRegModal .modal-header .modal-title {
    font-size: 16px;
    font-weight: 800;
    margin-top: 10px;
    /*padding: 0px 20px;*/
}

#uRegForm .form-label {
    color: black;
    font-size: 14px;
    font-weight: 400;
}

#uRegForm .form-control {
    border-radius: 0px;
    font-weight: 400;
}

#uRegForm .show-password {
    color: black;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
}

#uRegForm .btn:hover{
    color: var(--primary-color);
}
/*sign up*/

/*password reset*/
#uPRModal .modal-content {
    border-radius: 0px;
}

#uPRModal .modal-header {
    display: block;
    border: none;
}

#uPRModal .modal-header .modal-title {
    font-size: 16px;
    font-weight: 800;
    margin-top: 10px;
    /*padding: 0px 20px;*/
}

#upr_form .form-label {
    color: black;
    font-size: 14px;
    font-weight: 400;
}

#upr_form .form-control {
    border-radius: 0px;
    font-weight: 400;
}

#upr_form .btn:hover{
    color: var(--primary-color);
}

.pr-text {
    color: #484646;
    font-size: 14px;
    font-weight: 400;
}
/*password reset*/

/*email verification modal*/
#mVerifyModal .modal-content {
    border-radius: 0px;
}

#mVerifyModal .modal-header {
    display: block;
    border: none;
}

#mVerifyModal .modal-header .modal-title {
    font-size: 16px;
    font-weight: 800;
    margin-top: 10px;
    /*padding: 0px 20px;*/
}

#uev_form .form-label {
    color: black;
    font-size: 14px;
    font-weight: 400;
}

#uev_form .form-control {
    border-radius: 0px;
    font-weight: 400;
}

#uev_form #show-password {
    color: black;
    cursor: pointer;
}

#uev_form .btn:hover{
    color: var(--primary-color);
}
/*email verification modal*/
/*login & signup modal*/


/*change password model*/
#ChangePasswordModal .modal-content {
    border-radius: 0px;
}

#ChangePasswordModal .modal-header {
    display: block;
    border: none;
}

#ChangePasswordModal .modal-header .modal-title {
    font-size: 16px;
    font-weight: 800;
    margin-top: 10px;
    /*padding: 0px 20px;*/
}

#change_password_form .form-label {
    color: black;
    font-size: 14px;
    font-weight: 400;
}

#change_password_form .form-control {
    border-radius: 0px;
}

#change_password_form #show-password {
    color: black;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
}

#change_password_form .btn:hover{
    color: var(--primary-color);
}
/*change password model*/

/*profile update model*/
#updateConModal .modal-content {
    border-radius: 0px;
}

#updateConModal .modal-header {
    display: block;
    border: none;
}

#updateConModal .modal-header .modal-title {
    font-size: 16px;
    font-weight: 800;
    margin-top: 10px;
    /*padding: 0px 20px;*/
}

#updateConModalForm .form-label {
    color: black;
    font-size: 14px;
    font-weight: 400;
}

#updateConModalForm .form-control {
    border-radius: 0px;
}

#updateConModalForm #show-password {
    color: black;
    cursor: pointer;
    font-size: 14px;
    font-weight: 400;
}

#updateConModalForm .btn:hover{
    color: var(--primary-color);
}

#deleteAccountLink {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-bg-color);
}
/*profile update model*/

/*cart list modal*/
#cartListModal .modal-content {
    border-radius: 0px;
}

#cartListModal .modal-header {
    display: block;
    border: none;
}

#cartListModal .modal-header .modal-title {
    font-size: 16px;
    font-weight: 800;
    margin-top: 10px;
    /*padding: 0px 20px;*/
}

#cartListModalForm .btn:hover{
    color: var(--primary-color);
}
/*cart list modal*/

/*admin, restaurants drivers & shops login, resgister, forget password, verify email*/
.ardslrfv_cimg {
    width: 15%;
}

.ardslrfv_text_icon {
    font-size: 18px;
    font-weight: 700;
    color: var(--primary-bg-color);
}

.ardslrfv_cname {
    color: var(--primary-bg-color);
    /*color: black;*/
    font-weight: 600;
    font-size: 1.7rem;
}

.ardslrfv_form .form-label {
    color: black;
    font-size: 17px;
    font-weight: 500;
}

.ardslrfv_form .form-control {
    color: black;
    font-size: 16px;
    border-radius: 0px;
}

.ardslrfv_form #show-password {
    color: black;
    cursor: pointer;
}

.ardslrfv-reset-password-head {
    font-size: 1.2rem;
    font-weight: 600;
    color: black;
}

.ardslrfv-reset-password-text {
    font-size: 16px;
    font-weight: 500;
}

.rreg_form .form-label {
    color: black;
    font-size: 17px;
    font-weight: 500;
}

.rreg_form .form-control {
    color: black;
    font-size: 16px;
    border-radius: 0px;
}

.rreg_form .form-select {
    color: black;
    font-size: 16px;
    border-radius: 0px;
}

.rreg_form .form-control:focus {
    font-size: 16px;
}

.rreg_form .form-select:focus {
    box-shadow: none;
    font-size: 16px;
}
/*admin, restaurants drivers & shops login, resgister, forget password, verify email*/

/*home page*/
.custom-box {
    background-size: cover;
    padding: 0;
    margin: 0;
    height: 130vh;
    width: 100%;
}

.custom-box .custom-box-elts {
    position: relative;
    /*top: 43%;*/
    top: 35%;
    margin-left: 3.5rem;
    /*top: 40%;
    margin-left: 7.5rem;*/
}

.custom-box .custom-box-elts .search-input-head {
    /*font-size: 50px;*/
    font-size: 36px;
    text-align: left;
    color: var(--primary-color);
    font-weight: 800;
    padding-bottom: 1rem;
}

.custom-box .custom-box-elts .custom-search-box {
    width: 29rem;
    /*height: 45px;*/
    height: 50px;
    background: white;
    border-radius: 8px;
    align-items: center;
    justify-content: center;
/*    border: 1px solid #cbcbcb;*/
}

.input-group-text {
    border: none;
    background-color: #fff;
}

#basic-addon1 {
    height: 100%;
    border-radius: 0px;
    border-left: 1px solid #efe8e8;
}

.custom-box .custom-box-elts .custom-search-box .marker-pin {
    color: var(--primary-bg-color);
    font-size: 1.1em;
    transition: all 0.4s;
}

.custom-box .custom-box-elts .custom-search-box input[type="search"] {
    /*without the geo-location*/
    /*width: 90%;*/
    /*with geo-location*/
    width: 85%;
    padding-left: 10px;
    height: 32.5px;
    border: 0;
    font-size: 16px;
    font-weight: 600;
    border-radius: 0px;
    text-overflow: ellipsis;
}

#custom-box-geolocation {
    color: var(--primary-bg-color);
}

input[type="search"]::-webkit-search-cancel-button {
    display: none;
}

.custom-search-box .input-group-text {
    padding: .375rem .45rem !important;
}

.custom-box-help-text {
    color: white;
    padding-top: 10px;
    font-size: 14px;
    font-weight: 600
}

#custom_explore_button {
    /*display: block;*/
    display: none;
    font-size: 16px;
    background-color: var(--primary-bg-color);
    color: var(--primary-color);
    width: 29rem;
    border-radius: 0px !important;
    font-weight: 800;
    border-radius: 6px;
    padding: 8px 16px;
    margin-top: 18px;
}

.custom-box-location-alert {
    width: 29rem;
    padding: 10px;
    background-color: #ab1313;
    color: var(--primary-color);
    margin-top: 1rem;
    border-radius: 0px;
    font-weight: 700;
}

section.home_cms {
    padding-top: 0;
    padding-bottom: 0;
}

.custom-box2,
#parcel {
    position: relative;
    background-size: cover;
    padding: 0;
    margin: 0;
    min-height: 40rem;
    background-position: center;
}

#parcel,
#parcel h2,
#parcel a {
    color: var(--primary-color);
}

.custom-box2 h2 {
    color: var(--primary-color);
    text-shadow: rgba(0, 0, 0, 0.35) 0px 0.2rem 0.2rem;
    font-weight: 800;
    font-size: 36px;
    text-align: center;
}

.custom-box2 p {
    color: var(--primary-color);
    text-shadow: rgba(0, 0, 0, 0.35) 0px 0.2rem 0.2rem;
    text-align: center;
    font-size: 20px;
    font-weight: 600;
}

.custom-box2 a {
    font-weight: 800;
    font-size: 18px;
    color: var(--primary-color);
    line-height: 1;
    padding: 1rem 4.4rem;
    border: 0.1rem solid #fff;
    box-shadow: inset 0 0.2rem 0.2rem 0 rgba(0, 0, 0, 0.35), 0 0.2rem 0.2rem 0 rgba(0, 0, 0, 0.35);
    display: inline-block;
    text-transform: uppercase;
    text-decoration: none;
    border-radius: 0.2rem;
    background-color: rgba(0, 0, 0, 0.02);
    -webkit-transition: all 150ms;
    -moz-transition: all 150ms;
    transition: all 150ms;
}

.custom-box2 a:hover {
    background-color: rgba(255, 255, 255, 0.2);
    box-shadow: 0 0.2rem 0.2rem 0 rgba(0, 0, 0, 0.35);
    transition: all 0.4s;
}

.download-app-header {
    color: black;
    font-size: 35px;
    font-weight: 800;
}

.download-apps-icons {
    width: 12rem;
    background-color: var(--primary-bg-color);
}

/*.add-button {
    font-size: 13px !important;
    padding: 2px 10px;
    background-color: black;
    border-radius: 30px;
    color: var(--primary-color);
    max-width: 55px;
}*/

.add-button:hover {
    color: var(--primary-color);
}

.home-banner-headings {
    color: black;
    padding-top: 1rem;
    font-size: 1.5rem;
    font-weight: 800;
}

.home-banner-infos {
    color: black;
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 5px;
}

.home-banner-links {
    color: var(--primary-bg-color);
    font-size: 15px;
    font-weight: 700;
    text-decoration: underline;
}

.home-banner-links:hover {
    color: var(--primary-bg-color);
    text-decoration: underline;
}

.home-banner-sections {
    margin-bottom: 2rem;
}
/*home page*/

/*rsao page*/
.rsao-navbar {
    padding: 0px 3rem;
}

#nav-search-box-ad .marker-pin {
    color: var(--primary-color);
}

#nav-serch-input {
    color: var(--primary-color);
}

.rsao-cover-div {
    height: 65vh;
}

.rsao-elts {
    position: relative;
    top: 70%;
    margin-left: 3rem;
}

.rsao-elts #rsao-nw-delivery {
    font-size: 1rem;
    font-weight: 500;
    text-shadow: rgb(0 0 0 / 35%) 0px 0.2rem 0.2rem;
}

.rsao-elts h5 {
    font-size: 2.6rem;
    line-height: 3rem;
    text-align: left;
    color: var(--primary-color) !important;
    font-weight: 800 !important;
}

.rsao-containers {
    padding: 0px 3rem;
}

.rsao-back-to-list {
    font-size: 22px;
    font-weight: 800;
    color: black;
}

.rsao-back-to-list-address {
    font-size: 14px;
    font-weight: 600;
    color: #727171;
}

.nearby-rsao-headers {
    font-size: 25px;
    font-weight: 800;
    color: black;
/*    color: var(--primary-bg-color);*/
}

.rsao-see-all {
    color: black;
    font-size: 14px;
    font-weight: 600 !important;
}

.owl-carousel {
    position: relative;
    margin-bottom: 15px;
    max-width: calc(100% - 17px);
    z-index: 0;
}

.owl-carousel .owl-stage {
    margin: 0 auto;
}

/*.owl-nav {
    top: 50%;
    left: 50%;
    height: 0;
    width: calc(100% + 20px);
    display: flex;
    position: absolute;
    align-items: center;
    justify-content: space-between;
    transform: translate(-50%, -50%);
}*/

.owl-nav span {
    font-size: 33px;
    font-weight: 500;
    line-height: 26px;
    display: block;
    width: 30px;
    height: 30px;
    border-radius: 50%;
    color: var(--primary-bg-color);
    background-color: #fff;
}

.owl-prev,
.owl-next {
/*    border: 1px solid var(--primary-bg-color);*/
    border: none;
    background-color: #fff;
/*    border-radius: 50%;*/
}

.owl-nav .owl-prev.disabled,
.owl-nav .owl-next.disabled{
    visibility: hidden;
}

.owl-custom-tab {
    color: white;
    display: flex;
    cursor: pointer;
    margin: 10px 10px;
    width: 11.5rem;
    height: 12rem;
    border-radius: 0px;
}

.owl-category-name {
    color: #fff;
    padding-top: 9.5rem;
    margin-left: 14px;
    font-weight: 800;
    font-size: 1.1rem;
}

.rsao-divs {
    margin-bottom: 1.5rem;
    padding: 0px 1.5rem;
}

.nearby-rsao-categoris-div {
    margin-bottom: 2rem;
    margin-top: 2rem;
}

.mobile-categories-div {
    display: none;
}

a.mobile-custom-category-tab {
    display: block;
    height: 3.8rem;
    border-radius: 0px;
    margin-bottom: 11px;
}

.owl-mobile-category-name {
    font-size: 1rem;
    color: #fff;
    font-weight: 800;
    padding: 18px 14px;
}

.category-angel {
    font-size: 1rem;
}

.mobile-see-all-categories{
    color: var(--primary-bg-color) !important;
    font-size: 14px;
    font-weight: 800;
}

.mobile-see-all-categories div {
    border-radius: 0px;
    padding: 20px;
    box-shadow: rgb(0 0 0 / 16%) 0px 5px 15px;
    margin-bottom: 1.5rem;
}

.owl-category-name:hover {
    color: #fff;
}

.owl-carousel .owl-item .owl-custom-tab img {
    width: 30px;
    height: 30px;
    margin-right: 10px;
    object-fit: cover;
    border-radius: 5px;
}

.rsao-ras-div {
    margin-bottom: 2rem;
    margin-top: 2rem;
}

.rsao-cards {
    padding: 0px;
    border: none;
    border-radius: 0px;
    box-shadow: rgb(0 0 0 / 15%) 0px 0.2rem 0.4rem 0px;
/*    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;*/
}

.rsao-cards .card-body {
    padding: 15px 8px !important;
}

.rsao-cover-images {
    width: 100% !important;
    height: 200px !important;
    border-radius: 2px 2px 0px 0px;
    /*background-size: cover;
    background-position: center;
    background-size: 100% 100%;
    object-fit: cover;*/
}

.rsao-cover-images-featured {
    height: 250px !important;
}

.rsao-cards .card-body .card-title {
    font-size: 18px;
    font-weight: 700;
    color: black;
}

.rsao-cards .card-body .card-title img {
    height: 13px;
}

.rsao-cards .card-body .card-text {
    font-size: 14px;
    font-weight: 600;
    color: #5b6670;
}

.rsao-borcdiv {
    text-align: end;
}

.no-nrosao-found {
    font-size: 1rem;
    font-weight: 800;
    color: black;
}

.rsao-by-category-btl {
    margin: 30px 9px;
}

.no-rsao-found-modal-body {
    padding: 2rem 3rem;
}

.no-rsao-marker {
    color: var(--primary-bg-color);
    font-size: 1.6rem;
    font-weight: 600;
}

.no-rsao-found-header {
    color: var(--primary-bg-color);
    font-size: 1.7rem;
    font-weight: 800 !important;
    margin: 2rem 0px 1rem 0px;
    line-height: 2.4rem;
}

p.no-rsao-found-text {
    font-size: 15px;
    font-weight: 500;
    color: #5c5a5a;
}

.no-rsao-found-delivery-area {
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: 800;
    background-color: #bdbdbd;
    border-radius: 0px;
}

.no-rsao-found-explore {
    margin-top: 1rem;
    font-size: 1rem;
    font-weight: 800;
    color: var(--primary-color);
    background-color: var(--primary-bg-color);
    border-radius: 0px;
}

.no-rsao-found-explore:hover {
    color: var(--primary-color);
}

.no-nrosao-found-icons {
    color: var(--primary-bg-color);
    font-size: 3rem;
    margin: 2px;
}

.no-nrosao-found-coming-soon {
    color: black;
    font-size: 16px;
    font-weight: 500;
    text-align: center;
    margin-top: 1.5rem;
}

.no-nrosao-found-coming-soon-subtext {
    color: #49583f;
    font-size: 14;
    font-weight: 400;
    text-align: center;
    margin-top: 1.5rem;
}

.no-rsao-main-div {
    margin-top: 5rem;
}
/*rsao page*/

/*restaurant details page*/
.div-products-section {
    width: 31rem;
    padding: 1rem 0px;
    margin: 1rem 0px;
    border-radius: 0px;
    background-color: #fff;
}

.div-products-section .accordion .accordion-item {
    border: none;
}

.restaurant-details-group-name {
    font-weight: 800;
    font-size: 18px;
    color: black;
}

.rdgn-bb {
/*    border-bottom: 1px solid rgb(195 195 195);*/
}

.rdid-bb {
    border-bottom: 1px solid #00000029;
    padding: 1.3rem 0px !important;
}

.rdid-bb:last-child {
    border-bottom: none;
}

.restaurant-details-item-name:hover {
    color: black;
}

.restaurant-details-group-name:not(.collapsed) {
    background-color: #fff;
    color: black;
}

.div-products-section .accordion .accordion-item .accordion-collapse .accordion-body {
    padding: 1rem 0px 0px 0px;
}

.restaurant-details-item-name {
    color: black;
    font-size: 16px;
    font-weight: 600;
}

.restaurant-details-item-des {
    color: #161616;
    font-size: 14px;
    font-weight: 500;
    padding-top: 0.3rem;
}

.restaurant-details-item-price {
    color: #161616;
    font-size: 16px;
    font-weight: 500;
    padding-top: 0.6rem;
}

/*sub sec -- product model & accordian*/

#productDModal .modal-content {
    border-radius: 0px;
}

#productDModal .modal-header .btn-close {
    padding: 1rem 2.2rem;
    margin: -1rem auto -1rem -1rem;
}

#productDModal .modal-header {
    display: block;
    border-bottom: none;
/*    border-bottom: 1px solid #00000029;*/
/*    box-shadow: rgb(0 0 0 / 16%) 0px 5px 15px;*/
}

#productDModal .modal-header .modal-title {
    color: var(--primary-text-bg-color);
    font-size: 1.3rem;
    font-weight: 800;
    margin-top: 10px;
    padding: 0px 20px;
}

#productImageModal .modal-content {
    border-radius: 0px;
}

#productImageModal .modal-header .btn-close {
    padding: 1rem 2.2rem;
    margin: -1rem auto -1rem -1rem;
}

#productImageModal .modal-header {
    display: block;
    border-bottom: none;
/*    border-bottom: 1px solid #00000029;*/
/*    box-shadow: rgb(0 0 0 / 16%) 0px 5px 15px;*/
}

#productImageModal .modal-header .modal-title {
    color: #5b6670;
    font-size: 1.3rem;
    font-weight: 800;
    margin-top: 10px;
    padding: 0px 20px;
}

#pGroupAccordion {
    padding: 1rem 2.3rem;
}

#productDetailsAccordion .accordion-item {
    border: none;
}

#productDetailsAccordion .accordion-item h2 button {
    color: black;
    font-size: 16px;
    font-weight: 700;
}

#productDetailsAccordion .accordion-button:not(.collapsed) {
    color: black;
    background-color: #fff;
}

.addonSideHeadings {
    font-size: 12px;
    font-weight: 600;
}

#productDetailsAccordion .accordion-body {
/*    padding: 0rem 1.25rem;*/
    padding: 0px;
}

.clear-span {
    color: var(--primary-color);
    font-size: 11px;
    font-weight: 600;
    padding: 2px 8px;
    border-radius: 23px;
    background-color: var(--primary-bg-color);
}

.clear-span:hover {
    color: var(--primary-color);
}

#productDetailsAccordion label {
    color: black;
    font-size: 15px;
    font-weight: 600;
}

.pda_price {
    color: black;
    font-size: 15px;
    font-weight: 600;
}

.div-products-section .accordion .accordion-button {
    padding: 0px;
}

.div-products-section .accordion .accordion-item {
    margin: 0px;
    padding: 1rem 0px;
    border-bottom: 1px solid #00000029;
}

.div-products-section .accordion .accordion-item:last-child {
    border-bottom: none;
}

#productDModal .modal-body {
    padding: 1rem 2.25rem;
}

#productDetailsAccordion .form-check-input:checked + .form-check-label {
    color: var(--primary-bg-color);
    font-size: 15px;
    font-weight: 600;
}

#productDetailsAccordion .accordion-body div {
    padding: 2px 0px 2px 16px;
}

#product-modal-footer {
    border: none;
    display: block;
    padding: 10px 32px;
    justify-content: space-between !important;
}

.cart-input {
    background-color: #fff !important;
    margin: 0px 1rem;
    width: 4rem;
    text-align: center;
/*    border: none;*/
    border: 1px solid #b5c5b2;
}

#add_to_cart_btn {
    padding: 8px;
    border-radius: 0px;
    background-color: var(--primary-bg-color);
    color: var(--primary-color);
    font-size: 13px;
    font-weight: 800;
}
/*sub sec -- product model & accordian*/

/*restaurant details page*/

/*shop details page*/
.shop_price_vary_div {
    display: flex;
    justify-content: center;
    padding-bottom: 1.5rem;
}

.shop_price_vary_div p {
    color: var(--primary-bg-color);
    width: 100%;
    padding: 10px;
    /*border-radius: 0px;*/
    /*text-align: center;*/
    align-items: center;
    border: 1px solid var(--primary-bg-color);
    font-size: 1rem;
    font-weight: 600;
    background-color: #d2ffcf;
}

.shop-details-group-name {
    font-weight: 800;
    font-size: 18px;
    color: black;
}

.sdgn-bb {
/*    border-bottom: 0.1rem solid rgb(233, 235, 237);*/
}

.sdpd-bb {
    border-bottom:  1px solid #00000029;
    padding: 0.3rem 0px !important;
}

.sdpd-bb:last-child {
    border-bottom: none;
}

.shop-details-item-name:hover {
    color: black;
}

.shop-details-group-name:not(.collapsed) {
    background-color: #fff;
    color: black;
}

.shop-details-product-name {
    font-weight: 600;
    font-size: 16px;
    color: black;
}

.shop-details-product-name a {
    color: var(--primary-bg-color);
}

.shop-details-product-price{
    color: #161616;
    font-size: 16px;
    font-weight: 500;
}

.sd-add-button {
    color: #505456;
    font-size: 18px;
    font-weight: 400;
}

.sd-remove-button {
    color: #505456;
    font-size: 16px;
    font-weight: 400;
}

.pd_m_p {
    /*padding: 0px 20px;*/
    text-align: justify;
    font-size: 1rem;
    font-weight: 500;
    max-height: 100px;
    overflow-y: auto;
}
/*shop details page*/

/*cart page*/
.fa-empty-carts {
    font-size: 34px !important;
    color: var(--primary-bg-color);
}

.cart-empty-h4 {
    color: var(--primary-bg-color);
}

.cart-items-m-div {
    padding: 0px 3rem;
    margin-top: 1rem;
}

.cart-p-name {
    color: var(--primary-text-bg-color);
    font-size: 1.1rem;
    font-weight: 700;
}

.cart-v-name {
    color: var(--primary-text-bg-color);
    font-size: 1rem;
    font-weight: 500;
    padding-top: 3px;
}

.cart-a-names {
    font-size: 0.9rem;
    font-weight: 500;
    padding-top: 3px;
}

.cart-value-field {
    font-weight: 400;
}

.cart-p-price {
    font-size: 1.2rem;
    font-weight: 400;
}

.cart-quantity-div {
    border: 1px solid black;
    border-radius: 0px;
    padding: 0px 10px;
}

.cart-quantity-pm {
    cursor: pointer;
}

.cart-value-field {
    background-color: #fff !important;
    border: 1px solid #fff;
    line-height: .5;
}

.remove-cart-item {
    color: black;
}

#cart-quantity-div-mobile {
    display: none !important;
}

.nav-pills .nav-link {
    color: black;
    padding: 5px 15px;
    /*border: 1px solid black;*/
    /*border-radius: 17px;*/
    font-size: 15px;
    font-weight: 600;
}

.nav-pills .nav-link.active, .nav-pills .show>.nav-link {
    background-color: var(--primary-bg-color);
    color: var(--primary-color);
    padding: 5px 15px;
    border-radius: 0px;
    border: 1px solid var(--primary-bg-color);;
    font-size: 15px;
    font-weight: 600;
}

.rcsh5 {
    color: var(--primary-bg-color);
    font-size: 1rem;
}

#regular_checkout label,
#pickup_checkout label {
    color: black;
    font-size: 15px;
    font-weight: 500;
}

#regular_checkout input,
#regular_checkout textarea,
#pickup_checkout textarea {
    border-radius: 0px;
}

.btn-cart-checkout {
    color: var(--primary-color);
    background-color: var(--primary-bg-color);
    font-size: 16px;
    font-weight: 700;
    border-radius: 0px;
}

.btn-cart-checkout:hover {
    color: var(--primary-color);
}

.cart-stctt-names {
    color: black;
    font-size: 16px;
    font-weight: 500;
}

.cart_info_icons {
    color: black;
}

#cart-total-div {
    font-weight: 800;
    border-top: 1px solid black;
    margin-top: 9px;
}

#cart-total-div .cart-stctt-names {
    font-size: 16px;
    font-weight: 500;
    margin-top: 5px;
}

#cartDModal .modal-header {
    display: block;
    border: none;
}

#cartDModal .modal-header .modal-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 10px;
    /* padding: 0px 20px; */
}

#cartDModal .modal-body h5 {
    font-size: 1rem;
    font-weight: 500;
}

.cart-adm-title {
    color: black;
    font-size: 16px;
    font-weight: 400;
}

#cart-adm-atd {
    margin-top: 5px;
    border-top: 1px solid black;
}

#cart-adm-ted {
    margin-top: 5px;
    border-top: 1px solid black;
}

#cart-amount-details {
    color: black;
}

.form-check-input:checked[name=driver_select_sub],
.form-check-input:checked[name=leave_at_door] {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3e%3cpath fill='none' stroke='%23fff' stroke-linecap='round' stroke-linejoin='round' stroke-width='3' d='M6 10l3 3l6-6'/%3e%3c/svg%3e");
}

/*toggle tips start*/
.tip-options {
    background-color: #e3e3e3;
}

.btn-group-vertical.tip-options {
    width: 100%;
}

.btn-group-vertical.tip-options .btn {
    width: 100%;
    text-align: left;
}

.custom-tip-amount {
    margin-top: 1rem;
}

.toggle-tip-labels {
    width: 100%;
    border: none;
    padding: 2px 15px;
    border-radius: 0px;
}

.toggle-tip-labels:hover {
    color: #fff !important;
    background-color: var(--primary-bg-color) !important;
/*    border: 1px solid var(--primary-bg-color) !important;*/
}

.tip-options .btn-check:checked+ .btn-outline-light {
    color: #fff !important;
    background-color: var(--primary-bg-color) !important;
/*    border: 1px solid var(--primary-bg-color) !important;*/
}

.delivery-tip-eng {
    color: #505050;
}
/*toggle tips end*/

.surcharge-notice {
    font-size: 13px;
    font-weight: 600;
}

/*cart page*/

/*orders lists page*/
.odlp_odcdiv {
    color: black;
}

.odlp_odcdiv:hover {
    color: black !important;
}

.odlp_oddiv {
    border-bottom: 1px solid black;
    padding-bottom: 10px;
}

.odlp_date {
    border-bottom: 3px double black;
}

.odlp_oid {
    color: black;
    font-size: 16px;
    font-weight: 700;
}

.odlp_orsn {
    color: black;
    font-size: 17px;
    font-weight: 700;
}

.odlp_cards {
    border-radius: 0px;
    border: none;
}

.odlp_card_headers {
    background-color: rgb(0 0 0 / 8%);
}

.odlp_odate {
    color: black;
    font-size: 16px;
    font-weight: 700;
}

.odlp_odates {
    font-size: 15px;
    color: #585757;
    font-weight: 500;
    margin-bottom: 5px;
}

.odlp_names {
    font-size: 15px;
    color: black;
    font-weight: 600;
}

.odlp_cards .card-footer {
    border-top: 0px;
}

.odlp_alinks {
    display: flex;
    align-items: center;
    width: max-content;
    padding: 7px 14px;
    background-color: rgb(0 0 0 / 15%);
    border-radius: 0px;
    color: black;
    font-size: 15px;
    font-weight: 700;
}

.odlp_alinks:hover {
    color: black;
}

.odlp_alinks_icons {
    font-size: 18px;
}

/*orders lists page*/

/*order details page*/
.odd_pbar{
    padding-left: 0px;
    padding-right: 0px;
}

.odd_pbar {
    counter-reset: step;
    margin-bottom: 3rem;
}

.odd_pbar li {
    width: 19.33%;
    list-style: none;
    cursor: pointer;
    text-align: center;
    position: relative;
    display: inline-block;
}

.odd_pbar li:before {
    width: 30px;
    height: 30px;
    display: block;
    line-height: 30px;
    text-align: center;
    border-radius: 100%;
    border: 1px solid #b9afaf;
    content: counter(step);
    background-color: #fff;
    counter-increment: step;
    margin: 0 auto 10px auto;
}

.odd_pbar li:after {
    top: 15px;
    left: -50%;
    height: 1px;
    width: 100%;
    content: "";
    position: absolute;
    background-color: #ddd;
    z-index: -1;
}

.odd_pbar li:first-child:after {
    content: none;
}

.odd_pbar li.active {
    color: black;
    font-weight: 500;
}

.odd_pbar li.active:before {
    border-color: var(--primary-bg-color);
}

.odd_pbar li.active+li:after {
    background-color: var(--primary-bg-color);
}

#odp_items_header {
    border-bottom: 1px double black;
    padding-bottom: 1rem;
    color: black;
}

#odp_dd_header {
    border-bottom: 3px double black;
    padding-bottom: 1rem;
    color: black;
}

#odp_driver_header {
    border-bottom: 3px double black;
    padding-bottom: 1rem;
    color: black;
}

.odp_image_heder {
    border-bottom: 3px double black;
    padding-bottom: 1rem;
    color: black;
}

#odp_ad_header {
    border-bottom: 3px double black;
    padding-bottom: 1rem;
    color: black;
}

.odp-p-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: black;
}

.odp-v-name {
    font-size: 1rem;
    font-weight: 400;
    color: black;
}

.odp-a-names {
    font-size: 0.9rem;
    font-weight: 300;
    color: black;
}

.odp-p-note {
    font-size: 1rem;
    font-weight: 400;
    color: black;
}

.odp-p-price {
    font-size: 1rem;
    font-weight: 400;
    color: black;
}

.odp-dd-adiv {
    color: black;
    font-size: 17px;
    font-weight: 500;
    margin-top: 1.1rem;
}

.odp_driver_image {
    width: 16%;
}

.odp-dboy-name {
    color: black;
    font-size: 19px;
    font-weight: 600;
    margin-top: 10px;
}

.odp_driver_calltext_btn {
    color: black;
    font-size: 19px;
    margin: 0px 4px;
}

.odp_ordlat_image {
    width: 80%;
}

.odp-stctt-names {
    color: black;
    font-size: 16px;
    font-weight: 500;
}

.odp-total-div {
    font-weight: 800;
    border-top: 1px solid black;
    margin-top: 9px;
}

.odp-total-final-div {
    font-weight: 800;
    border-top: 1px solid black;
    margin-top: 5px;
}

.btn-odp-cancel {
    color: var(--primary-color);
    background-color: var(--primary-bg-color);
    font-size: 16px;
    font-weight: 700;
    border-radius: 0px;
    padding: 6px 10px;
}

.btn-odp-cancel:hover {
    color: var(--primary-color);
}

#itemDModal .modal-header {
    display: block;
    border: none;
}

#itemDModal .modal-header .modal-title {
    font-size: 1.3rem;
    font-weight: 600;
    margin-top: 10px;
    /* padding: 0px 20px; */
}

#itemDModal .modal-body h5 {
    font-size: 1rem;
    font-weight: 500;
}

.odp-map-section {
    margin-top: 4rem;
}

.odp-status-main {
    font-size: 1.4rem;
    font-weight: 700;
}

.track-line {
    height: 2px !important;
    background-color: #000;
    opacity: 1;
}

.odp-status-sub {
    font-size: 15px;
    font-weight: 600;
    color: #4e4e4e;
    margin-top: 7px;
}

i.active {
    font-size: 16px;
    font-weight: 800;
    color: var(--primary-bg-color);
}

hr.track-line.active {
    background-color: var(--primary-bg-color);
}

.odp-restaurant-name {
    color: black;
    font-size: 1.1rem;
    font-weight: 700;
}

.odp-delivery-address {
    font-size: 15px;
    font-weight: 600;
    color: #4e4e4e;
}

.odp-od-head {
    color: black;
    font-size: 1.1rem;
    font-weight: 700;
}

.odp-od-items {
    font-size: 15px;
    font-weight: 600;
    color: #3a3a3a;
    margin: 5px 0px;
}

.odp-od-items-hr {
    margin: 0px;
}

a.btn.odp-dboy-bottons {
    color: #fff;
    background-color: black;
    padding: 2px 20px;
    font-size: 14px;
    font-weight: 600;
    border-radius: 0px;
    margin: 0px 2px;
}

.odp_help_text {
    font-size: 14px;
    font-weight: 700;
}

.shop-d-traingle {
    margin-right: 10px;
}

.shop-d-image-info {
    color: #1a5d12;
    font-size: 14px;
    font-weight: 500;
    padding: 0.5rem 0px;
}

#deliveryImagesModal .modal-header {
    display: block;
    border: none;
}

#deliveryImagesModal .modal-header .modal-title {
    font-size: 1rem;
    font-weight: 600;
    margin-top: 10px;
    /* padding: 0px 20px; */
}

 .odp-oim-headings {
    color: var(--primary-bg-color);
    font-size: 14px;
    font-weight: 600;
    margin: 7px 0px;
 }
/*order details page*/

/*shopping order details page*/
.sod_p_div {
    color: black;
    cursor: pointer;
}

.sod_sp_style {
    text-decoration: line-through;
    text-decoration-style: double;
    font-size: 13px;
}

.sodp_phr {
    margin: 14px 0;
}

.sod_smgs_div {
    font-size: 15px;
    font-weight: 600;
}

#similarPModal .modal-content {
    border-radius: 0px;
}

#similarPModal .modal-header {
    display: block;
    border: none;
}

#similarPModal .modal-header .modal-title {
    font-size: 1.3rem;
    font-weight: 800;
    margin-top: 10px;
    /*padding: 0px 20px;*/
}

.sodp-spm-buttons {
    color: var(--primary-color);
    background-color: var(--primary-bg-color);
    border-radius: 0px;
    font-size: 18px;
    font-weight: 700;
}

.sodp-spm-buttons:hover {
    color: var(--primary-color);
}

.sod-m-text {
    color: black;
    font-size: 17px;
    font-weight: 600;
}
/*shopping order details page*/

/*parcel page*/
#parcel_checkout_form label {
    color: black;
    font-size: 16px;
    font-weight: 500;
}

#parcel_checkout_form input,
#parcel_checkout_form .form-select {
    border-radius: 0px;
}

#parcel_checkout_form .form-select:focus {
    box-shadow: none;
}

.parcel-inf-names {
    color: black;
    font-size: 14px;
    font-weight: 600;
}

.parcel-vb-names {
    color: black;
    font-size: 14px;
    font-weight: 500;
}

.btn-parcel-checkout {
    color: var(--primary-color);
    background-color: var(--primary-bg-color);
    font-size: 18px;
    font-weight: 700;
    border-radius: 0px;
}

.btn-parcel-checkout:hover {
    color: var(--primary-color);
}
/*parcel page*/

/*orders support modals*/
.odp_help_text {
    cursor: pointer;
}

#supportModal .modal-content {
    border-radius: 0px;
}

#supportModal .modal-header {
    display: block;
    border: none;
}

#supportModal .modal-header .modal-title {
    font-size: 16px;
    font-weight: 800;
    margin-top: 10px;
    /*padding: 0px 20px;*/
}

#supportModal .form-label {
    color: black;
    font-size: 14px;
    font-weight: 400;
}

#supportModal .form-control {
    border-radius: 0px;
    font-weight: 400;
}

#supportModal .form-control:focus {
    border-radius: 0px;
}

#supportUpdatesModal .modal-content {
    border-radius: 0px;
}

#supportUpdatesModal .modal-header {
    display: block;
    border: none;
}

#supportUpdatesModal .modal-header .modal-title {
    font-size: 16px;
    font-weight: 800;
    margin-top: 10px;
    /*padding: 0px 20px;*/
}

.support-update-modal-body-titles {
    font-size: 14px;
    font-weight: 700;
    color: var(--primary-bg-color);
    margin-bottom: 7px;
}

#support-update-modal-body p{
    color: black;
    font-size: 14px;
    font-weight: 500;
}
/*orders support modals*/

/*footer css -- OLD*/
/*.common-divR {
    padding: 0 3rem;
}

.footer {
    background-color: var(--primary-bg-color);
    color: var(--primary-color);
}

.footer-sec-one-links {
    font-weight: 800;
    font-size: 16px;
    color: var(--primary-color);
}

.footer-sec-one-links:hover{
    color: var(--primary-color);
}

.footer-social-media-links {
    height: 40px;
    width: 40px;
    border-radius: 50%;
    font-size: 25px;
    margin-right: 15px;
    color: var(--primary-color);
}

.footer-sec-two {
    padding: 3rem 0px !important;
}

.footer-sec-two-links-headers {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 700;
}

.footer-ul {
    list-style: none;
    padding-left: 0px;
}

.footer-ul li a {
    color: var(--primary-color);
    font-size: 16px;
    font-weight: 400;
}

.footer-download-head {
    padding: 13px 8px;
    font-size: 18px;
    font-weight: 800;
    border: 1px solid white;
}

#footer_google_logo {
    width: 12rem;
}

#footer_apple_logo {
    width: 11rem;
}

.footer-copyright-text {
    color: #abe1a7;
    text-align: center;
    font-size: 13px;
    font-weight: 500;
}

.footer-sec-three-links{
    color: var(--primary-color);
}*/
/*footer css -- OLD*/

/*Footer CSS - V2*/
.footer {
    background-color: var(--primary-bg-color);
    padding: 1.5rem 5rem;
    margin-top: 2rem;
}

.footerCommonLinks {
    color: #fff;
}

.footerCommonLinks:hover {
    color: #fff;
}

.footerBtnGroupOne {
    padding: 10px 20px;
}

#footerGetApp {
    width: 13rem;
    color: var(--primary-bg-color);
    background-color: #fff;
    font-weight: 800;
    margin-right: 10px;
    margin-bottom: 10px;
}

#footerBecomeDriver {
    width: 13rem;
    color: #fff;
    background-color: #0ba400;
    font-weight: 800;
    margin-bottom: 10px;
}

.footerIcons {
    font-size: 18px;
    margin-right: 1rem;
    justify-content: center;
}

.footerHR {
    color: #fff;
}

.footerBtnGroupTwo {
    font-weight: 600;
}

.footerBtnGroupTwoMasterDiv {
    display: flex;
    justify-content: flex-end;
}

.footerCommonLocationBtn {
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

.footerCommonLocationBtn:hover {
    color: #fff;
}

.footerBtnGroupThree {
    font-weight: 600;
    font-size: 14px;
}

.footer-copyright-text {
    color: #6db987;
    font-size: 13px;
    font-weight: 600;
}

/*Footer CSS - V2*/


/*cms pages start*/

/*parcel cms page*/
.parcel-cms-header {
    font-weight: 800;
    font-size: 2.5rem;
}

.parcel-cms-info {
    font-weight: 500;
    font-size: 1.2rem;
}

.parcel-price-check {
    color: var(--primary-color);
    font-weight: 600;
    padding: 8px 24px;
    font-size: 1.2rem;
    background-color: var(--primary-bg-color);
}

.parcel-price-check:hover {
    color: var(--primary-color);
}
/*parcel cms page*/

/*service areas*/
.service-areas-alocations {
    color: var(--primary-bg-color);
    font-size: 18px;
    font-weight: 800;
    margin-top: 1rem;
}

.service-areas-sname {
    color: black;
    font-size: 16px;
    font-weight: 800;
}

.service-areas-lname {
    color: var(--primary-bg-color);
    font-size: 14px;
    padding-bottom: 3px;
    font-weight: 600;
    text-decoration: underline;
    cursor: pointer;
}
/*service areas*/

/*cms pages end*/


/*Overriding master*/
.form-control {
    border-radius: 8px !important;
}
.btn {
    border-radius: 8px !important;
}
/*Overriding master*/