@font-face {
    font-family: "ngm";
    src: url("../vendor/fonts/ngm.woff");
}

@font-face {
    font-family: "ngm";
    src: url("../vendor/fonts/ngm.woff2");
}

.text-justify {
    text-align: justify !important
}

.zoom-md-up,.zoom-lg-up {
    transition: 0.3s;
}
.zoom-lg-up:hover {
    transform: scale(1.1);
}
.zoom-md-up:hover {
    transform: scale(1.05);
}

.loader {
    width: 175px;
    height: 80px;
    display: block;
    margin: auto;
    background-image: radial-gradient(circle 25px at 25px 25px, #FFF 100%, transparent 0), radial-gradient(circle 50px at 50px 50px, #FFF 100%, transparent 0), radial-gradient(circle 25px at 25px 25px, #FFF 100%, transparent 0), linear-gradient(#FFF 50px, transparent 0);
    background-size: 50px 50px, 100px 76px, 50px 50px, 120px 40px;
    background-position: 0px 30px, 37px 0px, 122px 30px, 25px 40px;
    background-repeat: no-repeat;
    position: relative;
    box-sizing: border-box;
}
.loader::after {
    content: '';
    left: 50%;
    bottom: 0;
    transform: translate(-50%, 0);
    position: absolute;
    border: 15px solid transparent;
    border-top-color: #FF3D00;
    box-sizing: border-box;
    animation: fadePush 1s linear infinite;
}
.loader::before {
    content: '';
    left: 50%;
    bottom: 30px;
    transform: translate(-50%, 0);
    position: absolute;
    width: 15px;
    height: 15px;
    background: #FF3D00;
    box-sizing: border-box;
    animation: fadePush 1s linear infinite;
}

@keyframes fadePush {
    0% {
        transform: translate(-50%, -15px);
        opacity: 0;
    }
    50% {
        transform: translate(-50%, 0px);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, 15px);
        opacity: 0;
    }
}


.loader_3d{
    width: 200px;
    height: 40px;
    background-color: #2b8cc645;
    position: relative;
    border-radius: 50px;
    box-shadow: inset 0 0 0 2px rgba(0, 0, 0, 0.05);
    margin: auto;
    top: inherit;
}
.loader_3d:after {
    border-radius: 50px;
    content: "";
    position: absolute;
    background-color: #fff;
    left: 2px;
    top: 2px;
    bottom: 2px;
    right: 360px;
    animation: slide 2s linear infinite;
    box-shadow: 0 1px 2px rgba(0, 0, 0, 0.2);
}

@keyframes slide {
    0% {
        right: 150px;
        left: 2px;
    }
    5% {
        left: 2px;
    }
    50% {
        right: 2px;
        left: 150px;
    }
    55% {
        right: 2px;
    }
    100% {
        right: 150px;
        left: 2px;
    }
}

.list-group.list-group-ngm{
    border: 1px solid rgba(0,0,0,.125);
    border-radius: 10px;
}
.list-group.list-group-ngm .list-group-item{
    border:0px !important;
    border-bottom: 1px dashed rgba(0,0,0,.125) !important;
    margin-bottom: 1px;
    margin: 0px 10px;
    padding: .5rem !important;
    -ms-flex-align: center !important;
    align-items: center !important;
    -ms-flex-pack: justify !important;
    justify-content: space-between !important;
    display: -ms-flexbox !important;
    display: flex !important;
}
.list-group.list-group-ngm .list-group-item:first-child {
    border-top-right-radius: 10px !important;
    border-top-left-radius: 10px !important;
}
.list-group.list-group-ngm .list-group-item:last-child {
    border-bottom-left-radius: 10px !important;
    border-bottom-right-radius: 10px !important;
    border-bottom: 0px !important;
}

.btn-block {
    display: block;
    width: 100%;
}


.c-pointer {
    cursor: pointer !important;
}
.file-preview img{
    border: 1px solid #00cfe8 !important;
    border-radius: 5px;
    width: 60px;
    height: 40px;
}



/*.loader_3d {*/
/*    width: 150px;*/
/*    height: 75px;*/
/*    margin: 50px auto 0;*/
/*    position: relative;*/
/*}*/

/*.loader_3d .circle_3d {*/
/*    background-color: #73c713;*/
/*    width: 20px;*/
/*    height: 20px;*/
/*    border-radius: 50%;*/
/*    transform-origin: 50%;*/
/*    position: absolute;*/
/*    left: 15%;*/
/*    animation: circle_3d .5s alternate infinite ease;*/
/*}*/

/*.loader_3d .circle_3d:nth-child(2) {*/
/*    background-color: #0cbef8;*/
/*    left: 45%;*/
/*    animation-delay: .2s;*/
/*}*/

/*.loader_3d .circle_3d:nth-child(3) {*/
/*    background-color: #5f00bc;*/
/*    left: auto;*/
/*    right: 15%;*/
/*    animation-delay: .3s;*/
/*}*/

/*.shadow_3d {*/
/*    background-color: rgba(0, 0, 0, 0.5);*/
/*    width: 20px;*/
/*    height: 4px;*/
/*    border-radius: 50%;*/
/*    transform-origin: 50%;*/
/*    position: absolute;*/
/*    top: 62px;*/
/*    left: 15%;*/
/*    filter: blur(1px);*/
/*    animation: shadow_3d .5s alternate infinite ease;*/
/*}*/

/*.shadow_3d:nth-child(4) {*/
/*    left: 45%;*/
/*    animation-delay: .2s*/
/*}*/

/*.shadow_3d:nth-child(5) {*/
/*    left: auto;*/
/*    right: 15%;*/
/*    animation-delay: .3s;*/
/*}*/

/*@keyframes circle_3d {*/
/*    0% {*/
/*        top: 60px;*/
/*        height: 5px;*/
/*        border-radius: 50px 50px 25px 25px;*/
/*        transform: scaleX(1.7);*/
/*    }*/
/*    40% {*/
/*        height: 20px;*/
/*        border-radius: 50%;*/
/*        transform: scaleX(1);*/
/*    }*/
/*    100% {*/
/*        top: 0%;*/
/*    }*/
/*}*/

/*@keyframes shadow_3d {*/
/*    0% {*/
/*        transform: scaleX(1.5);*/
/*    }*/
/*    40% {*/
/*        transform: scaleX(1);*/
/*        opacity: .7;*/
/*    }*/
/*    100% {*/
/*        transform: scaleX(.2);*/
/*        opacity: .4;*/
/*    }*/
/*}*/

.break-long-text {
    word-break: break-word;
    white-space: normal;
}

.mr-auto-x {
    margin-right: auto !important;
}

.light-style #toast-container > .toast-success {
    color: #1c7004 !important;
    background-color: #bef8c1 !important;
}

.light-style #toast-container > .toast-success .toast-title {
    color: #006018 !important;
}

.light-style #toast-container .toast-warning {
    color: #8e3703 !important;
    background-color: #f8efbe !important;
}

.light-style #toast-container > .toast-warning .toast-title {
    color: #c65503 !important;
}

.light-style #toast-container .toast-error {
    color: #8d0303 !important;
    background-color: #fbb7b7 !important;
}

.light-style #toast-container > .toast-error .toast-title {
    color: #ca0000 !important;
}

.light-style #toast-container .toast-info {
    color: #011373 !important;
    background-color: #b0e5ff !important;
}

.light-style #toast-container > .toast-info .toast-title {
    color: #0565df !important;
}

.list-group.list-group-odd-even > .list-group-item {
    background-color: #fff !important;
}

.list-group.list-group-odd-even > .list-group-item:nth-child(odd) {
    background-color: rgba(75, 70, 92, 0.03) !important;
}

.tooltip-instagram{
    background-color: #e1306c;
}

.form-label-float {
    position: relative;
    z-index: 100;
    bottom: -11px;
    padding: 0 5px;
    background-color: #fff !important;
    right: 5px;
    color: #444 !important;
}

.number-spacing-1 {
    letter-spacing: 3px;
}

.fs-small {
    font-size: 90% !important;
}

.fs-xsmall {
    font-size: 80% !important;
}

.fa-num {
    -moz-font-feature-settings: "ss02";
    -webkit-font-feature-settings: "ss02";
    font-feature-settings: "ss02";
}

.fa-num-monospace {
    -moz-font-feature-settings: "ss03";
    -webkit-font-feature-settings: "ss03";
    font-feature-settings: "ss03";
}

.dz-set-default {
    position: absolute;
    top: -52px;
    right: -50px;
    width: 10rem;
    z-index: 20;
    color: #fff;
    border-radius: 5px;
    font-size: 14px;
    text-align: center;
    display: block;
    cursor: pointer;
    padding: 3px 10px;
    background: rgba(130, 130, 130, 0.5);
}

.selected-default-image {
    background: rgba(66, 7, 196, 0.8);
    color: #fff;
}

.dz-set-default:hover {
    cursor: pointer;
    color: #fff;
}
.text-truncate-1 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.text-truncate-2 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.text-truncate-3 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}

.zoom-up-md,.zoom-up-lg,.zoom-out-md {
    transition: 0.2s;
}
.zoom-up-lg:hover {
    transform: scale(1.1);
}
.zoom-up-md:hover {
    transform: scale(0.05);
}
.zoom-out-md:hover {
    transform: scale(0.95);
}
.img-contain {
    max-height: 100%;
    width: 100%;
    object-fit: contain;
}
.img-cover {
    max-height: 100%;
    width: 100%;
    object-fit: cover !important;
}
.swiper-slide-image-counter {
    background-color: rgba(0,0,0,.6);
    bottom: 10px;
    color: #fff;
    padding: 5px;
    position: absolute;
    right: 5px;
    border-radius: 15px;
    font-size: 12px;
    line-height: 100%;
    z-index: 1;
    width: 75px;
    border: 1px solid #dbdade !important;
}




img.lazy {
    display: block;
    /* optional way, set loading as background */
    background-image: url("../../assets/vendor/libs/lazy/loading.gif");
    background-repeat: no-repeat;
    background-position: 50% 50%;
    /*width: 100%;*/
}
img.lazy.lazy-auto-background{
    background-size:auto !important;
}






/*----------------*/
.estate-box {
    border-radius: 7px 7px 7px 0;
    border: 1px solid #f3f3f3 !important;
}
.estate-box:hover{
    box-shadow: 0 0.25rem 0.2rem rgba(165, 163, 174, 0.45) !important;
    border: 1px solid #b6a1f3 !important;
}
.estate-box-details a {
    height: 160px;
    overflow: hidden;
}
@media (min-width: 1200px) {
    .estate-box-details a {
        padding: 0 10px 15px 15px;
    }
}
.estate-box-details a {
    padding: 0 10px 15px;
    position: relative;
    display: block;
    color: #444;
}
.estate-box-details-agency {
    width: 40px;
    height: 40px;
    position: absolute;
    top: 8px;
    left: 10px;
    border: 1px #efefef solid;
    border-radius: 5px;
    transition: 0.3s;
}
.estate-box-details-agency img{
    border-radius: 5px;
}
.estate-box-details-agency:hover {
    transform: scale(1.1);
}
.estate-box-details-location {
    position: absolute;
    bottom: 7px;
    right: 7px;
    font-size: 11px;
}
.estate-box:hover .estate-box-details-btn {
    background: #685dd8 !important;
    color: #fff;
    transform: translateX(-5px);
}
@media (max-width: 767px) {
    .estate-box:hover  .estate-box-details-btn {
        transform: none;
    }
    .estate-box-details-btn {
        font-size: 11px;
        line-height: 20px;
        min-height: 20px;
        padding: 0 7px;
    }
    .estate-box-details-btn .ti{
        display:none;
    }
}
.estate-box-details-btn {
    background: #f3f3f3;
    border-radius: 0 70px 70px 0;
    bottom: 0;
    font-size: 13px;
    left: 0;
    line-height: 30px;
    min-height: 30px;
    position: absolute;
    text-align: center;
    padding: 0 15px;
    color: #333;
    transition: 0.3s;
}


.estate-box-bookmark {
    position: absolute;
    top: 8px;
    right: 8px;
    color: #fff;
    text-shadow: 0 0 3px rgba(0,0,0,.45);
    /*z-index: 1;*/
    /*font-size: 16px;*/
    transition: transform .3s;
}
.estate-box-bookmark:hover {
    color: #685dd8;
    transform: scale(1.1);
}

.estate-box-image {
    position: relative;
    border-radius: 0 7px 7px 0;
    height: 160px;
    width: 200px;
    float: right;
    overflow: hidden;
}
.estate-box-image a img {
    height: 160px;
    max-width: 100%;
}
@media (max-width: 568px) {
    .estate-box-image {
        width: 160px;
    }
}
@media (max-width: 480px) {
    .estate-box-image {
        width: 150px;
    }
}
@media (max-width: 360px) {
    .estate-box-image {
        width: 140px;
    }
}
.estate-box-image-bottom {
    background-color: rgba(0,0,0,.6);
    bottom: 0;
    color: #fff;
    min-height: 30px;
    padding: 9px 5px 5px;
    position: absolute;
    right: 0;
    left: 0;
    border-radius: 0 0 3px 0;
    font-size: 11px;
    line-height: 100%;
    z-index: 1;
}
.estate-box-image-bottom .date {
    width: 110px;
    float: right;
}
@media (max-width: 568px) {
    .estate-box-image-bottom .date {
        width: 80px;
        float: right;
        font-size: 11px;
        line-height: 20px;
    }
}
@media (max-width: 360px) {
    .estate-box-image-bottom .date {
        width: 75px;
        float: right;
        font-size: 10px;
        line-height: 20px;
    }
}
.estate-box-image-bottom .count {
    width: 50px;
    float: left;
    text-align: left;
}
@media (max-width: 568px) {
    .estate-box-image-bottom .count {
        float: right;
        line-height: 20px;
        width: 55px;
        font-size: 11px;
    }
}
@media (max-width: 360px) {
    .estate-box-image-bottom .count {
        float: right;
        margin-top: 3px;
        width: 50px;
        font-size: 10px;
    }
}

.upload-box-image-bottom {
    background-color: rgba(0,0,0,.4);
    bottom: 0;
    color: #fff;
    padding: 3px 5px 5px;
    position: absolute;
    right: 0;
    left: 0;
    border-radius: 0 0 3px 0;
    font-size: 9px;
    line-height: 100%;
    z-index: 1;
}
.upload-box-image-bottom .date {
    width: 110px;
    float: right;
}
@media (max-width: 568px) {
    .upload-box-image-bottom .date {
        width: 80px;
        float: right;
        font-size: 11px;
        line-height: 20px;
    }
}
@media (max-width: 360px) {
    .upload-box-image-bottom .date {
        width: 75px;
        float: right;
        font-size: 10px;
        line-height: 20px;
    }
}
.upload-box-image-bottom .count {
    float: left;
    text-align: left;
    direction: ltr;
}
@media (max-width: 568px) {
    .upload-box-image-bottom .count {
        float: right;
        line-height: 20px;
        width: 55px;
        font-size: 11px;
    }
}
@media (max-width: 360px) {
    .upload-box-image-bottom .count {
        float: right;
        margin-top: 3px;
        width: 50px;
        font-size: 10px;
    }
}

.estate-box-details-title {
    margin: 7px 0 10px 45px;
    font-size: 15px;
    font-weight: 700;
}
@media (max-width: 767px) {
    .estate-box-details-title {
        font-size: 14px !important;
    }
}
@media (max-width: 568px) {
    .estate-box-details-title {
        font-size: 13px !important;
    }
}
@media (max-width: 480px) {
    .estate-box-details-title {
        font-size: 12px !important;
    }
}
@media (max-width: 360px) {
    .estate-box-details-title {
        font-size: 11px !important;
    }
}

.estate-box-details-price {
    line-height: 20px;
    font-size: 17px;
}

@media (max-width: 767px) {
    .estate-box-details-price {
        font-size: 16px !important;
    }
}
@media (max-width: 568px) {
    .estate-box-details-price {
        font-size: 15px !important;
    }
}
@media (max-width: 480px) {
    .estate-box-details-price {
        font-size: 14px !important;
    }
}
@media (max-width: 360px) {
    .estate-box-details-price {
        font-size: 13px !important;
    }
}

.estate-box-details-price small{
    font-size: 70%;
}


@media (max-width: 480px) {
    .estate-box-details .badge {
        font-size: x-small;
    }
}

.layout-navbar-ngm{
    position: initial !important;
    box-shadow: none;
}

nav.layout-navbar::after {
    content: none;
    position: initial;
    display: block;
    height: 100%;
    width: 100%;
    top: 0;
    left: 0;
}
.layout-navbar-ngm .navbar-dropdown .badge-notifications {
    left: 9px;
}

.swiper-fixed-slides > img {
    max-height: none;
}

#search-content {
    overflow-y: scroll;
    -webkit-overflow-scrolling: touch;
    visibility: visible;
    max-height: 400px;
}
.break-long-text{
    word-break: break-word;
    white-space: normal;
}

.watermark::after {
    position: absolute;
    bottom: 0;
    left: 0.5rem;
    opacity: 0.6;
    font-size: 1.2em;
    padding: 1px 3px;
    border-radius: 5px 0 5px 0;
    z-index: inherit;
}
.watermark_r{
    position: relative;
}
.watermark_s{
    font-size: 0.65em;
}
.watermark_s::after{
    bottom: 0.2rem;
    left: 1rem;
}
.watermark_normal::after{
    content: "Normal Delivery";
    color: #000000;
    background-color: #fae787;
    border: 1px solid cadetblue;
}
[dir=rtl] .watermark_normal::after{
    content: "ارسال عادی";
}

.watermark_inhouse::after{
    content: "Instant Delivery";
    color: #000000;
    background-color: #fae787;
    border: 1px solid cadetblue;
}
[dir=rtl] .watermark_inhouse::after{
    content: "ارسال فوری";
}
.watermark_speedy::after{
    content: "Speedy Delivery";
    color: #000000;
    background-color: #f7ff00;
    border: 1px solid cadetblue;
}
[dir=rtl] .watermark_speedy::after{
    content: "ارسال سریع";
}

.wrap-table-td-400 {
    width: 400px;
    display: block;
    white-space: -o-pre-wrap;
    word-wrap: break-word;
    white-space: normal;
    white-space: -moz-pre-wrap;
    white-space: -pre-wrap;
}

@media only screen and (min-width: 1650px) {
    .wsmobileheader .wssearch .wssearchform {
        padding: 0 150px;
    }
}
@media only screen and (min-width: 2000px) {
    .wsmobileheader .wssearch .wssearchform {
        padding: 0 200px;
    }
}