#preloader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    display: -webkit-box;
    display: -ms-flexbox;
    display: flex;
    -webkit-box-align: center;
    -ms-flex-align: center;
    align-items: center;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    justify-content: center;
    text-align: center;
    z-index: 999999;
}

.preloader-icon {
    width: 60px;
    height: 60px;
}

.loading-bar {
    width: 120px;
    height: 4px;
    margin-top: 30px;
    position: relative;
    overflow: hidden;
    background: #fff;
}

.loading-bar::before {
    content: '';
    width: 35px;
    height: 4px;
    background: #f36b24;
    position: absolute;
    left: -34px;
    -webkit-animation: bluebar 1.5s infinite ease;
    animation: bluebar 1.5s infinite ease;
}

@-webkit-keyframes bluebar {
    50% {
        left: 96px;
    }
}

@keyframes bluebar {
    50% {
        left: 96px;
    }
}

.bg-light-subtle {
    background-color: #fafafa !important;
}

.navbar-nav {
    display: contents;
}

.header-area.absolute-header {
    top: 40px !important;
}

@media (max-width: 768px) {
    .navbar-nav {
        display: grid;
        justify-items: start;
    }

    .logoss img {
        margin-top: 0 !important;
    }

    .header-area.absolute-header {
        display: block !important;
    }

    .search-popup {
        display: block !important;
    }

    .more-featuress {
        display: grid;
        /* margin-top: 40px; */
        justify-items: center;
    }

    .breadcrumb-area {
        height: 400px;
    }
}

.more-featuress {
    display: grid !important;
    margin-top: 40px;
    justify-items: center !important;
}

.more-featuress p {
    color: #fff;
    margin: 0;
}

.hero-area-content h6 {
    color: #fff;
    margin-top: 0;
    /* margin-bottom: 40px; */
}

.breadcrumb-area h6 {
    color: #fff;
    margin-top: 0;
    margin-bottom: 40px;
}

.align-contents-center {
    align-content: center !important;
}

.copyright {
    display: flex;
    justify-content: center;
}

.hero-wraps {
    height: 950px !important;
}

.cookie-message {
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    background-color: #333;
    color: #fff;
    padding: 10px;
    text-align: center;
    z-index: 9999;
}

.accept-cookies {
    background-color: #008000;
    color: #fff;
    border: none;
    padding: 5px 10px;
    cursor: pointer;
}

.otp-input {
    letter-spacing: 0.5ch;
}

/* prohibited */

.prohibited_items {
    background-color: #fff;
    margin-top: 220px !important;
    padding: 40px 20px 140px 20px !important;
    -webkit-border-radius: 5px;
    -moz-border-radius: 5px;
    -ms-border-radius: 5px;
    border-radius: 5px;
    -webkit-box-shadow: 0px 22px 24px 0px rgba(46, 51, 51, 0.05);
    -moz-box-shadow: 0px 22px 24px 0px rgba(46, 51, 51, 0.05);
    box-shadow: 0px 22px 24px 0px rgba(46, 51, 51, 0.05);
}

.prohibited-box {
    display: flex;
    justify-content: space-around; /* Ensures even spacing between the icons */
}

.prohibited_icon {
    display: inline-grid;
    justify-items: center;
    margin: 0 10px; /* Adds some space between the icons */
}

.prohibited_icon h4 {
    margin: 5 0 5 0 !important;
    font-size: 0.9rem !important;
    color: #444 !important;
    font-weight: 700;
}

.prohibited_icon p {
    margin: 0 !important;
    font-size: 0.85rem !important;
    color: #444 !important;
    font-weight: 500;
    text-align: center;
    word-wrap: break-word; /* Ensures that long text will wrap to the next line */
}

.prohibited_items h6 {
    display: flex;
    margin: 40px 0px -90px 0px !important;
    justify-content: center;
}

.prohibited_icon img {
    height: 40px;
    margin: 20px 0px 10px 0px;
}

/* Media query for mobile devices */
@media (max-width: 768px) {
    .prohibited-box {
        display: flex; /* Stack items vertically on mobile */
        flex-wrap: wrap;
    }

    #add-me {
        margin-bottom: 20px;
    }

    .restrictions_head {
        margin-top: 30px;
    }

    .featured-box {
        margin-bottom: 20px;
    }
    .description {
        margin-top: 20px;
    }

    .login-btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        height: 45px;
        width: 200px;
        padding-left: 20px;
        padding-right: 20px;
        font-size: 14px;
        font-weight: 500;
        border-radius: 7px;
        text-align: center;
        cursor: pointer;
        -webkit-transition: all 0.3s ease-in-out;
        transition: all 0.3s ease-in-out;
        letter-spacing: 1px;
        position: relative;
        z-index: 1;
        overflow: hidden;
        background: #f36b24;
        color: #fff;
    }
}

.prohibited_icons {
    flex: 1; /* Allows the icons to share the available space equally */
    text-align: center; /* Centers the text within each icon box */
    margin: 0 10px; /* Adds some space between the icons */
}

.prohibited_icons h4 {
    margin: 0 !important;
    margin-bottom: 15px !important;
    font-size: 0.875rem !important;
    color: #444 !important;
}

.prohibited_icons p {
    margin: 0 !important;
    font-size: 0.875rem !important;
    color: #444 !important;
    font-weight: 500;
    text-align: center;
    word-wrap: break-word; /* Ensures that long text will wrap to the next line */
}

.prohibited_icons i {
    color: #f36b24;
    background-color: #f7f3ef;
    height: 70px;
    width: 70px; /* Makes the icon container a perfect circle */
    font-size: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto; /* Centers the icon container within its parent */
}

.feature-icon img {
    width: 25px;
}

.description {
    background: greenyellow;
    border-radius: 10px;
    padding: 13px;
}

.display_flag_on_select:has(li.selected[data-value='Canada']) span.cf-ca {
    display: inline-block !important;
}

.display_flag_on_select:has(li.selected[data-value='Nigeria']) span.cf-ng {
    display: inline-block !important;
}

.display_flag_on_select:has(li.selected[data-value='United Kingdom'])
    span.cf-gb {
    display: inline-block !important;
}

.payment_types {
    display: none;
}

.breadcrumb-title input {
    max-width: 350px;
    display: inline-flex;
}

.breadcrumb-title a {
    max-width: 350px;
    display: inline-flex;
}

.login-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 45px;
    padding-left: 20px;
    padding-right: 20px;
    font-size: 14px;
    font-weight: 500;
    border-radius: 7px;
    text-align: center;
    cursor: pointer;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
    overflow: hidden;
    background: #f36b24;
    color: #fff;
}

.heaader-top-two {
    background: #f36b24;
}

.feature-right-content a {
    color: #f36b24 !important;
}

.form-label a {
    color: #f36b24 !important;
}

.table-responsive-wrapper {
    overflow-x: auto; /* Ensures table is scrollable on small screens */
    margin-bottom: 1.5rem;
}
.privacy-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}
.privacy-table th,
.privacy-table td {
    padding: 12px 15px;
    border: 1px solid #e0e0e0;
    text-align: left;
    line-height: 1.5;
}
.privacy-table th {
    background-color: #f8f9fa; /* Light grey header */
    font-weight: bold;
    color: #333;
}
.privacy-table tbody tr:nth-of-type(even) {
    background-color: #fdfdfd; /* Subtle zebra-striping for rows */
}

.form-check input {
    width: 20px;
    margin-bottom: 10px;
}

.feature-single i {
    background: transparent !important;
    color: #000 !important;
    padding: 0 !important;
    padding-left: 10px !important;
    padding-right: 10px !important;
    font-size: 20px !important;
}

/* prohibited */

.estimate_items {
    padding: 40px 20px 40px 20px !important;
    border-radius: 5px;
}

.estimate-box {
    display: flex;
    justify-content: space-around; /* Ensures even spacing between the icons */
}

.estimate_icon {
    display: inline-grid;
    justify-items: center;
    margin: 0 10px; /* Adds some space between the icons */
}

.estimate_icon h4 {
    margin: 5 0 5 0 !important;
    font-size: 0.9rem !important;
    color: #444 !important;
    font-weight: 700;
}

.estimate_icon p {
    margin: 0 !important;
    font-size: 0.85rem !important;
    color: #444 !important;
    font-weight: 500;
    text-align: center;
    word-wrap: break-word; /* Ensures that long text will wrap to the next line */
}

.estimate_items h6 {
    display: flex;
    margin: 40px 0px -90px 0px !important;
    justify-content: center;
}

.estimate_icon img {
    height: 40px;
    margin: 20px 0px 10px 0px;
}

/* Media query for mobile devices */
@media (max-width: 768px) {
    .estimate-box {
        display: flex; /* Stack items vertically on mobile */
        flex-wrap: wrap;
    }
}

.estimate_icons {
    flex: 1; /* Allows the icons to share the available space equally */
    text-align: center; /* Centers the text within each icon box */
    margin: 0 10px; /* Adds some space between the icons */
}

.estimate_icons h4 {
    margin: 0 !important;
    margin-bottom: 15px !important;
    font-size: 0.875rem !important;
    color: #444 !important;
}

.estimate_icons p {
    margin: 0 !important;
    font-size: 0.875rem !important;
    color: #444 !important;
    font-weight: 500;
    text-align: center;
    word-wrap: break-word; /* Ensures that long text will wrap to the next line */
}

.estimate_icons i {
    color: #f36b24;
    background-color: #f7f3ef;
    height: 70px;
    width: 70px; /* Makes the icon container a perfect circle */
    font-size: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto; /* Centers the icon container within its parent */
}

.btn-primary {
    background: #f36b24;
    font-size: 14px;
    font-weight: 500;
    border: none;
    -webkit-transition: all 0.3s ease-in-out;
    transition: all 0.3s ease-in-out;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
    overflow: hidden;
}

.btn-primary:hover {
    background: #121d24 !important;
    font-size: 14px;
    font-weight: 500;
}

.traveller-signup-cta {
    margin-top: 40px;
}

.traveller-safety-area {
    background: #fff;
}

.traveller-safety-copy {
    color: #495057;
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 35px;
}

.traveller-success-modal .modal-content {
    border: 0;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 26px 80px rgba(18, 29, 36, 0.22);
}

.traveller-success-modal .modal-header {
    background: linear-gradient(135deg, #121d24 0%, #1f3440 100%);
    color: #fff;
    border-bottom: 0;
    padding: 22px 26px;
}

.traveller-success-modal .modal-title {
    color: #fff;
    margin-bottom: 0;
}

.traveller-success-modal .modal-body {
    padding: 28px 26px 30px;
}

.traveller-success-modal__hero {
    text-align: center;
    margin-bottom: 24px;
}

.traveller-success-modal__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(243, 107, 36, 0.12);
    color: #f36b24;
    font-size: 42px;
    margin-bottom: 16px;
}

.traveller-success-modal__hero h5 {
    font-size: 28px;
    color: #121d24;
    margin-bottom: 10px;
}

.traveller-success-modal__hero p {
    color: #59636b;
    margin-bottom: 0;
}

.traveller-success-modal__tips {
    background: #fff7f2;
    border-radius: 18px;
    padding: 22px 22px 18px;
}

.traveller-success-modal__tips h6 {
    color: #121d24;
    font-size: 20px;
    margin-bottom: 14px;
}

.traveller-success-modal__tips ul {
    margin: 0;
    padding-left: 20px;
}

.traveller-success-modal__tips li {
    margin-bottom: 10px;
    color: #495057;
    line-height: 1.7;
}

@media (max-width: 767px) {
    .traveller-success-modal .modal-body,
    .traveller-success-modal .modal-header {
        padding-left: 18px;
        padding-right: 18px;
    }

    .traveller-success-modal__hero h5 {
        font-size: 24px;
    }
}

/* .btn-primary:hover::before {
  -webkit-transform: scaleX(1);
  -ms-transform: scaleX(1);
  transform: scaleX(1);
  -webkit-transform-origin: left center;
  -ms-transform-origin: left center;
  transform-origin: left center;
} */
