body.overflow-hidden {
    overflow: hidden;
}

a {
    color: var(--color-primary);
    text-decoration: none;
    cursor: pointer;
}

input.full-right {
    direction: rtl;
    text-align: right;
}

input[type="number"] ,
input[type="password"] ,
input.full-left {
    direction: ltr;
    text-align: left;
}

.w-fit {
    width: fit-content;
}

.text-justify {
    text-align: justify;
}

.app-color-primary {
    color: var(--color-primary) !important;
}

.app-bg-primary {
    background-color: var(--color-primary) !important;
}

.app-color-dark-primary {
    color: var(--color-dark-primary) !important;
}

.app-color-dark-secondary {
    color: var(--color-dark-secondary) !important;
}

.app-container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
}

.app-container.mw-lg {
    width: 100%;
    max-width: 992px;
    margin: 0 auto;
}

.app-container.mw-md {
    width: 100%;
    max-width: 768px;
    margin: 0 auto;
}

/* Card */

.card2 {
    display: block;
    background-color: #fff;
    width: 100%;
    border-radius: 1.15rem;
    padding: 1.25rem;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    /* margin: -380px 0 0 0; */
    position: relative;
    z-index: 10;
}

.card3 {
    display: block;
    background-color: #fff;
    width: 100%;
    border-radius: 0.75rem;
    padding: 1.25rem;
    border: 1px solid #bbb;
}

.card4 {
    display: block;
    background-color: #fff;
    width: 100%;
    border-radius: 1.15rem;
    padding: 1.25rem;
    box-shadow: rgba(50, 50, 93, 0.25) 0px 13px 27px -5px, rgba(0, 0, 0, 0.3) 0px 8px 16px -8px;
    margin: -30px 0 20px 0;
    position: relative;
    z-index: 20;
    max-width: unset;
}

/* Button */

.app-btn1 {
    display: inline-block;
    width: fit-content;
    min-width: 140px;
    padding: 0.5rem 1rem;
    text-align: center;
    cursor: pointer;
    color: #fff;
    text-decoration: none;
    background-color: var(--color-primary);
    border: none;
    border-radius: 0.5rem;
    border: 2px solid transparent;
}

.app-btn1.outline {
    color: var(--color-primary);
    border: 2px solid var(--color-primary);
    background-color: #fff;
}

.app-btn1:not(:disabled):hover {
    opacity: 0.85;
}

.app-btn1:disabled {
    opacity: 0.45;
}

/* Tab Menu */

.app-tab {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 1.5rem;
    padding: 1rem 1.5rem 0;
    border-bottom: 1px solid #bbb;
    margin-bottom: 1.5rem;
}

.app-tab .app-tab-btn {
    display: inline-block;
    border: none;
    background-color: #fff;
    font-size: 1.25rem;
    padding: 0 0 0.5rem;
    color: var(--color-dark-primary);
    border-bottom: 3px solid transparent;
    /* margin-bottom: -2px; */
}

.app-tab .app-tab-btn.active {
    color: var(--color-primary);
    border-bottom-color: var(--color-primary);
}

.app-tab-content {
    width: 100%;
    padding: 0 1.5rem 1.5rem;
}

.app-tab-content .app-tab-item {
    display: none;
    width: 100%;
}

.app-tab-content .app-tab-item.active {
    display: block;
}

/* Five Star Rate */

.star-rating-wrapper {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    gap: 0.25rem;
    width: 100%;
}

.star-rating-wrapper img {
    display: block;
    width: 0.5rem !important;
    height: 0.5rem !important;
}

.star-rating-wrapper.large img {
    display: block;
    width: 1rem !important;
    height: 1rem !important;
}

/* Invisible Space Divider */

.invisible-divider {
    display: block;
    width: 100%;
    height: 1rem;
    margin: 3rem auto;
}

.invisible-divider.m2 {
    margin: 2rem auto;
}

.invisible-divider.m4 {
    margin: 4rem auto;
}

.invisible-divider.m5 {
    margin: 5rem auto;
}
