* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Montserrat";
    background: #F8F8F4;
    font-size: 14px;
}

.login-container {
    width: 100%;
    margin: 90px 0;
}

.login-card,
.register-card {
    max-width: 460px;
    width: 100%;
    background: #fff;
    border-radius: 12px;
    padding: 30px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);

    margin: 0 auto;
}

.login-header {
    text-align: center;
    margin-bottom: 20px;
}

.login-header h2 {
    color: #688308;
    margin-bottom: 16px;
}

h2 {
    font-size: 24px;
    font-weight: 600;
}

.login-header p {
    color: #000000;
}

/* Form Styles */
.form-group {
    margin-bottom: 20px;
}

.input-wrapper {
    position: relative;
    display: flex;
    flex-direction: column;
}

.input-wrapper input {
    background: white;
    border: 1px solid #D1D2D6;
    border-radius: 5px;
    padding: 9px 16px 9px 16px;
    color: #1e293b;
    font-size: 16px;
    transition: all 0.2s ease;
    width: 100%;
    outline: none;
}

.input-wrapper input::placeholder {
    color: #BFBFBF;
}
.invalid-feedback{
    font-weight: 500;
}
/* .input-wrapper label {

    color: #000;
    font-size: 16px;
    transition: all 0.2s ease;
    pointer-events: none;
    transform-origin: left top;
} */

.input-wrapper input:focus,
.input-wrapper input.is-invalid,
.input-wrapper input.has-value {
    border-color: #000000ff;
}

.input-wrapper input:focus+label,
.input-wrapper input:valid+label,
.input-wrapper input.has-value+label {
    transform: translateY(-18px) scale(0.8);

    color: #000000ff;
    font-weight: 500;
    background: white;
    padding: 0 4px;
    border-radius: 4px;
}


/* Password Toggle */
.password-wrapper {
    position: relative;
}

.password-wrapper input {
    padding-right: 48px;
}

.password-toggle {
    display: none;
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: #64748b;
    transition: color 0.2s ease;
}

.password-toggle:hover {
    color: #1e293b;
}

.eye-icon {
    display: block;
    width: 20px;
    height: 20px;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748b' stroke-width='1.5'%3e%3cpath stroke-linecap='round' stroke-linejoin='round' d='M15 12a3 3 0 11-6 0 3 3 0 016 0z'/%3e%3cpath stroke-linecap='round' stroke-linejoin='round' d='M2.458 12C3.732 7.943 7.523 5 12 5c4.478 0 8.268 2.943 9.542 7-1.274 4.057-5.064 7-9.542 7-4.477 0-8.268-2.943-9.542-7z'/%3e%3c/svg%3e");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
    transition: background-image 0.2s ease;
}

.eye-icon.show-password {
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%2364748b' stroke-width='1.5'%3e%3cpath stroke-linecap='round' stroke-linejoin='round' d='M3.98 8.223A10.477 10.477 0 001.934 12C3.226 16.338 7.244 19.5 12 19.5c.993 0 1.953-.138 2.863-.395M6.228 6.228A10.45 10.45 0 0112 4.5c4.756 0 8.773 3.162 10.065 7.498a10.523 10.523 0 01-4.293 5.774M6.228 6.228L3 3m3.228 3.228l3.65 3.65m7.894 7.894L21 21m-3.228-3.228l-3.65-3.65m0 0a3 3 0 11-4.243-4.243m4.242 4.242L9.88 9.88'/%3e%3c/svg%3e");
}

/* Error Messages */
.error-message {
    display: block;
    color: #ef4444;
    font-size: 0.75rem;
    font-weight: 500;
    margin-top: 4px;
    margin-left: 4px;
    opacity: 0;
    transform: translateY(-4px);
    transition: all 0.2s ease;
}

.error-message.show {
    opacity: 1;
    transform: translateY(0);
}

.form-group.error .input-wrapper input {
    border-color: #ef4444;
}

/* Form Options */
.form-options {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 24px;
    flex-wrap: wrap;
    gap: 12px;
}

.remember-wrapper {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
}

.remember-wrapper input[type="checkbox"] {
    display: none;
}

.checkbox-label {
    color: #000000ff;
    font-size: 12px;
    font-weight: 500;
    line-height: 20px;
    cursor: pointer;
    user-select: none;
    display: flex;
    align-items: center;
    gap: 10px;
}

.checkmark {
    width: 20px;
    height: 20px;
    border: 1px solid #D1D2D6;
    /* border-radius: 4px; */
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
    background: white;
}

.remember-wrapper input[type="checkbox"]:checked~.checkbox-label .checkmark {
    background: #000000ff;
    border-color: #000000ff;
}

.remember-wrapper input[type="checkbox"]:checked~.checkbox-label .checkmark::after {
    content: '✓';
    color: white;
    font-size: 10px;
    font-weight: bold;
}

.forgot-password {
    /* display: none; */
    color: #000000ff;
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    font-size: 13px;
    transition: color 0.2s ease;
}

.forgot-password:hover {
    color: #000000ff;
}


/* Button */
.login-btn,
.register-btn {
    width: 100%;
    background: #086037;
    border: none;
    border-radius: 5px;
    padding: 12px 24px;
    color: white;
    text-transform: uppercase;
    font-size: 14px;
    font-weight: 500;
    line-height: 20px;
    cursor: pointer;
    transition: all 0.2s ease;
    position: relative;
    margin-bottom: 15px;
}

.login-btn:hover,
.register-btn:hover {
    background: #198754;
}

.login-btn:active,
.register-btn:active,
.login-btn:focus,
.register-btn:focus {
    transform: translateY(1px);
    background-color: #198754;
}

/* Loading State */
.login-btn.loading,
.register-btn.loading {
    pointer-events: none;
    background: #198754;
}

.btn-text {
    transition: opacity 0.2s ease;
}

.btn-loader {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 16px;
    height: 16px;
    border: 2px solid transparent;
    border-top: 2px solid white;
    border-radius: 50%;
    opacity: 0;
    animation: spin 1s linear infinite;
    transition: opacity 0.2s ease;
}

.login-btn.loading .btn-text {
    opacity: 0;
}

.login-btn.loading .btn-loader {
    opacity: 1;
}

/* Signup Link */
.signup-link {
    text-align: center;
}

/* Success Message */
.success-message {
    display: none;
    text-align: center;
    padding: 32px 20px;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s ease;
}

.success-message.show {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

.success-icon {
    width: 48px;
    height: 48px;
    background: #0b8036ff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    color: white;
    margin: 0 auto 16px;
    animation: successPulse 0.5s ease;
}

.success-message h3 {
    color: #1e293b;
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.success-message p {
    color: #64748b;
    font-size: 0.875rem;
}

/* Animations */
@keyframes spin {
    0% {
        transform: translate(-50%, -50%) rotate(0deg);
    }

    100% {
        transform: translate(-50%, -50%) rotate(360deg);
    }
}

@keyframes successPulse {
    0% {
        transform: scale(0);
    }

    50% {
        transform: scale(1.1);
    }

    100% {
        transform: scale(1);
    }
}

/* Mobile Responsive */
@media(max-width:992px) {
    .login-container {
        margin-top: 40px;
        margin-bottom: 70px;

    }

    table.dataTable.nowrap th,
    table.dataTable.nowrap td {
        white-space: normal !important;
    }

    table.dataTable.dtr-inline.collapsed>tbody>tr>td.dtr-control:before,
    table.dataTable.dtr-inline.collapsed>tbody>tr>th.dtr-control:before {
        top: 50%;
        left: 5px;
        height: 20px;
        width: 20px;
        margin-top: -9px;
        display: block;
        position: absolute;
        color: white;
        border: 1px solid white;
        border-radius: 1em;
        box-shadow: 0 0 .2em #444;
        box-sizing: content-box;
        text-align: center;
        text-indent: 0 !important;
        font-family: "Courier New", Courier, monospace;
        line-height: 20px;
        content: "+";
        background-color: #198754;
        font-size: 24px;
    }

    .login-container .row {
        gap: 40px;

    }

    footer {
        padding: 10px 0;
    }

    footer .row {
        flex-direction: column-reverse;
        gap: 6px;
    }

    footer .copyright,
    footer .policy-links {
        text-align: center !important;
    }
}

@media(max-width:768px) {}

@media (max-width: 480px) {
    .login-card {
        padding: 24px;

    }

    .login-header h2 {
        font-size: 1.5rem;
    }

    .form-options {
        align-items: flex-start;
        gap: 16px;
    }
}


/* footer */
footer {
    background-color: #FFFFF9;
    color: #000;
    align-items: center;
    padding-top: 5px;
    padding-bottom: 5px;

}

footer .copyright {
    text-align: left;
    font-size: 12px;
    line-height: 20px;
    color: #000;
}

footer .policy-links {
    text-align: right;
    gap: 15px;
}

footer .policy-links a {
    text-decoration: none;
    color: #000;
    margin: 0 15px;
    font-size: 12px;
    line-height: 20px;
}

tr.item-row {
    vertical-align: top;
}

nav {
    box-shadow: 0px 0px 16.3px -8px rgba(0, 0, 0, 0.46);
}

.navbar-expand-lg .navbar-nav {
    /* margin-right:auto; */
    gap: 20px;
}

.navbar-expand-lg {
    /* background-color: #000062 !important; */
    background-color: #fff !important;
    color: #fff;
    height: 90px;

    padding: 22px 0 !important;
}

.navbar-collapse {
  flex-grow: 1;
  flex-basis: 100%;
  align-items: center;
  /*margin-top: 22px;*/
  background-color: #fff;
  z-index: 255;
  padding: 20px;
  width: 100%;
  /*box-shadow: 0px 4px 4px 0 rgba(0, 0, 0, 0.2);*/
}

.navbar-brand {
    color: #fff;
    font-weight: 700;
}

.navbar-toggler-icon {
    background-image: url("../images/fi-rs-menu-burger.png");
    background-color: #fff;
    border-radius: 5px;
}

.dropdown-toggle::after {
    content: url("../images/dropdown.png");
    border: none;
    margin-left: 0;
    vertical-align: middle;
    line-height: 16px;
    top: -3px;
  position: relative;
  right: -2px;

}

.dropdown-menu[data-bs-popper] {
    margin-top: 15px;
    padding: 15px 0;
}

.dropdown-item {
    font-size: 12px;
    color: #000;
    text-transform: uppercase;
    font-family: "Montserrat";
    /* padding: 0 !important; */
    font-weight: 500 !important;
    padding: 5px 15px;
    /* white-space: break-spaces; */

}

.dropdown-item.active,
.dropdown-item:active,
.dropdown-item:hover {
    color: var(--bs-dropdown-link-active-color);
    text-decoration: none;
    background-color: #5a6b18;
}


.navbar-toggler:focus {
    box-shadow: none;
}

.navbar-expand-lg .navbar-nav .nav-link {
    color: #000;
    text-transform: uppercase;
    font-size: 12px;
    font-family: "Montserrat";
   
    font-weight: 500 !important;
}
.navbar-expand-lg .navbar-nav .nav-link {
    padding-right: 0;
    padding-left: 0;
  }
.navbar-nav .nav-link.active,
.navbar-nav .nav-link.show {
    font-weight: 700;
    color: #5a6b18;

}


.address-grid {
    gap: 15px;
    width: 100%;
}

.address-grid .col-lg-4 {
    max-width: 32%;
    border: 1px solid #bebebe;
    padding: 30px;
    border-radius: 15px;
}

.address-grid .col-lg-4:first-child {
    display: flex;
    text-align: center;
    justify-content: center;
    border: 1px dashed #bebebe;
}

.address-grid .col-lg-4 svg {
    width: 20px !important;
}

.address-grid .edit svg path {
    fill: #006e1c;
}

.address-grid .delete svg path {
    fill: #ff0000;

}

#exampleModalBilling .modal-body .row,
#exampleModalShipping .modal-body .row {
    display: flex;
}

.file-upload::before {
    border-radius: 50%;
    font-family: FontAwesome;
    content: "\f007";
    top: 0;
    left: 10px;
    width: 20px;
    height: 20px;
    position: absolute;
    font-size: 20px;
    text-align: center;
}

.file-upload {
    cursor: pointer;
    position: absolute;
    width: 250px;
    padding-left: 50px;
}

.modal_address {
    max-width: 700px;
}

.avatar-upload {
    position: relative;
    max-width: 80px;
}

.avatar-edit input {
    display: none;
}

.avatar-edit label {
    display: inline-block;
    width: 100%;
    height: 100%;
    cursor: pointer;
}

.avatar-edit {
    position: absolute;
    right: -5px;
    bottom: -5px;
    z-index: 1;
}

.avatar-edit input {
    display: none;
}

.avatar-edit label {
    display: inline-block;
    width: 30px;
    height: 30px;
    background: #ffffff;
    border-radius: 50%;
    border: 2px solid #dcdcdc;
    cursor: pointer;
    font-size: 16px;
    color: #555;
    line-height: 26px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.avatar-edit label:before {
    content: "\f303";
    font-family: "FontAwesome";
}

.avatar-preview {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
}

.avatar-preview img {
    width: 100%;
    height: 100%;
    border-radius: 50%;
    object-fit: cover;
}

thead tr {
    vertical-align: top;
    text-align: center;
}

/* Style the tab */
.tab {
    overflow: hidden;
    background-color: #ffffffff;
}

/* Style the buttons that are used to open the tab content */
.tab button {
    background-color: #fff;
    float: left;
    border: none;
    outline: none;
    cursor: pointer;
    padding: 14px 16px;
    color: #086037;
    transition: 0.3s;
    border: 1px solid #086037;
}

/* Change background color of buttons on hover */
.tab button:hover {
    background-color: #086037;
    color: #ffffffff;
}

/* Create an active/current tablink class */
.tab button.active {
    background-color: #086037;
    color: #ffffffff;

}

.btn.active[data-bs-toggle="modal"],
.btn.show[data-bs-toggle="modal"],
.btn:first-child:active[data-bs-toggle="modal"] {
    border: none;
}

/* Style the tab content */
.tabcontent {
    display: none;
    padding: 6px 12px;
}

.tabcontent {
    animation: fadeEffect 1s;
}

/* Go from zero to full opacity */
@keyframes fadeEffect {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@media(max-width:992px) {
    .address-grid .col-lg-4 {
        max-width: 48%;
    }
}

@media(max-width:768px) {
    .address-grid .col-lg-4 {
        max-width: 100%;
    }

    #billingadd.tabcontent,
    #shippingadd.tabcontent {
        justify-content: center;
    }

    .tab button {
        width: 50%;

    }

}

@media(max-width:420px) {
    .tab button {
        width: 100%;

    }
}

@media(max-width:480px) {
    .my-account-tabs {
        flex-wrap: wrap;
    }
}

/* --------------------------------------------------------------date time picker-------------------------------------------------------------------------- */
.ui-state-default,
.ui-widget-content .ui-state-default,
.ui-widget-header .ui-state-default,
.ui-button,
html .ui-button.ui-state-disabled:hover,
html .ui-button.ui-state-disabled:active {
    border: 1px solid #ffffff;
    background: #ffffff;
    font-weight: normal;
    color: #454545;
}

.ui-widget-header {
    border: 1px solid #dddddd;
    background: #009688;
    color: #ffffff;
    font-weight: bold;
}

.ui-state-active,
.ui-widget-content .ui-state-active,
.ui-widget-header .ui-state-active,
a.ui-button:active,
.ui-button:active,
.ui-button.ui-state-active:hover {
    border: 1px solid #009688;
    background: #009688;
    font-weight: normal;
    color: #ffffff;
}

.ui-datepicker td span,
.ui-datepicker td a {
    display: block;
    padding: .2em;
    text-align: center;
    text-decoration: none;
}

/* Add row css */
.package-row .tm-quantity input {
    /* min-width: 50px; */
    text-align: center;
    max-width: 80px;
    margin-left: 10px;

}

button.btn.btn-sm.remove-package-row {
    border-radius: 50%;

}

button.btn.btn-sm.remove-package-row {
    border-radius: 50%;
    padding: 3px 5px;
    line-height: normal;
}

button.btn.btn-sm.remove-package-row:hover {
    background-color: #ff0000;
}

button.btn.btn-sm.remove-package-row svg {
    width: 20px;
}

button.btn.btn-sm.remove-package-row svg path {
    fill: #ff0000;
}

button.btn.btn-sm.remove-package-row:hover svg path {
    fill: #ffffff;
}



/* order details and tracking page */
.order-details .col {
    border: 1px solid #bebebe;
    border-radius: 15px;
    padding: 15px;
}

.order-details svg {
    width: 20px;
}

.order-details {
    gap: 15px;

}




/* styles.css */

.kt-card {
    --tw-shadow-color: color-mix(in oklab, rgba(0, 0, 0, 0.05) var(--tw-shadow-alpha), transparent);
}

.kt-card-header {
    display: flex;
    min-height: calc(var(0.25rem) * 14);
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: calc(var(0.25rem) * 2.5);
    /* border-bottom-style: solid;
    border-bottom-width: 1px;
    border-color: #eeeaeb; */
    /* padding:20px; */
    border: none;
}

.kt-card-footer {
    display: flex;
    align-items: center;
    /* border-top-style: var(solid);
    border-top-width: 1px;
    border-color:  #eeeaeb; */
    padding: 20px;

}

.kt-card-content {
    flex-grow: 1;
    /* padding:20px; */

}

.w-600 {
    max-width: 600px;
    width: 100%;
    margin: 0 auto;
}

/* .kt-card-header{
   padding: 20px 10px;
} */


.shipping-rate-calculator .row.form-groups .lwh input[type="text"] {
    /* min-width:50px; */

}

.shipping-rate-calculator .row.form-groups .form-select {
    /* min-width:90px; */
}

.shipping-rate-calculator .form-group .d-flex {
    border: var(--bs-border-width) solid var(--bs-border-color);
    border-radius: var(--bs-border-radius);
}

.shipping-rate-calculator button.btn.btn-sm.ms-2.remove-package-row.mb-0 {
    margin-left: 0 !important;
    margin-top: 30px;
}

































/* common css */
.shipping-rate-calculator {
    background: #f8f9fa;
}

.shipping-rate-calculator .container .wrapper {

    background-color: #ffffff;
    padding: 30px;
    border-radius: 12px;

}

.shipping-rate-calculator .container {
    max-width: 900px;
    padding-left: 20px;
    padding-right: 20px;
}

.required {
    color: red;
}

.package-group {
    border: 1px dashed #ddd;
    padding: 15px;
    border-radius: 10px;
    margin-bottom: 15px;
    position: relative;
}

.remove-row {
    position: absolute;
    top: 8px;
    right: 8px;
    padding: 2px 3px;
    font-size: 14px;
    font-weight: 600;
    line-height: 1;
    color: #ffffff;
    border-radius: 50px;
    background-color: red;
}

.remove-row:hover {
    background-color: red;
    color: #fff;
}

.rate-card {
    border: 1px solid #dee2e6;
    border-radius: 10px;
    padding: 15px;
    cursor: pointer;
}

.rate-card:hover {
    background: #f1f1f1;
}

.error-border {
    border: 1px solid #dc3545 !important;
}

.error-text {
    color: #dc3545;
    font-size: 13px;
    margin-top: 4px;
}

.container,
.container-fluid,
.container-lg,
.container-md,
.container-sm,
.container-xl,
.container-xxl {
    padding-right: 20px;
    padding-left: 20px;
}

.kt-card-title {
    color: #688308;
    font-family: "Montserrat";
    font-size: 24px;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 30px;
}

.kt-modal-title {
    color: #688308;
    font-family: "Montserrat";
    font-size: 24px;
    line-height: auto;
    font-weight: 600;
    margin-bottom: 0;
}

.form-select,
.form-control,
input,
textarea {
    /* padding-right: 50px; */
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 20px;
    /* padding: 12px 20px; */
    font-family: "Montserrat";
    line-height: 20px;
    font-size: 14px;
    font-weight: 500;
    color: #000;
    border: 1px solid #D1D2D6;
}

.modal .form-group {
    width: 100%;
}

.form-wrapper {
    max-width: 800px;
    width: 100%;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.05);
    border: 1px solid #eeeaeb;
    padding: 30px;
}

.data-wrapper {

    width: 100%;
    border-radius: 10px;
    background-color: #fff;
    box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.05);
    border: 1px solid #eeeaeb;
    padding: 30px;
}

@media (min-width: 576px) {
    .modal-dialog {
        max-width: 600px;
        margin: 0 auto;
    }
}



.custom-check {
    border-radius: 0 !important;
    width: 20px;
    height: 20px;
    vertical-align: sub;
    margin-right: 10px;
}

.form-check-input.custom-check:checked {
    border-radius: 0;
    background-color: #198754;
    border-color: #198754;
}

.form-check-input.custom-check:focus {
    box-shadow: none;
}

.form-control:focus {
    border-color: #008300;
    box-shadow: 0 0 0 .25rem rgba(9, 107, 0, 0.25);
}

.add-row-btn {
    padding: 11px 32px;
    text-transform: uppercase;
    font-family: "Montserrat";
    border-radius: 5px;
    background-color: #198754;
    font-size: 12px;
    font-weight: 500;
}

.add-row-btn::before {
    content: url('../images/plus-circle.svg');
    max-width: 14px;
    max-height: 14px;
    width: 100%;
    margin-right: 10px;
    top: 2px;
    position: relative;
}

.form-submit-btn,
.theme-btn {
    background-color: #086037;
    padding: 10px 20px;
    text-transform: uppercase;
    font-family: "Montserrat";
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    margin-top: 8px;
}

.form-green-btn {
    background-color: #086037;
    padding: 10px 15px;
    text-transform: uppercase;
    font-family: "Montserrat";
    border-radius: 5px;
    font-size: 14px;
    font-weight: 500;
    margin: 2px 0;
}

/* .form-select::after{
    content: url("../images/dropdown.png");
} */
.form-wrapper ::placeholder {
    color: #BFBFBF;
    font-family: "Montserrat";
    line-height: 20px;
    font-size: 14px;
    font-weight: 500;
}

select::selection {
    background-color: #086037 !important;
    color: #fff;
}

select option:hover {
    background-color: #086037 !important;
    color: #fff;
}

.grow {
    margin: 80px 0;
}

.form-select:focus {
    /* border-color: #008300;
    box-shadow: 0 0 0 .25rem rgba(9, 107, 0, 0.25);*/
}

.modal-footer {
    border: none !important;
}


.package-group .delete-row {
    margin-top: 25px;
}

.delete {
    content: url('../images/trash.png');
    max-width: 20px;
    max-height: 20px;
    width: 100%;
    margin-right: 10px;
    /* top: 2px; */
    position: relative;
}

.edit {
    content: url('../images/pencil.png');
    max-width: 20px;
    max-height: 20px;
    width: 100%;
    margin-right: 10px;
    position: relative;
}


div.dt-container select.dt-input {
    margin-right: 10px;
}

.clear-btn {
    background-image: url(../images/clear.png);
    padding: 15px;
    background-position: center;
    background-repeat: no-repeat;
    margin-right: 10px;
    position: relative;
    position: absolute;
}

.total-package {
    font-family: "Montserrat";
    line-height: 20px;
    font-size: 12px;
    font-weight: 500;
}

.package-count {
    font-family: "Montserrat";
    line-height: 20px;
    font-size: 16px;
    font-weight: 700;
}

.form-label {
    font-family: "Montserrat";
    line-height: 20px;
    font-size: 14px;
    font-weight: 500;
    color: #000;
    margin-bottom: 5px;
}

.form-select {
    background-image: url(../images/down-arrow.png) !important;
    background-size: 20px;
    padding-top: 12px;
    padding-bottom: 12px;
    padding-left: 20px;
}

.calender {
    background-image: url(../images/calender.png);
    background-size: 30px;
    background-repeat: no-repeat;
    /* background-position: right center; */
    background-position: 98%;
    padding-right: 20px;
}

sup {
    top: 0px;
}

.form-check-input {
    margin-top: 0;
}

.final_amount {
    margin-left: 10px;
}

.kt-card-header {
    gap: 15px;
}


@media(max-width:767px) {
    .grow {
        margin: 30px 0;
    }

    .form-wrapper {
        padding: 30px 20px;
    }

    .data-wrapper {
        padding: 30px 20px;
    }

    .kt-card-header {
        justify-content: center;
    }

    .kt-card-title,
    .kt-modal-title {
        text-align: center;
    }
    .hero-content h1 {
  font-size: 36px;
  line-height: 1.3;
 
}
/*
    .form-label {
        font-size: 12px;
    }

    .form-select,
    .form-control,
    input,
    textarea {
        font-size: 12px;
    }

    input::placeholder {
        font-size: 12px;
    }

    input,
    textarea,
    select {
        font-size: 12px;
    }*/

    .shipping-rate-calculator .container .wrapper {
        padding: 20px;
    }


}





/* ----------------------------------------------------         Home       --------------------------------------------------------- */
.m-t-50 {
    margin-top: 50px;
}

.home-landing {
    background-color: #fff;
}

.home-landing .row,
.home-landing .col-lg-6,
.home-landing .col-lg-4 {
    /*padding: 10px;*/
}

.banner {
    background-color: #EDEDE5;
    padding: 20px 0 50px 0;

}

h3.subhead1 {
    font-size: 16px;
    font-weight: 600;
    text-transform: uppercase;
    line-height: 26px;
    color: #333333;
}

.hero-content h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 58px;
    color: #333333;
}

.hero-content p {
    max-width: 504px;
    width: 100%;
    /* font-size: 14px; */
    line-height: 24px;
    color: #333333;
}

.hero-bg img {
    max-width: 407px;
}

.hero-bg {
    background-image: url('../images/hero-bg.png');
    background-repeat: no-repeat;
    background-size: contain;
    background-position: top center;

}

.sec2 {
    z-index: 2;
    margin-top: -60px;
    padding: 10px;
}

.bg-light{
    /*padding: 15px;*/
    border: 1px solid #00000033;
    box-shadow: 0px 16px 40px 0px rgba(0, 0, 0, 0.1);
    transition: background 0.3s, border 0.3s, border-radius 0.3s, box-shadow 0.3s;
}

.sec2 .row .col-lg-4 {
    /*padding: 10px;*/
    border-right: 1px solid #0000004D;
}

.sec2 .row .col-lg-4:last-child {
    border-right: none;
}

.sec2 img {
    width: 50px;
    height: 50px;
    padding: 10px;
}

.sec2 h4 {
    font-size: 18px;
    font-weight: 700;
    color: #333333;
}

.home-landing p {
    font-size: 16px;
    line-height: 24px;
    color: #333333;
}

/* .sec3{
   
    padding-top: 50px;
} */
.sec3 .row {
   /* padding-right: calc(var(--bs-gutter-x) * .5);
    padding-left: calc(var(--bs-gutter-x) * .5);*/
}

.sec3 .tabcontent {
   /* padding: 20px 32px;*/

    border: 1px solid #d5d8dc;
    /* border-top: none; */
}

.sec3 .tabcontent h3,
.sec3 .tabcontents h3 {
    margin-bottom: 10px !important;
    font-size: 18px !important;
    font-weight: 500 !important;
    color: #5c7309;
}

.sec3 .tab {
    padding: 0;
    /* border-bottom: 1px solid #d5d8dc; */
}

.sec3 .tab button {
    border: none;
    /*border-bottom:1px solid #d5d8dc; */
    color: #5A6B18;
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
    padding: 15px 12px;
}

.sec3 .tab button:hover {
    color: #5A6B18;
    background-color: #ffffffff;
}

.sec3 .tablinks.active {
    border: 1px solid #d5d8dc;
}

.sec3 .tab button.active {
    /* background-color: #5A6B18; */
    background-color: #ffffffff;
    color: #5A6B18;
    border-bottom: none;
}

/* .sec4{
    margin:50px 0;
} */
.sec4 .card img {
    width: 30px;
}

.sec4 .card-group {
    gap: 20px;

}

.sec4 .card {
    border: 1px solid rgba(0, 0, 0, 0.175) !important;
    border-radius: 10px !important;
    border-left: 1px solid rgba(0, 0, 0, 0.175) !important;
    padding-top: 20px !important;
    padding-bottom: 20px !important;
    padding-left: 20px !important;
    padding-right: 20px !important;
}

.sec4 .card:hover {
    background-color: #D9E89B;
}

.sec4 h3 {
    margin: 15px 0;
    font-size: 20px;
    font-weight: 700;
    line-height: 30px;
    color: #333333;
}

.sec4 .card p {
    /* font-size: 14px; */
    line-height: 24px;
}

.card-countries,
.card-services {

    padding: 10px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
}

.card-countries h4,
.card-services h4 {
    font-size: 16px;
    line-height: 24px;
    color: #333333;
    margin-bottom: 0;
}

.card-countries img,
.card-services img {
    width: 55px;
    height: 55px;
    padding: 10px;
}

.card-countries .col-lg-4,
.card-services .col-lg-4 {

    padding: 10px;
}

.card-countries .col-lg-4 .d-flex,
.card-services .col-lg-4 .d-flex {
    background-color: #F6F5F9;
    padding: 10px;
    align-items: center;

}

.card-services .col-lg-4 .d-flex {
    padding: 0;
}

.home-landing .kt-card-title {
    font-size: 32px;
    line-height: 40px;
    font-weight: 400;
    margin-bottom: 20px;
}

.sec6 .shipping-logos {
    max-width: 389px;
    width: 100%;
}

.sec6 .shipping-girl {
    max-width: 418px;
    width: 100%;
}

.sec8 {
    background-image: url('../images/bg-ship.jpg');
    background-position: center;
    background-size: cover;
    background-repeat: no-repeat;
}

.sec8 .network .col-lg-6 .d-flex {
    background-color: #D9E89B;
    padding: 10px;
    align-items: center;
    border-radius: 5px;
}

.sec8 .network h4 {
    font-size: 16px;
    font-weight: 400;
    line-height: 23.4px;
    color: #5c7309;
}

.sec8 {
    padding: 80px 0;
}

.sec8 .card {
    padding: 40px;
    width: 100%;
    max-width: 600px;
    margin: 0 auto;
}

.network img {
    width: 24px;
    height: 24px;
    max-width: 100%;
    margin: 0 10px 0 0;
}

.network .col-lg-6 {
    padding: 0 10px;
}

.sec9 {
    background-color: #F2F2F5;
    padding: 50px 0;
}

.sec9 .about-cards {
    background-color: #fff;
    padding: 10px;
    border-radius: 12px;
    margin-bottom: 20px;
    align-items: center;
}

.sec10 {
    background-color: #000;
    padding: 80px 0;

}

.sec10 a {
    padding: 10px 20px;
    text-transform: uppercase;
    font-family: "Montserrat";
    border-radius: 5px;

    font-weight: 500;
    margin-top: 8px;
    font-size: 12px;
}

.sec9 .shipping2 {
    width: 100%;
    max-width: 347px;
}

.light-green-btn {
    background-color: #5A6B18;
    padding: 15px 30px;
    text-transform: uppercase;
    font-family: "Montserrat";
    border-radius: 2px;
    font-size: 14px;
    font-weight: 500;
    margin-top: 0;
    border: none;
    margin-right: 0;
    margin-left: 0;
}

.light-green-btn:hover,
.light-green-btn:focus {
    background-color: #475512;
}

.select2-container--default .select2-selection--single {
    border: 1px solid #D1D2D6;
    border-radius: 0.375rem;
}

.select2-container--default .select2-selection--single .select2-selection__rendered {
    padding: .5em .8em;
    padding-right: 2em;
}

.select2-container .select2-selection--single {
    height: auto !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow {
    background-image: url(../images/select-arrow.svg) !important;
    background-repeat: no-repeat;
    background-position: 95% center;
    z-index: 25;
    top: 15px !important;
    right: 15px !important;
    width: 20px !important;
    height: 15px !important;
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #086037 !important;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    border: none !important;
}




.tab-container {
    display: grid;
    grid-template-columns: 200px 1fr;
    gap: 10px;
}

/* Tabs (desktop) */
.tablink {
    background: #f5f5f5;
    border: none;
    padding: 12px;
    cursor: pointer;
    text-align: left;
    font-size: 16px;
    line-height: 26px;
    font-weight: 700;
    color: #5A6B18;
}

/* .tablink.active {
  background: #5A6B18;
  color: #fff;
} */

.tabcontents {
    display: none;
    padding: 15px;
    border: 1px solid #d5d8dc;
}

.tabcontents.active {
    display: block;
}

.tab-dsk {
    display: block;
}

.tab-mb {
    display: none;
}
/*=================-Start-767-=================*/
@media(max-width:767px) {
.hero-content h1 {
  font-size: 36px;
  line-height: 1.2;
}
.navbar-expand-lg .navbar-nav .nav-link {
    font-size: 14px;
 }
footer{
    display: none;
} 
.m-flex-direction-column{
    flex-direction: column;
}

}
/*=================-End-767-=================*/




@media(max-width:991px) {
.container, .container-md, .container-sm{
    max-width: 100%;
  }    
    .sec2 .row .col-lg-4 {
        border-right: none;
       /* padding: 10px;*/
        border-bottom: 1px solid #0000004D;
    }

    .sec2 .row .col-lg-4:last-child {
        border-bottom: none;
    }

    .sec3 .tab button {
        width: 100%;
    }

    .sec3 .tablinks.active {
        border-bottom: 1px solid #d5d8dc !important;
    }

    .about-cards:last-child {
        margin-bottom: 0;
    }

    .tab-mb {
        display: grid;
    }

    .tab-dsk {
        display: none;
    }

    .tab-container {
        grid-template-columns: 1fr;
    }

    .tablink {
        width: 100%;
        text-align: left;
        border-bottom: 1px solid #d5d8dc;
    }

    /* .tablink.active {
    background: #198754;
    color: #fff;
  } */

    /* .tabcontents {
    border-top: none;
  } */

    /* .tabcontents {
    border-top: none;
  } */
}

#existingListDiv .select2-container {
    width: 40% !important;
}

.form-check-input {
    margin-top: .25em;
    padding: 0;
}






/* ------------------------------------------------------------------- Home End ------------------------------------------------------------------------ */

.simple-tooltip {
    position: relative;
    cursor: pointer;
    background: #6c757d;
    color: #fff;
    padding: 2px 8px;
    border-radius: 50%;
    font-weight: bold;
    font-size: 12px;
}

.simple-tooltip::after {
    content: attr(data-tooltip);
    position: absolute;
    bottom: 130%;
    left: 50%;
    transform: translateX(-50%);
    background: #000;
    color: #fff;
    padding: 6px 10px;
    border-radius: 4px;
    white-space: nowrap;
    font-size: 12px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
    z-index: 9999;
}

.simple-tooltip::before {
    content: "";
    position: absolute;
    bottom: 120%;
    left: 50%;
    transform: translateX(-50%);
    border: 5px solid transparent;
    border-top-color: #000;
    opacity: 0;
    transition: opacity 0.2s ease;
}

.simple-tooltip:hover::after,
.simple-tooltip:hover::before {
    opacity: 1;
}