/*overwrite of add new styles to customize and modify adspot for your needs */
.app-logo a img {
    width: 82%;
}

.search-widget button[type="submit"] {
    width: 52px !important;
    background-color: #0083c9 !important;
    color: #ffffff !important;
    font-size: 16px;
}

.custom-li-arab {
    direction: rtl;
}

.custom-li-arab > a {
    text-align: right;
}

.custom-li-arab a img {
    margin-left: 10px;
}

.heading-first > h1 {
    font-size: 32px !important;
}

.heading-first > p {
    font-size: 15px !important;
    text-transform: initial !important;
    margin-top: 8px;
}

.cat-boxes .inner img {
    max-width: 60%;
}

.custom-footer-bar {
    border-bottom: 1px solid #b7b7b7;
    padding-bottom: 10px;
}

.custom-footer-row {
    padding-bottom: 27px !important;
}

.custom-footer-p {
    font-size: 1rem;
    text-align: center;
    padding: 15px 0;
    width: 100%;
    float: left;
    display: block;
    color: #181818;
}

.social-links > h4 {
    text-align: left;
    color: #b7b7b7;
    font-size: 15.64px;
    font-weight: normal;
    margin-bottom: 10px;
}

.social-links > ul {
    float: left;
}

.custom-sectionads-image {
    width: 320px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    height: 130px;
}

.custom-sectionads-image > img {
    height: 100%;
}

.custom-sectionads-text {
    width: 265px;
    height: 60px;
    overflow: hidden;
    z-index: 10;
    position: relative;
    margin-top: -18px;
}

.custom-sectionads-text.dog {
    background-color: #767690;
}

.custom-sectionads-text.vet {
    background-color: #f76b4f;
}

.custom-sectionads-text.cat {
    background-color: #00a8c6;
}

.custom-sectionads-text.adoption {
    background-color: #77c04b;
}

.custom-sectionads-text .slider-item {
    text-align: center;
    color: #ffffff;
    display: flex;
    height: 60px;
    padding: 0;
    position: relative;
    animation: slide-animation 6s infinite;
}

.custom-sectionads-text .slider-item h3 {
    margin: 0;
    padding: 19px 0 0;
    color: #ffffff;
    font-size: 1.3rem;
    width: 100%;
    text-align: center;
}

@keyframes slide-animation {
    0% {
        opacity: 1;
        bottom: 0;
    }

    33.32% {
        bottom: 0;
    }

    49.98% {
        bottom: 0;
    }

    55% {
        bottom: 100%;
    }

    66.64% {
        bottom: 100%;
    }

    83.30% {
        bottom: 100%;
    }

    96.20% {
        bottom: 100%;
    }

    100% {
        opacity: 1;
        bottom: 0;
    }
}

/* Upload Images */
.custom-create-images {
    margin-top: 15px;
}

.custom-create-video {
    margin-top: 15px;
}

.custom-create-images .ezdz-dropzone {
    background: #f4f4f4;
    border: none !important;
    margin-right: 5px;
    position: relative;
}

.custom-create-video .ezdz-dropzone {
    background: #f4f4f4;
    border: none !important;
    margin-right: 5px;
    position: relative;
}

.custom-create-images .ezdz-dropzone .delete-uploaded-image i.fa,
.custom-create-video .ezdz-dropzone .delete-uploaded-video i.fa {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    top: 0;
    margin: auto;
    width: 32px;
    height: 32px;
    text-align: center;
    background: white;
    color: #cccccc;
    border-radius: 50%;
    font-size: 15px;
    font-weight: lighter;
    line-height: 32px;
    cursor: pointer;
}

.custom-create-images .ezdz-dropzone .background-uploaded-image {
    height: 100%;
    position: relative;
}

/* Signup / Login */
.contextual-page {
    padding: 0 !important;
}

.social_login_opt > div {
    padding-right: 0 !important;
}

.custom-signup-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 60px;
}

.btn-default {
    color: #333;
    background-color: #fff;
    border-color: #ccc;
}

.item-spot header h4 {
    margin: 0 !important;
}

.view-item.colorWhite {
    color: #ffffff !important;
}

.breadcrumb {
    padding: 5px 0px;
    background-color: transparent;
}

.social-links.social-bg {
    position: absolute;
    right: 40px;
    top: 2px;
}

/* Profile */
.cat-boxes .cat-box.profile-line-height .inner > div {
    line-height: 85px !important;
}

.ads-inner-p > p {
    margin: 0 0 10px !important;
}

/* Article */
.article-social-widget {
    height: 40px;
}

.article-social-widget > ul {
    display: flex;
    float: none;
    justify-content: center;
    align-items: center;
}

/* Condition */
.condition-widget .inner h4 {
    margin: 15px 0px;
}

.condition-widget .inner p {
    margin: 0;
}

.home-annonce-mobile {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 20px;
}

/* Loading */

.loading,
.loading_ads {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: none;
    justify-content: center;
    align-items: center;
}

.loading {
    background-color: rgba(0, 0, 0, 0.3);
}

.loader {
    border: 6px solid #ffffff;
    border-radius: 50%;
    border-top: 6px solid #3498db;
    width: 30px;
    height: 30px;
    -webkit-animation: spin 2s linear infinite;
    /* Safari */
    animation: spin 2s linear infinite;
}

/* Safari */
@-webkit-keyframes spin {
    0% {
        -webkit-transform: rotate(0deg);
    }

    100% {
        -webkit-transform: rotate(360deg);
    }
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }

    100% {
        transform: rotate(360deg);
    }
}

/* Upload Box */

.box-upload-container,
.box-upload-container-annonce,
.box-video-upload-container {
    position: relative !important;
    border: 2px dashed #d0d0d0 !important;
    border-radius: 3px;
    background: #fcfcfc;
    transition: all 0.3s linear;
    margin-bottom: 10px;
    margin-top: 5px;
    display: inline-block;
    width: 100%;
    cursor: pointer;
    padding: 25px;
    height: 100%;
    margin: 0;
}

.form-multistep .box-upload-container,
.form-multistep .box-upload-container-annonce,
.form-multistep .box-video-upload-container {
    height: 100px !important;
    width: 100px !important;
}

.box-upload-container:hover,
.box-video-upload-container:hover {
    border: 2px dashed #59b02c !important;
    background: #fff !important;
    transition: all 0.35s linear;
}

.text-upload-container {
    text-align: center;
    margin: 50px 0;
    font-size: 17px;
    color: #888;
    transition: all 0.3s linear;
    position: relative;
    z-index: 11;
}

.text-upload-container-annonce {
    text-align: center;
    font-size: 17px;
    margin: 28px 0 24px 0;

    color: #888;
    transition: all 0.3s linear;
    position: relative;
    z-index: 11;
    padding: 2px;
}

.form-multistep .text-upload-container-annonce {
    margin: 0 !important;
}

.margin-rtl {
    margin-right: 1rem;
}

.multistep .form-multistep.step-13 {
    align-items: flex-start;
}

.box-upload-container:hover .text-upload-container,
.box-video-upload-container:hover .text-upload-container {
    color: #59b02c;
}

.lds-hourglass {
    height: 100%;
    width: 100%;
    position: absolute;
    left: 0;
    top: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
}

.lds-hourglass:after {
    content: " ";
    display: block;
    border-radius: 50%;
    width: 0;
    height: 0;
    margin: auto;
    box-sizing: border-box;
    border: 32px solid #fff;
    border-color: #fff transparent #fff transparent;
    animation: lds-hourglass 1.2s infinite;
}

@keyframes lds-hourglass {
    0% {
        transform: rotate(0);
        animation-timing-function: cubic-bezier(0.55, 0.055, 0.675, 0.19);
    }

    50% {
        transform: rotate(900deg);
        animation-timing-function: cubic-bezier(0.215, 0.61, 0.355, 1);
    }

    100% {
        transform: rotate(1800deg);
    }
}

/* ---------------------------------- */
/* Dropzone
------------------------------------- */
/*
 * The MIT License
 * Copyright (c) 2012 Matias Meno <m@tias.me>
*/
@-webkit-keyframes passing-through {
    0% {
        opacity: 0;
        -webkit-transform: translateY(40px);
        -moz-transform: translateY(40px);
        -ms-transform: translateY(40px);
        -o-transform: translateY(40px);
        transform: translateY(40px);
    }

    30%,
    70% {
        opacity: 1;
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
        transform: translateY(0px);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-40px);
        -moz-transform: translateY(-40px);
        -ms-transform: translateY(-40px);
        -o-transform: translateY(-40px);
        transform: translateY(-40px);
    }
}

@-moz-keyframes passing-through {
    0% {
        opacity: 0;
        -webkit-transform: translateY(40px);
        -moz-transform: translateY(40px);
        -ms-transform: translateY(40px);
        -o-transform: translateY(40px);
        transform: translateY(40px);
    }

    30%,
    70% {
        opacity: 1;
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
        transform: translateY(0px);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-40px);
        -moz-transform: translateY(-40px);
        -ms-transform: translateY(-40px);
        -o-transform: translateY(-40px);
        transform: translateY(-40px);
    }
}

@keyframes passing-through {
    0% {
        opacity: 0;
        -webkit-transform: translateY(40px);
        -moz-transform: translateY(40px);
        -ms-transform: translateY(40px);
        -o-transform: translateY(40px);
        transform: translateY(40px);
    }

    30%,
    70% {
        opacity: 1;
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
        transform: translateY(0px);
    }

    100% {
        opacity: 0;
        -webkit-transform: translateY(-40px);
        -moz-transform: translateY(-40px);
        -ms-transform: translateY(-40px);
        -o-transform: translateY(-40px);
        transform: translateY(-40px);
    }
}

@-webkit-keyframes slide-in {
    0% {
        opacity: 0;
        -webkit-transform: translateY(40px);
        -moz-transform: translateY(40px);
        -ms-transform: translateY(40px);
        -o-transform: translateY(40px);
        transform: translateY(40px);
    }

    30% {
        opacity: 1;
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
        transform: translateY(0px);
    }
}

@-moz-keyframes slide-in {
    0% {
        opacity: 0;
        -webkit-transform: translateY(40px);
        -moz-transform: translateY(40px);
        -ms-transform: translateY(40px);
        -o-transform: translateY(40px);
        transform: translateY(40px);
    }

    30% {
        opacity: 1;
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
        transform: translateY(0px);
    }
}

@keyframes slide-in {
    0% {
        opacity: 0;
        -webkit-transform: translateY(40px);
        -moz-transform: translateY(40px);
        -ms-transform: translateY(40px);
        -o-transform: translateY(40px);
        transform: translateY(40px);
    }

    30% {
        opacity: 1;
        -webkit-transform: translateY(0px);
        -moz-transform: translateY(0px);
        -ms-transform: translateY(0px);
        -o-transform: translateY(0px);
        transform: translateY(0px);
    }
}

@-webkit-keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }

    10% {
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -o-transform: scale(1.1);
        transform: scale(1.1);
    }

    20% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
}

@-moz-keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }

    10% {
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -o-transform: scale(1.1);
        transform: scale(1.1);
    }

    20% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes pulse {
    0% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }

    10% {
        -webkit-transform: scale(1.1);
        -moz-transform: scale(1.1);
        -ms-transform: scale(1.1);
        -o-transform: scale(1.1);
        transform: scale(1.1);
    }

    20% {
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -ms-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
}

.dropzone,
.dropzone * {
    box-sizing: border-box;
}

.dropzone {
    min-height: 150px;
    border: 2px solid rgba(0, 0, 0, 0.3);
    background: white;
    padding: 20px 20px;
}

.dropzone.dz-clickable {
    cursor: pointer;
}

.dropzone.dz-clickable * {
    cursor: default;
}

.dropzone.dz-clickable .dz-message,
.dropzone.dz-clickable .dz-message * {
    cursor: pointer;
}

.dropzone.dz-started .dz-message {
    display: none;
}

.dropzone.dz-drag-hover {
    border-style: solid;
}

.dropzone.dz-drag-hover .dz-message {
    opacity: 0.5;
}

.dropzone .dz-preview {
    position: relative;
    display: inline-block;
    vertical-align: top;
    margin: 16px;
    min-height: 100px;
}

.dropzone .dz-preview:hover {
    z-index: 1000;
}

.dropzone .dz-preview:hover .dz-details {
    opacity: 1;
}

.dropzone .dz-preview.dz-file-preview .dz-image {
    border-radius: 3px;
    background: #999;
    background: linear-gradient(to bottom, #eee, #ddd);
}

.dropzone .dz-preview.dz-file-preview .dz-details {
    opacity: 1;
}

.dropzone .dz-preview.dz-image-preview {
    background: white;
}

.dropzone .dz-preview.dz-image-preview .dz-details {
    -webkit-transition: opacity 0.2s linear;
    -moz-transition: opacity 0.2s linear;
    -ms-transition: opacity 0.2s linear;
    -o-transition: opacity 0.2s linear;
    transition: opacity 0.2s linear;
}

.dropzone .dz-preview .dz-remove {
    font-size: 14px;
    text-align: center;
    display: block;
    cursor: pointer;
    border: none;
}

.dropzone .dz-preview .dz-remove:hover {
    text-decoration: underline;
}

.dropzone .dz-preview:hover .dz-details {
    opacity: 1;
}

.dropzone .dz-preview .dz-details {
    z-index: 20;
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
    font-size: 13px;
    min-width: 100%;
    max-width: 100%;
    padding: 2em 1em;
    text-align: center;
    color: rgba(0, 0, 0, 0.9);
    line-height: 150%;
}

.dropzone .dz-preview .dz-details .dz-size {
    margin-bottom: 1em;
    font-size: 16px;
}

.dropzone .dz-preview .dz-details .dz-filename {
    white-space: nowrap;
}

.dropzone .dz-preview .dz-details .dz-filename:hover span {
    border: 1px solid rgba(200, 200, 200, 0.8);
    background-color: rgba(255, 255, 255, 0.8);
}

.dropzone .dz-preview .dz-details .dz-filename:not(:hover) {
    overflow: hidden;
    text-overflow: ellipsis;
}

.dropzone .dz-preview .dz-details .dz-filename:not(:hover) span {
    border: 1px solid transparent;
}

.dropzone .dz-preview .dz-details .dz-filename span,
.dropzone .dz-preview .dz-details .dz-size span {
    background-color: rgba(255, 255, 255, 0.4);
    padding: 0 0.4em;
    border-radius: 3px;
}

.dropzone .dz-preview:hover .dz-image img {
    -webkit-transform: scale(1.05, 1.05);
    -moz-transform: scale(1.05, 1.05);
    -ms-transform: scale(1.05, 1.05);
    -o-transform: scale(1.05, 1.05);
    transform: scale(1.05, 1.05);
    -webkit-filter: blur(8px);
    filter: blur(8px);
}

.dropzone .dz-preview .dz-image {
    border-radius: 3px;
    overflow: hidden;
    width: 120px;
    height: 120px;
    position: relative;
    transition: all 0.3s;
    display: block;
    z-index: 10;
}

.dropzone .dz-preview .dz-image img {
    display: block;
    filter: blur(0px);
    transition: all 0.4s;
}

.dropzone .dz-preview.dz-success .dz-success-mark {
    -webkit-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
    -moz-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
    -ms-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
    -o-animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
    animation: passing-through 3s cubic-bezier(0.77, 0, 0.175, 1);
}

.dropzone .dz-preview.dz-error .dz-error-mark {
    opacity: 1;
    -webkit-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
    -moz-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
    -ms-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
    -o-animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
    animation: slide-in 3s cubic-bezier(0.77, 0, 0.175, 1);
}

.dropzone .dz-preview .dz-success-mark,
.dropzone .dz-preview .dz-error-mark {
    pointer-events: none;
    opacity: 0;
    z-index: 500;
    position: absolute;
    display: block;
    top: 50%;
    left: 50%;
    margin-left: -27px;
    margin-top: -27px;
}

.dropzone .dz-preview .dz-success-mark svg,
.dropzone .dz-preview .dz-error-mark svg {
    display: block;
    width: 54px;
    height: 54px;
}

.dropzone .dz-preview.dz-processing .dz-progress {
    opacity: 1;
    -webkit-transition: all 0.2s linear;
    -moz-transition: all 0.2s linear;
    -ms-transition: all 0.2s linear;
    -o-transition: all 0.2s linear;
    transition: all 0.2s linear;
}

.dropzone .dz-preview.dz-complete .dz-progress {
    opacity: 0;
    -webkit-transition: opacity 0.4s ease-in;
    -moz-transition: opacity 0.4s ease-in;
    -ms-transition: opacity 0.4s ease-in;
    -o-transition: opacity 0.4s ease-in;
    transition: opacity 0.4s ease-in;
}

.dropzone .dz-preview:not(.dz-processing) .dz-progress {
    -webkit-animation: pulse 6s ease infinite;
    -moz-animation: pulse 6s ease infinite;
    -ms-animation: pulse 6s ease infinite;
    -o-animation: pulse 6s ease infinite;
    animation: pulse 6s ease infinite;
}

.dropzone .dz-preview .dz-progress {
    opacity: 1;
    z-index: 1000;
    pointer-events: none;
    position: absolute;
    height: 16px;
    left: 50%;
    top: 50%;
    margin-top: -8px;
    width: 80px;
    margin-left: -40px;
    background: rgba(255, 255, 255, 0.9);
    -webkit-transform: scale(1);
    border-radius: 8px;
    overflow: hidden;
}

.dropzone .dz-preview .dz-progress .dz-upload {
    background: #333;
    background: linear-gradient(to bottom, #666, #444);
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 0;
    -webkit-transition: width 300ms ease-in-out;
    -moz-transition: width 300ms ease-in-out;
    -ms-transition: width 300ms ease-in-out;
    -o-transition: width 300ms ease-in-out;
    transition: width 300ms ease-in-out;
}

.dropzone .dz-preview.dz-error .dz-error-message {
    display: block;
}

.dropzone .dz-preview.dz-error:hover .dz-error-message {
    opacity: 1;
    pointer-events: auto;
}

.dropzone .dz-preview .dz-error-message {
    pointer-events: none;
    z-index: 1000;
    position: absolute;
    display: block;
    display: none;
    opacity: 0;
    -webkit-transition: opacity 0.3s ease;
    -moz-transition: opacity 0.3s ease;
    -ms-transition: opacity 0.3s ease;
    -o-transition: opacity 0.3s ease;
    transition: opacity 0.3s ease;
    font-size: 13px;
    top: 130px;
    left: -10px;
    width: 140px;
    background: #be2626;
    background: linear-gradient(to bottom, #be2626, #a92222);
    border-radius: 4px;
    padding: 10px 15px;
    line-height: 18px;
    color: white;
}

.dropzone .dz-preview .dz-error-message:after {
    content: "";
    position: absolute;
    top: -6px;
    left: 64px;
    width: 0;
    height: 0;
    border-left: 6px solid transparent;
    border-right: 6px solid transparent;
    border-bottom: 6px solid #be2626;
}

.dropzone {
    position: relative;
    border: 2px dashed #d0d0d0;
    border-radius: 3px;
    background: #fcfcfc;
    transition: all 0.3s linear;
    margin-bottom: 10px;
    margin-top: 5px;
    display: inline-block;
    width: 100%;
}

.dropzone:hover {
    border: 2px dashed #59b02c;
    background: #fff;
    transition: all 0.35s linear;
}

.dropzone:before {
    position: absolute;
    height: 100%;
    width: 100%;
    content: "";
    top: 0;
    left: 0;
    background: linear-gradient(
        to bottom,
        rgba(255, 255, 255, 0.95),
        rgba(255, 255, 255, 0.9)
    );
    background-color: #59b02c;
    opacity: 0;
    z-index: 10;
    transition: all 0.3s linear;
    border-radius: 3px;
}

.dropzone:hover:before {
    opacity: 0.4;
}

.dropzone .dz-message {
    text-align: center;
    margin: 50px 0;
    font-size: 17px;
    color: #888;
    transition: all 0.3s linear;
    position: relative;
    z-index: 11;
}

.dropzone:hover .dz-message {
    color: #59b02c;
}

.dz-message i {
    display: block;
    font-size: 32px;
    margin-bottom: 15px;
}

/* Modif by aziz to fix responsive */
@media (max-width: 475px) {
    /* line 341, ../sass/partials/_ads.scss */
    .items-list-md.style2 .items-list .item-spot .imgAsBg {
        display: block !important;
        position: relative;
        height: 130px;
        margin: auto;
    }

    /* line 186, ../sass/partials/_dashboard.scss */
    .uzr-panel .item-admin-actions ul,
    .uzr-panel .msg-actions ul {
        text-align: center;
        margin-top: 20px;
    }

    .items-list-md.style2 .items-list .item-spot header h6 {
        text-align: center;
    }
}

.share-modal {
    min-width: 230px;

    box-shadow: 0 11px 15px -7px rgb(0 0 0 / 20%),
        0 24px 38px 3px rgb(0 0 0 / 14%), 0 9px 46px 8px rgb(0 0 0 / 12%);
    border-radius: 10px !important;
    padding: 2rem;
}

.share-modal-header {
    padding: 0 24px 9px !important;
}

.share-list-item {
    padding: 0 16px !important;
    margin-bottom: 2rem;
}

button.slide-arrow.next-arrow.slick-arrow {
    border-radius: 50%;
    border: none;
    width: 30px;
    height: 30px;
    position: absolute;
    color: white;
    background-color: #dfdfdf;
    top: 50%;
    right: -4rem;
    transform: translateY(-50%);
}

button.slide-arrow.prev-arrow.slick-arrow {
    border-radius: 50%;
    border: none;
    width: 30px;
    height: 30px;
    position: absolute;
    color: white;
    background-color: #dfdfdf;
    top: 50%;
    left: -4rem;
    transform: translateY(-50%);
}

button.slide-arrow.prev-arrow.slick-arrow i,
button.slide-arrow.next-arrow.slick-arrow i {
    position: absolute;
    top: 8px;
    font-size: 30px;
    color: #77c04b;
}

button.slide-arrow.prev-arrow.slick-arrow i {
    right: 10px;
}

button.slide-arrow.next-arrow.slick-arrow i {
    left: 12px;
}

.categoryad-options__container {
    display: flex;
    justify-content: space-between;
    gap: 1rem;
    flex-wrap: wrap;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2rem;
    padding: 50px 0;
}

.categoryad-options__container a,
.categoryad-options__container button {
    background-color: white;
    border: none;
    outline: none !important;
    padding: 4px 11px;
    font-family: Arial;
    font-size: 16px;
    cursor: pointer;
    flex: 0 0 28%;
    display: flex !important;
    justify-content: center;
    align-items: center;
    padding: 1.5rem 0;
    color: rgb(104, 104, 104);
    text-decoration: none;
    transition: all 0.15s ease-in-out;
    width: 200px;
}

.border-green {
    border: 1px solid #77c04b !important;
}

.categoryad-options__container a:hover,
.categoryad-options__container button:hover {
    background-color: #77c04b !important;
    color: #ffffff !important;
}

.multistep .inner {
    min-height: 650px !important;
}

.multistep .form-multistep {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 5rem 0;
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -65%);
    width: 80%;
}

.form-multistep span.error {
    margin-bottom: 2rem;
    display: inline-block;
}

.multistep form .ezdz-dropzone {
    width: 100px;
    height: 100px;
}

.multistep .form-multistep input,
.multistep .form-multistep textarea {
    border: none;
    background-color: #eeee;
    width: 380px;
    max-width: 350px;
}

.input-sign-in {
    border: none !important;
    background-color: #eeee;
    width: 380px;
    max-width: 350px;
}

.categoryad-options__container .under-option {
    flex: 0 0 32%;
}

.btns-multistep {
    position: absolute !important;
    bottom: 0% !important;
    display: flex !important;
    justify-content: center !important;
    width: 100% !important;
    flex-wrap: wrap !important;
}

.multistep form .btns-multistep .btn-next {
    margin-left: 1rem;
}

.multistep form .btns-multistep .btn-next,
.multistep form .btns-multistep .btn-prev-sm {
    width: 120px;
}

.multistep form .btns-multistep.step-13 .btn-next,
.multistep form .btns-multistep.step-13 .btn-prev-sm {
    width: 197px !important;
    text-align: center;
}

@media only screen and (max-width: 550px) {
    .multistep form .btns-multistep.step-13 .btn-next {
        margin: 1rem 0 0 0 !important;
    }
}

/* .btns-multistep .btn-prev {
    left: 12%;
    position: absolute;
    top: 50%;
} */

/* .btns-multistep .btn-next {
    right: 18%;
    position: absolute;
    top: 60%;
} */

.btns-multistep .btn:hover {
    background-color: #0083c9 !important;
    color: white;
}

.btns-multistep .btn i {
    color: white;
}

.bg-green {
    background-color: #77c04b !important;
    color: #ffffff !important;
}

.btns-multistep .btn {
    background-color: #dcd8d8;
    color: rgb(104, 104, 104);
    cursor: pointer;
    padding: 15px 25px;
}

.white--icon {
    display: none;
}

.animal-cateogry-item {
    margin-bottom: 1.2rem;
    width: 200px;
    padding: 0.4rem 0.8rem;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    background: white;
    text-align: left;
}

.display-hidden {
    display: none !important;
}

.display-inline {
    display: inline !important;
}

.animal-cateogry-item:hover .white--icon {
    display: inline !important;
}

.animal-cateogry-item:hover {
    background-color: #77c04b !important;
    color: white;
}

.animal-cateogry-item:hover .black--icon {
    display: none;
}

.la-ball-beat,
.la-ball-beat > div {
    position: relative;
    -webkit-box-sizing: border-box;
    -moz-box-sizing: border-box;
    box-sizing: border-box;
}

.la-ball-beat {
    display: block;
    font-size: 0;
    color: #fff;
}

.la-ball-beat.la-dark {
    color: #333;
}

.la-ball-beat > div {
    display: inline-block;
    float: none;
    background-color: currentColor;
    border: 0 solid currentColor;
}

.la-ball-beat {
    width: 54px;
    height: 18px;
}

.la-ball-beat > div {
    width: 10px;
    height: 10px;
    margin: 4px;
    border-radius: 100%;
    -webkit-animation: ball-beat 0.7s -0.15s infinite linear;
    -moz-animation: ball-beat 0.7s -0.15s infinite linear;
    -o-animation: ball-beat 0.7s -0.15s infinite linear;
    animation: ball-beat 0.7s -0.15s infinite linear;
}

.la-ball-beat > div:nth-child(2n-1) {
    -webkit-animation-delay: -0.5s;
    -moz-animation-delay: -0.5s;
    -o-animation-delay: -0.5s;
    animation-delay: -0.5s;
}

.la-ball-beat.la-sm {
    width: 26px;
    height: 8px;
}

.la-ball-beat.la-sm > div {
    width: 4px;
    height: 4px;
    margin: 2px;
}

.la-ball-beat.la-2x {
    width: 108px;
    height: 36px;
}

.la-ball-beat.la-2x > div {
    width: 20px;
    height: 20px;
    margin: 8px;
}

.la-ball-beat.la-3x {
    width: 162px;
    height: 54px;
}

.la-ball-beat.la-3x > div {
    width: 30px;
    height: 30px;
    margin: 12px;
}

/*
 * Animation
 */
@-webkit-keyframes ball-beat {
    50% {
        opacity: 0.2;
        -webkit-transform: scale(0.75);
        transform: scale(0.75);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        transform: scale(1);
    }
}

@-moz-keyframes ball-beat {
    50% {
        opacity: 0.2;
        -moz-transform: scale(0.75);
        transform: scale(0.75);
    }

    100% {
        opacity: 1;
        -moz-transform: scale(1);
        transform: scale(1);
    }
}

@-o-keyframes ball-beat {
    50% {
        opacity: 0.2;
        -o-transform: scale(0.75);
        transform: scale(0.75);
    }

    100% {
        opacity: 1;
        -o-transform: scale(1);
        transform: scale(1);
    }
}

@keyframes ball-beat {
    50% {
        opacity: 0.2;
        -webkit-transform: scale(0.75);
        -moz-transform: scale(0.75);
        -o-transform: scale(0.75);
        transform: scale(0.75);
    }

    100% {
        opacity: 1;
        -webkit-transform: scale(1);
        -moz-transform: scale(1);
        -o-transform: scale(1);
        transform: scale(1);
    }
}

.btns-multistep .btn-prev-sm {
    display: none;
}

.multistep .inner {
    min-height: 650px !important;
    padding: 0 !important;
}

@media only screen and (max-width: 980px) {
}

.multistep .sign-in-step {
    position: static !important;
}

@media only screen and (max-width: 900px) {
    .categoryad-options__container {
        position: absolute;
        top: 50%;
        transform: translate(-50%, -50%);
        left: 50%;
    }

    .btn-prev {
        display: none !important;
    }

    .multistep form.step-13 {
        width: 90% !important;
        position: static !important;
        transform: none !important;
    }

    /* .multistep form.step-13 .btns-multistep .btn-next {
        right: 5% !important;
        bottom: 5% !important;
        left: unset !important;
    } */

    /* .multistep form .btns-multistep.last-step .btn-prev-sm,
    .multistep form .btns-multistep.last-step .btn-next {
        width: 200px !important;
    } */

    .multistep form .btns-multistep.last-step {
        /* flex-direction: column !important; */
        gap: 1rem !important;
    }

    .multistep form .btns-multistep.last-step .btn-prev-sm {
        position: static !important;
    }

    .multistep form .btns-multistep.last-step .btn-next {
        position: static;
    }

    /* .multistep form.step-13 .btns-multistep .btn-prev-sm {
        left: 5% !important;
        bottom: 5% !important;
    } */

    .multistep .sign-in-step.btns-multistep .btn-prev-sm {
        position: static !important;
        width: 100% !important;
        text-align: center;
        padding: 15px 20px !important;
    }

    .btns-multistep .btn-prev-sm {
        display: block !important;
        /* position: absolute;
        bottom: 5%;
        left: 35%; */
    }

    .btns-multistep .btn {
        padding: 10px 15px;
    }

    .form-wrapper header h1 {
        font-size: 1.5rem !important;
        flex: 0 0 80% !important;
    }

    /* .multistep .inner {
        padding: 20px 50px 80px !important;
    } */

    /* .multistep form .btns-multistep .btn-prev-sm {
        display: block !important;
        position: absolute;
        bottom: -5% !important;
        left: 5%;
        width: 120px;
        text-align: center;
    } */

    /* .multistep form .btns-multistep .btn-next {
        transform: none !important;
        right: 5%;
        bottom: -5% !important;
        width: 120px !important;
    } */

    /* .multistep form input {
        width: 250px !important;
    } */
    .multistep form input[type="range"] {
        width: 250px !important;
    }
}

.multistep .category-list {
    list-style-type: none;
    display: grid;
    align-items: center;
    flex-direction: column;
    margin-top: 0;
    padding: 5rem 20%;
    grid-template-columns: repeat(auto-fit, minmax(18rem, 1fr));
    grid-gap: 1rem;
}

.multistep .image-blog-cat {
    width: 30px !important;
}

.btn-mobile {
    position: absolute;
    left: 8%;
    top: 50%;
    transform: translateY(-50%);
    display: inline-block;
    background: #dfdfdf;
    color: white;
    padding: 15px 30px !important;
    cursor: pointer;
}
.btn-mobile:hover {
    background: #77c04b;
    color: white !important;
}

.ad-validation-container {
    display: flex;
    width: 100%;
    justify-content: space-between;
    flex-wrap: wrap;
}

.ad-validation-container .options-btns {
    display: flex;
    flex: 0 0 200px;
    justify-content: space-between;
}

.z_index_0 {
    z-index: 0 !important;
}

@media only screen and (max-width: 580px) {
    .multistep .form-multistep input,
    .multistep .form-multistep textarea,
    .radio-dp {
        max-width: 280px !important;
    }

    .categoryad-options__container {
        width: 90% !important;
    }

    .btns-multistep.last-step {
        bottom: -10% !important;
    }

    .btns-multistep.last-step .btn-prev-sm,
    .btns-multistep.last-step .bg-green {
        width: 188px !important;
        text-align: center !important;
    }

    /* .btns-multistep.last-step .bg-green {
        width: 188px !important;
        text-align: center !important;
    } */
}

/* .cropper-container {
    width: 100% !important;
}
.cropper-crop-box{
    width: 100% !important;
} */

.flex-center-content {
    display: flex;
    justify-content: space-between;
}
.price-mobile {
    display: none;
}
.display-sm-block {
    display: none;
}

#text-changed {
    display: none;
}

@media only screen and (max-width: 580px) {
    .price-container
    /* ,.tele-container */ {
        display: none;
    }
    .price-mobile {
        display: block;
    }
    .price-mobile h1.price-heading {
        font-size: 24px !important;
        font-weight: 400 !important;
        color: #0083c9;
    }

    .display-sm-none {
        display: none !important;
    }

    .display-sm-block {
        display: block;
        padding: 15px !important;
    }
    .flex-sm {
        display: flex;
        justify-content: space-between;
        margin-bottom: 1rem !important;
    }

    .flex-sm h1 {
        font-size: 20px !important;
    }

    .flex-sm .info-icons {
        position: static !important;
        flex: 0 0 30%;
        display: flex;
        justify-content: space-between;
    }

    .flex-sm .info-icons li .fa-share-alt {
        color: #b7b7b7 !important;
    }

    ul.partage-options .fa-facebook {
        background: #3b579d !important;
        color: white !important;
    }
    ul.partage-options {
        padding: 0 1rem;
    }

    ul.partage-options .fa-whatsapp {
        background: #1ebea5 !important;
        color: white !important;
    }
    ul.partage-options .li_partage_icon {
        background: #79bf52 !important;
        color: white !important;
        border-radius: 100px !important;
        height: 35px;
        width: 35px;
        padding: 0px !important;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-right: 1.5rem !important;
    }
    ul.partage-options .li_partage:hover span {
        text-decoration: underline;
    }
    ul.partage-options .li_partage {
        cursor: pointer;
    }
    ul.partage-options .li_partage span {
        color: #686868;
    }

    ul.partage-options li a .icon_container {
        border-radius: 100px !important;
        height: 35px;
        width: 35px;
        padding: 0px !important;
        display: flex;
        justify-content: center;
        align-items: center;
        margin-right: 1.5rem !important;
    }
    ul.partage-options li {
        display: flex;
        margin-bottom: 1.3rem;
        align-items: center;
    }
    /* .social-links ul.partage-options{
        padding: 5rem 4rem;
    }
    .social-links ul.partage-options{
        padding: 5rem 4rem;
    } */
}

@keyframes shake {
    0% {
        transform: translate(0, 0);
    }
    2% {
        transform: translate(5px, 0);
    }
    4% {
        transform: translate(0, 0);
    }
    6% {
        transform: translate(5px, 0);
    }
    8% {
        transform: translate(0, 0);
    }
    10% {
        transform: translate(5px, 0);
    }
    12% {
        transform: translate(0, 0);
    }
    100% {
        transform: translate(0, 0);
    }
}

.quick-post {
    animation: shake 3s cubic-bezier(0.36, 0.07, 0.19, 0.97) infinite both;
    transform: translate3d(0, 0, 0);
    perspective: 1000px;
}
.no-animation {
    animation: none !important;
}
.full-vh {
    height: 100vh;
}

.overflow-scroll {
    overflow: scroll !important;
}
.bg-white {
    background: white !important;
}

.disp {
    display: none !important;
}

@media only screen and (max-width: 770px) {
    .banner-info-adv {
        display: flex !important;
        justify-content: space-between;
        background: #f4f4f4;
        padding: 15px 35px 15px 35px;
        align-items: center;
        position: fixed;
        bottom: 0%;
        z-index: 5555555;
        width: 100%;
        left: 0;
        height: 13%;
    }
    aside.advert.sidebar.col-xs-12.col-sm-5.col-md-4 {
        display: none;
    }
}

/* css adserve**/

.container.content-width {
    width: 1007px;
}

.ads-left {
    position: absolute;
    left: 15.5%;
    z-index: 50;
}

.ads-right {
    position: absolute;
    right: 15.5%;
    z-index: 50;
}

.custom-sectionads-text {
    width: 236px;
}

.fixed01 {
    position: fixed !important;
     top: 0; /*fixing it at the top*/
    z-index: 50; /* over any other element*/
}

@media only screen and (max-width: 1380px) {
    .ads-left {
        display: none;
    }

    .ads-right {
        display: none;
    }
}

@media only screen and (max-width: 1600px) {
    .ads-left {
        left: 6%;
    }

    .ads-right {
        right: 6%;
    }
}

@media only screen and (max-width: 1550px) {
    .ads-left {
        left:60px;
    }

    .ads-right {
        right: 60px;
    }
}
@media only screen and (max-width: 1440px) {
    .ads-left {
        left:15px;
    }

    .ads-right {
        right: 15px;
    }
}

@media only screen and (max-width: 1400px) {
        .ads-left {
        left: 0%;
    }
    .ads-right {
        right: 0%;
    }
}
.cat-boxes .cat-box .inner {
    position: relative;
    padding: 14px 10px;}


    @media only screen and (min-width: 1024px) {
        
        .ads-mobile {
            
             display:none;
            
        }
    }

@media only screen and (max-width: 1024px) {
    .ads-web{
        display: none!important;
    }
    
    .ads-mobile {
        
         display:block!important;
        
    }
}



