* {
    font-family: "Twentieth Century"; 
    /* font-family: 'Luxerie', sans-serif; */
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

.main-content {
    padding-left: 30px;
    padding-right: 30px;
    padding-top: 30px;
    min-height: 80vh;
}

.parent-container-for-back-btn {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 10px;
}

.parent-container-for-back-btn span {
    font-weight: 700;
    font-size: 13px;
    line-height: 80%;
    color: #272727;
}

.back-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    width: 37px;
    height: 37px;
    background-color: #000000;
    border-radius: 6px;
    text-decoration: none;
    

}

@media screen and (max-width:768px) {

    .back-btn {
        width: 30px;
        height: 30px;
    }
.back-btn svg{
    width: 11px;
    height: 20px;
}

}

.back-btn:hover {
    color: #333;
}

.hide {
    display: none !important;
}


.modal-backdrop.show {
    z-index: 1060!important;
}

.modal-backdrop.show ~ .modal-backdrop.show {
    z-index: 1062!important;
}

.modal.show {
    z-index: 1061!important;
}

.modal.show ~ .modal.show {
    z-index: 1063!important;
}


/* start of style for table container */

.table-container {
    border-radius: 10px;
    background-color: #2C2C2C;
    color: rgba(255, 255, 255, 0.8);
    overflow-y: auto;
    height: calc(100vh - 248px);
    /* font-weight: 500; */
    font-size: 18px;
    line-height: 24px;
    margin-top: 20px;
    margin-left: 30px;
    margin-right: 30px;
}

table {
    width: 100%;
    table-layout: fixed;
    border-collapse: collapse;
}

thead {
    height: 64px;
    position: sticky;
    top: 0;
    z-index: 10;
    background-color: #2C2C2C;
}
thead th {
    /* font-weight: 500; */
    font-size: 18px;
    line-height: 24px;
    color: #ECECEC;
    font-family: "Twentieth Century"; 
}

thead::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    height: 1px;
    width: 100%;
    /* background: #151515;  */
    /* border-bottom: 1px solid #151515; */
}

th {
    /* font-weight: 500; */
    font-size: 18px;
    line-height: 24px;
    color: rgba(255,255,255,0.6);
    /* border-bottom: 1px solid #151515;  */
    text-align: center;
    font-family: "Twentieth Century"; 
}
td {
    text-align: center;
}
.name-and-picture-container {
    display: flex;
    justify-content: center;
    gap: 10px;
}
.edit-and-delete-container {
    display: flex;
    justify-content: center;
    gap: 7px;
}
tbody tr {
    height: 68px;
    border-bottom: 1px solid #151515; 
}
/* Start of style for vertical scroll bar */
/* width */
::-webkit-scrollbar {
    width: 6px;
    height: 6px;
}
.dropdown-container label {
    cursor: pointer;
}
.dropdown {
    cursor: pointer;
}
.dropdown input {
    cursor: pointer;
}

/* Track */
::-webkit-scrollbar-track {
    border-radius: 20px;
}

/* Handle */
::-webkit-scrollbar-thumb {
    background: #D9D9D9; 
    border-radius: 10px;
}
/* end of style for vertical scroll bar */

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
    -webkit-appearance: none;
    margin: 0;
}


.toastify {
    border-radius: 6px!important;
    font-size: .875rem;
    /* font-weight: 400; */
    line-height: 14px;
    color: #c9c951;
    position: fixed;
    z-index: 11111 !important;
    font-family: "Twentieth Century"; 
}

.danger-toast {
    border: 1px solid #000000!important;
    background: #FFFAF4!important;
    color: #000000!important;
    display: flex!important;
    gap: 5px;
    line-height: 16px;
}

.danger-toast .toast-close {
    color: #606b85!important;
    opacity: 1!important;
    align-self: flex-start;
}
.truncate-text-one-line {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 1;
    word-break: break-all;

}
.truncate-text-two-line {
    display: -webkit-box;
    -webkit-box-orient: vertical;
    overflow: hidden;
    -webkit-line-clamp: 2;
    word-wrap: break-word;
}

.cursor-pointer {
    cursor: pointer;
}

.toast-success {
    border: 1px solid #FFCB04!important;
    background: #242328!important;
    color: #ffffff!important;
    display: flex!important;
    gap: 5px;
    line-height: 16px;
}

.toast-success .toast-close {
    color: #606b85!important;
    opacity: 1!important;
    align-self: flex-start;
}

.parent-container-for-product-tab-buttons {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.product-tab-btn {
    min-width: 132px;
    height: 37px;
    border-radius: 6px;
    border: 1px solid #E7E7E7;
    background-color:#FFFFFF;
    color: #4C4C4C;
    padding-left: 12px;
    padding-right: 12px;
    font-weight: 600;
    font-size: 14px;
    line-height: 80%;

}

.product-tab-btn.active {

    background-color: #000000;
    color: #FFFFFF;
}



.animated-hover-btn {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  padding: 13px 40px;
  background-color: #000000;
  border: 1px solid black;
  font-weight: 700;
  font-size: 16px;
  line-height: 27px;
  color: #FFFFFF;
  text-decoration: none;
  display: flex;
  justify-content: center;
  align-items: center;
  transition: color 0.8s ease;
  z-index: 1;
}

.animated-hover-btn::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  height: 100%;
  width: 100%;
  background-color: #ffffff;
  transform: translateX(-100%);
  transition: transform 0.8s ease;
  z-index: 0;
}

.animated-hover-btn span {
  position: relative;
  z-index: 1;
  transition: color 0.8s ease;
}

.animated-hover-btn.hover-effect::before {
  transform: translateX(0%);
}

.animated-hover-btn.hover-effect span {
  color: black;
}

.animated-hover-btn.exit-effect::before {
  transform: translateX(100%);
}

.animated-hover-btn.exit-effect span {
  color: white;
}

.animated-hover-btn.no-animation::before {
  transition: none !important;
  transform: translateX(-100%) !important;
}
.visibility-hidden {
    visibility: hidden;
}

.user-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: #FFFAF4;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #3C3C3C !important;
    font-weight: 600;
    border: 2px solid #3C3C3C;
}

.avatar-initial {
    font-size: 16px;
}



[lang="ar"] {
    /* .language-switcher-svg svg {
        fill: #000000;
    } 
    .language-switcher-svg svg path {
        stroke: #FFFFFF;
    }*/
    .red-cross-container {
        right: unset !important;
        left: 25px !important;
    } 
    .black-edit-btn {
        margin-left: 5px !important;
    }
    .product .create-product .card > div > div {
        margin-right: 15px !important;
    }
    .black-back-arrow-btn {
        transform: rotate(180deg);
    }
    textarea.form-control {
        direction: ltr;
    }
    .back-btn svg{
        transform: rotate(180deg);
    }
}


@media (max-width: 768px){
    .modal-dialog{
        margin: 0px;
        padding: 10px;
    }

    .modal-dialog input{
        width: 100%;;
    }
    #deleteAccountModal .main-modal-dialog-container {
        max-width: 545px;
        width: 100%;
        margin: 0px auto;
    }
}