.my-inline-flex {display: flex; flex-wrap: wrap;}
.my-inline-flex div {width: 33%; display: inline-block; padding: 3px;}
.my-inline-flex div label {display: flex; flex-wrap: wrap; flex-direction: row; }
.my-inline-flex div label input {margin: 5px}
@media (max-width: 1100px) {.my-inline-flex div {width: 50%;}}
@media (max-width: 800px) {.my-inline-flex div {width: 100%;}}

.my-inline-industry>div {display: flex; flex-wrap: wrap;}
.my-inline-industry>div>label{width: 100%; font-weight: bolder; font-size: 1em; padding-top:10px; color: #1b1b1b;}
.my-inline-industry>div>div{width: 33%;  padding: 2px;}
@media (max-width: 1100px) {.my-inline-industry>div>div {width: 50%;}}
@media (max-width: 800px) {.my-inline-industry>div>div {width: 100%;}}

.my-inline div{display: inline-block; padding: 5px 10px}
.my-inline-col div{padding: 5px 5px}

.card {border-width: 1px; padding: 0px;}

.choices{margin-bottom:5px !important;}

.dropdown-flex-custom { display: flex !important; justify-content: space-between !important;}

/*.dropdown-item { display: flex !important; justify-content: space-between !important;}*/
.dropdown-submenu.dropend .dropdown-toggle::after {position: relative !important; left: 0rem !important; padding: 0px; margin: 0px;}

@media (min-width: 992px) {
    .dropdown-menu .dropdown-submenu { position: relative; }
    .dropdown-menu .dropdown-submenu .dropdown-menu { top: 0; left: 100%; margin-left: 0; margin-right: 0; }
}
@media (max-width: 991px) {
    .dropdown-menu .dropdown-submenu { position: static; }
    .dropdown-menu .dropdown-submenu .dropdown-menu { margin-top: 0; }
}
.navbar-nav .nav-item .nav-link, .navbar-nav .nav-item .nav-link.dropdown-toggle {
    display: flex;
    align-items: center;
}

html[dir=rtl] .choices, html[dir=rtl] select option, html[dir=rtl] .choices__input {
    unicode-bidi: normal !important;
}

.required-field::after {
    content: "*";
    color: red;
}

.avatar-satsa {
    -webkit-filter: brightness(100%);
}

.list-group-item.avatar-satsa:hover {
    -webkit-filter: brightness(20%);
    -webkit-transition: all 1s ease;
    -moz-transition: all 1s ease;
    -o-transition: all 1s ease;
    -ms-transition: all 1s ease;
    transition: all 1s ease;
}


/* Customize the date picker appearance */
.custom-datepikcer {
    display: block;
    width: 100%;
    padding: 0.5rem 1rem;
    font-size: 0.9375rem;
    font-weight: 400;
    line-height: 1.5;
    color: var(--bs-gray-700);
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-color: var(--bs-body-bg);
    background-clip: padding-box;
    border: 1px solid var(--bs-gray-300);
    border-radius: 0.325rem;
}
.pwt-btn.pwt-btn-sm.pwt-btn-info {
    background-color: #3498db;
    border-color: #3498db;
}
.datepicker-plot-area{
    font-family: 'vazir', sans-serif !important; font-size: 0.9rem !important;
}
/*.pwt-datepicker, .pwt-datepicker td, .pwt-btn, .pwt-date-view-header, .pwt-day {*/
/*    font-family: 'vazir', sans-serif !important;*/
/*}*/
/*.datepicker-plot-area .datepicker-day-view .table-days td span{*/
/*    font-family: 'vazir', sans-serif !important; font-size: 0.9rem;*/
/*}*/
/*.datepicker-plot-area .datepicker-day-view .month-grid-box .header .header-row-cell {*/
/*    font-family: 'vazir', sans-serif !important;*/
/*}*/


.note-editable {
    font-size: 2rem;
}

/*.note-editable[dir="rtl"] {*/
/*    font-family: vazir, Arial, sans-serif !important;*/
/*    direction: rtl !important;*/
/*}*/

/*.note-editable[dir="ltr"] {*/
/*    font-family: vazir, Arial, sans-serif !important;*/
/*    direction: ltr !important;*/
/*}*/

/*.custom-note-editable {*/
/*    font-family: vazir, Arial, sans-serif !important;*/
/*    direction: rtl !important;*/
/*}*/

.ribbon-dark {
  position: absolute;
  top: 15px;
  right: 0;
  background: var(--bs-dark);
  padding: 0 10px;
  color: #24292d;
  -webkit-box-shadow: 0 0 40px rgba(0, 0, 0, 0.15);
          box-shadow: 0 0 40px rgba(0, 0, 0, 0.15);
}

.ribbon-dark::before {
  content: "";
  position: absolute;
  top: 0px;
  left: -20px;
  border-top: 0.75em solid var(--bs-dark);
  border-bottom: 1.1em solid var(--bs-dark);
  border-left: 20px solid transparent;
  border-right: 0px solid transparent;
}




.img-thumbnail {
    cursor: pointer;
}



/* Overlay styles */
#loadingOverlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Loader styles */
.loader {
    color: white;
    text-align: center;
    font-size: 24px;
    font-weight: bold;
}

/* Spinner styles */
.spinner {
    border: 8px solid rgba(255, 255, 255, 0.3);
    border-top: 8px solid white;
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
    margin-bottom: 20px; /* Space between spinner and text */
}

/* Spinner animation */
@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}