ul{
    list-style-type: none;
}

section{
    overflow: hidden;
}
.flex {
    display: flex;
    align-items: center;
}

.start {
    display: flex;
    justify-content: start;
}

.center {
    display: flex;
    justify-content: center;
}

.end {
    display: flex;
    justify-content: end;
}

.between {
    display: flex;
    justify-content: space-between;
}

.around {
    display: flex;
    justify-content: space-around;
}

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

.pointer {
    cursor: pointer;
}

.text-shadow {
    color: #fff;
    filter: drop-shadow(1px 1px 10px #fff);
}


.p-sticky {
    position: sticky;
    top: 0;
}

.h-100vh{
    height: 100vh;
}


.ff-bold {
    font-family: "Peyda-Bold";
}

.ff-extra-bold {
    font-family: "Peyda-ExtraBold";
}

.btn-pink{
    background-color: #fb5789;
    color: #fff;
}
.btn-pink:hover{
    background-color: #fff;
    color: #fb5789;
    border: 1px solid #fb5789;
}
.bg-pink{
    background-color: #fb5789;

}
.text-pink{
    color: #fb5789;

}
.text-blue{
    color: #06377b;

}
.border-pink{
    border: 1px solid #fb5789;
}



/* ************** */

.count-up-cart,
.count-down-cart,
.remove-cart-item {
    position: absolute;
    top: 5px;
    bottom: 5px;
    padding: 0 10px;
    background-color: transparent;
    border: none;
    z-index: 7;
}

.count-up-cart {
    right: 5px;
    color: green;
    background-color: #00470015;
}

.count-up-cart:hover {
    background-color: #00470025;
}

.count-down-cart,
.remove-cart-item {
    left: 5px;
    color: red;
    background-color: #ff000015;
}

.count-down-cart:hover,
.remove-cart-item:hover {
    background-color: #ff000025;
}
