@import url(style.css);


.acount-drop-down{
    display: flex
    ;
        justify-content: center;
        align-items: center;
        gap: 10px;
        width: fit-content;
        padding: 2px 5px;
        border-radius: 40px;
        border: 1px solid #d792a7;
        font-size: 14px;
        font-weight: 500;
        gap: 15px;
        background-color: #e17faf;
        cursor: pointer;
        position: relative;
}
.acount-drop-down span{
display: flex;
align-items: center;
justify-content: flex-start;
gap: 5px;
}
.acount-drop-down span p{
    margin: 0;
    font-size: 14px;
    font-weight: 600;
    color: var(--color-white);
}
.acount-drop-down img{
    width: 35px;
    height: 35px;
    border-radius: 50%;
    border: 3px dashed #fff;
    object-fit: cover;
}
.acount-drop-down i{
    color: var(--color-white);
}
.acount-drop-menu{
    background-color: #fff;
    position: absolute;
    bottom: -105px;
    left: 0;
    width: fit-content;
    padding:5px;
    border-radius: 10px;
    box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
    z-index: 500;
    display: none;
    

}
.acount-drop-menu ul{
    padding: 0;
    margin: 0;
    list-style: none;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}
.acount-drop-menu ul li{

    margin:5px 0;
    width: 100%;
}

.acount-drop-menu ul li a,.acount-drop-menu ul li button{
    white-space: nowrap;
    font-size: 14px;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 10px;
    padding: 7px 15px;
    transition: 0.5s;
    width: 100%;
    border-radius: 3px;
    color: var(--color-black);
    text-decoration: none;
    background-color:transparent;
    border:0;
}
.acount-drop-menu ul li a i,.acount-drop-menu ul li button i{
    color: var(--color-black);
}
.acount-drop-menu ul li a:hover,.acount-drop-menu ul li button:hover{
    background-color: var(--primary-dark);
    color: #fff;
}
.acount-drop-menu ul li a:hover i,.acount-drop-menu ul li button:hover i{
    color: var(--color-white);
}
.drop-block .acount-drop-menu{
    display: block;
}

.user-profile-preview{
    width: 100%;
    height: fit-content;
    padding: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #d792a7;
    border-radius: 10px;
    margin-bottom: 10px;
}
.user-profile-preview img{
    width: 120px;
    height: 120px;
    border-radius: 50%;
    object-fit: cover;
    border: 5px dashed var(--color-white);
}
.user-profile-preview h3{
    color: var(--color-white);
    font-weight: 500;
    margin: 5px 0;
    font-size: 24px;
}
.user-profile-preview p{
    margin: 0;
    font-size: 14px;
    color: var(--color-white);
}
.user-dashboard-sidebar{
     width: 100%;
    height: fit-content;
    padding:10px 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    background-color: #f3e3e7;
    border-radius: 10px;
    margin-bottom: 20px;
}
.user-dashboard-sidebar ul{
    margin: 0;
    padding: 0;
    list-style: none;
   width: 100%;
}
.user-dashboard-sidebar ul li{
    width: 100%;
    margin: 2px 0;
}
.user-dashboard-sidebar ul li a,.user-dashboard-sidebar ul li button{
    text-decoration: none;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    color: var(--color-black);
    font-size: 16px;
    padding: 10px;
    border-radius: 5px;
    transition: 0.5s;
    background: transparent;
    border: 0;
}
.user-dashboard-sidebar ul li a.active,.user-dashboard-sidebar ul li button.active{
    background-color: var(--primary-dark);
    color: var(--color-white);
}
.user-dashboard-sidebar ul li a:hover,.user-dashboard-sidebar ul li button:hover{
    background-color: var(--primary-dark);
    color: var(--color-white);
}
.user-dashboard-sidebar ul li a i,.user-dashboard-sidebar ul li button i{
    width: 30px;
    display: flex;
    justify-content: flex-start;
    font-size: 16px;
}
.user-dashboard-sidebar ul li form,.user-dashboard-sidebar ul li button{
    width:100%;
}
.profile-container{
    padding: 20px;
    border: 1px solid #ccc;
    border-radius: 15px;
}


  .profile-field label{
    font-size: 14px;
    font-weight: 500;
    margin-bottom: 4px;
    color: #000;
    font-family: var(--font-main);
}
.profile-field input{
    border: 1px solid #aeaeae;
    border-radius: 4px;
    height: 50px;
    font-size: 14px;
    font-family: var(--font-main);
    font-weight: 500;
}
.profile-field select{
    border: 1px solid #aeaeae;
    border-radius: 4px;
    height: 50px;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font-main);
}
.profile-field input::file-selector-button{
    height:50px;
}
.profile-field textarea{
    border: 1px solid #aeaeae;
    border-radius: 4px;
    height: 130px;
    font-size: 14px;
    font-weight: 500;
    font-family: var(--font-main);
}
.profile-field input::placeholder,.profile-field textarea::placeholder{
    font-size: 15px;
    color: #848484;
    font-weight: 400;
   font-family: var(--font-main);
}
.profile-field input:focus,.profile-field textarea:focus{
    border: 1px dashed var(--primary-dark);
}
.country-code{
    display: flex;
    justify-content: flex-start;
    align-items: center;
}
.country-code span{
    background-color: #dcdbda;
    border-radius: 4px 0 0 4px;
    padding: 0 5px;
   
}
.country-code span select{
    width: 70px;
    border: 0 !important;
    outline: 0 !important;
    background-color: transparent;
}
.country-code  input{
    border-radius: 0 4px 4px 0;

}

.account-top-title{
    display: flex;
    justify-content: center;
    align-items: center;
}

.account-top-title h3{
    font-size: 21px;
    font-weight: 600;
    font-family: var(--font-family);
    color: #dc8ea5;
    margin-bottom: 20px;
}

.profile-sub-btn{
    width: 150px;
    height: 45px;
     background: linear-gradient(90deg, #d0214e, #6c0c65), linear-gradient(270deg, #ec1b3c, #ec1b3c);
    color: #fff;
    border-radius: 5px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    font-weight: 400;
    border: 1px solid #bb488e;
    transition: 0.5s;
    text-decoration: none;
    margin: 10px auto;
}
 .profile-sub-btn:hover{
    border-radius: 40px;
}


.logout-title {
    text-align: center;
    font-size: 20px;
    margin: 0;
    color: #000;
    margin-top: 0;
    font-family: var(--font-main);
    font-weight: 600;
    color: var(--primary-dark);
}
.logout-modal-footer{
    display: flex;
    justify-content: center;
    align-items: center;
    padding:10px 30px;
    gap: 10px;
}
.logout-modal-footer button, .logout-modal-footer a{
    width: 100px;
    height: 30px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 15px;
    font-weight: 500;
    transition: 0.5s;
    border-radius: 4px;
    text-decoration: none  !important;
    border: 0;
}
.logout-modal-footer a{
    background-color:var(--primary-dark);
    color: #fff;
  
}
.logout-modal-footer button{
    background-color: #E5D8CB;
    color: #222;
}
.logout-modal-footer button:hover, .logout-modal-footer a:hover{
    border-radius: 40px;
}
.account-top-btns {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 20px;
}
.account-top-btns h3{
      font-size: 24px;
    color: #000;
    font-weight: 600;
    letter-spacing: -0.3px;
    line-height: 40px;
}
.account-top-btns ul{
    margin: 0;
    padding: 0;
    list-style: none;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    gap: 10px;
}
.account-top-btns ul li a{
    font-size: 15px;
    text-decoration: none;
    padding: 8px 15px;
    border: 1px solid var(--primary);
    color: var(--primary);
    border-radius: 5px;
    transition: 0.5s;
}
.account-top-btns ul li a:hover,.account-top-btns ul li a.active{
    background-color: var(--primary-dark);
    color: var(--color-white);
}

.account-top-btns select{
    height: 45px;
    border: 1px solid var(--text-gray);
    border-radius: 5px;
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 500;
}

.tb-top-count {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 7px;
  padding-top: 5px;
}

.tb-top-count span {
  font-size: 14px;
  color: #000;

}

.tb-top-count select {
  width: 80px;
  padding: 5px;
  font-size: 12px;
}

.csv-btns {
  display: flex;
  justify-content: end;
  align-items: center;
  gap: 10px;
  padding-bottom: 5px;
}

.csv-btns a {
  width: fit-content;

  display: flex;
  padding: 4px 15px;
  border-radius: 5px;
  justify-content: center;
  align-items: center;
  background-color: #6AB436;
  color: #fff;
  text-decoration: none;
  transition: 0.5s;
  border: 0;
  text-decoration: none;
  margin: 5px;
}

.csv-btns a:hover {
  background-color: #f0864a;
}

.tb-top-serach {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 10px;
}

.tb-top-serach label {
  font-size: 15px;
  font-weight: 500;
  color: #000;
  white-space: nowrap;
}

.tb-top-serach input {
  height: 37px;
  border: 1px solid #ccc;
  width: 200px;
}

/* .table-container {
  padding: 20px 0;
} */

.user-table {
  padding-top: 10px;
}

.user-table thead,
.user-table thead tr {
  border: 0 !important;
}

.user-table thead tr th {
  font-size: 17px;
  font-weight: 600;
  background-color: var(--primary-dark);
  border: 0 !important;
  text-align: center;
  padding: 12px 5px !important;
  color: #fff;
}

.user-table tbody {
  border-top: 0 !important;
}

.user-table tbody tr td {
  text-align: center;
  font-size: 15px;
  padding: 12px 10px !important;
  border: 1px solid #ccc;
  vertical-align:middle;
}

.td-input input {
  width: 18px;
  height: 18px;
}

.action-box {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.action-box a {
  padding: 4px 6px;
  border-radius: 5px;
  color: #fff;
  font-size: 12px;
  transition: 0.5s;
  border: 1px solid #ccc;
  white-space:nowrap;
  text-decoration: none;
}

.action-box a.edit {
  background-color: #e15890;
}

.action-box a.delete {
  background-color: #b23939;
}

.action-box a:hover {
  border: 1px solid var(--primary);
  color: var(--primary);
  background-color: transparent;
}

.table-bottom p {
  font-size: 15px;
  margin: 0;
  color: #000;
}

.table-bottom nav {
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.table-bottom nav a{
    color: var(--color-black);
}
.table-bottom nav a:hover {
  background-color: var(--primary);
  color: #fff;
}

.user-drag-field label {
  width: 100%;
  height: 100px;
  border: 3px dashed #ccc;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  border-radius: 10px;
}

.user-drag-field p,
.user-field p {
  font-size: 15px;
  margin: 0;
  font-weight: 600;
  color: #000;
}

.user-field-check {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  gap: 5px;
}

.user-field-check input {
  width: 18px;
  height: 18px;
  margin-top: 0;
}

.user-field-check label {
  margin: 0;
}

.status-green {
    padding: 2px 13px;
    background-color: #bbf7d6c6 !important;
    border: 1px solid #089748 !important;
    color: #089748 !important;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
}
.status-red
 {
    padding: 2px 13px;
    background-color: #fbdede !important;
    border: 1px solid #e42929 !important;
    color: #e42929 !important;
    border-radius: 40px;
    font-size: 13px;
    font-weight: 600;
}
.deal-detail-view-modal{
    padding: 20px;
}
.deal-detail-view-modal-qr img{
  height: 250px;
}
.deal-detail-view-modal-info{
    padding-left: 10px;
}
.deal-detail-view-modal-info h3{
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 22px;
    font-weight: 600;
    margin: 0;
    color: var(--primary);
}
.deal-detail-view-modal-info h3 a{
    background-color: var(--light-green);
    color: var(--color-white);
    text-decoration: none;
    padding: 7px 15px;
    font-size: 15px;
    border-radius: 40px;
}
.deal-detail-view-modal-info h3 a:hover{
    background-color: var(--dark-green);
}
.deal-detail-view-modal-info p{
    font-size: 15px;
    color: var(--text-gray);
}
.deal-detail-view-modal-info ul{
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    justify-content: flex-start;
    align-items: center;
    flex-wrap: wrap;
}
.deal-detail-view-modal-info ul li{
    width: 100%;
    margin: 5px 0;
    display: flex;
    justify-content: flex-start;
    align-items: flex-start;
    gap: 5px;
    font-weight: 600;
    color: var(--color-black);
    font-size: 16px;
}
.deal-detail-view-modal-info ul li span{
    color: #222;
}
.text-red{
    color: red !important;
}
.event-detail-view-modal-qr{
    width: 270px;
    display: flex;
    justify-content: center;
    align-items: center;
    position: relative;
    margin: auto;
}
.event-detail-view-modal-qr img {
    width: 100%;
}
.event-detail-view-modal-qr .event-expire-overlay{
    width: 100%;
    height: 100%;
    position: absolute;
    left: 0;
    top: 0;
  background-color: rgb(203 20 20 / 49%);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 10px;
}
.event-detail-view-modal-qr .event-expire-overlay span{
    width: 150px;
    height: 150px;
    background-color: red;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 50%;
    font-size: 16px;
    color: var(--color-white);
    font-weight: 600;
}
.event-detail-view-modal .deal-detail-view-modal-info{
    padding-left: 0;
}
.event-detail-view-modal .accordion-button{
    box-shadow: none !important;
    font-size: 17px;
    font-weight: 600;
}
.event-detail-view-modal .accordion-button:not(.collapsed){
    background-color: var(--primary);
    color: var(--color-white);
}
.table-filters{
    padding-bottom: 10px;
}
.table-filters input{
     height: 45px;
    border: 1px solid var(--text-gray);
    border-radius: 5px;
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 500;
}



/* Chat-bx */
:root {
  --body-bg: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
  --msger-bg: #fff;
  --border: 2px solid #ddd;
  --left-msg-bg: #ececec;
  --right-msg-bg: #2eb8b8;
}





.msger {
  display: flex;
  flex-flow: column wrap;
  justify-content: space-between;
  width: 100%;
  max-width: 867px;
  height: calc(100% - 50px);
  border-radius: 5px;
}

.msger-header {
  display: flex;
  justify-content: space-between;
  padding: 10px;
  color: #666;
  border-bottom: 1px solid #ccc;
  width:100%;
  background-color:var(--primary-dark);
}
.msger-header h3{
    margin:0 ;
    color:#fff;
}
.msger-chat {
  /* flex: 1; */
  overflow-y: scroll;
  padding: 20px;
  height: 400px;
  width:100%;
}
.msger-chat::-webkit-scrollbar {
  width: 3px;
}
.msger-chat::-webkit-scrollbar-track {
  background: #fff;
}
.msger-chat::-webkit-scrollbar-thumb {
  background: #bdbdbd;
}
.msg {
  display: flex;
  align-items: flex-end;
  margin-bottom: 10px;
}
.msg:last-of-type {
  margin: 0;
}
.msg-img {
  width: 50px;
  height: 50px;
  margin-right: 10px;
  background: #ddd;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
  border-radius: 50%;
}
.msg-bubble {
  max-width: 450px;
  padding: 15px;
  border-radius: 15px;
  background: var(--left-msg-bg);
}
.msg-info {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 10px;
}
.msg-info-name {
  margin-right: 10px;
  font-weight: 500;
  font-size: 13px;
}
.msg-info-time {
  font-size: 0.85em;
}

.left-msg .msg-bubble {
  border-bottom-left-radius: 0;
}

.right-msg {
  flex-direction: row-reverse;
}
.right-msg .msg-bubble {
  background: var(--right-msg-bg);
  color: #fff;
  border-bottom-right-radius: 0;
}
.right-msg .msg-img {
  margin: 0 0 0 10px;
}

.msger-inputarea {
  display: flex;
  padding: 10px 20px;
  border-top: var(--border);
  background: #fff;
  width:100%;
}
.msger-inputarea * {
  padding: 10px;
  border: none;
  border-radius: 3px;
  font-size: 1em;
}
.msger-input {
  flex: 1;
  background: #f2f2f2;
  outline: none;
  border: none;
  border-top-right-radius: 20px;
  border-bottom-right-radius: 20px;
}
.msger-send-btn {
  margin-left: 10px;
  background: var(--primary);
  color: #fff;
  font-weight: bold;
  cursor: pointer;
  min-width: 50px;
  height: 50px;
  border-radius: 50%;
  transition: background 0.23s;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 15px;
}
.msger-send-btn i{
    padding: 0;
}
.msger-send-btn:hover {
  background: var(--primary-dark);
}

.msger-chat {
  background-color: #fcfcfe;
 
}
.chat-img-bx{
  width: 50px;
  height: 50px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50%;
  background: #fff;
  box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px;
  padding: 4px;
}
.chat-img-bx img{
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
}
.msger-header-title h3{
  font-size: 20px;
  font-weight: 500;
  margin-left: 10px;
}
.file-attch{
  background-color: #f2f2f2;
  border-top-left-radius: 20px;
  border-bottom-left-radius: 20px;
}


.table-over{
  
    width:100%;
    overflow-y:auto;
}

.table-over::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}

/* Track */
.table-over::-webkit-scrollbar-track {
  /*box-shadow: inset 0 0 5px grey; */
  border-radius: 10px;
}
 
/* Handle */
.table-over::-webkit-scrollbar-thumb {
  background: #696969; 
  border-radius: 10px;
}
.modal-close-custom{
    background-color:transparent;
    border:0;
    display:flex;
    margin-left:auto;
    color:#D11470;
}
.preview-img {
    width:150px;
    height:100px;
    border-radius:20px;
    object-fit:cover;
    margin-top:10px;
}

.table-min-width tr th{
    white-space:nowrap;
}

.table-min-width tr td.td-min-100{
   min-width:100px;
}


.table-min-width tr td.td-min-180{
   min-width:180px;
}

.table-container-cs{
    background-color:#fff;
    padding:0;
}













