img{
    height: auto;
}

.btn_disable {
    opacity: 30%;
    pointer-events: none;
}
.btn-primary {
    display: inline-block;
    padding: 10px 20px;
    font-size: 16px;
    color: #fff;
    background-color: var(--main-orange);
    border: none;
    border-radius: 4px;
    text-align: center;
    text-decoration: none;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
    cursor: pointer;
}

.flex { display: flex; }
.flex-1 { flex: 1; }
.flex-warp { flex-wrap: wrap; }
.justify-between {
    justify-content: space-between;
}
.position-relative {
    position: relative;
}
.position-absolute {
    position: absolute;
}
.opacity-0 {
    opacity: 0;
}

.d-none { display: none; }

.cursor-pointer { cursor: pointer; }

.w-full { width: 100%; }
.show{
    display: block !important;
    opacity: 1 !important;
    transform: unset !important;
}

.cus-w-tabs {
    position: relative;
}
.cus-w-tabs:before,
.cus-w-tabs:after {
    content: " ";
    display: table;
    grid-column-start: 1;
    grid-row-start: 1;
    grid-column-end: 2;
    grid-row-end: 2;
}
.cus-w-tabs:after {
    clear: both;
}
.cur-w-current {
    background-color: #e84525 !important;
    color: #fff !important;
}

/* error */
.err-message {
    display: none;
    color: #e84525;
    margin-top: 3px;
}