#insurancesLoop .elementor-grid .insurance {
    width: 25%;
}

#insurancesLoop .elementor-loop-container.elementor-grid {
    justify-content: center;
    margin: 0 auto;
    display: flex;
}

.cookie-popup {
    position: fixed;
    bottom: 0;
    width: 100%;
    background: #fff;
    box-shadow: 0 -2px 10px rgba(0, 0, 0, 0.1);
    padding: 30px 40px 20px;
    z-index: 9999;
    box-sizing: border-box;
    top: auto;
    left: 0;
    right: 50%;
    bottom: 0;
}

.cookie-popup h1 {
    font-size: 24px;
    margin: 0;
    font-weight: bold;
}

.cookie-popup p {
    font-size: 14px;
    color: #333;
    line-height: 1.6;
    margin: 15px 0;
}

.cookie-buttons {
    display: flex;
    gap: 20px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.cookie-buttons button {
    padding: 12px 24px;
    font-size: 14px;
    font-weight: bold;
    border: 2px solid #0082c9;
    border-radius: 4px;
    background-color: #fff;
    color: #0082c9;
    cursor: pointer;
    transition: background 0.2s, color 0.2s;
}

.cookie-buttons button:hover {
    background-color: #f0f8ff;
}

.cookie-buttons .accept {
    background-color: #0082c9;
    color: white;
}

.cookie-buttons .accept:hover {
    background-color: #006fa9;
}

.cookie-footer {
    margin-top: 20px;
    font-size: 13px;
}

.cookie-footer a {
    color: #0082c9;
    text-decoration: none;
    margin-right: 15px;
}

.cookie-footer a:hover {
    text-decoration: underline;
}

/* Home Page Css */
#calculateNow a,
#calculateNow1,
.insurancesCalBtn {
    cursor: pointer;
}

/* Home Page Css Over*/

/* ChatBot Css */
.aiIntro {
    margin: 20px 0;
    width: 100%;
    text-align: center;
}

.aiIntro img {
    width: 20%;
}

.aiIntro h1 {
    font-size: 28px;
    font-weight: 600;
    color: #333;
    letter-spacing: 1px;
    margin: 0;
}

.chatbot-main-chat {
    /* overflow-y: auto; */
    max-height: 350px;
}

.chatbot-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
}

.chatbot-icon {
    background-color: #3d82e2;
    color: white;
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
    cursor: pointer;
    transition: transform 0.3s ease;
}

.chatbot-icon svg {
    fill: #fff;
}

.chatbot-popup {
    position: fixed;
    bottom: 80px;
    right: 0;
    width: 350px;
    height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    border-radius: 15px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.15);
    overflow: hidden;
    background-color: #ffffff;
    transition: transform 0.3s ease;
    transform: scale(0);
    transform-origin: bottom right;
    margin: 16px;
}

.chatbot-header {
    border-radius: 15px 15px 0 0;
    background: #3d82e2;
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 15px;
}

.chatbot-header .chatbot-icons {
    display: flex;
    align-items: center;
    gap: 12px;
}

.chatbot-header .chatbot-icons h3 {
    margin: 0;
    color: #fff;
    font-size: 16px;
    font-weight: 600;
}

.chatbot-header .header-icon {
    width: 32px;
    height: 32px;
    border-radius: 100px;
}

.chatbot-header .header-icon img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 100px;
}

.chatbot-header .btns {
    display: flex;
    align-items: center;
    gap: 8px;
}

.chatbot-header .btns button {
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 20px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    line-height: 0;
    border-radius: 2px;
    cursor: pointer;
}

.chatbot-header .btns button svg {
    fill: #fff;
}

.chatbot-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 10px;
    position: relative;
}

.message-type {
    width: 100%;
}

.message-type textarea {
    width: 100%;
    border: 1px solid #ccc !important;
    border-radius: 20px;
    padding: 10px 60px 10px 13px;
    resize: none;
    line-height: normal;
}


.message-type textarea::-webkit-scrollbar {
    display: none;
}

.message-type textarea {
    -ms-overflow-style: none;
    scrollbar-width: none;
}





.message-type textarea:focus,
.message-type textarea:focus-visible,
.sent-btn button:focus,
.sent-btn button:focus-visible {
    outline: none;
    box-shadow: none;
}

.chatbot-footer .sent-btn {
    position: absolute;
    top: 15px;
    right: 15px;
    z-index: 9;
}

.chatbot-footer .sent-btn button {
    background: #3d82e2;
    border: 0;
    color: #fff;
    font-size: 20px;
    padding: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    line-height: 0;
    border-radius: 100px;
    cursor: pointer;
}

.chatbot-footer .sent-btn button svg {
    fill: #fff;
}

.chatbot-main {
    position: relative;
    height: Calc(100% - 140px);
    overflow-y: auto;
}

.sent-box {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    width: max-content;
    margin-left: auto;
    max-width: 85%;
    min-width: auto;
}

.time {
    color: #737376;
    font-size: 12px;
    font-weight: 400;
    line-height: 17px;
    white-space: nowrap;
    opacity: 0;
    transition: opacity 150ms;
    margin-bottom: 10px;
}

.chatbot-main .sent-msg {
    background: #3d82e2;
    width: 100%;
    margin: 8px 6px 8px auto;
    border-radius: 20px;
    padding: 10px 14px;
    color: #fff;
    font-size: 14px;
    font-weight: 400;
    max-width: 100%;
    min-width: auto;
    word-break: break-all;
}

.sent-box:hover .time,
.receive-box:hover .time {
    opacity: 1;
}

.receive-box {
    display: flex;
    align-items: flex-end;
    gap: 6px;
    width: max-content;
    margin-right: auto;
    max-width: 85%;
    min-width: auto;
}

.receive-box .img-icons {
    width: 22px;
    height: 22px;
    flex: 0 0 22px;
    border-radius: 100px;
    background: #ededed;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 500;
    margin-left: 10px;
    margin-bottom: 10px;
}

.receive-box .img-icons img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 100px;
}

.chatbot-main .rec-msg {
    background: #f4f4f4;
    width: 100%;
    max-width: 100%;
    min-width: auto;
    margin: 8px auto 8px 2px;
    border-radius: 20px;
    padding: 10px 14px;
    color: #000;
    font-size: 14px;
    font-weight: 400;
    word-break: break-all;
}

.popup-active .chatbot-popup {
    transform: scale(1);
}

.chat-loader {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.chat-loader .spinner {
    width: 50px;
    height: 50px;
    border: 4px solid #e9e9e9;
    border-top-color: #3d82e2;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    to {
        transform: rotate(360deg);
    }
}

.popup-overlay {
    pointer-events: none;
    z-index: 2;
    background: rgb(0 0 0 / 15%);
    position: absolute;
    inset: 0;
    opacity: 0;
    visibility: hidden;
}

.chat-end-active .popup-overlay {
    opacity: 1;
    visibility: visible;
}

.endchat-popup {
    padding: 16px;
    border-radius: 12px;
    background: #fff;
    z-index: 9;
    box-shadow: 0 12px 48px 4px rgba(0, 0, 0, 0.12);
    position: absolute;
    bottom: -100%;
    width: 100%;
    transition: 0.5s ease;
}

.chat-end-active .endchat-popup {
    bottom: 0;
}

.endchat-popup button {
    display: block;
    width: 100%;
    border-radius: 8px;
    padding: 10px 14px;
    text-align: center;
    font-size: 14px;
    line-height: 18px;
    font-weight: 500;
    border: 0;
    margin: 4px 0;
    cursor: pointer;
}

.endchat-popup button.chat-end {
    background: #bd193a;
    color: #fff;
}

.chat-end-active .chatbot-header,
.chat-end-active .chatbot-main {
    pointer-events: none;
}

.three-dots .loading {
    align-items: center;
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    margin-left: 4px;
}

.three-dots .loading__dot {
    animation: dot ease-in-out 1s infinite;
    background-color: #e9e9e9;
    display: inline-block;
    height: 8px;
    width: 8px;
    border-radius: 100px;
}

.three-dots .loading__dot:nth-of-type(2) {
    animation-delay: 0.2s;
}

.three-dots .loading__dot:nth-of-type(3) {
    animation-delay: 0.3s;
}

@keyframes dot {
    0% {
        background-color: #e9e9e9;
        transform: scale(1);
    }

    50% {
        background-color: #8f8d8d;
        transform: scale(1.2);
    }

    100% {
        background-color: #e9e9e9;
        transform: scale(1);
    }
}

/* Chabot Css Over */
.social-login {
    display: flex;
    justify-content: center;
    gap: 20px;
}

.btn-qr div {
    width: 340px;
    background: #2196f3;
    padding: 10px 10px;
    border-radius: 10px;
    margin-bottom: 10px;
    color: #fff;
    font-weight: 600;
}

.btn-qr div p {
    margin: 0;
}

.login-with-google-btn {
    text-decoration: none;
    transition: background-color 0.3s, box-shadow 0.3s;
    padding: 12px 16px 12px 42px;
    border: none;
    border-radius: 3px;
    box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.04), 0 1px 1px rgba(0, 0, 0, 0.25);
    color: #757575 !important;
    font-size: 14px;
    font-weight: 500;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    background-image: url(data:image/svg+xml;base64,PHN2ZyB3aWR0aD0iMTgiIGhlaWdodD0iMTgiIHhtbG5zPSJodHRwOi8vd3d3LnczLm9yZy8yMDAwL3N2ZyI+PGcgZmlsbD0ibm9uZSIgZmlsbC1ydWxlPSJldmVub2RkIj48cGF0aCBkPSJNMTcuNiA5LjJsLS4xLTEuOEg5djMuNGg0LjhDMTMuNiAxMiAxMyAxMyAxMiAxMy42djIuMmgzYTguOCA4LjggMCAwIDAgMi42LTYuNnoiIGZpbGw9IiM0Mjg1RjQiIGZpbGwtcnVsZT0ibm9uemVybyIvPjxwYXRoIGQ9Ik05IDE4YzIuNCAwIDQuNS0uOCA2LTIuMmwtMy0yLjJhNS40IDUuNCAwIDAgMS04LTIuOUgxVjEzYTkgOSAwIDAgMCA4IDV6IiBmaWxsPSIjMzRBODUzIiBmaWxsLXJ1bGU9Im5vbnplcm8iLz48cGF0aCBkPSJNNCAxMC43YTUuNCA1LjQgMCAwIDEgMC0zLjRWNUgxYTkgOSAwIDAgMCAwIDhsMy0yLjN6IiBmaWxsPSIjRkJCQzA1IiBmaWxsLXJ1bGU9Im5vbnplcm8iLz48cGF0aCBkPSJNOSAzLjZjMS4zIDAgMi41LjQgMy40IDEuM0wxNSAyLjNBOSA5IDAgMCAwIDEgNWwzIDIuNGE1LjQgNS40IDAgMCAxIDUtMy43eiIgZmlsbD0iI0VBNDMzNSIgZmlsbC1ydWxlPSJub256ZXJvIi8+PHBhdGggZD0iTTAgMGgxOHYxOEgweiIvPjwvZz48L3N2Zz4=);
    background-color: white;
    background-repeat: no-repeat;
    background-position: 12px 12px;
    border: 1px solid #d8d8d8;
}

.login-with-google-btn:hover {
    box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.04), 0 2px 4px rgba(0, 0, 0, 0.25);
    background-color: #fff;
}

.login-with-google-btn:active {
    background-color: #eeeeee;
}

.login-with-google-btn:focus {
    outline: none;
    box-shadow: 0 -1px 0 rgba(0, 0, 0, 0.04), 0 2px 4px rgba(0, 0, 0, 0.25), 0 0 0 3px #c8dafc;
    background-color: #fff;
}

.apple-btn:hover {
    background-color: #000000;
}

.apple-btn {
    background-color: #000000;
    color: white;
    border: none;
    padding: 10px 20px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Oxygen, Ubuntu, Cantarell, "Fira Sans", "Droid Sans", "Helvetica Neue", sans-serif;
    font-weight: 600;
}

.elementor-container-button {
    display: flex;
    align-items: center;
    gap: 35px;
    padding-top: 35px;
}

.elementor-button.account,
.elementor-button.register {
    background-color: #FF972E;
    border-radius: 8px;
}

.elementor-button.account:hover,
.elementor-button.register:hover {
    background-color: #fff;
    color: #FF972E;
}

.elementor-button-logout,
.elementor-button-login {
    color: #fff;
}

.elementor-button-logout:hover,
.elementor-button-login:hover {
    color: #ff972e;
}

.elementor-popup-modal .dialog-widget-content {
    border-radius: 10px !important;
}

.elementor-popup-modal {
    -webkit-backdrop-filter: blur(25px);
    backdrop-filter: blur(25px);
    background-color: unset !important;
}


.dialog-close-button i {
    color: #2196f3;
    font-size: 20px;
}

.error {
    color: red;
}

#nextPrevious,
#formButton {
    display: flex;
    justify-content: space-between;
}

/* Delta Analysis CSS */
.stepper_container .slider_arrow_custom button:hover {
    color: inherit;
}

.stepper_container {
    max-width: 1000px;
    width: 100%;
    margin: auto;
    background: #fff;
    position: relative;
    border-radius: 10px;
}

.stepper_container .stepper_container_inner {
    padding: 40px 40px 0 40px;
}

.number_Mode {
    position: absolute;
    top: -80px;
    right: 0;
    left: 0;
    margin: auto;
    max-width: 160px;
    height: 160px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 50%;
}

.number_Mode .number_Mode_span {
    border-radius: 50%;
    max-width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    background: #fff;
    border: 10px solid #36b2e4;
    font-size: 26px;
    font-weight: bold;
}

.stepper_container .slider_arrow_custom {
    display: flex;
    align-items: center;
    flex-direction: row;
    justify-content: space-between;
    padding: 30px;
}

.stepper_container .slider_arrow_custom button {
    max-width: 50px;
    height: 50px;
    width: 100%;
    border: 0;
    font-size: 16px;
    border-radius: 10px;
    background: #fff;
    box-shadow: -1px 1px 9px 0 #00000061;
    cursor: pointer;
}

.multi-step {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
}

.slider_arrow_custom button {
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
}

.step-content-custom {
    display: none;
}

.step-content-custom.active {
    display: block;
}

.d-none {
    display: none !important;
}

.d-block {
    display: block !important;
}

.weiter_btn {
    text-align: center;
}

.stepper_content h1 {
    font-size: 50px;
    margin-bottom: 20px;
    color: #1e1e1e;
}

.stepper_content p {
    color: #1e1e1e;
    line-height: 1.6;
    margin-bottom: 15px;
    max-width: 400px;
    width: 100%;
    font-size: 14px;
}

.stepper_container .slider_arrow_custom button.orange-button {
    background-color: #ff972e;
    color: white;
    border: none;
    padding: 10px 30px;
    height: 50px !important;
    border-radius: 5px;
    cursor: pointer;
    max-width: 180px;
    width: 100%;
    font-size: 16px;
    margin-top: 20px;
    transition: background-color 0.3s;
}

.stpper_box {
    display: flex;

}

.orange-button:hover {
    background-color: #e65c00;
}

.owl-image {
    width: 170px;
    height: 170px;
}

.stepper {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.owl-image img {
    width: 100%;
    height: auto;
    transform: scaleX(-1);
}

#regForm {
    font-family: Raleway;
    padding: 40px;
}

.close_icon {
    position: absolute;
    right: 10px;
    top: 10px;
    width: 25px;
    height: 25px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid #4cbde5;
    border-radius: 5px;
}

.close_icon a {
    display: flex;
}

.close_icon a img {
    width: 18px;
    height: 18px;
}

.step_content_box {
    display: flex;
    align-items: center;
    justify-content: space-around;
}

.stepper_title h2 {
    font-size: 50px;
    margin-bottom: 50px;
    color: #1e1e1e;
}

@media (max-width: 768px) {
    .container {
        flex-direction: column;
        text-align: center;
    }

    .content {
        padding-right: 0;
        margin-bottom: 30px;
    }

    .owl-image {
        flex: 0 0 100px;
    }
}

.progress_bar {
    height: 70%;
    width: 20px;
    border-radius: 20px;
    background-color: #f1f1f1;
    position: absolute;
    right: 40px;
    top: 20px;
}

.stepper_title {
    width: 40%;
}

.step_content p {
    font-size: 14px;
    margin-bottom: 20px;
}

.progress_bar_step_3::after {
    content: '';
    background-color: #ff972e;
    height: 100px;
    border-radius: 20px;
    width: 20px;
    position: absolute;
}

.progress_bar_step_4::after {
    content: '';
    background-color: #ff972e;
    height: 200px;
    border-radius: 20px;
    width: 20px;
    position: absolute;
}

.progress_bar_step_5::after {
    content: '';
    background-color: #ff972e;
    height: 350px;
    border-radius: 20px;
    width: 20px;
    position: absolute;
}

.custom-select {
    position: relative;
    font-family: Arial;
}

.custom-select select {
    /* display: none; */
}

.custom-select-container {
    position: relative;
}

/* Hide the default select */
.marital_status,
#workList select,
select#nationality,
#jobList select {
    visibility: hidden;
    position: absolute;
}

/* Custom dropdown display */
.custom-dropdown {
    border: 1px solid #ccc;
    border-radius: 4px;
    background: #fff;
    padding: 8px 12px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.custom-dropdown::after {
    content: '\25BC';
    /* Down arrow */
    font-size: 12px;
}

/* Options dropdown */
.dropdown-options {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #fff;
    border: 1px solid #ccc;
    border-top: none;
    max-height: 200px;
    overflow-y: auto;
    display: none;
    z-index: 1000;
}

.dropdown-options div {
    padding: 8px 12px;
    cursor: pointer;
}

.dropdown-options div:hover {
    background-color: #f0f0f0;
}

.dropdown-options .search-bar {
    padding: 8px 12px;
    border-bottom: 1px solid #ccc;
}

.dropdown-options .search-bar input {
    width: 100%;
    padding: 6px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

.select-selected {
    background-color: #fff;
    border: 1px solid #ededed !important;
    border-radius: 8px;
}

.select-selected:after {
    position: absolute;
    content: "";
    top: 14px;
    right: 10px;
    width: 0;
    height: 0;
    border: 6px solid transparent;
    border-color: #fff transparent transparent transparent;
}

.select-selected.select-arrow-active:after {
    border-color: transparent transparent #fff transparent;
    top: 7px;
}

.select-items div,
.select-selected {
    color: #000;
    padding: 8px 16px;
    border: 1px solid transparent;
    border-color: transparent transparent rgba(0, 0, 0, 0.1) transparent;
    cursor: pointer;
    user-select: none;
}

.select-items {
    position: absolute;
    background-color: #fff;
    top: 100%;
    left: 0;
    right: 0;
    z-index: 99;
}

.select-hide {
    display: none;
}

.select-items div:hover,
.same-as-selected {
    background-color: rgba(0, 0, 0, 0.1);
}

.select-items {
    height: 110px;
    overflow-y: auto;
}

#workList .dropdown-options::-webkit-scrollbar {
    width: 10px;
    height: 10px;
}

/* Track */
#workList .dropdown-options::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px lightgray;
    border-radius: 10px;
    height: 10px;
}

/* Handle */
#workList .dropdown-options::-webkit-scrollbar-thumb {
    background: #36b2e4;
    border-radius: 10px;
    height: 5px;
}


/* Delta Analysis CSS Over */
@media (max-width: 375px) {
    .cookie-popup {
        top: 30% !important;
    }
}

@media (max-width: 575px) {
    .cookie-popup {
        padding: 20px 15px;
        bottom: 0;
        left: 0;
        top: 45%;
        right: 0;
        width: 100%;
        max-width: 100%;
        border-radius: 0;
    }

    .cookie-popup h1 {
        font-size: 18px;
    }

    .cookie-popup p {
        font-size: 12px;
    }

    .cookie-buttons button {
        padding: 8px 14px;
        font-size: 12px;
    }

    .social-login {
        flex-wrap: wrap;
    }
}

@media (max-width: 1199px) {
    .btn-qr {
        position: relative !important;
        transform: translateX(0%) !important;
    }
}

@media (max-width: 991px) {


    #left-section-account,
    #center-section-account {
        width: 100% !important;
    }

    #main-section-account .elementor-container {
        flex-wrap: wrap;
    }

    #main-section-account {
        padding: 0 10px;
    }

    .dashboard_section {
        margin: 0;
    }

    .elementor-1946 .elementor-element.elementor-element-e7b9eaa>.elementor-element-populated,
    .elementor-1946 .elementor-element.elementor-element-29d908b>.elementor-element-populated,
    .elementor-1946 .elementor-element.elementor-element-92d4a7b>.elementor-element-populated {
        margin: 0 !important;
    }

    .dashboard_section,
    .dashboard_box {
        max-width: 100% !important;
    }

    #right-section-account {
        width: 100%;
        margin: 10px 0;
    }

    #tab-container .tab-btn {
        display: flex;
        flex-wrap: wrap;
        flex-direction: column-reverse;
        align-items: inherit
    }
}

@media (max-width: 374px) {
    .chatbot-popup {
        width: 280px;
    }
}