/* Front-end custom css */

/* Reserved Seating */
.modal-big .modal-container {
    width: 100%;
}

.modal-big .modal-container .modal-content {
    min-height: 800px;
}

.modal-small .modal-container {
    width: auto;
    margin: auto;
}

.modal-small .modal-container .modal-content {
    min-height: auto;
}

.is-relative {
    position: relative;
}

.seat-container {
    position: relative;
    overflow: auto;
    width: 800px;
    margin: 0 auto;
    padding: 0;
    display: block;
    transform-origin: 0 0;


}

.seat-img {
    padding: 0 !important;
    margin: 0 !important;
    width: 100% !important;
    border-radius: 8px;
    border: 2px solid #777;
}

.seat-mark {
    position: absolute;
    z-index: 999;
    height: 24px;
    width: 24px;
    border-radius: 8px;
    background-color: #1b89ef;
    color: #fff;
    line-height: 2.5 !important;
    text-align: center;
    box-shadow: 1px 1px 5px -2px #000;
    font-size: 8px !important;
    font-weight: 800 !important;
    cursor: pointer;
}

.seat-disabled {
    background-color: #999;
    cursor: not-allowed !important;
}

.seat-reserved {
    background-color: #bd3372;
    cursor: not-allowed !important;
}

.seat-select {
    background-color: #38c172;
}

.seat-disabled-col {
    color: #999;
}

.seat-reserved-col {
    color: #bd3372;
}

.seat-select-col {
    color: #38c172;
}

.seat-available-col {
    color: #1b89ef;
}

.p-0 {
    padding: 0 !important;
}

.m-0 {
    margin: 0 !important;
}

.w-100 {
    width: 100% !important;
}

.m-auto {
    margin: auto;
}

.no-display {
    display: none;
}

.seat-checkbox {
    position: absolute;
    z-index: 999999;
    height: 24px;
    width: 24px;
    padding: 0 !important;
    margin: 0 !important;
    display: none;
    cursor: pointer;
}


/* Authorize.net */
.wrapper-cc {
    display: flex;
    padding: 2rem;
}

@media screen and (max-width: 700px),
(max-height: 500px) {
    .wrapper-cc {
        flex-wrap: wrap;
        flex-direction: column;
    }
}

.card-form {
    max-width: 570px;
    margin: auto;
    width: 100%;
}

@media screen and (max-width: 576px) {
    .card-form {
        margin: 0 auto;
    }
}

.card-form__inner {
    background: #fff;
    box-shadow: 0 30px 60px 0 rgba(90, 116, 148, 0.4);
    border-radius: 10px;
    padding: 35px;
    padding-top: 180px;
}

@media screen and (max-width: 480px) {
    .card-form__inner {
        padding: 25px;
        padding-top: 165px;
    }
}

@media screen and (max-width: 360px) {
    .card-form__inner {
        padding: 15px;
        padding-top: 165px;
    }
}

.card-form__row {
    display: flex;
    align-items: flex-start;
}

@media screen and (max-width: 480px) {
    .card-form__row {
        flex-wrap: wrap;
    }
}

.card-form__col {
    flex: auto;
    margin-right: 35px;
}

.card-form__col:last-child {
    margin-right: 0;
}

@media screen and (max-width: 480px) {
    .card-form__col {
        margin-right: 0;
        flex: unset;
        width: 100%;
        margin-bottom: 20px;
    }

    .card-form__col:last-child {
        margin-bottom: 0;
    }
}

.card-form__col.-cvv {
    max-width: 150px;
}

@media screen and (max-width: 480px) {
    .card-form__col.-cvv {
        max-width: initial;
    }
}

.card-form__group {
    display: flex;
    align-items: flex-start;
    flex-wrap: wrap;
}

.card-form__group .card-input__input {
    flex: 1;
    margin-right: 15px;
}

.card-form__group .card-input__input:last-child {
    margin-right: 0;
}

.card-form__button {
    width: 100%;
    height: 55px;
    background: #2364d2;
    border: none;
    border-radius: 5px;
    font-size: 22px;
    font-weight: 500;
    box-shadow: 3px 10px 20px 0px rgba(35, 100, 210, 0.3);
    color: #fff;
    margin-top: 20px;
    cursor: pointer;
}

@media screen and (max-width: 480px) {
    .card-form__button {
        margin-top: 10px;
    }
}

.card-item {
    max-width: 430px;
    height: 270px;
    margin-left: auto;
    margin-right: auto;
    position: relative;
    z-index: 2;
    width: 100%;
}

@media screen and (max-width: 480px) {
    .card-item {
        max-width: 310px;
        height: 220px;
        width: 90%;
    }
}

@media screen and (max-width: 360px) {
    .card-item {
        height: 180px;
    }
}

.card-item.-active .card-item__side.-front {
    transform: perspective(1000px) rotateY(180deg) rotateX(0deg) rotateZ(0deg);
}

.card-item.-active .card-item__side.-back {
    transform: perspective(1000px) rotateY(0) rotateX(0deg) rotateZ(0deg);
}

.card-item__focus {
    position: absolute;
    z-index: 3;
    border-radius: 5px;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    transition: all 0.35s cubic-bezier(0.71, 0.03, 0.56, 0.85);
    opacity: 0;
    pointer-events: none;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.65);
}

.card-item__focus:after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    background: #08142f;
    height: 100%;
    border-radius: 5px;
    filter: blur(25px);
    opacity: 0.5;
}

.card-item__focus.-active {
    opacity: 1;
}

.card-item__side {
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 60px 0 rgba(14, 42, 90, 0.55);
    transform: perspective(2000px) rotateY(0deg) rotateX(0deg) rotate(0deg);
    transform-style: preserve-3d;
    transition: all 0.8s cubic-bezier(0.71, 0.03, 0.56, 0.85);
    backface-visibility: hidden;
    height: 100%;
}

.card-item__side.-back {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    transform: perspective(2000px) rotateY(-180deg) rotateX(0deg) rotate(0deg);
    z-index: 2;
    padding: 0;
    height: 100%;
}

.card-item__side.-back .card-item__cover {
    transform: rotateY(-180deg);
}

.card-item__bg {
    max-width: 100%;
    display: block;
    max-height: 100%;
    height: 100%;
    width: 100%;
    object-fit: cover;
}

.card-item__cover {
    height: 100%;
    background-color: #1c1d27;
    position: absolute;
    height: 100%;
    background-color: #1c1d27;
    left: 0;
    top: 0;
    width: 100%;
    border-radius: 15px;
    overflow: hidden;
}

.card-item__cover:after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 2, 29, 0.45);
}

.card-item__top {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 40px;
    padding: 0 10px;
}

@media screen and (max-width: 480px) {
    .card-item__top {
        margin-bottom: 25px;
    }
}

@media screen and (max-width: 360px) {
    .card-item__top {
        margin-bottom: 15px;
    }
}

.card-item__chip {
    width: 60px;
}

@media screen and (max-width: 480px) {
    .card-item__chip {
        width: 50px;
    }
}

@media screen and (max-width: 360px) {
    .card-item__chip {
        width: 40px;
    }
}

.card-item__type {
    height: 45px;
    position: relative;
    display: flex;
    justify-content: flex-end;
    max-width: 100px;
    margin-left: auto;
    width: 100%;
}

@media screen and (max-width: 480px) {
    .card-item__type {
        height: 40px;
        max-width: 90px;
    }
}

@media screen and (max-width: 360px) {
    .card-item__type {
        height: 30px;
    }
}

.card-item__typeImg {
    max-width: 100%;
    object-fit: contain;
    max-height: 100%;
    object-position: top right;
}

.card-item__info {
    color: #fff;
    width: 100%;
    max-width: calc(100% - 85px);
    padding: 10px 15px;
    font-weight: 500;
    display: block;
    cursor: pointer;
}

@media screen and (max-width: 480px) {
    .card-item__info {
        padding: 10px;
    }
}

.card-item__holder {
    opacity: 0.7;
    font-size: 13px;
    margin-bottom: 6px;
}

@media screen and (max-width: 480px) {
    .card-item__holder {
        font-size: 12px;
        margin-bottom: 5px;
    }
}

.card-item__wrapper {
    padding: 25px 15px;
    position: relative;
    z-index: 4;
    height: 100%;
    text-shadow: 7px 6px 10px rgba(14, 42, 90, 0.8);
    user-select: none;
}

@media screen and (max-width: 480px) {
    .card-item__wrapper {
        padding: 20px 10px;
    }
}

.card-item__name {
    font-size: 18px;
    line-height: 1;
    white-space: nowrap;
    max-width: 100%;
    overflow: hidden;
    text-overflow: ellipsis;
    text-transform: uppercase;
}

@media screen and (max-width: 480px) {
    .card-item__name {
        font-size: 16px;
    }
}

.card-item__nameItem {
    display: inline-block;
    min-width: 8px;
    position: relative;
}

.card-item__number {
    font-weight: 500;
    line-height: 1;
    color: #fff;
    font-size: 27px;
    margin-bottom: 35px;
    display: inline-block;
    padding: 10px 15px;
    cursor: pointer;
}

@media screen and (max-width: 480px) {
    .card-item__number {
        font-size: 21px;
        margin-bottom: 15px;
        padding: 10px 10px;
    }
}

@media screen and (max-width: 360px) {
    .card-item__number {
        font-size: 19px;
        margin-bottom: 10px;
        padding: 10px 10px;
    }
}

.card-item__numberItem {
    width: 16px;
    display: inline-block;
}

.card-item__numberItem.-active {
    width: 30px;
}

@media screen and (max-width: 480px) {
    .card-item__numberItem {
        width: 13px;
    }

    .card-item__numberItem.-active {
        width: 16px;
    }
}

@media screen and (max-width: 360px) {
    .card-item__numberItem {
        width: 12px;
    }

    .card-item__numberItem.-active {
        width: 8px;
    }
}

.card-item__content {
    color: #fff;
    display: flex;
    align-items: flex-start;
}

.card-item__date {
    flex-wrap: wrap;
    font-size: 18px;
    margin-left: auto;
    padding: 10px;
    display: inline-flex;
    width: 80px;
    white-space: nowrap;
    flex-shrink: 0;
    cursor: pointer;
}

@media screen and (max-width: 480px) {
    .card-item__date {
        font-size: 16px;
    }
}

.card-item__dateItem {
    position: relative;
}

.card-item__dateItem span {
    width: 22px;
    display: inline-block;
}

.card-item__dateTitle {
    opacity: 0.7;
    font-size: 13px;
    padding-bottom: 6px;
    width: 100%;
}

@media screen and (max-width: 480px) {
    .card-item__dateTitle {
        font-size: 12px;
        padding-bottom: 5px;
    }
}

.card-item__band {
    background: rgba(0, 0, 19, 0.8);
    width: 100%;
    height: 50px;
    margin-top: 30px;
    position: relative;
    z-index: 2;
}

@media screen and (max-width: 480px) {
    .card-item__band {
        margin-top: 20px;
    }
}

@media screen and (max-width: 360px) {
    .card-item__band {
        height: 40px;
        margin-top: 10px;
    }
}

.card-item__cvv {
    text-align: right;
    position: relative;
    z-index: 2;
    padding: 15px;
}

.card-item__cvv .card-item__type {
    opacity: 0.7;
}

@media screen and (max-width: 360px) {
    .card-item__cvv {
        padding: 10px 15px;
    }
}

.card-item__cvvTitle {
    padding-right: 10px;
    font-size: 15px;
    font-weight: 500;
    color: #fff;
    margin-bottom: 5px;
}

.card-item__cvvBand {
    height: 45px;
    background: #fff;
    margin-bottom: 30px;
    text-align: right;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-right: 10px;
    color: #1a3b5d;
    font-size: 18px;
    border-radius: 4px;
    box-shadow: 0px 10px 20px -7px rgba(32, 56, 117, 0.35);
}

@media screen and (max-width: 480px) {
    .card-item__cvvBand {
        height: 40px;
        margin-bottom: 20px;
    }
}

@media screen and (max-width: 360px) {
    .card-item__cvvBand {
        margin-bottom: 15px;
    }

}

.card-list {
    margin-bottom: -130px;
}

@media screen and (max-width: 480px) {
    .card-list {
        margin-bottom: -120px;
    }

    .site-slogan {
        text-wrap: wrap;
    }
}

.nav-header.header-position .navbar .site-slogan {
    font-size: 0.8rem;
    font-weight: 600;
    margin-left: 3.4rem !important;
    margin-top: 0.2rem !important;
}

.card-input {
    margin-bottom: 20px;
}

.card-input__label {
    font-size: 14px;
    margin-bottom: 5px;
    font-weight: 500;
    color: #1a3b5d;
    width: 100%;
    display: block;
    user-select: none;
}

.card-input__input {
    width: 100%;
    height: 50px;
    border-radius: 5px;
    box-shadow: none;
    border: 1px solid #ced6e0;
    transition: all 0.3s ease-in-out;
    font-size: 18px;
    padding: 5px 15px;
    background: none;
    color: #1a3b5d;
}

.card-input__input:hover,
.card-input__input:focus {
    border-color: #3d9cff;
}

.card-input__input:focus {
    box-shadow: 0px 10px 20px -13px rgba(32, 56, 117, 0.35);
}

.card-input__input.-select {
    -webkit-appearance: none;
    background-image: url('data:image/png; base64,iVBORw0KGgoAAAANSUhEUgAAADIAAAAeCAYAAABuUU38AAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAUxJREFUeNrM1sEJwkAQBdCsngXPHsQO9O5FS7AAMVYgdqAd2IGCDWgFnryLFQiCZ8EGnJUNimiyM/tnk4HNEAg/8y6ZmMRVqz9eUJvRaSbvutCZ347bXVJy/ZnvTmdJ862Me+hAbZCTs6GHpyUi1tTSvPnqTpoWZPUa7W7ncT3vK4h4zVejy8QzM3WhVUO8ykI6jOxoGA4ig3BLHcNFSCGqGAkig2yqgpEiMsjSfY9LxYQg7L6r0X6wS29YJiYQYecemY+wHrXD1+bklGhpAhBDeu/JfIVGxaAQ9sb8CI+CQSJ+QmJg0Ii/EE2MBiIXooHRQhRCkBhNhBcEhLkwf05ZCG8ICCOpk0MULmvDSY2M8UawIRExLIQIEgHDRoghihgRIgiigBEjgiFATBACAgFgghEwSAAGgoBCBBgYAg5hYKAIFYgHBo6w9RRgAFfy160QuV8NAAAAAElFTkSuQmCC');
    background-size: 12px;
    background-position: 90% center;
    background-repeat: no-repeat;
    padding-right: 30px;
}

.slide-fade-up-enter-active {
    transition: all 0.25s ease-in-out;
    transition-delay: 0.1s;
    position: relative;
}

.slide-fade-up-leave-active {
    transition: all 0.25s ease-in-out;
    position: absolute;
}

.slide-fade-up-enter {
    opacity: 0;
    transform: translateY(15px);
    pointer-events: none;
}

.slide-fade-up-leave-to {
    opacity: 0;
    transform: translateY(-15px);
    pointer-events: none;
}

.slide-fade-right-enter-active {
    transition: all 0.25s ease-in-out;
    transition-delay: 0.1s;
    position: relative;
}

.slide-fade-right-leave-active {
    transition: all 0.25s ease-in-out;
    position: absolute;
}

.slide-fade-right-enter {
    opacity: 0;
    transform: translateX(10px) rotate(45deg);
    pointer-events: none;
}

.slide-fade-right-leave-to {
    opacity: 0;
    transform: translateX(-10px) rotate(45deg);
    pointer-events: none;
}

.iframe-full iframe {
    width: 100%;
    height: 80vh;
}

.star-active {
    color: #FBC02D;
    margin-top: 10px;
    margin-bottom: 10px
}

.star-active:hover {
    color: #F9A825;
    cursor: pointer
}

.star-inactive {
    color: #CFD8DC;
    margin-top: 10px;
    margin-bottom: 10px
}

.profile-pic {
    width: 10%;
}

.star-rating {
    direction: rtl;
    display: inline-block;
    padding: 20px
}

.star-rating input[type=radio] {
    display: none
}

.star-rating label {
    color: #bbb;
    font-size: 18px;
    padding: 0;
    cursor: pointer;
    -webkit-transition: all .3s ease-in-out;
    transition: all .3s ease-in-out
}

.star-rating label:hover,
.star-rating label:hover~label,
.star-rating input[type=radio]:checked~label {
    color: #f2b600
}

#review_modal {
    display: none;
}

.VueCarousel-pagination {
    position: absolute;
    bottom: 2%;
}

#card-element {
    margin-bottom: 2rem;
}

.w-95 {
    width: 95% !important;
}

@media (max-width: 767px) {
    .ticket-title {
        font-size: .7rem;
    }

    .ticket-price {
        font-size: .7rem;
    }

    .w-m-50 {
        width: 50% !important;
    }
}

.ticket-selected-text {
    color: #38c172;
}


/* api-seat-img */
.api-seat-img {
    padding: 0 !important;
    margin: 0 !important;
    width: 100%;
    border-radius: 8px;
    border: 2px solid #777;
}

@media (max-width: 768px) {
    .api-seat-img {
        width: unset;
    }

}


/* api-seat-img */

#loading-screen {
    z-index: 99999;
    position: fixed;
    overflow: hidden;
    top: 0;
    display: flex;
    bottom: 0;
    left: 0;
    right: 0;
    justify-content: center;
    width: 100%;
    align-items: center;
    height: 100%;
    background: linear-gradient(155deg, #7f18a8 0%, #1d0475 50%, #7c17a7 100%);
}

.invalid-feedback {
    display: block;
}

.custom-dropdown {
    position: relative;

}

.dropdownmenu {
    list-style: none;
    background-color: #fff;
    border: 1px solid #ccc;
    border: none;
    border-radius: 10px;
    display: inline-block;
    position: absolute;
    width: 208px;
    /* top: 200px; */
    right: 150px;
    z-index: 99999;
}

.dropdownmenu li {
    position: relative;
    left: -30px;
}

.dropdownmenu a {
    width: 200px;
    padding: 1px;
}


/* */

@media only screen and (min-width: 1200px) {
    .dropdownmenu {
        position: absolute;
        /* top: 200px; */
        right: 130px;
    }
}

@media only screen and (max-width: 1200px) {
    .dropdownmenu {
        position: absolute;
        top: -12px;
        right: 90px;
        z-index: 99999;
    }
}

/*css for ticket seating chart 13 june*/



/* Dtech CSS Start */

/* nav Start */
.bg-white .navbar .nav-link {
    color: #343a40 !important;
}
.bg-white .navbar-toggler .icon-bar {
    background-color: #212529 !important;
}

.nav-header.header-position .navbar .site-name, .nav-header.header-position .navbar .site-slogan{
    color: #000;
}

div#navbar_vue.nav-header.menu-fixed{
    background: #fff;
}
/* nav End */

/* banner css start */
    .banner_margin{
        margin-top: 61px;
    }
  .blinking_pointer_icon {
      font-size: 24px;
      display: flex;
      align-items: center;
      gap: 10px;
      padding-left: 12px;
      padding-right: 12px;
      justify-content: center;
      /* animation: blink-color 1s infinite; */
    }

    /* @keyframes blink-color {
      0%, 100% { color: red; }
      50%      { color: blue; }
    } */

    .arrow i{
        font-size: 26px !important;
        color: #1F2326;
        font-weight: 600;
      /* animation: blink-arrow 1s infinite; */
    }

    /* @keyframes blink-arrow {
      0%   { opacity: 1; transform: translateX(0); }
      50%  { opacity: 1; transform: translateX(5px); }
      100% { opacity: 1; transform: translateX(0); }
    }

    .arrow.backward {
      animation: blink-arrow-back 1s infinite;
    }

    @keyframes blink-arrow-back {
      0%   { opacity: 1; transform: translateX(0); }
      50%  { opacity: 1; transform: translateX(-5px); }
      100% { opacity: 1; transform: translateX(0); }
    } */


    .combo-btn  {
        display: inline-block;
        background-color: #F96738;
        color: #ffffff;
        text-decoration: none;
        text-align: center;
        padding: 8px 20px;
        font-size: 19px;
        font-weight: 400;
        border-radius: 20px;
        transform-origin: center center;
        animation: pulseKey 2s infinite ease-in-out;
    }

    @keyframes pulseKey {
      0%, 100% {
        transform: scale(1);
      }
      50% {
        transform: scale(1.1);
      }
    }




.combo-btn:hover {
  animation-play-state: paused;
  text-decoration: none;
  color: #fff;
}

/* 
.combo-btn {
    
    font-size: 19px;
    text-decoration: none;
    border-radius: 13px;
    color: #fff;
    font-weight: 400;
    background: linear-gradient(45deg, #ff416c, #ff4b2b, #2176ff, #212425);
    background-size: 600% 600%;
    animation: rainbowCombo 8s ease infinite, bounceCombo 1.8s infinite;
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.3);
    transition: transform 0.2s;
    border: none;
    display: inline-block;
}


@keyframes rainbowCombo {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes bounceCombo {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-6px); }
}

.blinking-text {
      font-size: 24px;
      font-weight: bold;
      animation: blink-color 1s infinite;
    }

@keyframes blink-color {
    0%   { color: red; }
    50%  { color: blue; }
    100% { color: red; }
} */





.cover-img-bg {
    background-size: contain;
    position: relative;
    text-align: center;
    height: 100vh;
}
/* banner css end */

/* Search bar start */



/* Search bar end */


/* blog archive Start */
.thumb_img_same_size {
    min-height: 250px;
    max-height: 250px;
    height: 100%;
    width: 100%;
    object-fit: cover;
    object-position: center center;
}
/* blog archive End*/

/*  Footer Start */
.footer_logo_bg_white {
    background: #fff;
    padding: 15px 9px;
    border-radius: 20px;
    min-width: 130px;
}

/* Footer End */


/* admin event page start */
.orientation-message { 
    display: none; 
    position: absolute; 
    top: 50%; 
    left: 50%; 
    transform: translate(-50%, -50%); 
    background: rgba(0, 0, 0, 0.7); 
    color: white; 
    padding: 20px; 
    border-radius: 10px; 
    text-align: center; 
}
.rotate_img_design{
    max-width: 50px;
    display: block;
    margin: auto;
}
/* admin event page end*/


/* Manage banner on event page in mobile start */

.banner_for_mobile{
    display: none;
}
.banner_for_mobile img{
    width: 100%;
    object-fit: contain;
}
@media screen and (max-width: 768px) {
  .banner_for_mobile{
        display: block;
        margin-top: 61px;
    }
    .hide_in_mobile{
        display: none;
    }
}

@media screen and (max-width: 768px) {
  .banner_for_mobile{
        display: block;
        margin-top: 61px;
    }
    .hide_in_mobile{
        display: none;
    }
}

@media screen and (max-width: 481px) {
  .banner_for_mobile{
        margin-top: 86px;
    }
}

/* Manage banner on event page in mobile start */


/* Dtech CSS End */




/* Dtech media query Start */

@media screen and (min-width: 576px) and (max-width: 992px){
    .search_responsive{
        border-radius: 1rem !important;
    }
  .search_field_col{
    flex: 1 0 100% !important;
  }
}



@media (max-width: 1024px) {
    .blinking_pointer_icon {
        font-size: 20px;
        line-height: 1;
        gap: 8px;
    }
    .arrow i {
    font-size: 21px !important;
    }
    .cover-img-bg{
        height: 70vh;
    }

    .cover-img-bg .cover-img {
        height: 100% !important;
        width: 100%;
    }
    .cover-img-bg .cover-img{
        object-fit: cover !important;
    }

    #hide_on_potrate canvas{
            max-width: 854px !important;
            width: 100% !important;
    }
}


/* Dtech media query End */




/* ai css */

.ai-trigger-btn {
    background: linear-gradient(135deg,#06b6d4,#22c55e);
    border: none;
    border-radius: 12px;
    padding: 12px 20px;
    color: #fff;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: all .3s ease;
    box-shadow: 0 4px 15px #06b6d44d;
    position: relative;
    overflow: hidden
}

.ai-trigger-btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,transparent,rgba(255,255,255,.2),transparent);
    transition: left .5s
}

.ai-trigger-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px #2276ff66
}

.ai-trigger-btn:hover:before {
    left: 100%
}

.ai-trigger-btn:active {
    transform: translateY(0)
}

.ai-btn-content {
    display: flex;
    align-items: center;
    gap: 8px;
    position: relative;
    z-index: 1;
    color: #fff
}

.ai-icon-wrapper {
    background: #fff3;
    border-radius: 8px;
    padding: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px)
}

.ai-btn-text {
    font-weight: 600;
    letter-spacing: .5px;
    color: #fff
}

.ai-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #0009;
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    animation: aiFadeIn .3s ease
}

.ai-modal-container {
    background: var(--bg-color);
    border-radius: 20px;
    width: 90%;
    max-width: 600px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 25px 50px #00000040;
    animation: aiSlideUp .3s ease;
    border: 1px solid #e5e7eb
}

.ai-modal-header {
    background: linear-gradient(135deg,#06b6d4,#22c55e);
    color: var(--white);
    padding: 24px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: relative;
    overflow: hidden
}

.ai-modal-header:before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: .3
}

.ai-modal-title-section {
    display: flex;
    align-items: center;
    gap: 16px;
    position: relative;
    z-index: 1;
    color: #fff
}

.ai-title-icon {
    background: #fff3;
    border-radius: 12px;
    padding: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.1)
}

.ai-title-content h3 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
    text-shadow: 0 2px 4px rgba(0,0,0,.1)
}

.ai-modal-subtitle {
    margin: 4px 0 0;
    opacity: .9;
    font-size: 14px;
    font-weight: 400
}

.ai-close-btn {
    background: #fff3;
    border: none;
    border-radius: 50%;
    width: 40px;
    height: 40px;
    color: #fff;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all .3s ease;
    -webkit-backdrop-filter: blur(10px);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255,255,255,.1);
    position: relative;
    z-index: 1
}

.ai-close-btn:hover {
    background: #ffffff4d;
    transform: scale(1.1)
}

.ai-modal-body {
    padding: 32px;
    background: var(--bg-color)
}

.ai-content-section {
    display: flex;
    flex-direction: column;
    gap: 24px
}

.ai-input-section {
    display: flex;
    flex-direction: column;
    gap: 16px
}

.ai-input-label {
    display: flex;
    align-items: center;
    gap: 8px;
    font-weight: 600;
    color: var(--text-color);
    font-size: 16px
}

.ai-label-icon {
    color: #f59e0b;
    animation: aiPulse 2s infinite
}

.ai-textarea-wrapper {
    position: relative
}

.ai-textarea {
    width: 100%;
    border: 2px solid #e5e7eb;
    border-radius: 12px;
    padding: 16px;
    font-size: 14px;
    line-height: 1.5;
    resize: vertical;
    min-height: 120px;
    transition: all .3s ease;
    font-family: inherit;
    background: var(--bg-color);
    color: var(--text-color)
}

.ai-textarea:focus {
    outline: none;
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(var(--primary-color-rgb),.1)
}

.ai-textarea::-moz-placeholder {
    color: var(--text-muted)
}

.ai-textarea::placeholder {
    color: var(--text-muted)
}

.ai-textarea-footer {
    display: flex;
    justify-content: flex-end;
    margin-top: 8px
}

.ai-char-count {
    font-size: 12px;
    color: var(--text-muted)
}

.ai-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px
}

.ai-voice-section {
    display: flex;
    align-items: center;
    gap: 12px
}

.ai-voice-btn {
    background: var(--bg-secondary);
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 8px 16px;
    color: var(--text-color);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: all .3s ease
}

.ai-voice-btn:hover:not(:disabled) {
    background: var(--bg-hover);
    border-color: #d1d5db
}

.ai-voice-btn:disabled {
    opacity: .5;
    cursor: not-allowed
}

.ai-voice-btn.ai-voice-active {
    background: #ef4444;
    border-color: #ef4444;
    color: var(--white);
    animation: aiPulse 1s infinite
}

.ai-voice-btn.ai-voice-active:hover {
    background: #eb1515;
    border-color: #eb1515
}

.ai-voice-timer {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: #ef4444;
    font-weight: 500
}

.ai-timer-dot {
    width: 8px;
    height: 8px;
    background: #ef4444;
    border-radius: 50%;
    animation: aiPulse 1s infinite
}

.ai-clear-btn {
    background: var(--bg-secondary);
    border: 2px solid #e5e7eb;
    border-radius: 8px;
    padding: 8px 16px;
    color: var(--text-muted);
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    font-weight: 500;
    transition: all .3s ease
}

.ai-clear-btn:hover:not(:disabled) {
    background: var(--bg-hover);
    color: var(--text-color)
}

.ai-clear-btn:disabled {
    opacity: .5;
    cursor: not-allowed
}

.ai-warning {
    display: flex;
    align-items: center;
    gap: 8px;
    color: #f59e0b;
    font-size: 14px;
    padding: 12px;
    background: #f59e0b1a;
    border-radius: 8px;
    border: 1px solid rgba(245,158,11,.2)
}

.ai-generate-section {
    display: flex;
    flex-direction: column;
    gap: 12px
}

.ai-generate-btn {
    background: linear-gradient(135deg,#06b6d4,#22c55e);
    border: none;
    border-radius: 12px;
    padding: 16px 24px;
    color: var(--white);
    font-weight: 600;
    font-size: 16px;
    cursor: pointer;
    transition: all .3s ease;
    box-shadow: 0 4px 15px rgba(var(--primary-color-rgb),.3);
    position: relative;
    overflow: hidden
}

.ai-generate-btn:before {
    content: "";
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,transparent,rgba(255,255,255,.2),transparent);
    transition: left .5s
}

.ai-generate-btn:hover:not(:disabled) {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(var(--primary-color-rgb),.4)
}

.ai-generate-btn:hover:not(:disabled):before {
    left: 100%
}

.ai-generate-btn:disabled {
    opacity: .6;
    cursor: not-allowed;
    transform: none
}

.ai-generate-btn:active:not(:disabled) {
    transform: translateY(0)
}

.ai-generate-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    position: relative;
    z-index: 1;
    color: #fff
}

.ai-loading-spinner {
    display: flex;
    align-items: center;
    justify-content: center
}

.ai-spinner {
    width: 20px;
    height: 20px;
    border: 2px solid rgba(255,255,255,.3);
    border-top: 2px solid var(--white);
    border-radius: 50%;
    animation: aiSpin 1s linear infinite
}

.ai-generate-hint {
    text-align: center;
    color: var(--text-muted);
    font-size: 14px;
    margin: 0;
    line-height: 1.4
}

@keyframes aiFadeIn {
    0% {
        opacity: 0
    }

    to {
        opacity: 1
    }
}

@keyframes aiSlideUp {
    0% {
        opacity: 0;
        transform: translateY(30px) scale(.95)
    }

    to {
        opacity: 1;
        transform: translateY(0) scale(1)
    }
}

@keyframes aiPulse {
    0%,to {
        opacity: 1
    }

    50% {
        opacity: .5
    }
}

@keyframes aiSpin {
    0% {
        transform: rotate(0)
    }

    to {
        transform: rotate(360deg)
    }
}

@media (max-width: 768px) {
    .ai-modal-container {
        width:95%;
        margin: 20px
    }

    .ai-modal-header {
        padding: 20px 24px
    }

    .ai-modal-body {
        padding: 24px
    }

    .ai-title-content h3 {
        font-size: 20px
    }

    .ai-modal-subtitle {
        font-size: 13px
    }
}

[data-theme=dark] .ai-modal-container {
    border-color: #374151
}

[data-theme=dark] .ai-textarea {
    border-color: #374151;
    background: #1f2937;
    color: #f9fafb
}

[data-theme=dark] .ai-textarea::-moz-placeholder {
    color: #9ca3af
}

[data-theme=dark] .ai-textarea::placeholder {
    color: #9ca3af
}

[data-theme=dark] .ai-voice-btn,[data-theme=dark] .ai-clear-btn {
    border-color: #374151;
    background: #374151;
    color: #f9fafb
}

[data-theme=dark] .ai-voice-btn:hover:not(:disabled),[data-theme=dark] .ai-clear-btn:hover:not(:disabled) {
    background: #4b5563;
    border-color: #4b5563
}

[data-theme=dark] .ai-warning {
    background: #f59e0b26;
    border-color: #f59e0b4d
}

[data-theme=light] .ai-modal-container {
    border-color: #e5e7eb
}

[data-theme=light] .ai-textarea {
    border-color: #e5e7eb;
    background: #fff;
    color: #1f2937
}

[data-theme=light] .ai-textarea::-moz-placeholder {
    color: #6b7280
}

[data-theme=light] .ai-textarea::placeholder {
    color: #6b7280
}

[data-theme=light] .ai-voice-btn,[data-theme=light] .ai-clear-btn {
    border-color: #e5e7eb;
    background: #f9fafb;
    color: #1f2937
}

[data-theme=light] .ai-voice-btn:hover:not(:disabled),[data-theme=light] .ai-clear-btn:hover:not(:disabled) {
    background: #f3f4f6;
    border-color: #d1d5db
}

[data-theme=light] .ai-warning {
    background: #f59e0b1a;
    border-color: #f59e0b33
}

.bg-gradient-primary {
    background: #2276ff
}


/* ai css */





.navbar-vertical-compact {
    background-color: #fff;
    bottom: 0;
    display: initial;
    height: 100vh;
    max-width: 250px;
    min-width: 250px;
    padding: 0;
    position: fixed;
    top: 0;
    transition: margin .25s ease-out;
    width: 100%;
    z-index: 1;
}

.navbar-vertical-compact .navbar-nav .nav-item .nav-link {
    color: #6c757d;
    padding: 0px 10px;
    text-align: left;
}

#page-content-for-mini {
    margin-left: 250px;
}

@media (min-width: 768px) {
    #db-wrapper-two.toggled .navbar-vertical-compact {
        margin-left: -250px;
    }
}
    
@media (min-width: 576px) and (max-width: 767.98px) {
    #page-content-for-mini {
        margin-left: 0 !important;
    }
}

@media (max-width: 576px) {
    #page-content-for-mini {
        margin-left: 0 !important;
    }
}

@media (max-width: 768px) {
    #page-content-for-mini {
        margin-left: 0 !important;
    }

    .navbar-vertical-compact {
        margin-left: -250px;
    }

    #db-wrapper.toggled #page-content-for-mini{
        margin-left: 250px !important;
    }
}

@media (min-width: 768px) {
    #db-wrapper-two.toggled .navbar-vertical-compact {
        margin-left: -250px;
    }
}

@media (max-width: 576px) {
    #db-wrapper.toggled #page-content-for-mini {
        margin-left: 250px;
    }
}
