@import "variable.css";

/* Fonts
======================================================*/

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Black.woff') format('woff2'),
        url('../fonts/Inter-Black.woff') format('woff');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-ExtraBold.woff2') format('woff2'),
        url('../fonts/Inter-ExtraBold.woff') format('woff');
    font-weight: 800;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Bold.woff2') format('woff2'),
        url('../fonts/Inter-Bold.woff') format('woff');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Medium.woff2') format('woff2'),
        url('../fonts/Inter-Medium.woff') format('woff');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-SemiBold.woff2') format('woff2'),
        url('../fonts/Inter-SemiBold.woff') format('woff');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Regular.woff2') format('woff2'),
        url('../fonts/Inter-Regular.woff') format('woff');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Light.woff2') format('woff2'),
        url('../fonts/Inter-Light.woff') format('woff');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-Thin.woff2') format('woff2'),
        url('../fonts/Inter-Thin.woff') format('woff');
    font-weight: 100;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Inter';
    src: url('../fonts/Inter-ExtraLight.woff2') format('woff2'),
        url('../fonts/Inter-ExtraLight.woff') format('woff');
    font-weight: 200;
    font-style: normal;
    font-display: swap;
}



/* Reset CSS
======================================================*/
*,
*:after,
*:before {
    -webkit-box-sizing: border-box !important;
    -moz-box-sizing: border-box !important;
    box-sizing: border-box !important;
    vertical-align: top !important;
}

html {
    -webkit-text-size-adjust: none;
    -moz-text-size-adjust: none;
    text-size-adjust: none;
}

body,
html {
    background: var(--bs-body-bg) none no-repeat scroll top center;
    background-size: contain;
    color: var(--bs-body-color);
    font-family: var(--bs-body-font-family);
    font-size: var(--bs-body-font-size);
    line-height: var(--bs-body-line-height);
    font-weight: var(--bs-body-font-weight);
    margin: 0;
    padding: 0;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

figure,
picture {
    position: relative;
    display: inline-block;
    width: 100%;
    margin: 0px;
    overflow: hidden;
}

img {
    max-width: 100%;
    max-height: 100%;
    outline: none;
    border: none;
    height: auto;
    width: auto;
}

svg {
    max-width: 100%;
    height: auto;
}

.absolute-div {
    position: absolute;
    top: 0px;
    left: 0px;
    right: 0px;
    bottom: 0px;
    margin: auto;
}

.picture>img {
    position: absolute;
    top: 0px;
    left: 0px;
    object-fit: cover;
    object-position: center;
    width: 100%;
    height: 100%;
}

.object-fit {
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.object-fit img {
    opacity: 0;
}

strong,
b,
label {
    font-family: var(--bs-font-heading);
    font-weight: var(--bs-font-bold);
    margin-bottom: 0px;
}

ul,
ul li,
ol,
ol li {
    list-style: none;
    padding: 0px;
    margin: 0px;
    position: relative;
}

h1,
.h1,
h2,
.h2,
h3,
.h3,
h4,
.h4,
h5,
.h5,
h6,
.h6 {
    font-family: var(--bs-font-heading);
    font-weight: var(--bs-font-bold);
    color: var(--bs-black);
    padding: 0px;
    margin: 0px;
    width: 100%;
}

h1,
.h1 {
    font-size: var(--bs-font-size-h1);
    line-height: var(--bs-line-height-h1);
}

h2,
.h2 {
    font-size: var(--bs-font-size-h2);
    line-height: var(--bs-line-height-h2);
}

h3,
.h3 {
    font-size: var(--bs-font-size-h3);
    line-height: var(--bs-line-height-h3);
}

h4,
.h4 {
    font-size: var(--bs-font-size-h4);
    line-height: var(--bs-line-height-h4);
}

h5,
.h5 {
    font-size: var(--bs-font-size-h5);
    line-height: var(--bs-line-height-h5);
}

h6,
.h6 {
    font-size: var(--bs-font-size-h6);
    line-height: var(--bs-line-height-h6);
}

a,
.a,
a:focus,
.a:focus,
a:hover,
.a:hover {
    text-decoration: none;
    outline: none;
}

a,
.a {
    color: var(--bs-primary);
    display: inline-block;
    cursor: pointer;
}

a:hover,
.a:hover {
    color: var(--bs-primary);
}

p {
    font-size: var(--bs-body-font-size);
    line-height: var(--bs-body-line-height);
    color: var(--bs-body-color);
    margin: 0 0 24px;
}

p:empty {
    display: none;
}

label {
    margin-bottom: 0px;
}

small,
.small {
    font-size: var(--bs-small-font-size);
    line-height: var(--bs-small-line-height);
}

main {
    display: flex;
    flex: 1 1 auto !important;
    flex-direction: column;
}

section>.card,
.tab-pane>.card {
    min-height: 100%;
}

::-moz-selection {
    color: var(--bs-white);
    background: var(--bs-primary);
}

::selection {
    color: var(--bs-white);
    background: var(--bs-primary);
}

:hover,
:visited,
:active,
:focus {
    outline: none !important;
}

/*:last-child:not(img):not(.icon):not(.modal-dialog):not(.margin-child):not(.service-col), 
:only-child:not(img):not(.icon):not(.modal-dialog):not(.margin-child):not(.service-col) {
    margin-bottom: 0px;
}*/
article {
    width: 100%;
}

/* Common Css
======================================================*/
.transition,
::before,
::after,
img,
svg,
svg *,
a,
.a,
input,
textarea,
button,
select,
option,
.form-control,
.icon,
.button,
.form-label,
.select2-selection__arrow,
.select2-results__option,
.daterangepicker .ranges ul li,
.daterangepicker td.in-range,
.daterangepicker .calendar-table thead th,
body a.cke_button,
body a.cke_combo_button {
    -webkit-transition: all 0.4s ease-in-out 0s;
    -moz-transition: all 0.4s ease-in-out 0s;
    transition: all 0.4s ease-in-out 0s;
}

.box-shadow {
    -webkit-box-shadow: 10px 7px 24px #EFEDE5;
    -moz-box-shadow: 10px 7px 24px #EFEDE5;
    box-shadow: 10px 7px 24px #EFEDE5;
}

.rounded-circle,
.form-check .form-check-input[type="radio"]:after,
.form-switch .form-check-input::after,
.text-content ul:not(.gallery-block) li:before {
    -webkit-border-radius: 50%;
    -moz-border-radius: 50%;
    border-radius: 50%;
}

.rounded,
.dropdown-item {
    -webkit-border-radius: var(--bs-border-radius-xs) !important;
    -moz-border-radius: var(--bs-border-radius-xs) !important;
    border-radius: var(--bs-border-radius-xs) !important;
}

.rounded-sm,
.card,
.select2-dropdown,
.dropdown-menu {
    -webkit-border-radius: var(--bs-border-radius-sm);
    -moz-border-radius: var(--bs-border-radius-sm);
    border-radius: var(--bs-border-radius-sm);
}

.rounded-md {
    -webkit-border-radius: var(--bs-border-radius-md);
    -moz-border-radius: var(--bs-border-radius-md);
    border-radius: var(--bs-border-radius-md);
}

.rounded-lg {
    -webkit-border-radius: var(--bs-border-radius-lg);
    -moz-border-radius: var(--bs-border-radius-lg);
    border-radius: var(--bs-border-radius-lg);
}

.rounded-0,
.form-control,
.form-check-input[type="checkbox"] {
    -webkit-border-radius: 0;
    -moz-border-radius: 0;
    border-radius: 0;
}

.row {
    --bs-gutter-x: var(--bs-gutter);
    --bs-gutter-y: var(--bs-gutter);
}

.icon {
    display: flex;
    justify-content: center;
    align-items: center;
}

.small-container {
    max-width: 890px;
    margin-left: auto;
    margin-right: auto;
}

.btn.focus,
.btn:focus {
    box-shadow: none;
}

.border {
    border: 1px solid var(--bs-border-color) !important;
}

.menu-toggle.hamburger-menu {
    display: none;
}

/* Header Sticky */
.site-header.main-header {
    background: #fff;
    position: relative;
}

header.main-header.fixed .logo {
    padding: 15px 0;
}

.header--inner {
    width: 100%;
}

header.main-header.fixed a {
    color: #000;
}

.main-header a {
    font-style: normal;
    font-weight: 400;
    font-size: 14px;
    line-height: 20px;
    color: #9A9EA6;
}

.header--menu ul {
    line-height: 1;
}

.header--menu li {
    display: inline-block;
    padding: 0 20px;
    line-height: 1;
}

.header--menu {
    width: 100%;
}

.right-head {
    margin-left: auto;
}

.header--menu li.header-btn {
    padding: 0;
}

.header--menu .custom-logo-link {
    display: none;
}

.header-menu-inner {
    display: flex;
    align-items: center;
}

.item-effect a {
    overflow: hidden;
    position: relative;
    display: inline-block;
}

.item-effect a::before,
.item-effect a::after {
    content: '';
    position: absolute;
    width: 100%;
    left: 0;
}

.item-effect a::before {
    background-color: var(--bs-black);
    height: 2px;
    bottom: 0;
    transform-origin: 100% 50%;
    transform: scaleX(0);
    transition: transform .3s cubic-bezier(0.76, 0, 0.24, 1);
}

.item-effect a::after {
    content: attr(data-replace);
    height: 100%;
    top: 0;
    transform-origin: 100% 50%;
    transform: translate3d(0%, 200%, 0);
    transition: transform .3s cubic-bezier(0.76, 0, 0.24, 1);
    color: var(--bs-black);
}

.item-effect a:hover::before {
    transform-origin: 0% 50%;
    transform: scaleX(1);
}

.item-effect a:hover::after {
    transform: translate3d(0, 0, 0);
}

.item-effect a span {
    display: inline-block;
    transition: transform .3s cubic-bezier(0.76, 0, 0.24, 1);
}

.item-effect a:hover span {
    transform: translate3d(0, -200%, 0);
}

.header--menu {
    margin-right: auto;
    margin-left: 20px;
}

.logo {
    padding: 21px 0;
    width: 141px;
}

.header--menu .mobile-btn {
    display: none;
}

.fill-btn a {
    background: var(--bs-black);
    border: 1px solid var(--bs-black);
    color: #fff;
    padding: 13px 37px;
    border-radius: 10px;
    display: inline-block;
    font-size: 12px;
    font-weight: 700;
}

.border-btn a {
    margin-left: 8px;
    border: 1px solid var(--bs-black);
    color: var(--bs-black);
    padding: 13px 37px;
    border-radius: 10px;
    font-size: 12px;
    display: inline-block;
    font-weight: 700;
}

.right-head {
    display: flex;
    align-items: center;
}

.hero-content {
    position: absolute;
    left: 0;
    top: 0;
    max-width: 450px;
    margin-top: 72px;
}

.hero-inner {
    position: relative;
    margin-top: 50px;
}

.hero-image {
    text-align: right;
}

.hero-content h1 {
    font-size: 40px;
    line-height: 1.2;
    font-weight: 700;
    color: #000;
    margin-bottom: 40px;
}

.qoute-btn {
    background-color: var(--bs-black);
    color: #fff;
    padding: 17px 42px;
    font-size: 12px;
    font-weight: 600;
    line-height: 1.2;
    border: 0;
}

.qoute-btn i {
    vertical-align: middle !important;
}

.get_qoute_button {
    margin-top: 24px;
    position: relative;
}

.shipping-rate {
    margin: auto;
    margin-top: 0;
    background-image: url(../images/qoute-frame.png);
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
    position: relative;
    max-width: 950px;
    bottom: -140px;
    box-shadow: 0px 18px 26px rgba(177, 177, 177, 0.14);
    border-radius: 10px;
    box-shadow: 0px 0px 3px #444;
}

.shipping-rate-inner {
    max-width: 480px;
    margin: auto;
    padding: 40px 15px;
}

.shipping-rate-inner h2 {
    font-size: 24px;
    font-weight: bold;
    color: #000;
    margin-bottom: 8px;
}

.shipping-from {
    display: inline-block;
    width: calc(50% - 2px);
    padding: 0 10px;
}

.shipping-from:first-of-type {
    padding-left: 0;
}

.shipping-from+.shipping-from {
    padding-right: 0;
}

.shipping-from input {
    width: 100%;
    height: 49px;
    padding: 15px;
    position: relative;
    border: 1px solid #D9D9D9;
    border-radius: 10px;
    /* background: url(../images/down-arrow.svg) no-repeat center right 10px; */
}

.shipping-from input::-webkit-input-placeholder {
    font-size: 13px;
    color: #000;
    font-weight: 400;
}

.shipping-from input:-ms-input-placeholder {
    font-size: 13px;
    color: #000;
    font-weight: 400;
}

.shipping-from input::placeholder {
    font-size: 13px;
    color: #000;
    font-weight: 400;
}

.shipping-from input>.CaptionCont {
    padding: 15px;
}

.SumoSelect.open .search-txt {
    padding: 15px;
    background: transparent;
}

.SumoSelect>.optWrapper>.options li.opt {
    padding: 10px;
}

.SumoSelect.open>.optWrapper {
    top: 50px;
}

.shipping-from .SumoSelect>.CaptionCont {
    border-radius: 10px;
    border-color: #D9D9D9;
}

.shipping-from:last-of-type .SumoSelect>.CaptionCont {
    margin-right: 0;
}

.partner-worked {
    padding: 80px 0;
}

.partner-slider {
    margin-top: 30px;
}

.partner-slider .slick-slide img {
    margin: 0 30px;
    filter: grayscale(1);
    height: 60px;
}

.partner-slider .partner-slide.slick-slide.slick-current.slick-active img {
    filter: none;
}

.shipping-location {
    background-image: url(../images/flag-black-bg.png);
    background-repeat: no-repeat;
    background-size: 100% 100%;
    padding: 110px 0;
}

.country-image {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    text-align: center;
}

.flag-images {
    margin-left: 20px;
}

.flag-images h6 {
    margin-top: 25px;
}

.service-box {
    border: 1px solid #E4E4E4;
    padding: 20px;
    height: 100%;
    border-radius: 10px;
}

.service-icon {
    height: 54px;
    display: flex;
    align-items: center;
    margin-bottom: 16px;
}

.service-text p {
    font-size: 11px;
    color: #555555;
}

.service-text h3 {
    margin-bottom: 8px;
}

.service-col {
    margin-bottom: 24px;
}

.our-service {
    padding: 80px 0;
}

.our-service .heading-box {
    margin-bottom: 30px;
}

.shipped-step {
    padding: 20px 0 60px;
}

.step-content-box h2 {
    font-size: 26px;
}

.step-content-box {
    width: 100%;
    max-width: 430px;
}

.step-content-box p {
    color: #000;
}

.step-content-box .accordion {
    margin-top: 40px;
    border: 1px solid rgba(0, 0, 0, 0.10);
    border-radius: 10px;
    margin-bottom: 0;
}

.step-content-box .accordion-item {
    border-bottom: 1px solid rgba(0, 0, 0, 0.10);
}

.step-content-box .card-header h2 .btn {
    padding: 24px 20px 8px;
    cursor: pointer;
    color: #000;
    font-size: 16px;
    font-weight: bold;
}

.step-content-box .card-header h2 .btn.collapsed {
    padding-bottom: 24px;
}

.step-content-box .card-header {
    background: #fff;
    border: 0;
    padding: 0;
}

.step-content-box .card-body {
    border: 0;
    padding-top: 0;
}

.qoute-button {
    max-width: 340px;
    margin-left: auto;
    margin-top: 0;
}

.qoute-button .qoute-btn {
    margin-top: 0;
    border-radius: 10px;
}

.accordion-content ul {
    padding: 0 20px;
}

.accordion-content ul li {
    color: #000;
    list-style: disc;
}

.stepside-image {
    text-align: right;
}

.qoute-box {
    padding: 80px 75px 80px 75px;
}

.qoute-section.qoute-box .elementor-container {
    box-shadow: 0 18px 26px rgb(177 177 177 / 14%);
}

.testimonial {
    font-family: 'Playfair Display', serif;
    font-size: 20px;
    line-height: 1.2;
    color: #000000;
    text-align: center;
    margin-bottom: 50px;
}

.author-detail {
    display: flex;
    align-items: center;
    justify-content: center;
}

.testimonial-section {
    padding: 40px 0;
}

.author-name {
    font-size: 14px;
    font-weight: bold;
    color: #000;
    margin-bottom: 0;
}

.author-text {
    margin-left: 16px;
}

.author-post {
    font-size: 13px;
}

.qoute-image {
    text-align: center;
    margin-bottom: 50px;
}

.qoute-image img {
    margin: auto;
}

.faq-section {
    background: #F9F9F9;
    padding: 80px 0;
}

.faq-section .heading-box {
    max-width: 930px;
    margin: auto;
}

.faq-section .accordion {
    max-width: 730px;
    margin: 40px auto;
    padding: 0 15px;
}

.faq-section .accordion>.card {
    margin-bottom: 8px;
    border: 1px solid rgb(186 186 186 / 50%);
    border-radius: 10px;
}

.faq-section .accordion>.card>.card-header {
    margin-bottom: 0;
    border: 0;
    background: none;
    padding: 16px 20px;
}

.faq-section .accordion>.card>.card-header .btn {
    display: flex;
    align-items: center;
    font-size: 16px;
    font-weight: bold;
    color: #000;
    padding: 0;
}

.faq-section .accordion>.card .card-body {
    padding: 0 20px 16px;
    color: #555555;
}

.faq-count {
    margin-right: 10px;
}

.faq-section .accordion>.card>.card-header .btn:hover {
    text-decoration: none;
}

.faq-section .accordion>.card>.card-header .btn .plus-sign {
    margin-left: auto;
    background: #000;
    padding: 10px;
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    border-radius: 20px;
    transform: rotate(45deg);
    width: 36px;
    height: 36px;
}

.faq-section .accordion>.card>.card-header .btn .plus-sign i {
    width: 18px;
}

.faq-section .accordion>.card>.card-header .btn.collapsed .plus-sign {
    transform: rotate(0);
    background: none;
    color: #000;
}

.faq-more-btn {
    background: #000;
    color: #fff;
    padding: 17px 24px;
    font-size: 12px;
}

.subscribe-form {
    max-width: 430px;
    margin: 0 auto;
    border-radius: 5px;
}

.subscribe-form input[type="email"] {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 0;
    width: calc(100% - 145px);
    height: 49px;
    color: #444;
}

.subscribe-form form,
.subscribe-form .subscribe-fields-wrap {
    display: flex;
    width: 100%;
    align-items: center;
}

.subscribe-form form .qoute-btn,
.subscribe-form .subscribe-fields-wrap .qoute-btn {
    padding: 17px 35px;
    font-size: 12px;
    margin-top: 0;
    border-radius: 0 4px 4px 0;
    border: 0;
}

.shipment-qoute {
    padding: 92px 0 117px;
}

.main-footer {
    background-color: #000000;
    padding: 40px 20px;
}

.copyright {
    padding-top: 30px;
    margin-top: 30px;
    position: relative;
}

.copyright::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background-image: repeating-linear-gradient(-10deg, #6c6c6c, #6C6C6C 13px, transparent 13px, transparent 26px, #6C6C6C 26px), repeating-linear-gradient(80deg, rgb(108 108 108 / 70%), rgb(108 108 108 / 70%) 13px, transparent 13px, transparent 26px, #6C6C6C 26px), repeating-linear-gradient(170deg, #6C6C6C, #6C6C6C 13px, transparent 13px, transparent 26px, #6C6C6C 26px), repeating-linear-gradient(260deg, #6C6C6C, #6C6C6C 13px, transparent 13px, transparent 26px, #6C6C6C 26px);
    background-size: 1px 0%, 100% 1px, 1px 0%, 0% 1px;
    background-position: 0 0, 0 0, 100% 0, 0 100%;
    background-repeat: no-repeat;
}

.copyright p {
    color: #9A9EA6;
}

.social-link ul li {
    display: inline-block;
    padding-right: 20px;
}

.footer-logo {
    margin-bottom: 24px;
}

.footer-wrapper h3 {
    font-size: 18px;
    color: #fff;
    margin-bottom: 24px;
}

.footer-wrapper p {
    color: #9A9EA6;
}

.footer-link li a {
    color: #9A9EA6;
}

.footer-link li {
    margin-bottom: 20px;
}

.faq-accordian .elementor-accordion .elementor-accordion-item {
    margin-bottom: 8px;
    border: 1px solid rgb(186 186 186 / 50%) !important;
    border-radius: 8px;
}

.faq-accordian .elementor-accordion .elementor-tab-content {
    border-top: 0;
}

.wpcf7-form-control,
#no-qoutes-found-form .form-control {
    width: 100%;
    font-size: 13px;
    padding: 15px;
    line-height: 19px;
    border: 1px solid #D9D9D9;
    border-radius: 4px;
    color: #000;
    height: auto;
}

input.wpcf7-form-control.wpcf7-submit,
#no-qoutes-found-form .request-submit {
    display: inline-block;
    width: auto;
    padding: 17px 24px;
    background: #000;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    margin-top: 24px;
    position: relative;
}

.contact-us-form .row {
    margin-bottom: 16px;
}

.contact-us-list .elementor-icon-list-icon {
    width: 40px;
}

.contact-us-list.elementor-widget.elementor-widget-icon-list .elementor-icon-list-icon svg {
    margin: 0;
}

.contact-us-list.elementor-widget .elementor-icon-list-icon+.elementor-icon-list-text {
    width: calc(100% - 40px);
    padding-left: 0;
}

.faq-section .faq-page-accordian .accordion {
    margin-top: 0;
    ;
}

.mission-list ul {
    padding-left: 25px;
}

.mission-list ul li {
    list-style: disc;
    color: #5C5C5C;
}

.contact-social-icon .social-link ul li {
    background-color: #000;
    padding: 10px;
    border-radius: 25px;
    margin-right: 22px;
}

.contact-social-icon .social-link ul {
    padding-top: 40px;
}

.company-heading {
    margin-bottom: 8px !important;
}

.qoute-box .qoute-box-heading {
    margin-bottom: 0 !important;
}

.step-accordian .elementor-accordion {
    border-radius: 10px;
    overflow: hidden;
    background: #fff;
}

.step-accordian .elementor-accordion .elementor-accordion-item {
    border: 1px solid rgba(0, 0, 0, 0.14) !important;
    position: relative;
    padding: 20px 24px;
}

.step-accordian .elementor-accordion .elementor-accordion-item:first-of-type {
    border-radius: 10px 10px 0px 0px !important;
}

.step-accordian .elementor-accordion .elementor-accordion-item:last-of-type {
    border-radius: 0px 0px 10px 10px !important;
}

.step-accordian .elementor-accordion .elementor-accordion-item .elementor-tab-content {
    padding-top: 8px;
}

.step-accordian .elementor-accordion ul {
    padding-left: 20px;
}

.step-accordian .elementor-accordion ul li {
    list-style: disc;
    color: #6C6C6C;
}

.elementor-tab-title:after {
    content: "";
    background: #000;
    position: absolute;
    top: auto;
    width: 0%;
    height: 4px;
    left: 0;
    bottom: -1px;
    transition: width 0.5s ease;
    ;
}

.elementor-tab-title.elementor-active:after {
    content: "";
    width: 50%;
}

.elementor-tab-title:before {
    content: "";
    background: #D9D9D9;
    position: absolute;
    top: auto;
    width: 0%;
    height: 3px;
    left: 0;
    bottom: 0;
    transition: width 1s ease;
}

.elementor-tab-title.elementor-active:before {
    content: "";
    width: 100%;
}

.achievement-box {
    margin-bottom: -85px !important;
}

.our-team-text {
    background: #E4E4E4;
    padding: 24px;
    border-radius: 0px 0 10px 10px;
}

.our-team-text h3 {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 8px;
}

.our-team-pic {
    height: 254px;
    width: 100%;
    border-radius: 10px 10px 0 0;
}

.our-team-pic img {
    height: 100%;
    width: 100%;
    object-fit: cover;
    overflow: hidden;
    border-radius: 10px 10px 0 0;
}

.our-team-element {
    margin-top: 20px;
}

.our-team-col {
    padding: 0 5px;
    margin-bottom: 10px;
}

.header--menu li.current_page_item a {
    color: #000;
    font-weight: 600;
}

.category-date {
    display: flex;
    align-items: center;
    padding: 32px 0 16px;
}

.blog-post-category {
    color: #F5556E;
    font-size: 13px;
    text-transform: uppercase;
    font-weight: 500;
    line-height: 12px;
    letter-spacing: 1px;
}

span.seperator {
    width: 15px;
    height: 1px;
    background: #DEDEDE;
    margin: 0 8px;
}

.blog-post-title {
    font-size: 16px;
    color: #121212;
}

.blog-post-date {
    font-size: 13px;
    line-height: 12px;
    letter-spacing: 0.5px;
    color: rgb(18 18 18 / 30%);
}

.blog-post-image img {
    border-radius: 10px;
}

.sailon-blog-loop {
    margin-bottom: 30px !important;
}

.first-blog.sailon-blog-loop {
    display: none;
}

.second-third-blog.sailon-blog-loop .blog-post-content {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    height: 390px;
}

.second-third-blog.sailon-blog-loop .blog-post-content .blog-post-image img {
    border-radius: 10px;
    height: 390px;
    object-fit: cover;
    object-position: center;
}

.second-third-blog.sailon-blog-loop .blog-text-content {
    position: absolute;
    z-index: 1;
    background: linear-gradient(180deg, rgb(0 0 0 / 0%), rgb(0 0 0 / 70%), rgb(0 0 0));
    bottom: 0;
    width: 100%;
    left: 0;
    padding: 30px;
}

.second-third-blog.sailon-blog-loop .blog-post-title,
.second-third-blog.sailon-blog-loop .blog-post-category {
    color: #fff;
}

.second-third-blog.sailon-blog-loop .blog-post-date {
    color: #fff;
    opacity: 0.3;
}

.post-select-tabs li {
    display: inline-block;
    padding: 10px 20px;
    background: transparent;
    background-image: linear-gradient(90deg, white, white), linear-gradient(90deg, #F5556E, #C91632);
    background-clip: padding-box, border-box;
    background-origin: border-box;
    border: 1px solid transparent;
    border-radius: 1.75rem;
    margin-right: 8px;
    cursor: pointer;
    margin-bottom: 8px;
}

.post-select-tabs li span {
    background-image: linear-gradient(90deg, #F5556E, #C91632);
    background-clip: text;
    -webkit-background-clip: text;
    color: transparent;
    font-weight: 500;
    font-size: 16px;
    line-height: 22px;
}

.post-select-tabs li.active {
    background: linear-gradient(116.1deg, #F5556E 0%, #C91632 100%);
}

.post-select-tabs li.active span {
    color: #FFFFFF;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
    background-clip: unset;
    border: 0;
}

.post-select-tabs {
    text-align: center;
    padding: 24px 0 50px;
}

.achievement-count .achievent-col {
    position: relative;
}

.achievement-count .achievent-col::after {
    content: "";
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1px;
    height: 32px;
    background-color: #BABABA;
    opacity: 0.5;
}

.achievement-count .achievent-col:last-of-type::after {
    display: none;
}

.flag-image-box p {
    font-size: 18px;
    font-weight: 600;
    color: #fff;
}

.custom-white-logo-link {
    display: none;
}

.navigation.post-navigation,
.comments-area {
    display: none;
}

.post-detail .post-thumbnail {
    height: 445px;
    width: 100%;
    position: relative;
}

.post-detail .post-thumbnail img {
    width: 100%;
    object-fit: cover;
    object-position: center top;
}

.post-detail .post-thumbnail:before {
    content: "";
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) 0%, rgba(0, 0, 0, 0.64) 100%);
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1;
    height: 100%;
}

.post-detail header.entry-header {
    position: absolute;
    z-index: 2;
    margin-left: auto;
    width: 1050px;
    left: 0;
    margin-right: auto;
    right: 0;
    padding: 0 15px;
}

.post-detail header.entry-header .entry-title {
    padding-top: 88px;
    max-width: 50%;
    color: #fff;
}

.post-detail .entry-content {
    max-width: 1050px;
    width: 100%;
    margin: auto;
    padding: 60px 15px;
}

.post-detail {
    width: 100%;
}

.login-sign-inner {
    max-width: 360px;
    padding: 32px 30px;
}

.login-sign-inner input,
.lost_reset_password input {
    width: 100%;
    padding: 15px 20px;
    font-size: 13px;
    color: #000;
    font-weight: 400;
    border: 1px solid #D9D9D9;
    border-radius: 8px;
}

.login-sign-inner ::-webkit-input-placeholder {
    font-size: 13px;
    color: #000;
    font-weight: 400;
}

.login-sign-inner :-ms-input-placeholder {
    font-size: 13px;
    color: #000;
    font-weight: 400;
}

.login-sign-inner::placeholder {
    font-size: 13px;
    color: #000;
    font-weight: 400;
}

.login-sign-inner button[type=submit] {
    background: #000;
    width: 100%;
    color: #FFFFFF;
    font-size: 12px;
    font-weight: bold;
    line-height: 15px;
    border: 0;
    padding: 14px 20px;
}

.login-sign-inner .form-row {
    margin-left: 0;
    margin-right: 0;
}

.already-account-p p {
    font-size: 15px;
    color: #000;
    font-weight: 500;
    line-height: 21px;
    text-align: center;
}

.already-account-p p a {
    color: #2F80ED;
    font-weight: 600;
}

.error {
    color: red;
}

.lost_password a {
    color: #2F80ED;
    font-weight: 600;
    font-size: 12px;
}

.login-sign-inner .woocommerce-form__input-checkbox {
    width: auto;
}

.login-sign-inner .woocommerce-form__label-for-checkbox {
    line-height: 1;
}

p.lost_password {
    margin-left: auto;
}

.remember-row {
    align-items: center;
}

.login-sign-inner .form-row.form-row-last {
    margin-bottom: 8px;
}

.form-row.remember-row {
    margin-bottom: 32px;
}

.or-login {
    text-align: center;
    margin: 32px 0 22px;
    font-size: 14px;
    position: relative;
}

.or-login:before {
    content: "";
    position: absolute;
    width: calc(50% - 55px);
    height: 1px;
    background: #E8ECF4;
    left: 0;
    top: 50%;
}

.or-login:after {
    content: "";
    position: absolute;
    width: calc(50% - 55px);
    height: 1px;
    background: #E8ECF4;
    right: 0;
    top: 50%;
}

.blog-content-aside {
    max-width: 1050px;
    margin: auto;
    display: flex;
    padding: 0 15px;
    padding-bottom: 100px;
}

.blog-detail-wrap .entry-content {
    padding: 30px;
    box-shadow: 0 18px 26px rgb(0 0 0 / 8%);
    margin-top: -110px;
    z-index: 0;
    background: #fff;
    border-radius: 8px;
    width: 62%;
}

.entry-content p,
.entry-content li,
.entry-content li a {
    color: #000;
    margin-bottom: 20px;
}

.blog-content-aside aside {
    padding: 20px;
    width: 38%;
    margin-top: 20px;
}

.blog-content-aside .blog-post-date {
    color: #5C5C5C;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid rgb(186 186 186 / 45%);
    font-size: 14px;
}

.top-banner-title .blog-banner .post-thumbnail {
    height: 445px;
    width: 100%;
}

.top-banner-title .blog-banner img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.top-banner-title .blog-detail-title {
    display: flex;
    justify-content: center;
    text-align: center;
    max-width: 1050px;
    margin: auto;
    padding: 0 15px;
    position: absolute;
    left: 0;
    right: 0;
    top: 90px;
}

.top-banner-title .blog-detail-title h1 {
    color: #fff;
    font-size: 48px;
    max-width: 700px;
    line-height: 50px;
}

.blog-detail-wrap .top-banner-title {
    position: relative;
}

.blog-detail-wrap .top-banner-title:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) -61.62%, rgba(0, 0, 0, 0.64) 100%);
}

.second-third-blog.sailon-blog-loop .blog-post-image .post-thumbnail:before {
    content: "";
    width: 100%;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0) -61.62%, rgba(0, 0, 0, 0.64) 100%);
}

.latest-posts-item .preview-image {
    width: 148px;
    height: 100px;
    margin-right: 10px;
    border-radius: 3px;
    overflow: hidden;
}

.latest-posts-item .preview-image img {
    width: 100%;
    object-fit: cover;
    object-position: center;
    height: 100%;
}

.latest-posts-item {
    display: flex;
    align-items: center;
    margin-bottom: 32px;
}

.latest-posts-item .latest-posts-item-text {
    width: calc(100% - 160px);
}

.blog-content-aside .blog-post-date .post-category {
    position: relative;
    padding-left: 13px;
}

.blog-content-aside .blog-post-date .post-category:before {
    content: "";
    width: 5px;
    height: 5px;
    background: rgb(92 92 92 / 50%);
    position: absolute;
    border-radius: 10px;
    margin-right: 8px;
    left: 0;
    top: 6px;
}

.latest-posts-item .blog-post-category {
    margin-top: 10px;
}

.line-logo {
    height: 44px;
    margin-bottom: 16px;
}

.quote-box .qoute-box-inner {
    background-color: #fff;
    padding: 24px;
    border-radius: 20px;
    border: 1px solid #EBEBEB;
}

.quotes-box-wrap {
    margin-left: -15px;
    margin-right: -15px;
}

.qoute-box-inner h3 {
    font-size: 24px;
    font-weight: bold;
    line-height: 29px;
    margin-bottom: 4px;
}

.shipment-details {
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    padding-top: 24px;
}

.shipment-details li {
    font-size: 16px;
    color: #5C5C5C;
    padding-bottom: 24px;
    display: flex;
}

.shipment-details li .ship-value {
    color: #000;
    font-weight: 600;
    margin-left: auto;
}

.request-booking {
    background: #000;
    border: #000;
    padding: 17px 26px;
    font-size: 12px;
    font-weight: 600;
}

.price-breakup {
    text-align: center;
    padding: 17px 20px;
    font-size: 14px;
    font-weight: 600;
    color: #2F80ED;
}

.quotes-heading-section {
    margin-bottom: 48px;
}

.sorce-dest-ports li {
    display: inline-block;
}

.quotes-list-wrapper {
    padding: 38px 0 70px;
}

.quote-box {
    margin-bottom: 30px;
}

.modal-header p {
    margin-bottom: 4px;
    line-height: 1.1;
}

.modal-header {
    display: inline-block;
}

.price-breakout-list li {
    display: flex;
    justify-content: space-between;
}

.price-list-wrap,
.total-amount-wrap {
    display: flex;
    justify-content: space-between;
}

.middle-section li {
    display: inline-block;
    padding: 0 40px;
    position: relative;
}

.middle-section li:first-of-type {
    padding-left: 0;
}

.middle-section li:last-of-type {
    padding-right: 0;
}

.middle-section li .item-heading {
    display: block;
    margin-bottom: 8px;
    line-height: 1.1;
}

.middle-section li .item-value {
    color: #000;
    font-size: 16px;
    font-weight: bold;
}

.amount-section .price-list-wrap {
    padding: 10px 0;
    border-bottom: 1px dashed rgba(0 0 0 / 10%);
}

.price-breakout-list li {
    margin-top: 14px;
}

.modal-header,
.modal-body,
.modal-footer {
    padding: 0;
}

.modal-content {
    padding: 40px;
    border-radius: 10px;
}

.middle-section {
    padding: 14px 0;
}

.modal-title {
    font-size: 24px;
    font-weight: bold;
    line-height: 1.2;
    margin-bottom: 8px;
}

.source-destination {
    font-weight: 500;
}

.middle-section li:after {
    content: "";
    width: 1px;
    height: 12px;
    background-color: rgb(0 0 0 / 10%);
    position: absolute;
    right: 0;
    top: 15px;
}

.middle-section li:last-of-type:after {
    height: 0;
}

.price-breakout-list li,
.amount-section .price-list-wrap {
    font-size: 15px;
}

.amount-section .item-right,
.amount-section .item-head-right {
    color: #000;
    font-weight: 600;
}

.amount-section .item-left,
.amount-section .item-head-left {
    font-weight: 400;
}

.modal .btn {
    background: #000;
    border: #000;
    padding: 17px 26px;
    font-size: 12px;
    font-weight: 600;
}

.modal-footer {
    justify-content: flex-start;
    margin-top: 24px;
    padding-top: 24px;
}

.modal-header .close {
    position: absolute;
    top: 0;
    right: 0;
    opacity: 1;
    color: #000;
}

.modal-header {
    position: relative;
    padding-bottom: 24px;
}

.modal {
    background: rgba(0, 0, 0, 0.7);
}

.total-amount-wrap .item-head-left {
    font-weight: 500;
}

.total-amount-wrap {
    font-size: 24px;
    padding: 24px 0 0;
    margin-top: 24px;
    border-top: 1px dashed rgba(0 0 0 / 10%);
    color: #000;
}

.source-from:after {
    content: "\f061";
    font-family: "Font Awesome 5 Free";
    font-size: 14px;
    display: inline-block;
    font-weight: 900;
    padding-left: 5px;
    vertical-align: middle !important;
}

.source-to:after {
    content: "";
    width: 5px;
    height: 5px;
    border-radius: 10px;
    background: #5C5C5C;
    display: inline-block;
    margin-left: 5px;
    vertical-align: middle !important;
}

.modal-body .form-control {
    width: 100%;
    font-size: 13px;
    padding: 15px;
    line-height: 19px;
    border: 1px solid #D9D9D9;
    border-radius: 8px;
    color: #000;
    height: 49px;
    appearance: none;
}

.request-booking-form-modal .modal-header {
    padding-bottom: 40px;
    border-bottom: 0;
}

.request-booking-form-modal .form-row {
    margin-bottom: 10px;
}

.request-booking-form-modal .modal-body .close {
    float: none;
    display: inline-block;
    font-size: 14px;
    font-weight: 600;
    color: #2F80ED;
    opacity: 1;
    padding: 19px 24px;
}

.request-booking-form-modal .request-submit {
    max-width: 256px;
    width: 100%;
    position: relative;
}

.modal.show .modal-dialog,
.modal.show .modal-dialog {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 100%;
    margin: 0;
    padding: 15px;
}

.modal-body .form-control::placeholder {
    font-size: 13px;
    line-height: 19px;
    color: #000;
    appearance: none;
}

.modal-body .form-control::-webkit-input-placeholder {
    font-size: 13px;
    line-height: 19px;
    color: #000;
    appearance: none;
}

.modal-body .form-control::-moz-placeholder {
    font-size: 13px;
    line-height: 19px;
    color: #000;
    appearance: none;
}

.modal-body .form-control:-ms-input-placeholder {
    font-size: 13px;
    line-height: 19px;
    color: #000;
    appearance: none;
}

.modal-body .form-control:-moz-placeholder {
    font-size: 13px;
    line-height: 19px;
    color: #000;
    padding: 15px;
    appearance: none;
}

.modal-body .form-group {
    padding-right: 15px;
    padding-left: 15px;
}

.modal-body .form-group:first-of-type {
    padding-left: 0;
}

.modal-body .form-group:last-of-type {
    padding-right: 0;
}

.request-booking-form-modal .modal-body .form-group:first-of-type {
    padding-left: 15px;
}

.request-booking-form-modal .modal-body .form-group:last-of-type {
    padding-right: 15px;
}

.thankyou-icon {
    text-align: center;
    margin-bottom: 46px;
}

.thank-you-modal-wrap {
    text-align: center;
}

.thank-you-modal-wrap h2 {
    margin-bottom: 8px;
}

.thank-you-modal-wrap .action-btn-wrap {
    margin-top: 32px;
}

.thank-you-modal-wrap .action-btn-wrap .btn {
    max-width: 256px;
    width: 100%;
}

.request-booking-form-modal .info {
    display: block;
}

/* Chrome, Safari, Edge, Opera */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}

input:focus {
    box-shadow: none !important;
    border-color: #D9D9D9 !important;
}

/* Firefox */
.modal input[type=number] {
    -moz-appearance: textfield;
}

.thank-you-modal .modal-header {
    border-bottom: 0;
}

.select-volume-form .SumoSelect {
    width: 100%;
}

.SumoSelect>.CaptionCont {
    padding: 15px;
    height: 49px;
    border-radius: 8px;
    border-color: #D9D9D9;
}

.SumoSelect>.CaptionCont>label>i {
    top: 17px;
    margin: 0 15px;
    bottom: auto;
    right: 0;
    background-image: url(../images/down-arrow.svg);
    left: auto;
}

.SumoSelect>.CaptionCont span {
    font-size: 13px;
    color: #000;
    line-height: 18px;
}

.select-volume-modal .request-submit {
    max-width: 256px;
    width: 100%;
    margin-top: 10px;
    position: relative;
}

.select-volume-modal .request-submit i {
    vertical-align: middle !important;
    margin-left: 4px;
}

.lcl-quotes-listing {
    padding: 24px;
    border-radius: 20px;
    border: 1px solid #EBEBEB;
    background: #FFF;
    box-shadow: 0px 18px 26px 0px rgba(0, 0, 0, 0.04);
}

.select-volume-modal .modal-header {
    border-bottom: 0;
}

.select-volume-modal .source-to:after {
    display: none;
}

.lcl-quotes-listing .action-btn-wrap {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid #dee2e6;
}

.get_qoute_button .qoute-btn {
    border-radius: 4px;
}

.select-volume-modal .modal-content {
    background-color: #fff;
    background-image: url(../images/volume-select-frame.png);
    background-position: bottom right;
    background-repeat: no-repeat;
}

.register .woocommerce-privacy-policy-text {
    margin-bottom: 16px;
}

.Other-pages-calculate .shipping-rate {
    bottom: 0;
}

.reach-out-form {
    max-width: 822px;
    margin: auto;
    border-radius: 20px;
    overflow: hidden;
}

.reachout-form-wrapper .reachout-submit {
    text-align: center;
}

.reachout-form-wrapper .reachout-submit input.wpcf7-form-control.wpcf7-submit {
    margin-top: 40px;
}

.wpcf7-spinner {
    display: none;
}

.woocommerce-MyAccount-content {
    padding: 20px;
    box-shadow: 0 0 10px rgb(0 0 0 / 20%);
    border-radius: 10px;
    border: 2px solid #ccc;
}

.woocommerce-MyAccount-content .woocommerce-Input {
    width: 100%;
    font-size: 13px;
    padding: 15px;
    line-height: 19px;
    border: 1px solid #D9D9D9;
    border-radius: 4px;
    color: #000;
}

.woocommerce-MyAccount-content button.woocommerce-Button.button {
    display: inline-block;
    width: auto;
    padding: 17px 24px;
    background: #000;
    color: #fff;
    font-size: 12px;
    font-weight: 600;
    margin-top: 24px;
}

nav.woocommerce-MyAccount-navigation {
    border-radius: 8px;
    border: 1px solid;
    overflow: hidden;
}

.woocommerce-MyAccount-navigation-link a {
    padding: 15px;
    color: #000;
}

.woocommerce {
    padding: 40px 0;
}

.password-input {
    width: 100%;
}

.woocommerce form .show-password-input,
.woocommerce-page form .show-password-input {
    top: 15px;
}

.woocommerce-MyAccount-content fieldset {
    padding: 20px 0 0;
}

.woocommerce-MyAccount-content fieldset legend {
    padding: 20px 0 0;
}

.woocommerce-MyAccount-content label {
    font-weight: 500;
}

.woocommerce-MyAccount-navigation-link {
    display: inline-block;
    width: 100%;
}

.woocommerce-MyAccount-navigation-link.is-active {
    background: #000;
}

.woocommerce-MyAccount-navigation-link.is-active a {
    color: #fff;
}

.woocommerce-MyAccount-navigation-link a {
    display: inline-block;
    width: 100%;
}

.Privacy-policy-wrapper h3 {
    margin-bottom: 8px;
}

.Privacy-policy-wrapper a {
    color: #2F80ED;
}

.right-head .dropdown-content {
    display: none;
}

.right-head .dropdown-content.show {
    display: inline-grid;
    position: absolute;
    top: 110%;
    right: 0;
    background: #000;
    padding: 10px;
    z-index: 999;
    border-radius: 10px;
    width: 100%;
}

.right-head .dropdown-content li {
    padding: 10px;
}

.right-head .dropdown-content a {
    padding: 0;
    font-weight: 500;
}

.right-head .dropdown-content.show i {
    color: #fff;
    padding-top: 4px;
    margin-right: 5px;
    font-size: 15px;
}

.author-image {
    width: 50px;
    height: 50px;
    border-radius: 100%;
    overflow: hidden;
}

.author-image img {
    object-fit: cover;
    width: 100%;
    height: 100%;
}

.select2 {
    width: 100% !important;
}

.select2-container .select2-selection--single {
    height: 40px !important
}

.select2-container .select2-selection--single .select2-selection__arrow {
    height: 38px !important
}

.select2-selection__rendered {
    line-height: 38px !important
}

.select2-container--default .select2-results__option--highlighted.select2-results__option--selectable {
    background-color: #000
}

.ui-autocomplete {
    max-height: 150px;
    overflow-y: auto;
    overflow-x: hidden;
    max-width: 213px !important;
}

.select2-search--dropdown {
    padding: 0;
}

.select2-container .select2-selection--single {
    height: 49px !important;
}

.select2-selection__rendered {
    line-height: 49px !important;
}

.select2-container .select2-selection--single .select2-selection__arrow {
    height: 49px !important;
}

.select2-container--default .select2-selection--single {
    border-radius: 8px;
}

.select2-container .select2-selection--single .select2-selection__rendered {
    padding-left: 15px;
    padding-right: 20px;
}

.select2-search--dropdown .select2-search__field {
    padding: 15px;
}

.select2-results__option {
    padding: 10px 15px;
}

.select2-container--default .select2-selection--single {
    border: 1px solid #D9D9D9;
}

.select2-container--default .select2-search--dropdown .select2-search__field {
    border-color: #D9D9D9;
    border-left: 0;
    border-right: 0;
}

.select2-container--open .select2-dropdown--below {
    border-color: #D9D9D9;
}

.select2-container--default .select2-selection--single .select2-selection__arrow b {
    background: url(../images/down-arrow.svg);
    width: 14px;
    height: 9px;
    border: 0;
    margin-left: -15px;
    background-size: 100%;
    background-position: center;
    background-repeat: no-repeat;
}

section.error-404.not-found {
    width: 1140px;
    margin: 0 auto;
    padding: 40px 0px;
}

section.error-404.not-found .not-found-title {
    font-size: 160px;
    padding: 70px 0px;
    display: inline-block;
    font-family: cursive;
}

section.error-404.not-found h2 {
    font-family: cursive;
}

.woocommerce-MyAccount-content .woocommerce-address-fields .form-row {
    display: inline;
}

.woocommerce-MyAccount-content .woocommerce-address-fields .form-row input {
    padding: 15px;
    border-radius: 4px;
    box-shadow: none;
    border: 1px solid #ccc;
}

button.woocommerce-Button.button {
    background: #000;
    color: #fff;
    padding: 15px 20px;
}

button.woocommerce-Button.button:hover {
    background: #000;
    color: #fff;
    padding: 15px 20px;
}

.mc4wp-form .mc4wp-response {
    max-width: 430px;
    margin: 0 auto;
}

.mc4wp-form .mc4wp-alert.mc4wp-success p {
    color: #278902;
    padding-top: 5px;
}

.mc4wp-form .mc4wp-alert.mc4wp-notice p {
    color: #ff0000;
    padding-top: 5px;
}

#price-break-modal .modal-content {
    padding: 30px 40px;
}

.expiry-date {
    text-align: right;
    font-weight: 700;
    color: #ff0000 !important;
}

.breakout-remarks {
    color: #ff0000;
    display: inline-block !important;
}

.loading {
    padding-right: 40px !important;
}

.loading:after {
    content: "";
    position: absolute;
    border-radius: 100%;
    right: 6px;
    top: 50%;
    width: 0px;
    height: 0px;
    margin-top: -2px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-left-color: #FFF;
    border-top-color: #FFF;
    animation: spin .6s infinite linear, grow .3s forwards ease-out;
}

@keyframes spin {
    to {
        transform: rotate(359deg);
    }
}

@keyframes grow {
    to {
        width: 14px;
        height: 14px;
        margin-top: -8px;
        right: 13px;
    }
}

.woocommerce-account .woocommerce-MyAccount-content {
    float: none;
    width: 100%;
}

.booking-list .booking-head {
    padding: 0 10px;
}

.booking-list .booking-content {
    margin-top: 20px;
}

.booking-list .booking-head p.description {
    max-width: 720px;
    font-size: 16px;
    margin-top: 15px;
    font-weight: 500;
}

.header-btn a.dropbtn {
    min-width: 170px;
    padding: 15px 20px;
}

.header-btn a.dropbtn i {
    padding-top: 4px;
    margin-right: 10px;
    font-size: 14px;
}

.booking-list .booking-content .booking-tabs {
    border: none;
}

.booking-list .booking-content .booking-tabs .ui-widget-header {
    background: none;
    border: none;
}

.booking-list .booking-content .booking-tabs li {
    background: #fff;
    border: 1px solid #ccc;
    padding: 10px 25px;
    border-bottom: 1px solid #ccc;
    border-radius: 5px;
}

.booking-list .booking-content .booking-tabs li.ui-state-active {
    background: #000;
}

.booking-list .booking-content .booking-tabs li a {
    font-weight: 500;
    font-size: 14px;
}

.booking-list .booking-content .booking-tabs li a:focus {
    box-shadow: none;
    outline: none;
}

.booking-list .booking-content .booking-tabs .ui-tabs-panel {
    padding: 1em 0.4em;
}

.booking-list .booking-content .booking-tabs .table {
    margin-bottom: 0px;
}

.booking-list .booking-content .booking-tabs .table th {
    background: #f3f3f3;
}

.booking-list .booking-content .booking-tabs .table td,
.table th {
    padding: 0.9rem;
    vertical-align: middle !important;
}

.booking-list .booking-content .booking-tabs .table tbody tr:nth-of-type(even) {
    background-color: rgba(0, 0, 0, .05);
}

.booking-list .booking-content .booking-tabs .table .action-btn {
    border: 1px solid #444;
    border-radius: 20px;
    padding: 5px 10px;
}

.booking-list .booking-content .booking-tabs .table .action-btn i {
    margin-right: 5px;
    margin-top: 3px;
    font-size: 12px;
}

.booking-list .booking-content .booking-tabs .table .chat-btn {
    border: 1px solid #444;
    border-radius: 20px;
    padding: 5px 10px;
}

.booking-list .booking-content .booking-tabs .table .chat-btn i {
    margin-right: 5px;
    margin-top: 3px;
    font-size: 12px;
}

.booking-list .booking-content .booking-tabs .table .track-btn {
    border: 1px solid #444;
    border-radius: 20px;
    padding: 5px 10px;
}

.booking-list .booking-content .booking-tabs .table .track-btn i {
    margin-right: 5px;
    margin-top: 3px;
    font-size: 12px;
}

.booking-list .booking-content .booking-tabs .table .track-btn.link-disable {
    background: #cacaca;
    pointer-events: none;
}

.doc-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 1040;
    /* Higher than bootstrap modal */
}

/* doc Sidebar */
.doc-sidebar {
    position: fixed;
    bottom: 0px;
    right: 20px;
    width: 440px;
    height: 650px;
    background: #fff;
    border-radius: 10px 10px 0 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1050;
    /* Higher than overlay */
}

.doc-sidebar.show {
    transform: translateY(0);
}

/* doc Header */
.doc-sidebar .doc-header {
    background: #000;
    color: #fff;
    padding: 25px 20px;
    border-radius: 10px 10px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.doc-sidebar .doc-header .close {
    opacity: 1;
    background: #fff;
    width: 40px;
    height: 40px;
    border-radius: 20px;
}

.doc-sidebar .doc-body {
    padding: 10px;
    height: calc(100% - 150px);
    overflow-y: auto;
}

/* Hide scrollbar */
.doc-sidebar .doc-body::-webkit-scrollbar {
    display: none;
}

.doc-sidebar .doc-body {
    -ms-overflow-style: none;
    scrollbar-width: none;
}

.doc-body .no-docs-found {
    margin-top: 100px;
}

.doc-body .no-docs-found h2 {
    text-align: center;
    font-size: 56px;
}

.doc-body .no-docs-found p {
    margin-top: 20px;
    text-align: center;
    font-size: 18px;
}

.doc-body .docs-list-wrap .docs-content li {
    padding: 20px 20px;
    background: #f1f1f1;
    margin-bottom: 10px;
    border-radius: 10px;
    border: 1px solid #ccc;
    cursor: pointer;
}

.doc-body .docs-list-wrap .docs-content li:hover {
    background: #fff;
}

.doc-body .docs-list-wrap .doc-name {
    font-weight: 600;
    color: #000;
}

.doc-body .docs-list-wrap .doc-name i {
    margin-top: 4px;
    margin-left: 5px;
    font-size: 14px;
    color: #3ec115;
}

.doc-body .doc-details {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    position: relative;
}

.doc-body .doc-details .doc-info {
    font-size: 12px;
    flex-shrink: 1;
    margin-right: 10px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.doc-body .doc-details .doc-dropdown {
    display: inline-block;
}

.doc-body .doc-details .doc-download {
    flex-shrink: 0;
    text-decoration: none;
    color: inherit;
}

.doc-body .doc-details .doc-download i {
    margin-right: 5px;
    margin-top: 3px;
}

.doc-body .docs-list-wrap .docs-tabs {
    border: none;
}

.doc-body .docs-list-wrap .docs-tabs .ui-widget-header {
    border: none;
    background: none;
    border-bottom: 1px solid #ccc;
    display: flex;
    justify-content: space-around;
}

.doc-body .docs-list-wrap .docs-tabs li.ui-state-default {
    background: none;
    border: none;
    flex: 1;
    text-align: center;
}

.doc-body .docs-list-wrap .docs-tabs li.ui-state-active {
    border-bottom: 2px solid #000;
}

.doc-body .docs-list-wrap .docs-tabs li.ui-state-active a {
    color: #000;
}

.doc-body .docs-list-wrap .docs-tabs li a {
    color: #999;
    font-weight: 500;
    font-size: 15px;
}

.doc-body .docs-list-wrap .docs-tabs .ui-tabs-panel {
    padding: 1em 0.4em;
}

.doc-body .docs-list-wrap .docs-upload-wrap {
    margin-bottom: 20px;
}

.doc-body .dropdown-toggle {
    background: none;
    border: none;
    cursor: pointer;
    font-size: 18px;
}

.doc-body .dropdown-menu {
    display: none;
    position: absolute;
    right: 0;
    background-color: #000;
    box-shadow: 0 8px 16px rgba(0, 0, 0, 0.2);
    z-index: 1;
    min-width: 150px;
    padding: 0;
    margin: 0;
    left: 220px;
}

.doc-body .dropdown-menu a.dropdown-item {
    color: #fff;
    padding: 12px 16px;
    text-decoration: none;
    display: block;
}

.doc-body .dropdown-menu a.dropdown-item:hover {
    background-color: #000;
    color: #fff;
}

.doc-body .dropdown-menu a.dropdown-item i {
    margin-right: 10px;
    margin-top: 1px;
}

.doc-body .doc-dropdown.active .dropdown-menu {
    display: block;
}

.doc-body .doc-dropdown .dropdown-toggle::after {
    display: none;
}

.doc-body .doc-dropdown .dropdown-toggle i {
    color: #727272;
}

.doc-body .docs-list-wrap .docs-upload-wrap #upload-response {
    font-size: 14px;
    color: #1d1d1d;
    font-weight: 500;
    text-align: center;
    margin-top: 5px;
}

.doc-body .docs-list-wrap .month-details {
    margin-bottom: 5px;
    font-size: 14px;
    font-weight: 500;
    margin-left: 5px;
}

.doc-body .docs-list-wrap .upload-by {
    position: absolute;
    top: 5px;
    right: 20px;
}

.doc-body .docs-list-wrap .upload-by img {
    height: 20px;
    width: 20px;
}

.docs-upload-wrap .doc-upload {
    display: block;
    background-color: #f0f0f0;
    font-size: 16px;
    font-weight: 400;
    color: #000;
    padding: 20px 20px;
    margin-top: 16px;
    border-radius: 6px;
    -webkit-border-radius: 6px;
    -moz-border-radius: 6px;
    -ms-border-radius: 6px;
    -o-border-radius: 6px;
    position: relative;
    overflow: hidden;
    cursor: pointer;
    border: 2px dashed #444;
    text-align: center;
}

.docs-upload-wrap .doc-upload i {
    padding-top: 3px;
}

.doc-loader,
.chat-loader {
    --r1: 154%;
    --r2: 68.5%;
    width: 140px;
    aspect-ratio: 1;
    border-radius: 50%;
    background:
        radial-gradient(var(--r1) var(--r2) at top, #0000 79.5%, #000 80%),
        radial-gradient(var(--r1) var(--r2) at bottom, #000 79.5%, #0000 80%),
        radial-gradient(var(--r1) var(--r2) at top, #0000 79.5%, #000 80%),
        #ccc;
    background-size: 50.5% 220%;
    background-position: -100% 0%, 0% 0%, 100% 0%;
    background-repeat: no-repeat;
    animation: l9 2s infinite linear;
    margin: 0 auto;
    margin-top: 100px;
    position: absolute;
    z-index: 1050;
    left: 0;
    right: 0;
    display: none;
}

@keyframes l9 {
    33% {
        background-position: 0% 33%, 100% 33%, 200% 33%
    }

    66% {
        background-position: -100% 66%, 0% 66%, 100% 66%
    }

    100% {
        background-position: 0% 100%, 100% 100%, 200% 100%
    }
}

.booking-wrap h2 {
    font-size: 18px;
}

.booking-wrap p {
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 10px;
}

.booking-wrap .booking-layout-main .booking-header-section h2 {
    font-size: 15px;
}

.booking-wrap .booking-layout-main {
    margin-top: 20px;
}

.booking-wrap .booking-layout-main .booking-dashboard-section {
    margin-bottom: 15px;
}

.booking-wrap .booking-layout-main .booking-summary {
    margin: 0;
    display: grid;
    width: 100%;
    grid-template-columns: repeat(4, 1fr);
    grid-column-gap: 10px;
}

.booking-wrap .booking-layout-main .booking-summary .booking-item {
    margin-bottom: 10px;
    position: relative;
}

.booking-wrap .booking-layout-main .booking-summary .booking-item a {
    background-color: #fff;
    display: flex;
    flex-direction: column;
    padding: 30px 20px;
    background-color: #f8f9fa;
    border: 1px solid #e0e0e0;
    line-height: 1.4em;
    text-decoration: none;
    color: #1e1e1e;
}

.booking-wrap .booking-layout-main .booking-summary .booking-item a:hover,
.booking-wrap .booking-layout-main .booking-summary .booking-item a:focus {
    background-color: #f2f2f2;
    border-top: 3px solid #000;
    box-shadow: none;
}

.booking-wrap .booking-layout-main .booking-summary .booking-item .booking-label {
    display: flex;
    margin-bottom: 16px;
    color: #757575;
}

.booking-wrap .booking-layout-main .booking-summary .booking-item .booking-label span {
    color: rgb(30, 30, 30);
    margin: 0px;
    font-size: calc(12px);
    font-weight: normal;
    line-height: 20px;
}

.booking-wrap .booking-layout-main .booking-summary .booking-item .booking-data {
    display: flex;
    justify-content: space-between;
}

.booking-wrap .booking-layout-main .booking-summary .booking-item .booking-data span {
    font-weight: 500;
    color: rgb(30, 30, 30);
    margin: 0px;
    font-size: calc(18px);
    line-height: 28px;
}

.booking-wrap .booking-layout-main .document-progress-section {
    background: #fff;
    padding: 10px 0px;
}

.booking-wrap .booking-layout-main .document-progress-section .progress-container {
    display: flex;
    align-items: center;
}

.booking-wrap .booking-layout-main .document-progress-section .doc-desc {
    margin: 0;
    text-align: left;
    font-size: 14px;
    font-weight: 500;
}

.booking-wrap .booking-layout-main .document-progress-section .doc-progress {
    display: flex;
    grid-column-gap: 10px;
    margin-top: 10px;
}

.booking-wrap .booking-layout-main .document-progress-section .doc-progress li {
    background-color: #ccc;
    padding: 0px;
    width: 100px;
    height: 15px;
    border-radius: 30px;
}

.booking-wrap .booking-layout-main .document-progress-section .doc-progress li.active {
    background-color: #007cba;
}

.booking-wrap .booking-layout-main .document-progress-section .doc-progress li:hover {
    cursor: pointer;
    background-color: #44beff;
}

.booking-wrap .booking-layout-main .document-progress-section .steps {
    font-size: 14px;
    margin-left: 10px;
    margin-top: 8px;
    font-weight: 600;
}

.booking-wrap .booking-layout-main .document-progress-section .doc-progress li.last {
    background: none;
    width: auto;
}

.bg-c-yellow {
    background: -webkit-gradient(linear, left top, right top, from(#fe9365), to(#feb798));
    background: linear-gradient(to right, #fe9365, #feb798);
}

.dashboard-section .dashborad-head {
    padding: 0 10px;
}

.dashboard-section a.booking-links {
    display: inline;
}

.dashboard-section .card {
    border-radius: 5px;
    -webkit-box-shadow: 0 1px 20px 0 rgba(69, 90, 100, .08);
    box-shadow: 0 1px 20px 0 rgba(69, 90, 100, .08);
    border: none;
    margin-bottom: 30px;
    border: 1px solid #ccc !important;
}

.dashboard-section .card .card-block {
    padding: 1.25rem;
}

.dashboard-section .card .card-block h4 {
    font-size: 2.3rem;
    margin-top: 15px;
}

.dashboard-section .card .card-block i {
    font-size: 24px;
}

.dashboard-section .card .card-block h6 {
    font-size: 12px;
    font-weight: 500;
    margin-top: 10px;
    margin-bottom: 10px;
}

.dashboard-section .card .card-footer p {
    margin: 0 0 5px;
}

.dashboard-section .card .card-footer {
    background-color: #fff;
    border-top: none;
    padding: .75rem 1.25rem;
}

.bg-c-yellow {
    background: -webkit-gradient(linear, left top, right top, from(#fe9365), to(#feb798));
    background: linear-gradient(to right, #fe9365, #feb798);
}

.bg-c-green {
    background: -webkit-gradient(linear, left top, right top, from(#0ac282), to(#0df3a3));
    background: linear-gradient(to right, #0ac282, #0df3a3);
}

.bg-c-pink {
    background: -webkit-gradient(linear, left top, right top, from(#fe5d70), to(#fe909d));
    background: linear-gradient(to right, #fe5d70, #fe909d);
}

.bg-c-blue {
    background: -webkit-gradient(linear, left top, right top, from(#01a9ac), to(#01dbdf));
    background: linear-gradient(to right, #01a9ac, #01dbdf);
}

.text-c-yellow {
    color: #fe9365;
}

.text-c-green {
    color: #0ac282;
}

.text-c-pink {
    color: #fe5d70;
}

.text-c-blue {
    color: #01a9ac;
}

.text-muted {
    color: #919aa3 !important;
}

/* chat css started */
.chat-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5);
    display: none;
    z-index: 1040;
    /* Higher than bootstrap modal */
}

.chat-sidebar {
    position: fixed;
    bottom: 0px;
    right: 20px;
    width: 440px;
    height: 650px;
    background: #fff;
    border-radius: 10px 10px 0 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    transform: translateY(100%);
    transition: transform 0.3s ease-in-out;
    z-index: 1050;
    /* Higher than overlay */
}

.chat-sidebar.show {
    transform: translateY(0);
}

.chat-sidebar .chat-header {
    background: #000;
    color: #fff;
    padding: 25px 20px;
    border-radius: 10px 10px 0 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.chat-sidebar .chat-header .close {
    opacity: 1;
    background: #fff;
    width: 40px;
    height: 40px;
    border-radius: 20px;
}

.chat-sidebar .chat-body {
    padding: 10px;
    height: calc(100% - 190px);
    overflow-y: auto;
    margin-bottom: 15px;
}

.chat-sidebar .chat-footer {
    padding: 10px;
    border-top: 1px solid #ccc;
    display: flex;
}

.chat-sidebar .chat-footer .btn-chat-sent {
    color: #fff;
    background-color: #000;
}

.chat-sidebar .message {
    margin: 5px 0;
    padding: 10px;
    border-radius: 10px;
    max-width: 80%;
}

.chat-sidebar .message.sender {
    background-color: #000;
    color: #fff;
    text-align: left;
    float: right;
    clear: both;
}

.chat-sidebar .message.receiver {
    background-color: #f1f1f1;
    text-align: left;
    float: left;
    clear: both;
}

.booking-list .booking-content .booking-tabs .table td.clickable-cell {
    position: relative;
    /* Make td the positioning context */
    padding: 0;
    /* Remove padding from td */
}

.booking-list .booking-content .booking-tabs .table td.clickable-cell a {
    padding: 0.9rem;
    /* Apply padding to the a tag */
    width: 100%;
    height: 100%;
    text-decoration: none;
    position: absolute;
    /* Make a cover the entire td */
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #2c24b0;
    font-weight: 700;
}

/* Style for readonly input field */
.woocommerce-MyAccount-content input[readonly] {
    background-color: #f0f0f0;
    /* Grey background */
    cursor: not-allowed;
    /* Show disabled cursor */
    color: #888;
    /* Grey text color */
    border: 1px solid #ccc;
    /* Subtle border */
}

span.unread-count {
    display: inline-block;
    background: #000;
    padding: 4px 10px;
    border-radius: 30px;
    color: #fff;
}

.booking-list .table-responsive table.table-hover span.unread-count.animate {
    animation: bubble-scale 0.6s ease;
    background-color: #ff4500;
    /* Change to a different color, e.g., orange */
}


/*====================================Additional CSS====================================*/

/*--------Adjustment CSS------*/
.blog-detail-wrap .entry-content {
    width: 70% !important;
}

.blog-detail-wrap .blog-content-aside {
    justify-content: center;
}

@media(max-width: 480px) {
    .blog-detail-wrap .entry-content {
        width: 100% !important;
    }
}

/*--------TOC CSS-------------*/
#custom-toc {
    position: absolute;
    border-radius: 8px;
    top: 15% !important;
    left: 5%;
    width: 18%;
    background: white;
    padding: 10px 15px;
    border: 1px solid #d8d8d8;
    box-shadow: 2px 2px 10px rgba(0, 0, 0, 0.1);
    /* transition: opacity 0.5s ease-in-out; */
    font-family: Arial, sans-serif;
    z-index: 99;
}

#custom-toc h3 {
    font-size: 18px;
    font-weight: 600;
    color: #222;
    text-align: left;
    margin-bottom: 12px;
    letter-spacing: 0.5px;
    border-bottom: 2px solid #000000;
    padding-bottom: 5px;
}

.toc-list {
    list-style: none;
    padding-left: 0;
    flex-direction: column;
}

.toc-item {
    line-height: 20px;
    letter-spacing: 0.5px;
    font-size: 14px;
    margin-bottom: 5px;
}

.toc-link {
    display: block;
    text-decoration: none;
    color: #767676;
    padding: 5px 10px;
    border-radius: 0px 5px 5px 0px;
}

.toc-link:hover,
.toc-link.active {
    padding-left: 12px;
    background: #00000008;
    color: #000000;
    border-left: 3px solid #000000;
    text-decoration: none !important;
    transition: none;
}

@media (max-width: 1024px) {
    #custom-toc {
        left: 2%;
        width: 24%;
        display: none;
    }
}

/*----------CTA---------*/
#floating-cta-box {
    position: fixed;
    top: 48%;
    right: 5.6%;
    transform: translateY(-50%);
    width: 250px;
    background: #ffffff;
    border: 1px solid #d8d8d8;
    border-radius: 10px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    padding: 20px;
    opacity: 0;
    z-index: 99 !important;
    font-family: Arial, sans-serif;
}

#floating-cta-box h3 {
    font-size: 18px;
    margin-bottom: 10px;
    color: #222;
}

#floating-cta-box p {
    font-size: 14px;
    color: #555;
    margin-bottom: 15px;
}

.cta-button {
    display: inline-block;
    padding: 8px 16px;
    background: #000;
    color: #fff;
    text-decoration: none;
    font-size: 14px;
    border-radius: 5px;
    transition: background 0.3s;
}

.cta-button:hover {
    color: #ffffff;
}

@media (min-width:1441px) {
    #floating-cta-box {
        right: 7%;
    }
}

@media (max-width: 1024px) {
    #floating-cta-box {
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        text-align: center;
        margin: 30px auto;
        position: static;
        opacity: 1 !important;
        width: 68%;
    }
}

@media(max-width: 480px) {
    #floating-cta-box {
        width: 92%;
        margin: 20px auto;
    }
}

/*---------Popup-form----------*/

#custom-popup {
    position: fixed !important;
    top: 0;
    left: 0;
    height: 100vh;
    width: 100vw;
    background: rgba(0, 0, 0, 0.7);
    z-index: 999999 !important;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    display: none;
}

#popup-close {
    cursor: pointer;
}

/*---------Custom Author Page Styling-------------*/

/* Custom Author Page Header - Scoped to Author Pages */
body.author .custom-author-header {
    text-align: center;
    padding: 40px 20px;
    background: url("https://sailonlogistics.com/wp-content/uploads/2025/04/cargo.jpg") no-repeat;
    background-size: cover;
}

/* Author Name Style inside H1 */
body.author .custom-author-header h1 {
    font-weight: 500;
    font-size: 24px;
}

body.author .custom-author-header .custom-author-name {
    font-weight: 600;
    /* Bold font for the author's name */
    color: #FFF;
}

/* Author Image Style */
body.author .custom-author-header img {
    border-radius: 50%;
    margin-bottom: 15px;
}

/* Author Description Paragraph */
body.author .custom-author-header p {
    font-size: 1rem;
    color: #ffffff;
    max-width: 600px;
    margin: 0 auto;
}

/* Custom Author Page Post Grid */
body.author .custom-author-posts {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin: 30px auto;
    padding: 0 20px;
    max-width: 1200px;
}

/* Custom Author Page Post Cards */
body.author .custom-author-post-card {
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 12px;
    padding: 15px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

body.author .custom-author-post-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 15px rgba(0, 0, 0, 0.1);
}

/* Custom Post Image Styling */
body.author .custom-post-thumbnail-wrapper {
    width: 100%;
    height: 200px;
    /* Set your desired image height */
    overflow: hidden;
    border-radius: 8px;
}

body.author .custom-post-thumb {
    width: 100%;
    height: 250px;
    border-radius: 8px;
    margin-bottom: 10px;
}

.blog-content-aside .blog-post-date .post-author {}

.blog-content-aside .blog-post-date .post-calender {
    position: relative;
    padding-left: 13px;
}

.blog-content-aside .blog-post-date .post-calender:before {
    content: "";
    width: 5px;
    height: 5px;
    background: rgb(92 92 92 / 50%);
    position: absolute;
    border-radius: 10px;
    margin-right: 8px;
    left: 0;
    top: 6px;
}

.blog-content-aside .blog-post-date .post-author {
    font-weight: 700;
}

/* Custom Post Card Title */
body.author .custom-author-post-card h2 {
    font-size: 1.25rem;
    margin-top: 10px;
    font-weight: 600;
    line-height: 24px;
    margin-bottom: 10px;
}

/* Custom Post Card Description */
body.author .custom-author-post-card p {
    font-size: 0.95rem;
    color: #555;
}

.entry-content img {
    width: 100%;
}


@media (max-width: 1024px) {
    body.author .custom-author-header h1 {
        color: #FFF;
    }
}

@media (max-width: 480px) {
    body.author .custom-author-posts {
        grid-template-columns: 1fr;
        padding: 0 50px;
    }

    body.author .custom-author-post-card {
        padding: 10px;
    }

    body.author .custom-post-thumbnail-wrapper {
        height: auto;
    }

    body.author .custom-post-thumb {
        width: 100%;
        height: auto;
        object-fit: cover;
    }
}

/*------------Popup-form-Social-icons----------*/

.custom-social-icon li a {
    margin-bottom: 0px !important;
}

/*------------ Navmenu Dropdown--------------- */

/* ---------- Reset and structure ---------- */
.sailon-header-menu {
    list-style: none;
    margin: 0;
    padding: 0;
}

/* Top-level menu items */
.sailon-header-menu>li {
    position: relative;
    display: inline-block;
}

/* ---------- Submenu styling ---------- */
.sailon-header-menu .sub-menu {
    display: none !important;
    /* Hide by default */
    margin-top: 0;
    position: absolute;
    border-radius: 10px;
    top: 100%;
    left: 0;
    background-color: #fff;
    min-width: 200px;
    padding: 10px 0;
    box-shadow: 0 0px 8px rgba(0, 0, 0, 0.2);
    z-index: 999;
    flex-direction: column !important;
    /* Fixes broken flex */
}

/* Submenu list items */
.sailon-header-menu .sub-menu li {
    display: block;
    margin-top: 10px;
}

/* Submenu links */
.sailon-header-menu .sub-menu li a {
    display: block;
    font-weight: 500;
    padding: 10px 15px;
    color: #333;
    text-decoration: none;
    white-space: nowrap;
}

.sailon-header-menu .sub-menu li a:hover {
    background-color: #f0f0f0;
}

/* ---------- Show submenu on hover for desktop ---------- */
.sailon-header-menu li.menu-item-has-children:hover>.sub-menu {
    display: flex !important;
}

/* ---------- Mobile submenu open state ---------- */
.sailon-header-menu li.menu-item-has-children.submenu-open>.sub-menu {
    display: flex !important;
}

.sailon-header-menu>li.item-effect>a {
    margin: 15px 0px 15px 0px;
}

/* ---------- Responsive styling for mobile ---------- */
@media (max-width: 480px) {
    .sailon-header-menu>li {
        display: block;
    }

    .sailon-header-menu .sub-menu {
        position: static;
        box-shadow: none;
        padding-left: 20px;
        margin-top: 0px;
    }

    /* Make parent links fill the entire li horizontally for easier tapping */
    .sailon-header-menu li.menu-item-has-children>a {
        display: block;
        user-select: none;
    }

    /* Arrow on the right side */
    .sailon-header-menu li.menu-item-has-children>a::after {
        content: " ▼";
        float: right;
        font-size: 0.7em;
        margin-left: 5px;
        color: #000;
        pointer-events: none;
    }

    /* Make parent li cursor pointer */
    .sailon-header-menu li.menu-item-has-children {
        cursor: pointer;
        position: relative;
        width: 100%;
    }

    .sailon-header-menu>li.item-effect>a {
        margin: 0px 0px 0px 0px;
    }

    .sailon-header-menu .sub-menu li {
        display: block;
        margin-top: 0px;
    }

}

/*-------------mobile-responsive-blog-post-----------*/
@media(max-width:480px) {
    .table-responsive {
        font-size: 8px;
        line-height: 10px;
    }

    .top-banner-title .blog-detail-title h1 {
        font-size: 30px;
        line-height: 40px;
    }
}

main.site-main .page-header {
    margin-bottom: 150px;
}

main.site-main .page-header h1 {
    text-align: center;
    padding-left: 15px;
    padding-right: 15px;
}

@media (max-width: 767px) {
    main.site-main .page-header h1 {
        line-height: 35px;
    }
}

main.site-main article.faqs .top-banner-title .blog-detail-title {
    display: none;
}

.elementor-inner-section .elementor-container.elementor-column-gap-default {
    justify-content: center;
}

.login-sign-inner {
    max-width: 400px;
}

/* container for the account page */
.woocommerce-account .site-main article {
    width: 100%;
    padding-right: 15px;
    padding-left: 15px;
    margin-right: auto;
    margin-left: auto;
    padding-bottom: 20px;
}

@media (min-width: 576px) {
    .woocommerce-account .site-main article {
        max-width: 540px;
        padding-top: 20px;
        padding-bottom: 20px;
    }
}

@media (min-width: 768px) {
    .woocommerce-account .site-main article {
        max-width: 720px;
    }
}

@media (min-width: 992px) {
    .woocommerce-account .site-main article {
        max-width: 960px;
    }
}

@media (min-width: 1200px) {
    .woocommerce-account .site-main article {
        max-width: 1170px;

    }
}

/* customer booking style */
.woocommerce-account .booking-list .booking-tabs ul {
    list-style: none !important;
    display: flex;
    flex-wrap: nowrap;
    justify-content: space-between;
    overflow: auto;
    width: 100%;
    gap: 15px;
    padding-bottom: 5px;
}

.woocommerce-account .booking-list .booking-tabs ul::-webkit-scrollbar {
    width: 8px;
    height: 5px;
}

.woocommerce-account .booking-list .booking-tabs ul::-webkit-scrollbar-track {
    background: #fff;
    height: 5px;
}

.woocommerce-account .booking-list .booking-tabs ul::-webkit-scrollbar-thumb {
    background: #9A9EA6;
    border-radius: 5px;
    height: 5px;
}

.woocommerce-account .booking-list .booking-tabs ul::before,
.woocommerce-account .booking-list .booking-tabs ul::after {
    display: none;
}

.woocommerce-account .booking-list .booking-tabs ul li {
    list-style: none !important;
    margin: 0;
}

.woocommerce-account .booking-list .booking-tabs ul li a {
    margin-bottom: 0;
}