/*Customer css*/
.my-customer-absolute-center {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

.my-customer-padding-1em {
    padding: 1em;
}

.my-customer-df {
    display: flex;
}

.my-customer-flexbox {
    display: flex;
    align-items: center;
    justify-content: center;
}

.my-customer-flexbox-column {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.my-customer-position-relative {
    position: relative;
}

.my-customer-bottom-left-0 {
    position: absolute;
    bottom: 0;
    left: 0;
}

.my-customer-margin-auto {
    margin: auto;
}

.my-customer-h100 {
    height: 100%;
}

.my-customer-h50 {
    height: 50%;
}

.my-customer-w100 {
    width: 100%;
}

.my-customer-w50 {
    width: 50%;
}

.my-customer-w25 {
    width: 25%;
}

.my-customer-w10 {
    width: 10%;
}

.my-customer-flex-wrap {
    display: flex;
    flex-wrap: wrap;
}

.my-customer-border-box {
    box-sizing: border-box;
}

.my-customer-margin-padding-0 {
    margin: 0;
    padding: 0;
}

.my-customer-pointer-lock {
    pointer-events: none;
}

.my-customer-overflow-hidden {
    overflow: hidden;
}

.my-customer-fixed-top {
    position: fixed;
    top: 0;
    left: 0;
}

.my-customer-fixed-bottom {
    position: fixed;
    bottom: 0;
    left: 0;
}

.my-customer-display-table {
    display: table;
}

.my-customer-display-table-cell {
    float: none;
    display: table-cell;
    vertical-align: top;
}

/*fill btn, use it with size and color*/
.my-customer-fill-btn {
    position: relative;
    background-color: transparent;
    overflow: hidden;
}

.my-customer-fill-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform: scaleX(0);
    transform-origin: left;
    transition: 1s ease-in-out;
}

.my-customer-fill-btn:hover::before,
.my-customer-fill-btn:focus::before {
    transform: scaleX(1);
}

/*active btn*/
.my-customer-active-btn {
    background: transparent;
    border: 1px solid #000000;
    color: #000000;
}

.my-customer-active-btn:hover {
    background: #000000;
    color: #ffffff;
}

.my-customer-gradient-text {
    background-clip: text;
    color: transparent;
    /*add background image linear-gradient*/
}

.my-customer-hover-scale120:hover {
    transform: scale(1.2);
}

.my-customer-cartBody {
    width: 400px;
    height: 400px;
    clip-path: polygon(10% 0%, 90% 0%, 100% 100%, 0% 100%);
    background: linear-gradient(0deg, purple, orange);
    display: block;
}

.my-customer-cartHandle {
    content: '';
    width: 200px;
    height: 200px;
    display: block;
    border-radius: 50%/ 60% 60% 40% 40%;
    box-shadow: 0 0 0 10px black;
    margin-bottom: -100px;
}