.images-list-box .images {
    display: flex;
    justify-content: start;
    flex-wrap: wrap;
    user-select: none;
    margin: -8px;
}

.images-list-box .images .post-cell {
    flex: 0 0 25%;
    display: flex;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}

.images-list-box .images .post-cell:before {
    content: "";
    display: table;
    padding-top: 100%;
}

.images-list-box .images .post-cell .post-cell-inner {
    margin: 8px;
}

.images-list-box .images .post-cell .post {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 8px;
    border-radius: 5px;
    /* display: none; */
}

.post {
    display: inline-block;
    vertical-align: top;
    position: relative;
    overflow: hidden;
}

.images-list-box .images .post-cell .post img {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
    background: #3085a3;
    text-align: center;
    cursor: pointer;
    transition: 2s;
    object-fit: cover;
}

.images-list-box .images .post-cell .post:hover img {
    opacity: 1;
    transition: 1s;
    transform: scale(1.1);
}

.images-list-box .images .post-cell .post:hover label {
    background-color: rgb(242 4 4 / 53%);
    transition: 1s;
}

.images-list-box .images .post-cell .post.active label {
    background-color: rgb(0 0 0 / 60%);
    transition: 1s;
}

.images-list-box .images .post-cell .post label {
    width: 105%;
    height: 100%;
    transition: 1s;
    /* opacity: 0.2; */
}

.post label {
    position: absolute;
    top: 0px;
    left: -5px;
    bottom: 0;
    right: 0;
}

.post input.img-check {
    opacity: 0;
    height: 1px;
    width: 1px;
}

.post input.img-check + span {
    position: absolute;
    display: block;
    top: 10px;
    left: 10px;
    width: 25px;
    height: 25px;
    border-radius: 14px;
    background-color: transparent;
    border: 2px solid var(--theme-white);
    box-sizing: border-box;
    /* box-shadow: 0 0 5px rgb(0 0 0 / 30%); */
}

.post input.img-check + span i {
    text-align: center;
    border-radius: 44px;
    color: var(--theme-white);
    width: 21px;
    height: 21px;
    padding: 5px;
    font-size: 12px;
}

.post input.img-check + span i {
    background-color: #f2295b;
}

.post_image_check {
    display: none;
}

.post_image_toast {
    backdrop-filter: blur(4px);
}

.post .img-info {
    display: none;
    position: absolute;
    bottom: 0px;
    left: 0px;
    right: 0;
    color: var(--theme-white);
    overflow: hidden;
    background: rgba(0, 0, 0, 0.4);
    line-height: 20px;
    font-size: 14px;
    text-align: center;
    padding: 10px 0px;
}

/* loder */
.loder-box {
    position: absolute;
    top: 0px;
    left: 0;
    right: 0;
    bottom: 0;
    margin: 8px;
    border-radius: 5px;
    box-shadow: 0px 0px 4px 1px #eee;
}

.select-post-content-box2 {
    display: none;
}

.select-post-stick1 {
    display: none;
}


.post-cell-inner .post-vi-link {
    content: "";
    position: absolute;
    top: 10px;
    right: 30px;
}

.post-cell-inner .post-vi-link a {
    display: flex;
    padding: 1px;
    text-align: center;
    height: 25px;
    width: 25px;
    border-radius: 5px;
    background: rgb(0 0 0 / 29%) !important;
    position: inherit;
    top: 0px;
    align-items: center;
    justify-content: center;
}

.post-cell-inner .post-vi-link i {
    color: var(--theme-white);
    line-height: 0;
    padding: 0px;
    margin: 0px;
    font-size: 14px;
}

.select-post-content-mobile {
    border: none;
    padding: 10px 7px;
    margin: 0px;
    border-radius: inherit;
    box-shadow: none;
    background-color: rgb(255 255 255 / 83%);
    backdrop-filter: blur(12px);
}

.add-to-cartbtn {
    font-size: 14px !important;
}

/* checkmark  */
.check-iem-new {
    display: none;
}

.checkmark__circle {
    stroke-dasharray: 166;
    stroke-dashoffset: 166;
    stroke-width: 2;
    stroke-miterlimit: 10;
    stroke: var(--theme-white);
    fill: #e01f6b;
    animation: stroke 0.6s cubic-bezier(0.65, 0, 0.45, 1) forwards;
    display: none;
}

.checkmark {
    width: 35px;
    height: 35px;
    border-radius: 50%;
    display: block;
    stroke-width: 2;
    stroke: var(--theme-white);
    stroke-miterlimit: 10;
    margin: 15% auto;
    /* box-shadow: inset 0px 0px 30px #e91e63; */
    box-shadow: inset 0px 0px 0px 30px var(--theme-primary-color);
    /* animation: fill .4s ease-in-out .4s forwards, scale .3s ease-in-out .9s both;  */
}

.checkmark__check {
    transform-origin: 50% 50%;
    stroke-dasharray: 48;
    stroke-dashoffset: 48;
    animation: stroke 0.3s cubic-bezier(0.65, 0, 0.45, 1) 0s forwards;
}

@keyframes stroke {
    100% {
        stroke-dashoffset: 0;
    }
}


/* Selected-post-box Start  */
.post-selected-box {
    overflow: hidden;
    background: rgb(255 0 0 / 10%);
    font-size: 15px !important;
}

.post-selected-box::before {
    content: "";
    top: 25px;
    position: absolute;
    left: -5px;
    width: 10px;
    height: 10px;
    border-radius: 5px;
    background: var(--theme-white);
}

.post-selected-box::after {
    content: "";
    bottom: 25px;
    position: absolute;
    right: -5px;
    width: 10px;
    height: 10px;
    background: var(--theme-white);
    border-radius: 5px;
}

/* Selected-post-box End  */


/*mobile media Start*/
@media screen and (min-device-width: 200px) and (max-device-width: 499px) {

    .images-list-box .images .post-cell {
        flex: 0 0 50%;
    }

    .post input.img-check + span {
        width: 20px;
        height: 20px;
    }

    .post input.img-check + span i {
        width: 16px;
        height: 16px;
        padding: 3px;
        font-size: 9px;
    }

}

@media screen and (min-device-width: 500px) and (max-device-width: 767px) {

    .images-list-box .images .post-cell {
        flex: 0 0 33%;
    }
}

@media screen and (max-device-width: 990px) {
    .select-post-content-box2 {
        display: none !important;
    }

    .stick-parent_2 {
        position: -webkit-sticky;
        position: inherit;

    }
}

@media screen and (min-device-width: 991px) and (max-device-width: 2560px) {
    .select-post-stick1 {
        display: none !important;
    }
}

@media screen and (min-device-width: 200px) and (max-device-width: 767px) {
    .mobile-view-user-list h5#selected-post-head2,
    .mobile-view-user-list .mobile-hr,
    .mobile-view-user-list .mobile-view-checkout-btn {
        display: none;
    }

    .post-limit-modal .modal-footer .btn {
        padding: 6px 10px !important;
    }
}

@media (max-width: 768px) {
    .mobile-continue-btn {
        color: var(--theme-white);
        border-color: var(--bg-theme-color);
        background: var(--bg-theme-color);
    }
}
