@import url('https://fonts.googleapis.com/css2?family=Inter:ital,opsz,wght@0,14..32,100..900;1,14..32,100..900&display=swap');


/* Reset some default browser styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  :root{
    --orange : #FF914A;
    --purple:#7E56EC;
    --black:#111118;
  }
  
  html, body {
    font-family: "Inter", serif;
    background-color: #111118;
    /* height: 100%; */
    color: #fff;
  }
  
  h1, h2, h3, h4, h5, h6 {
    font-weight: bold;
  }
  
  a {
    text-decoration: none;
  }
  
  a:hover {
    text-decoration: none;
  }
  
li{
    list-style: none;
}
  /* ====== login page css start ====== */

  .login {
    display: flex;
    align-items: center;
    min-height: 100vh;
    background: #000;
}

  .login .walkthrough-slider h2{
    color: var(--orange);
    font-size: 30px;
    margin-top: 2rem;
    margin-bottom: 2rem;
  }

  .walkthrough-holder .logo img {
    max-width: 300px;
}

.owl-dots {
    display: flex;
    gap: 18px;
    justify-content: center;
}

.walkthrough-slider .owl-dots span {
    width: 20px;
    height: 20px;
    background:#fff;
    display: block;
    border-radius: 50%;
}

.walkthrough-slider .owl-dot.active span{
    background:var(--orange);
}

.login-bg{
    background: var(--black);
    border-radius: 12px;
    padding: 50px 30px;
    max-width: 600px;
    margin: auto;
}

.button-group {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
}

.store-btn {
    padding: 14px 36px;
    border: none;
    border-radius: 12px;
    font-weight: 600;
    background: #fff;
    color: #000;
}


.store-btn span {
    margin-right: 12px;
}

.store-btn span img {
    width: 22px;
    object-fit: cover;
}

/* questionary  */

.questionary-visit {
    margin-bottom: 2rem;
    display: flex;
    justify-content: center;
    gap: 18px;
}

.questionary-visit span {
    background: #979797;
    width: 90px;
    height: 15px;
    display: inline-block;
    border-radius: 4px;
}

.questionary-visit span.filled-1 {
    background: #FFD3B6; 
}

.questionary-visit span.filled-2 {
    background: #FFC085; 
}

.questionary-visit span.filled-3 {
    background: #FFA45B; 
}

.questionary-visit span.filled-4 {
    background: #FF8C42; 
}

.questionary-visit span.filled-5 {
    background: #FF6F00; 
}


.question {
    display: none;
    text-align: center;
  }

  .question.active {
    display: block;
  }

  .question-buttons {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}
  

.question h4 , .login-holder h4{
    color: #fff;
}

.gradiant-btn {
    background: linear-gradient(90deg, #FF914A 0%, #EC51D5 100%);
}

.btn-horizontal{
    border-radius: 12px;
    border: none;
    padding: 11px 120px;
    font-weight: 700;
    font-size: 24px;
}

#skipBtn{
    color: #D9D9D9;
    /* border: none; */
    /* border-bottom: 1px solid #D9D9D9; */
    border: 1px solid #D9D9D9;
    background: none;
}

.list-holder li {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    display: flex;
    gap: 10px;
    align-items: center;
}

.list-holder li span{
    width: 20px;
    height: 20px;
    display: inline-block;
    border-radius: 50%;
}

.list-holder {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 2%;
}

.list-holder ul {
    flex: 0 0 68%;
    display: flex;
    flex-direction: column;
    gap: 18px;
}

.list-holder .logo{
    flex:  0 0 30%;
}

.membership h5{
    color: var(--orange);
    margin: 2rem 0;
}

.membership a.btn-horizontal{
    color: #000;
    font-size: 18px;
}
/* ====== login page css end ====== */

/* ====== header css start ====== */
header {
    padding: 1rem 0;
    border-bottom: 1px solid;
    margin-bottom: 4rem;
    position: sticky;
    top: 0;
    z-index: 9999;
    background-color: var(--black);
}

header .row{
    justify-content: space-between;
}

header .logo {
    width: 100px;
}

header .logo img{
    width: 100%;
    object-fit: cover;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
    flex: 0;
}

.profile-dropdown {
    width: 52px;
}

.nav-link-holder, .nav-link {
    color: #9DAFBD;
    display: flex;
    gap: 10px;
    align-items: center;
    transition: .3s all ease-in-out;
}

.nav-link-holder:hover, .nav-link-holder:hover .nav-link{
    color: #fff;
}

.profile-dropdown i{
    color: #fff;
    font-size: 30px;
}

header .dropdown-menu {
    background: #000;
    box-shadow: 0px 1px 10px -1px #171717;
    padding: 22px;
}

header .dropdown-menu.show {
    display: flex !important;
    flex-direction: column;
    gap: 14px;
}

.dropdown-item{
    color: #fff;
    font-weight: 600;
}

.dropdown-item:hover , .dropdown-item:hover i{
    background: none;
    color: var(--orange);
}

.dropdown-item i{
    font-size: 20px;
    margin-right: 6px;
}

/* Default hidden state for hamburger menu */
.hamburger-button {
    background: none;
    border: none;
    font-size: 24px;
    cursor: pointer;
    color: #fff;
}

.hamburger-button span {
    width: 25px;
    height: 3px;
    display: block;
    background: #fff;
    transition: .3s all ease-in-out;
}

.hamburger-button.show  .line1 {
    transform: rotate(-45deg) translate(-4px,6px);
}
.hamburger-button.show  .line2 {
    transition: all 0.7s ease;
    width: 0;
}
.hamburger-button.show  .line3 {
    transform: rotate(45deg) translate(-3px, -6px);
}
/* header prfile modals */

header .modal-content {
    background: #414143;
}
.share-header-content span{
    color: #9C9BA1;
}

.recent-chat-profile img {
    width: 60px;
    object-fit: cover;
}
.chat-app-icon img {
    width: 18px;
    object-fit: cover;
}

.chat-app-icon {
    position: absolute;
    top: 40px;
    right: 13px;
}
.recent-chat-wrapper , .share-apps-wrapper {
    display: flex;
    flex-wrap: wrap;
    /* align-items: center; */
    justify-content: space-between;
}

.recent-chat p {
    font-weight: 300;
    margin-bottom: 0;
    line-height: 16px;
    margin-top: 10px;
    font-size: 13px;
    color: #fff;
}

.recent-chat {
    text-align: center;
    flex: 0 0 18%;
    position: relative;
}
.share-modal .modal-footer {
    background: #353536;
    border-radius: 8px;
    padding: 0px;
}
.share-modal .modal-footer a.share-action:nth-child(3){
    border-bottom: none;
}
a.share-action {
    display: flex;
    align-items: center;
    color: #ffffff;
    justify-content: space-between;
    flex: 0 0 100%;
    font-weight: 300;
    border-bottom: 1px solid #ffffff9c;
    padding: 12px 18px;
}

a.share-action i {
    font-size: 19px;
}

.contact-support-modal .contact-modal-header {
    justify-content: space-between;
    display: flex;
    align-items: center;
    flex: 0 0 100%;
}

.contact-support-modal  .send-msg i {
    background: #C7C7CC;
    border-radius: 50%;
    font-size: 20px;
    padding: 11px 14px;
    cursor: pointer;
}

.contact-support-modal .modal-header button {
    border: none !important;
    background: none !important;
    color: #0a58ca;
}
.contact-support-modal .modal-content{
    background: #fff;
    color: var(--black);
}
.contact-support-modal .modal-body p {
    color: #8E8E93;
    border-bottom: 1px solid #8e8e9369;
    margin-bottom: 0;
    padding: 14px 10px;
}

.contact-support-modal .modal-footer {
    padding: 0;
    margin: 0;
}

.contact-support-modal .modal-footer textarea {
    width: 100%;
    resize: none;
    height: 150px;
    border: none;
}
.contact-support-modal .modal-footer textarea:focus-visible{
    outline: none;
}
/* ====== header css end ====== */

/* ====== Home page css start ====== */
.home-cta {
    margin-bottom: 3rem;
}
.home-cta h1{
    font-weight: 300;
}
.home-bg{
    background: #252525;
    border: 2px solid #282828;
    border-radius: 12px;
    padding: 3rem;
}

.cta-holder {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
}

.cta-holder .cta {
    display: flex;
    flex: 0 0 23%;
    flex-direction: column;
    padding: 2.5rem 20px;
    border-radius: 12px;
    align-items: center;
    justify-content: center;
    transition: .3s all ease-in-out;
}
.cta-holder .cta p{
    color: #fff;
    font-weight: 500;
    margin-top: 2rem;
}

.cta-image img {
    border-radius: 50%;
    height: 100px;
    width: 100px;
    object-fit: cover;
}

.blue {
    background: linear-gradient(123deg, #7DFFB4 0%, #4244FF 120%);
}

.red {
    background: linear-gradient(123deg, #F2A07E 0%, #FF5954 120%);
}

.yellow {
    background: linear-gradient(123deg, #FFD649 0%, #FFA918 120%);
}

.pink {
    background: linear-gradient(123deg, #FF7DC1 0%, #4244FF 120%);
}

.blue:hover {
    background: transparent;
    outline: 1px solid #7DFFB4;
}

.red:hover {
    background: transparent;
    outline: 1px solid #FF5954;
}

.yellow:hover {
    background: transparent;
    outline: 1px solid #FFA918;
}

.pink:hover {
    background: transparent;
    outline: 1px solid #4244FF;
}
/* ====== Home page css end ====== */

/* ====== profile page css start ====== */
.profile-sec {
    padding: 0 20px 3rem 20px;
}

.page-heading{
    font-size: 22px;
    color: #fff;
    padding: 1rem 0;
}
.page-bg {
    background: hsl(0deg 0% 59.22% / 16%);
    border-radius: 8px;
    padding: 3rem;
}

.user-profile {
    width: 150px;
    margin: auto;
    position: relative;
}

.user-profile img {
    border-radius: 50%;
    width: 100%;
    object-fit: cover;
}

.edit-profile-pic {
    position: absolute;
    bottom: 0;
    cursor: pointer;
    right: 0;
}

.edit-profile-pic i {
    padding: 12px;
    background: #fff;
    border-radius: 50%;
    color: #000;
    font-size: 21px;
}
.edit-profile-pic input[type="file"] {
    display: none; 
}

.input-wrapper .input-box p{
   color: #fff;
   font-weight: 500;
}

.input-wrapper .input-box input ,.input-wrapper .input-box select {
    border: 1px solid #9DAFBD;
    border-radius: 4px;
    padding: 12px 10px;
    background: transparent;
    color: #fff;
    width: 100%;
}
.input-wrapper .input-box select {
    background: transparent;
    background: #282828;
}
.input-wrapper .input-box input:focus-visible {
    outline: none;
}

.input-wrapper {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.input-box {
    flex: 0 0 30%;
    margin-top: 3rem;
}
.input-box .radio-group input{
    width: auto;
}

.radio-group label{
    color: #fff;
    font-weight: 500;
    margin-bottom: 5px;
    padding-right: 6px;
}
/* ====== profile page css end ====== */

/* ====== checklist page css start ====== */
.divorce-checklist-sec ,.checklist-view-sec {
    padding: 0 20px 3rem 20px;
}

.accordion-item {
    margin-top: 2rem;
    color: #fff;
    background: transparent;
    border: none;
}

.accordion-button , .accordion-button:not(.collapsed) {
    background: transparent;
    color: #fff;
    font-weight: 300;
    border: 1px solid #979797 !important;
    border-radius: 12px !important;
    box-shadow: none;
}
.accordion-button::after {
    filter: invert(1);
}
.accordion-button:focus{
    box-shadow: none;
}
.accordion-body .task  , .checklist-view-bg .task{
    display: flex;
    color: #fff;
    border: 1px solid #fff;
    padding: 15px;
    border-radius: 12px;
    align-items: center;
    gap: 12px;
    margin-top: 1rem;
}
.task span{
    border: 2px solid #7DFFB4;
    border-radius: 50%;
    display: inline-block;
    width: 20px;
    height: 20px;
}
#task span{
    border: none!important; /* Remove border when selected */
    background-image: linear-gradient(135deg, #7DFFB4, #4244FF)!important; /* Gradient color */
    border-color: transparent!important; /* Optional: remove border */
}

.save-task {
    background: linear-gradient(90deg, #FFB929 0%, #FF7DC1 100%);
    color: #fff;
    padding: 12px 48px;
    border-radius: 12px;
    display: inline-block;
    margin-top: 3rem;
}

div#accordionExample a {
    min-width: 200px;
}

.add-task {
    background: linear-gradient(90deg, #FFB929 0%, #FF7DC1 100%);
    color: #fff;
    padding: 12px 48px;
    border-radius: 12px;
    display: inline-block;
    margin-top: 3rem;
}

.checklist-desk {
    border-bottom: 1px solid #fff;
    padding: 2rem 0;
    line-height: 30px;
}

.view-checklist-add-action {
    color: #979797;
    margin-bottom: 10px;
    text-align: left;
}
/* ====== checklist page css end ====== */

/* ====== assistant page css start ====== */

/* sidebar start */
.sidebar-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
}

.sidebar-header .logo {
    width: 50px;
}
.toggle-sidebar {
    cursor: pointer;
    transition: .3s all ease-in-out;
}

.dashboard-container {
    display: flex;
    margin-top: -4rem;
}

.sidebar {
    position: sticky;
    top: 110px;
    min-width: 300px; 
    height: calc(100vh - 110px);
    /* background-color: var(--black);  */
    padding: 20px;
    overflow-y: auto;
    transition: .3s all ease-in-out;
}

.sidebar.close {
    width: 0;
    min-width: 64px;
}

.sidebar.close .toggle-sidebar {
    transform: rotate(180deg);
}

.assistant-content {
    flex-grow: 1;
    padding: 50px 20px;
    background: #000;
    /* margin-left: 300px; */
    display: flex;
    flex-direction: column;
    justify-content: space-evenly;
    height: calc(100vh - 110px);
    overflow-y: auto;
    margin-top: 56px;
    /* margin-top: 15px; */
}

.message-input-wrapper {
    position: fixed;
    bottom: 24px;
    width: calc(100% - 350px);
}
/* sidebar end */

.assistant-get-started img{
    width: 75px;
    margin-bottom: 1rem;
}

.example-wrapper {
    display: flex;
    justify-content: space-around;
    margin-top: 2rem;
    gap: 14px;
}

.example-heading img{
    width: 25px;
}

.example{
    background: var(--black);
    padding: 20px;
    border-radius: 4px;
    /* flex: 0 0 32%; */
}
.example p{
    color: #fff;
}

.message-input-wrapper input{
    color: #fff;
    background: var(--black);
    padding: 12px 40px;
    border-radius: 4px;
    border: 1px solid #fff;
    width: 100%;
}
.message-input-wrapper input::placeholder{
    color: #fff;
}
.message-input-wrapper .input-holder{
    position: relative;
}


.message-input-wrapper .input-holder .attachment , .message-input-wrapper .input-holder .send {
    position: absolute;
    color: #fff;
    top: 9px;
    font-size: 22px;
    left: 10px;
    cursor: pointer;
}

.message-input-wrapper .input-holder .send {
    left: auto;
    right: 16px;
    background-color: var(--purple);
    border-radius: 4px;
    padding: 0 16px;
}

.my-message-holder {
    text-align: right;
    max-width: 50%;
    margin-left: auto;
}

.my-message {
    background: var(--purple);
    border-radius: 12px;
    color: #fff;
    padding: 10px;
    display: inline-block;
    margin-left: auto;
    max-width: 50%;
    text-align: left;
}

.buffring{
    color: #fff;
    font-size: 20px;
}
.response-holder{
    max-width: 50%;
}

.response-message {
    background: var(--black);
    color: #fff;
    border-radius: 12px;
    padding: 10px;
    font-weight: 300;
}

.response-message {
    display: flex;
    gap: 10px;
}

.response-message span img{
    /* width: 70px; */
    width: 25px;
    height: auto;
    object-fit:contain;
}

.response-toolbar{
    color: #fff;
}

.response-toolbar {
    display: flex;
    gap: 42px;
    padding: 20px;
    opacity: .7;
}

.response-feed i ,  .copy{
    cursor: pointer;
}

.regenrate-response {
    color: #fff;
    display: flex;
    padding: 10px;
    align-items: center;
    gap: 10px;
    background: var(--black);
    width: max-content;
    border-radius: 10px;
    margin: auto;
    cursor: pointer;
    font-weight: 300;
    border: .5px solid #fff;
}
/* ====== assistant page css end ====== */

/* ====== document page css start ====== */

.upload-doc-sec {
    padding: 20px;
}

.upload-doc-bg{
    color: #fff;
}

.upload-doc-holder {
    border: 1px solid var(--purple);
    padding: 30px;
    font-size: 100px;
    max-width: 350px;
    text-align: center;
    border-radius: 12px;
    margin: auto;
    margin-top: 5rem;
    color: #B3B3B3;
    cursor: pointer;
}

.upload-doc-holder p {
    font-size: 20px;
    margin-top: -18px;
}

.upload-doc-bg .cta-btn{
    background: #fff;
    color: #000;
    border-radius: 8px;
    padding: 10px 40px;
    transition: .3s all ease-in-out;
}

.upload-doc-bg .cta-btn:hover{
    color: #fff;
    background: var(--orange);
}

.uploaded-doc-sec {
    margin: 4rem 20px;
}

.doc-content {
    display: flex;
    gap: 16px;
    align-items: center;
}

.uploaded-doc-holder p.date {
    font-size: 12px;
    color: #bfbbbb;
}

.doc-type img {
    width: 24px;
    height: 24px;
    object-fit: cover;
}

.uploaded-doc-wrapper {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 70px 7%;
}

.uploaded-doc-holder {
    display: flex;
    justify-content: space-between;
    flex: 0 0 28%;
    align-items: center;
}

.uploaded-doc-holder {
    display: flex;
    justify-content: space-between;
}

.doc-option {
    cursor: pointer;
    padding: 10px 16px;
}

.modal{
    z-index: 999999;
}
.modal-content {
    background: #26262C;
    padding: 12px 20px;
}

.doc-modal .modal-dialog {
    margin-top: 10rem;
}

.doc-modal  .btn-close {
    filter: invert(1);
    opacity: 1;
}

.modal-cta-holder {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--black);
    padding: 14px;
    border-radius: 8px;
    margin-top: 10px;
    cursor: pointer;
}

.modal-body input {
    border: none;
    color: #fff;
    border-radius: 7px;
    width: 100%;
    padding: 9px;
    background: #000;
}
.action-btn {
    padding: 8px 50px;
    border-radius: 4px;
    border: 1px solid #fff;
    color: #fff;
    transition: .3s all ease-in-out;
}

.action-btn:hover {
    background: var(--orange) !important;
    border: 1px solid var(--orange) !important;
}

.modal-footer {
    justify-content: center;
    margin: 1rem 20px;
    border: none;
}

.action-btn.done{
    background: #444CE7;
    border: 1px solid #444CE7;
}
.action-btn.delete{
    background: #E52121;
    border: 1px solid #E52121;
}

.details-list li{
 color: #A0A0AB;
 display: flex;
 justify-content: space-between;
 margin-top: 14px;
}

.details-list li span{
    color: #fff;
}
/* ====== document page css end ====== */

/* ====== Community page css start ====== */
.community-sec {
    padding: 20px;
}

.post-details-sec , .add-post-sec {
    padding: 0 20px 3rem 20px;
}
.community-left-panel {
    position: sticky;
    top: 180px;
}

.search-bar input {
    border-radius: 8px;
    padding: 16px 16px 16px 40px;
    border: none;
    width: 100%;
    background: #666666;
    color: #fff;
}

.search-bar input::placeholder{
    color: #D3D3D3;
}

.search-bar input:focus-visible{
    outline: none;
}

.find-community {
    background: url(../images/find-community.png);
    background-size: cover;
    background-repeat: no-repeat;
    border-radius: 18px;
    margin: 3rem 0;
}

.find-community h2 {
    font-weight: 300;
    padding: 20px;
}

.community-sec .cta-btn-holder a {
    width: 100%;
    color: #fff;
    display: block;
    font-weight: 400;
    font-size: 18px;
    text-align: center;
    padding: 14px;
}

.search-bar{
    position: relative;
}

.search-bar .search-icon {
    position: absolute;
    left: 12px;
    top: 14px;
    font-size: 18px;
    color: #D3D3D3;
}

.post {
    border-radius: 12px;
    background: #252525;
    padding: 20px;
    margin-bottom: 3rem;
    
}

.post .dp img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
}

.post-header {
    display: flex;
    gap: 16px;
    align-items: center;
}
.profile-info p{
    font-size: 14px;
}

.profile-info .name{
    font-size: 18px;
}

.post-body {
    padding: 30px 0;
}
.likes , .comments{
    display: flex;
    gap: 10px;
    align-items: center;
    color: #fff;
}

.post-footer {
    display: flex;
    gap: 45px;
    border-top: 1px solid;
    padding: 18px 0 0 0;
}

.page-heading.Replies{
    font-size: 18px;
}

.post-replies {
    background: #000;
    border-radius: 12px;
    width: 90%;
    padding: 20px;
}

.post-replies .community-posts  .post{
    background: transparent;
}


.ck-editor__editable_inline {
    color: white;
    min-height: 400px;
    padding: 15px;
    border-radius: 5px;
}

.ck-editor__main {
    background-color: #333;
    border-radius: 10px;
}

.ck-toolbar {
    background-color: #444 !important;
    border-radius: 10px 10px 0 0 !important;
    border: none !important;
    color: #fff !important;
    padding: 10px !important;
}

.ck-toolbar div , .ck-toolbar span , .ck-toolbar button , .ck-toolbar svg , .ck-toolbar p {
    color: #fff !important;
}

.ck-toolbar div:hover , .ck-toolbar span:hover , .ck-toolbar button:hover , .ck-toolbar svg:hover , .ck-toolbar p:hover ,  .ck-toolbar ul , .ck.ck-button.ck-on, a.ck.ck-button.ck-on{
    background-color: #444 !important;
}

.ck-editor__editable {
    color: white;
    border: none !important;
    background: #252525 !important;
    border-radius: 0 0 12px 12px !important;
}

/* ====== Community page css end ====== */


/* ====== Radio button css start ====== */

/* Hide the default radio button */
input[type="radio"] {
    appearance: none; /* Removes the default radio button style */
    -webkit-appearance: none; /* For WebKit browsers */
    -moz-appearance: none; /* For Mozilla browsers */
}

/* Custom styling */
input[type="radio"] {
    width: 20px;
    height: 20px;
    border: 2px solid #77EABD;
    border-radius: 50%;
    outline: none;
    cursor: pointer;
    display: inline-block;
    vertical-align: middle;
    background-color: transparent; /* Make the inner part invisible */
    transition: background-image 0.3s, border-color 0.2s, box-shadow 0.2s;
}

/* When selected, apply the linear gradient */
input[type="radio"]:checked {
    border: none; /* Remove border when selected */
    background-image: linear-gradient(135deg, #7DFFB4, #4244FF); /* Gradient color */
    border-color: transparent; /* Optional: remove border */
}

.task label {
    display: flex;
    flex-wrap: wrap;
    gap: 5px;
    align-items: center;
}

/* ====== Radio button css end ====== */

.nav-link-holder.active{
    color: #ffff!important;
}
.nav-link-holder.active .nav-link{
    color: #ffff!important;
}

/* ====== Check button css start ====== */

#accordionExampleInner .accordion-button{
    border: 1px solid #fff !important;
}
#accordionExampleInner .accordion-button::after {
    display: none;
}
/* Hide the default checkbox */
.custom-checkbox {
    display: none;
}
/* Style the custom indicator */
.custom-checkbox-indicator {
    border: 2px solid #7DFFB4;
    border-radius: 50%;
    display: inline-block;
    width: 20px;
    height: 20px;
    background-color: transparent;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    position: relative;
    cursor: pointer;
}
/* Change the background when checked */
.custom-checkbox:checked + .custom-checkbox-indicator {
    /* background-color: #7DFFB4; */
    /* border-color: #7DFFB4; */
    border: none;
    background-image: linear-gradient(135deg, #7DFFB4, #4244FF);
}
/* Optional: Add a focus outline for accessibility */
.custom-checkbox:focus + .custom-checkbox-indicator {
    outline: 2px solid #7DFFB4;
    outline-offset: 2px;
}
label.custom-checkbox-wrapper {
    display: flex;
    flex-wrap: wrap;
    padding-right: 6px;
}
/* ====== Check button css end ====== */


.accordion-body .task {
    justify-content: space-between;
}
.task-left {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.task-right {
    display: flex;
    gap: 26px;
    align-items: center;
    font-size: 20px;
}
.action-icon{
    cursor: pointer;
}
.task-modal textarea {
    resize: none;
    width: 100%;
    padding: 10px;
    height: 150px;
    background: transparent;
    color: #fff;
}
.task-right div#calendar {
    position: relative;
}
.task-right input#datePicker {
    width: 20px;
    height: 20px;
    position: absolute;
    left: 0;
    top: 5px;
    opacity: 0;
}

/** task view*/
textarea.checklist-desk {
    width: 100%;
    background: transparent;
    color: #fff;
    border: none;
    height: 50px;
    border-bottom: 1px solid;
    resize: none;
    margin-top: 2rem;
    padding: 10px;
}
textarea.checklist-desk:focus-visible{
    outline: none;
}
.checklist-view-input-wrapper {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.checklist-view-input-wrapper.due-date.task-right {
    flex-direction: row;
}
.checklist-view-input-wrapper.due-date.task-right label {
    color: #979797;
}
.checklist-view-input-wrapper input , .checklist-view-input-wrapper textarea {
    border: none;
    padding: 10px;
    background: transparent;
    color: #979797;
    font-weight: 500;
    resize: none;
}
.checklist-view-input-wrapper input:focus-visible , .checklist-view-input-wrapper textarea:focus-visible {
    outline: none;
    border-bottom: 1px solid #fff;
}
/** task view end */
.checklist-view-input-wrapper.due-date input:focus-visible{
  outline: none !important;
  border: none !important;
}

.checklist-view-input-wrapper.due-date input{
    color: #000;
    filter: invert(1);
}