a {
    text-decoration: none;
    transition: all 500ms ease;
    -moz-transition: all 500ms ease;
    -webkit-transition: all 500ms ease;
    -ms-transition: all 500ms ease;
    -o-transition: all 500ms ease;
}

a:hover {
    text-decoration: none !important;
    outline: none;
}

.new-card {
    width: 220px;
    height: 320px;
    background-color: white;
    border: 1px solid #dee2e6;
    position: relative;
    cursor: pointer;
    transform-style: preserve-3d;
    /* transform: rotateY(-15deg); */
    transition: all 250ms ease;
    margin: 8px;
    border-radius: 15px 0px 15px 0px;
    overflow: hidden;
}

.similar-post .generic-card {
    width: 200px;
    height: 200px;
    background-color: white;
    border: 1px solid #dee2e6;
    position: relative;
    cursor: pointer;
    transform-style: preserve-3d;
    transition: all 250ms ease;
    margin: 8px;
}

.new-card.listing-card {
    transform: rotateY(0) !important;
    margin: 8px !important;
}

@media only screen and (max-width: 640px) {
    .new-card {
        width: calc(50vw - 25px);
        height: 200px;
        background-color: white;
        border: 1px solid #dee2e6;
        position: relative;
        cursor: pointer;
        border-radius: 15px 0px 15px 0px;
        overflow: hidden;
        transition: all 250ms ease;
    }

    .new-card .new-card-middle {
        position: absolute;
        width: 100%;
        height: 55%;
        object-fit: cover;
        overflow: hidden;
    }

    .new-card .new-card-body {
        position: absolute;
        top: 55%;
        width: 100%;
        padding: 5px 10px;
    }
}

.new-card:hover {
    transform: scale(1.05);
}

.new-card:hover .new-card-middle-image {
    transform: scale(1.2);
}

.new-card-header {
    border-radius: 10px 0 10px 0;
    position: absolute;
    top: 35px;
    right: 0px;
    background-color: rgba(0, 0, 0, 0.466);
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
    color: white;
    opacity: 1;
    transition: all 250ms ease;
}

.new-mobile-card-header {
    border-radius: 10px 0 10px 0;
    position: absolute;
    /* height: calc(70% - 45px); */
    /* width: 30px; */
    /* height: 0px; */
    top: 35px;
    right: 35px;
    background-color: rgba(0, 0, 0, 0.466);
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    align-items: center;
    padding: 5px;
    color: white;
    opacity: 1;
    transition: all 250ms ease;
}

.new-card-header.hidden {
    opacity: 0;
}

.new-mobile-card-header.hidden {
    opacity: 0;
}

.new-card-header-action {
    transition: all 0.1s ease;
}

.new-card-header-action:hover {
    transform: scale(1.3);
}

.new-card-middle {
    position: absolute;
    width: 100%;
    height: 72%;
    object-fit: cover;
    overflow: hidden;
}

.new-card-middle-image {
    position: absolute;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: all 0.5s ease;
}

.new-card-middle-price {
    position: absolute;
    height: 30px;
    width: 100%;
    bottom: 0;
    left: 0;
    background-color: rgba(0, 0, 0, 0.466);
    z-index: 2;
    padding: 5px 10px;
    color: white;
    font-weight: bold;
    line-height: 1;
}

.new-card-body {
    position: absolute;
    top: 70%;
    width: 100%;
    padding: 5px 10px;
}

.new-card-title {
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    color: black;
    font-weight: 600;
    width: 70%;
}

.new-card-info {
    display: flex;
    align-items: center;
}

.new-card-info-donation {
    padding: 5px;
    background-color: #2cc185;
    color: white;
    border-radius: 5px 0 5px 0;
}

.new-card-info-delivery {
    padding: 5px;
    background-color: var(--highlight);
    color: white;
    border-radius: 5px 0 5px 0;
}

.new-card-info-echange {
    padding: 5px;
    background-color: var(--lightBlue);
    color: white;
    border-radius: 5px 0 5px 0;
}

.new-card-info-disabled {
    background-color: rgb(154, 153, 153) !important;
    color: gray;
    /* opacity: 0.3; */
}

.placeholder-card {
    background-color: #eee;
}

@keyframes placeHolderShimmer {
    0% {
        background-position: -468px 0
    }

    100% {
        background-position: 468px 0
    }
}

.animated-background {
    animation-duration: 1.25s;
    animation-fill-mode: forwards;
    animation-iteration-count: infinite;
    animation-name: placeHolderShimmer;
    animation-timing-function: linear;
    background: darkgray;
    background: linear-gradient(to right, #eeeeee 10%, #dddddd 18%, #eeeeee 33%);
    background-size: 800px 104px;
    position: relative;
}

.feminine-font {
    color: #f85c70 !important;
    font-size: 4rem !important;
}

.feminine-font-thumbs {
    color: #f85c70 !important;
    font-size: 1.8rem !important;
}

/* .swiper-button-prev{
    margin-left: 30px !important;
} */
.fixed-main-side-bar {
    z-index: 9999;
}

.new-card-action-badge {
    position: absolute;
    left: 0px;
    top: 50%;
    transform: translate(-100%, -50%);
    width: 20px;
    height: 20px;
    min-width: 18px;
    font-weight: 700;
    font-family: sans-serif;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 10px;
    padding: 4px;
    border-radius: 7px;
    background-color: var(--highlight);
    color: #fff;
}

/* ********************** Start alert mail not Verified Style *****************************************************/
.alert-title {
    color: #F56040;
}

.alert {
    border-radius: 0;
    -webkit-border-radius: 0;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.11);
    display: table;
    width: calc(100% - 55px);
    /* 45px is the width of side menu (barre ) + 5 *2  px margin each side */
}

.alert-white {
    background-color: #ffffffed;
    padding-left: 61px;
    position: fixed;
    margin-top: 70px;
    z-index: 100;
    bottom: 0;
    box-shadow: 3px 4px 6px rgb(0 0 0 / 49%);
    width: 90vw;
    margin-left: -45vw;
    left: 50%;
    transition: opacity 0.1s linear;
}

.alert-white.hide {

    opacity: 0;


}
.alert-white .icon i:active {
    font-size: 24px;
    margin-top: -12px;
    margin-left: -12px;
}

.alert-white.rounded {
    border-radius: 3px;
    -webkit-border-radius: 3px;
}

.alert-white.rounded .icon {
    border-radius: 3px 0 0 3px;
    -webkit-border-radius: 3px 0 0 3px;
}

.alert-white .icon {
    text-align: center;
    width: 45px;
    height: 100%;
    position: absolute;
    top: 0;
    left: 0;
    border: 1px solid #bdbdbd;
    padding-top: 15px;
}


.alert-white .icon:after {
    -webkit-transform: rotate(45deg);
    -moz-transform: rotate(45deg);
    -ms-transform: rotate(45deg);
    -o-transform: rotate(45deg);
    transform: rotate(45deg);
    display: block;
    content: '';
    width: 10px;
    height: 10px;
    border: 1px solid #bdbdbd;
    position: absolute;
    border-left: 0;
    border-bottom: 0;
    top: 50%;
    right: -6px;
    margin-top: -3px;
    background: #fff;
}

.alert-white .icon i {
    font-size: 20px;
    color: #fff;
    position: absolute;
    left: 50%;
    margin-top: -10px;
    position: absolute;
    top: 50%;
    margin-left: -10px;
}

/*============ colors ========*/


.alert-danger {

    color: black;
    border: 1px solid #dee2e6;
}

.alert-white.alert-danger .icon,
.alert-white.alert-danger .icon:after {
    border: #F56040;
    background: #F56040;
}

/* ********************** END alert mail not Verified Style *****************************************************/


/* ***********************START responsive alert mail not verified ********************************************* */
@media screen and (max-width: 800px) {
    .alert-white .icon {


    }

    .alert-white {


        font-size: small;
    }

    .line-alert {
        display: block !important;

    }
}

/* ***********************END responsive alert mail not verified *********************************************** */
.new-card .price-tag {
    color: #F56040;
    font-weight: bolder;
    width: 50%;
    text-align: right;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.new-card .local-info {
    color: black;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 50%;
}

.new-card .card-date {
    color: black;
    font-size: 12px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 50%;
}

.new-card .post-show-phones {
    font-size: 16px;
    border-radius: 50%;
    padding: 10px;
    background-color: white;
    cursor: pointer;
    border: solid black 1px;
    transition: all 250ms ease;
}

.new-card .post-show-phones:hover {
    background-color: black;
    transform: scale(1.2);
}

.new-card .post-show-phones .call-icon {
    color: black;
}

.new-card .post-show-phones:hover .call-icon {
    color: white;
}

/* ADD TO CART */
.new-card .post-add-to-cart {
    font-size: 16px;
    border-radius: 50%;
    padding: 10px;
    background-color: white;
    cursor: pointer;
    border: solid black 1px;
    transition: all 250ms ease;
}

.new-card .post-add-to-cart:hover {
    background-color: black;
    transform: scale(1.2);
}

.new-card .post-add-to-cart .cart-icon {
    color: black;
}

.new-card .post-add-to-cart:hover .cart-icon {
    color: white !important;
}

.new-card .post-menu-toggle {
    position: absolute;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    top: 5px;
    right: 5px;
    background-color: rgba(0, 0, 0, 0.466);
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    color: white;
}

.new-card .post-mobile-menu-toggle {
    position: absolute;
    height: 30px;
    width: 30px;
    border-radius: 50%;
    top: 5px;
    right: 5px;
    background-color: rgba(0, 0, 0, 0.466);
    z-index: 2;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 5px;
    color: white;
}

.new-card .border-line {
    position: absolute;
    bottom: -1px;
    left: -1px;
    z-index: 1;
    pointer-events: none;
}

.new-card .border-line path {
    fill: #F56040;
    fill-opacity: 1;
    stroke: #F56040;
    stroke-width: 0
}

.new-card .border-line-up {
    position: absolute;
    top: -1px;
    right: -1px;
    z-index: 1;
    pointer-events: none;
    transform: rotate(180deg);
}

.new-card .border-line-up path {
    fill: #F56040;
    fill-opacity: 1;
    stroke: #F56040;
    stroke-width: 0
}


.new-card-container {
    /* perspective: 500px;  */
    position: relative;
}

.new-card .store-logo-border {
    position: absolute;
    bottom: 0px;
    left: 50%;
    background-color: white;
    width: 100px !important;
    height: 100px !important;
    border-radius: 50%;
    transform: translate(-50%, 50%);
}

.new-card .store-logo {
    position: absolute;
    bottom: 0px;
    left: 50%;
    width: 90px !important;
    height: 90px !important;
    border-radius: 50%;
    transform: translate(-50%, 42%);
}

.new-card .store-name-container {
    position: absolute;
    top: 0px;
    left: 0px;
    background-color: rgba(255, 255, 255, 0.493);
    padding: 5px;
    width: 80%;
    height: 35px;
    border-bottom-right-radius: 79px;
    border-right: solid #F56040 3px;
    backdrop-filter: blur(10px);
}

/* .new-card .store-name-container::before{
    display: block;
    position: absolute;
    content: "";
    width: 50%;
    height: 100%;
    border-bottom: solid #F56040 2px;
    pointer-events: none;
    right: 0;
    bottom: 0;
} */
.new-card .store-name-container .store-name-text {
    font-weight: bold;
    text-align: center;
}
