.logout-main-component{
    position: fixed;
    background-color: #fff;
    padding: 20px;
    border-radius: 12px;
    width: 360px;
    z-index: 10000;
    transform: translate(-50%, -50%);
    top: 50%;
    left: 50%;
    height: 442px;
}

.logout-main-component .logout-popup-img-wrapper{
    width: 164px;
    height: 164px;
    margin: 0 auto;
}

.logout-main-component .logout-popup-img{
    width: 100%;
    height: 100%;
}

.logout-main-component .logout-popup-content{
    margin-top: 12px;
}

.logout-popup-heding{
    font-size: 20px;
    font-weight: 500;
    line-height: 26.4px;
    color: #141517;
    margin-bottom: 8px;
    text-align: center;
}

.logout-popup-subheding{
    font-size: 14px;
    font-weight: 400;
    line-height: 18.2px;
    color: #4D4D4D;
    text-align: center;
    max-width: 200px;
    margin: 0 auto;
}

.logout-popup-buttons{
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 32px;
    width: 100%;
    justify-content: center;
    align-items: center;
}

.logout-button{
    background: linear-gradient(270deg, #712CCB 0%, #A77FDC 100%);
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    max-width: 312px;
    height: 56px;
    border-radius: 60px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: #fff;
    width: 100%;
}

.Cancel-button{
    max-width: 312px;
    height: 56px;
    border-radius: 60px;
    font-size: 16px;
    font-weight: 500;
    line-height: 24px;
    display: flex;
    justify-content: center;
    align-items: center;
    border: 1px solid gray;
    color:#7445B2;
    width: 100%;
}

.bh-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    z-index: 1002;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: opacity 0.1s linear;
    transition: opacity 0.1s linear;
  }
  
  .bh-popup-overlay.active {
    visibility: visible;
    opacity: 1;
  }

@media screen and (max-width: 768px){
    .logout-main-component{
        width: 100%;
        left: unset;
        transform: unset;
        bottom: 0;
        /* height: fit-content; */
        top: unset;
        position: fixed;
    }
    .logout-main-component .logout-popup-content{
        margin-top: 18px;
        
    }
}