.hidden {
    display: none !important;
}

.text-center {
    text-align: center
}

.text-left {
    text-align: left
}

.text-right {
    text-align: right
}

.d-flex{
    display: flex;
}

.display-flex {
    display: flex;
    align-items: center;
}

.display-flex-5 {
    display: flex;
    align-items: center;
    gap: 5px;
}

.flex-left{
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.flex-center{
    display: flex;
    align-items: center;
    justify-content: center;
}

.flex-between{
    display: flex;
    justify-content: space-between;
}

.flex-end{
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.flex-left-column {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: space-between;
}

.flex-right-column{
    display: flex;
    flex-direction: column;
    align-items: flex-end;
}

.flex-1 {
    flex: 1 1 0%;
}

.margin-r-5 {
    margin-right: 5px;
}

.margin-r-10 {
    margin-right: 10px;
}

.margin-r-15{
    margin-right: 15px;
}

.list-unstyled {
    padding-left: 0;
    list-style: none;
}

.list-unstyled-item {
    list-style: none;
}

.g-5{
  gap: 5px !important;
}

.gap-10 {
    gap: 10px;
}

.gap-15 {
    gap: 15px;
}


.gap-20 {
    gap: 20px;
}

.margin-0 {
    margin: 0px;
}

.margin-top-10 {
    margin-top: 10px !important;
}

.margin-top-15 {
    margin-top: 15px !important;
}

.margin-top-20 {
    margin-top: 20px;
}

.margin-top-30 {
    margin-top: 30px;
}

.margin-bottom-10 {
    margin-bottom: 10px !important;
}

.margin-bottom-15 {
    margin-bottom: 15px;
}

.txt-white {
    color: #fff;
}

.txt-black {
    color: #000;
    font-weight: bold;
}

.font-size-20{
    font-size: 20px !important;
}

.font-size-18{
    font-size: 18px !important;
}

.textarea-no-resize{
    resize: none;
}

.width-60{
    width: 60px;
}

.mb-20{
    margin-bottom: 20px;
}

.pd-15{
    padding: 15px;
}

.pdb-10{
    padding-bottom: 10px;
}

button:disabled {
    cursor: not-allowed; 
    opacity: 0.6; 
}
