.banner-top.style-1 {
    background-size: cover;
    padding: 150px 0 99px;
}


.header {
    position: relative;
}

.sinbad-logo {
    object-fit: contain;
    height: 100px;
}

.header {
    height: 110px;
}

.header.is-fixed {
    height: 100px;
}

.btn-action {
    max-width: auto;
    justify-content: center;
}

.custom-radius {
    border-radius: 1rem;
}

.home-main .about .about__content {
    padding-top: 0;
}

.icon-box .icon {
    color: #fff;
}

.list-icon-box::before {
    height: 85%;
}

.choose__box-icon .icon {
    color: #fff;
}


.banner-top.style-1 .banner-top__content .sale-top {
    display: inline-flex;
    max-width: unset;
}

.banner-top.style-1 .banner-top__content .sale-top p {
    padding-right: 30px;
}

.home-main .about .about__image {
    padding-left: 0;
}

.allo-dist .allo-dist__main .menu-tab li {
    flex: 1;
    text-align: center;
}

.allo-dist .allo-dist__main .content-tab .content-inner .chart-bar {
    width: 100% !important;
}

#myChart1,
#myChart2 {
    height: 355px !important;
}



@media only screen and (max-width: 767px) {
    .banner-top.style-1 {
        position: relative;
        padding: 50px 0 99px;
    }

    .banner-top.style-1::before {
        content: "";
        position: absolute;
        inset: 0;
        background: rgba(5, 2, 49, 0.7);
        pointer-events: none;
        z-index: 1;
    }

    .banner-top.style-1 .banner-top__content {
        position: relative;
        z-index: 2;
    }

    .banner-top.style-1 .banner-top__content .sale-top {
        padding-right: 5px;
        font-size: 14px;
    }

    .banner-top.style-1 .banner-top__content .sale-top a {
        padding: 0;
        text-align: center;
    }

    .banner-top.style-1 .banner-top__content .sale-top p {
        padding-left: 5px;
        padding-right: 5px;
        text-align: center;
    }


}


.logo-footer {
    height: 150px;
}

.footer .list-social {
    flex-wrap: wrap;
    column-gap: 8px;
    row-gap: 12px;
}

.footer .list-social li {
    margin-right: 0;
}

.about.style-3 .about__content .sub-title {
    color: var(--color-secondary);
}






#chat-widget {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 3;
    font-family: Arial, Helvetica, sans-serif;
}

#chat-toggle {
    width: 80px;
    height: 80px;
    border: none;
    border-radius: 50%;
    padding: 0;
    cursor: pointer;
    background: #050231;
    box-shadow: 0 4px 14px rgba(0, 0, 0, .28);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform .2s, box-shadow .2s;
}

#chat-toggle:hover {
    transform: scale(1.06);
    box-shadow: 0 6px 18px rgba(0, 0, 0, .35);
}

#chat-toggle img {
    width: 80%;
    height: 80%;
    object-fit: cover;
    border-radius: 50%;
    border: 2px solid #00B3E6;
}

#chat-greeting {
    position: absolute;
    left: 82px;
    bottom: 22px;
    width: 250px;
    background: #004A6E;
    color: #fff;
    padding: .55rem .85rem;
    border-radius: .9rem;
    font-size: 14px;
    line-height: 1.4;
    opacity: 0;
    transform: translateY(10px);
    pointer-events: none;
    transition: opacity .3s, transform .3s;
    box-shadow: 0 3px 10px rgba(0, 0, 0, .25);
}

#chat-greeting.show {
    opacity: 1;
    transform: translateY(0);
}

#sinbad-chatbox {
    --user: #00B3E6;
    --bot: #004A6E;
    width: 350px;
    height: 450px;
    max-height: none;
    background: #fdfdfd;
    border: 1px solid #004A6E;
    border-radius: 1rem;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    position: absolute;
    bottom: 88px;
    left: 0;
    transform: scale(0);
    transform-origin: bottom left;
    transition: transform .25s;
    box-shadow: 0 12px 32px rgba(0, 0, 0, .35);
}

#chat-widget.open #sinbad-chatbox {
    transform: scale(1);
}

#sinbad-chatbox .chat-header {
    padding: 1rem;
    background: #050231;
    color: #fff;
    display: flex;
    align-items: center;
    gap: .65rem;
}

#sinbad-chatbox .chat-header img {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    border: 2px solid #00B3E6;
}

#chat-close {
    margin-left: auto;
    font-size: 22px;
    cursor: pointer;
    color: #ffffffb0;
    transition: color .2s;
}

#chat-close:hover {
    color: #fff;
}

#sinbad-chatbox .chat-body {
    flex: 1;
    overflow-y: auto;
    padding: 1.1rem;
    scroll-behavior: smooth;
}

.msg {
    max-width: 80%;
    padding: .6rem .9rem;
    border-radius: 1rem;
    margin-bottom: .5rem;
    word-wrap: break-word;
    font-size: 15px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, .15);
}

.msg.user {
    align-self: flex-end;
    background: var(--user);
    color: #002436;
    font-weight: 500;
    color: #fff;
    border-bottom-right-radius: 0;
    align-self: flex-end;
    text-align: right;
}

.msg.bot {
    align-self: flex-start;
    background: var(--bot);
    color: #fff;
    border-bottom-left-radius: 0;
    text-align: left;
}

#sinbad-chatbox .chat-footer {
    display: flex;
    gap: .7rem;
    padding: .7rem;
    border-top: 1px solid #e5e7eb;
    background: #ffffff;
}

#sinbad-chatbox input[type=text] {
    flex: 1;
    border: 1px solid #d1d5db;
    border-radius: .55rem;
    padding: .55rem .75rem;
    font-size: 15px;
    color: #111;
    background: #fff;
    transition: border-color .2s;
    height: 100%;
    margin: 0;
}

#sinbad-chatbox input[type=text]:focus {
    outline: none;
    border-color: #00B3E6;
}

#sinbad-chatbox input::placeholder {
    color: #8a96a8;
    opacity: 1
}


#sinbad-chatbox button {
    border: none;
    background: #00B3E6;
    color: #fff;
    border-radius: .55rem;
    padding: 0;
    font-weight: 600;
    transition: background .2s, box-shadow .2s;
    height: 100%;
    padding: .5rem 1rem;
}

#sinbad-chatbox button:hover:not(:disabled) {
    background: #00c8ff;
    box-shadow: 0 2px 8px rgba(0, 179, 230, .45);
}

#sinbad-chatbox button:disabled {
    opacity: .6;
}

#sinbad-chatbox .chat-body::-webkit-scrollbar {
    width: 6px;
}

#sinbad-chatbox .chat-body::-webkit-scrollbar-thumb {
    background: #d0d5dd;
    border-radius: 3px;
}

#chat-send i {
    font-size: 18px;
}

#sinbad-chatbox .chat-body {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding: 1rem;
    overflow-y: auto;
}

#sinbad-chatbox .chat-body .msg {
    width: 80%;
    box-sizing: border-box;
}





@media (max-width:600px) {
    #sinbad-chatbox {
        width: calc(100vw - 64px);
        left: 0;
        right: 0;
        margin: 0 16px;
        max-height: 70vh;
        transform-origin: bottom center;
    }

    #chat-greeting {
        max-width: 60vw;
    }
}


.header .header__right .main-nav .menu li {
    padding-right: 30px;
}


.header .header__right .group-button {
    margin-left: 40px;
}

.header .header__right .main-nav .menu li a {
    font-size: 15px;
}


.header #main-nav-mobi ul li {
    background: linear-gradient(294.72deg, #48D6D2 9.05%, #4388DD 79.28%);
}

.header #main-nav-mobi ul li a {
    color: #fff;
}


.menu-img {
    height: 40px;
    border-radius: 8px;
}

@media (min-width: 992px) {
    .menu-img {
       height: 30px;
    }
}